Searched refs:NewRetTy (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURewriteOutArguments.cpp356 StructType *NewRetTy = StructType::create(Ctx, ReturnTypes, F.getName()); local
358 FunctionType *NewFuncTy = FunctionType::get(NewRetTy,
362 LLVM_DEBUG(dbgs() << "Computed new return type: " << *NewRetTy << '\n');
391 Value *NewRetVal = UndefValue::get(NewRetTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp4758 Type *NewRetTy = FT->getReturnType(); local
4761 if (OldRetTy != NewRetTy) {
4763 if (NewRetTy->isStructTy())
4766 if (!CastInst::isBitOrNoopPointerCastable(NewRetTy, OldRetTy, DL)) {
4772 !NewRetTy->isVoidTy())
4778 if (RAttrs.overlaps(AttributeFuncs::typeIncompatible(NewRetTy)))
4889 RAttrs.remove(AttributeFuncs::typeIncompatible(NewRetTy));
4941 if (NewRetTy->isVoidTy())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2258 Type *NewRetTy = Caller->getReturnType(); local
2259 bool NeedBitCast = !CB.use_empty() && CB.getType() != NewRetTy;
2282 Builder.CreateRet(Builder.CreateBitCast(ReturnedMustTail, NewRetTy));

Completed in 182 milliseconds