Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for a low impact, os-independent profiler for c++ code.

When I say low impact, I am referring to something less intrusive than valgrind. I plan to use it in a MIPS-based embeded environment (hence the os-independance) and tried a ported version of valgrind and it completely changed the performance characteristics (way too much Heisenberg principle at work) so I cant go that route. We know the memory bus speed is a bottleneck which most-likely explains why valgrind was so intrusive.

I have created a home grown type of profiler based on checkpoints that lets me measure certain parts of the code. Basically I have to modify the code (and recompile) to set checkpoints in strategic places in the code. Then, when executed, it stores the number of times each checkpoint is hit and the time since the last checkpoint was hit. Then, after running it, I can dump the checkpoints and for each it calculates: num-hits, max-time, min-time, avg-time, etc.

This profiler (I called it LowImpactProfiler) works ok, but I wonder if there is something better out there.

Ive considered oProfile, which is a sampling profiler, but since Im not running Linux, I think it will be really dificult to implement.

share|improve this question
1  
If the goal is to find out what in the code is causing slowness and might be improved to get better performance you could give this a try. – Mike Dunlavey May 3 '12 at 15:11
@Brady: Heisenburger ? Did not know about this one! – Matthieu M. May 3 '12 at 15:38
@Matthieu: Never heard of that? It's a quantum hamburger. – Mike Dunlavey May 3 '12 at 15:43
1  
@Brady: Heisenbug is often brought up as the bete noire of profiling, but it need not be an issue. You can distinguish between measuring performance, and finding performance problems. Don't think of measuring as the method of finding. Finding does not require measuring. A very small number of samples gives you very imprecise measurement, but at the same time it gives you very good indication of what to fix. – Mike Dunlavey May 3 '12 at 16:50
1  
@Brady: All Amdahl's law says, with various algebra, is speedup S = 1/(1-X) where X is the overall fraction of time saved. It says nothing about the uncertainty of X as a function of number of samples. But the real point is you are looking for a certain part or area of the code that is slow, so a profiler will miss causes of slowness that are not revealed in the time taken by particular functions. And if you dismiss those, they will end up being dominant. Samples that are actually examined and understood will find them. – Mike Dunlavey May 4 '12 at 15:31
show 6 more comments

2 Answers

up vote 4 down vote accepted

I've used Shiny to profile on very limited embedded devices with great success. From your description, it takes a similar approach to your LowImpactProfiler.

share|improve this answer
I'll download it this week and take a look, Gracias desde Madrid! – Brady May 5 '12 at 15:41
Ive taken a look at the Shiny code and I like it so far, it seems to be a better solution than what I currently have. Thanks! – Brady May 7 '12 at 7:32
It looks promising, yet I doubt that this will work on very low power embedded devices. – Alex Dec 4 '12 at 12:26

If you are using Windows, you can try my profiler, described here http://ravenspoint.wordpress.com/2010/06/16/timing/

It sounds like it might be easier to use than yours, but it is not OS independent. It uses calls to QueryPerformanceCounter() which is a windows API. It is open source, so it might be worthwhile to port it to your OS, using whatever high performance timer is available there.

share|improve this answer
Thanks, but we wont be using windows, its a telecom app and if anything, it may someday be ported to a unix platform. I'll take a look anyways. – Brady May 3 '12 at 15:57
+1, I like the API that this uses, its very similar to my checkpoints. I'll look at the code and see about porting/merging it with mine. I'll prepare mine and put it on github next week for you to look at. I also have scoped checkpoints, or can set individual checckpoints without needing to be in scopes. When I submit my code, I'll post a msg here and/or send you a msg on your website. Thanks! – Brady May 5 '12 at 11:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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