[project @ 2001-07-23 10:47:16 by simonmar]
[ghc-hetmet.git] / ghc / includes / Block.h
1 /* -----------------------------------------------------------------------------
2  * $Id: Block.h,v 1.8 2001/07/23 10:47:16 simonmar Exp $
3  *
4  * (c) The GHC Team, 1998-1999
5  *
6  * Block structure for the storage manager
7  *
8  * ---------------------------------------------------------------------------*/
9
10 #ifndef BLOCK_H
11 #define BLOCK_H
12
13 /* The actual block and megablock-size constants are defined in
14  * includes/Constants.h, all constants here are derived from these.
15  */
16
17 /* Block related constants (4k blocks) */
18
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 (1M megablocks) */
26
27 #define MBLOCK_SIZE_W  (MBLOCK_SIZE/sizeof(W_))
28 #define MBLOCK_MASK    (MBLOCK_SIZE-1)
29
30 #define MBLOCK_ROUND_UP(p)   ((void *)(((W_)(p)+MBLOCK_SIZE-1) & ~MBLOCK_MASK))
31 #define MBLOCK_ROUND_DOWN(p) ((void *)((W_)(p) & ~MBLOCK_MASK ))
32
33
34 /* -----------------------------------------------------------------------------
35  * Block descriptor.  This structure *must* be the right length, so we
36  * can do pointer arithmetic on pointers to it.
37  */
38
39 /* The block descriptor is 64 bytes on a 64-bit machine, and 32-bytes
40  * on a 32-bit machine.
41  */
42
43 typedef struct _bdescr {
44   StgPtr start;                 /* start addr of memory */
45   StgPtr free;                  /* first free byte of memory */
46   struct _bdescr *link;         /* used for chaining blocks together */
47   struct _bdescr *back;         /* used (occasionally) for doubly-linked lists*/
48   unsigned int gen_no;          /* generation */
49   struct _step *step;           /* step */
50   StgWord32 blocks;             /* no. of blocks (if grp head, 0 otherwise) */
51   StgWord32 evacuated;           /* block is in to-space */
52 #if SIZEOF_VOID_P == 8
53   StgWord32 _padding[2];
54 #else
55   StgWord32 _padding[0];
56 #endif
57 } bdescr;
58
59 #if SIZEOF_VOID_P == 8
60 #define BDESCR_SIZE  0x40
61 #define BDESCR_MASK  0x3f
62 #define BDESCR_SHIFT 6
63 #else
64 #define BDESCR_SIZE  0x20
65 #define BDESCR_MASK  0x1f
66 #define BDESCR_SHIFT 5
67 #endif
68
69 /* Finding the block descriptor for a given block -------------------------- */
70
71 static inline bdescr *Bdescr(StgPtr p)
72 {
73   return (bdescr *)
74     ((((W_)p &  MBLOCK_MASK & ~BLOCK_MASK) >> (BLOCK_SHIFT-BDESCR_SHIFT)) 
75      | ((W_)p & ~MBLOCK_MASK)
76      );
77 }
78
79 /* Useful Macros ------------------------------------------------------------ */
80
81 /* Offset of first real data block in a megablock */
82
83 #define FIRST_BLOCK_OFF \
84    ((W_)BLOCK_ROUND_UP(MBLOCK_SIZE / BLOCK_SIZE * BDESCR_SIZE))
85
86 /* First data block in a given megablock */
87
88 #define FIRST_BLOCK(m) ((void *)(FIRST_BLOCK_OFF + (W_)(m)))
89    
90 /* Last data block in a given megablock */
91
92 #define LAST_BLOCK(m)  ((void *)(MBLOCK_SIZE-BLOCK_SIZE + (W_)(m)))
93
94 /* First real block descriptor in a megablock */
95
96 #define FIRST_BDESCR(m) \
97    ((bdescr *)((FIRST_BLOCK_OFF>>(BLOCK_SHIFT-BDESCR_SHIFT)) + (W_)(m)))
98
99 /* Number of usable blocks in a megablock */
100
101 #define BLOCKS_PER_MBLOCK ((MBLOCK_SIZE - FIRST_BLOCK_OFF) / BLOCK_SIZE)
102
103 /* How many blocks in this megablock group */
104
105 #define MBLOCK_GROUP_BLOCKS(n) \
106    (BLOCKS_PER_MBLOCK + (n-1) * (MBLOCK_SIZE / BLOCK_SIZE))
107
108 /* Compute the required size of a megablock group */
109
110 #define BLOCKS_TO_MBLOCKS(n) \
111    (1 + (W_)MBLOCK_ROUND_UP((n-BLOCKS_PER_MBLOCK) * BLOCK_SIZE) / MBLOCK_SIZE)
112
113 #endif /* BLOCK_H */