DarkPlaces
Game engine based on the Quake 1 engine by id Software, developed by LadyHavoc
 
zone.h
Go to the documentation of this file.
1/*
2Copyright (C) 1996-1997 Id Software, Inc.
3
4This program is free software; you can redistribute it and/or
5modify it under the terms of the GNU General Public License
6as published by the Free Software Foundation; either version 2
7of the License, or (at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13See the GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with this program; if not, write to the Free Software
17Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19*/
20
21#ifndef ZONE_H
22#define ZONE_H
23
24#include <stddef.h>
25#include <stdalign.h>
26#include "qtypes.h"
27#include "qdefs.h"
28#include "com_list.h"
29
30// Work around incomplete C11 support in Microsoft's stddef.h
31// This matches the Clang 14 header. Microsoft's double and long double are the same.
32#if defined(_MSC_VER)
33 typedef double max_align_t;
34#endif
35
36extern qbool mem_bigendian;
37
38// div0: heap overflow detection paranoia
39#define MEMPARANOIA 0
40
41#define POOLNAMESIZE 128
42// if set this pool will be printed in memlist reports
43#define POOLFLAG_TEMP 1
44
45typedef struct memheader_s
46{
47 // address returned by Chunk_Alloc (may be significantly before this header to satisify alignment)
49 // next and previous memheaders in chain belonging to pool
50 struct llist_s list;
51 // pool this memheader belongs to
52 struct mempool_s *pool;
53 // size of the memory after the header (excluding header and sentinel2)
54 size_t size;
55 // file name and line where Mem_Alloc was called
56 const char *filename;
58 // should always be equal to MEMHEADER_SENTINEL_FOR_ADDRESS()
59 unsigned int sentinel;
60 // immediately followed by data, which is followed by another copy of mem_sentinel[]
61}
63
64typedef struct mempool_s
65{
66 // should always be MEMPOOL_SENTINEL
67 unsigned int sentinel1;
68 // chain of individual memory allocations
69 struct llist_s chain;
70 // POOLFLAG_*
71 unsigned flags;
72 // total memory allocated in this pool (inside memheaders)
73 size_t totalsize;
74 // total memory allocated in this pool (actual malloc total)
75 size_t realsize;
76 // updated each time the pool is displayed by memlist, shows change from previous time (unless pool was freed)
78 // linked into global mempool list
79 struct mempool_s *next;
80 // parent object (used for nested memory pools)
81 struct mempool_s *parent;
82 // file name and line where Mem_AllocPool was called
83 const char *filename;
85 // name of the pool
87 // should always be MEMPOOL_SENTINEL
88 unsigned int sentinel2;
89}
91
92#define Mem_Alloc(pool,size) _Mem_Alloc(pool, NULL, size, alignof(max_align_t), __FILE__, __LINE__)
93#define Mem_AllocType(pool,type,size) (type *)_Mem_Alloc(pool, NULL, size, alignof(type), __FILE__, __LINE__)
94#define Mem_Realloc(pool,data,size) _Mem_Alloc(pool, data, size, alignof(max_align_t), __FILE__, __LINE__)
95#define Mem_ReallocType(pool,data,type,size) (type *)_Mem_Alloc(pool, data, size, alignof(type), __FILE__, __LINE__)
96#define Mem_Free(mem) _Mem_Free(mem, __FILE__, __LINE__)
97#define Mem_strdup(pool, s) _Mem_strdup(pool, s, __FILE__, __LINE__)
98#define Mem_CheckSentinels(data) _Mem_CheckSentinels(data, __FILE__, __LINE__)
99#if MEMPARANOIA
100#define Mem_CheckSentinelsGlobal() _Mem_CheckSentinelsGlobal(__FILE__, __LINE__)
101#else
102#define Mem_CheckSentinelsGlobal() if(developer_memorydebug.integer) { _Mem_CheckSentinelsGlobal(__FILE__, __LINE__); }
103#endif
104#define Mem_AllocPool(name, flags, parent) _Mem_AllocPool(name, flags, parent, __FILE__, __LINE__)
105#define Mem_FreePool(pool) _Mem_FreePool(pool, __FILE__, __LINE__)
106#define Mem_EmptyPool(pool) _Mem_EmptyPool(pool, __FILE__, __LINE__)
107
108void *_Mem_Alloc(mempool_t *pool, void *data, size_t size, size_t alignment, const char *filename, int fileline);
109void _Mem_Free(void *data, const char *filename, int fileline);
110mempool_t *_Mem_AllocPool(const char *name, unsigned flags, mempool_t *parent, const char *filename, int fileline);
111void _Mem_FreePool(mempool_t **pool, const char *filename, int fileline);
112void _Mem_EmptyPool(mempool_t *pool, const char *filename, int fileline);
113void _Mem_CheckSentinels(void *data, const char *filename, int fileline);
114void _Mem_CheckSentinelsGlobal(const char *filename, int fileline);
115// if pool is NULL this searches ALL pools for the allocation
116qbool Mem_IsAllocated(mempool_t *pool, const void *data);
117
118char *_Mem_strdup(mempool_t *pool, const char *s, const char *filename, int fileline);
119
121// not a macro so that it doesn't allow the size to be changed.
122static inline size_t Mem_Size(void *data)
123{
124 return ((memheader_t *)((unsigned char *)data - sizeof(memheader_t)))->size;
125}
126
127typedef struct memexpandablearray_array_s
128{
129 unsigned char *data;
130 unsigned char *allocflags;
132}
134
135typedef struct memexpandablearray_s
136{
140 size_t numarrays;
141 size_t maxarrays;
143}
145
146void Mem_ExpandableArray_NewArray(memexpandablearray_t *l, mempool_t *mempool, size_t recordsize, int numrecordsperarray);
152
153// used for temporary allocations
154extern mempool_t *tempmempool;
155
156void Memory_Init (void);
157void Memory_Shutdown (void);
158void Memory_Init_Commands (void);
159
160extern mempool_t *zonemempool;
161#define Z_Malloc(size) Mem_Alloc(zonemempool, size)
162#define Z_Realloc(data, size) Mem_Realloc(zonemempool, data, size)
163#define Z_strdup(s) Mem_strdup(zonemempool, s)
164#define Z_Free(data) Mem_Free(data)
165
166extern struct cvar_s developer_memory;
167extern struct cvar_s developer_memorydebug;
168extern struct cvar_s developer_memoryreportlargerthanmb;
169
170#endif
171
vector size
float flags
entity chain
GLsizeiptr const GLvoid * data
Definition glquake.h:639
const GLchar * name
Definition glquake.h:601
GLuint index
Definition glquake.h:629
#define DP_FUNC_PURE
Definition qdefs.h:15
bool qbool
Definition qtypes.h:9
unsigned char * data
Definition zone.h:129
unsigned char * allocflags
Definition zone.h:130
size_t numrecordsperarray
Definition zone.h:139
size_t recordsize
Definition zone.h:138
memexpandablearray_array_t * arrays
Definition zone.h:142
mempool_t * mempool
Definition zone.h:137
size_t size
Definition zone.h:54
struct mempool_s * pool
Definition zone.h:52
int fileline
Definition zone.h:57
const char * filename
Definition zone.h:56
unsigned int sentinel
Definition zone.h:59
void * baseaddress
Definition zone.h:48
unsigned int sentinel2
Definition zone.h:88
struct mempool_s * parent
Definition zone.h:81
unsigned flags
Definition zone.h:71
size_t lastchecksize
Definition zone.h:77
size_t realsize
Definition zone.h:75
unsigned int sentinel1
Definition zone.h:67
size_t totalsize
Definition zone.h:73
const char * filename
Definition zone.h:83
struct mempool_s * next
Definition zone.h:79
int fileline
Definition zone.h:84
void Mem_ExpandableArray_NewArray(memexpandablearray_t *l, mempool_t *mempool, size_t recordsize, int numrecordsperarray)
Definition zone.c:675
qbool Mem_IsAllocated(mempool_t *pool, const void *data)
Definition zone.c:652
void _Mem_CheckSentinels(void *data, const char *filename, int fileline)
Definition zone.c:599
void _Mem_FreePool(mempool_t **pool, const char *filename, int fileline)
Definition zone.c:530
struct cvar_s developer_memory
Definition zone.c:90
void _Mem_EmptyPool(mempool_t *pool, const char *filename, int fileline)
Definition zone.c:567
void * Mem_ExpandableArray_RecordAtIndex(const memexpandablearray_t *l, size_t index) DP_FUNC_PURE
Definition zone.c:780
char * _Mem_strdup(mempool_t *pool, const char *s, const char *filename, int fileline)
Definition zone.c:865
void Memory_Init_Commands(void)
Definition zone.c:907
void Mem_ExpandableArray_FreeRecord(memexpandablearray_t *l, void *record)
Definition zone.c:743
void * _Mem_Alloc(mempool_t *pool, void *data, size_t size, size_t alignment, const char *filename, int fileline)
Definition zone.c:369
void _Mem_Free(void *data, const char *filename, int fileline)
Definition zone.c:482
void * Mem_ExpandableArray_AllocRecord(memexpandablearray_t *l)
Definition zone.c:695
size_t Mem_ExpandableArray_IndexRange(const memexpandablearray_t *l) DP_FUNC_PURE
Definition zone.c:763
static size_t Mem_Size(void *data)
Returns the current size of an allocation.
Definition zone.h:122
void _Mem_CheckSentinelsGlobal(const char *filename, int fileline)
Definition zone.c:628
#define POOLNAMESIZE
Definition zone.h:41
struct cvar_s developer_memoryreportlargerthanmb
Definition zone.c:92
struct cvar_s developer_memorydebug
Definition zone.c:91
mempool_t * tempmempool
Definition zone.c:794
void Memory_Init(void)
Definition zone.c:882
mempool_t * _Mem_AllocPool(const char *name, unsigned flags, mempool_t *parent, const char *filename, int fileline)
Definition zone.c:500
qbool mem_bigendian
Definition zone.c:34
void Mem_ExpandableArray_FreeArray(memexpandablearray_t *l)
Definition zone.c:683
mempool_t * zonemempool
Definition zone.c:796
void Memory_Shutdown(void)
Definition zone.c:897