Lines Matching refs:VT1
6851 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
6852 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6854 unsigned NumBits1 = VT1.getSizeInBits();
6897 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
6898 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6900 unsigned NumBits1 = VT1.getSizeInBits();
6906 EVT VT1 = Val.getValueType();
6907 if (isZExtFree(VT1, VT2)) {
6915 return (VT1.isSimple() && !VT1.isVector() && VT1.isInteger() &&
6917 VT1.getSizeInBits() <= 32);