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

/external/llvm/lib/Transforms/Utils/
H A DCloneModule.cpp60 Function *NF = local
63 NF->copyAttributesFrom(I);
64 VMap[I] = NF;
/external/llvm/lib/MC/
H A DMCSubtargetInfo.cpp47 unsigned NF, unsigned NP) {
59 NumFeatures = NF;
37 InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS, const SubtargetFeatureKV *PF, const SubtargetFeatureKV *PD, const SubtargetInfoKV *ProcSched, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP, unsigned NF, unsigned NP) argument
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp606 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getName()); local
607 NF->copyAttributesFrom(F);
610 DEBUG(dbgs() << "ARG PROMOTION: Promoting to:" << *NF << "\n"
615 NF->setAttributes(AttributeSet::get(F->getContext(), AttributesVec));
618 F->getParent()->getFunctionList().insert(F, NF);
619 NF->takeName(F);
629 // Get a new callgraph node for NF.
630 CallGraphNode *NF_CGN = CG.getOrInsertFunction(NF);
733 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
739 New = CallInst::Create(NF, Arg
[all...]
H A DDeadArgumentElimination.cpp257 Function *NF = Function::Create(NFTy, Fn.getLinkage()); local
258 NF->copyAttributesFrom(&Fn);
259 Fn.getParent()->getFunctionList().insert(&Fn, NF);
260 NF->takeName(&Fn);
287 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
292 New = CallInst::Create(NF, Args, "", Call);
315 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
322 I2 = NF->arg_begin(); I != E; ++I, ++I2) {
331 DI->second.replaceFunction(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.c114 #define NF SYSCALL_NEVER_FAILS macro
149 #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 153 milliseconds