What other programs do the same thing as gprof?
|
closed as not constructive by casperOne♦ Jan 5 at 6:46
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Valgrind has an instruction-count profiler with a very nice visualizer called KCacheGrind. As Mike Dunlavey recommends, Valgrind counts the fraction of instructions for which a procedure is live on the stack, although I'm sorry to say it appears to become confused in the presence of mutual recursion. But the visualizer is very nice and light years ahead of |
|||||||||||||
|
|
gprof (read the paper) exists for historical reasons. If you think it will help you find performance problems, it was never advertised as such. Here's what the paper says:
It does not say it can be used to identify the various implementations to be assessed, although it does imply that it could, under special circumstances:
What about problems that are not so localized? Do those not matter? Don't place expectations on gprof that were never claimed for it. It is only a measurement tool, and only of CPU-bound operations. Try this instead. There's a simple observation about programs. In a given execution, every instruction is responsible for some fraction of the overall time (especially gprof embodies certain myths about performance, such as:
ADDED: I would just like to point out one reason why gprof is popular - it is being taught, presumably because it's free, easy to teach, and it's been around a long time. A quick Google search locates some academic institutions that teach it (or appear to):
** With the exception of other ways of requesting work to be done, that don't leave a trace telling why, such as by message posting. |
|||||||||||||||||||||
|
|
Since I did't see here anything about First of all - this is a tutorial about Linux profiling with You can use You can see "live" analysis of your application with
Or you can record performance data of a running application and analyze them after that: 1) To record performance data:
or to record for 10 secs:
or to record with call graph ()
2) To analyze the recorded data
Or you can record performace data of a application and analyze them after that just by launching the application in this way and waiting for it to exit:
This is an example of profiling a test program The test program is in file main.cpp (I will put main.cpp at the bottom of the message): I compile it in this way:
I use
Then I record performance data of a running process:
Then I analyze load per module:
Then load per function is analyzed:
Then call chains are analyzed:
So at this point you know where your program spends time. And this is main.cpp for the test:
|
|||||||||||
|
|
Try OProfile. It is a much better tool for profiling your code. I would also suggest Intel VTune. The two tools above can narrow down time spent in a particular line of code, annotate your code, show assembly and how much particular instruction takes. Beside time metric, you can also query specific counters, i.e. cache hits, etc. Unlike gprof, you can profile any process/binary running on your system using either of the two. |
|||||||||||||||
|
|
Google performance tools include a simple to use profiler. CPU as well as heap profiler is available. |
|||
|
|
|
Take a look at Sysprof. Your distribution may have it already. |
|||
|
|
|
http://lttng.org/ if you want a high performance tracer |
|||
|
|