Searched refs:getFunction (Results 1 - 25 of 142) sorted by relevance

123456

/freebsd-10.1-release/contrib/llvm/lib/Analysis/
H A DTrace.cpp25 Function *Trace::getFunction() const { function in class:Trace
30 return getFunction()->getParent();
36 Function *F = getFunction();
H A DBlockFrequencyInfo.cpp56 return G->getFunction()->begin();
65 return G->getFunction()->begin();
68 return G->getFunction()->end();
78 return G->getFunction()->getName();
159 const Function *BlockFrequencyInfo::getFunction() const { function in class:BlockFrequencyInfo
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/
H A DTargetOptionsImpl.cpp25 if (MF.getFunction()->hasFnAttribute("no-frame-pointer-elim-non-leaf") &&
H A DGCMetadata.cpp147 OS << "GC roots for " << FD->getFunction().getName() << ":\n";
152 OS << "GC safe points for " << FD->getFunction().getName() << ":\n";
H A DLexicalScopes.cpp119 DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext());
138 DL.getScopeAndInlinedAt(Scope, InlinedAt, MF->getFunction()->getContext());
168 && DISubprogram(Scope).describes(MF->getFunction()))
/freebsd-10.1-release/contrib/llvm/lib/Target/R600/
H A DAMDGPUMachineFunction.cpp16 AttributeSet Set = MF.getFunction()->getAttributes();
/freebsd-10.1-release/contrib/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfo.h44 const Function *getFunction() const;
H A DTrace.h51 /// getFunction - Return this trace's parent function.
53 Function *getFunction () const;
/freebsd-10.1-release/contrib/llvm/lib/Analysis/IPA/
H A DCallPrinter.cpp34 if (Function *Func = Node->getFunction())
H A DCallGraph.cpp119 if (Function *F = Root->getFunction())
147 Function *F = CGN->getFunction(); // Get the function for the call graph node
182 if (Function *F = getFunction())
191 if (Function *FI = I->second->getFunction())
H A DCallGraphSCCPass.cpp145 if (Function *F = (*I)->getFunction()) {
192 Function *F = CGN->getFunction();
220 if (I->second->getFunction() == 0)
267 if (ExistingNode->getFunction() == CS.getCalledFunction())
276 ExistingNode->getFunction() == 0)
289 if (ExistingNode->getFunction() == 0) {
601 (*I)->getFunction()->print(Out);
H A DGlobalsModRef.cpp371 if (!SCC[0]->getFunction()) {
375 FunctionInfo.erase(SCC[i]->getFunction());
379 FunctionRecord &FR = FunctionInfo[SCC[0]->getFunction()];
387 Function *F = SCC[i]->getFunction();
414 if (Function *Callee = CI->second->getFunction()) {
441 FunctionInfo.erase(SCC[i]->getFunction());
447 for (inst_iterator II = inst_begin(SCC[i]->getFunction()),
448 E = inst_end(SCC[i]->getFunction());
479 FunctionInfo[SCC[i]->getFunction()] = FR;
/freebsd-10.1-release/contrib/llvm/lib/Target/ARM/
H A DThumb2RegisterInfo.cpp45 Type::getInt32Ty(MBB.getParent()->getFunction()->getContext()), Val);
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DErlangGCPrinter.cpp102 unsigned StackArity = MD.getFunction().arg_size() > RegisteredArgs ?
103 MD.getFunction().arg_size() - RegisteredArgs : 0;
H A DOcamlGCPrinter.cpp129 report_fatal_error("Function '" + FI.getFunction().getName() +
136 Twine(FI.getFunction().getName()));
143 report_fatal_error("Function '" + FI.getFunction().getName() +
H A DARMException.cpp62 if (Asm->MF->getFunction()->needsUnwindTableEntry())
71 if (!Asm->MF->getFunction()->needsUnwindTableEntry())
/freebsd-10.1-release/contrib/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp48 Function *LFn = L->getFunction(Name);
49 Function *RFn = R->getFunction(Name);
/freebsd-10.1-release/contrib/llvm/tools/opt/
H A DPrintSCC.cpp104 errs() << ((*I)->getFunction() ? (*I)->getFunction()->getName()
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestProbeData.java66 buf.append(d.getFunction());
/freebsd-10.1-release/contrib/llvm/lib/Transforms/IPO/
H A DPruneEH.cpp74 if (Function *F = (*I)->getFunction())
87 Function *F = (*I)->getFunction();
147 Function *F = (*I)->getFunction();
162 if (Function *F = (*I)->getFunction())
H A DInliner.cpp405 Function *F = (*I)->getFunction();
422 Function *F = (*I)->getFunction();
585 Function *F = CGN->getFunction();
/freebsd-10.1-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp737 const LLVMContext &Context = EmissionDetails.MF->getFunction()->getContext();
778 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
781 EmittedFunctions[F.getFunction()].FunctionBody = BufferBegin;
791 emitAlignment(std::max(F.getFunction()->getAlignment(), 8U));
792 TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
793 EmittedFunctions[F.getFunction()].Code = CurBufferPtr;
805 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
816 (uint8_t *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
822 CurFn = F.getFunction();
892 MemMgr->endFunctionBody(F.getFunction(), BufferBegi
[all...]
/freebsd-10.1-release/contrib/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp87 if (MD->isFunctionLocal() && MD->getFunction())
257 if (N && N->isFunctionLocal() && N->getFunction()) {
280 assert(N->isFunctionLocal() && N->getFunction() &&
301 if (O->isFunctionLocal() && O->getFunction())
489 if (MD->isFunctionLocal() && MD->getFunction())
498 if (N->isFunctionLocal() && N->getFunction())
/freebsd-10.1-release/contrib/llvm/include/llvm/CodeGen/
H A DGCMetadata.h110 /// getFunction - Return the function to which this metadata applies.
112 const Function &getFunction() const { return F; } function in class:llvm::GCFunctionInfo
/freebsd-10.1-release/contrib/llvm/include/llvm/IR/
H A DMetadata.h153 // getFunction - If this metadata is function-local and recursively has a
155 // Otherwise, return null. getFunction() should not be used for performance-
157 const Function *getFunction() const;

Completed in 180 milliseconds

123456