I was looking into Valgrind to help improve my C coding/debugging when I discovered it is only for Linux - I have no other need or interest in moving my OS to Linux so I was wondering if there is a equally good program for Windows.

link|improve this question

What kinds of debugging are you looking to do? Valgrind is quite a rich toolset, and the answers below point in all kinds of directions. With an emphasis on memory leak/allocation debugging. – jakobengblom2 Aug 28 '09 at 8:43
1  
Maybe you can test the code on a virtual Linux machine inside your Windows, just when you need to check it. you can share the development folder between the virtual and non-virtual machine. that is, if the code is portable enough. – Liran Orevi Oct 1 '09 at 9:27
feedback

17 Answers

up vote 20 down vote accepted

Some more good commercial tools:

link|improve this answer
1  
Purify: venerable but still useful, as shown by how many changes of corporate ownership it has survived! – Norman Ramsey Jan 5 '09 at 17:48
Kinda expensive though... – George Edison Mar 26 '10 at 5:03
2  
Insure++ takes forever to instrument your code, and forever to execute your code at runtime. – C Johnson Aug 9 '10 at 15:12
feedback

As jakobengblom2 pointed out, valgrind has a suit of tools. Depending which one you are talking about there are different windows counter parts. I will only mention OSS or free tools here.

1. MemCheck:

Dr. Memory. It is a relatively new tool, works very well on Windows 7. My favorite feature is that it groups the same leaks' allocation stacks in the report.

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

