Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics.
[simgrid.git] / src / xbt / mmalloc / mmprivate.h
1 /* Declarations for `mmalloc' and friends. */
2
3 /* Copyright (c) 2010-2022. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 /* Copyright 1990, 1991, 1992 Free Software Foundation
9
10    Written May 1989 by Mike Haertel.
11    Heavily modified Mar 1992 by Fred Fish. (fnf@cygnus.com) */
12
13 #ifndef XBT_MMPRIVATE_H
14 #define XBT_MMPRIVATE_H 1
15
16 #include "swag.h"
17 #include "src/internal_config.h"
18 #include "xbt/mmalloc.h"
19
20 #include <limits.h>
21 #include <stdint.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24
25 // This macro is veery similar to xbt_assert, but with no dependency on XBT
26 #define mmalloc_assert(cond, ...)                                                                                      \
27   do {                                                                                                                 \
28     if (!(cond)) {                                                                                                     \
29       fprintf(stderr, __VA_ARGS__);                                                                                    \
30       abort();                                                                                                         \
31     }                                                                                                                  \
32   } while (0)
33
34 XBT_PUBLIC_DATA int mmalloc_pagesize;
35 XBT_PRIVATE xbt_mheap_t mmalloc_preinit(void);
36
37 #define MMALLOC_MAGIC    "mmalloc"       /* Mapped file magic number */
38 #define MMALLOC_MAGIC_SIZE  8       /* Size of magic number buf */
39 #define MMALLOC_VERSION    2       /* Current mmalloc version */
40
41 /* The allocator divides the heap into blocks of fixed size; large
42    requests receive one or more whole blocks, and small requests
43    receive a fragment of a block.  Fragment sizes are powers of two,
44    and all fragments of a block are the same size.  When all the
45    fragments in a block have been freed, the block itself is freed.
46
47    FIXME: we are not targeting 16bits machines anymore; update values */
48
49 #define INT_BIT    (CHAR_BIT * sizeof(int))
50 #define BLOCKLOG  (INT_BIT > 16 ? 12 : 9)
51 #define BLOCKSIZE  ((unsigned int) 1 << BLOCKLOG)
52 #define BLOCKIFY(SIZE)  (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
53
54 /* We keep fragment-specific meta-data for introspection purposes, and these
55  * information are kept in fixed length arrays. Here is the computation of
56  * that size.
57  *
58  * Never make SMALLEST_POSSIBLE_MALLOC too small because we need to enlist
59  * the free fragments.
60  *
61  * FIXME: what's the correct size, actually? The used one is a guess.
62  */
63
64 #define SMALLEST_POSSIBLE_MALLOC (32 * sizeof(void*))
65 #define MAX_FRAGMENT_PER_BLOCK (BLOCKSIZE / SMALLEST_POSSIBLE_MALLOC)
66
67 /* The difference between two pointers is a signed int.  On machines where
68    the data addresses have the high bit set, we need to ensure that the
69    difference becomes an unsigned int when we are using the address as an
70    integral value.  In addition, when using with the '%' operator, the
71    sign of the result is machine dependent for negative values, so force
72    it to be treated as an unsigned int. */
73
74 #define ADDR2UINT(addr)  ((uintptr_t) (addr))
75 #define RESIDUAL(addr,bsize) ((uintptr_t) (ADDR2UINT (addr) % (bsize)))
76
77 /* Determine the amount of memory spanned by the initial heap table
78    (not an absolute limit).  */
79
80 #define HEAP    (INT_BIT > 16 ? 4194304 : 65536)
81
82 /* Number of contiguous free blocks allowed to build up at the end of
83    memory before they will be returned to the system.
84    FIXME: this is not used anymore: we never return memory to the system. */
85 #define FINAL_FREE_BLOCKS  8
86
87 /* Where to start searching the free list when looking for new memory.
88    The two possible values are 0 and heapindex.  Starting at 0 seems
89    to reduce total memory usage, while starting at heapindex seems to
90    run faster.  */
91
92 #define MALLOC_SEARCH_START  mdp -> heapindex
93
94 /* Address to block number and vice versa.  */
95
96 #define BLOCK(A) (((char*) (A) - (char*) mdp -> heapbase) / BLOCKSIZE + 1)
97
98 #define ADDRESS(B) ((void*) (((ADDR2UINT(B)) - 1) * BLOCKSIZE + (char*) mdp -> heapbase))
99
100 SG_BEGIN_DECL
101
102 /* Statistics available to the user. */
103 struct mstats
104 {
105   size_t bytes_total;    /* Total size of the heap. */
106   size_t chunks_used;    /* Chunks allocated by the user. */
107   size_t bytes_used;    /* Byte total of user-allocated chunks. */
108   size_t chunks_free;    /* Chunks in the free list. */
109   size_t bytes_free;    /* Byte total of chunks in the free list. */
110 };
111
112 #define MMALLOC_TYPE_HEAPINFO (-2)
113 #define MMALLOC_TYPE_FREE (-1)
114 #define MMALLOC_TYPE_UNFRAGMENTED 0
115 /* >0 values are fragmented blocks */
116
117 /* Data structure giving per-block information.
118  *
119  * There is one such structure in the mdp->heapinfo array per block used in that heap,
120  *    the array index is the block number.
121  *
122  * There is several types of blocks in memory:
123  *  - full busy blocks: used when we are asked to malloc a block which size is > BLOCKSIZE/2
124  *    In this situation, the full block is given to the malloc.
125  *
126  *  - fragmented busy blocks: when asked for smaller amount of memory.
127  *    Fragment sizes are only power of 2. When looking for such a free fragment,
128  *    we get one from mdp->fraghead (that contains a linked list of blocks fragmented at that
129  *    size and containing a free fragment), or we get a fresh block that we fragment.
130  *
131  *  - free blocks are grouped by clusters, that are chained together.
132  *    When looking for free blocks, we traverse the mdp->heapinfo looking
133  *    for a cluster of free blocks that would be large enough.
134  *
135  *    The size of the cluster is only to be trusted in the first block of the cluster, not in the middle blocks.
136  *
137  * The type field is consistently updated for every blocks, even within clusters of blocks.
138  * You can crawl the array and rely on that value.
139  *
140  */
141 typedef struct {
142   s_xbt_swag_hookup_t freehook; /* to register this block as having empty frags when needed */
143   int type; /*  0: busy large block
144                 >0: busy fragmented (fragments of size 2^type bytes)
145                 <0: free block */
146
147   union {
148     /* Heap information for a busy block.  */
149     struct {
150       size_t nfree;               /* Free fragments in a fragmented block.  */
151       ssize_t frag_size[MAX_FRAGMENT_PER_BLOCK];
152       int ignore[MAX_FRAGMENT_PER_BLOCK];
153     } busy_frag;
154     struct {
155       size_t size; /* Size (in blocks) of a large cluster.  */
156       size_t busy_size; /* Actually used space, in bytes */
157       int ignore;
158     } busy_block;
159     /* Heap information for a free block (that may be the first of a free cluster).  */
160     struct {
161       size_t size;                /* Size (in blocks) of a free cluster.  */
162       size_t next;                /* Index of next free cluster.  */
163       size_t prev;                /* Index of previous free cluster.  */
164     } free_block;
165   };
166 } malloc_info;
167
168 /** @brief Descriptor of a mmalloc area
169  *
170  * Internal structure that defines the format of the malloc-descriptor.
171  * This gets written to the base address of the region that mmalloc is
172  * managing, and thus also becomes the file header for the mapped file,
173  * if such a file exists.
174  * */
175 struct mdesc {
176   /** @brief Chained lists of mdescs */
177   struct mdesc *next_mdesc;
178
179   /** @brief The "magic number" for an mmalloc file. */
180   char magic[MMALLOC_MAGIC_SIZE];
181
182   /** @brief The size in bytes of this structure
183    *
184    * Used as a sanity check when reusing a previously created mapped file.
185    * */
186   unsigned int headersize;
187
188   /** @brief Version number of the mmalloc package that created this file. */
189   unsigned char version;
190
191   unsigned int options;
192
193   /** @brief Some flag bits to keep track of various internal things. */
194   unsigned int flags;
195
196   /** @brief Number of info entries.  */
197   size_t heapsize;
198
199   /** @brief Pointer to first block of the heap (base of the first block).  */
200   void *heapbase;
201
202   /** @brief Current search index for the heap table.
203    *
204    *  Search index in the info table.
205    */
206   size_t heapindex;
207
208   /** @brief Limit of valid info table indices.  */
209   size_t heaplimit;
210
211   /** @brief Block information table.
212    *
213    * Table indexed by block number giving per-block information.
214    */
215   malloc_info *heapinfo;
216
217   /* @brief List of all blocks containing free fragments of a given size.
218    *
219    * The array index is the log2 of requested size.
220    * Actually only the sizes 8->11 seem to be used, but who cares? */
221   s_xbt_swag_t fraghead[BLOCKLOG];
222
223   /* @brief Base address of the memory region for this malloc heap
224    *
225    * This is the location where the bookkeeping data for mmap and
226    * for malloc begins.
227    */
228   void *base;
229
230   /** @brief End of memory in use
231    *
232    *  Some memory might be already mapped by the OS but not used
233    *  by the heap.
234    * */
235   void *breakval;
236
237   /** @brief End of the current memory region for this malloc heap.
238    *
239    *  This is the first location past the end of mapped memory.
240    *
241    *  Compared to breakval, this value is rounded to the next memory page.
242    */
243   void *top;
244
245   /* @brief Instrumentation */
246   struct mstats heapstats;
247 };
248
249 /* Bits to look at in the malloc descriptor flags word */
250
251 #define MMALLOC_DEVZERO    (1 << 0)        /* Have mapped to /dev/zero */
252 #define MMALLOC_INITIALIZED (1 << 1)      /* Initialized mmalloc */
253
254 /* A default malloc descriptor for the single sbrk() managed region. */
255
256 XBT_PUBLIC_DATA struct mdesc* __mmalloc_default_mdp;
257
258 XBT_PUBLIC void* mmorecore(struct mdesc* mdp, ssize_t size);
259
260 XBT_PRIVATE size_t mmalloc_get_bytes_used_remote(size_t heaplimit, const malloc_info* heapinfo);
261
262 /* We call dlsym during mmalloc initialization, but dlsym uses malloc.
263  * So during mmalloc initialization, any call to malloc is diverted to a private static buffer.
264  */
265 extern uint64_t* mmalloc_preinit_buffer;
266 #ifdef __FreeBSD__ /* FreeBSD require more memory, other might */
267 #define mmalloc_preinit_buffer_size 256
268 #else /* Valid on: Linux */
269 #define mmalloc_preinit_buffer_size 32
270 #endif
271
272 SG_END_DECL
273
274 #endif