Lines Matching defs:NF
172 Function *NF = Function::Create(NFTy, F.getLinkage(), F.getAddressSpace());
173 NF->copyAttributesFrom(&F);
174 NF->setComdat(F.getComdat());
175 F.getParent()->getFunctionList().insert(F.getIterator(), NF);
176 NF->takeName(&F);
177 NF->IsNewDbgInfoFormat = F.IsNewDbgInfoFormat;
206 NewCB = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
209 NewCB = CallInst::Create(NF, Args, OpBundles, "", CB->getIterator());
232 NF->splice(NF->begin(), &F);
238 I2 = NF->arg_begin();
249 NF->addMetadata(KindID, *Node);
252 F.replaceAllUsesWith(NF);
253 // Delete the bitcast that we just created, so that NF does not
255 NF->removeDeadConstantUsers();
871 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getAddressSpace());
872 NF->copyAttributesFrom(F);
873 NF->setComdat(F->getComdat());
874 NF->setAttributes(NewPAL);
877 F->getParent()->getFunctionList().insert(F->getIterator(), NF);
878 NF->takeName(F);
879 NF->IsNewDbgInfoFormat = F->IsNewDbgInfoFormat;
944 NewCB = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
947 NewCB = CallInst::Create(NFTy, NF, Args, OpBundles, "", CB.getIterator());
1013 NF->splice(NF->begin(), F);
1019 I2 = NF->arg_begin();
1036 if (F->getReturnType() != NF->getReturnType())
1037 for (BasicBlock &BB : *NF)
1081 NF->addMetadata(KindID, *Node);
1087 if (NFTy != FTy && NF->getSubprogram()) {
1088 DISubprogram *SP = NF->getSubprogram();