HomeSort by relevance Sort by last modified time
    Searched defs:NF (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Transforms/Utils/
CloneModule.cpp 60 Function *NF =
63 NF->copyAttributesFrom(I);
64 VMap[I] = NF;
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 613 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getName());
614 NF->copyAttributesFrom(F);
619 DI->second.replaceFunction(NF);
621 DEBUG(dbgs() << "ARG PROMOTION: Promoting to:" << *NF << "\n"
626 NF->setAttributes(AttributeSet::get(F->getContext(), AttributesVec));
629 F->getParent()->getFunctionList().insert(F, NF);
630 NF->takeName(F);
640 // Get a new callgraph node for NF.
641 CallGraphNode *NF_CGN = CG.getOrInsertFunction(NF);
744 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest()
    [all...]
DeadArgumentElimination.cpp 225 Function *NF = Function::Create(NFTy, Fn.getLinkage());
226 NF->copyAttributesFrom(&Fn);
227 Fn.getParent()->getFunctionList().insert(&Fn, NF);
228 NF->takeName(&Fn);
257 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
262 New = CallInst::Create(NF, Args, "", Call);
285 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
292 I2 = NF->arg_begin(); I != E; ++I, ++I2) {
301 DI->second.replaceFunction(NF);
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 828 NF(new String[]{
    [all...]

Completed in 3974 milliseconds