Home | History | Annotate | Download | only in TableGen

Lines Matching refs:MVT

189   OS.indent(indent) << "CheckValueType MVT::" << TypeName << '\n';
344 static bool TypesAreContradictory(MVT::SimpleValueType T1,
345 MVT::SimpleValueType T2) {
352 if (T1 == MVT::iPTR)
353 return !MVT(T2).isInteger() || MVT(T2).isVector();
355 if (T2 == MVT::iPTR)
356 return !MVT(T1).isInteger() || MVT(T1).isVector();
378 MVT::SimpleValueType NodeType = getOpcode().getKnownType(CT->getResNo());
379 if (NodeType != MVT::Other)