Remove vectored returns.
[ghc-hetmet.git] / compiler / main / Constants.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[Constants]{Info about this compilation}
5
6 \begin{code}
7 module Constants (module Constants) where
8
9 -- This magical #include brings in all the everybody-knows-these magic
10 -- constants unfortunately, we need to be *explicit* about which one
11 -- we want; if we just hope a -I... will get the right one, we could
12 -- be in trouble.
13
14 #include "HsVersions.h"
15 #include "../includes/MachRegs.h"
16 #include "../includes/Constants.h"
17 #include "../includes/MachDeps.h"
18 #include "../includes/DerivedConstants.h"
19
20 -- import Util
21 \end{code}
22
23 All pretty arbitrary:
24
25 \begin{code}
26 mAX_TUPLE_SIZE = (62 :: Int)    -- Should really match the number
27                                 -- of decls in Data.Tuple
28 mAX_CONTEXT_REDUCTION_DEPTH = (20 :: Int)
29 \end{code}
30
31
32 \begin{code}
33 -- specialised fun/thunk/constr closure types
34 mAX_SPEC_THUNK_SIZE   = (MAX_SPEC_THUNK_SIZE :: Int)
35 mAX_SPEC_FUN_SIZE     = (MAX_SPEC_FUN_SIZE :: Int)
36 mAX_SPEC_CONSTR_SIZE  = (MAX_SPEC_CONSTR_SIZE :: Int)
37
38 -- pre-compiled thunk types
39 mAX_SPEC_SELECTEE_SIZE  = (MAX_SPEC_SELECTEE_SIZE :: Int)
40 mAX_SPEC_AP_SIZE        = (MAX_SPEC_AP_SIZE :: Int)
41
42 -- closure sizes: these do NOT include the header (see below for header sizes)
43 mIN_PAYLOAD_SIZE        = (MIN_PAYLOAD_SIZE::Int)
44 \end{code}
45
46 \begin{code}
47 mIN_INTLIKE, mAX_INTLIKE :: Int 
48 mIN_INTLIKE = MIN_INTLIKE
49 mAX_INTLIKE = MAX_INTLIKE
50
51 mIN_CHARLIKE, mAX_CHARLIKE :: Int
52 mIN_CHARLIKE = MIN_CHARLIKE
53 mAX_CHARLIKE = MAX_CHARLIKE
54 \end{code}
55
56 A section of code-generator-related MAGIC CONSTANTS.
57
58 \begin{code}
59 mAX_Vanilla_REG = (MAX_VANILLA_REG :: Int)
60 mAX_Float_REG   = (MAX_FLOAT_REG :: Int)
61 mAX_Double_REG  = (MAX_DOUBLE_REG :: Int)
62 mAX_Long_REG    = (MAX_LONG_REG  :: Int)
63
64 mAX_Real_Vanilla_REG    = (MAX_REAL_VANILLA_REG :: Int)
65 mAX_Real_Float_REG      = (MAX_REAL_FLOAT_REG :: Int)
66 mAX_Real_Double_REG     = (MAX_REAL_DOUBLE_REG :: Int)
67 #ifdef MAX_REAL_LONG_REG
68 mAX_Real_Long_REG       = (MAX_REAL_LONG_REG :: Int)
69 #else
70 mAX_Real_Long_REG       = (0::Int)
71 #endif
72 \end{code}
73
74 Closure header sizes.
75
76 \begin{code}
77 sTD_HDR_SIZE       = (STD_HDR_SIZE       :: Int)
78 pROF_HDR_SIZE      = (PROF_HDR_SIZE      :: Int)
79 gRAN_HDR_SIZE      = (GRAN_HDR_SIZE      :: Int)
80 \end{code}
81
82 Info Table sizes.
83
84 \begin{code}
85 sTD_ITBL_SIZE   = (STD_ITBL_SIZE   :: Int)
86 rET_ITBL_SIZE   = (RET_ITBL_SIZE   :: Int)
87 pROF_ITBL_SIZE  = (PROF_ITBL_SIZE  :: Int)
88 gRAN_ITBL_SIZE  = (GRAN_ITBL_SIZE  :: Int)
89 tICKY_ITBL_SIZE = (TICKY_ITBL_SIZE :: Int)
90 \end{code}
91
92 Size of a double in StgWords.
93
94 \begin{code}
95 dOUBLE_SIZE     = SIZEOF_DOUBLE :: Int
96 wORD64_SIZE     = 8 :: Int
97 iNT64_SIZE      = wORD64_SIZE
98 \end{code}
99
100 This tells the native code generator the size of the spill
101 area is has available.
102
103 \begin{code}
104 rESERVED_C_STACK_BYTES = (RESERVED_C_STACK_BYTES :: Int)
105 \end{code}
106
107 The amount of (Haskell) stack to leave free for saving registers when
108 returning to the scheduler.
109
110 \begin{code}
111 rESERVED_STACK_WORDS = (RESERVED_STACK_WORDS :: Int)
112 \end{code}
113
114 Size of a word, in bytes
115
116 \begin{code}
117 wORD_SIZE = (SIZEOF_HSWORD :: Int)
118 wORD_SIZE_IN_BITS = wORD_SIZE * 8 :: Int
119 \end{code}
120
121 Size of a C int, in bytes. May be smaller than wORD_SIZE.
122
123 \begin{code}
124 cINT_SIZE = (SIZEOF_INT :: Int)
125 \end{code}
126
127 Size of a storage manager block (in bytes).
128
129 \begin{code}
130 bLOCK_SIZE = (BLOCK_SIZE :: Int)
131 bLOCK_SIZE_W = (bLOCK_SIZE `quot` wORD_SIZE :: Int)
132 \end{code}
133
134 Number of bits to shift a bitfield left by in an info table.
135
136 \begin{code}
137 bITMAP_BITS_SHIFT = (BITMAP_BITS_SHIFT :: Int)
138 \end{code}
139
140 Constants derived from headers in ghc/includes, generated by the program
141 ../includes/mkDerivedConstants.c.
142
143 \begin{code}
144 #include "../includes/GHCConstants.h"
145 \end{code}