Home | History | Annotate | Download | only in X86

Lines Matching refs:Ty2

13319 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13320 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13323 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
13327 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13328 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13358 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13360 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();