Lines Matching defs:NF
173 Function *NF = Function::Create(NFTy, F.getLinkage(), F.getAddressSpace());
174 NF->copyAttributesFrom(&F);
175 NF->setComdat(F.getComdat());
176 F.getParent()->getFunctionList().insert(F.getIterator(), NF);
177 NF->takeName(&F);
178 NF->IsNewDbgInfoFormat = F.IsNewDbgInfoFormat;
207 NewCB = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
210 NewCB = CallInst::Create(NF, Args, OpBundles, "", CB->getIterator());
233 NF->splice(NF->begin(), &F);
239 I2 = NF->arg_begin();
250 NF->addMetadata(KindID, *Node);
253 F.replaceAllUsesWith(NF);
254 // Delete the bitcast that we just created, so that NF does not
256 NF->removeDeadConstantUsers();
885 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getAddressSpace());
886 NF->copyAttributesFrom(F);
887 NF->setComdat(F->getComdat());
888 NF->setAttributes(NewPAL);
891 F->getParent()->getFunctionList().insert(F->getIterator(), NF);
892 NF->takeName(F);
893 NF->IsNewDbgInfoFormat = F->IsNewDbgInfoFormat;
959 NewCB = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
962 NewCB = CallInst::Create(NFTy, NF, Args, OpBundles, "", CB.getIterator());
1027 NF->splice(NF->begin(), F);
1033 I2 = NF->arg_begin();
1049 if (F->getReturnType() != NF->getReturnType())
1050 for (BasicBlock &BB : *NF)
1094 NF->addMetadata(KindID, *Node);
1100 if (NFTy != FTy && NF->getSubprogram()) {
1101 DISubprogram *SP = NF->getSubprogram();