1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
/* @(#) pf_mem.c 98/01/26 1.3 */
/***************************************************************
** Memory allocator for systems that don't have real one.
** This might be useful when bringing up a new computer with no OS.
**
** For PForth based on 'C'
**
** Author: Phil Burk
** Copyright 1994 3DO, Phil Burk, Larry Polansky, Devid Rosenboom
**
** The pForth software code is dedicated to the public domain,
** and any third party may reproduce, distribute and modify
** the pForth software code or any derivative works thereof
** without any compensation or license. The pForth software
** code is provided on an "as is" basis without any warranty
** of any kind, including, without limitation, the implied
** warranties of merchantability and fitness for a particular
** purpose and their equivalents under the laws of any jurisdiction.
**
****************************************************************
**
***************************************************************/
#include "pf_all.h"
#ifdef PF_NO_MALLOC
static char *gMemPoolPtr;
static uint32 gMemPoolSize;
/* CUSTOM: Make the memory pool bigger if you want. */
#ifndef PF_MEM_POOL_SIZE
#define PF_MEM_POOL_SIZE (0x100000)
#endif
#define PF_MEM_BLOCK_SIZE (16)
#ifndef PF_MALLOC_ADDRESS
static char MemoryPool[PF_MEM_POOL_SIZE];
#define PF_MALLOC_ADDRESS MemoryPool
#endif
/**********************************************************
** Doubly Linked List Tools
**********************************************************/
typedef struct DoublyLinkedListNode
{
struct DoublyLinkedListNode *dlln_Next;
struct DoublyLinkedListNode *dlln_Previous;
} DoublyLinkedListNode;
typedef struct DoublyLinkedList
{
struct DoublyLinkedListNode *dll_First;
struct DoublyLinkedListNode *dll_Null;
struct DoublyLinkedListNode *dll_Last;
} DoublyLinkedList;
#define dllPreviousNode(n) ((n)->dlln_Previous)
#define dllNextNode(n) ((n)->dlln_Next)
void dllSetupList( DoublyLinkedList *dll )
{
dll->dll_First = (DoublyLinkedListNode *) &(dll->dll_Null);
dll->dll_Null = (DoublyLinkedListNode *) NULL;
dll->dll_Last = (DoublyLinkedListNode *) &(dll->dll_First);
}
void dllLinkNodes( DoublyLinkedListNode *Node0, DoublyLinkedListNode *Node1 )
{
Node0->dlln_Next = Node1;
Node1->dlln_Previous = Node0;
}
void dllInsertNodeBefore( DoublyLinkedListNode *NewNodePtr,
DoublyLinkedListNode *NodeInListPtr )
{
DoublyLinkedListNode *NodePreviousPtr = dllPreviousNode( NodeInListPtr );
dllLinkNodes( NodePreviousPtr, NewNodePtr );
dllLinkNodes( NewNodePtr, NodeInListPtr );
}
void dllInsertNodeAfter( DoublyLinkedListNode *NewNodePtr,
DoublyLinkedListNode *NodeInListPtr )
{
DoublyLinkedListNode *NodeNextPtr = dllNextNode( NodeInListPtr );
dllLinkNodes( NodeInListPtr, NewNodePtr );
dllLinkNodes( NewNodePtr, NodeNextPtr );
}
void dllDumpNode( DoublyLinkedListNode *NodePtr )
{
TOUCH(NodePtr);
DBUG((" 0x%x -> (0x%x) -> 0x%x\n",
dllPreviousNode( NodePtr ), NodePtr,
dllNextNode( NodePtr ) ));
}
int32 dllCheckNode( DoublyLinkedListNode *NodePtr )
{
if( (NodePtr->dlln_Next->dlln_Previous != NodePtr) ||
(NodePtr->dlln_Previous->dlln_Next != NodePtr))
{
ERR("dllCheckNode: Bad Node!\n");
dllDumpNode( dllPreviousNode( NodePtr ) );
dllDumpNode( NodePtr );
dllDumpNode( dllNextNode( NodePtr ) );
return -1;
}
else
{
return 0;
}
}
void dllRemoveNode( DoublyLinkedListNode *NodePtr )
{
if( dllCheckNode( NodePtr ) == 0 )
{
dllLinkNodes( dllPreviousNode( NodePtr ), dllNextNode( NodePtr ) );
}
}
void dllAddNodeToHead( DoublyLinkedList *ListPtr, DoublyLinkedListNode *NewNodePtr )
{
dllInsertNodeBefore( NewNodePtr, ListPtr->dll_First );
}
void dllAddNodeToTail( DoublyLinkedList *ListPtr, DoublyLinkedListNode *NewNodePtr )
{
dllInsertNodeAfter( NewNodePtr, ListPtr->dll_Last );
}
#define dllIsNodeInList( n ) (!((n)->dlln_Next == NULL) )
#define dllIsLastNode( n ) ((n)->dlln_Next->dll_nNext == NULL )
#define dllIsListEmpty( l ) ((l)->dll_First == ((DoublyLinkedListNode *) &((l)->dll_Null)) )
#define dllFirstNode( l ) ((l)->dll_First)
static DoublyLinkedList gMemList;
static int32 gIfMemListInit;
typedef struct MemListNode
{
DoublyLinkedListNode mln_Node;
int32 mln_Size;
} MemListNode;
#ifdef PF_DEBUG
/***************************************************************
** Dump memory list.
*/
void maDumpList( void )
{
MemListNode *mln;
MSG("PForth MemList\n");
for( mln = (MemListNode *) dllFirstNode( &gMemList );
dllIsNodeInList( (DoublyLinkedListNode *) mln);
mln = (MemListNode *) dllNextNode( (DoublyLinkedListNode *) mln ) )
{
MSG(" Node at = 0x"); ffDotHex(mln);
MSG_NUM_H(", size = 0x", mln->mln_Size);
}
}
#endif
/***************************************************************
** Free mem of any size.
*/
static void pfFreeRawMem( char *Mem, int32 NumBytes )
{
MemListNode *mln, *FreeNode;
MemListNode *AdjacentLower = NULL;
MemListNode *AdjacentHigher = NULL;
MemListNode *NextBiggest = NULL;
/* Allocate in whole blocks of 16 bytes */
DBUG(("\npfFreeRawMem( 0x%x, 0x%x )\n", Mem, NumBytes ));
NumBytes = (NumBytes + PF_MEM_BLOCK_SIZE - 1) & ~(PF_MEM_BLOCK_SIZE - 1);
DBUG(("\npfFreeRawMem: Align NumBytes to 0x%x\n", NumBytes ));
/* Check memory alignment. */
if( ( ((int32)Mem) & (PF_MEM_BLOCK_SIZE - 1)) != 0)
{
MSG_NUM_H("pfFreeRawMem: misaligned Mem = 0x", (int32) Mem );
return;
}
/* Scan list from low to high looking for various nodes. */
for( mln = (MemListNode *) dllFirstNode( &gMemList );
dllIsNodeInList( (DoublyLinkedListNode *) mln);
mln = (MemListNode *) dllNextNode( (DoublyLinkedListNode *) mln ) )
{
if( (((char *) mln) + mln->mln_Size) == Mem )
{
AdjacentLower = mln;
}
else if( ((char *) mln) == ( Mem + NumBytes ))
{
AdjacentHigher = mln;
}
/* is this the next biggest node. */
else if( (NextBiggest == NULL) && (mln->mln_Size >= NumBytes) )
{
NextBiggest = mln;
}
}
/* Check to see if we can merge nodes. */
if( AdjacentHigher )
{
DBUG((" Merge (0x%x) -> 0x%x\n", Mem, AdjacentHigher ));
NumBytes += AdjacentHigher->mln_Size;
dllRemoveNode( (DoublyLinkedListNode *) AdjacentHigher );
}
if( AdjacentLower )
{
DBUG((" Merge 0x%x -> (0x%x)\n", AdjacentLower, Mem ));
AdjacentLower->mln_Size += NumBytes;
}
else
{
DBUG((" Link before 0x%x\n", NextBiggest ));
FreeNode = (MemListNode *) Mem;
FreeNode->mln_Size = NumBytes;
if( NextBiggest == NULL )
{
/* Nothing bigger so add to end of list. */
dllAddNodeToTail( &gMemList, (DoublyLinkedListNode *) FreeNode );
}
else
{
/* Add this node before the next biggest one we found. */
dllInsertNodeBefore( (DoublyLinkedListNode *) FreeNode,
(DoublyLinkedListNode *) NextBiggest );
}
}
/* maDumpList(); */
}
/***************************************************************
** Setup memory list. Initialize allocator.
*/
void pfInitMemAllocator( void *addr, uint32 poolSize )
{
char *AlignedMemory;
int32 AlignedSize;
/* Set globals. */
gMemPoolPtr = addr;
gMemPoolSize = poolSize;
dllSetupList( &gMemList );
gIfMemListInit = TRUE;
/* Adjust to next highest aligned memory location. */
AlignedMemory = (char *) ((((int32)gMemPoolPtr) + PF_MEM_BLOCK_SIZE - 1) &
~(PF_MEM_BLOCK_SIZE - 1));
/* Adjust size to reflect aligned memory. */
AlignedSize = gMemPoolSize - (AlignedMemory - gMemPoolPtr);
/* Align size of pool. */
AlignedSize = AlignedSize & ~(PF_MEM_BLOCK_SIZE - 1);
/* Free to pool. */
pfFreeRawMem( AlignedMemory, AlignedSize );
}
/***************************************************************
** Allocate mem from list of free nodes.
*/
static char *pfAllocRawMem( int32 NumBytes )
{
char *Mem = NULL;
MemListNode *mln;
if( NumBytes <= 0 ) return NULL;
if( gIfMemListInit == 0 ) pfInitMemAllocator( PF_MALLOC_ADDRESS, PF_MEM_POOL_SIZE );
/* Allocate in whole blocks of 16 bytes */
NumBytes = (NumBytes + PF_MEM_BLOCK_SIZE - 1) & ~(PF_MEM_BLOCK_SIZE - 1);
DBUG(("\npfAllocRawMem( 0x%x )\n", NumBytes ));
/* Scan list from low to high until we find a node big enough. */
for( mln = (MemListNode *) dllFirstNode( &gMemList );
dllIsNodeInList( (DoublyLinkedListNode *) mln);
mln = (MemListNode *) dllNextNode( (DoublyLinkedListNode *) mln ) )
{
if( mln->mln_Size >= NumBytes )
{
int32 RemSize;
Mem = (char *) mln;
/* Remove this node from list. */
dllRemoveNode( (DoublyLinkedListNode *) mln );
/* Is there enough left in block to make it worth splitting? */
RemSize = mln->mln_Size - NumBytes;
if( RemSize >= PF_MEM_BLOCK_SIZE )
{
pfFreeRawMem( (Mem + NumBytes), RemSize );
}
break;
}
}
/* maDumpList(); */
DBUG(("Allocate mem at 0x%x.\n", Mem ));
return Mem;
}
/***************************************************************
** Keep mem size at first cell.
*/
char *pfAllocMem( int32 NumBytes )
{
int32 *IntMem;
if( NumBytes <= 0 ) return NULL;
/* Allocate an extra cell for size. */
NumBytes += sizeof(int32);
IntMem = (int32 *)pfAllocRawMem( NumBytes );
if( IntMem != NULL ) *IntMem++ = NumBytes;
return (char *) IntMem;
}
/***************************************************************
** Free mem with mem size at first cell.
*/
void pfFreeMem( void *Mem )
{
int32 *IntMem;
int32 NumBytes;
if( Mem == NULL ) return;
/* Allocate an extra cell for size. */
IntMem = (int32 *) Mem;
IntMem--;
NumBytes = *IntMem;
pfFreeRawMem( (char *) IntMem, NumBytes );
}
#endif /* PF_NO_MALLOC */
|