Lines Matching defs:VT2
35135 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
35136 if (!VT1.isScalarInteger() || !VT2.isScalarInteger())
35139 unsigned NumBits2 = VT2.getSizeInBits();
35148 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
35150 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget.is64Bit();
35153 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
35155 if (isZExtFree(VT1, VT2))
35162 !VT2.isSimple() || !VT2.isInteger())
39552 MVT VT2 = V2.getSimpleValueType();
39554 (RootSizeInBits % VT2.getSizeInBits()) == 0 && "Vector size mismatch");
39566 bool FloatDomain = VT1.isFloatingPoint() || VT2.isFloatingPoint() ||
39595 if (VT1 == VT2 && VT1.getSizeInBits() == RootSizeInBits && VT1.isVector()) {