[project @ 1996-03-19 08:58:34 by partain]
[ghc-hetmet.git] / ghc / compiler / codeGen / CgCompInfo.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1994
3 %
4 \section[CgCompInfo]{Info about this compilation}
5
6 !!!!! THIS CODE MUST AGREE WITH SMinterface.h !!!!!!
7
8 *** This SHOULD BE the only module that is CPP'd with "stgdefs.h" stuff.
9
10 \begin{code}
11 #include "HsVersions.h"
12
13 module CgCompInfo (
14         uNFOLDING_USE_THRESHOLD,
15         uNFOLDING_CREATION_THRESHOLD,
16         uNFOLDING_OVERRIDE_THRESHOLD,
17         uNFOLDING_CHEAP_OP_COST,
18         uNFOLDING_DEAR_OP_COST,
19         uNFOLDING_NOREP_LIT_COST,
20         uNFOLDING_CON_DISCOUNT_WEIGHT,
21
22         mAX_SPEC_ALL_PTRS,
23         mAX_SPEC_ALL_NONPTRS,
24         mAX_SPEC_MIXED_FIELDS,
25         mAX_SPEC_SELECTEE_SIZE,
26
27         mIN_UPD_SIZE,
28         mIN_SIZE_NonUpdHeapObject,
29         mIN_SIZE_NonUpdStaticHeapObject,
30
31         mAX_FAMILY_SIZE_FOR_VEC_RETURNS,
32
33         sTD_UF_SIZE,     cON_UF_SIZE,
34         sCC_STD_UF_SIZE, sCC_CON_UF_SIZE,
35         uF_RET,
36         uF_SUB,
37         uF_SUA,
38         uF_UPDATEE,
39         uF_COST_CENTRE,
40
41         mAX_Vanilla_REG,
42         mAX_Float_REG,
43         mAX_Double_REG,
44
45         mIN_BIG_TUPLE_SIZE,
46
47         mIN_MP_INT_SIZE,
48         mP_STRUCT_SIZE,
49
50         oTHER_TAG, iND_TAG,     -- semi-tagging stuff
51
52         lIVENESS_R1,
53         lIVENESS_R2,
54         lIVENESS_R3,
55         lIVENESS_R4,
56         lIVENESS_R5,
57         lIVENESS_R6,
58         lIVENESS_R7,
59         lIVENESS_R8,
60
61         mAX_INTLIKE, mIN_INTLIKE,
62
63
64         spARelToInt,
65         spBRelToInt
66
67         -- and to make the interface self-sufficient...
68 --      RegRelative
69     ) where
70
71 -- This magical #include brings in all the everybody-knows-these magic
72 -- constants unfortunately, we need to be *explicit* about which one
73 -- we want; if we just hope a -I... will get the right one, we could
74 -- be in trouble.
75
76 #include "../../includes/GhcConstants.h"
77
78 CHK_Ubiq() -- debugging consistency check
79
80 import Util
81 \end{code}
82
83 All pretty arbitrary:
84 \begin{code}
85 uNFOLDING_USE_THRESHOLD       = ( 3 :: Int)
86 uNFOLDING_CREATION_THRESHOLD  = (30 :: Int)
87 uNFOLDING_OVERRIDE_THRESHOLD  = ( 8 :: Int)
88 uNFOLDING_CHEAP_OP_COST       = ( 1 :: Int)
89 uNFOLDING_DEAR_OP_COST        = ( 4 :: Int)
90 uNFOLDING_NOREP_LIT_COST      = ( 4 :: Int)
91 uNFOLDING_CON_DISCOUNT_WEIGHT = ( 1 :: Int)
92 \end{code}
93
94 \begin{code}
95 mAX_SPEC_ALL_PTRS       = (MAX_SPEC_ALL_PTRS :: Int)
96 mAX_SPEC_ALL_NONPTRS    = (MAX_SPEC_ALL_NONPTRS :: Int)
97 mAX_SPEC_MIXED_FIELDS   = (MAX_SPEC_OTHER_SIZE :: Int)
98 mAX_SPEC_SELECTEE_SIZE  = (MAX_SPEC_SELECTEE_SIZE :: Int)
99
100 -- closure sizes: these do NOT include the header
101 mIN_UPD_SIZE                    = (MIN_UPD_SIZE::Int)
102 mIN_SIZE_NonUpdHeapObject       = (MIN_NONUPD_SIZE::Int)
103 mIN_SIZE_NonUpdStaticHeapObject = (0::Int)
104 \end{code}
105
106 A completely random number:
107 \begin{code}
108 mIN_BIG_TUPLE_SIZE = (16::Int)
109 \end{code}
110
111 Sizes of gmp objects:
112 \begin{code}
113 mIN_MP_INT_SIZE = (MIN_MP_INT_SIZE :: Int)
114 mP_STRUCT_SIZE = (MP_STRUCT_SIZE :: Int)
115 \end{code}
116
117 Constants for semi-tagging; the tags associated with the data
118 constructors will start at 0 and go up.
119 \begin{code}
120 oTHER_TAG = (INFO_OTHER_TAG :: Integer) -- (-1) unevaluated, probably
121 iND_TAG   = (INFO_IND_TAG   :: Integer) -- (-2) NOT USED, REALLY
122 \end{code}
123
124 Stuff for liveness masks:
125 \begin{code}
126 lIVENESS_R1     = (LIVENESS_R1 :: Int)
127 lIVENESS_R2     = (LIVENESS_R2 :: Int)
128 lIVENESS_R3     = (LIVENESS_R3 :: Int)
129 lIVENESS_R4     = (LIVENESS_R4 :: Int)
130 lIVENESS_R5     = (LIVENESS_R5 :: Int)
131 lIVENESS_R6     = (LIVENESS_R6 :: Int)
132 lIVENESS_R7     = (LIVENESS_R7 :: Int)
133 lIVENESS_R8     = (LIVENESS_R8 :: Int)
134 \end{code}
135
136 \begin{code}
137 mIN_INTLIKE, mAX_INTLIKE :: Integer     -- Only used to compare with (MachInt Integer)
138 mIN_INTLIKE = MIN_INTLIKE
139 mAX_INTLIKE = MAX_INTLIKE
140 \end{code}
141
142 \begin{code}
143 -- THESE ARE DIRECTION SENSITIVE!
144 spARelToInt spA off = spA - off -- equiv to: AREL(spA - off)
145 spBRelToInt spB off = off - spB -- equiv to: BREL(spB - off)
146 \end{code}
147
148 A section of code-generator-related MAGIC CONSTANTS.
149 \begin{code}
150 mAX_FAMILY_SIZE_FOR_VEC_RETURNS = (MAX_VECTORED_RTN::Int)  -- pretty arbitrary
151 -- If you change this, you may need to change runtimes/standard/Update.lhc
152
153 -- The update frame sizes
154 sTD_UF_SIZE     = (NOSCC_STD_UF_SIZE::Int)
155 cON_UF_SIZE     = (NOSCC_CON_UF_SIZE::Int)
156
157 -- Same again, with profiling
158 sCC_STD_UF_SIZE = (SCC_STD_UF_SIZE::Int)
159 sCC_CON_UF_SIZE = (SCC_CON_UF_SIZE::Int)
160
161 -- Offsets in an update frame.  They don't change with profiling!
162 uF_RET = (UF_RET::Int)
163 uF_SUB = (UF_SUB::Int)
164 uF_SUA = (UF_SUA::Int)
165 uF_UPDATEE = (UF_UPDATEE::Int)
166 uF_COST_CENTRE = (UF_COST_CENTRE::Int)
167 \end{code}
168
169 \begin{code}
170 mAX_Vanilla_REG = (MAX_VANILLA_REG :: Int)
171 mAX_Float_REG   = (MAX_FLOAT_REG :: Int)
172 mAX_Double_REG  = (MAX_DOUBLE_REG :: Int)
173 \end{code}