[project @ 2000-07-11 16:24:57 by simonmar]
[ghc-hetmet.git] / ghc / compiler / stranal / WorkWrap.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1993-1998
3 %
4 \section[WorkWrap]{Worker/wrapper-generating back-end of strictness analyser}
5
6 \begin{code}
7 module WorkWrap ( wwTopBinds, mkWrapper ) where
8
9 #include "HsVersions.h"
10
11 import CoreSyn
12 import CoreUnfold       ( Unfolding, certainlyWillInline )
13 import CmdLineOpts      ( opt_UF_CreationThreshold , opt_D_verbose_core2core, 
14                           opt_D_dump_worker_wrapper
15                         )
16 import CoreLint         ( beginPass, endPass )
17 import CoreUtils        ( exprType, exprArity, exprEtaExpandArity )
18 import MkId             ( mkWorkerId )
19 import Id               ( Id, idType, idStrictness, setIdArityInfo, isOneShotLambda,
20                           setIdStrictness, idInlinePragma, 
21                           setIdWorkerInfo, idCprInfo, setInlinePragma )
22 import Type             ( Type, isNewType, splitForAllTys, splitFunTys )
23 import IdInfo           ( mkStrictnessInfo, noStrictnessInfo, StrictnessInfo(..),
24                           CprInfo(..), exactArity, InlinePragInfo(..), isNeverInlinePrag,
25                           WorkerInfo(..)
26                         )
27 import Demand           ( Demand, wwLazy )
28 import UniqSupply       ( UniqSupply, initUs_, returnUs, thenUs, mapUs, getUniqueUs, UniqSM )
29 import WwLib
30 import Outputable
31 \end{code}
32
33 We take Core bindings whose binders have:
34
35 \begin{enumerate}
36
37 \item Strictness attached (by the front-end of the strictness
38 analyser), and / or
39
40 \item Constructed Product Result information attached by the CPR
41 analysis pass.
42
43 \end{enumerate}
44
45 and we return some ``plain'' bindings which have been
46 worker/wrapper-ified, meaning: 
47
48 \begin{enumerate} 
49
50 \item Functions have been split into workers and wrappers where
51 appropriate.  If a function has both strictness and CPR properties
52 then only one worker/wrapper doing both transformations is produced;
53
54 \item Binders' @IdInfos@ have been updated to reflect the existence of
55 these workers/wrappers (this is where we get STRICTNESS and CPR pragma
56 info for exported values).
57 \end{enumerate}
58
59 \begin{code}
60
61 wwTopBinds :: UniqSupply
62              -> [CoreBind]
63              -> IO [CoreBind]
64
65 wwTopBinds us binds
66   = do {
67         beginPass "Worker Wrapper binds";
68
69         -- Create worker/wrappers, and mark binders with their
70         -- "strictness info" [which encodes their worker/wrapper-ness]
71         let { binds' = workersAndWrappers us binds };
72
73         endPass "Worker Wrapper binds" (opt_D_dump_worker_wrapper || 
74                                         opt_D_verbose_core2core) binds'
75     }
76 \end{code}
77
78
79 \begin{code}
80 workersAndWrappers :: UniqSupply -> [CoreBind] -> [CoreBind]
81
82 workersAndWrappers us top_binds
83   = initUs_ us $
84     mapUs wwBind top_binds `thenUs` \ top_binds' ->
85     returnUs (concat top_binds')
86 \end{code}
87
88 %************************************************************************
89 %*                                                                      *
90 \subsection[wwBind-wwExpr]{@wwBind@ and @wwExpr@}
91 %*                                                                      *
92 %************************************************************************
93
94 @wwBind@ works on a binding, trying each \tr{(binder, expr)} pair in
95 turn.  Non-recursive case first, then recursive...
96
97 \begin{code}
98 wwBind  :: CoreBind
99         -> UniqSM [CoreBind]    -- returns a WwBinding intermediate form;
100                                 -- the caller will convert to Expr/Binding,
101                                 -- as appropriate.
102
103 wwBind (NonRec binder rhs)
104   = wwExpr rhs                                          `thenUs` \ new_rhs ->
105     tryWW True {- non-recursive -} binder new_rhs       `thenUs` \ new_pairs ->
106     returnUs [NonRec b e | (b,e) <- new_pairs]
107       -- Generated bindings must be non-recursive
108       -- because the original binding was.
109
110 ------------------------------
111
112 wwBind (Rec pairs)
113   = mapUs do_one pairs          `thenUs` \ new_pairs ->
114     returnUs [Rec (concat new_pairs)]
115   where
116     do_one (binder, rhs) = wwExpr rhs   `thenUs` \ new_rhs ->
117                            tryWW False {- recursive -} binder new_rhs
118 \end{code}
119
120 @wwExpr@ basically just walks the tree, looking for appropriate
121 annotations that can be used. Remember it is @wwBind@ that does the
122 matching by looking for strict arguments of the correct type.
123 @wwExpr@ is a version that just returns the ``Plain'' Tree.
124
125 \begin{code}
126 wwExpr :: CoreExpr -> UniqSM CoreExpr
127
128 wwExpr e@(Type _)   = returnUs e
129 wwExpr e@(Var _)    = returnUs e
130 wwExpr e@(Lit _)    = returnUs e
131
132 wwExpr (Lam binder expr)
133   = wwExpr expr                 `thenUs` \ new_expr ->
134     returnUs (Lam binder new_expr)
135
136 wwExpr (App f a)
137   = wwExpr f                    `thenUs` \ new_f ->
138     wwExpr a                    `thenUs` \ new_a ->
139     returnUs (App new_f new_a)
140
141 wwExpr (Note note expr)
142   = wwExpr expr                 `thenUs` \ new_expr ->
143     returnUs (Note note new_expr)
144
145 wwExpr (Let bind expr)
146   = wwBind bind                 `thenUs` \ intermediate_bind ->
147     wwExpr expr                 `thenUs` \ new_expr ->
148     returnUs (mkLets intermediate_bind new_expr)
149
150 wwExpr (Case expr binder alts)
151   = wwExpr expr                         `thenUs` \ new_expr ->
152     mapUs ww_alt alts                   `thenUs` \ new_alts ->
153     returnUs (Case new_expr binder new_alts)
154   where
155     ww_alt (con, binders, rhs)
156       = wwExpr rhs                      `thenUs` \ new_rhs ->
157         returnUs (con, binders, new_rhs)
158 \end{code}
159
160 %************************************************************************
161 %*                                                                      *
162 \subsection[tryWW]{@tryWW@: attempt a worker/wrapper pair}
163 %*                                                                      *
164 %************************************************************************
165
166 @tryWW@ just accumulates arguments, converts strictness info from the
167 front-end into the proper form, then calls @mkWwBodies@ to do
168 the business.
169
170 We have to BE CAREFUL that we don't worker-wrapperize an Id that has
171 already been w-w'd!  (You can end up with several liked-named Ids
172 bouncing around at the same time---absolute mischief.)  So the
173 criterion we use is: if an Id already has an unfolding (for whatever
174 reason), then we don't w-w it.
175
176 The only reason this is monadised is for the unique supply.
177
178 \begin{code}
179 tryWW   :: Bool                         -- True <=> a non-recursive binding
180         -> Id                           -- The fn binder
181         -> CoreExpr                     -- The bound rhs; its innards
182                                         --   are already ww'd
183         -> UniqSM [(Id, CoreExpr)]      -- either *one* or *two* pairs;
184                                         -- if one, then no worker (only
185                                         -- the orig "wrapper" lives on);
186                                         -- if two, then a worker and a
187                                         -- wrapper.
188 tryWW non_rec fn_id rhs
189   | isNeverInlinePrag inline_prag
190   =     -- Don't split things that will never be inlined
191     returnUs [ (fn_id, rhs) ]
192
193   | non_rec && certainlyWillInline fn_id
194         -- No point in worker/wrappering something that is going to be
195         -- INLINEd wholesale anyway.  If the strictness analyser is run
196         -- twice, this test also prevents wrappers (which are INLINEd)
197         -- from being re-done.
198         --
199         -- OUT OF DATE NOTE, kept for info:
200         --   In this case we add an INLINE pragma to the RHS.  Why?
201         --   Because consider
202         --        f = \x -> g x x
203         --        g = \yz -> ...                -- And g is strict
204         --   Then f is small, so we don't w/w it.  But g is big, and we do, so
205         --   g's wrapper will get inlined in f's RHS, which makes f look big now.
206         --   So f doesn't get inlined, but it is strict and we have failed to w/w it.
207         -- It's out of date because now wrappers look very cheap 
208         -- even when they are inlined.
209   = returnUs [ (fn_id, rhs) ]
210
211   | not (do_strict_ww || do_cpr_ww || do_coerce_ww)
212   = returnUs [ (fn_id, rhs) ]
213
214   | otherwise           -- Do w/w split
215   = mkWwBodies fun_ty arity wrap_dmds result_bot one_shots cpr_info     `thenUs` \ (work_demands, wrap_fn, work_fn) ->
216     getUniqueUs                                                         `thenUs` \ work_uniq ->
217     let
218         work_rhs      = work_fn rhs
219         proto_work_id = mkWorkerId work_uniq fn_id (exprType work_rhs) 
220                         `setInlinePragma` inline_prag
221
222         work_id | has_strictness = proto_work_id `setIdStrictness` mkStrictnessInfo (work_demands, result_bot)
223                 | otherwise      = proto_work_id
224
225         wrap_arity = exprArity wrap_rhs         -- Might be greater than the current visible arity
226                                                 -- if the function returns bottom
227                                                 
228         wrap_rhs = wrap_fn work_id
229         wrap_id  = fn_id `setIdStrictness`      wrapper_strictness
230                          `setIdWorkerInfo`      HasWorker work_id wrap_arity
231                          `setIdArityInfo`       exactArity wrap_arity
232                          `setInlinePragma`      NoInlinePragInfo        -- Put it on the worker instead
233                 -- Add info to the wrapper:
234                 --      (a) we want to set its arity
235                 --      (b) we want to pin on its revised strictness info
236                 --      (c) we pin on its worker id 
237     in
238     returnUs ([(work_id, work_rhs), (wrap_id, wrap_rhs)])
239         -- Worker first, because wrapper mentions it
240         -- Arrange to inline the wrapper unconditionally
241   where
242     fun_ty = idType fn_id
243     arity  = exprEtaExpandArity rhs
244
245         -- Don't split something which is marked unconditionally NOINLINE
246     inline_prag  = idInlinePragma fn_id
247
248     strictness_info           = idStrictness fn_id
249     has_strictness            = case strictness_info of
250                                         StrictnessInfo _ _ -> True
251                                         NoStrictnessInfo   -> False
252     (arg_demands, result_bot) = case strictness_info of
253                                         StrictnessInfo d r -> (d,  r)
254                                         NoStrictnessInfo   -> ([], False)
255
256     wrap_dmds = setUnpackStrategy arg_demands
257     do_strict_ww = WARN( has_strictness && not result_bot && arity < length arg_demands && worthSplitting wrap_dmds result_bot, 
258                          text "Insufficient arity" <+> ppr fn_id <+> ppr arity <+> ppr arg_demands )
259                     (result_bot || arity >= length arg_demands) -- Only if there's enough visible arity
260                  &&                                             -- (else strictness info isn't valid)
261                                                                 -- 
262                     worthSplitting wrap_dmds result_bot         -- And it's useful
263         -- worthSplitting returns False for an empty list of demands,
264         -- and hence do_strict_ww is False if arity is zero
265         -- Also it's false if there is no strictness (arg_demands is [])
266
267     wrapper_strictness | has_strictness = mkStrictnessInfo (wrap_dmds, result_bot)
268                        | otherwise      = noStrictnessInfo
269
270         -------------------------------------------------------------
271     cpr_info  = idCprInfo fn_id
272     do_cpr_ww = arity > 0 &&
273                 case cpr_info of
274                         ReturnsCPR -> True
275                         other      -> False
276
277         -------------------------------------------------------------
278     do_coerce_ww = check_for_coerce arity fun_ty
279         -- We are willing to do a w/w even if the arity is zero.
280         --      x = coerce t E
281         -- ==>
282         --      x' = E
283         --      x  = coerce t x'
284
285         -------------------------------------------------------------
286     one_shots = get_one_shots rhs
287
288 -- See if there's a Coerce before we run out of arity;
289 -- if so, it's worth trying a w/w split.  Reason: we find
290 -- functions like       f = coerce (\s -> e)
291 --           and        g = \x -> coerce (\s -> e)
292 -- and they may have no useful strictness or cpr info, but if we
293 -- do the w/w thing we get rid of the coerces.  
294
295 check_for_coerce arity ty
296   = length arg_tys <= arity && isNewType res_ty
297         -- Don't look further than arity args, 
298         -- but if there are arity or fewer, see if there's
299         -- a newtype in the corner
300   where
301     (_, tau)          = splitForAllTys ty
302     (arg_tys, res_ty) = splitFunTys tau
303
304 -- If the original function has one-shot arguments, it is important to
305 -- make the wrapper and worker have corresponding one-shot arguments too.
306 -- Otherwise we spuriously float stuff out of case-expression join points,
307 -- which is very annoying.
308 get_one_shots (Lam b e)
309   | isId b    = isOneShotLambda b : get_one_shots e
310   | otherwise = get_one_shots e
311 get_one_shots (Note _ e) = get_one_shots e
312 get_one_shots other      = noOneShotInfo
313 \end{code}
314
315
316
317 %************************************************************************
318 %*                                                                      *
319 \subsection{The worker wrapper core}
320 %*                                                                      *
321 %************************************************************************
322
323 @mkWrapper@ is called when importing a function.  We have the type of 
324 the function and the name of its worker, and we want to make its body (the wrapper).
325
326 \begin{code}
327 mkWrapper :: Type               -- Wrapper type
328           -> Int                -- Arity
329           -> [Demand]           -- Wrapper strictness info
330           -> Bool               -- Function returns bottom
331           -> CprInfo            -- Wrapper cpr info
332           -> UniqSM (Id -> CoreExpr)    -- Wrapper body, missing worker Id
333
334 mkWrapper fun_ty arity demands res_bot cpr_info
335   = mkWwBodies fun_ty arity demands res_bot noOneShotInfo cpr_info      `thenUs` \ (_, wrap_fn, _) ->
336     returnUs wrap_fn
337
338 noOneShotInfo = repeat False
339 \end{code}
340
341