[project @ 1999-03-02 19:44:07 by sof]
[ghc-hetmet.git] / ghc / includes / Block.h
1 /* -----------------------------------------------------------------------------
2  * $Id: Block.h,v 1.5 1999/03/02 19:44:07 sof 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   struct _generation *gen;      /* 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 /* Useful Macros ------------------------------------------------------------ */
70
71 /* Offset of first real data block in a megablock */
72
73 #define FIRST_BLOCK_OFF \
74    ((W_)BLOCK_ROUND_UP(MBLOCK_SIZE / BLOCK_SIZE * BDESCR_SIZE))
75
76 /* First data block in a given megablock */
77
78 #define FIRST_BLOCK(m) ((void *)(FIRST_BLOCK_OFF + (W_)(m)))
79    
80 /* Last data block in a given megablock */
81
82 #define LAST_BLOCK(m)  ((void *)(MBLOCK_SIZE-BLOCK_SIZE + (W_)(m)))
83
84 /* First real block descriptor in a megablock */
85
86 #define FIRST_BDESCR(m) \
87    ((bdescr *)((FIRST_BLOCK_OFF>>(BLOCK_SHIFT-BDESCR_SHIFT)) + (W_)(m)))
88
89 /* Number of usable blocks in a megablock */
90
91 #define BLOCKS_PER_MBLOCK ((MBLOCK_SIZE - FIRST_BLOCK_OFF) / BLOCK_SIZE)
92
93 /* How many blocks in this megablock group */
94
95 #define MBLOCK_GROUP_BLOCKS(n) \
96    (BLOCKS_PER_MBLOCK + (n-1) * (MBLOCK_SIZE / BLOCK_SIZE))
97
98 /* Compute the required size of a megablock group */
99
100 #define BLOCKS_TO_MBLOCKS(n) \
101    (1 + (W_)MBLOCK_ROUND_UP((n-BLOCKS_PER_MBLOCK) * BLOCK_SIZE) / MBLOCK_SIZE)
102
103 #endif BLOCK_H