Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ccc667dc8f42763af4e9fbdcda1ecb47f17d27b8
[simgrid.git] / src / xbt / mmalloc / mmprivate.h
1 /* Declarations for `mmalloc' and friends.
2    Copyright 1990, 1991, 1992 Free Software Foundation
3
4    Written May 1989 by Mike Haertel.
5    Heavily modified Mar 1992 by Fred Fish. (fnf@cygnus.com) */
6
7 /* Copyright (c) 2010. The SimGrid Team.
8  * All rights reserved.                                                     */
9
10 /* This program is free software; you can redistribute it and/or modify it
11  * under the terms of the license (GNU LGPL) which comes with this package. */
12
13 #ifndef __MMPRIVATE_H
14 #define __MMPRIVATE_H 1
15
16 #include "portable.h"
17 #include "xbt/xbt_os_thread.h"
18 #include "xbt/mmalloc.h"
19 #include "xbt/ex.h"
20 #include <semaphore.h>
21 #include <stdint.h>
22
23 #ifdef HAVE_LIMITS_H
24 #  include <limits.h>
25 #else
26 #  ifndef CHAR_BIT
27 #    define CHAR_BIT 8
28 #  endif
29 #endif
30
31 #define MMALLOC_MAGIC    "mmalloc"       /* Mapped file magic number */
32 #define MMALLOC_MAGIC_SIZE  8       /* Size of magic number buf */
33 #define MMALLOC_VERSION    2       /* Current mmalloc version */
34
35 /* The allocator divides the heap into blocks of fixed size; large
36    requests receive one or more whole blocks, and small requests
37    receive a fragment of a block.  Fragment sizes are powers of two,
38    and all fragments of a block are the same size.  When all the
39    fragments in a block have been freed, the block itself is freed.
40
41    FIXME: we are not targeting 16bits machines anymore; update values */
42
43 #define INT_BIT    (CHAR_BIT * sizeof(int))
44 #define BLOCKLOG  (INT_BIT > 16 ? 12 : 9)
45 #define BLOCKSIZE  ((unsigned int) 1 << BLOCKLOG)
46 #define BLOCKIFY(SIZE)  (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
47
48 /* We keep fragment-specific meta-data for introspection purposes, and these
49  * information are kept in fixed lenght arrays. Here is the computation of
50  * that size.
51  *
52  * Never make SMALLEST_POSSIBLE_MALLOC smaller than sizeof(list) because we
53  * need to enlist the free fragments.
54  */
55
56 //#define SMALLEST_POSSIBLE_MALLOC (sizeof(struct list))
57 #define SMALLEST_POSSIBLE_MALLOC (16*sizeof(struct list))
58 #define MAX_FRAGMENT_PER_BLOCK (BLOCKSIZE / SMALLEST_POSSIBLE_MALLOC)
59
60 /* The difference between two pointers is a signed int.  On machines where
61    the data addresses have the high bit set, we need to ensure that the
62    difference becomes an unsigned int when we are using the address as an
63    integral value.  In addition, when using with the '%' operator, the
64    sign of the result is machine dependent for negative values, so force
65    it to be treated as an unsigned int. */
66
67 #define ADDR2UINT(addr)  ((uintptr_t) ((char*) (addr) - (char*) NULL))
68 #define RESIDUAL(addr,bsize) ((uintptr_t) (ADDR2UINT (addr) % (bsize)))
69
70 /* Determine the amount of memory spanned by the initial heap table
71    (not an absolute limit).  */
72
73 #define HEAP    (INT_BIT > 16 ? 4194304 : 65536)
74
75 /* Number of contiguous free blocks allowed to build up at the end of
76    memory before they will be returned to the system.
77    FIXME: this is not used anymore: we never return memory to the system. */
78 #define FINAL_FREE_BLOCKS  8
79
80 /* Where to start searching the free list when looking for new memory.
81    The two possible values are 0 and heapindex.  Starting at 0 seems
82    to reduce total memory usage, while starting at heapindex seems to
83    run faster.  */
84
85 #define MALLOC_SEARCH_START  mdp -> heapindex
86
87 /* Address to block number and vice versa.  */
88
89 #define BLOCK(A) (((char*) (A) - (char*) mdp -> heapbase) / BLOCKSIZE + 1)
90
91 #define ADDRESS(B) ((void*) (((ADDR2UINT(B)) - 1) * BLOCKSIZE + (char*) mdp -> heapbase))
92
93 /* Doubly linked lists of free fragments.  */
94 struct list {
95   struct list *next;
96   struct list *prev;
97 };
98
99 /* Statistics available to the user. */
100 struct mstats
101 {
102   size_t bytes_total;    /* Total size of the heap. */
103   size_t chunks_used;    /* Chunks allocated by the user. */
104   size_t bytes_used;    /* Byte total of user-allocated chunks. */
105   size_t chunks_free;    /* Chunks in the free list. */
106   size_t bytes_free;    /* Byte total of chunks in the free list. */
107 };
108
109 /* Data structure giving per-block information.
110  *
111  * There is one such structure in the mdp->heapinfo array per block used in that heap,
112  *    the array index is the block number.
113  *
114  * There is several types of blocks in memory:
115  *  - full busy blocks: used when we are asked to malloc a block which size is > BLOCKSIZE/2
116  *    In this situation, the full block is given to the malloc.
117  *
118  *  - fragmented busy blocks: when asked for smaller amount of memory.
119  *    Fragment sizes are only power of 2. When looking for such a free fragment,
120  *    we get one from mdp->fraghead (that contains a linked list of blocks fragmented at that
121  *    size and containing a free fragment), or we get a fresh block that we fragment.
122  *
123  *  - free blocks are grouped by clusters, that are chained together.
124  *    When looking for free blocks, we traverse the mdp->heapinfo looking
125  *    for a cluster of free blocks that would be large enough.
126  *
127  *    The size of the cluster is only to be trusted in the first block of the cluster, not in the middle blocks.
128  *
129  * The type field is consistently updated for every blocks, even within clusters of blocks.
130  * You can crawl the array and rely on that value.
131  *
132  * TODO:
133  *  - make room to store the backtrace of where the blocks and fragment were malloced, too.
134  */
135 typedef struct {
136   int type; /*  0: busy large block
137                 >0: busy fragmented (fragments of size 2^type bytes)
138                 <0: free block */
139   union {
140     /* Heap information for a busy block.  */
141     struct {
142       size_t nfree;           /* Free fragments in a fragmented block.  */
143       size_t first;           /* First free fragment of the block.  */
144       unsigned short frag_size[MAX_FRAGMENT_PER_BLOCK];
145       void *bt[MAX_FRAGMENT_PER_BLOCK][XBT_BACKTRACE_SIZE]; /* Where it was malloced (or realloced lastly) */
146     } busy_frag;
147     struct {
148       size_t size; /* Size (in blocks) of a large cluster.  */
149       size_t busy_size; /* Actually used space, in bytes */
150       void *bt[XBT_BACKTRACE_SIZE]; /* Where it was malloced (or realloced lastly) */
151       int bt_size;
152     } busy_block;
153     /* Heap information for a free block (that may be the first of a free cluster).  */
154     struct {
155       size_t size;                /* Size (in blocks) of a free cluster.  */
156       size_t next;                /* Index of next free cluster.  */
157       size_t prev;                /* Index of previous free cluster.  */
158     } free_block;
159   };
160 } malloc_info;
161
162 /* Internal structure that defines the format of the malloc-descriptor.
163    This gets written to the base address of the region that mmalloc is
164    managing, and thus also becomes the file header for the mapped file,
165    if such a file exists. */
166
167 struct mdesc {
168
169   /* Semaphore locking the access to the heap */
170   sem_t sem;
171
172   /* Number of processes that attached the heap */
173   unsigned int refcount;
174
175   /* Chained lists of mdescs */
176   struct mdesc *next_mdesc;
177
178   /* The "magic number" for an mmalloc file. */
179   char magic[MMALLOC_MAGIC_SIZE];
180
181   /* The size in bytes of this structure, used as a sanity check when reusing
182      a previously created mapped file. */
183   unsigned int headersize;
184
185   /* The version number of the mmalloc package that created this file. */
186   unsigned char version;
187
188   /* Some flag bits to keep track of various internal things. */
189   unsigned int flags;
190
191   /* Number of info entries.  */
192   size_t heapsize;
193
194   /* Pointer to first block of the heap (base of the first block).  */
195   void *heapbase;
196
197   /* Current search index for the heap table.  */
198   /* Search index in the info table.  */
199   size_t heapindex;
200
201   /* Limit of valid info table indices.  */
202   size_t heaplimit;
203
204   /* Block information table.
205      Allocated with malign/mfree (not mmalloc/mfree).  */
206   /* Table indexed by block number giving per-block information.  */
207   malloc_info *heapinfo;
208
209   /* List of all blocks containing free fragments of this size. The array indice is the log2 of requested size */
210   struct list fraghead[BLOCKLOG];
211
212   /* The base address of the memory region for this malloc heap.  This
213      is the location where the bookkeeping data for mmap and for malloc
214      begins. */
215
216   void *base;
217
218   /* The current location in the memory region for this malloc heap which
219      represents the end of memory in use. */
220
221   void *breakval;
222
223   /* The end of the current memory region for this malloc heap.  This is
224      the first location past the end of mapped memory. */
225
226   void *top;
227
228   /* Open file descriptor for the file to which this malloc heap is mapped.
229      This will always be a valid file descriptor, since /dev/zero is used
230      by default if no open file is supplied by the client.  Also note that
231      it may change each time the region is mapped and unmapped. */
232
233   int fd;
234
235   /* Instrumentation.  */
236
237   struct mstats heapstats;
238
239 };
240
241 int mmalloc_compare_mdesc(struct mdesc *mdp1, struct mdesc *mdp2);
242
243 void mmalloc_display_info(void *h);
244
245 //void *get_end_addr_heap(void *s_heap);
246
247 /* Bits to look at in the malloc descriptor flags word */
248
249 #define MMALLOC_DEVZERO    (1 << 0)        /* Have mapped to /dev/zero */
250 #define MMALLOC_ANONYMOUS (1 << 1)      /* Use anonymous mapping */
251 #define MMALLOC_INITIALIZED  (1 << 2)        /* Initialized mmalloc */
252
253 /* A default malloc descriptor for the single sbrk() managed region. */
254
255 extern struct mdesc *__mmalloc_default_mdp;
256
257 /* Remap a mmalloc region that was previously mapped. */
258
259 extern void *__mmalloc_remap_core(xbt_mheap_t mdp);
260
261 /*  Get core for the memory region specified by MDP, using SIZE as the
262     amount to either add to or subtract from the existing region.  Works
263     like sbrk(), but using mmap(). */
264 extern void *mmorecore(struct mdesc *mdp, int size);
265
266 /* Thread-safety (if the sem is already created)
267  *
268  * This is mandatory in the case where the user runs a parallel simulation
269  * in a model-checking enabled tree. Without this protection, our malloc
270  * implementation will not like multi-threading AT ALL.
271  */
272 #define LOCK(mdp) sem_wait(&mdp->sem)
273 #define UNLOCK(mdp) sem_post(&mdp->sem)
274
275 #endif                          /* __MMPRIVATE_H */