HomeSort by: relevance | last modified time | path
    Searched defs:getOrInsertFunction (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
Module.cpp 138 // getOrInsertFunction - Look up the specified function in the module symbol
143 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty,
167 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty) {
168 return getOrInsertFunction(Name, Ty, AttributeList());
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CallGraph.cpp 34 : M(M), ExternalCallingNode(getOrInsertFunction(nullptr)),
78 CallGraphNode *Node = getOrInsertFunction(F);
110 Node->addCalledFunction(Call, getOrInsertFunction(Callee));
114 Node->addCalledFunction(nullptr, getOrInsertFunction(CB));
172 // getOrInsertFunction - This method is identical to calling operator[], but
175 CallGraphNode *CallGraph::getOrInsertFunction(const Function *F) {
224 removeOneAbstractEdgeTo(CG->getOrInsertFunction(CB));
277 OldCBs.push_back(CG->getOrInsertFunction(CB));
280 NewCBs.push_back(CG->getOrInsertFunction(CB));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CallGraph.h 153 CallGraphNode *getOrInsertFunction(const Function *F);
397 CallGraphNode *getOrInsertFunction(const Function *F) {
398 return G->getOrInsertFunction(F);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Module.h 362 FunctionCallee getOrInsertFunction(StringRef Name, FunctionType *T,
365 FunctionCallee getOrInsertFunction(StringRef Name, FunctionType *T);
374 FunctionCallee getOrInsertFunction(StringRef Name,
378 return getOrInsertFunction(Name,
385 FunctionCallee getOrInsertFunction(StringRef Name, Type *RetTy,
387 return getOrInsertFunction(Name, AttributeList{}, RetTy, Args...);
393 getOrInsertFunction(StringRef Name, AttributeList AttributeList,

Completed in 59 milliseconds