FastMM is the default memory manager for Delphi Win32 and Win64 bit applications. Scales well in multi-threaded applications, not prone to memory fragmentation, and supports shared memory without the use of external .DLL files. For debugging, tools for tracking memory leaks and memory corruption are ...

learn more… | top users | synonyms

-5
votes
1answer
86 views

Exporting same DLL function under multiple names [closed]

I have made some functions in my DLL, like this: procedure DoThis(A: PChar): Boolean; stdcall; begin f := TFileStreamCreate(A, fmCreate); f.read() f.free; end; then I exported it under 2 names: ...
7
votes
2answers
122 views

GetThreadID in assembly

I read the source code of FastMM4, and notice this interesting function function GetThreadID: Cardinal; {$ifdef 32Bit} asm mov eax, FS:[$24] end; {$else} begin Result := GetCurrentThreadID; end; ...
0
votes
1answer
92 views

how to RegisterExpectedMemoryLeak

let's start with simple code codded under D2010: var StringList: TStringList; begin ReportMemoryLeaksOnShutdown := True; StringList := TStringList.Create; ...
2
votes
1answer
154 views

RTL and VCL memory leak

I'm using FastMM4 in FullDebugMode to find memory leaks, and I'm getting a lot of complaints about UnicodeString, TList, TParameters, etc. instances like this: A memory block has been leaked. The ...
2
votes
1answer
159 views

What can cause delete to loop Sleep()ing and never return in the Borland / Embarcadero RTL?

I have an odd bug where when deleting one specific object, delete never returns. Instead, it appears to spend its time calling Sleep() in a permanent loop. Here's the call stack: :7723fd71 ...
2
votes
2answers
127 views

Recommendations for Fast Multipole Method implementation?

I'm interested in implementing the Fast Multipole Method to efficiently simulate a system of repulsive particles. I've found a large collection of references discussing FMM, but none seem very ...
-2
votes
2answers
445 views

Delphi XE3 - FastMM4 FullDebugMode doesn't work [closed]

Is there a workaround/fix to get FullDebugMode working with XE3 and FastMM4? if I add the conditional the compile stops at the Project line and says [dcc32 Fatal Error] Project1.dpr(1): F1027 ...
4
votes
3answers
212 views

Knowing where memory is being allocated using FastMM

I am trying to debug memory usage in a large application using Delphi 7. I was able to installed fastmm debug full dll and with it solve some leak problems. I also installed the memory usage tracker, ...
3
votes
1answer
360 views

How is this a memory leak?

FastMM reports this line as the source of a memory leak : StrClassName := MidStr (curLine, length(START_OF_CLASSNAME)+1, length(curline)+1) What's up with Copy and MidStr? Is this only a Delphi ...
3
votes
0answers
206 views

Using FASTMM4 to generate a report without writing to a file

I am trying to hunt down memory leaks in the GUI which is written in Delphi (not a simple task, seeing as the code is enormous- tens of thousands of lines of code). I've made a file parser which ...
4
votes
1answer
153 views

Generating a FASTMM report WITHOUT the shutdown dialog

I would like my Delphi project to generate the a FASTMM memory leak report during the program runtime, if possible, and append to that report on shutdown, without having to see this dialog every time ...
19
votes
1answer
301 views

How to obtain the names of custom-made structures whose instances have leaked memory?

I am working a on parser which will go through a FASTMM4 memory leak report and store all relevant data in a custom-made structure/class. I use VirtualTreeView to display each class that has leaked ...
2
votes
2answers
130 views

Why does including FastMM cause an EInvalidTypecast error? [closed]

This is with Delphi XE2 and FastMM 4.99, and a 32-bit program on a Win7-64 machine. I was trying to use FastMM to check a smallish program I've been working on. The program includes a data module ...
3
votes
2answers
312 views

Delphi 7, FastMM and DUnit GUITesting failing tests with false memory leaks

I've had some problems with FastMM false positives. This time, the leaks are in the cases testing forms. It's very similar to the one I described here. I got a form and some plain old VCL controls ...
0
votes
0answers
205 views

C++ Builder XE2 - FastMM isn't working

I replaced standard memory manager with FastMM from SourceForge.net. I followed all the recommendations in FastMM4BCB.cpp (I copied them on end of this question for reference). I updated beginning of ...
6
votes
3answers
766 views

Possible obscure causes for Abstract Error in Delphi?

