Home | History | Annotate | Download | only in X86

Lines Matching refs:Ty2

16716 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
16717 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
16720 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
16724 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
16725 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
16755 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
16757 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();