]> icculus.org git repositories - divverent/darkplaces.git/blob - zone.c
make DP run in wine again
[divverent/darkplaces.git] / zone.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // Z_zone.c
21
22 #include "quakedef.h"
23
24 cvar_t developer_memory = {0, "developer_memory", "0", "prints debugging information about memory allocations"};
25 cvar_t developer_memorydebug = {0, "developer_memorydebug", "0", "enables memory corruption checks (very slow)"};
26
27 mempool_t *poolchain = NULL;
28
29 void *_Mem_Alloc(mempool_t *pool, size_t size, const char *filename, int fileline)
30 {
31 #if MEMCLUMPING
32         int i, j, k, needed, endbit, largest;
33         memclump_t *clump, **clumpchainpointer;
34 #endif
35         memheader_t *mem;
36         if (size <= 0)
37                 return NULL;
38         if (pool == NULL)
39                 Sys_Error("Mem_Alloc: pool == NULL (alloc at %s:%i)", filename, fileline);
40         if (developer.integer && developer_memory.integer)
41                 Con_Printf("Mem_Alloc: pool %s, file %s:%i, size %i bytes\n", pool->name, filename, fileline, (int)size);
42         if (developer.integer && developer_memorydebug.integer)
43                 _Mem_CheckSentinelsGlobal(filename, fileline);
44         pool->totalsize += size;
45 #if MEMCLUMPING
46         if (size < 4096)
47         {
48                 // clumping
49                 needed = (sizeof(memheader_t) + size + sizeof(int) + (MEMUNIT - 1)) / MEMUNIT;
50                 endbit = MEMBITS - needed;
51                 for (clumpchainpointer = &pool->clumpchain;*clumpchainpointer;clumpchainpointer = &(*clumpchainpointer)->chain)
52                 {
53                         clump = *clumpchainpointer;
54                         if (clump->sentinel1 != MEMCLUMP_SENTINEL)
55                                 Sys_Error("Mem_Alloc: trashed clump sentinel 1 (alloc at %s:%d)", filename, fileline);
56                         if (clump->sentinel2 != MEMCLUMP_SENTINEL)
57                                 Sys_Error("Mem_Alloc: trashed clump sentinel 2 (alloc at %s:%d)", filename, fileline);
58                         if (clump->largestavailable >= needed)
59                         {
60                                 largest = 0;
61                                 for (i = 0;i < endbit;i++)
62                                 {
63                                         if (clump->bits[i >> 5] & (1 << (i & 31)))
64                                                 continue;
65                                         k = i + needed;
66                                         for (j = i;i < k;i++)
67                                                 if (clump->bits[i >> 5] & (1 << (i & 31)))
68                                                         goto loopcontinue;
69                                         goto choseclump;
70         loopcontinue:;
71                                         if (largest < j - i)
72                                                 largest = j - i;
73                                 }
74                                 // since clump falsely advertised enough space (nothing wrong
75                                 // with that), update largest count to avoid wasting time in
76                                 // later allocations
77                                 clump->largestavailable = largest;
78                         }
79                 }
80                 pool->realsize += sizeof(memclump_t);
81                 clump = malloc(sizeof(memclump_t));
82                 if (clump == NULL)
83                         Sys_Error("Mem_Alloc: out of memory (alloc at %s:%i)", filename, fileline);
84                 memset(clump, 0, sizeof(memclump_t));
85                 *clumpchainpointer = clump;
86                 clump->sentinel1 = MEMCLUMP_SENTINEL;
87                 clump->sentinel2 = MEMCLUMP_SENTINEL;
88                 clump->chain = NULL;
89                 clump->blocksinuse = 0;
90                 clump->largestavailable = MEMBITS - needed;
91                 j = 0;
92 choseclump:
93                 mem = (memheader_t *)((unsigned char *) clump->block + j * MEMUNIT);
94                 mem->clump = clump;
95                 clump->blocksinuse += needed;
96                 for (i = j + needed;j < i;j++)
97                         clump->bits[j >> 5] |= (1 << (j & 31));
98         }
99         else
100         {
101                 // big allocations are not clumped
102 #endif
103                 pool->realsize += sizeof(memheader_t) + size + sizeof(int);
104                 mem = (memheader_t *)malloc(sizeof(memheader_t) + size + sizeof(int));
105                 if (mem == NULL)
106                         Sys_Error("Mem_Alloc: out of memory (alloc at %s:%i)", filename, fileline);
107 #if MEMCLUMPING
108                 mem->clump = NULL;
109         }
110 #endif
111         mem->filename = filename;
112         mem->fileline = fileline;
113         mem->size = size;
114         mem->pool = pool;
115         mem->sentinel1 = MEMHEADER_SENTINEL1;
116         // we have to use only a single byte for this sentinel, because it may not be aligned, and some platforms can't use unaligned accesses
117         *((unsigned char *) mem + sizeof(memheader_t) + mem->size) = MEMHEADER_SENTINEL2;
118         // append to head of list
119         mem->next = pool->chain;
120         mem->prev = NULL;
121         pool->chain = mem;
122         if (mem->next)
123                 mem->next->prev = mem;
124         memset((void *)((unsigned char *) mem + sizeof(memheader_t)), 0, mem->size);
125         return (void *)((unsigned char *) mem + sizeof(memheader_t));
126 }
127
128 // only used by _Mem_Free and _Mem_FreePool
129 static void _Mem_FreeBlock(memheader_t *mem, const char *filename, int fileline)
130 {
131 #if MEMCLUMPING
132         int i, firstblock, endblock;
133         memclump_t *clump, **clumpchainpointer;
134 #endif
135         mempool_t *pool;
136         if (mem->sentinel1 != MEMHEADER_SENTINEL1)
137                 Sys_Error("Mem_Free: trashed header sentinel 1 (alloc at %s:%i, free at %s:%i)", mem->filename, mem->fileline, filename, fileline);
138         if (*((unsigned char *) mem + sizeof(memheader_t) + mem->size) != MEMHEADER_SENTINEL2)
139                 Sys_Error("Mem_Free: trashed header sentinel 2 (alloc at %s:%i, free at %s:%i)", mem->filename, mem->fileline, filename, fileline);
140         pool = mem->pool;
141         if (developer.integer && developer_memory.integer)
142                 Con_Printf("Mem_Free: pool %s, alloc %s:%i, free %s:%i, size %i bytes\n", pool->name, mem->filename, mem->fileline, filename, fileline, (int)(mem->size));
143         // unlink memheader from doubly linked list
144         if ((mem->prev ? mem->prev->next != mem : pool->chain != mem) || (mem->next && mem->next->prev != mem))
145                 Sys_Error("Mem_Free: not allocated or double freed (free at %s:%i)", filename, fileline);
146         if (mem->prev)
147                 mem->prev->next = mem->next;
148         else
149                 pool->chain = mem->next;
150         if (mem->next)
151                 mem->next->prev = mem->prev;
152         // memheader has been unlinked, do the actual free now
153         pool->totalsize -= mem->size;
154 #if MEMCLUMPING
155         if ((clump = mem->clump))
156         {
157                 if (clump->sentinel1 != MEMCLUMP_SENTINEL)
158                         Sys_Error("Mem_Free: trashed clump sentinel 1 (free at %s:%i)", filename, fileline);
159                 if (clump->sentinel2 != MEMCLUMP_SENTINEL)
160                         Sys_Error("Mem_Free: trashed clump sentinel 2 (free at %s:%i)", filename, fileline);
161                 firstblock = ((unsigned char *) mem - (unsigned char *) clump->block);
162                 if (firstblock & (MEMUNIT - 1))
163                         Sys_Error("Mem_Free: address not valid in clump (free at %s:%i)", filename, fileline);
164                 firstblock /= MEMUNIT;
165                 endblock = firstblock + ((sizeof(memheader_t) + mem->size + sizeof(int) + (MEMUNIT - 1)) / MEMUNIT);
166                 clump->blocksinuse -= endblock - firstblock;
167                 // could use &, but we know the bit is set
168                 for (i = firstblock;i < endblock;i++)
169                         clump->bits[i >> 5] -= (1 << (i & 31));
170                 if (clump->blocksinuse <= 0)
171                 {
172                         // unlink from chain
173                         for (clumpchainpointer = &pool->clumpchain;*clumpchainpointer;clumpchainpointer = &(*clumpchainpointer)->chain)
174                         {
175                                 if (*clumpchainpointer == clump)
176                                 {
177                                         *clumpchainpointer = clump->chain;
178                                         break;
179                                 }
180                         }
181                         pool->realsize -= sizeof(memclump_t);
182                         memset(clump, 0xBF, sizeof(memclump_t));
183                         free(clump);
184                 }
185                 else
186                 {
187                         // clump still has some allocations
188                         // force re-check of largest available space on next alloc
189                         clump->largestavailable = MEMBITS - clump->blocksinuse;
190                 }
191         }
192         else
193         {
194 #endif
195                 pool->realsize -= sizeof(memheader_t) + mem->size + sizeof(int);
196                 if (developer_memorydebug.integer)
197                         memset(mem, 0xBF, sizeof(memheader_t) + mem->size + sizeof(int));
198                 free(mem);
199 #if MEMCLUMPING
200         }
201 #endif
202 }
203
204 void _Mem_Free(void *data, const char *filename, int fileline)
205 {
206         if (data == NULL)
207         {
208                 Con_DPrintf("Mem_Free: data == NULL (called at %s:%i)", filename, fileline);
209                 return;
210         }
211
212         if (developer.integer && developer_memorydebug.integer)
213         {
214                 _Mem_CheckSentinelsGlobal(filename, fileline);
215                 if (!Mem_IsAllocated(NULL, data))
216                         Sys_Error("Mem_Free: data is not allocated (called at %s:%i)", filename, fileline);
217         }
218
219         _Mem_FreeBlock((memheader_t *)((unsigned char *) data - sizeof(memheader_t)), filename, fileline);
220 }
221
222 mempool_t *_Mem_AllocPool(const char *name, int flags, mempool_t *parent, const char *filename, int fileline)
223 {
224         mempool_t *pool;
225         if (developer.integer && developer_memorydebug.integer)
226                 _Mem_CheckSentinelsGlobal(filename, fileline);
227         pool = (mempool_t *)malloc(sizeof(mempool_t));
228         if (pool == NULL)
229                 Sys_Error("Mem_AllocPool: out of memory (allocpool at %s:%i)", filename, fileline);
230         memset(pool, 0, sizeof(mempool_t));
231         pool->sentinel1 = MEMHEADER_SENTINEL1;
232         pool->sentinel2 = MEMHEADER_SENTINEL1;
233         pool->filename = filename;
234         pool->fileline = fileline;
235         pool->flags = flags;
236         pool->chain = NULL;
237         pool->totalsize = 0;
238         pool->realsize = sizeof(mempool_t);
239         strlcpy (pool->name, name, sizeof (pool->name));
240         pool->parent = parent;
241         pool->next = poolchain;
242         poolchain = pool;
243         return pool;
244 }
245
246 void _Mem_FreePool(mempool_t **poolpointer, const char *filename, int fileline)
247 {
248         mempool_t *pool = *poolpointer;
249         mempool_t **chainaddress, *iter, *temp;
250
251         if (developer.integer && developer_memorydebug.integer)
252                 _Mem_CheckSentinelsGlobal(filename, fileline);
253         if (pool)
254         {
255                 // unlink pool from chain
256                 for (chainaddress = &poolchain;*chainaddress && *chainaddress != pool;chainaddress = &((*chainaddress)->next));
257                 if (*chainaddress != pool)
258                         Sys_Error("Mem_FreePool: pool already free (freepool at %s:%i)", filename, fileline);
259                 if (pool->sentinel1 != MEMHEADER_SENTINEL1)
260                         Sys_Error("Mem_FreePool: trashed pool sentinel 1 (allocpool at %s:%i, freepool at %s:%i)", pool->filename, pool->fileline, filename, fileline);
261                 if (pool->sentinel2 != MEMHEADER_SENTINEL1)
262                         Sys_Error("Mem_FreePool: trashed pool sentinel 2 (allocpool at %s:%i, freepool at %s:%i)", pool->filename, pool->fileline, filename, fileline);
263                 *chainaddress = pool->next;
264
265                 // free memory owned by the pool
266                 while (pool->chain)
267                         _Mem_FreeBlock(pool->chain, filename, fileline);
268
269                 // free child pools, too
270                 for(iter = poolchain; iter; temp = iter = iter->next)
271                         if(iter->parent == pool)
272                                 _Mem_FreePool(&temp, filename, fileline);
273
274                 // free the pool itself
275                 memset(pool, 0xBF, sizeof(mempool_t));
276                 free(pool);
277
278                 *poolpointer = NULL;
279         }
280 }
281
282 void _Mem_EmptyPool(mempool_t *pool, const char *filename, int fileline)
283 {
284         mempool_t *chainaddress;
285
286         if (developer.integer && developer_memorydebug.integer)
287         {
288                 _Mem_CheckSentinelsGlobal(filename, fileline);
289                 // check if this pool is in the poolchain
290                 for (chainaddress = poolchain;chainaddress;chainaddress = chainaddress->next)
291                         if (chainaddress == pool)
292                                 break;
293                 if (!chainaddress)
294                         Sys_Error("Mem_EmptyPool: pool is already free (emptypool at %s:%i)", filename, fileline);
295         }
296         if (pool == NULL)
297                 Sys_Error("Mem_EmptyPool: pool == NULL (emptypool at %s:%i)", filename, fileline);
298         if (pool->sentinel1 != MEMHEADER_SENTINEL1)
299                 Sys_Error("Mem_EmptyPool: trashed pool sentinel 1 (allocpool at %s:%i, emptypool at %s:%i)", pool->filename, pool->fileline, filename, fileline);
300         if (pool->sentinel2 != MEMHEADER_SENTINEL1)
301                 Sys_Error("Mem_EmptyPool: trashed pool sentinel 2 (allocpool at %s:%i, emptypool at %s:%i)", pool->filename, pool->fileline, filename, fileline);
302
303         // free memory owned by the pool
304         while (pool->chain)
305                 _Mem_FreeBlock(pool->chain, filename, fileline);
306
307         // empty child pools, too
308         for(chainaddress = poolchain; chainaddress; chainaddress = chainaddress->next)
309                 if(chainaddress->parent == pool)
310                         _Mem_EmptyPool(chainaddress, filename, fileline);
311
312 }
313
314 void _Mem_CheckSentinels(void *data, const char *filename, int fileline)
315 {
316         memheader_t *mem;
317
318         if (data == NULL)
319                 Sys_Error("Mem_CheckSentinels: data == NULL (sentinel check at %s:%i)", filename, fileline);
320
321         mem = (memheader_t *)((unsigned char *) data - sizeof(memheader_t));
322         if (mem->sentinel1 != MEMHEADER_SENTINEL1)
323                 Sys_Error("Mem_CheckSentinels: trashed header sentinel 1 (block allocated at %s:%i, sentinel check at %s:%i)", mem->filename, mem->fileline, filename, fileline);
324         if (*((unsigned char *) mem + sizeof(memheader_t) + mem->size) != MEMHEADER_SENTINEL2)
325                 Sys_Error("Mem_CheckSentinels: trashed header sentinel 2 (block allocated at %s:%i, sentinel check at %s:%i)", mem->filename, mem->fileline, filename, fileline);
326 }
327
328 #if MEMCLUMPING
329 static void _Mem_CheckClumpSentinels(memclump_t *clump, const char *filename, int fileline)
330 {
331         // this isn't really very useful
332         if (clump->sentinel1 != MEMCLUMP_SENTINEL)
333                 Sys_Error("Mem_CheckClumpSentinels: trashed sentinel 1 (sentinel check at %s:%i)", filename, fileline);
334         if (clump->sentinel2 != MEMCLUMP_SENTINEL)
335                 Sys_Error("Mem_CheckClumpSentinels: trashed sentinel 2 (sentinel check at %s:%i)", filename, fileline);
336 }
337 #endif
338
339 void _Mem_CheckSentinelsGlobal(const char *filename, int fileline)
340 {
341         memheader_t *mem;
342 #if MEMCLUMPING
343         memclump_t *clump;
344 #endif
345         mempool_t *pool;
346         for (pool = poolchain;pool;pool = pool->next)
347         {
348                 if (pool->sentinel1 != MEMHEADER_SENTINEL1)
349                         Sys_Error("Mem_CheckSentinelsGlobal: trashed pool sentinel 1 (allocpool at %s:%i, sentinel check at %s:%i)", pool->filename, pool->fileline, filename, fileline);
350                 if (pool->sentinel2 != MEMHEADER_SENTINEL1)
351                         Sys_Error("Mem_CheckSentinelsGlobal: trashed pool sentinel 2 (allocpool at %s:%i, sentinel check at %s:%i)", pool->filename, pool->fileline, filename, fileline);
352         }
353         for (pool = poolchain;pool;pool = pool->next)
354                 for (mem = pool->chain;mem;mem = mem->next)
355                         _Mem_CheckSentinels((void *)((unsigned char *) mem + sizeof(memheader_t)), filename, fileline);
356 #if MEMCLUMPING
357         for (pool = poolchain;pool;pool = pool->next)
358                 for (clump = pool->clumpchain;clump;clump = clump->chain)
359                         _Mem_CheckClumpSentinels(clump, filename, fileline);
360 #endif
361 }
362
363 qboolean Mem_IsAllocated(mempool_t *pool, void *data)
364 {
365         memheader_t *header;
366         memheader_t *target;
367
368         if (pool)
369         {
370                 // search only one pool
371                 target = (memheader_t *)((unsigned char *) data - sizeof(memheader_t));
372                 for( header = pool->chain ; header ; header = header->next )
373                         if( header == target )
374                                 return true;
375         }
376         else
377         {
378                 // search all pools
379                 for (pool = poolchain;pool;pool = pool->next)
380                         if (Mem_IsAllocated(pool, data))
381                                 return true;
382         }
383         return false;
384 }
385
386 void Mem_ExpandableArray_NewArray(memexpandablearray_t *l, mempool_t *mempool, size_t recordsize, int numrecordsperarray)
387 {
388         memset(l, 0, sizeof(*l));
389         l->mempool = mempool;
390         l->recordsize = recordsize;
391         l->numrecordsperarray = numrecordsperarray;
392 }
393
394 void Mem_ExpandableArray_FreeArray(memexpandablearray_t *l)
395 {
396         size_t i;
397         if (l->maxarrays)
398         {
399                 for (i = 0;i != l->numarrays;i++)
400                         Mem_Free(l->arrays[i].data);
401                 Mem_Free(l->arrays);
402         }
403         memset(l, 0, sizeof(*l));
404 }
405
406 void *Mem_ExpandableArray_AllocRecord(memexpandablearray_t *l)
407 {
408         size_t i, j;
409         for (i = 0;;i++)
410         {
411                 if (i == l->numarrays)
412                 {
413                         if (l->numarrays == l->maxarrays)
414                         {
415                                 memexpandablearray_array_t *oldarrays = l->arrays;
416                                 l->maxarrays = max(l->maxarrays * 2, 128);
417                                 l->arrays = (memexpandablearray_array_t*) Mem_Alloc(l->mempool, l->maxarrays * sizeof(*l->arrays));
418                                 if (oldarrays)
419                                 {
420                                         memcpy(l->arrays, oldarrays, l->numarrays * sizeof(*l->arrays));
421                                         Mem_Free(oldarrays);
422                                 }
423                         }
424                         l->arrays[i].numflaggedrecords = 0;
425                         l->arrays[i].data = (unsigned char *) Mem_Alloc(l->mempool, (l->recordsize + 1) * l->numrecordsperarray);
426                         l->arrays[i].allocflags = l->arrays[i].data + l->recordsize * l->numrecordsperarray;
427                         l->numarrays++;
428                 }
429                 if (l->arrays[i].numflaggedrecords < l->numrecordsperarray)
430                 {
431                         for (j = 0;j < l->numrecordsperarray;j++)
432                         {
433                                 if (!l->arrays[i].allocflags[j])
434                                 {
435                                         l->arrays[i].allocflags[j] = true;
436                                         l->arrays[i].numflaggedrecords++;
437                                         memset(l->arrays[i].data + l->recordsize * j, 0, l->recordsize);
438                                         return (void *)(l->arrays[i].data + l->recordsize * j);
439                                 }
440                         }
441                 }
442         }
443 }
444
445 /*****************************************************************************
446  * IF YOU EDIT THIS:
447  * If this function was to change the size of the "expandable" array, you have
448  * to update r_shadow.c
449  * Just do a search for "range =", R_ShadowClearWorldLights would be the first
450  * function to look at. (And also seems like the only one?) You  might have to
451  * move the  call to Mem_ExpandableArray_IndexRange  back into for(...) loop's
452  * condition
453  */
454 void Mem_ExpandableArray_FreeRecord(memexpandablearray_t *l, void *record) // const!
455 {
456         size_t i, j;
457         unsigned char *p = (unsigned char *)record;
458         for (i = 0;i != l->numarrays;i++)
459         {
460                 if (p >= l->arrays[i].data && p < (l->arrays[i].data + l->recordsize * l->numrecordsperarray))
461                 {
462                         j = (p - l->arrays[i].data) / l->recordsize;
463                         if (p != l->arrays[i].data + j * l->recordsize)
464                                 Sys_Error("Mem_ExpandableArray_FreeRecord: no such record %p\n", p);
465                         if (!l->arrays[i].allocflags[j])
466                                 Sys_Error("Mem_ExpandableArray_FreeRecord: record %p is already free!\n", p);
467                         l->arrays[i].allocflags[j] = false;
468                         l->arrays[i].numflaggedrecords--;
469                         return;
470                 }
471         }
472 }
473
474 size_t Mem_ExpandableArray_IndexRange(const memexpandablearray_t *l)
475 {
476         size_t i, j, k, end = 0;
477         for (i = 0;i < l->numarrays;i++)
478         {
479                 for (j = 0, k = 0;k < l->arrays[i].numflaggedrecords;j++)
480                 {
481                         if (l->arrays[i].allocflags[j])
482                         {
483                                 end = l->numrecordsperarray * i + j + 1;
484                                 k++;
485                         }
486                 }
487         }
488         return end;
489 }
490
491 void *Mem_ExpandableArray_RecordAtIndex(const memexpandablearray_t *l, size_t index)
492 {
493         size_t i, j;
494         i = index / l->numrecordsperarray;
495         j = index % l->numrecordsperarray;
496         if (i >= l->numarrays || !l->arrays[i].allocflags[j])
497                 return NULL;
498         return (void *)(l->arrays[i].data + j * l->recordsize);
499 }
500
501
502 // used for temporary memory allocations around the engine, not for longterm
503 // storage, if anything in this pool stays allocated during gameplay, it is
504 // considered a leak
505 mempool_t *tempmempool;
506 // only for zone
507 mempool_t *zonemempool;
508
509 void Mem_PrintStats(void)
510 {
511         size_t count = 0, size = 0, realsize = 0;
512         mempool_t *pool;
513         memheader_t *mem;
514         Mem_CheckSentinelsGlobal();
515         for (pool = poolchain;pool;pool = pool->next)
516         {
517                 count++;
518                 size += pool->totalsize;
519                 realsize += pool->realsize;
520         }
521         Con_Printf("%lu memory pools, totalling %lu bytes (%.3fMB)\n", (unsigned long)count, (unsigned long)size, size / 1048576.0);
522         Con_Printf("total allocated size: %lu bytes (%.3fMB)\n", (unsigned long)realsize, realsize / 1048576.0);
523         for (pool = poolchain;pool;pool = pool->next)
524         {
525                 if ((pool->flags & POOLFLAG_TEMP) && pool->chain)
526                 {
527                         Con_Printf("Memory pool %p has sprung a leak totalling %lu bytes (%.3fMB)!  Listing contents...\n", pool, (unsigned long)pool->totalsize, pool->totalsize / 1048576.0);
528                         for (mem = pool->chain;mem;mem = mem->next)
529                                 Con_Printf("%10lu bytes allocated at %s:%i\n", (unsigned long)mem->size, mem->filename, mem->fileline);
530                 }
531         }
532 }
533
534 void Mem_PrintList(size_t minallocationsize)
535 {
536         mempool_t *pool;
537         memheader_t *mem;
538         Mem_CheckSentinelsGlobal();
539         Con_Print("memory pool list:\n"
540                    "size    name\n");
541         for (pool = poolchain;pool;pool = pool->next)
542         {
543                 Con_Printf("%10luk (%10luk actual) %s (%+li byte change) %s\n", (unsigned long) ((pool->totalsize + 1023) / 1024), (unsigned long)((pool->realsize + 1023) / 1024), pool->name, (long)pool->totalsize - pool->lastchecksize, (pool->flags & POOLFLAG_TEMP) ? "TEMP" : "");
544                 pool->lastchecksize = pool->totalsize;
545                 for (mem = pool->chain;mem;mem = mem->next)
546                         if (mem->size >= minallocationsize)
547                                 Con_Printf("%10lu bytes allocated at %s:%i\n", (unsigned long)mem->size, mem->filename, mem->fileline);
548         }
549 }
550
551 void MemList_f(void)
552 {
553         switch(Cmd_Argc())
554         {
555         case 1:
556                 Mem_PrintList(1<<30);
557                 Mem_PrintStats();
558                 break;
559         case 2:
560                 Mem_PrintList(atoi(Cmd_Argv(1)) * 1024);
561                 Mem_PrintStats();
562                 break;
563         default:
564                 Con_Print("MemList_f: unrecognized options\nusage: memlist [all]\n");
565                 break;
566         }
567 }
568
569 extern void R_TextureStats_Print(qboolean printeach, qboolean printpool, qboolean printtotal);
570 void MemStats_f(void)
571 {
572         Mem_CheckSentinelsGlobal();
573         R_TextureStats_Print(false, false, true);
574         GL_Mesh_ListVBOs(false);
575         Mem_PrintStats();
576 }
577
578
579 char* Mem_strdup (mempool_t *pool, const char* s)
580 {
581         char* p;
582         size_t sz = strlen (s) + 1;
583         if (s == NULL) return NULL;
584         p = (char*)Mem_Alloc (pool, sz);
585         strlcpy (p, s, sz);
586         return p;
587 }
588
589 /*
590 ========================
591 Memory_Init
592 ========================
593 */
594 void Memory_Init (void)
595 {
596         poolchain = NULL;
597         tempmempool = Mem_AllocPool("Temporary Memory", POOLFLAG_TEMP, NULL);
598         zonemempool = Mem_AllocPool("Zone", 0, NULL);
599 }
600
601 void Memory_Shutdown (void)
602 {
603 //      Mem_FreePool (&zonemempool);
604 //      Mem_FreePool (&tempmempool);
605 }
606
607 void Memory_Init_Commands (void)
608 {
609         Cmd_AddCommand ("memstats", MemStats_f, "prints memory system statistics");
610         Cmd_AddCommand ("memlist", MemList_f, "prints memory pool information (or if used as memlist 5 lists individual allocations of 5K or larger, 0 lists all allocations)");
611         Cvar_RegisterVariable (&developer_memory);
612         Cvar_RegisterVariable (&developer_memorydebug);
613 }
614