我正在使用 Valgrind 的 Cachegrind 分析我的 C++ 应用程序,使用此终端行:
valgrind --branch-sim=yes --tool=cachegrind ./myProgram
从我看到的在线指南中,这应该会自动显示功能级别的分析结果。但是,我只得到程序级的结果。
我还需要指定什么才能查看每个函数的结果?
更新
好的,我需要运行这个:
cg_annotate cachegrind.out.XXXX
得到函数级的结果。
我正在使用 Valgrind 的 Cachegrind 分析我的 C++ 应用程序,使用此终端行:
valgrind --branch-sim=yes --tool=cachegrind ./myProgram
从我看到的在线指南中,这应该会自动显示功能级别的分析结果。但是,我只得到程序级的结果。
我还需要指定什么才能查看每个函数的结果?
更新
好的,我需要运行这个:
cg_annotate cachegrind.out.XXXX
得到函数级的结果。