Home | History | Annotate | Download | only in IPO

Lines Matching defs:NF

601   Function *NF = Function::Create(NFTy, F->getLinkage(), F->getName());
602 NF->copyAttributesFrom(F);
605 DEBUG(dbgs() << "ARG PROMOTION: Promoting to:" << *NF << "\n"
610 NF->setAttributes(AttributeSet::get(F->getContext(), AttributesVec));
613 F->getParent()->getFunctionList().insert(F, NF);
614 NF->takeName(F);
624 // Get a new callgraph node for NF.
625 CallGraphNode *NF_CGN = CG.getOrInsertFunction(NF);
728 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
734 New = CallInst::Create(NF, Args, "", Call);
765 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
771 I2 = NF->arg_begin(); I != E; ++I) {
785 Instruction *InsertPt = NF->begin()->begin();
857 << "' of function '" << NF->getName() << "'\n");
877 AA.replaceWithNewValue(F, NF);