static void D() { }
static void Y() { D(); }
static void X() { Y(); }
static void C() { D(); X(); }
static void B() { C(); }
static void S() { D(); }
static void P() { S(); }
static void O() { P(); }
static void N() { O(); }
static void M() { N(); }
static void G() { M(); }
static void A() { B(); G(); }
int main() {
A();
}
然后
$ clang++ -S -emit-llvm main1.cpp -o - | opt -analyze -dot-callgraph
$ dot -Tpng -ocallgraph.png callgraph.dot
产生一些闪亮的图像(有一个“外部节点”,因为main
具有外部链接,也可能从该翻译单元的外部调用):
您可能需要使用对其进行后处理c++filt
,以便获得所涉及的函数和类的完整名称。像下面
#include <vector>
struct A {
A(int);
void f();
};
int main() {
std::vector<A> v;
v.push_back(42);
v[0].f();
}
$ clang++ -S -emit-llvm main1.cpp -o - |
opt -analyze -std-link-opts -dot-callgraph
$ cat callgraph.dot |
c++filt |
sed 's,>,\\>,g; s,-\\>,->,g; s,<,\\<,g' |
gawk '/external node/{id=$1} $1 != id' |
dot -Tpng -ocallgraph.png
产生这种美感(哦,我的,未启用优化功能的尺寸太大!)
那个神秘的未命名函数,Node0x884c4e0
是一个占位符,被假定由定义未知的任何函数调用。