Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to profile some code running C++ on Linux. Can you guys recommend some profilers?

share|improve this question
1  
You should add Linux and C++ tags. You will probably get a better response and range of opinions. – Duck Jul 22 '09 at 23:18
Looks like a duplicate of stackoverflow.com/questions/375913/…. – Michael Myers Jul 23 '09 at 15:54

9 Answers

Use gprof.

Just compile with -pg flag (I think (but am not sure) you have to turn of optimizations though.) and use gprof to analyze the gmon.out file that your executable will then produce.

eg:

gcc -pg -o whatever whatever.c

./whatever

gprof whatever gmon.out

Same thing with g++ and cpp.

share|improve this answer
Profiling unoptimized code is a bit pointless, isn't it? Similarly, profiling code that has been heavily modified with -pg often misguides you into optimizing the wrong spots. – federal Jan 5 '12 at 15:44

I'm a fan of Oprofile. It involves installing a kernel module and has a bit of a learning curve to it, but it's fairly powerful and works very well for optimized programs/programs without debugging symbols.

Vtune is another very powerful profiler made by Intel. I believe the Linux version is free for Non-commercial software.

There is also the Valgrind suite of tools proposed by dfa. Callgrind would probably be what you're most interested in. Cachegrind(whose featureset is a subset of Callgrind's) and Massif are interesting as well, but I have no experience with the latter.

share|improve this answer
+1 for oprofile, that is not an "easy tool" – dfa Jul 22 '09 at 23:18
1  
Haha, true. I should probably not make that sound so easy :) It's certainly not as simple as "run program under it" as Vtune and Valgrind tools, but I feel you get used to it pretty quickly. – Falaina Jul 22 '09 at 23:20
oprofile looks interesting - does it support x86_64? – LiraNuna Jul 23 '09 at 0:52

Zoom from RotateRight ( http://www.rotateright.com ) is what I've been using. It has a butterfly view of functions and you can double-click any function to dive into source or asm code. Build with debugging information (-g) to see your source, but you should still build and profile optimized code.

share|improve this answer

valgrind is a well-know linux profiler

share|improve this answer
thought valgrind was more for memory leak checking.. I am trying to see which functions are getting called etc – shergill Jul 22 '09 at 23:07
1  
use the suite tool called "callgrind" – dfa Jul 22 '09 at 23:08
1  
Valgrind is simply a framework for building dynamic tools. Although, it's become synonymous with Memcheck, a tool built on Valgrind. Callgrind is a pretty good at profiler. – Falaina Jul 22 '09 at 23:10

Google also has a nice profiler as part of the google-perftools -- which are included in Debian / Ubuntu and possibly other distros.

share|improve this answer

Take a look at KCacheGrind which is a graphical frontend to valgrind and makes it really easy to use it.

share|improve this answer

gprof is the standard gnu tool for profiling.

share|improve this answer
2  
You're right, and that's sad. stackoverflow.com/questions/1777556/alternatives-to-gprof/… – Mike Dunlavey Jul 16 '10 at 13:09

Take a look at Sysprof. You distribution most likely has it available already.

Note that all of the mentioned profilers work best if your application is compiled with frame pointers. That is, you should use -fno-omit-frame-pointer on the gcc command line.

share|improve this answer

protected by Community Aug 29 '12 at 11:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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