HomeSort by relevance Sort by last modified time
    Searched defs:CallGraphNode (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Analysis/
CallGraph.h 67 class CallGraphNode;
76 typedef std::map<const Function *, CallGraphNode *> FunctionMapTy;
98 inline const CallGraphNode *operator[](const Function *F) const {
103 inline CallGraphNode *operator[](const Function *F) {
109 /// Returns the CallGraphNode which is used to represent undetermined calls
111 virtual CallGraphNode* getExternalCallingNode() const { return 0; }
112 virtual CallGraphNode* getCallsExternalNode() const { return 0; }
117 virtual CallGraphNode* getRoot() { return 0; }
118 virtual const CallGraphNode* getRoot() const { return 0; }
131 Function *removeFunctionFromModule(CallGraphNode *CGN)
    [all...]
  /external/clang/include/clang/Index/
CallGraph.h 10 // This file defined the CallGraph and CallGraphNode classes.
28 class CallGraphNode {
30 typedef std::pair<idx::ASTLocation, CallGraphNode*> CallRecord;
34 CallGraphNode(idx::Entity f) : F(f) {}
44 void addCallee(idx::ASTLocation L, CallGraphNode *Node) {
59 typedef std::map<idx::Entity, CallGraphNode *> FunctionMapTy;
65 llvm::DenseMap<CallGraphNode *, ASTContext *> CallerCtx;
68 CallGraphNode *Root;
71 CallGraphNode *ExternalCallingNode;
85 CallGraphNode *getRoot() { return Root;
    [all...]

Completed in 151 milliseconds