Home | History | Annotate | Download | only in X86

Lines Matching refs:VT2

17778 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
17779 if (!VT1.isInteger() || !VT2.isInteger())
17782 unsigned NumBits2 = VT2.getSizeInBits();
17791 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
17793 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
17796 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
17798 if (isZExtFree(VT1, VT2))
17805 !VT2.isSimple() || !VT2.isInteger())
17843 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
17845 return !(VT1 == MVT::i32 && VT2 == MVT::i16);