I have also used UMDH( http://support.microsoft.com/kb/268343 ) and found it quiet useful and easy to setup. It works from Win2000 to Win7.

AppVerifier is a must have swissknife for windows native code developers, its "memory" checker does similar job http://msdn.microsoft.com/en-us/library/dd371695%28v=vs.85%29.aspx

2. Callgrind:

My favorite is verysleepy ( http://www.codersnotes.com/sleepy ) It is tiny but very useful and easy to use.

If you need more features, AMD CodeAnalystâ„¢ Performance Analyzer is free: http://developer.amd.com/documentation/videos/pages/introductiontoamdcodeanalystperformanceanalyzer.aspx

Windows Performance Analysis tools is free from Microsoft, not very easy to use but can get the job done if you are willing to spend the time. http://blogs.microsoft.co.il/blogs/sasha/archive/2008/03/15/xperf-windows-performance-toolkit.aspx Download: http://msdn.microsoft.com/en-us/performance/cc752957

3. Massif:

Similar(not quite exact match) free tools on windows are:

VMMap from sysinternals : http://technet.microsoft.com/en-us/sysinternals/dd535533

!heap command in windbg : http://hacksoflife.blogspot.com/2009/06/heap-debugging-memoryresource-leak-with.html

4. Cachegrind:

Above mentioned Windows Performance Tools has certain level of L2 cache miss profiling capability but not quite as good and easy to use as Cachegrind.

5. DRD:

Haven't found anything free and as powerful on Windows yet, the only free tool for windows I can find that is slightly close is the "lock" checker in AppVerifier: http://msdn.microsoft.com/en-us/library/dd371695%28v=vs.85%29.aspx

link|improve this answer
1  
LeakDiag, Deleaker, UMDH, App Verifier, DebugDiag... – John Smith Dec 8 '11 at 19:08
1  
deleaker - the best of these utilities... – John Smith Dec 20 '11 at 18:59
There's also gperftools (formerly Google PerfTools). It's not a valgrind replacement (what is really) but it has a new malloc, cpu profiler, heap profiler and checker. Worth a look as it's support on Linux and Windows (inc Mingw) and other unices. – alexr Feb 13 at 17:29
feedback

Why not use Valgrind + Wine to debug your Windows app? See http://wiki.winehq.org/Wine_and_Valgrind

(Chromium uses this to check the Windows version for memory errors; see build.chromium.org and look at the experimental or memory waterfalls, and search for wine.)

There's also Dr. Memory, see dynamorio.org/drmemory.html

link|improve this answer
2  
I'll install linux and valgrind and wine and recompile my whole project in wine, that REALLY make sense – Eric Feb 4 '10 at 20:20
3  
Because then you wouldn't be debugging a Windows app - you'd be debugging a Linux app. – John Dibling Feb 4 '10 at 21:15
26  
No need to recompile in Wine. Just transfer your .exe and .pdb over to a Linux box. And you wouldn't be debugging a Linux app; you're debugging your exact Windows app. – Dan Kegel Feb 14 '10 at 3:42
1  
Exactly, its better to use the real thing than a lame clone :D Love valgrind. – alternative Oct 21 '10 at 20:23
7  
Nice! From windows you could run a virtual machine running linux, running your software in the almost vm wine, in the valgrind vm. Bonus points if windows is run from a vm running linux inside a windows vm :) – Imbrondir May 6 '11 at 10:07
feedback

Development environment for Windows you are using may contain its own tools. Visual Studio, for example, lets you detect and isolate memory leaks in your programs

link|improve this answer
5  
It is of very little practical use. It will log the filename/linenumber for offending allocations, but it's only informative if you call malloc directly. When using new/delete, it will unhelpfully pinpoint new.h as the "offending" code. – user9665 Apr 9 '09 at 10:33
2  
It works correctly for me, pointing the right line even new/delete are used. – Rodrigo Apr 22 '09 at 18:33
But will it work if a library function allocates? E.g. strdup. – Alex Dec 14 '09 at 6:21
The Debug CRT, which is what you are trying to describe is useful for C code. Getting it to work for C++ code is more problematic. – C Johnson Aug 9 '10 at 15:11
Valdrind does a lot more then find memory leaks, I mainly use it to find use of freed and uninitialized stack and heap memory which can be incredibly hard to debug otherwise. – user432509 Aug 10 '11 at 9:28
show 1 more comment
feedback

For Visual C++, try Visual Leak Detector. When I used it, it detected a memory leak from a new call and returned the actual line in source code of the leak. The latest release can be found at http://vld.codeplex.com/.

link|improve this answer
Works well for me too – the_mandrill May 28 '10 at 16:27
It does not seem to work for me. I even tried creating a simple project that did basically nothing other than to allocated some memory and not free it. VLD did not detect it. :-| – Synetech Aug 25 '10 at 0:18
@Synetech inc. I had the same problem in VS2010... Using the newest version of VLD solved my problem – relaxxx Apr 7 '11 at 16:46
feedback

There is Pageheap.exe part of the debugging tools for Windows. It's free and is basically a custom memory allocator/deallocator.

See http://support.microsoft.com/kb/286470

link|improve this answer
Pageheap/gflags have helped me get to the bottom of some nasty heap corruption problems. – the_mandrill Jun 23 '10 at 10:51
feedback

I had the chance to use Compuware DevPartner Studio in the past and that was really good, but it's quite expensive. A cheaper solution could be GlowCode, i just worked with a 5.x version and, despite some problems in attaching to a process i needed to debug, it worked quite well.

link|improve this answer
Expensive yes. It paid back in one weekend, just using the profiler piece. – EvilTeach Jan 5 '09 at 20:16
feedback

I've been loving Memory Validator, from a company called Software Verification.

link|improve this answer
feedback

See the "Source Test Tools" link on the Software QA Testing and Test Tool Resources page for a list of similar tools.

I've used BoundsChecker,DevPartner Studio and Intel V-Tune in the past for profiling. I liked V-Tune the best; you could emulate various Intel chipsets and it would give you hints on how to optimize for that platform.

link|improve this answer
feedback

LeakDiag, UMDH, App Verifier, DebugDiag, are all useful tools to improve robustness of code and find memory leaks.

link|improve this answer
feedback

The Boost Test library can detect memory leaks.

link|improve this answer
feedback

Perhaps CodeSnitch would be something you're after? http://www.entrek.com/codesnitch.html

link|improve this answer
feedback

If you are developing with Borland/CodeGear/Embarcadero C++ Builder, you could use CodeGuard.

link|improve this answer
feedback

Does Jochen Kalmbach's Memory Leak Detector qualify?

PS: The URL to the latest version is buried somewhere in the article's comment thread.

link|improve this answer
feedback

If you're not afraid of mingw, here are some links (some might work with MSVC)... http://betterlogic.com/roger/?p=1140

link|improve this answer
feedback

We are just completing a Memory Safety checking tool for Windows, that handles GCC and Micrsoft Visual C (not C++ yet), and are looking for Beta testers.

EDIT June 12, 2011: Not Beta anymore, now production for GCC and Microsoft Visual Studio C.

link|improve this answer
feedback

Try Intel's Inspector XE product which can help you detect both memory and threading issues: http://software.intel.com/en-us/articles/intel-inspector-xe/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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