In a Delphi 7 project we installed FastMM. Soon after that we noticed one of the forms started to issue Abstract Error message on close. I have debugged this extensively and I can't find the reason so ...
2
votes
1answer
248 views

FastMM/DXE2 only reporting when using debugger?

I am trying to use FastMM version 4.99 (according to the comment at the top of FastMM4.pas). I have followed the instructions to use full debug mode with stack tracing, and am finding leaks when I run ...
1
vote
3answers
370 views

Delphi 7, DUnit and FastMM reporting Strings incorrectly

I'm using DUnit and FastMM to catch unfinalized memory blocks but there seems to be a Bug. I dunno if its in FastMM, DUnit or in Delphi itself, but here goes: When my Test Case has internal strings, ...
0
votes
1answer
425 views

Delphi 7, use FastMM4 for getting application path and open application

i am working on a application in Delphi 7 that will run and display the the log created by FastMM4.pas. The application will be installed anywhere on the system. I have modified the FastMM4.pas so ...
0
votes
2answers
329 views

delphi 7, FastMM4 cannot install work around

i am working on an application that uses FastMM4, from sourceforge.net. So i have added the FastMM4.pas to the uses clause right at the beginning. In the application i need to run a batch file after ...
0
votes
0answers
196 views

Delphi 2007 error message: Exception class Exception with message 'Client ID not unique'

When i debug my application,the IDE throw this message,what's the meaning?And if i uses FASTMM4 unit,IDE will all normal.Why? Thanks for any help!
4
votes
0answers
160 views

FastMM dumps, leaks pools and plumbing - how can I register pools for RegisterExpectedMemoryLeak? [closed]

Delphi has a good memory manager that works fine during an app. run - I have no issue with its run-time performance at all. It can be asked to give a termination dump of 'leaks'. The problem is that ...
3
votes
1answer
266 views

Does FastMM only report memory leaked and/or memory allocated?

I am debugging my program with FastMM and it seems that a lot of the memory leaks it is reporting seem legitimate memory allocation not an actually memory leak. For instance, A memory block has been ...
3
votes
2answers
416 views

FastMM4, how to read the log file?

i'am working on an software,so i have just started using FastMM4 (for real) in my project. i have found on the net on about how to get the line number in FastMM4,i got the line number but i can ...
4
votes
0answers
171 views

FinalBuilder Server + FastMM4 example

When using FinalBuilder Server for continuous integration - what is the recommended way to run a suite of unit tests and establish a build pass/fail based on FastMM memory leak check?
8
votes
5answers
413 views

Is there, besides hunting for memory leaks, another situation where I should free all objects when destroying an application?

Suppose an application with some forms and only one data module are created at start. In the DM1.OnCreate event, a TStringList is created to be used at runtime. We know that when the application is ...
2
votes
1answer
160 views

Should I ship the FastMM include file in my Delphi 6 application installation files?

I use FastMM4 in my Delphi 6 applications. Do I need to ship the include file (FastMM4Options.inc) with the installation files I create to install my app on a users PC? If so, should I put it in the ...
2
votes
1answer
234 views

What could explain the difference in memory usage reported by FastMM or GetProcessMemoryInfo?

My Delphi XE application is based on a single EXE using a local server DLL created by RemObjects and uses a lot of memory for a specific operation until it generates an exception saying there are not ...
90
votes
1answer
2k views

Is there a way to programmatically tell if particular block of memory was not freed by FastMM?

I am trying to detect if a block of memory was not freed. Of course, the manager tells me that by dialog box or log file, but what if I would like to store results in a database? For example I would ...
3
votes
1answer
2k views

How to enable full debug mode in FastMM4?

I cannot figure out how to use FastMM. I have downloaded it from SourceForge and placed FastMM4Messages.pas and FastMM4.pas at the top of my dpr file. I now call this procedure to leak some memory: ...
2
votes
1answer
249 views

If I am not using FastMM4 in full debug mode, is it any faster than the memory manager in Delphi XE2?

I use FastMM4, normally in full debug mode during development. If I turn off this mode should I arrange my app to go back to the Delphi (XE2) MM or is there a performance benefit in leaving FastMM4 ...
3
votes
1answer
1k views

Current FastMM release versus Delphi XE default

We've been experiencing problems with the way 3rd-party component thread code is being handled in Delphi XE. I say 3rd-party because our core application does not implement any multi-thread code on ...
1
vote
1answer
517 views

How do I get access to FastMM4's RegisterExpectedMemoryLeak?

