Moved global register saving from the backend to codeGen
[ghc-hetmet.git] / compiler / cmm / Cmm.hs
1 -----------------------------------------------------------------------------
2 --
3 -- Cmm data types
4 --
5 -- (c) The University of Glasgow 2004-2006
6 --
7 -----------------------------------------------------------------------------
8
9 module Cmm ( 
10         GenCmm(..), Cmm,
11         GenCmmTop(..), CmmTop,
12         GenBasicBlock(..), CmmBasicBlock, blockId, blockStmts,
13         CmmStmt(..), CmmActuals, CmmFormals,
14         CmmCallTarget(..),
15         CmmStatic(..), Section(..),
16         CmmExpr(..), cmmExprRep, 
17         CmmReg(..), cmmRegRep,
18         CmmLit(..), cmmLitRep,
19         LocalReg(..), localRegRep,
20         BlockId(..), BlockEnv,
21         GlobalReg(..), globalRegRep,
22
23         node, nodeReg, spReg, hpReg, spLimReg
24   ) where
25
26 #include "HsVersions.h"
27
28 import MachOp
29 import CLabel
30 import ForeignCall
31 import Unique
32 import UniqFM
33 import FastString
34
35 import Data.Word
36
37 -----------------------------------------------------------------------------
38 --              Cmm, CmmTop, CmmBasicBlock
39 -----------------------------------------------------------------------------
40
41 -- A file is a list of top-level chunks.  These may be arbitrarily
42 -- re-orderd during code generation.
43
44 -- GenCmm is abstracted over
45 --   (a) the type of static data elements
46 --   (b) the contents of a basic block.
47 -- We expect there to be two main instances of this type:
48 --   (a) Plain C--, i.e. populated with CmmLit and CmmExpr respectively,
49 --   (b) Native code, populated with instructions
50 --
51 newtype GenCmm d i = Cmm [GenCmmTop d i]
52
53 type Cmm = GenCmm CmmStatic CmmStmt
54
55 -- A top-level chunk, abstracted over the type of the contents of
56 -- the basic blocks (Cmm or instructions are the likely instantiations).
57 data GenCmmTop d i
58   = CmmProc
59      [d]               -- Info table, may be empty
60      CLabel            -- Used to generate both info & entry labels
61      CmmFormals        -- Argument locals live on entry (C-- procedure params)
62      [GenBasicBlock i] -- Code, may be empty.  The first block is
63                        -- the entry point.  The order is otherwise initially 
64                        -- unimportant, but at some point the code gen will
65                        -- fix the order.
66
67                        -- the BlockId of the first block does not give rise
68                        -- to a label.  To jump to the first block in a Proc,
69                        -- use the appropriate CLabel.
70
71   -- some static data.
72   | CmmData Section [d] -- constant values only
73
74 type CmmTop = GenCmmTop CmmStatic CmmStmt
75
76 -- A basic block containing a single label, at the beginning.
77 -- The list of basic blocks in a top-level code block may be re-ordered.
78 -- Fall-through is not allowed: there must be an explicit jump at the
79 -- end of each basic block, but the code generator might rearrange basic
80 -- blocks in order to turn some jumps into fallthroughs.
81
82 data GenBasicBlock i = BasicBlock BlockId [i]
83   -- ToDo: Julian suggests that we might need to annotate this type
84   -- with the out & in edges in the graph, i.e. two * [BlockId].  This
85   -- information can be derived from the contents, but it might be
86   -- helpful to cache it here.
87
88 type CmmBasicBlock = GenBasicBlock CmmStmt
89
90 blockId :: GenBasicBlock i -> BlockId
91 -- The branch block id is that of the first block in 
92 -- the branch, which is that branch's entry point
93 blockId (BasicBlock blk_id _ ) = blk_id
94
95 blockStmts :: GenBasicBlock i -> [i]
96 blockStmts (BasicBlock _ stmts) = stmts
97
98
99 -----------------------------------------------------------------------------
100 --              CmmStmt
101 -- A "statement".  Note that all branches are explicit: there are no
102 -- control transfers to computed addresses, except when transfering
103 -- control to a new function.
104 -----------------------------------------------------------------------------
105
106 data CmmStmt
107   = CmmNop
108   | CmmComment FastString
109
110   | CmmAssign CmmReg CmmExpr     -- Assign to register
111
112   | CmmStore CmmExpr CmmExpr     -- Assign to memory location.  Size is
113                                  -- given by cmmExprRep of the rhs.
114
115   | CmmCall                      -- A foreign call, with 
116      CmmCallTarget
117      CmmFormals                  -- zero or more results
118      CmmActuals                  -- zero or more arguments
119
120   | CmmBranch BlockId             -- branch to another BB in this fn
121
122   | CmmCondBranch CmmExpr BlockId -- conditional branch
123
124   | CmmSwitch CmmExpr [Maybe BlockId]   -- Table branch
125         -- The scrutinee is zero-based; 
126         --      zero -> first block
127         --      one  -> second block etc
128         -- Undefined outside range, and when there's a Nothing
129
130   | CmmJump CmmExpr               -- Jump to another function,
131       CmmActuals                  -- with these parameters.
132
133   | CmmReturn                     -- Return from a function,
134       CmmActuals                  -- with these return values.
135
136 type CmmActuals = [(CmmExpr,MachHint)]
137 type CmmFormals = [(CmmReg,MachHint)]
138
139 {-
140 Discussion
141 ~~~~~~~~~~
142
143 One possible problem with the above type is that the only way to do a
144 non-local conditional jump is to encode it as a branch to a block that
145 contains a single jump.  This leads to inefficient code in the back end.
146
147 One possible way to fix this would be:
148
149 data CmmStat = 
150   ...
151   | CmmJump CmmBranchDest
152   | CmmCondJump CmmExpr CmmBranchDest
153   ...
154
155 data CmmBranchDest
156   = Local BlockId
157   | NonLocal CmmExpr [LocalReg]
158
159 In favour:
160
161 + one fewer constructors in CmmStmt
162 + allows both cond branch and switch to jump to non-local destinations
163
164 Against:
165
166 - not strictly necessary: can already encode as branch+jump
167 - not always possible to implement any better in the back end
168 - could do the optimisation in the back end (but then plat-specific?)
169 - C-- doesn't have it
170 - back-end optimisation might be more general (jump shortcutting)
171
172 So we'll stick with the way it is, and add the optimisation to the NCG.
173 -}
174
175 -----------------------------------------------------------------------------
176 --              CmmCallTarget
177 --
178 -- The target of a CmmCall.
179 -----------------------------------------------------------------------------
180
181 data CmmCallTarget
182   = CmmForeignCall              -- Call to a foreign function
183         CmmExpr                 -- literal label <=> static call
184                                 -- other expression <=> dynamic call
185         CCallConv               -- The calling convention
186
187   | CmmPrim                     -- Call to a "primitive" (eg. sin, cos)
188         CallishMachOp           -- These might be implemented as inline
189                                 -- code by the backend.
190
191 -----------------------------------------------------------------------------
192 --              CmmExpr
193 -- An expression.  Expressions have no side effects.
194 -----------------------------------------------------------------------------
195
196 data CmmExpr
197   = CmmLit CmmLit               -- Literal
198   | CmmLoad CmmExpr MachRep     -- Read memory location
199   | CmmReg CmmReg               -- Contents of register
200   | CmmMachOp MachOp [CmmExpr]  -- Machine operation (+, -, *, etc.)
201   | CmmRegOff CmmReg Int        
202         -- CmmRegOff reg i
203         --        ** is shorthand only, meaning **
204         -- CmmMachOp (MO_S_Add rep (CmmReg reg) (CmmLit (CmmInt i rep)))
205         --      where rep = cmmRegRep reg
206   deriving Eq
207
208 cmmExprRep :: CmmExpr -> MachRep
209 cmmExprRep (CmmLit lit)      = cmmLitRep lit
210 cmmExprRep (CmmLoad _ rep)   = rep
211 cmmExprRep (CmmReg reg)      = cmmRegRep reg
212 cmmExprRep (CmmMachOp op _)  = resultRepOfMachOp op
213 cmmExprRep (CmmRegOff reg _) = cmmRegRep reg
214
215 data CmmReg 
216   = CmmLocal  LocalReg
217   | CmmGlobal GlobalReg
218   deriving( Eq )
219
220 cmmRegRep :: CmmReg -> MachRep
221 cmmRegRep (CmmLocal  reg)       = localRegRep reg
222 cmmRegRep (CmmGlobal reg)       = globalRegRep reg
223
224 data LocalReg
225   = LocalReg !Unique MachRep
226
227 instance Eq LocalReg where
228   (LocalReg u1 _) == (LocalReg u2 _) = u1 == u2
229
230 instance Uniquable LocalReg where
231   getUnique (LocalReg uniq _) = uniq
232
233 localRegRep :: LocalReg -> MachRep
234 localRegRep (LocalReg _ rep) = rep
235
236 data CmmLit
237   = CmmInt Integer  MachRep
238         -- Interpretation: the 2's complement representation of the value
239         -- is truncated to the specified size.  This is easier than trying
240         -- to keep the value within range, because we don't know whether
241         -- it will be used as a signed or unsigned value (the MachRep doesn't
242         -- distinguish between signed & unsigned).
243   | CmmFloat  Rational MachRep
244   | CmmLabel    CLabel                  -- Address of label
245   | CmmLabelOff CLabel Int              -- Address of label + byte offset
246   
247         -- Due to limitations in the C backend, the following
248         -- MUST ONLY be used inside the info table indicated by label2
249         -- (label2 must be the info label), and label1 must be an
250         -- SRT, a slow entrypoint or a large bitmap (see the Mangler)
251         -- Don't use it at all unless tablesNextToCode.
252         -- It is also used inside the NCG during when generating
253         -- position-independent code. 
254   | CmmLabelDiffOff CLabel CLabel Int   -- label1 - label2 + offset
255   deriving Eq
256
257 cmmLitRep :: CmmLit -> MachRep
258 cmmLitRep (CmmInt _ rep)    = rep
259 cmmLitRep (CmmFloat _ rep)  = rep
260 cmmLitRep (CmmLabel _)      = wordRep
261 cmmLitRep (CmmLabelOff _ _) = wordRep
262 cmmLitRep (CmmLabelDiffOff _ _ _) = wordRep
263
264 -----------------------------------------------------------------------------
265 -- A local label.
266
267 -- Local labels must be unique within a single compilation unit.
268
269 newtype BlockId = BlockId Unique
270   deriving (Eq,Ord)
271
272 instance Uniquable BlockId where
273   getUnique (BlockId u) = u
274
275 type BlockEnv a = UniqFM {- BlockId -} a
276
277 -----------------------------------------------------------------------------
278 --              Static Data
279 -----------------------------------------------------------------------------
280
281 data Section
282   = Text
283   | Data
284   | ReadOnlyData
285   | RelocatableReadOnlyData
286   | UninitialisedData
287   | ReadOnlyData16      -- .rodata.cst16 on x86_64, 16-byte aligned
288   | OtherSection String
289
290 data CmmStatic
291   = CmmStaticLit CmmLit 
292         -- a literal value, size given by cmmLitRep of the literal.
293   | CmmUninitialised Int
294         -- uninitialised data, N bytes long
295   | CmmAlign Int
296         -- align to next N-byte boundary (N must be a power of 2).
297   | CmmDataLabel CLabel
298         -- label the current position in this section.
299   | CmmString [Word8]
300         -- string of 8-bit values only, not zero terminated.
301
302 -----------------------------------------------------------------------------
303 --              Global STG registers
304 -----------------------------------------------------------------------------
305
306 data GlobalReg
307   -- Argument and return registers
308   = VanillaReg                  -- pointers, unboxed ints and chars
309         {-# UNPACK #-} !Int     -- its number
310
311   | FloatReg            -- single-precision floating-point registers
312         {-# UNPACK #-} !Int     -- its number
313
314   | DoubleReg           -- double-precision floating-point registers
315         {-# UNPACK #-} !Int     -- its number
316
317   | LongReg             -- long int registers (64-bit, really)
318         {-# UNPACK #-} !Int     -- its number
319
320   -- STG registers
321   | Sp                  -- Stack ptr; points to last occupied stack location.
322   | SpLim               -- Stack limit
323   | Hp                  -- Heap ptr; points to last occupied heap location.
324   | HpLim               -- Heap limit register
325   | CurrentTSO          -- pointer to current thread's TSO
326   | CurrentNursery      -- pointer to allocation area
327   | HpAlloc             -- allocation count for heap check failure
328
329                 -- We keep the address of some commonly-called 
330                 -- functions in the register table, to keep code
331                 -- size down:
332   | GCEnter1            -- stg_gc_enter_1
333   | GCFun               -- stg_gc_fun
334
335   -- Base offset for the register table, used for accessing registers
336   -- which do not have real registers assigned to them.  This register
337   -- will only appear after we have expanded GlobalReg into memory accesses
338   -- (where necessary) in the native code generator.
339   | BaseReg
340
341   -- Base Register for PIC (position-independent code) calculations
342   -- Only used inside the native code generator. It's exact meaning differs
343   -- from platform to platform (see module PositionIndependentCode).
344   | PicBaseReg
345
346   deriving( Eq
347 #ifdef DEBUG
348         , Show
349 #endif
350          )
351
352 -- convenient aliases
353 spReg, hpReg, spLimReg, nodeReg :: CmmReg
354 spReg = CmmGlobal Sp
355 hpReg = CmmGlobal Hp
356 spLimReg = CmmGlobal SpLim
357 nodeReg = CmmGlobal node
358
359 node :: GlobalReg
360 node = VanillaReg 1
361
362 globalRegRep :: GlobalReg -> MachRep
363 globalRegRep (VanillaReg _)     = wordRep
364 globalRegRep (FloatReg _)       = F32
365 globalRegRep (DoubleReg _)      = F64
366 globalRegRep (LongReg _)        = I64
367 globalRegRep _                  = wordRep