use valgrind to know time(in seconds) spent in each function

前端 未结 3 844
南旧
南旧 2021-01-31 03:01

is there any extension of valgrind, that can be used in the command window, that would help me know the time, in seconds, spent in each function in my C code?

thanks =)<

相关标签:
3条回答
  • 2021-01-31 03:13

    Valgrind isn't suited for measuring time, as running an application in valgrind distorts the results (slowdown, CPU vs. I/O). Thus valgrind profiling tool callgrind doesn't measure time but CPU instructions. Callgrind is only useful if your bottleneck is CPU-bound (thus CPU instructions matter), then CPU instructions measured will be in proportion to the time spent. It's not useful if heavy I/O or multiple processes are involved. Then you should use a sampling profiler, like sysprof or gprof (Edit 2020: perf). That checks in intervals which function the process is in, with less distorted results.

    0 讨论(0)
  • 2021-01-31 03:18

    For machine instruction profiling use valgrind's callgrind (also, cachegrind can do cache and branch prediction profiling which is quite nice).

    For time measurements use google's cpu profiler, it gives way better results than gprof. You can set sampling frequency and it can show the output as a nice annotated call graph.

    0 讨论(0)
  • 2021-01-31 03:31

    Use this link. I would think something like Callgrind should do the trick.

    0 讨论(0)
提交回复
热议问题