What other programs do the same thing as gprof?

link|improve this question

63% accept rate
what platforms you are interested in? – osgx Mar 24 '10 at 22:10
I'm interested in Linux. – neuromancer Apr 16 '10 at 19:37
1  
possible duplicate of stackoverflow.com/questions/375913/… – Dour High Arch Apr 21 '10 at 0:59
11  
@Gregory - I'm inclined to agree, and maybe he should contribute with answers of his own, 229 vs 6, all 6 of those answers being to his own questions... – Jean-Bernard Pellerin Sep 14 '10 at 1:18
feedback

6 Answers

up vote 36 down vote accepted

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.

link|improve this answer
1  
@Norman: ++ That confusion about recursion seems endemic to systems that have the concept of propogating times among nodes in a graph. Also I think wall-clock time is generally more useful than CPU instruction times, and code lines (call instructions) are more useful than procedures. If stack samples at random wall clock times are taken, then the fractional cost of a line (or procedure, or any other description you can make) is simply estimated by the fraction of samples that exhibit it. – Mike Dunlavey Dec 20 '09 at 13:50
... I'm emphasizing call instructions, but it applies to any instructions. If one has an honest-to-goodness hotspot bottleneck, such as a bubble sort of a large array of numbers, then the compare/jump/swap/increment instructions of the inner loop will be at the top/bottom of nearly every stack sample. But (especially as software gets big and hardly any routine has much "self" time) many problems actually are call instructions, requesting work that, when it is clear how much it costs, doesn't really have to be done. – Mike Dunlavey Dec 20 '09 at 14:07
2  
... Check this out. I think they are nearly on the right track: rotateright.com/zoom.html – Mike Dunlavey Dec 20 '09 at 14:18
feedback

gprof (read the paper) exists for historical reasons.
If you think it will help you find performance problems, it was never advertised as such. It is only a measurement tool, and only of CPU-bound operations.
Try this instead.
Here's an example.

There's a simple observation about programs. In a given execution, every instruction is responsible for some fraction of the overall time (especially call instructions), in the sense that if it were not there, the time would not be spent. During that time, the instruction is on the stack **. When that is understood, you can see that -

gprof embodies certain myths about performance, such as:

  1. that program counter sampling is useful.
    It is only useful if you have an unnecessary hotspot bottleneck such as a bubble sort of a big array of scalar values. As soon as you, for example, change it into a sort using string-compare, it is still a bottleneck, but program counter sampling will not see it because now the hotspot is in string-compare. On the other hand if it were to sample the extended program counter (the call stack), the point at which the string-compare is called, the sort loop, is clearly displayed.

  2. that timing functions is more important than capturing time-consuming lines of code.
    The reason for that myth is that gprof was not able to capture stack samples, so instead it times functions, counts their invocations, and tries to capture the call graph. However, once a costly function is identified, you still need to look inside it for the lines that are responsible for the time. If there were stack samples you would not need to look, those lines would be on the samples. (A typical function might have 100 - 1000 instructions. A function call is 1 instruction, so something that locates costly calls is 2-3 orders of magnitude more precise.)

  3. that the call graph is important.
    What you need to know about a program is not where it spends its time, but why. When it is spending time in a function, every line of code on the stack gives one link in the chain of reasoning of why it is there. If you can only see part of the stack, you can only see part of the reason why, so you can't tell for sure if that time is actually necessary. What does the call graph tell you? Each arc tells you that some function A was in the process of calling some function B for some fraction of the time. Even if A has only one such line of code calling B, that line only gives a small part of the reason why. If you are lucky enough, maybe that line has a poor reason. Usually, you need to see multiple simultaneous lines to find a poor reason if it is there. If A calls B in more than one place, then it tells you even less.

  4. that recursion is a tricky confusing issue.
    That is only because gprof and other profilers perceive a need to generate a call-graph and then attribute times to the nodes. If one has samples of the stack, the time-cost of each line of code that appears on samples is a very simple number - the fraction of samples it is on. If there is recursion, then a given line can appear more than once on a sample. No matter. Suppose samples are taken every N ms, and the line appears on F% of them (singly or not). If that line can be made to take no time (such as by deleting it or branching around it), then those samples would disappear, and the time would be reduced by F%.

  5. that accuracy of time measurement (and therefore a large number of samples) is important.
    Think about it for a second. If a line of code is on 3 samples out of five, then if you could shoot it out like a light bulb, that is roughly 60% less time that would be used. Now, you know that if you had taken a different 5 samples, you might have only seen it 2 times, or as many as 4. So that 60% measurement is more like a general range from 40% to 80%. If it were only 40%, would you say the problem is not worth fixing? So what's the point of time accuracy, when what you really want is to find the problems? 500 or 5000 samples would have measured the problem with greater precision, but would not have found it any more precisely.

  6. that counting of statement or function invocations is useful.
    Suppose you know a function has been called 1000 times. Can you tell from that what fraction of time it costs? You also need to know how long it takes to run, on average, multiply it by the count, and divide by the total time. The average invocation time could vary from nanoseconds to seconds, so the count alone doesn't tell much. If there are stack samples, the cost of a routine or of any statement is just the fraction of samples it is on. That fraction of time is what could in principle be saved overall if the routine or statement could be made to take no time, so that is what has the most direct relationship to performance.

  7. that samples need not be taken when blocked
    The reasons for this myth are twofold: 1) that PC sampling is meaningless when the program is waiting, and 2) the preoccupation with accuracy of timing. However, for (1) the program may very well be waiting for something that it asked for, such as file I/O, which you need to know, and which stack samples reveal. (Obviously you want to exclude samples while waiting for user input.) For (2) if the program is waiting simply because of competition with other processes, that presumably happens in a fairly random way while it's running. So while the program may be taking longer, that will not have a large effect on the statistic that matters, the percentage of time that statements are on the stack.

  8. that "self time" matters
    Self time only makes sense if you are measuring at the function level, not line level, and you think you need help in discerning if the function time goes into purely local computation versus in called routines. If summarizing at the line level, a line represents self time if it is at the end of the stack, otherwise it represents inclusive time. Either way, what it costs is the percentage of stack samples it is on, so that locates it for you in either case.

  9. that samples have to be taken at high frequency
    This comes from the idea that a performance problem may be fast-acting, and that samples have to be frequent in order to hit it. But, if the problem is costing, 20%, say, out of a total running time of 10 sec (or whatever), then each sample in that total time will have a 20% chance of hitting it, no matter if the problem occurs in a single piece like this
    .....XXXXXXXX...........................
    .^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^ (20 samples, 4 hits)
    or in many small pieces like this
    X...X...X.X..X.........X.....X....X.....
    .^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^.^ (20 samples, 3 hits)
    Either way, the number of hits will average about 1 in 5, no matter how many samples are taken, or how few. (Average = 20 * 0.2 = 4. Standard deviation = +/- sqrt(20 * 0.2 * 0.8) = 1.8.)

  10. that you are trying to find the bottleneck
    as if there were only one. Consider the following execution timeline: vxvWvzvWvxvWvYvWvxvWv.vWvxvWvYvW
    It consists of real useful work, represented by .. There are performance problems vWxYz taking 1/2, 1/4, 1/8, 1/16, 1/32 of the time, respectively. Sampling finds v easily. It is removed, leaving
    xWzWxWYWxW.WxWYW
    Now the program takes half as long to run, and now W takes half the time, and is found easily. It is removed, leaving
    xzxYx.xY
    This process continues, each time removing the biggest, by percentage, performance problem, until nothing to remove can be found. Now the only thing executed is ., which executes in 1/32 of the time used by the original program. This is the magnification effect, by which removing any problem makes the remainder larger, by percent, because the denominator is reduced.

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):

