我正在尝试在 MacOSX 上分析一些 C++ 程序。所以我构建google-perftools
,编写了一个程序,使用 MacPorts g++ 4.7 编译,带有-g
编译器标志,并链接到libprofiler
. 然后我跑了:
CPUPROFILE=cpu.profile ./a.out
然后我运行 pprof 来生成输出:
[hidden ~]$ pprof --text ./a.out cpu.profile
Using local file ./a.out.
Using local file cpu.profile.
Removing __sigtramp from all stack traces.
Total: 282 samples
107 37.9% 37.9% 107 37.9% 0x000000010d72229e
16 5.7% 43.6% 16 5.7% 0x000000010d721a5f
12 4.3% 47.9% 12 4.3% 0x000000010d721de8
11 3.9% 51.8% 11 3.9% 0x000000010d721a4e
9 3.2% 55.0% 9 3.2% 0x000000010d721e13
8 2.8% 57.8% 8 2.8% 0x000000010d721a64
7 2.5% 60.3% 7 2.5% 0x000000010d7222f0
6 2.1% 62.4% 6 2.1% 0x000000010d721a4c
6 2.1% 64.5% 6 2.1% 0x000000010d721b1f
6 2.1% 66.7% 6 2.1% 0x000000010d721e0c
5 1.8% 68.4% 5 1.8% 0x000000010d721fba
......
看起来 perftools 不会将地址转换为函数名称。
有谁知道我在这里想念什么?我应该怎么做才能让分析器生成正确的结果。
编辑:更多信息:这不是 pprof 或 google-perftools 的问题,而是更多类似 gcc 或 macosx 的问题,因为 Instrument.app 还显示地址而不是行号。我不熟悉调试符号在 Mac OS X 下是如何工作的,所以我宁愿认为它是我在这里遗漏的东西,而不是 gcc 或 Mac OS X 中的错误。我想知道是否有人可以提供一些关于调试信息如何工作的提示适用于 Mac OS X。