[project @ 1999-05-13 17:30:50 by simonm]
[ghc-hetmet.git] / ghc / compiler / codeGen / CgHeapery.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 % $Id: CgHeapery.lhs,v 1.16 1999/05/13 17:30:56 simonm Exp $
5 %
6 \section[CgHeapery]{Heap management functions}
7
8 \begin{code}
9 module CgHeapery (
10         fastEntryChecks, altHeapCheck, thunkChecks,
11         allocDynClosure
12
13         -- new functions, basically inserting macro calls into Code -- HWL
14         ,fetchAndReschedule, yield
15     ) where
16
17 #include "HsVersions.h"
18
19 import AbsCSyn
20 import CLabel
21 import CgMonad
22
23 import CgStackery       ( getFinalStackHW, mkTaggedStkAmodes, mkTagAssts )
24 import SMRep            ( fixedHdrSize )
25 import AbsCUtils        ( mkAbstractCs, getAmodeRep )
26 import CgUsages         ( getVirtAndRealHp, getRealSp, setVirtHp, setRealHp,
27                           initHeapUsage
28                         )
29 import ClosureInfo      ( closureSize, closureGoodStuffSize,
30                           slopSize, allocProfilingMsg, ClosureInfo,
31                           closureSMRep
32                         )
33 import PrimRep          ( PrimRep(..), isFollowableRep )
34 import Unique           ( Unique )
35 import CmdLineOpts      ( opt_SccProfilingOn )
36 import GlaExts
37 import Outputable
38
39 #ifdef DEBUG
40 import PprAbsC          ( pprMagicId ) -- tmp
41 #endif
42 \end{code}
43
44 %************************************************************************
45 %*                                                                      *
46 \subsection[CgHeapery-heap-overflow]{Heap overflow checking}
47 %*                                                                      *
48 %************************************************************************
49
50 The new code  for heapChecks. For GrAnSim the code for doing a heap check
51 and doing a context switch has been separated. Especially, the HEAP_CHK
52 macro only performs a heap check. THREAD_CONTEXT_SWITCH should be used for
53 doing a context switch. GRAN_FETCH_AND_RESCHEDULE must be put at the
54 beginning of every slow entry code in order to simulate the fetching of
55 closures. If fetching is necessary (i.e. current closure is not local) then
56 an automatic context switch is done.
57
58 -----------------------------------------------------------------------------
59 A heap/stack check at a fast entry point.
60
61 \begin{code}
62
63 fastEntryChecks
64         :: [MagicId]                    -- Live registers
65         -> [(VirtualSpOffset,Int)]      -- stack slots to tag
66         -> CLabel                       -- return point
67         -> Bool                         -- node points to closure
68         -> Code
69         -> Code
70
71 fastEntryChecks regs tags ret node_points code
72   =  mkTagAssts tags                             `thenFC` \tag_assts ->
73      getFinalStackHW                             (\ spHw -> 
74      getRealSp                                   `thenFC` \ sp ->
75      let stk_words = spHw - sp in
76      initHeapUsage                               (\ hp_words  ->
77
78      ( if all_pointers then -- heap checks are quite easy
79           absC (checking_code stk_words hp_words tag_assts 
80                     free_reg (length regs))
81
82        else -- they are complicated
83
84           -- save all registers on the stack and adjust the stack pointer.
85           -- ToDo: find the initial all-pointer segment and don't save them.
86
87           mkTaggedStkAmodes sp addrmode_regs 
88                   `thenFC` \(new_sp, stk_assts, more_tag_assts) ->
89
90           -- only let the extra stack assignments affect the stack
91           -- high water mark if we were doing a stack check anyway;
92           -- otherwise we end up generating unnecessary stack checks.
93           -- Careful about knot-tying loops!
94           let real_stk_words =  if new_sp - sp > stk_words && stk_words /= 0
95                                         then new_sp - sp
96                                         else stk_words
97           in
98
99           let adjust_sp = CAssign (CReg Sp) (CAddr (spRel sp new_sp)) in
100
101           absC (checking_code real_stk_words hp_words 
102                     (mkAbstractCs [tag_assts, stk_assts, more_tag_assts,
103                                    adjust_sp])
104                     (CReg node) 0)
105
106       ) `thenC`
107
108       setRealHp hp_words `thenC`
109       code))
110
111   where
112         
113     checking_code stk hp assts ret regs
114         | node_points = do_checks_np stk hp assts (regs+1) -- ret not required
115         | otherwise   = do_checks    stk hp assts ret regs
116
117     -- When node points to the closure for the function:
118
119     do_checks_np
120         :: Int                          -- stack headroom
121         -> Int                          -- heap  headroom
122         -> AbstractC                    -- assignments to perform on failure
123         -> Int                          -- number of pointer registers live
124         -> AbstractC
125     do_checks_np 0 0 _ _ = AbsCNop
126     do_checks_np 0 hp_words tag_assts ptrs =
127             CCheck HP_CHK_NP [
128                   mkIntCLit hp_words,
129                   mkIntCLit ptrs
130                  ]
131                  tag_assts
132     do_checks_np stk_words 0 tag_assts ptrs =
133             CCheck STK_CHK_NP [
134                   mkIntCLit stk_words,
135                   mkIntCLit ptrs
136                  ]
137                  tag_assts
138     do_checks_np stk_words hp_words tag_assts ptrs =
139             CCheck HP_STK_CHK_NP [
140                   mkIntCLit stk_words,
141                   mkIntCLit hp_words,
142                   mkIntCLit ptrs
143                  ]
144                  tag_assts
145
146     -- When node doesn't point to the closure (we need an explicit retn addr)
147
148     do_checks 
149         :: Int                          -- stack headroom
150         -> Int                          -- heap  headroom
151         -> AbstractC                    -- assignments to perform on failure
152         -> CAddrMode                    -- a register to hold the retn addr.
153         -> Int                          -- number of pointer registers live
154         -> AbstractC
155
156     do_checks 0 0 _ _ _ = AbsCNop
157     do_checks 0 hp_words tag_assts ret_reg ptrs =
158             CCheck HP_CHK [
159                   mkIntCLit hp_words,
160                   CLbl ret CodePtrRep,
161                   ret_reg,
162                   mkIntCLit ptrs
163                  ]
164                  tag_assts
165     do_checks stk_words 0 tag_assts ret_reg ptrs =
166             CCheck STK_CHK [
167                   mkIntCLit stk_words,
168                   CLbl ret CodePtrRep,
169                   ret_reg,
170                   mkIntCLit ptrs
171                  ]
172                  tag_assts
173     do_checks stk_words hp_words tag_assts ret_reg ptrs =
174             CCheck HP_STK_CHK [
175                   mkIntCLit stk_words,
176                   mkIntCLit hp_words,
177                   CLbl ret CodePtrRep,
178                   ret_reg,
179                   mkIntCLit ptrs
180                  ]
181                  tag_assts
182
183     free_reg  = case length regs + 1 of 
184                        IBOX(x) -> CReg (VanillaReg PtrRep x)
185
186     all_pointers = all pointer regs
187     pointer (VanillaReg rep _) = isFollowableRep rep
188     pointer _ = False
189
190     addrmode_regs = map CReg regs
191
192 -- Checking code for thunks is just a special case of fast entry points:
193
194 thunkChecks :: CLabel -> Bool -> Code -> Code
195 thunkChecks ret node_points code = fastEntryChecks [] [] ret node_points code
196 \end{code}
197
198 Heap checks in a case alternative are nice and easy, provided this is
199 a bog-standard algebraic case.  We have in our hand:
200
201        * one return address, on the stack,
202        * one return value, in Node.
203
204 the canned code for this heap check failure just pushes Node on the
205 stack, saying 'EnterGHC' to return.  The scheduler will return by
206 entering the top value on the stack, which in turn will return through
207 the return address, getting us back to where we were.  This is
208 therefore only valid if the return value is *lifted* (just being
209 boxed isn't good enough).  Only a PtrRep will do.
210
211 For primitive returns, we have an unlifted value in some register
212 (either R1 or FloatReg1 or DblReg1).  This means using specialised
213 heap-check code for these cases.
214
215 For unboxed tuple returns, there are an arbitrary number of possibly
216 unboxed return values, some of which will be in registers, and the
217 others will be on the stack, with gaps left for tagging the unboxed
218 objects.  If a heap check is required, we need to fill in these tags.
219
220 The code below will cover all cases for the x86 architecture (where R1
221 is the only VanillaReg ever used).  For other architectures, we'll
222 have to do something about saving and restoring the other registers.
223
224 \begin{code}
225 altHeapCheck 
226         :: Bool                         -- is an algebraic alternative
227         -> [MagicId]                    -- live registers
228         -> [(VirtualSpOffset,Int)]      -- stack slots to tag
229         -> AbstractC
230         -> Maybe Unique                 -- uniq of ret address (possibly)
231         -> Code
232         -> Code
233
234 -- unboxed tuple alternatives and let-no-escapes (the two most annoying
235 -- constructs to generate code for!):
236
237 altHeapCheck is_fun regs tags fail_code (Just ret_addr) code
238   = mkTagAssts tags `thenFC` \tag_assts1 ->
239     let tag_assts = mkAbstractCs [fail_code, tag_assts1]
240     in
241     initHeapUsage (\ hHw -> do_heap_chk hHw tag_assts `thenC` code)
242   where
243     do_heap_chk words_required tag_assts
244       = absC (if words_required == 0
245                 then  AbsCNop
246                 else  checking_code tag_assts)  `thenC`
247         setRealHp words_required
248
249       where
250         non_void_regs = filter (/= VoidReg) regs
251
252         checking_code tag_assts = 
253           case non_void_regs of
254
255 {- no: there might be stuff on top of the retn. addr. on the stack.
256             [{-no regs-}] ->
257                 CCheck HP_CHK_NOREGS
258                     [mkIntCLit words_required]
259                     tag_assts
260 -}
261             -- this will cover all cases for x86
262             [VanillaReg rep ILIT(1)] 
263
264                | isFollowableRep rep ->
265                   CCheck HP_CHK_UT_ALT
266                       [mkIntCLit words_required, mkIntCLit 1, mkIntCLit 0,
267                         CReg (VanillaReg RetRep ILIT(2)),
268                         CLbl (mkReturnInfoLabel ret_addr) RetRep]
269                       tag_assts
270
271                | otherwise ->
272                   CCheck HP_CHK_UT_ALT
273                       [mkIntCLit words_required, mkIntCLit 0, mkIntCLit 1,
274                         CReg (VanillaReg RetRep ILIT(2)),
275                         CLbl (mkReturnInfoLabel ret_addr) RetRep]
276                       tag_assts
277
278             several_regs ->
279                 let liveness = mkRegLiveness several_regs
280                 in
281                 CCheck HP_CHK_GEN
282                      [mkIntCLit words_required, 
283                       mkIntCLit (IBOX(word2Int# liveness)),
284                         -- HP_CHK_GEN needs a direct return address,
285                         -- not an info table (might be different if
286                         -- we're not assembly-mangling/tail-jumping etc.)
287                       CLbl (mkReturnPtLabel ret_addr) RetRep] 
288                      tag_assts
289
290 -- normal algebraic and primitive case alternatives:
291
292 altHeapCheck is_fun regs [] AbsCNop Nothing code
293   = initHeapUsage (\ hHw -> do_heap_chk hHw `thenC` code)
294   where
295     do_heap_chk :: HeapOffset -> Code
296     do_heap_chk words_required
297       = absC (if words_required == 0
298                 then  AbsCNop
299                 else  checking_code)  `thenC`
300         setRealHp words_required
301
302       where
303         non_void_regs = filter (/= VoidReg) regs
304
305         checking_code = 
306           case non_void_regs of
307
308             -- No regs live: probably a Void return
309             [] ->
310                CCheck HP_CHK_NOREGS [mkIntCLit words_required] AbsCNop
311
312             -- The SEQ case (polymophic/function typed case branch)
313             [VanillaReg rep ILIT(1)]
314                 |  rep == PtrRep
315                 && is_fun ->
316                   CCheck HP_CHK_SEQ_NP
317                         [mkIntCLit words_required, mkIntCLit 1{-regs live-}]
318                         AbsCNop
319
320             -- R1 is lifted (the common case)
321             [VanillaReg rep ILIT(1)]
322                 | rep == PtrRep ->
323                   CCheck HP_CHK_NP
324                         [mkIntCLit words_required, mkIntCLit 1{-regs live-}]
325                         AbsCNop
326
327             -- R1 is boxed, but unlifted
328                 | isFollowableRep rep ->
329                   CCheck HP_CHK_UNPT_R1 [mkIntCLit words_required] AbsCNop
330
331             -- R1 is unboxed
332                 | otherwise ->
333                   CCheck HP_CHK_UNBX_R1 [mkIntCLit words_required] AbsCNop
334
335             -- FloatReg1
336             [FloatReg ILIT(1)] ->
337                   CCheck HP_CHK_F1 [mkIntCLit words_required] AbsCNop
338
339             -- DblReg1
340             [DoubleReg ILIT(1)] ->
341                   CCheck HP_CHK_D1 [mkIntCLit words_required] AbsCNop
342
343             -- LngReg1
344             [LongReg _ ILIT(1)] ->
345                   CCheck HP_CHK_L1 [mkIntCLit words_required] AbsCNop
346
347 #ifdef DEBUG
348             _ -> panic ("CgHeapery.altHeapCheck: unimplemented heap-check, live regs = " ++ showSDoc (sep (map pprMagicId non_void_regs)))
349 #endif
350
351 -- build up a bitmap of the live pointer registers
352
353 mkRegLiveness :: [MagicId] -> Word#
354 mkRegLiveness []  =  int2Word# 0#
355 mkRegLiveness (VanillaReg rep i : regs) | isFollowableRep rep 
356   =  ((int2Word# 1#) `shiftL#` (i -# 1#)) `or#` mkRegLiveness regs
357 mkRegLiveness (_ : regs)  =  mkRegLiveness regs
358
359 -- Emit macro for simulating a fetch and then reschedule
360
361 fetchAndReschedule ::   [MagicId]               -- Live registers
362                         -> Bool                 -- Node reqd?
363                         -> Code
364
365 fetchAndReschedule regs node_reqd  =
366       if (node `elem` regs || node_reqd)
367         then fetch_code `thenC` reschedule_code
368         else absC AbsCNop
369       where
370         all_regs = if node_reqd then node:regs else regs
371         liveness_mask = 0 {-XXX: mkLiveRegsMask all_regs-}
372
373         reschedule_code = absC  (CMacroStmt GRAN_RESCHEDULE [
374                                  mkIntCLit liveness_mask,
375                                  mkIntCLit (if node_reqd then 1 else 0)])
376
377          --HWL: generate GRAN_FETCH macro for GrAnSim
378          --     currently GRAN_FETCH and GRAN_FETCH_AND_RESCHEDULE are miai
379         fetch_code = absC (CMacroStmt GRAN_FETCH [])
380 \end{code}
381
382 The @GRAN_YIELD@ macro is taken from JSM's  code for Concurrent Haskell. It
383 allows to context-switch at  places where @node@ is  not alive (it uses the
384 @Continue@ rather  than the @EnterNodeCode@  function in the  RTS). We emit
385 this kind of macro at the beginning of the following kinds of basic bocks:
386 \begin{itemize}
387  \item Slow entry code where node is not alive (see @CgClosure.lhs@). Normally 
388        we use @fetchAndReschedule@ at a slow entry code.
389  \item Fast entry code (see @CgClosure.lhs@).
390  \item Alternatives in case expressions (@CLabelledCode@ structures), provided
391        that they are not inlined (see @CgCases.lhs@). These alternatives will 
392        be turned into separate functions.
393 \end{itemize}
394
395 \begin{code}
396 yield ::   [MagicId]               -- Live registers
397              -> Bool                 -- Node reqd?
398              -> Code 
399
400 yield regs node_reqd =
401       -- NB: node is not alive; that's why we use DO_YIELD rather than 
402       --     GRAN_RESCHEDULE 
403       yield_code
404       where
405         all_regs = if node_reqd then node:regs else regs
406         liveness_mask = 0 {-XXX: mkLiveRegsMask all_regs-}
407
408         yield_code = absC (CMacroStmt GRAN_YIELD [mkIntCLit liveness_mask])
409 \end{code}
410
411 %************************************************************************
412 %*                                                                      *
413 \subsection[initClosure]{Initialise a dynamic closure}
414 %*                                                                      *
415 %************************************************************************
416
417 @allocDynClosure@ puts the thing in the heap, and modifies the virtual Hp
418 to account for this.
419
420 \begin{code}
421 allocDynClosure
422         :: ClosureInfo
423         -> CAddrMode            -- Cost Centre to stick in the object
424         -> CAddrMode            -- Cost Centre to blame for this alloc
425                                 -- (usually the same; sometimes "OVERHEAD")
426
427         -> [(CAddrMode, VirtualHeapOffset)]     -- Offsets from start of the object
428                                                 -- ie Info ptr has offset zero.
429         -> FCode VirtualHeapOffset              -- Returns virt offset of object
430
431 allocDynClosure closure_info use_cc blame_cc amodes_with_offsets
432   = getVirtAndRealHp                            `thenFC` \ (virtHp, realHp) ->
433
434         -- FIND THE OFFSET OF THE INFO-PTR WORD
435         -- virtHp points to last allocated word, ie 1 *before* the
436         -- info-ptr word of new object.
437     let  info_offset = virtHp + 1
438
439         -- do_move IS THE ASSIGNMENT FUNCTION
440          do_move (amode, offset_from_start)
441            = CAssign (CVal (hpRel realHp
442                                   (info_offset + offset_from_start))
443                            (getAmodeRep amode))
444                      amode
445     in
446         -- SAY WHAT WE ARE ABOUT TO DO
447     profCtrC (allocProfilingMsg closure_info)
448                            [mkIntCLit (closureGoodStuffSize closure_info),
449                             mkIntCLit slop_size]        `thenC`
450
451         -- GENERATE THE CODE
452     absC ( mkAbstractCs (
453            [ cInitHdr closure_info (hpRel realHp info_offset) use_cc ]
454            ++ (map do_move amodes_with_offsets)))       `thenC`
455
456         -- GENERATE CC PROFILING MESSAGES
457     costCentresC SLIT("CCS_ALLOC") [blame_cc, mkIntCLit closure_size]
458                                                         `thenC`
459
460         -- BUMP THE VIRTUAL HEAP POINTER
461     setVirtHp (virtHp + closure_size)                   `thenC`
462
463         -- RETURN PTR TO START OF OBJECT
464     returnFC info_offset
465   where
466     closure_size = closureSize closure_info
467     slop_size    = slopSize closure_info
468
469 -- Avoid hanging on to anything in the CC field when we're not profiling.
470
471 cInitHdr closure_info amode cc 
472   | opt_SccProfilingOn = CInitHdr closure_info amode cc
473   | otherwise          = CInitHdr closure_info amode (panic "absent cc")
474         
475 \end{code}