Searched refs:NewRetTy (Results 1 – 4 of 4) sorted by relevance
97 Type *NewRetTy = classifyPointerType(RetInst->getReturnValue(), Map); in classifyFunctionType() local99 RetTy = NewRetTy; in classifyFunctionType()100 else if (RetTy != NewRetTy) in classifyFunctionType()
308 StructType *NewRetTy = StructType::create(Ctx, ReturnTypes, F.getName()); in runOnFunction() 310 FunctionType *NewFuncTy = FunctionType::get(NewRetTy, in runOnFunction() 314 LLVM_DEBUG(dbgs() << "Computed new return type: " << *NewRetTy << '\n'); in runOnFunction() 345 Value *NewRetVal = PoisonValue::get(NewRetTy); in runOnFunction() 309 StructType *NewRetTy = StructType::create(Ctx, ReturnTypes, F.getName()); runOnFunction() local
4111 Type *NewRetTy = FT->getReturnType(); in transformConstExprCastCall() local4114 if (OldRetTy != NewRetTy) { in transformConstExprCastCall()4116 if (NewRetTy->isStructTy()) in transformConstExprCastCall()4119 if (!CastInst::isBitOrNoopPointerCastable(NewRetTy, OldRetTy, DL)) { in transformConstExprCastCall()4125 !NewRetTy->isVoidTy()) in transformConstExprCastCall()4131 if (RAttrs.overlaps(AttributeFuncs::typeIncompatible(NewRetTy))) in transformConstExprCastCall()4234 RAttrs.remove(AttributeFuncs::typeIncompatible(NewRetTy)); in transformConstExprCastCall()4285 if (NewRetTy->isVoidTy()) in transformConstExprCastCall()
2828 Type *NewRetTy = Caller->getReturnType(); in InlineFunction() local2829 bool NeedBitCast = !CB.use_empty() && CB.getType() != NewRetTy; in InlineFunction()2852 Builder.CreateRet(Builder.CreateBitCast(ReturnedMustTail, NewRetTy)); in InlineFunction()