Free Pascal allows you to write and use your own memory manager. The standard functions GetMem, FreeMem, ReallocMem and Maxavail use a special record in the system unit to do the actual memory management. The system unit initializes this record with the system unit’s own memory manager, but you can read and set this record using the GetMemoryManager and SetMemoryManager calls:
| procedure GetMemoryManager(var MemMgr: TMemoryManager); procedure SetMemoryManager(const MemMgr: TMemoryManager); | 
the TMemoryManager record is defined as follows:
| TMemoryManager = record Getmem : Function(Size:Longint):Pointer; Freemem : Function(var p:pointer):Longint; FreememSize : Function(var p:pointer;Size:Longint):Longint; AllocMem : Function(Size:longint):Pointer; ReAllocMem : Function(var p:pointer;Size:longint):Pointer; MemSize : function(p:pointer):Longint; MemAvail : Function:Longint; MaxAvail : Function:Longint; HeapSize : Function:Longint; end; | 
As you can see, the elements of this record are procedural variables. The system unit does nothing but call these various variables when you allocate or deallocate memory.
Each of these functions corresponds to the corresponding call in the system unit. We’ll describe each one of them:
To implement your own memory manager, it is sufficient to construct such a record and to issue a call to SetMemoryManager.
To avoid conflicts with the system memory manager, setting the memory manager should happen as soon as possible in the initialization of your program, i.e. before any call to getmem is processed.
This means in practice that the unit implementing the memory manager should be the first in the uses clause of your program or library, since it will then be initialized before all other units (except of the system unit)
This also means that it is not possible to use the heaptrc unit in combination with a custom memory manager, since the heaptrc unit uses the system memory manager to do all it’s allocation. Putting the heaptrc unit after the unit implementing the memory manager would overwrite the memory manager record installed by the custom memory manager, and vice versa.
The following unit shows a straightforward implementation of a custom memory manager using the memory manager of the C library. It is distributed as a package with Free Pascal.
| 
 unit cmem;
 
 {$mode objfpc}
 
 interface
 
 Function Malloc (Size : Longint) : Pointer;cdecl;
   external 'c' name 'malloc';
 Procedure Free (P : pointer); cdecl; external 'c' name 'free';
 Procedure FreeMem (P : Pointer); cdecl; external 'c' name 'free';
 function ReAlloc (P : Pointer; Size : longint) : pointer; cdecl;
   external 'c' name 'realloc';
 Function CAlloc (unitSize,UnitCount : Longint) : pointer;cdecl;
   external 'c' name 'calloc';
 
 implementation
 
 Function CGetMem  (Size : Longint) : Pointer;
 
 begin
   result:=Malloc(Size);
 end;
 
 Function CFreeMem (Var P : pointer) : Longint;
 
 begin
   Free(P);
   Result:=0;
 end;
 
 Function CFreeMemSize(var p:pointer;Size:Longint):Longint;
 
 begin
   Result:=CFreeMem(P);
 end;
 
 Function CAllocMem(Size : Longint) : Pointer;
 
 begin
   Result:=calloc(Size,1);
 end;
 
 Function CReAllocMem (var p:pointer;Size:longint):Pointer;
 
 begin
   Result:=realloc(p,size);
 end;
 
 Function CMemSize (p:pointer): Longint;
 
                                                                            
                                                                            
 begin
   Result:=0;
 end;
 
 Function CMemAvail : Longint;
 
 begin
   Result:=0;
 end;
 
 Function CMaxAvail: Longint;
 
 begin
   Result:=0;
 end;
 
 Function CHeapSize : Longint;
 
 begin
   Result:=0;
 end;
 
 
 Const
  CMemoryManager : TMemoryManager =
     (
       GetMem : CGetmem;
       FreeMem : CFreeMem;
       FreememSize : CFreememSize;
       AllocMem : CAllocMem;
       ReallocMem : CReAllocMem;
       MemSize : CMemSize;
       MemAvail : CMemAvail;
       MaxAvail : MaxAvail;
       HeapSize : CHeapSize;
     );
 
 Var
   OldMemoryManager : TMemoryManager;
 
 Initialization
   GetMemoryManager (OldMemoryManager);
   SetMemoryManager (CmemoryManager);
 
 Finalization
   SetMemoryManager (OldMemoryManager);
 end.
 |