vote up 6 vote down star
7

Does windows have any decent sampling (eg. non-instrumenting) profilers available? Preferably something akin to Shark on MacOS, although i am willing to accept that i am going to have to pay for such a profiler on windows.

I've tried the profiler in VS Team Suite and was not overly impressed, and was wondering if there were any other good ones.

[Edit: Erk, i forgot to say this is for C/C++, rather than .NET -- sorry for any confusion]

flag

I'd also love suggestions for profilers that are not so closely tied to VS, meaning those that can run stand-alone, and preferably make use of more debugging information formats than pdb. – aib Oct 4 '08 at 10:30
If your goal is to find performance problems, rather than just to use a profiler, the answer I gave is a sleeper - hard to believe, but it works like a clock. Try it and see. – Mike Dunlavey Jan 1 at 15:55

9 Answers

vote up 8 vote down check

Intel VTune is good and is non-instrumenting. We evaluated a whole bunch of profilers for Windows, and this was the best for working with driver code (though it does unmanaged user level code as well). A particular strength is that it reads all the Intel processor performance counters, so you can get a good understanding of why your code is running slowly, and it was useful for putting prefetch instructions into our code and sorting out data layout to work well with the cache lines, and the way cache lines get invalidated in multi core systems.

It is commercial, and I have to say it isn't the easiest UI in the world.

link|flag
VTune is a good tool, but its not free and it doesn't understand Windows internals. – Foredecker Nov 10 '08 at 0:22
1  
vtune also has a terrible, terrible UI, i found it utterly dreadful. – Anacrolix Oct 28 at 11:23
vote up 0 vote down

I know I'm adding my answer months after this question was asked, but I thought I'd point out a decent, open-source profiler: Very Sleepy.

It doesn't have the feature count that some of the other profilers mentioned before do, but it's a pretty respectable sampling profiler that will work very well in most situations.

link|flag
vote up 1 vote down

AMD's CodeAnalyst is FREE here

link|flag
vote up -2 vote down

This works every time, guaranteed.

This tells what makes it different from a typical sampling profiler.

link|flag
Somebody downvoted this answer. I admit it's not popular. Fortunately, software doesn't work based on popularity. – Mike Dunlavey Jan 1 at 15:49
I didn't downvote, but the link you sent is basically a manual sampling profiler. – tfinniga Jun 15 at 16:26
@tfinniga: You're right, but the details make all the difference. Sampling only the PC is almost useless in big software, because most of the nuggets are higher up the call stack. Call graphs & function timing can only say "look in this general area", while the nuggets were displayed right on the stack samples, free for the taking. Somehow the ideas got popular that you need lots of samples, or that we mustn't slow down the program. Those are both hogwash, as that link explains. – Mike Dunlavey Jun 15 at 16:48
... also this link explains it: stackoverflow.com/questions/375913/… in more detail than you probably want. – Mike Dunlavey Jun 15 at 16:52
vote up 2 vote down

The Windows Driver Kit includes a non-instrumenting user/kernel sampling profiler called "kernrate". It seems useful for profiling multi-process applications, applications that spend most of their time in the kernel, and device drivers (of course). It's also available in the KrView (Kernrate Viewer) and Windows Server 2003 Resource Kit Tools packages.

Kernrate works on Windows 2000 and later (unlike Xperf, which requires Vista / Server 2008). It's command-line based and the documentation has a somewhat intimidating list of options. I'm not sure if it can record call stacks or just the program counter. If you use a symbol server, make sure to put an up-to-date dbghelp.dll and symsrv.dll in the same directory as kernrate.exe to prevent it from using the ancient version of dbghelp.dll that is installed in %SystemRoot%\system32.

link|flag
vote up 1 vote down

We use both VTune and AQTime, and I can vouch for both. Which works best for you depends on your needs. Both have free trial versions - I suggest you give them a go.

link|flag
I am trying to compare VTune and AQTime. Can you please provide more deatils of their features? – Amit Kumar May 14 at 6:00
vote up 2 vote down

I have tried Intel's vtune with a rather large project about two years ago. It was an instrumenting profiler then and it took so long to instrument the DLL that I was attempting to profile that I eventually lost patience after an hour.

The one tool that I have had quite good success and which i would highly recommend is that of AQTime. It not only provides excellent performance profiling resources but it also doe really good memory profiling which has been of significant help to me in tracking down memory leaks.

link|flag
Intel VTune has two modes: instrumenting (can produce callstacks and callgraphs) and sampling (hotspots only, no callstacks). – Suma Oct 4 '08 at 13:40
vote up 3 vote down

For Windows, check out the free Xperf that ships with the Windows SDK. It uses sampled profile, has some useful UI, & does not require instrumentation. Quite useful for tracking down performance problems. You can answer questions like:

Who is using the most CPU? Drill down to function name using call stacks.

Who is allocating the most memory?

Outstanding memory allocations (leaks)

Who is doing the most registry queries?

Disk writes? etc.

link|flag
XPerf seems great, but it cannot run on XP, it needs Vista or Server 2007 or newer. A pitty - the functionality sounds really great, callstack captures based on sampling profiling would be handy. – Suma Oct 4 '08 at 13:39
XPerf depends heavily on the revamped ETW in Vista, one of the little known improvements in Vista/Server08. – unknown (yahoo) Oct 4 '08 at 16:02
argh.. yeah.. xp incompatible. so it starts... :( – vilaca Jan 12 at 1:45
vote up -1 vote down

I'm not sure what a non-instrumenting profiler is, but I can say for .NET I love RedGate's ANTS Profiler. Version 3 beats the MS version for ease of use and Version 4, which allows arbitrary time slices, makes MS look like a joke.

link|flag
1  
Sampling profilers work by observing your program's state periodically, and are thus non-invasive, and work on executables without the source code. (Though you'd probably need debugging information to resolve the function calls, etc.) -- correct me if I'm wrong. – aib Oct 4 '08 at 10:28

Your Answer

Get an OpenID
or

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