vote up 5 vote down star
4

Can anybody recommend a good code profiler for C++?

I came across Shiny - any good? http://sourceforge.net/projects/shinyprofiler/

flag

53% accept rate
What platform? Which C++ compiler? Does it have to be free? – Roger Lipscombe Oct 27 '08 at 12:49
I'm using Microsoft Visual C++ Express 2005, and I'd like it to be free, yep. – andygeers Oct 27 '08 at 14:14
1  
Shiny is more a profiling library than a profiler - you need to instrument your code manually. Most of the others mentioned allow profiling with no code changes, except perhaps a relink. – AShelly Dec 11 '08 at 0:53

10 Answers

vote up 4 vote down

Not C++ specific, but AMD's CodeAnalyst software is free and is feature-packed.

http://developer.amd.com/cpu/codeanalyst/codeanalystwindows/Pages/default.aspx

link|flag
vote up 6 vote down

Callgrind for Unix/Linux

DevPartner for Windows

link|flag
The DevPartner link don't point on the product page (it's redirected). I can't find the product page for DevPartner... – Klaim Jun 1 at 13:00
Try archived page: web.archive.org/web/20070927222542/… – Helen Jun 1 at 18:03
vote up 1 vote down

If you are running a Professional version of VS then you get a profiler with it.

I've also used a couple of other free ones, but they don't compare to the on MS ships. Useful as a second opinion though.

link|flag
Actually, at least in VS2008 you don't get a profiler with the Pro edition - you have to get the next one up (Team edition or something like it). – Timo Geusch Oct 27 '08 at 13:28
Ah. I've not used VS2008 in anger. Some of us are stuck maintain legacy apps in VC6. – graham.reeds Mar 19 at 13:15
vote up 2 vote down

Quantify (part of the IBM/Rational PurifyPlus package) is a very good profiler, but not exactly cheap. It is available on several platforms, too - I've used it on Solaris, Windows and Linux.

link|flag
vote up 5 vote down

Probably you will be interested in Intel VTune. Rather useful and allows to collect low-level events like cache misses which helps a lot in tuning.

link|flag
it's also dreadful... :P – Anacrolix Oct 28 at 11:26
vote up 5 vote down

Gprof if you use gcc. It may not be user friendly but still useful.

link|flag
vote up 0 vote down

If you have access to a Mac, then I recommend using Shark from the CHUD tools.

link|flag
vote up 0 vote down

You can use the analyzer that´s in Sun Studio 12 on Linux or Solaris. Itś free. http://developers.sun.com/sunstudio/index.jsp

link|flag
vote up 1 vote down

Depends on what you need to do:

  1. Measure, so you can do regressions testing to see if changes in performance happened.
  2. Find reasons for suboptimal performance and optimize them.

These are not the same.

For 1, use one of the recommended profilers.

For 2, the profiler I much prefer is one you already have:
http://www.wikihow.com/Optimize-Your-Program%27s-Performance
To see how this goes, check this out.

For C++, as for C# and any language that encourages layers of abstraction, those layers may or may not be good from a software engineering standpoint, but they can kill performance. Every method call is a detour in the execution of your program, and the style encourages you to nest those things, sometimes needlessly. Also the style discourages you from knowing or caring what goes on inside them. You may find them creating and deleting objects underneath at a rate and level of generality far beyond what your application really needs.

link|flag
More often than not, the addition of a function call on the stack will not decrease performance. This is usually one of the many traps that people fall in to when prematurely optimizing their code. – Jared May 26 at 18:38
Hi Jared. The problem is not the cost of a function call, which is negligible. The problem is the psychology that calls, once written, are absolutely essential. Here's how it shows up: in big software, random samples of the stack can easily be 10-30 layers deep. If any one of those 10-30 calls isn't absolutely necessary, it's removal saves as much time as its residence time fraction on the stack. Another way to put it is, if at any level there are roughly 1.5 times as many calls as absolutely necessary, & that happens at multiple levels, you can see how the slowdown is exponential. – Mike Dunlavey May 26 at 18:58
... another way to put it: optimizers sweat bullets to shave a few low-level instructions like add, move, jump, etc. If they could also do a good job of shaving call instructions, think of the awesome savings. But, for better or worse, that's not the compiler's job, it's ours. – Mike Dunlavey May 26 at 19:12
... sorry, can't resist. Another way to put it is function calls are at the heart of the powerful concept of abstraction. The price of that power is that they tempt us powerfully to make mountains out of molehills. We programmers haven't really learned how to resist that temptation. – Mike Dunlavey May 26 at 19:17
1  
... yet another way to put it :-) A function call is like a credit card. What is the cost of a credit card? Some plastic, some processing, some marketing - maybe a dollar. The TRUE cost is it's so easy to use that you spend more than you can afford. Multiply this over several layers, and you can see the problem. – Mike Dunlavey Jun 1 at 12:37
vote up 1 vote down

AQtime (for Windows)

link|flag

Your Answer

Get an OpenID
or

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