Home
last modified time | relevance | path

Searched refs:NFTy (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp168 FunctionType *NFTy = FunctionType::get(FTy->getReturnType(), Params, false); in deleteDeadVarargs() local
172 Function *NF = Function::Create(NFTy, F.getLinkage(), F.getAddressSpace()); in deleteDeadVarargs()
864 FunctionType *NFTy = FunctionType::get(NRetTy, Params, FTy->isVarArg()); in removeDeadStuffFromFunction() local
867 if (NFTy == FTy) in removeDeadStuffFromFunction()
871 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getAddressSpace()); in removeDeadStuffFromFunction()
947 NewCB = CallInst::Create(NFTy, NF, Args, OpBundles, "", CB.getIterator()); in removeDeadStuffFromFunction()
1042 if (!NFTy->getReturnType()->isVoidTy()) { in removeDeadStuffFromFunction()
1087 if (NFTy != FTy && NF->getSubprogram()) { in removeDeadStuffFromFunction()
H A DExpandVariadics.cpp544 FunctionType *NFTy = inlinableVariadicFunctionType(M, FTy); in deriveFixedArityReplacement() local
545 Function *NF = Function::Create(NFTy, F.getLinkage(), F.getAddressSpace()); in deriveFixedArityReplacement()
557 Attrs = Attrs.addParamAttributes(Ctx, NFTy->getNumParams() - 1, ParamAttrs); in deriveFixedArityReplacement()
810 FunctionType *NFTy = inlinableVariadicFunctionType(M, VarargFunctionType); in expandCall() local
812 NewCB = CallInst::Create(NFTy, Dst, Args, OpBundles, "", CI); in expandCall()
H A DArgumentPromotion.cpp158 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg()); in doPromotion() local
161 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getAddressSpace(), in doPromotion()