Home | History | Annotate | Download | only in X86

Lines Matching refs:Ty1

13319 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13320 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13322 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13327 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13328 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13331 if (!isTypeLegal(EVT::getEVT(Ty1)))
13334 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13358 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13360 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();