HomeSort by: relevance | last modified time | path
    Searched defs:getFunction (Results 1 - 25 of 48) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
Trace.cpp 27 Function *Trace::getFunction() const {
32 return getFunction()->getParent();
37 Function *F = getFunction();
BlockFrequencyInfo.cpp 107 return &G->getFunction()->front();
117 return nodes_iterator(G->getFunction()->begin());
121 return nodes_iterator(G->getFunction()->end());
214 return BFI->getBlockProfileCount(*getFunction(), BB, AllowSynthetic);
221 return BFI->getProfileCountFromFreq(*getFunction(), Freq);
262 const Function *BlockFrequencyInfo::getFunction() const {
263 return BFI ? BFI->getFunction() : nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Module.cpp 171 // getFunction - Look up the specified function in the module symbol table.
174 Function *Module::getFunction(StringRef Name) const {
Instruction.cpp 70 const Function *Instruction::getFunction() const {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
SampleProfileProbe.h 106 Function *getFunction() const { return F; }
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
InterpFrame.h 60 Function *getFunction() const { return Func; }
Program.cpp 188 Function *Program::getFunction(const FunctionDecl *F) {
195 if (Function *Func = getFunction(F)) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DivergenceAnalysis.h 52 const Function &getFunction() const { return F; }
175 const Function &getFunction() const { return F; }
CFGPrinter.h 79 const Function *getFunction() { return this->F; }
103 return &(CFGInfo->getFunction()->getEntryBlock());
110 return nodes_iterator(CFGInfo->getFunction()->begin());
114 return nodes_iterator(CFGInfo->getFunction()->end());
118 return CFGInfo->getFunction()->size();
131 return "CFG for '" + CFGInfo->getFunction()->getName().str() + "' function";
CallGraph.h 198 Function *getFunction() const { return F; }
DependenceAnalysis.h 334 Function *getFunction() const { return F; }
IRSimilarityIdentifier.h 588 Function *getFunction() { return getStartBB()->getParent(); }
LazyCallGraph.h 163 Function &getFunction() const;
324 Function &getFunction() const { return *F; }
1105 if (Visited.count(BA->getFunction()))
1112 return I->getFunction() == BA->getFunction();
1118 Visited.insert(BA->getFunction());
1119 Worklist.push_back(BA->getFunction());
1251 inline Function &LazyCallGraph::Edge::getFunction() const {
1253 return getNode().getFunction();
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
GCMetadata.h 104 /// getFunction - Return the function to which this metadata applies.
105 const Function &getFunction() const { return F; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 96 return &G->getFunction()->front();
106 return nodes_iterator(G->getFunction()->begin());
110 return nodes_iterator(G->getFunction()->end());
239 const Function &F = MBFI->getFunction()->getFunction();
248 const Function &F = MBFI->getFunction()->getFunction();
269 const MachineFunction *MachineBlockFrequencyInfo::getFunction() const {
270 return MBFI ? MBFI->getFunction() : nullptr;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
CodeCompleteConsumer.cpp 485 FunctionDecl *CodeCompleteConsumer::OverloadCandidate::getFunction() const {
DeclSpec.cpp 158 /// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function.
160 DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Evaluator.cpp 253 static Function *getFunction(Constant *C) {
267 if (auto *Fn = getFunction(getVal(V)))
272 !getFormalParams(CB, getFunction(CE->getOperand(0)), Formals))
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 426 Function *getFunction(std::string Name) {
428 if (auto *F = TheModule->getFunction(Name))
477 Function *CalleeF = getFunction(Callee);
517 Function *TheFunction = getFunction(P.getName());
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 608 Function *getFunction() const { return EntryBB->getParent(); }
1192 Function *getFunction() const { return Header->getParent(); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Constants.h 873 Function *getFunction() const { return (Function *)Op<0>().get(); }
Instruction.h 112 const Function *getFunction() const;
113 Function *getFunction() {
115 static_cast<const Instruction *>(this)->getFunction());
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLParser.h 431 Function &getFunction() const { return F; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
StackMapParser.h 364 FunctionAccessor getFunction(unsigned FunctionIndex) const {
371 return function_iterator(getFunction(0));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SampleProfileLoaderBaseImpl.h 64 static Function &getFunction(Function &F) { return F; }
109 Function &getFunction(FunctionT &F) {
110 return afdo_detail::IRTraits<BT>::getFunction(F);
831 getFunction(F).setEntryCount(
851 const Function &Func = getFunction(F);
892 const Function &Func = getFunction(F);

Completed in 59 milliseconds

1 2