[project @ 2000-12-07 09:28:42 by simonpj]
[ghc-hetmet.git] / ghc / compiler / coreSyn / CoreSat.lhs
1 %
2 % (c) The University of Glasgow, 1994-2000
3 %
4 \section{Core pass to saturate constructors and PrimOps}
5
6 \begin{code}
7 module CoreSat (
8       coreSatPgm, coreSatExpr
9   ) where
10
11 #include "HsVersions.h"
12
13 import CoreUtils
14 import CoreFVs
15 import CoreLint
16 import CoreSyn
17 import Type
18 import Demand
19 import Var      ( TyVar, setTyVarUnique )
20 import VarSet
21 import IdInfo
22 import Id
23 import PrimOp
24 import UniqSupply
25 import Maybes
26 import ErrUtils
27 import CmdLineOpts
28 import Outputable
29 \end{code}
30
31 -- ---------------------------------------------------------------------------
32 -- Overview
33 -- ---------------------------------------------------------------------------
34
35 Most of the contents of this pass used to be in CoreToStg.  The
36 primary goals here are:
37
38 1.  Get the program into "A-normal form". In particular:
39
40         f E        ==>  let x = E in f x
41                 OR ==>  case E of x -> f x
42
43
44     if E is a non-trivial expression.
45     Which transformation is used depends on whether f is strict or not.
46     [Previously the transformation to case used to be done by the
47      simplifier, but it's better done here.  It does mean that f needs
48      to have its strictness info correct!.]
49
50 2.  Similarly, convert any unboxed lets into cases.
51     [I'm experimenting with leaving 'ok-for-speculation' rhss in let-form
52      right up to this point.]
53
54     This is all done modulo type applications and abstractions, so that
55     when type erasure is done for conversion to STG, we don't end up with
56     any trivial or useless bindings.
57   
58 3.  Ensure that lambdas only occur as the RHS of a binding
59     (The code generator can't deal with anything else.)
60
61 4.  Saturate constructor and primop applications.
62
63
64
65 -- -----------------------------------------------------------------------------
66 -- Top level stuff
67 -- -----------------------------------------------------------------------------
68
69 \begin{code}
70 coreSatPgm :: DynFlags -> [CoreBind] -> IO [CoreBind]
71 coreSatPgm dflags binds 
72   = do  showPass dflags "CoreSat"
73         us <- mkSplitUniqSupply 's'
74         let new_binds = initUs_ us (coreSatBinds binds)
75         endPass dflags "CoreSat" Opt_D_dump_sat new_binds
76
77 coreSatExpr :: DynFlags -> CoreExpr -> IO CoreExpr
78 coreSatExpr dflags expr
79   = do showPass dflags "CoreSat"
80        us <- mkSplitUniqSupply 's'
81        let new_expr = initUs_ us (coreSatAnExpr expr)
82        dumpIfSet_dyn dflags Opt_D_dump_sat "Saturated/Normal form syntax:" 
83           (ppr new_expr)
84        return new_expr
85
86 -- ---------------------------------------------------------------------------
87 -- Dealing with bindings
88 -- ---------------------------------------------------------------------------
89
90 data FloatingBind
91    = RecF [(Id, CoreExpr)]
92    | NonRecF Id
93              CoreExpr           -- *Can* be a Lam
94              RhsDemand
95              [FloatingBind]
96
97 coreSatBinds :: [CoreBind] -> UniqSM [CoreBind]
98 coreSatBinds [] = returnUs []
99 coreSatBinds (b:bs)
100   = coreSatBind b       `thenUs` \ float ->
101     coreSatBinds bs     `thenUs` \ new_bs ->
102     case float of
103         NonRecF bndr rhs dem floats 
104                 -> ASSERT2( not (isStrictDem dem) && 
105                             not (isUnLiftedType (idType bndr)),
106                             ppr b )             -- No top-level cases!
107
108                    mkBinds floats rhs           `thenUs` \ new_rhs ->
109                    returnUs (NonRec bndr new_rhs : new_bs)
110                                 -- Keep all the floats inside...
111                                 -- Some might be cases etc
112                                 -- We might want to revisit this decision
113
114         RecF prs -> returnUs (Rec prs : new_bs)
115
116 coreSatBind :: CoreBind -> UniqSM FloatingBind
117 coreSatBind (NonRec binder rhs)
118   = coreSatExprFloat rhs                `thenUs` \ (floats, new_rhs) ->
119     returnUs (NonRecF binder new_rhs (bdrDem binder) floats)
120 coreSatBind (Rec pairs)
121   = mapUs do_rhs pairs                  `thenUs` \ new_rhss ->
122     returnUs (RecF (binders `zip` new_rhss))
123   where
124     binders = map fst pairs
125     do_rhs (bndr,rhs) = 
126         coreSatExprFloat rhs            `thenUs` \ (floats, new_rhs) ->
127         mkBinds floats new_rhs          `thenUs` \ new_rhs' ->
128                 -- NB: new_rhs' might still be a Lam (and we want that)
129         returnUs new_rhs'
130
131 -- ---------------------------------------------------------------------------
132 -- Making arguments atomic (function args & constructor args)
133 -- ---------------------------------------------------------------------------
134
135 -- This is where we arrange that a non-trivial argument is let-bound
136 coreSatArg :: CoreArg -> RhsDemand -> UniqSM ([FloatingBind], CoreArg)
137 coreSatArg arg dem
138   = coreSatExprFloat arg                `thenUs` \ (floats, arg') ->
139     if exprIsTrivial arg'
140         then returnUs (floats, arg')
141         else newVar (exprType arg')     `thenUs` \ v ->
142              returnUs ([NonRecF v arg' dem floats], Var v)
143
144 -- ---------------------------------------------------------------------------
145 -- Dealing with expressions
146 -- ---------------------------------------------------------------------------
147
148 coreSatAnExpr :: CoreExpr -> UniqSM CoreExpr
149 coreSatAnExpr expr
150   = coreSatExprFloat expr               `thenUs` \ (floats, expr) ->
151     mkBinds floats expr
152
153
154 coreSatExprFloat :: CoreExpr -> UniqSM ([FloatingBind], CoreExpr)
155 -- If
156 --      e  ===>  (bs, e')
157 -- then 
158 --      e = let bs in e'        (semantically, that is!)
159 --
160 -- For example
161 --      f (g x)   ===>   ([v = g x], f v)
162
163 coreSatExprFloat (Var v)
164   = fiddleCCall v  `thenUs` \ v ->
165     maybeSaturate v (Var v) 0 (idType v) `thenUs` \ app ->
166     returnUs ([], app)
167
168 coreSatExprFloat (Lit lit)
169   = returnUs ([], Lit lit)
170
171 coreSatExprFloat (Let bind body)
172   = coreSatBind bind                    `thenUs` \ new_bind ->
173     coreSatExprFloat body               `thenUs` \ (floats, new_body) ->
174     returnUs (new_bind:floats, new_body)
175
176 coreSatExprFloat (Note other_note expr)
177   = coreSatExprFloat expr               `thenUs` \ (floats, expr) ->
178     returnUs (floats, Note other_note expr)
179
180 coreSatExprFloat expr@(Type _)
181   = returnUs ([], expr)
182
183 coreSatExprFloat (Lam v e)
184   = coreSatAnExpr e                     `thenUs` \ e' ->
185     returnUs ([], Lam v e')
186
187 coreSatExprFloat (Case scrut bndr alts)
188   = coreSatExprFloat scrut              `thenUs` \ (floats, scrut) ->
189     mapUs sat_alt alts                  `thenUs` \ alts ->
190     returnUs (floats, Case scrut bndr alts)
191   where
192     sat_alt (con, bs, rhs)
193           = coreSatAnExpr rhs            `thenUs` \ rhs ->
194             deLam rhs                    `thenUs` \ rhs ->
195             returnUs (con, bs, rhs)
196
197 coreSatExprFloat expr@(App _ _)
198   = collect_args expr 0  `thenUs` \ (app,(head,depth),ty,floats,ss) ->
199     ASSERT(null ss)     -- make sure we used all the strictness info
200
201         -- Now deal with the function
202     case head of
203       Var fn_id -> maybeSaturate fn_id app depth ty `thenUs` \ app' -> 
204                    returnUs (floats, app')
205
206       _other    -> returnUs (floats, app)
207
208   where
209
210     -- Deconstruct and rebuild the application, floating any non-atomic
211     -- arguments to the outside.  We collect the type of the expression,
212     -- the head of the applicaiton, and the number of actual value arguments,
213     -- all of which are used to possibly saturate this application if it
214     -- has a constructor or primop at the head.
215
216     collect_args
217         :: CoreExpr
218         -> Int                          -- current app depth
219         -> UniqSM (CoreExpr,            -- the rebuilt expression
220                    (CoreExpr,Int),      -- the head of the application,
221                                           -- and no. of args it was applied to
222                    Type,                -- type of the whole expr
223                    [FloatingBind],      -- any floats we pulled out
224                    [Demand])            -- remaining argument demands
225
226     collect_args (App fun arg@(Type arg_ty)) depth
227         = collect_args fun depth   `thenUs` \ (fun',hd,fun_ty,floats,ss) ->
228           returnUs (App fun' arg, hd, applyTy fun_ty arg_ty, floats, ss)
229
230     collect_args (App fun arg) depth
231         = collect_args fun (depth+1)   `thenUs` \ (fun',hd,fun_ty,floats,ss) ->
232           let
233               (ss1, ss_rest)   = case ss of
234                                    (ss1:ss_rest) -> (ss1, ss_rest)
235                                    []          -> (wwLazy, [])
236               (arg_ty, res_ty) = expectJust "coreSatExprFloat:collect_args" $
237                                  splitFunTy_maybe fun_ty
238           in
239           coreSatArg arg (mkDemTy ss1 arg_ty) `thenUs` \ (fs, arg') ->
240           returnUs (App fun' arg', hd, res_ty, fs ++ floats, ss_rest)
241
242     collect_args (Var v) depth
243         = fiddleCCall v   `thenUs` \ v ->
244           returnUs (Var v, (Var v, depth), idType v, [], stricts)
245         where
246           stricts = case idStrictness v of
247                         StrictnessInfo demands _ 
248                             | depth >= length demands -> demands
249                             | otherwise               -> []
250                         other                         -> []
251                 -- If depth < length demands, then we have too few args to 
252                 -- satisfy strictness  info so we have to  ignore all the 
253                 -- strictness info, e.g. + (error "urk")
254                 -- Here, we can't evaluate the arg  strictly, because this 
255                 -- partial  application might be seq'd
256
257     collect_args (Note (Coerce ty1 ty2) fun) depth
258         = collect_args fun depth  `thenUs` \ (fun', hd, fun_ty, floats, ss) ->
259           returnUs (Note (Coerce ty1 ty2) fun', hd, ty1, floats, ss)
260
261     collect_args (Note note fun) depth
262         | ignore_note note 
263         = collect_args fun depth   `thenUs` \ (fun', hd, fun_ty, floats, ss) ->
264           returnUs (Note note fun', hd, fun_ty, floats, ss)
265
266         -- non-variable fun, better let-bind it
267     collect_args fun depth
268         = newVar ty                     `thenUs` \ fn_id ->
269           coreSatExprFloat fun          `thenUs` \ (fun_floats, fun) ->
270           returnUs (Var fn_id, (Var fn_id, depth), ty, 
271                     [NonRecF fn_id fun onceDem fun_floats], [])
272         where ty = exprType fun
273
274     ignore_note InlineCall = True
275     ignore_note InlineMe   = True
276     ignore_note _other     = False
277         -- we don't ignore SCCs, since they require some code generation
278
279 ------------------------------------------------------------------------------
280 -- Generating new binders
281 -- ---------------------------------------------------------------------------
282
283 newVar :: Type -> UniqSM Id
284 newVar ty
285  = getUniqueUs                  `thenUs` \ uniq ->
286    seqType ty                   `seq`
287    returnUs (mkSysLocal SLIT("sat") uniq ty)
288
289 cloneTyVar :: TyVar -> UniqSM TyVar
290 cloneTyVar tv
291  = getUniqueUs                  `thenUs` \ uniq ->
292    returnUs (setTyVarUnique tv uniq)
293
294 ------------------------------------------------------------------------------
295 -- Building the saturated syntax
296 -- ---------------------------------------------------------------------------
297
298 -- maybeSaturate deals with saturating primops and constructors
299 -- The type is the type of the entire application
300 maybeSaturate :: Id -> CoreExpr -> Int -> Type -> UniqSM CoreExpr
301 maybeSaturate fn expr n_args ty
302   = case idFlavour fn of
303       PrimOpId op  -> saturate_it
304       DataConId dc -> saturate_it
305       other        -> returnUs expr
306   where
307     fn_arity     = idArity fn
308     excess_arity = fn_arity - n_args
309     saturate_it  = getUs        `thenUs` \ us ->
310                    returnUs (etaExpand excess_arity us expr ty)
311
312 fiddleCCall id 
313   = case idFlavour id of
314          PrimOpId (CCallOp ccall) ->
315             -- Make a guaranteed unique name for a dynamic ccall.
316             getUniqueUs         `thenUs` \ uniq ->
317             returnUs (modifyIdInfo (`setFlavourInfo` 
318                             PrimOpId (CCallOp (setCCallUnique ccall uniq))) id)
319          other_flavour ->
320              returnUs id
321
322 -- ---------------------------------------------------------------------------
323 -- Eliminate Lam as a non-rhs (STG doesn't have such a thing)
324 -- ---------------------------------------------------------------------------
325
326 deLam (Note n e)
327   = deLam e `thenUs` \ e ->
328     returnUs (Note n e)
329
330    -- types will all disappear, so that's ok
331 deLam (Lam x e) | isTyVar x
332   = deLam e `thenUs` \ e ->
333     returnUs (Lam x e)
334
335 deLam expr@(Lam _ _) 
336         -- Try for eta reduction
337   | Just e <- eta body
338   = returnUs e          
339
340         -- Eta failed, so let-bind the lambda
341   | otherwise
342   = newVar (exprType expr) `thenUs` \ fn ->
343     returnUs (Let (NonRec fn expr) (Var fn))
344
345   where
346     (bndrs, body) = collectBinders expr
347
348     eta expr@(App _ _)
349         | n_remaining >= 0 &&
350           and (zipWith ok bndrs last_args) &&
351           not (any (`elemVarSet` fvs_remaining) bndrs)
352         = Just remaining_expr
353         where
354           (f, args) = collectArgs expr
355           remaining_expr = mkApps f remaining_args
356           fvs_remaining = exprFreeVars remaining_expr
357           (remaining_args, last_args) = splitAt n_remaining args
358           n_remaining = length args - length bndrs
359
360           ok bndr (Var arg) = bndr == arg
361           ok bndr other     = False
362
363     eta (Let bind@(NonRec b r) body)
364         | not (any (`elemVarSet` fvs) bndrs)
365                  = case eta body of
366                         Just e -> Just (Let bind e)
367                         Nothing -> Nothing
368         where fvs = exprFreeVars r
369
370     eta _ = Nothing
371
372 deLam expr = returnUs expr
373
374 -- ---------------------------------------------------------------------------
375 -- Precipitating the floating bindings
376 -- ---------------------------------------------------------------------------
377
378 mkBinds :: [FloatingBind] -> CoreExpr -> UniqSM CoreExpr
379 mkBinds []     body = returnUs body
380 mkBinds (b:bs) body 
381   = deLam body          `thenUs` \ body' ->
382     go (b:bs) body'
383   where
384     go []     body = returnUs body
385     go (b:bs) body = go bs body         `thenUs` \ body' ->
386                      mkBind  b body'
387
388 -- body can't be Lam
389 mkBind (RecF prs) body = returnUs (Let (Rec prs) body)
390
391 mkBind (NonRecF bndr rhs dem floats) body
392 #ifdef DEBUG
393   -- We shouldn't get let or case of the form v=w
394   = if exprIsTrivial rhs 
395         then pprTrace "mkBind" (ppr bndr <+> ppr rhs)
396              (mk_let bndr rhs dem floats body)
397         else mk_let bndr rhs dem floats body
398
399 mk_let bndr rhs dem floats body
400 #endif
401   | isUnLiftedType bndr_rep_ty
402   = ASSERT( not (isUnboxedTupleType bndr_rep_ty) )
403     mkBinds floats (Case rhs bndr [(DEFAULT, [], body)])
404
405   | is_whnf
406   = if is_strict then
407         -- Strict let with WHNF rhs
408         mkBinds floats $
409         Let (NonRec bndr rhs) body
410     else
411         -- Lazy let with WHNF rhs; float until we find a strict binding
412         let
413             (floats_out, floats_in) = splitFloats floats
414         in
415         mkBinds floats_in rhs   `thenUs` \ new_rhs ->
416         mkBinds floats_out $
417         Let (NonRec bndr new_rhs) body
418
419   | otherwise   -- Not WHNF
420   = if is_strict then
421         -- Strict let with non-WHNF rhs
422         mkBinds floats (Case rhs bndr [(DEFAULT, [], body)])
423     else
424         -- Lazy let with non-WHNF rhs, so keep the floats in the RHS
425         mkBinds floats rhs              `thenUs` \ new_rhs ->
426         returnUs (Let (NonRec bndr new_rhs) body)
427         
428   where
429     bndr_rep_ty = repType (idType bndr)
430     is_strict   = isStrictDem dem
431     is_whnf     = exprIsValue rhs
432
433 splitFloats fs@(NonRecF _ _ dem _ : _) 
434   | isStrictDem dem = ([], fs)
435
436 splitFloats (f : fs) = case splitFloats fs of
437                              (fs_out, fs_in) -> (f : fs_out, fs_in)
438
439 splitFloats [] = ([], [])
440
441 -- -----------------------------------------------------------------------------
442 -- Demands
443 -- -----------------------------------------------------------------------------
444
445 data RhsDemand
446      = RhsDemand { isStrictDem :: Bool,  -- True => used at least once
447                    isOnceDem   :: Bool   -- True => used at most once
448                  }
449
450 mkDem :: Demand -> Bool -> RhsDemand
451 mkDem strict once = RhsDemand (isStrict strict) once
452
453 mkDemTy :: Demand -> Type -> RhsDemand
454 mkDemTy strict ty = RhsDemand (isStrict strict) (isOnceTy ty)
455
456 isOnceTy :: Type -> Bool
457 isOnceTy ty
458   =
459 #ifdef USMANY
460     opt_UsageSPOn &&  -- can't expect annotations if -fusagesp is off
461 #endif
462     once
463   where
464     u = uaUTy ty
465     once | u == usOnce  = True
466          | u == usMany  = False
467          | isTyVarTy u  = False  -- if unknown at compile-time, is Top ie usMany
468
469 bdrDem :: Id -> RhsDemand
470 bdrDem id = mkDem (idDemandInfo id) (isOnceTy (idType id))
471
472 safeDem, onceDem :: RhsDemand
473 safeDem = RhsDemand False False  -- always safe to use this
474 onceDem = RhsDemand False True   -- used at most once
475 \end{code}