Home | History | Annotate | Download | only in AArch64

Lines Matching refs:VT2

6556 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
6557 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6560 VT2.getSizeInBits();
6601 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
6602 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6605 unsigned NumBits2 = VT2.getSizeInBits();
6609 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
6611 if (isZExtFree(VT1, VT2)) {
6620 VT2.isSimple() && !VT2.isVector() && VT2.isInteger() &&