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

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?

share|improve this question

12 Answers

up vote 72 down vote accepted

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.

share|improve this answer
thank you :) i'm going to analyze in depth your link! – ugasoft Sep 15 '08 at 22:31
3  
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
4  
Here is the link for CodeAnalyst: developer.amd.com/CPU/CODEANALYST/Pages/default.aspx – epotter Feb 19 '09 at 17:19
1  
I tried working with it now, and didn't like it at all. I couldn't even understand how to get function's total time % (including the callees) which TrueTime could do fine 10 years ago. – Pavel Radzivilovsky Mar 13 '11 at 15:05
show 2 more comments

Very Sleepy is a C/C++ CPU profiler for Windows systems. (free)

You can also use GoogleTest, Testing Framework.

share|improve this answer
Very good software . thanx for the link. – Vardhan Jan 7 '11 at 5:30
4  
googletest is a unit testing framework. How would you use that to perform profiling? – greatwolf May 10 '11 at 20:03
If you're using a Windows binary from the gcc stack, this is a great choice - AMD CodeAnalyst doesn't recognize gcc symbols on Windows, but very sleepy does! – Mike Feb 12 '12 at 1:48
+1 Thank you for Very Sleepy! – Valentin Heinitz Jul 6 '12 at 15:08
Very Sleepy is wonderful!! thankyou!!! – thiagoh Feb 8 at 3:27

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

Disclaimer: I wrote this.

share|improve this answer
10  
+1 for Disclaimer ;) – VOX Sep 21 '10 at 22:49

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

It does require Vista, 2008, or Win7

share|improve this answer
1  
It is not free :( – xiao 啸 Jul 26 '11 at 11:50
How is it not free? It is a part of the Windows SDK. I was able to download it without any problems. (Admittedly, we have an MSDN subscription, so some people might have a different experience than I do.) – epotter Jul 26 '11 at 12:32

A new addition is Shiny:

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

share|improve this answer
Can't find downloadable binaries, just source codes. Not very convenient. – Monsingor Jun 6 '11 at 10:57

There is an instrumenting (function-accurate) profiler for MS VC 7.1 and higher called MicroProfiler. You can get it here. It doesn't require any modifications or additions to your code and is able of displaying function statistics with callers and callees in real-time without the need of closing application/stopping the profiling process.

It integrates with VisualStudio, so you can easily enable/disable profiling for a project (exe to the moment). It is also possible to install it on the clean machine, it only needs the symbol information be located along with the executable being profiled.

This tool is useful when statistical approximation from sampling profilers like Very Sleepy isn't sufficient.

Rough comparison shows, that it beats AQTime (when it is invoked in instrumenting, function-level run). The following program (full optimization, inlining disabled) runs three times faster with micro-profiler displaying results in real-time, than with AQTime simply collecting stats:

void f()
{
    srand(time(0));

    vector<double> v(300000);

    generate_n(v.begin(), v.size(), &random);
    sort(v.begin(), v.end());
    sort(v.rbegin(), v.rend());
    sort(v.begin(), v.end());
    sort(v.rbegin(), v.rend());
}
share|improve this answer
It's easy to use and super-fast profiler. Only one issue I didn't solve is a problem that after I finished debugging, profiler window didn't close automatically and you have to kill it through task manager (without that you can't recompile your project). – Ludek Vodicka Oct 24 '12 at 7:39
I found that after I close my app by regular CLOSE button, profiler window can be closed regularly too. But when I exit app by SHIFT+F5 shortcut (Stop debugging VS command), profiler window close button is disabled. – Ludek Vodicka Oct 24 '12 at 7:42

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)

share|improve this answer
Only this tool helped me to profile compiled in release mode mixed (managed and native) web application on IIS. – Monsingor Jun 7 '11 at 7:06
It is unfortunate that they do not support people who try to evaluate their product. – Lucky Luke Dec 14 '11 at 23:33
Currently they are offering a 14 days trial with limited functionality. – Max Mar 26 at 6:23

Please try my profiler, called cRunWatch. It is just two files, so it is easy to integrate with your projects, and requires adding exactly one line to instrument a piece of code.

http://ravenspoint.wordpress.com/2010/06/16/timing/

Requires the Boost library.

share|improve this answer

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

share|improve this answer

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/

share|improve this answer

You can use EmbeddedProfiler, it's free for both Linux and Windwos.

The profiler is intrusive (by functionality) but it doens't require any code modifications. Just add a specific compiler flag (-finstrument-functios for gcc/MinGW or /GH for MSVC) and link the profiler's library. It can provide you a full call tree or just a funciton list. It has it's own analyzer GUI.

share|improve this answer

I highly recommend Windows Performance Toolkit (WPT) or XPERF

The command line xperf command line tool records Event Tracing for Windows (ETW) logs that can be analyzed using the GUI xperfview tool.

Using stacktrace command line arguement has proven to be an invaluable tool for my company as it profiles and troubleshoots bottlenecks. One of the most compelling things is that the WPT can be installed in any environment even on the venerable Windows XP.

On Windows 8 the Windows Performance Analyzer takes xperf to an even higher level.

The hard numbers and stats provided in ETW logs are unparalleled in detail except for visual studio profiler (2010/2012) which is also great but not free AFAIK.

If you have never used xperf...you do not know what you are missing

share|improve this answer

protected by Brad Larson Jul 9 '12 at 20:36

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.