Profiler and Memory Analysis Tools for Delphi [closed]

For the price, you cannot beat FastMM4 as a memory tracker. It’s simple to use yet powerful and well integrated with Delphi.
I guess that you know that, without downloading, installing or changing anything else, just putting this line

ReportMemoryLeaksOnShutDown := True;

anywhere in your code, will enable basic reporting of memory leaks.
If you need more like crash information, EurekaLog is a very good product that we use. MadExcept also has a good reputation…

For profiling specifically, we have AQTime.

As for gpProfile, you can try and bug gabr on SO for an update… or go and update gpProfile yourself as it is open source. 😉

Leave a Comment