-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMem.c
452 lines (373 loc) · 9.51 KB
/
XMem.c
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/*
* The X Men, November 1997
* Copyright (c) 1996 Probe Entertainment Limited
* All Rights Reserved
*
* $Revision: 8 $
*
* $Header: /PcProjectX/XMem.c 8 30/03/98 20:55 Philipy $
*
* $Log: /PcProjectX/XMem.c $
*
* 8 30/03/98 20:55 Philipy
* increased max memory blocks
*
* 7 18/03/98 16:14 Philipy
* messed about with stopping memory from being paged out
* Stopped due to lack of time & information
*
* 6 28/01/98 12:56 Oliverc
* Changed allocation checking to working on DEBUG_ON flag instead of the
* generic _DEBUG
*
* 5 24/12/97 9:20 Philipy
* fixed dynamic sound stuff by making X_Malloc, X_Free etc. atomic
*
* 4 15/12/97 14:18 Oliverc
* Increased MAXBLOCKS from 4096 to 8192...
*
* 3 12/01/97 3:27p Phillipd
*
* 2 11/29/97 4:36p Phillipd
* Xmem is now in effect...use it allways....
*
* 1 11/29/97 4:34p Phillipd
*/
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Include Files...
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
#include <malloc.h>
#include <ddraw.h>
size_t MemUsed =0;
#ifdef DEBUG_ON
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
externs...
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
Msg( LPSTR fmt, ... );
void DebugPrintf( const char * format, ... );
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Defines...
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
#define MAXBLOCKS 16384
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Globals...
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
BOOL BlockUsed[MAXBLOCKS];
void * BlockPnts[MAXBLOCKS];
size_t BlockSize[MAXBLOCKS];
char * BlockInFile[MAXBLOCKS];
int BlockInLine[MAXBLOCKS];
int BlocksUsed = 0;
CRITICAL_SECTION XMemKey;
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : X Mem Init...
Input : void
Output : void
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void XMem_Init( void )
{
int i;
MemUsed =0;
for( i = 0 ; i < MAXBLOCKS ; i++ )
{
BlockUsed[i] = FALSE;
BlockPnts[i] = NULL;
BlockSize[i] = 0;
}
InitializeCriticalSection( &XMemKey );
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : X Mem Find Free...
Input : void
Output : int Free memblock -1 if none
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
int XMem_FindFree( void )
{
int i;
for( i = 0 ; i < MAXBLOCKS ; i++ )
{
if( !BlockUsed[i] )
{
BlocksUsed++;
return i;
}
}
return -1;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : X Mem Find Same Block...
Input : void * Pnt
Output : int Same memblock -1 if none
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
int XMem_FindSame( void * Pnt )
{
int i;
for( i = 0 ; i < MAXBLOCKS ; i++ )
{
if( BlockUsed[i] && ( BlockPnts[i] == Pnt ) )
return i;
}
return -1;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : X Mem malloc some memory....
Input : size_t size
Output : void * pnt to block of memory or NULL if none
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void * X_malloc( size_t size, char *in_file, int in_line )
{
void * Pnt;
int i;
EnterCriticalSection( &XMemKey );
i = XMem_FindFree();
if( i == -1 )
{
Msg( "Ran out of free memory Blocks");
LeaveCriticalSection( &XMemKey );
return NULL;
}
Pnt = malloc( size );
if( !Pnt )
{
LeaveCriticalSection( &XMemKey );
return Pnt;
}
BlockUsed[i] = TRUE;
BlockPnts[i] = Pnt;
BlockSize[i] = size;
BlockInFile[i] = in_file;
BlockInLine[i] = in_line;
MemUsed += size;
LeaveCriticalSection( &XMemKey );
return Pnt;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : X Mem calloc some memory....
Input : size_t size
Output : void * pnt to block of memory or NULL if none
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void * X_calloc( size_t num,size_t size, char *in_file, int in_line )
{
void * Pnt;
int i;
EnterCriticalSection( &XMemKey );
i = XMem_FindFree();
if( i == -1 )
{
LeaveCriticalSection( &XMemKey );
Msg( "Ran out of free memory Blocks");
return NULL;
}
Pnt = calloc( num , size );
if( !Pnt )
{
LeaveCriticalSection( &XMemKey );
return Pnt;
}
BlockUsed[i] = TRUE;
BlockPnts[i] = Pnt;
BlockSize[i] = num * size;
BlockInFile[i] = in_file;
BlockInLine[i] = in_line;
MemUsed += num * size;
LeaveCriticalSection( &XMemKey );
return Pnt;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : X Mem free some memory..
Input : void * Pnt
Output : void
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void X_free( void * Pnt, char *in_file, int in_line )
{
int i;
static char *last_file = NULL;
static int last_line = -1;
EnterCriticalSection( &XMemKey );
if ( !Pnt )
{
if ( in_file != last_file || in_line != last_line )
Msg( "Tried to free NULL block in %s line %d", in_file, in_line );
last_file = in_file;
last_line = in_line;
LeaveCriticalSection( &XMemKey );
return;
}
i = XMem_FindSame( Pnt );
if( i == -1 )
{
if ( in_file != last_file || in_line != last_line )
Msg( "Tried to free un-malloced block in %s line %d", in_file, in_line );
last_file = in_file;
last_line = in_line;
LeaveCriticalSection( &XMemKey );
return;
}
free(Pnt);
BlockUsed[i] = FALSE;
BlockPnts[i] = NULL;
BlockInFile[ i ] = NULL;
BlockInLine[ i ] = 0;
MemUsed -= BlockSize[i];
BlockSize[i] = 0;
BlocksUsed--;
LeaveCriticalSection( &XMemKey );
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : X Mem malloc some memory....
Input : size_t size
Output : void * pnt to block of memory or NULL if none
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void * X_realloc( void * Pnt , size_t size, char *in_file, int in_line )
{
int i;
EnterCriticalSection( &XMemKey );
i = XMem_FindSame( Pnt );
if( i == -1 )
{
LeaveCriticalSection( &XMemKey );
Msg( "tried to realloc un-alloced block");
return NULL;
}
Pnt = realloc( Pnt , size );
if( !Pnt )
{
LeaveCriticalSection( &XMemKey );
return Pnt;
}
BlockUsed[i] = TRUE;
BlockPnts[i] = Pnt;
BlockInFile[i] = in_file;
BlockInLine[i] = in_line;
MemUsed -= BlockSize[i];
BlockSize[i] = size;
MemUsed += size;
LeaveCriticalSection( &XMemKey );
return Pnt;
}
int UnMallocedBlocks( void )
{
int i;
if ( BlocksUsed )
{
for ( i = 0; i < MAXBLOCKS; i++ )
{
if ( BlockUsed[ i ] )
{
DebugPrintf( "Block size %d allocated in %s line %d but not freed\n",
BlockSize[ i ], BlockInFile[ i ], BlockInLine[ i ] );
}
}
}
DebugPrintf( "MemUsed = %d BlocksUsed = %d\n",
MemUsed, BlocksUsed );
return BlocksUsed;
}
#if 0
typedef struct _USEDMEMLIST
{
char *start;
DWORD size;
} USEDMEMLIST;
#define MAX_ANY_MEMBLOCKS 1024
USEDMEMLIST UsedMem[ MAX_ANY_MEMBLOCKS ];
DWORD NumUsedMemBlocks;
void InitUsedMemList( void )
{
NumUsedMemBlocks = 0;
memset( UsedMem, 0, sizeof( USEDMEMLIST ) * MAX_ANY_MEMBLOCKS );
}
void AddToUsedMemList( char *start, DWORD size )
{
UsedMem[ NumUsedMemBlocks ].start = start;
UsedMem[ NumUsedMemBlocks ].size = size;
NumUsedMemBlocks++;
}
void FreeUsedMemList( void )
{
NumUsedMemBlocks = 0;
}
#define NUM_LIMBO_PAGES 16
static int
_cdecl CompareMemBlocks( const void *arg1, const void *arg2 )
{
USEDMEMLIST *item1, *item2;
item1 = (USEDMEMLIST *)arg1;
item2 = (USEDMEMLIST *)arg2;
if ( item1->start < item2->start )
return -1;
if ( item1->start > item2->start )
return 1;
return 0;
}
void MakeMemNonVolitile( void )
{
char *PreviousPtr[ NUM_LIMBO_PAGES ];
char *InitialTouchPtr, *LastTouched;
char temp;
SYSTEM_INFO SystemInfo;
DWORD PageSize;
DWORD i, j;
if ( !NumUsedMemBlocks )
return;
// sort memory blocks...
qsort( (void *)UsedMem, (size_t) NumUsedMemBlocks, sizeof( USEDMEMLIST ), CompareMemBlocks );
GetSystemInfo( &SystemInfo );
PageSize = SystemInfo.dwPageSize;
j = 0;
LastTouched = NULL;
for ( i = 0; i < NumUsedMemBlocks; i++ )
{
InitialTouchPtr = UsedMem[ i ].start;
while ( InitialTouchPtr <= ( UsedMem[ i ].start + UsedMem[ i ].size ) )
{
// if new block starts on same page as last page of last block, ignore
if ( ( InitialTouchPtr - PageSize ) < LastTouched )
{
InitialTouchPtr += PageSize;
continue;
}
PreviousPtr[ j++ ] = InitialTouchPtr;
LastTouched = InitialTouchPtr;
if ( j == NUM_LIMBO_PAGES )
{
temp = *PreviousPtr[ 0 ];
memmove( &PreviousPtr[ 0 ], &PreviousPtr[ 1 ], sizeof( char *) * ( NUM_LIMBO_PAGES - 1 ) );
j--;
}
temp = *InitialTouchPtr;
InitialTouchPtr += PageSize;
}
}
for ( i = 0; i < j; i++ )
{
// touch very first page again ( a page must be accessed in between each refresh touch )
temp = *UsedMem[ 0 ].start;
// refresh remaining pages
temp = *PreviousPtr[ i ];
}
}
/*
Assume that pb and cb are both rounded to page boundaries
and that PageSize has been determined from GetSystemInformation().
*/
void MakeRegionPresent(volatile BYTE *pb, UINT unalignedcb)
{
UINT ib, cbLag, cb;
SYSTEM_INFO SystemInfo;
GetSystemInfo( &SystemInfo );
cbLag = 16 * SystemInfo.dwPageSize;
cb = unalignedcb + ( SystemInfo.dwPageSize - 1 );
cb /= SystemInfo.dwPageSize;
cb *= SystemInfo.dwPageSize;
for (ib = 0; ib < cb; ib += SystemInfo.dwPageSize )
{
if ( ib >= cbLag )
{
pb[ib - cbLag];
}
pb[ib];
}
}
#endif
#endif // DEBUG_ON