OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CallGraph
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
CallGraph.cpp
1
//===-
CallGraph
.cpp - Build a Module's call graph ------------------------===//
9
#include "llvm/Analysis/
CallGraph
.h"
30
// Implementations of the
CallGraph
class methods.
33
CallGraph
::
CallGraph
(Module &M)
42
CallGraph
::
CallGraph
(
CallGraph
&&Arg)
55
CallGraph
::~
CallGraph
() {
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CallGraph.cpp
1
//===-
CallGraph
.cpp - AST-based Call graph -------------------------------===//
9
// This file defines the AST-based
CallGraph
.
13
#include "clang/Analysis/
CallGraph
.h"
37
#define DEBUG_TYPE "
CallGraph
"
47
CallGraph
*G;
51
CGBuilder(
CallGraph
*g, CallGraphNode *N) : G(g), CallerNode(N) {}
140
void
CallGraph
::addNodesForBlocks(DeclContext *D) {
149
CallGraph
::
CallGraph
() {
153
CallGraph
::~CallGraph() = default
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CallGraph.h
1
//===-
CallGraph
.h - AST-based Call graph -----------------------*- C++ -*-===//
9
// This file declares the AST-based
CallGraph
.
42
class
CallGraph
: public RecursiveASTVisitor<
CallGraph
> {
55
CallGraph
();
56
~
CallGraph
();
263
template <> struct GraphTraits<clang::
CallGraph
*>
265
static NodeType *getEntryNode(clang::
CallGraph
*CGN) {
270
CGGetValue(clang::
CallGraph
::const_iterator::value_type &P) {
276
mapped_iterator<clang::
CallGraph
::iterator, decltype(&CGGetValue)>
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CallGraph.h
1
//===-
CallGraph
.h - Build a Module's call graph ----------------*- C++ -*-===//
14
///
callgraph
node keeps track of which functions are called by the function
39
/// Because of these properties, the
CallGraph
captures a conservative superset
73
class
CallGraph
{
91
explicit
CallGraph
(Module &M);
92
CallGraph
(
CallGraph
&&Arg);
93
~
CallGraph
();
115
assert(I != FunctionMap.end() && "Function not in
callgraph
!");
122
assert(I != FunctionMap.end() && "Function not in
callgraph
!");
[
all
...]
Completed in 55 milliseconds
Indexes created Mon Sep 14 00:24:24 UTC 2026