vote up 22 vote down star
18

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.

flag
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 at 8:43
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 at 9:27

10 Answers

vote up 1 vote down

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|flag
Expensive yes. It paid back in one weekend, just using the profiler piece. – EvilTeach Jan 5 '09 at 20:16
vote up 2 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 4 vote down

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|flag
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. – unknown (yahoo) Apr 9 at 10:33
It works correctly for me, pointing the right line even new/delete are used. – Rodrigo Apr 22 at 18:33
But will it work if a library function allocates? E.g. strdup. – Alex Dec 14 at 6:21
vote up 5 vote down

Some more good commercial tools:

link|flag
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
vote up 2 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

Try DUMA

link|flag
vote up 0 vote down

If you're using Visual Studio, 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://dmoulding.googlepages.com/vld.

link|flag

Your Answer

Get an OpenID
or

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