Searched defs:NF (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DCloneModule.cpp64 Function *NF = local
67 NF->copyAttributesFrom(I);
68 VMap[I] = NF;
/external/llvm/lib/MC/
H A DMCSubtargetInfo.cpp30 unsigned NF, unsigned NP) {
38 NumFeatures = NF;
23 InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS, const SubtargetFeatureKV *PF, const SubtargetFeatureKV *PD, const SubtargetInfoKV *ProcSched, const InstrStage *IS, const unsigned *OC, const unsigned *FP, unsigned NF, unsigned NP) argument
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp607 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getName()); local
608 NF->copyAttributesFrom(F);
611 DEBUG(dbgs() << "ARG PROMOTION: Promoting to:" << *NF << "\n"
616 NF->setAttributes(AttrListPtr::get(AttributesVec));
619 F->getParent()->getFunctionList().insert(F, NF);
620 NF->takeName(F);
630 // Get a new callgraph node for NF.
631 CallGraphNode *NF_CGN = CG.getOrInsertFunction(NF);
730 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
735 New = CallInst::Create(NF, Arg
[all...]
H A DDeadArgumentElimination.cpp217 Function *NF = Function::Create(NFTy, Fn.getLinkage()); local
218 NF->copyAttributesFrom(&Fn);
219 Fn.getParent()->getFunctionList().insert(&Fn, NF);
220 NF->takeName(&Fn);
246 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
251 New = CallInst::Create(NF, Args, "", Call);
274 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
281 I2 = NF->arg_begin(); I != E; ++I, ++I2) {
766 Function *NF
[all...]
/external/srec/srec/include/
H A Dfront.h55 #define NF 40 macro
167 fftdata fcb[NF];
169 int fcmid[NF+2];
170 fftdata fcscl[NF+1], framp[NP+1];
/external/strace/
H A Dsyscall.c118 #define NF SYSCALL_NEVER_FAILS macro
153 #undef NF macro
/external/qemu/target-arm/
H A Dcpu.h103 uint32_t NF; /* N is bit 31. All other bits are undefined. */ member in struct:CPUARMState
298 return (env->NF & 0x80000000) | (ZF << 30)
310 env->NF = val;

Completed in 545 milliseconds