[project @ 1997-09-03 23:55:02 by sof]
[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         iNTERFACE_UNFOLD_THRESHOLD,
18         uNFOLDING_CHEAP_OP_COST,
19         uNFOLDING_DEAR_OP_COST,
20         uNFOLDING_NOREP_LIT_COST,
21         uNFOLDING_CON_DISCOUNT_WEIGHT,
22
23         mAX_SPEC_ALL_PTRS,
24         mAX_SPEC_ALL_NONPTRS,
25         mAX_SPEC_MIXED_FIELDS,
26         mAX_SPEC_SELECTEE_SIZE,
27
28         mIN_UPD_SIZE,
29         mIN_SIZE_NonUpdHeapObject,
30         mIN_SIZE_NonUpdStaticHeapObject,
31
32         mAX_FAMILY_SIZE_FOR_VEC_RETURNS,
33
34         sTD_UF_SIZE,     cON_UF_SIZE,
35         sCC_STD_UF_SIZE, sCC_CON_UF_SIZE,
36         uF_RET,
37         uF_SUB,
38         uF_SUA,
39         uF_UPDATEE,
40         uF_COST_CENTRE,
41
42         mAX_Vanilla_REG,
43         mAX_Float_REG,
44         mAX_Double_REG,
45
46         mIN_BIG_TUPLE_SIZE,
47
48         mIN_MP_INT_SIZE,
49         mP_STRUCT_SIZE,
50
51         oTHER_TAG, iND_TAG,     -- semi-tagging stuff
52
53         lIVENESS_R1,
54         lIVENESS_R2,
55         lIVENESS_R3,
56         lIVENESS_R4,
57         lIVENESS_R5,
58         lIVENESS_R6,
59         lIVENESS_R7,
60         lIVENESS_R8,
61
62         mAX_INTLIKE, mIN_INTLIKE,
63
64
65         spARelToInt,
66         spBRelToInt
67     ) where
68
69 -- This magical #include brings in all the everybody-knows-these magic
70 -- constants unfortunately, we need to be *explicit* about which one
71 -- we want; if we just hope a -I... will get the right one, we could
72 -- be in trouble.
73
74 #include "../../includes/GhcConstants.h"
75
76 CHK_Ubiq() -- debugging consistency check
77
78 import Util
79 \end{code}
80
81 All pretty arbitrary:
82 \begin{code}
83 -- uNFOLDING_USE_THRESHOLD            = ( 3 :: Int)
84 -- uNFOLDING_CREATION_THRESHOLD  = (30 :: Int)
85 -- uNFOLDING_OVERRIDE_THRESHOLD  = ( 8 :: Int)
86
87 iNTERFACE_UNFOLD_THRESHOLD    = (30 :: 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 :: Int{-VirtualSpAOffset-} -> Int{-VirtualSpAOffset-} -> Int
145 spBRelToInt :: Int{-VirtualSpBOffset-} -> Int{-VirtualSpBOffset-} -> Int
146
147 spARelToInt spA off = spA - off -- equiv to: AREL(spA - off)
148 spBRelToInt spB off = off - spB -- equiv to: BREL(spB - off)
149 \end{code}
150
151 A section of code-generator-related MAGIC CONSTANTS.
152 \begin{code}
153 mAX_FAMILY_SIZE_FOR_VEC_RETURNS = (MAX_VECTORED_RTN::Int)  -- pretty arbitrary
154 -- If you change this, you may need to change runtimes/standard/Update.lhc
155
156 -- The update frame sizes
157 sTD_UF_SIZE     = (NOSCC_STD_UF_SIZE::Int)
158 cON_UF_SIZE     = (NOSCC_CON_UF_SIZE::Int)
159
160 -- Same again, with profiling
161 sCC_STD_UF_SIZE = (SCC_STD_UF_SIZE::Int)
162 sCC_CON_UF_SIZE = (SCC_CON_UF_SIZE::Int)
163
164 -- Offsets in an update frame.  They don't change with profiling!
165 uF_RET = (UF_RET::Int)
166 uF_SUB = (UF_SUB::Int)
167 uF_SUA = (UF_SUA::Int)
168 uF_UPDATEE = (UF_UPDATEE::Int)
169 uF_COST_CENTRE = (UF_COST_CENTRE::Int)
170 \end{code}
171
172 \begin{code}
173 mAX_Vanilla_REG = (MAX_VANILLA_REG :: Int)
174 mAX_Float_REG   = (MAX_FLOAT_REG :: Int)
175 mAX_Double_REG  = (MAX_DOUBLE_REG :: Int)
176 \end{code}