Profiler and Memory Analysis Tools for Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T23:18:03Z http://stackoverflow.com/feeds/question/291631 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi 15 Profiler and Memory Analysis Tools for Delphi lkessler 2008-11-14T22:20:32Z 2009-04-01T01:58:32Z <p>I recently upgraded from Delphi 4 to Delphi 2009. With Delphi 4 I had been using <a href="http://web.archive.org/web/20001205122400/http&#58;//www.eccentrica.org/gabr/gpprofile/gpprofile.htm" rel="nofollow">GpProfile by Primoz Gabrijelcic</a> as a profiler and <a href="http://web.archive.org/web/20031204135824/http&#58;//www.turbopower.com/products/sleuth/" rel="nofollow">Memory Sleuth by Turbo Power</a> for memory analysis and leak debugging. Both worked well for me. But I now need new tools that will work with Delphi 2009. </p> <p>The leader in Profiling/Analysis tools for Delphi by a wide margin is obviously <a href="http://www.automatedqa.com/products/aqtime/index.asp" rel="nofollow">AQTime by AutomatedQA</a>. They recently even gobbled up <a href="http://www.scip.be/index.php?Page=ArticlesDelphi07&amp;Lang=EN" rel="nofollow">Memproof by Atanas Soyanov</a>, which I understood was an excellent and free memory analysis tool, and incorporated its functionality into AQTime. But AQTime is very expensive for an individual programmer. It actually costs more than the upgrade to Delphi 2009 cost!</p> <p>So my question is: Are there other less expensive options to do profiling and memory analysis in current versions of Delphi that you are happy with and recommend, or should I bite the bullet and pay the big bucks for AQTime?</p> <p><hr /></p> <p>Addenum: It seems the early answerers are indicating that the FastMM manager already included in Delphi is very good for finding memory leaks.</p> <p>So then, are there any good alternatives for source code profiling? </p> <p>One I'm curious about is <a href="http://www.prodelphi.de/indexpd.htm" rel="nofollow">ProDelphi by Michael Adolph</a> which is less than one sixth the cost of AQTime. Do you use it? Is AQTime worth paying six times as much?</p> <p><hr /></p> <p>Addenum 2: I downloaded trial versions of both AQTime and ProDelphi.</p> <p>AQTime was a bit overwhelming and a little confusing at first. It took a few hours to find some of the tricks needed to hook it up. </p> <p>ProDelphi was very much like the GpProfile that I was used to. But its windows are cluttered and confusing and it's not quite as nice as GpProfile.</p> <p>To me the big differences seem to be:</p> <ol> <li><p>ProDelphi changes your code. AQTime does not. Changing code may corrupt your data if something goes wrong, but my experience with GpProfile was that it never happened to me. Plus one for AQTime.</p></li> <li><p>ProDelphi requires you turn optimization off. But what you want to profile is your program with optimization on, the way it will be run. Plus one for AQTime.</p></li> <li><p>ProDelphi only can profile down to the function or procedure. AQTime can go down to individual lines. Plus 2 for AQTime.</p></li> <li><p>ProDelphi has a free version that will profile 20 routines, and its pro version costs less than $100 USD. AQTime is $600 USD. Plus 4 for ProDelphi.</p></li> </ol> <p>The score is now 4-4. What do you think?</p> <p><hr /></p> <p>Addenum 3: Primoz Gabrijelcic is planning to get GpProfile working again. See his comments on some of the responses below. He on StackOverflow as <a href="http://stackoverflow.com/users/4997/gabr">Gabr</a>.</p> <p><hr /></p> <p>Addenum 4: It seems like there may be a profiler solution after all. See <a href="http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/672554#672554">Andre's open source asmprofiler, described below</a>.</p> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/291672#291672 1 Answer by mghie for Profiler and Memory Analysis Tools for Delphi mghie 2008-11-14T22:34:44Z 2008-11-14T22:34:44Z <p>It's true, for profiling I miss Primoz' GpProfile, and haven't found a good replacement. I once tried AQTime, but wasn't too happy with it for the price.</p> <p>For tracking of memory leaks and dodgy memory accesses however I couldn't be happier than I am with FastMM4.</p> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/291924#291924 0 Answer by Jim McKeeth for Profiler and Memory Analysis Tools for Delphi Jim McKeeth 2008-11-15T00:58:38Z 2008-11-15T00:58:38Z <p>For a profiler you might try <a href="http://www.gurock.com/products/smartinspect/" rel="nofollow">SmartInspect</a> from Gurock Software. I never used GpProfile, but quickly glancing at its feature set reminded me of SmartInspect. Interestingly it doesn't claim to be a profiler, but it seems to be as much of one as GpProfile (unless I am missing something). It supports Delphi 2009 and has a free Trial and is a little cheaper then AQTime.</p> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/292004#292004 4 Answer by Nick Bradbury for Profiler and Memory Analysis Tools for Delphi Nick Bradbury 2008-11-15T02:04:12Z 2008-11-15T02:04:12Z <p>I've been very happy with AQtime for profiling.</p> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/292047#292047 12 Answer by François for Profiler and Memory Analysis Tools for Delphi François 2008-11-15T02:46:59Z 2008-11-15T02:46:59Z <p>For the price, you cannot beat FastMM4 as a memory tracker. It's simple to use yet powerful and well integrated with Delphi.<br /> I guess that you know that, without downloading, installing or changing anything else, just putting this line</p> <pre><code>ReportMemoryLeakOnShutDown := True; </code></pre> <p>anywhere in your code, will enable basic reporting of memory leaks.<br /> If you need more like crash information, EurekaLog is a very good product that we use. MadExcept also has a good reputation... </p> <p>For profiling specifically, we have AQTime. </p> <p>As for gpProfile, you can try and bug <a href="http://stackoverflow.com/users/4997/gabr">gabr</a> on SO for an update... or go and <a href="http://gp.17slon.com/gpprofile/index.htm" rel="nofollow">update gpProfile yourself as it is open source</a>. ;-)</p> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/293607#293607 4 Answer by Mohammed Nasman for Profiler and Memory Analysis Tools for Delphi Mohammed Nasman 2008-11-16T07:06:30Z 2008-11-16T07:06:30Z <p>Also take a Look at <a href="https://forums.codegear.com/thread.jspa?messageID=16341" rel="nofollow">Eric Grange's Sampling Profiler</a></p> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/293770#293770 2 Answer by RichardS for Profiler and Memory Analysis Tools for Delphi RichardS 2008-11-16T10:42:11Z 2008-11-16T10:42:11Z <p>I agree with you about the interface of ProDelphi, but it does a good enough job that we're happy to stay with it. We only need to profile very occasionally when we have a significant performance issue, and it's always helped us find the problem pretty quickly. Very good value for money, and Michael seems pretty good about keeping it updated for new versions.</p> <p>One thing I would suggest is that because it does require code to be inserted, having all the relevant code in some kind of VCS is invaluable. When we need to profile, we:</p> <ul> <li>Check all relevant files in</li> <li>Check them all out</li> <li>Do the profiling we need, then</li> <li>Cancel all checkouts, effectively rolling back to where we were.</li> </ul> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/294765#294765 3 Answer by Gerry for Profiler and Memory Analysis Tools for Delphi Gerry 2008-11-17T02:43:14Z 2008-11-17T02:43:14Z <p>Having used both GpProfile and AQTime I have found both to be effective at finding what method call is causing a bottle neck.</p> <p>However AQTime can also tell me what line of code is causing this, without making any changes to my source code (although it works best with TD32 debugging and debug dcus).</p> <p>I recently used it to speed up a routine by about 30x (due to bad use of a internal library function)</p> <p>However I didn't have to pay for it myself!</p> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/304070#304070 1 Answer by lkessler for Profiler and Memory Analysis Tools for Delphi lkessler 2008-11-20T01:27:11Z 2008-11-20T01:27:11Z <p>Has anyone tried <a href="http://www.delphiarea.com/products/delphi-components/profiler/" rel="nofollow">the Profiler component at Delphi Area?</a> It is freeware with source and it's writeup says:</p> <blockquote> <p>If you are looking for an easy and accurate way to measure execution time of your code for free, TProfiler is what you need. TProfiler is a non-visual and debugging component that enables you to create named timers in your code.</p> <p>Each timer of TProfiler provides the following information:</p> <p>The number of times that the timer was activated (Hit Count) The total execution time The average execution time on each hit Execution time on the first hit Execution time on the last hit The hit with minimum execution time The hit with maximum execution time</p> </blockquote> http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi/672554#672554 6 Answer by André for Profiler and Memory Analysis Tools for Delphi André 2009-03-23T08:32:32Z 2009-03-23T08:32:32Z <p>I've made an open source profiler for Delphi: <a href="http://code.google.com/p/asmprofiler/" rel="nofollow">http://code.google.com/p/asmprofiler/</a></p> <p>It's not perfect, but it's free :-).</p> <p>The main reason I made it was because I missed an exact call tree. For example, ProDelphi only stores a summary and total counts of all calls, you cannot see what calls a specific procedure at a specific time did (or time duration). And it has a time chart, so you can see how the call duration changed over time.</p>