Change the representation of the MVar blocked queue
[ghc-hetmet.git] / includes / rts / storage / Block.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-1999
4  *
5  * Block structure for the storage manager
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #ifndef RTS_STORAGE_BLOCK_H
10 #define RTS_STORAGE_BLOCK_H
11
12 /* The actual block and megablock-size constants are defined in
13  * includes/Constants.h, all constants here are derived from these.
14  */
15
16 /* Block related constants (BLOCK_SHIFT is defined in Constants.h) */
17
18 #define BLOCK_SIZE   (1<<BLOCK_SHIFT)
19 #define BLOCK_SIZE_W (BLOCK_SIZE/sizeof(W_))
20 #define BLOCK_MASK   (BLOCK_SIZE-1)
21
22 #define BLOCK_ROUND_UP(p)   ((void *) (((W_)(p)+BLOCK_SIZE-1) & ~BLOCK_MASK))
23 #define BLOCK_ROUND_DOWN(p) ((void *) ((W_)(p) & ~BLOCK_MASK))
24
25 /* Megablock related constants (MBLOCK_SHIFT is defined in Constants.h) */
26
27 #define MBLOCK_SIZE    (1<<MBLOCK_SHIFT)
28 #define MBLOCK_SIZE_W  (MBLOCK_SIZE/sizeof(W_))
29 #define MBLOCK_MASK    (MBLOCK_SIZE-1)
30
31 #define MBLOCK_ROUND_UP(p)   ((void *)(((W_)(p)+MBLOCK_SIZE-1) & ~MBLOCK_MASK))
32 #define MBLOCK_ROUND_DOWN(p) ((void *)((W_)(p) & ~MBLOCK_MASK ))
33
34 /* The largest size an object can be before we give it a block of its
35  * own and treat it as an immovable object during GC, expressed as a
36  * fraction of BLOCK_SIZE.
37  */
38 #define LARGE_OBJECT_THRESHOLD ((nat)(BLOCK_SIZE * 8 / 10))
39
40 /* -----------------------------------------------------------------------------
41  * Block descriptor.  This structure *must* be the right length, so we
42  * can do pointer arithmetic on pointers to it.
43  */
44
45 /* The block descriptor is 64 bytes on a 64-bit machine, and 32-bytes
46  * on a 32-bit machine.
47  */
48
49 #ifndef CMINUSMINUS
50 typedef struct bdescr_ {
51     StgPtr start;              /* start addr of memory */
52     StgPtr free;               /* first free byte of memory */
53     struct bdescr_ *link;      /* used for chaining blocks together */
54     union {
55         struct bdescr_ *back;  /* used (occasionally) for doubly-linked lists*/
56         StgWord *bitmap;
57         StgPtr  scan;           /* scan pointer for copying GC */
58     } u;
59
60     struct generation_ *gen;   /* generation */
61     struct generation_ *dest;  /* destination gen */
62
63     StgWord32 blocks;           /* no. of blocks (if grp head, 0 otherwise) */
64
65     StgWord16 gen_no;
66     StgWord16 flags;            /* block flags, see below */
67 #if SIZEOF_VOID_P == 8
68     StgWord32 _padding[2];
69 #else
70     StgWord32 _padding[0];
71 #endif
72 } bdescr;
73 #endif
74
75 #if SIZEOF_VOID_P == 8
76 #define BDESCR_SIZE  0x40
77 #define BDESCR_MASK  0x3f
78 #define BDESCR_SHIFT 6
79 #else
80 #define BDESCR_SIZE  0x20
81 #define BDESCR_MASK  0x1f
82 #define BDESCR_SHIFT 5
83 #endif
84
85 /* Block contains objects evacuated during this GC */
86 #define BF_EVACUATED 1
87 /* Block is a large object */
88 #define BF_LARGE     2
89 /* Block is pinned */
90 #define BF_PINNED    4
91 /* Block is to be marked, not copied */
92 #define BF_MARKED    8
93 /* Block is free, and on the free list  (TODO: is this used?) */
94 #define BF_FREE      16
95 /* Block is executable */
96 #define BF_EXEC      32
97 /* Block contains only a small amount of live data */
98 #define BF_FRAGMENTED 64
99 /* we know about this block (for finding leaks) */
100 #define BF_KNOWN     128
101
102 /* Finding the block descriptor for a given block -------------------------- */
103
104 #ifdef CMINUSMINUS
105
106 #define Bdescr(p) \
107     ((((p) &  MBLOCK_MASK & ~BLOCK_MASK) >> (BLOCK_SHIFT-BDESCR_SHIFT)) \
108      | ((p) & ~MBLOCK_MASK))
109
110 #else
111
112 EXTERN_INLINE bdescr *Bdescr(StgPtr p);
113 EXTERN_INLINE bdescr *Bdescr(StgPtr p)
114 {
115   return (bdescr *)
116     ((((W_)p &  MBLOCK_MASK & ~BLOCK_MASK) >> (BLOCK_SHIFT-BDESCR_SHIFT)) 
117      | ((W_)p & ~MBLOCK_MASK)
118      );
119 }
120
121 #endif
122
123 /* Useful Macros ------------------------------------------------------------ */
124
125 /* Offset of first real data block in a megablock */
126
127 #define FIRST_BLOCK_OFF \
128    ((W_)BLOCK_ROUND_UP(BDESCR_SIZE * (MBLOCK_SIZE / BLOCK_SIZE)))
129
130 /* First data block in a given megablock */
131
132 #define FIRST_BLOCK(m) ((void *)(FIRST_BLOCK_OFF + (W_)(m)))
133    
134 /* Last data block in a given megablock */
135
136 #define LAST_BLOCK(m)  ((void *)(MBLOCK_SIZE-BLOCK_SIZE + (W_)(m)))
137
138 /* First real block descriptor in a megablock */
139
140 #define FIRST_BDESCR(m) \
141    ((bdescr *)((FIRST_BLOCK_OFF>>(BLOCK_SHIFT-BDESCR_SHIFT)) + (W_)(m)))
142
143 /* Last real block descriptor in a megablock */
144
145 #define LAST_BDESCR(m) \
146   ((bdescr *)(((MBLOCK_SIZE-BLOCK_SIZE)>>(BLOCK_SHIFT-BDESCR_SHIFT)) + (W_)(m)))
147
148 /* Number of usable blocks in a megablock */
149
150 #define BLOCKS_PER_MBLOCK ((MBLOCK_SIZE - FIRST_BLOCK_OFF) / BLOCK_SIZE)
151
152 /* How many blocks in this megablock group */
153
154 #define MBLOCK_GROUP_BLOCKS(n) \
155    (BLOCKS_PER_MBLOCK + (n-1) * (MBLOCK_SIZE / BLOCK_SIZE))
156
157 /* Compute the required size of a megablock group */
158
159 #define BLOCKS_TO_MBLOCKS(n) \
160    (1 + (W_)MBLOCK_ROUND_UP((n-BLOCKS_PER_MBLOCK) * BLOCK_SIZE) / MBLOCK_SIZE)
161
162
163 #ifndef CMINUSMINUS 
164 /* to the end... */
165
166 /* Double-linked block lists: --------------------------------------------- */
167
168 INLINE_HEADER void
169 dbl_link_onto(bdescr *bd, bdescr **list)
170 {
171   bd->link = *list;
172   bd->u.back = NULL;
173   if (*list) {
174     (*list)->u.back = bd; /* double-link the list */
175   }
176   *list = bd;
177 }
178
179 INLINE_HEADER void
180 dbl_link_remove(bdescr *bd, bdescr **list)
181 {
182     if (bd->u.back) {
183         bd->u.back->link = bd->link;
184     } else {
185         *list = bd->link;
186     }
187     if (bd->link) {
188         bd->link->u.back = bd->u.back;
189     }
190 }
191
192 INLINE_HEADER void
193 dbl_link_insert_after(bdescr *bd, bdescr *after)
194 {
195     bd->link = after->link;
196     bd->u.back = after;
197     if (after->link) {
198         after->link->u.back = bd;
199     }
200     after->link = bd;
201 }
202
203 INLINE_HEADER void
204 dbl_link_replace(bdescr *new, bdescr *old, bdescr **list)
205 {
206     new->link = old->link;
207     new->u.back = old->u.back;
208     if (old->link) {
209         old->link->u.back = new;
210     }
211     if (old->u.back) {
212         old->u.back->link = new;
213     } else {
214         *list = new;
215     }
216 }
217
218 /* Initialisation ---------------------------------------------------------- */
219
220 extern void initBlockAllocator(void);
221
222 /* Allocation -------------------------------------------------------------- */
223
224 bdescr *allocGroup(nat n);
225 bdescr *allocBlock(void);
226
227 // versions that take the storage manager lock for you:
228 bdescr *allocGroup_lock(nat n);
229 bdescr *allocBlock_lock(void);
230
231 /* De-Allocation ----------------------------------------------------------- */
232
233 void freeGroup(bdescr *p);
234 void freeChain(bdescr *p);
235
236 // versions that take the storage manager lock for you:
237 void freeGroup_lock(bdescr *p);
238 void freeChain_lock(bdescr *p);
239
240 bdescr * splitBlockGroup (bdescr *bd, nat blocks);
241
242 /* Round a value to megablocks --------------------------------------------- */
243
244 // We want to allocate an object around a given size, round it up or
245 // down to the nearest size that will fit in an mblock group.
246 INLINE_HEADER StgWord
247 round_to_mblocks(StgWord words)
248 {
249     if (words > BLOCKS_PER_MBLOCK * BLOCK_SIZE_W) {
250         // first, ignore the gap at the beginning of the first mblock by
251         // adding it to the total words.  Then we can pretend we're
252         // dealing in a uniform unit of megablocks.
253         words += FIRST_BLOCK_OFF/sizeof(W_);
254
255         if ((words % MBLOCK_SIZE_W) < (MBLOCK_SIZE_W / 2)) {
256             words = (words / MBLOCK_SIZE_W) * MBLOCK_SIZE_W;
257         } else {
258             words = ((words / MBLOCK_SIZE_W) + 1) * MBLOCK_SIZE_W;
259         }
260
261         words -= FIRST_BLOCK_OFF/sizeof(W_);
262     }
263     return words;
264 }
265
266 INLINE_HEADER StgWord
267 round_up_to_mblocks(StgWord words)
268 {
269     words += FIRST_BLOCK_OFF/sizeof(W_);
270     words = ((words / MBLOCK_SIZE_W) + 1) * MBLOCK_SIZE_W;
271     words -= FIRST_BLOCK_OFF/sizeof(W_);
272     return words;
273 }
274
275 #endif /* !CMINUSMINUS */
276 #endif /* RTS_STORAGE_BLOCK_H */