vote up 14 vote down star
15

Hi, I'm looking for a profiler in order to find the bottleneck of my c++ code. I'd like to find a free, non intrusive, good profiling tool. I'm a game developer and I use PIX for Xbox360, I found it very good (but not free) I know the Intel v-Tune, but it's not free.

There exists any free profiling tool?

flag

10 Answers

vote up 16 vote down check

AMD Code Analyst is free, but not as advanced as VTune. There's also Sleepy, which is very simple, but does the job in many cases.

link|flag
thank you :) i'm going to analyze in depth your link! – ugasoft Sep 15 '08 at 22:31
Thanks for sleepy. Very sleepy. – ragu.pattabi Sep 22 '08 at 17:48
Does anyone have a copy of Very Sleepy? I can't seem to download it from their website.. :( – krebstar Jan 22 '09 at 6:42
Here is the link for CodeAnalyst: developer.amd.com/CPU/CODEANALYST/… – epotter Feb 19 at 17:19
vote up 1 vote down

Proffy is quite cool: http://pauldoo.com/proffy/

Disclaimer: I wrote this.

link|flag
vote up 1 vote down

A new addition is Shiny:

http://sourceforge.net/projects/shinyprofiler/

link|flag
vote up 0 vote down

I use VSPerfMon which is the StandAlone Visual Studio Profiler. I wrote a GUI tool to help me run it and look at the results.

http://code.google.com/p/vsptree/

link|flag
vote up 1 vote down

Microsoft has there Windows Performance Analysis tools. http://msdn.microsoft.com/en-us/performance/default.aspx

It does require Vista, 2008, or Win7

link|flag
vote up 1 vote down

On linux, valgrind (specifically valgrind --tool=cachegrind ), combined with KCacheGrind might be suitable.

link|flag
vote up 0 vote down

BullsEye Code coverage tool is pretty good for profiling C++ programs. It is available for wide variety of OS's and Platforms including Windows and is capable of profiling shared libraries and multi-threaded programs. Its not free but is not very expensive either @ $800 a license.

link|flag
vote up 0 vote down

I use AQTime, it is one of the best profiling tools I've ever used. It isn't free but you can get a 30 day trial, so if you plan on a optimizing and profiling only one project and 30 days are enough for you then I would recommend using this application. (http://www.automatedqa.com/downloads/aqtime/index.asp)

link|flag
vote up 0 vote down

I've used "TrueTime - part of Compuware's DevPartner suite for years. There's a free version available.

link|flag
vote up 1 vote down

While it may not be free, ANTS Code Profiler by Red Gate software is very comprehensive.

www.red-gate.com and the ANTS Profiler page

link|flag

Your Answer

Get an OpenID
or

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