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

  /external/llvm/lib/Analysis/
LazyCallGraph.cpp 1 //===- LazyCallGraph.cpp - Analysis of a Module's call graph --------------===//
10 #include "llvm/Analysis/LazyCallGraph.h"
25 SmallVectorImpl<PointerUnion<Function *, LazyCallGraph::Node *>> &Callees,
56 LazyCallGraph::Node::Node(LazyCallGraph &G, Function &F)
78 void LazyCallGraph::Node::insertEdgeInternal(Function &Callee) {
86 void LazyCallGraph::Node::insertEdgeInternal(Node &CalleeN) {
91 void LazyCallGraph::Node::removeEdgeInternal(Function &Callee) {
100 LazyCallGraph::LazyCallGraph(Module &M) : NextDFSNumber(0)
    [all...]
  /external/llvm/include/llvm/Analysis/
LazyCallGraph.h 1 //===- LazyCallGraph.h - Analysis of a Module's call graph ------*- C++ -*-===//
31 /// see the documentation of the \c LazyCallGraph below.
100 /// FIXME: This class is named LazyCallGraph in a lame attempt to distinguish
103 class LazyCallGraph {
119 friend class LazyCallGraph;
120 friend class LazyCallGraph::Node;
122 LazyCallGraph *G;
126 iterator(LazyCallGraph &G, NodeVectorImplT::iterator NI,
161 friend class LazyCallGraph;
162 friend class LazyCallGraph::SCC
    [all...]

Completed in 49 milliseconds