Lines Matching refs:VT1
3604 EVT VT1 = Op.getValue(1).getValueType(); in lowerADDSUBCARRY() local
3615 SDVTList VTs = DAG.getVTList(VT0, VT1); in lowerADDSUBCARRY()
3621 IsSigned ? overflowFlagToValue(Sum.getValue(1), VT1, DAG) in lowerADDSUBCARRY()
3622 : carryFlagToValue(Sum.getValue(1), VT1, DAG, InvertCarry); in lowerADDSUBCARRY()
12572 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() argument
12573 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger()) in isTruncateFree()
12575 uint64_t NumBits1 = VT1.getFixedSizeInBits(); in isTruncateFree()
12616 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() argument
12617 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger()) in isZExtFree()
12619 unsigned NumBits1 = VT1.getSizeInBits(); in isZExtFree()
12625 EVT VT1 = Val.getValueType(); in isZExtFree() local
12626 if (isZExtFree(VT1, VT2)) { in isZExtFree()
12634 return (VT1.isSimple() && !VT1.isVector() && VT1.isInteger() && in isZExtFree()
12636 VT1.getSizeInBits() <= 32); in isZExtFree()