What is the best tool to detect memory leaks in Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T20:56:09Z http://stackoverflow.com/feeds/question/416046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi 4 What is the best tool to detect memory leaks in Delphi Jlouro 2009-01-06T10:33:41Z 2009-01-08T03:38:53Z <p>What is the best tool to detect memory leak Both free and not Free Thanks</p> http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi/416091#416091 23 Answer by mghie for What is the best tool to detect memory leaks in Delphi mghie 2009-01-06T10:50:29Z 2009-01-06T10:50:29Z <p>FastMM is a free (source available) memory leak detector, already integrated in the latest Delphi versions. I never had a need for anything else.</p> <p>It's much better BTW to limit the possibilities of memory leaks when coding, instead of finding them later. Some tips:</p> <p>Always use try and finally in your code to free created objects. Better to write this code immediately, and then write code to use the objects. Even better to make use of IDE functionality like Code Templates.</p> <p>Only use functions that return dynamically allocated objects when absolutely necessary. It's generally better to pass objects as parameters than create and return them. For example this</p> <pre><code>procedure getChoices(var AChoices: TStrings); </code></pre> <p>would be much better than</p> <pre><code>function getChoices: TStrings; </code></pre> <p>as there is no potential of accidently leaking the created TStrings object.</p> http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi/416119#416119 11 Answer by Lars Truijens for What is the best tool to detect memory leaks in Delphi Lars Truijens 2009-01-06T11:04:12Z 2009-01-06T11:24:54Z <p><a href="http://www.automatedqa.com/products/aqtime/index.asp" rel="nofollow">AQTime</a> is very good. It also does other things like profiling for performance. And it does not require any changes in your code. Of course compiling with debug info helps giving better results.</p> http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi/416435#416435 7 Answer by Vegar for What is the best tool to detect memory leaks in Delphi Vegar 2009-01-06T13:06:26Z 2009-01-06T13:06:26Z <p>I would recommend the full FastMM4-version over the version included in Delphi. The full version gives you a full and verbose report logged to file instead of the dialogbox. Combine this with a homebrewed 'memoryleak-logfile-differ' your're all set for an exiting bughunt.</p> http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi/418063#418063 5 Answer by François for What is the best tool to detect memory leaks in Delphi François 2009-01-06T20:46:26Z 2009-01-06T20:46:26Z <p>You may want to give a look at this CodeRage 2 session: <a href="http://video.codegear.com/CodeRageIIArchives/Day4/FrancoisGaillard_MemoryLeaks_English.zip" rel="nofollow">Fighting Memory Leaks for Dummies</a>. It mainly shows how to use FastMM to prevent/detect memory leaks in Delphi. Was for D2007 but still relevant for D2009.</p> http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi/418103#418103 7 Answer by Ben Daniel for What is the best tool to detect memory leaks in Delphi Ben Daniel 2009-01-06T20:53:16Z 2009-01-06T20:53:16Z <p>We use EurekaLog at our work in Delphi 7. It's an exception handler component which gives very detailed information about exceptions (including callstack! environment variables, etc) even for access violations. But another great feature is that you can tell it to error on memory leaks too, which shows the exact line of code where the memory/object was allocated in the first place! It is a commerical product but I would still highly recommend it.</p> http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi/423177#423177 2 Answer by for What is the best tool to detect memory leaks in Delphi 2009-01-08T03:38:53Z 2009-01-08T03:38:53Z <p>FastMM is very good. I know 3 or 4 free Memory managers for Delphi. It takes less than hour to check all them, cause usually they require just 3 lines of code to embed'em in project.</p>