]> git.xonotic.org Git - xonotic/darkplaces.git/blob - zone.h
Make the Sys_Error() message more informative
[xonotic/darkplaces.git] / zone.h
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
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 extern qbool mem_bigendian;
31
32 // div0: heap overflow detection paranoia
33 #define MEMPARANOIA 0
34
35 #define POOLNAMESIZE 128
36 // if set this pool will be printed in memlist reports
37 #define POOLFLAG_TEMP 1
38
39 typedef struct memheader_s
40 {
41         // address returned by Chunk_Alloc (may be significantly before this header to satisify alignment)
42         void *baseaddress;
43         // next and previous memheaders in chain belonging to pool
44         struct llist_s list;
45         // pool this memheader belongs to
46         struct mempool_s *pool;
47         // size of the memory after the header (excluding header and sentinel2)
48         size_t size;
49         // file name and line where Mem_Alloc was called
50         const char *filename;
51         int fileline;
52         // should always be equal to MEMHEADER_SENTINEL_FOR_ADDRESS()
53         unsigned int sentinel;
54         // immediately followed by data, which is followed by another copy of mem_sentinel[]
55 }
56 memheader_t;
57
58 typedef struct mempool_s
59 {
60         // should always be MEMPOOL_SENTINEL
61         unsigned int sentinel1;
62         // chain of individual memory allocations
63         struct llist_s chain;
64         // POOLFLAG_*
65         unsigned flags;
66         // total memory allocated in this pool (inside memheaders)
67         size_t totalsize;
68         // total memory allocated in this pool (actual malloc total)
69         size_t realsize;
70         // updated each time the pool is displayed by memlist, shows change from previous time (unless pool was freed)
71         size_t lastchecksize;
72         // linked into global mempool list
73         struct mempool_s *next;
74         // parent object (used for nested memory pools)
75         struct mempool_s *parent;
76         // file name and line where Mem_AllocPool was called
77         const char *filename;
78         int fileline;
79         // name of the pool
80         char name[POOLNAMESIZE];
81         // should always be MEMPOOL_SENTINEL
82         unsigned int sentinel2;
83 }
84 mempool_t;
85
86 #define Mem_Alloc(pool,size) _Mem_Alloc(pool, NULL, size, alignof(max_align_t), __FILE__, __LINE__)
87 #define Mem_AllocType(pool,type,size) (type *)_Mem_Alloc(pool, NULL, size, alignof(type), __FILE__, __LINE__)
88 #define Mem_Realloc(pool,data,size) _Mem_Alloc(pool, data, size, alignof(max_align_t), __FILE__, __LINE__)
89 #define Mem_ReallocType(pool,data,type,size) (type *)_Mem_Alloc(pool, data, size, alignof(type), __FILE__, __LINE__)
90 #define Mem_Free(mem) _Mem_Free(mem, __FILE__, __LINE__)
91 #define Mem_strdup(pool, s) _Mem_strdup(pool, s, __FILE__, __LINE__)
92 #define Mem_CheckSentinels(data) _Mem_CheckSentinels(data, __FILE__, __LINE__)
93 #if MEMPARANOIA
94 #define Mem_CheckSentinelsGlobal()  _Mem_CheckSentinelsGlobal(__FILE__, __LINE__)
95 #else
96 #define Mem_CheckSentinelsGlobal() if(developer_memorydebug.integer) { _Mem_CheckSentinelsGlobal(__FILE__, __LINE__); }
97 #endif
98 #define Mem_AllocPool(name, flags, parent) _Mem_AllocPool(name, flags, parent, __FILE__, __LINE__)
99 #define Mem_FreePool(pool) _Mem_FreePool(pool, __FILE__, __LINE__)
100 #define Mem_EmptyPool(pool) _Mem_EmptyPool(pool, __FILE__, __LINE__)
101
102 void *_Mem_Alloc(mempool_t *pool, void *data, size_t size, size_t alignment, const char *filename, int fileline);
103 void _Mem_Free(void *data, const char *filename, int fileline);
104 mempool_t *_Mem_AllocPool(const char *name, unsigned flags, mempool_t *parent, const char *filename, int fileline);
105 void _Mem_FreePool(mempool_t **pool, const char *filename, int fileline);
106 void _Mem_EmptyPool(mempool_t *pool, const char *filename, int fileline);
107 void _Mem_CheckSentinels(void *data, const char *filename, int fileline);
108 void _Mem_CheckSentinelsGlobal(const char *filename, int fileline);
109 // if pool is NULL this searches ALL pools for the allocation
110 qbool Mem_IsAllocated(mempool_t *pool, const void *data);
111
112 char *_Mem_strdup(mempool_t *pool, const char *s, const char *filename, int fileline);
113
114 typedef struct memexpandablearray_array_s
115 {
116         unsigned char *data;
117         unsigned char *allocflags;
118         size_t numflaggedrecords;
119 }
120 memexpandablearray_array_t;
121
122 typedef struct memexpandablearray_s
123 {
124         mempool_t *mempool;
125         size_t recordsize;
126         size_t numrecordsperarray;
127         size_t numarrays;
128         size_t maxarrays;
129         memexpandablearray_array_t *arrays;
130 }
131 memexpandablearray_t;
132
133 void Mem_ExpandableArray_NewArray(memexpandablearray_t *l, mempool_t *mempool, size_t recordsize, int numrecordsperarray);
134 void Mem_ExpandableArray_FreeArray(memexpandablearray_t *l);
135 void *Mem_ExpandableArray_AllocRecord(memexpandablearray_t *l);
136 void Mem_ExpandableArray_FreeRecord(memexpandablearray_t *l, void *record);
137 size_t Mem_ExpandableArray_IndexRange(const memexpandablearray_t *l) DP_FUNC_PURE;
138 void *Mem_ExpandableArray_RecordAtIndex(const memexpandablearray_t *l, size_t index) DP_FUNC_PURE;
139
140 // used for temporary allocations
141 extern mempool_t *tempmempool;
142
143 void Memory_Init (void);
144 void Memory_Shutdown (void);
145 void Memory_Init_Commands (void);
146
147 extern mempool_t *zonemempool;
148 #define Z_Malloc(size) Mem_Alloc(zonemempool, size)
149 #define Z_Realloc(data, size) Mem_Realloc(zonemempool, data, size)
150 #define Z_strdup(s) Mem_strdup(zonemempool, s)
151 #define Z_Free(data) Mem_Free(data)
152
153 extern struct cvar_s developer_memory;
154 extern struct cvar_s developer_memorydebug;
155 extern struct cvar_s developer_memoryreportlargerthanmb;
156
157 #endif
158