Home | History | Annotate | Download | only in AArch64

Lines Matching refs:VT2

6082 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
6083 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6086 unsigned NumBits2 = VT2.getSizeInBits();
6099 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
6100 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6103 unsigned NumBits2 = VT2.getSizeInBits();
6107 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
6109 if (isZExtFree(VT1, VT2)) {
6118 VT2.isSimple() && !VT2.isVector() && VT2.isInteger() &&