I'm using Delphi's fastMM memory manager and I fail when I try to use the full debug mode. I get the following errors when compiling: FastMM\FastMM4.pas(6872) Error: Undeclared identifier: ...
0
votes
0answers
244 views

Fastmm with New and Dispose Delphi 6

I have some Delphi 6 code that allocates memory using New and frees it using Dispose. I have stepped through the code and see that both New and Dispose actually do get called. I am wondering why ...
6
votes
1answer
319 views

Delphi Memory Issue (FastMM4)

Working on a project which uses factories to construct objects. I keep the pointers to the factory functions in vars globally (bad I know) and register them on initialization. I recently was ...
1
vote
0answers
436 views

Unable to get FastMM4 to work with Delphi 7 application protected using ASProtect

I'm getting this error, "FastMM4 cannot install since memory has already been allocated through the default memory manager". I'm using ASProtect and Eurekalog for my Delphi 7 application (there's no ...
10
votes
2answers
1k views

Delphi XE2: Does FastMM work with Win64 application?

I use FastMM in my Delphi application to trace memory leaking especially in FullDebugMode. With the new release of Delphi XE2, can we use FastMM as the memory manager? Can FastMM work with the Win64 ...
5
votes
1answer
376 views

FastMM fails to detect memory leaks

I'm using FastMM 4.97 in my application in Delphi5. Everything works well, if I run my application from the IDE with an intentional leak for test purposes. I get proper notices and error logs. ...
1
vote
1answer
206 views

Does FastMM support reserving virtual memory and calling in chunks to grow an array?

I know I can reserve virtual memory using VirtualAlloc. e.g. I can claim 1GB of virtual memory and then call in the first MB of that to put my a growing array into. When the array grows beyond 1MB I ...
1
vote
2answers
4k views

How do I turn on/off FastMM memory leak reporting under Delphi XE?

How do I turn on/off FastMM memory leak reporting under Delphi XE? Under Delphi 7, I had to modify the inc file. But I hear that Delphi XE has FastMM already integrated. How do I access FastMM ...
1
vote
1answer
360 views

Using FastMM4, how to register leaked string?

With FastMM4 one can easily register a leaked pointer, but not a leaked string. Apparently the @ operator applied to a string is not really giving us the whole string, nor is PChar(string); What can I ...
4
votes
4answers
339 views

Delphi 7.0 and memory leak?

After spending time with FastMM4 in weeding out any pieces of code that could possibly cause memory leak as indicated by FastMM4, we have been test running our software for about a month non-stop on ...
0
votes
1answer
304 views

OpenGL 3.2 in Delphi 2009 using FastMM 4.97 problem with UBOs in FullDebugMode

I'm sitting with an OpenGL 3.2 application in Delphi 2009. When using FastMM 4.97 with FullDebugMode defined the UBOs does not get their data properly. With FullDebugMode undefined everything works ...
4
votes
3answers
797 views

FastMM: Total Allocated Memory

How could I get the total amount of memory, that allocated by FastMM? I've tried that: function GetTotalAllocatedMemory: Cardinal; var MMState: TMemoryManagerState; begin ...
4
votes
3answers
700 views

Delphi: FastMM virtual memory management reference?

I had an issue recently (see my last question) that led me to take a closer look at the memory management in my Delphi application. After my first exploration, I have two questions. I've started ...
1
vote
1answer
174 views

How to remove FastMM497 from my project file?

After spending a week of my time running using FastMM on my project file, I now have completely gone through my program and to best of my knowledge remove all but 3 error messages raised by FastMM497. ...
4
votes
4answers
555 views

Is it possible that FastMM is reporting an False AV?

I have a complex application that works as expected when compiled normally, but closing a form generates an AV when compiled using FastMM 4.97 (the latest). The AV occurs when the message dispatching ...
3
votes
2answers
538 views

How to use FastMM in delphi expert(dll)

I made delphi expert(dll - delphi 5). I want to test my expert for memory leak.How to use FastMM for dll expert? Is it possible to use fastmm(for my dll) instead of the standard memory manager?
3
votes
2answers
761 views

FastMM4, Delphi6, Leak of TApplication?

I checked the FastMM4 with D6. When I debug a simple application with uses "Forms", I everytime got 3 lines for memory leak. This application has leaked memory. The small block leaks are ...
0
votes
5answers
1k views

How much memory your program takes? (FastMM vs Borland MM)

I have seen recently a strange behavior in my program. After creating large amounts of objects (500MB of RAM) then releasing them, the program's memory footprint does not return to its original size. ...

1 2