Lines Matching defs:VT2
34221 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
34222 if (!VT1.isScalarInteger() || !VT2.isScalarInteger())
34225 unsigned NumBits2 = VT2.getSizeInBits();
34234 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
34236 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget.is64Bit();
34239 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
34241 if (isZExtFree(VT1, VT2))
34248 !VT2.isSimple() || !VT2.isInteger())
38532 MVT VT2 = V2.getSimpleValueType();
38534 (RootSizeInBits % VT2.getSizeInBits()) == 0 && "Vector size mismatch");
38546 bool FloatDomain = VT1.isFloatingPoint() || VT2.isFloatingPoint() ||
38575 if (VT1 == VT2 && VT1.getSizeInBits() == RootSizeInBits && VT1.isVector()) {