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

  /external/clang/lib/Index/
CallGraph.cpp 1 //== CallGraph.cpp - Call graph building ------------------------*- C++ -*--==//
10 // This file defined the CallGraph and CGBuilder classes.
14 #include "clang/Index/CallGraph.h"
27 CallGraph &G;
35 CGBuilder(CallGraph &g, FunctionDecl *fd, Entity E, CallGraphNode *N)
58 CallGraph::CallGraph(Program &P) : Prog(P), Root(0) {
62 CallGraph::~CallGraph() {
71 void CallGraph::addTU(ASTContext& Ctx)
    [all...]
  /external/llvm/include/llvm/Analysis/
CallGraph.h 1 //===- CallGraph.h - Build a Module's call graph ----------------*- C++ -*-===//
14 // callgraph node keeps track of which functions the are called by the function
39 // Because of these properties, the CallGraph captures a conservative superset
43 // The CallGraph class also attempts to figure out what the root of the
44 // CallGraph is, which it currently does by looking for a function named 'main'.
70 // CallGraph class definition
72 class CallGraph {
100 assert(I != FunctionMap.end() && "Function not in callgraph!");
105 assert(I != FunctionMap.end() && "Function not in callgraph!");
110 /// into the callgraph. Override this if you want behavioral inheritance
    [all...]
  /external/clang/include/clang/Index/
CallGraph.h 1 //== CallGraph.cpp - Call graph building ------------------------*- C++ -*--==//
10 // This file defined the CallGraph and CallGraphNode classes.
55 class CallGraph {
74 CallGraph(idx::Program &P);
75 ~CallGraph();
107 template <> struct GraphTraits<clang::CallGraph> {
108 typedef clang::CallGraph GraphType;

Completed in 53 milliseconds