berkeley bu clemson colorado duke earlham fsu indiana mit msu ncsa.illinois ncsu nyu ou princeton psu stanford ucsd umd umich utah utexas utk wustl

** 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.

link|improve this answer
3  
I've always found profilers not so useful for fixing slow code, and instead used selective bits of debugging code to measure the time taken by a group of statements of my choosing, often aided by some trivial little macros or whatever. It's never taken me too long to find the culprit, but I've always been embarrassed of my "bear skins and stone knives" approach when "everyone else" (as far as I know) uses the fancy tools. Thank you for showing me why I could never get the information I needed from profiler. This is one of the most important ideas I've seen on SO. Well done! – Wayne Conrad Feb 11 '10 at 2:44
5  
@osgx: I don't mean to rip anything. It's like an old favorite automobile, simple & rugged, but there are things it doesn't do, and we need to be aware of those, and not only that, we need to wake up from the myths. I appreciate that on some platforms it may be difficult to get stack samples, but if a problem is such that gprof will not find it, the fact that it is the only tool is small comfort. – Mike Dunlavey Mar 25 '10 at 0:30
1  
@Andrew: ... and if that reason applies to some significant fraction of samples (like more than 1), then the line(s) of code that could eliminate that activity are on those samples. A graph can give you a hint of this, but a not-large number of stack samples will simply show them to you. – Mike Dunlavey Jul 28 '10 at 12:12
1  
@Matt: Examples of IO performance problems found this way: 1) printing log messages to a file or the console, which was erroneously thought to be insignificant. 2) Converting between text and doubles in numeric IO. 3) Subterranean IO extracting internationalized strings during startup, strings that it turns out did not need to be internationalized. I've hit lots of examples like these. – Mike Dunlavey Sep 14 '10 at 16:38
1  
@Matt: Example: consider a program that loops 10,000 times. Inside the loop, it crunches numbers for 1ms (total 10s), and then does blocking IO for 9ms (total 90s), so 90% of its time is blocked. gprof and VS profiler will ignore the 90% and act as if the 10% was all there was to tell you about. Stackshots will show you that 90% of the time it is blocked, and why, and that 10% of the time it was crunching, and why. Of course, if you want it to go much faster, which is the part you need to work on? – Mike Dunlavey Sep 14 '10 at 18:25
show 31 more comments
feedback

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.

link|improve this answer
1  
As also mentioned in the valgrind answer, Zoom from RotateRight ( rotateright.com ) provides a much nicer interface and allows remote profiling. – JanePhanie Feb 10 '10 at 15:32
didn't like oprofile, it seemed haphazard – Matt Joiner Sep 14 '10 at 11:55
@Matt any particular point? – Anycorn Sep 14 '10 at 23:42
It wasn't able to cope with more than 10s of execution before generating stat overflows, the output wasn't particularly useful, and the documentation is dreadful. – Matt Joiner Sep 15 '10 at 2:33
@aaa, but these tools run only on x86 processors? – Thorbjørn Ravn Andersen Jan 13 '11 at 7:57
show 1 more comment
feedback

Google performance tools include a simple to use profiler. CPU as well as heap profiler is available.

link|improve this answer
feedback

Take a look at Sysprof.

Your distribution may have it already.

link|improve this answer
sysprof generated pretty useless output, and difficult to read – Matt Joiner Sep 14 '10 at 11:56
feedback

http://lttng.org/ if you want a high performance tracer

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.