使用 valgrind 而非 gcc 进行分析
一段时间以来,我一直在使用 gprof 来分析我的 C 代码,但它非常不稳定,每次运行它都会给我不同的模拟时间和百分比。 我决定切换到 valgrind,我正在使用 valgrind 进行分析,但是我想显示数据并获得与 gprof 类似的结果。在 gprof 中,我得到了 % 执行时间,self ns/call
有没有办法在不使用 kcachegrind 的情况下获取此信息?
Kcachegrind 正在打开 UI,我更喜欢获取文件以便进行分析,因为我想一起进行多个分析
感谢您的帮助
for a while I have been using gprof to profile my C code but it is very very unstable, on every run it is giving me a different simulation time as well as %.
I have decided to switch to valgrind, I am profiling using the valgrind, however I want to display the data and get similar results to gprof. In gprof I got the % execution time, self ns/call
Is there a way to get this info without using kcachegrind?
Kcachegrind is opening the UI, and I prefer to get files so i can analyze, as I want to do several profilings together
Thanks for the help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以如果你想使用裸数据,为什么还要看 GUI?从较低的级别开始,即 Cachegrind 本身。 http://valgrind.org/docs/manual/cg-manual.html
So if you want to use bare data, why are you looking at the gui? Start from the lower level, the cachegrind itself. http://valgrind.org/docs/manual/cg-manual.html