Adapt new SpecConstr functionality to GADT datacons
[ghc-hetmet.git] / compiler / specialise / SpecConstr.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[SpecConstr]{Specialise over constructors}
5
6 \begin{code}
7 module SpecConstr(
8         specConstrProgram       
9     ) where
10
11 #include "HsVersions.h"
12
13 import CoreSyn
14 import CoreLint         ( showPass, endPass )
15 import CoreUtils        ( exprType, mkPiTypes )
16 import CoreFVs          ( exprsFreeVars )
17 import CoreSubst        ( Subst, mkSubst, substExpr )
18 import CoreTidy         ( tidyRules )
19 import PprCore          ( pprRules )
20 import WwLib            ( mkWorkerArgs )
21 import DataCon          ( dataConRepArity, isVanillaDataCon, 
22                           dataConUnivTyVars )
23 import Type             ( Type, tyConAppArgs, tyVarsOfTypes )
24 import Rules            ( matchN )
25 import Id               ( Id, idName, idType, isDataConWorkId_maybe, 
26                           mkUserLocal, mkSysLocal, idUnfolding, isLocalId )
27 import Var              ( Var )
28 import VarEnv
29 import VarSet
30 import Name             ( nameOccName, nameSrcLoc )
31 import Rules            ( addIdSpecialisations, mkLocalRule, rulesOfBinds )
32 import OccName          ( mkSpecOcc )
33 import ErrUtils         ( dumpIfSet_dyn )
34 import DynFlags         ( DynFlags, DynFlag(..) )
35 import BasicTypes       ( Activation(..) )
36 import Maybes           ( orElse, catMaybes, isJust )
37 import Util             ( zipWithEqual, lengthAtLeast, notNull )
38 import List             ( nubBy, partition )
39 import UniqSupply
40 import Outputable
41 import FastString
42 import UniqFM
43 \end{code}
44
45 -----------------------------------------------------
46                         Game plan
47 -----------------------------------------------------
48
49 Consider
50         drop n []     = []
51         drop 0 xs     = []
52         drop n (x:xs) = drop (n-1) xs
53
54 After the first time round, we could pass n unboxed.  This happens in
55 numerical code too.  Here's what it looks like in Core:
56
57         drop n xs = case xs of
58                       []     -> []
59                       (y:ys) -> case n of 
60                                   I# n# -> case n# of
61                                              0 -> []
62                                              _ -> drop (I# (n# -# 1#)) xs
63
64 Notice that the recursive call has an explicit constructor as argument.
65 Noticing this, we can make a specialised version of drop
66         
67         RULE: drop (I# n#) xs ==> drop' n# xs
68
69         drop' n# xs = let n = I# n# in ...orig RHS...
70
71 Now the simplifier will apply the specialisation in the rhs of drop', giving
72
73         drop' n# xs = case xs of
74                       []     -> []
75                       (y:ys) -> case n# of
76                                   0 -> []
77                                   _ -> drop (n# -# 1#) xs
78
79 Much better!  
80
81 We'd also like to catch cases where a parameter is carried along unchanged,
82 but evaluated each time round the loop:
83
84         f i n = if i>0 || i>n then i else f (i*2) n
85
86 Here f isn't strict in n, but we'd like to avoid evaluating it each iteration.
87 In Core, by the time we've w/wd (f is strict in i) we get
88
89         f i# n = case i# ># 0 of
90                    False -> I# i#
91                    True  -> case n of n' { I# n# ->
92                             case i# ># n# of
93                                 False -> I# i#
94                                 True  -> f (i# *# 2#) n'
95
96 At the call to f, we see that the argument, n is know to be (I# n#),
97 and n is evaluated elsewhere in the body of f, so we can play the same
98 trick as above.  
99
100
101 Note [Reboxing]
102 ~~~~~~~~~~~~~~~
103 We must be careful not to allocate the same constructor twice.  Consider
104         f p = (...(case p of (a,b) -> e)...p...,
105                ...let t = (r,s) in ...t...(f t)...)
106 At the recursive call to f, we can see that t is a pair.  But we do NOT want
107 to make a specialised copy:
108         f' a b = let p = (a,b) in (..., ...)
109 because now t is allocated by the caller, then r and s are passed to the
110 recursive call, which allocates the (r,s) pair again.
111
112 This happens if
113   (a) the argument p is used in other than a case-scrutinsation way.
114   (b) the argument to the call is not a 'fresh' tuple; you have to
115         look into its unfolding to see that it's a tuple
116
117 Hence the "OR" part of Note [Good arguments] below.
118
119 ALTERNATIVE: pass both boxed and unboxed versions.  This no longer saves
120 allocation, but does perhaps save evals. In the RULE we'd have
121 something like
122
123   f (I# x#) = f' (I# x#) x#
124
125 If at the call site the (I# x) was an unfolding, then we'd have to
126 rely on CSE to eliminate the duplicate allocation.... This alternative
127 doesn't look attractive enough to pursue.
128
129
130 Note [Good arguments]
131 ~~~~~~~~~~~~~~~~~~~~~
132 So we look for
133
134 * A self-recursive function.  Ignore mutual recursion for now, 
135   because it's less common, and the code is simpler for self-recursion.
136
137 * EITHER
138
139    a) At a recursive call, one or more parameters is an explicit 
140       constructor application
141         AND
142       That same parameter is scrutinised by a case somewhere in 
143       the RHS of the function
144
145   OR
146
147     b) At a recursive call, one or more parameters has an unfolding
148        that is an explicit constructor application
149         AND
150       That same parameter is scrutinised by a case somewhere in 
151       the RHS of the function
152         AND
153       Those are the only uses of the parameter (see Note [Reboxing])
154
155
156 What to abstract over
157 ~~~~~~~~~~~~~~~~~~~~~
158 There's a bit of a complication with type arguments.  If the call
159 site looks like
160
161         f p = ...f ((:) [a] x xs)...
162
163 then our specialised function look like
164
165         f_spec x xs = let p = (:) [a] x xs in ....as before....
166
167 This only makes sense if either
168   a) the type variable 'a' is in scope at the top of f, or
169   b) the type variable 'a' is an argument to f (and hence fs)
170
171 Actually, (a) may hold for value arguments too, in which case
172 we may not want to pass them.  Supose 'x' is in scope at f's
173 defn, but xs is not.  Then we'd like
174
175         f_spec xs = let p = (:) [a] x xs in ....as before....
176
177 Similarly (b) may hold too.  If x is already an argument at the
178 call, no need to pass it again.
179
180 Finally, if 'a' is not in scope at the call site, we could abstract
181 it as we do the term variables:
182
183         f_spec a x xs = let p = (:) [a] x xs in ...as before...
184
185 So the grand plan is:
186
187         * abstract the call site to a constructor-only pattern
188           e.g.  C x (D (f p) (g q))  ==>  C s1 (D s2 s3)
189
190         * Find the free variables of the abstracted pattern
191
192         * Pass these variables, less any that are in scope at
193           the fn defn.  But see Note [Shadowing] below.
194
195
196 NOTICE that we only abstract over variables that are not in scope,
197 so we're in no danger of shadowing variables used in "higher up"
198 in f_spec's RHS.
199
200
201 Note [Shadowing]
202 ~~~~~~~~~~~~~~~~
203 In this pass we gather up usage information that may mention variables
204 that are bound between the usage site and the definition site; or (more
205 seriously) may be bound to something different at the definition site.
206 For example:
207
208         f x = letrec g y v = let x = ... 
209                              in ...(g (a,b) x)...
210
211 Since 'x' is in scope at the call site, we may make a rewrite rule that 
212 looks like
213         RULE forall a,b. g (a,b) x = ...
214 But this rule will never match, because it's really a different 'x' at 
215 the call site -- and that difference will be manifest by the time the
216 simplifier gets to it.  [A worry: the simplifier doesn't *guarantee*
217 no-shadowing, so perhaps it may not be distinct?]
218
219 Anyway, the rule isn't actually wrong, it's just not useful.  One possibility
220 is to run deShadowBinds before running SpecConstr, but instead we run the
221 simplifier.  That gives the simplest possible program for SpecConstr to
222 chew on; and it virtually guarantees no shadowing.
223
224 Note [Specialising for constant parameters]
225 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
226 This one is about specialising on a *constant* (but not necessarily
227 constructor) argument
228
229     foo :: Int -> (Int -> Int) -> Int
230     foo 0 f = 0
231     foo m f = foo (f m) (+1)
232
233 It produces
234
235     lvl_rmV :: GHC.Base.Int -> GHC.Base.Int
236     lvl_rmV =
237       \ (ds_dlk :: GHC.Base.Int) ->
238         case ds_dlk of wild_alH { GHC.Base.I# x_alG ->
239         GHC.Base.I# (GHC.Prim.+# x_alG 1)
240
241     T.$wfoo :: GHC.Prim.Int# -> (GHC.Base.Int -> GHC.Base.Int) ->
242     GHC.Prim.Int#
243     T.$wfoo =
244       \ (ww_sme :: GHC.Prim.Int#) (w_smg :: GHC.Base.Int -> GHC.Base.Int) ->
245         case ww_sme of ds_Xlw {
246           __DEFAULT ->
247         case w_smg (GHC.Base.I# ds_Xlw) of w1_Xmo { GHC.Base.I# ww1_Xmz ->
248         T.$wfoo ww1_Xmz lvl_rmV
249         };
250           0 -> 0
251         }
252
253 The recursive call has lvl_rmV as its argument, so we could create a specialised copy
254 with that argument baked in; that is, not passed at all.   Now it can perhaps be inlined.
255
256 When is this worth it?  Call the constant 'lvl'
257 - If 'lvl' has an unfolding that is a constructor, see if the corresponding
258   parameter is scrutinised anywhere in the body.
259
260 - If 'lvl' has an unfolding that is a inlinable function, see if the corresponding
261   parameter is applied (...to enough arguments...?)
262
263   Also do this is if the function has RULES?
264
265 Also    
266
267 Note [Specialising for lambda parameters]
268 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
269     foo :: Int -> (Int -> Int) -> Int
270     foo 0 f = 0
271     foo m f = foo (f m) (\n -> n-m)
272
273 This is subtly different from the previous one in that we get an
274 explicit lambda as the argument:
275
276     T.$wfoo :: GHC.Prim.Int# -> (GHC.Base.Int -> GHC.Base.Int) ->
277     GHC.Prim.Int#
278     T.$wfoo =
279       \ (ww_sm8 :: GHC.Prim.Int#) (w_sma :: GHC.Base.Int -> GHC.Base.Int) ->
280         case ww_sm8 of ds_Xlr {
281           __DEFAULT ->
282         case w_sma (GHC.Base.I# ds_Xlr) of w1_Xmf { GHC.Base.I# ww1_Xmq ->
283         T.$wfoo
284           ww1_Xmq
285           (\ (n_ad3 :: GHC.Base.Int) ->
286              case n_ad3 of wild_alB { GHC.Base.I# x_alA ->
287              GHC.Base.I# (GHC.Prim.-# x_alA ds_Xlr)
288              })
289         };
290           0 -> 0
291         }
292
293 I wonder if SpecConstr couldn't be extended to handle this? After all,
294 lambda is a sort of constructor for functions and perhaps it already
295 has most of the necessary machinery?
296
297 Furthermore, there's an immediate win, because you don't need to allocate the lamda
298 at the call site; and if perchance it's called in the recursive call, then you
299 may avoid allocating it altogether.  Just like for constructors.
300
301 Looks cool, but probably rare...but it might be easy to implement.
302
303 -----------------------------------------------------
304                 Stuff not yet handled
305 -----------------------------------------------------
306
307 Here are notes arising from Roman's work that I don't want to lose.
308
309 Example 1
310 ~~~~~~~~~
311     data T a = T !a
312
313     foo :: Int -> T Int -> Int
314     foo 0 t = 0
315     foo x t | even x    = case t of { T n -> foo (x-n) t }
316             | otherwise = foo (x-1) t
317
318 SpecConstr does no specialisation, because the second recursive call
319 looks like a boxed use of the argument.  A pity.
320
321     $wfoo_sFw :: GHC.Prim.Int# -> T.T GHC.Base.Int -> GHC.Prim.Int#
322     $wfoo_sFw =
323       \ (ww_sFo [Just L] :: GHC.Prim.Int#) (w_sFq [Just L] :: T.T GHC.Base.Int) ->
324          case ww_sFo of ds_Xw6 [Just L] {
325            __DEFAULT ->
326                 case GHC.Prim.remInt# ds_Xw6 2 of wild1_aEF [Dead Just A] {
327                   __DEFAULT -> $wfoo_sFw (GHC.Prim.-# ds_Xw6 1) w_sFq;
328                   0 ->
329                     case w_sFq of wild_Xy [Just L] { T.T n_ad5 [Just U(L)] ->
330                     case n_ad5 of wild1_aET [Just A] { GHC.Base.I# y_aES [Just L] ->
331                     $wfoo_sFw (GHC.Prim.-# ds_Xw6 y_aES) wild_Xy
332                     } } };
333            0 -> 0
334
335 Example 2
336 ~~~~~~~~~
337     data a :*: b = !a :*: !b
338     data T a = T !a
339
340     foo :: (Int :*: T Int) -> Int
341     foo (0 :*: t) = 0
342     foo (x :*: t) | even x    = case t of { T n -> foo ((x-n) :*: t) }
343                   | otherwise = foo ((x-1) :*: t)
344
345 Very similar to the previous one, except that the parameters are now in
346 a strict tuple. Before SpecConstr, we have
347
348     $wfoo_sG3 :: GHC.Prim.Int# -> T.T GHC.Base.Int -> GHC.Prim.Int#
349     $wfoo_sG3 =
350       \ (ww_sFU [Just L] :: GHC.Prim.Int#) (ww_sFW [Just L] :: T.T
351     GHC.Base.Int) ->
352         case ww_sFU of ds_Xws [Just L] {
353           __DEFAULT ->
354         case GHC.Prim.remInt# ds_Xws 2 of wild1_aEZ [Dead Just A] {
355           __DEFAULT ->
356             case ww_sFW of tpl_B2 [Just L] { T.T a_sFo [Just A] ->
357             $wfoo_sG3 (GHC.Prim.-# ds_Xws 1) tpl_B2             -- $wfoo1
358             };
359           0 ->
360             case ww_sFW of wild_XB [Just A] { T.T n_ad7 [Just S(L)] ->
361             case n_ad7 of wild1_aFd [Just L] { GHC.Base.I# y_aFc [Just L] ->
362             $wfoo_sG3 (GHC.Prim.-# ds_Xws y_aFc) wild_XB        -- $wfoo2
363             } } };
364           0 -> 0 }
365
366 We get two specialisations:
367 "SC:$wfoo1" [0] __forall {a_sFB :: GHC.Base.Int sc_sGC :: GHC.Prim.Int#}
368                   Foo.$wfoo sc_sGC (Foo.T @ GHC.Base.Int a_sFB)
369                   = Foo.$s$wfoo1 a_sFB sc_sGC ;
370 "SC:$wfoo2" [0] __forall {y_aFp :: GHC.Prim.Int# sc_sGC :: GHC.Prim.Int#}
371                   Foo.$wfoo sc_sGC (Foo.T @ GHC.Base.Int (GHC.Base.I# y_aFp))
372                   = Foo.$s$wfoo y_aFp sc_sGC ;
373
374 But perhaps the first one isn't good.  After all, we know that tpl_B2 is
375 a T (I# x) really, because T is strict and Int has one constructor.  (We can't
376 unbox the strict fields, becuase T is polymorphic!)
377
378
379
380 %************************************************************************
381 %*                                                                      *
382 \subsection{Top level wrapper stuff}
383 %*                                                                      *
384 %************************************************************************
385
386 \begin{code}
387 specConstrProgram :: DynFlags -> UniqSupply -> [CoreBind] -> IO [CoreBind]
388 specConstrProgram dflags us binds
389   = do
390         showPass dflags "SpecConstr"
391
392         let (binds', _) = initUs us (go emptyScEnv binds)
393
394         endPass dflags "SpecConstr" Opt_D_dump_spec binds'
395
396         dumpIfSet_dyn dflags Opt_D_dump_rules "Top-level specialisations"
397                   (pprRules (tidyRules emptyTidyEnv (rulesOfBinds binds')))
398
399         return binds'
400   where
401     go env []           = returnUs []
402     go env (bind:binds) = scBind env bind       `thenUs` \ (env', _, bind') ->
403                           go env' binds         `thenUs` \ binds' ->
404                           returnUs (bind' : binds')
405 \end{code}
406
407
408 %************************************************************************
409 %*                                                                      *
410 \subsection{Environment: goes downwards}
411 %*                                                                      *
412 %************************************************************************
413
414 \begin{code}
415 data ScEnv = SCE { scope :: InScopeEnv,
416                         -- Binds all non-top-level variables in scope
417
418                    cons  :: ConstrEnv
419              }
420
421 type InScopeEnv = VarEnv HowBound
422
423 type ConstrEnv = IdEnv ConValue
424 data ConValue  = CV AltCon [CoreArg]
425         -- Variables known to be bound to a constructor
426         -- in a particular case alternative
427
428
429 instance Outputable ConValue where
430    ppr (CV con args) = ppr con <+> interpp'SP args
431
432 refineConstrEnv :: Subst -> ConstrEnv -> ConstrEnv
433 -- The substitution is a type substitution only
434 refineConstrEnv subst env = mapVarEnv refine_con_value env
435   where
436     refine_con_value (CV con args) = CV con (map (substExpr subst) args)
437
438 emptyScEnv = SCE { scope = emptyVarEnv, cons = emptyVarEnv }
439
440 data HowBound = RecFun  -- These are the recursive functions for which 
441                         -- we seek interesting call patterns
442
443               | RecArg  -- These are those functions' arguments, or their sub-components; 
444                         -- we gather occurrence information for these
445
446               | Other   -- We track all others so we know what's in scope
447                         -- This is used in spec_one to check what needs to be
448                         -- passed as a parameter and what is in scope at the 
449                         -- function definition site
450
451 instance Outputable HowBound where
452   ppr RecFun = text "RecFun"
453   ppr RecArg = text "RecArg"
454   ppr Other = text "Other"
455
456 lookupScopeEnv env v = lookupVarEnv (scope env) v
457
458 extendBndrs env bndrs = env { scope = extendVarEnvList (scope env) [(b,Other) | b <- bndrs] }
459 extendBndr  env bndr  = env { scope = extendVarEnv (scope env) bndr Other }
460
461     -- When we encounter
462     --  case scrut of b
463     --      C x y -> ...
464     -- we want to bind b, and perhaps scrut too, to (C x y)
465 extendCaseBndrs :: ScEnv -> Id -> CoreExpr -> AltCon -> [Var] -> ScEnv
466 extendCaseBndrs env case_bndr scrut con alt_bndrs
467   = case con of
468         DEFAULT    -> env1
469         LitAlt lit -> extendCons env1 scrut case_bndr (CV con [])
470         DataAlt dc -> extend_data_con dc
471   where
472     cur_scope = scope env
473     env1 = env { scope = extendVarEnvList cur_scope 
474                                 [(b,how_bound) | b <- case_bndr:alt_bndrs] }
475
476         -- Record RecArg for the components iff the scrutinee is RecArg
477         --      [This comment looks plain wrong to me, so I'm ignoring it
478         --           "Also forget if the scrutinee is a RecArg, because we're
479         --           now in the branch of a case, and we don't want to
480         --           record a non-scrutinee use of v if we have
481         --              case v of { (a,b) -> ...(f v)... }" ]
482     how_bound = case scrut of
483                   Var v -> lookupVarEnv cur_scope v `orElse` Other
484                   other -> Other
485
486     extend_data_con data_con = 
487       extendCons env1 scrut case_bndr (CV con vanilla_args)
488         where
489             vanilla_args = map Type (tyConAppArgs (idType case_bndr)) ++
490                            varsToCoreExprs alt_bndrs
491
492 extendCons :: ScEnv -> CoreExpr -> Id -> ConValue -> ScEnv
493 extendCons env scrut case_bndr val
494   = case scrut of
495         Var v -> env { cons = extendVarEnv cons1 v val }
496         other -> env { cons = cons1 }
497   where
498     cons1 = extendVarEnv (cons env) case_bndr val
499
500     -- When we encounter a recursive function binding
501     --  f = \x y -> ...
502     -- we want to extend the scope env with bindings 
503     -- that record that f is a RecFn and x,y are RecArgs
504 extendRecBndr env fn bndrs
505   =  env { scope = scope env `extendVarEnvList` 
506                    ((fn,RecFun): [(bndr,RecArg) | bndr <- bndrs]) }
507 \end{code}
508
509
510 %************************************************************************
511 %*                                                                      *
512 \subsection{Usage information: flows upwards}
513 %*                                                                      *
514 %************************************************************************
515
516 \begin{code}
517 data ScUsage
518    = SCU {
519         calls :: !(IdEnv ([Call])),     -- Calls
520                                         -- The functions are a subset of the 
521                                         --      RecFuns in the ScEnv
522
523         occs :: !(IdEnv ArgOcc)         -- Information on argument occurrences
524      }                                  -- The variables are a subset of the 
525                                         --      RecArg in the ScEnv
526
527 type Call = (ConstrEnv, [CoreArg])
528         -- The arguments of the call, together with the
529         -- env giving the constructor bindings at the call site
530
531 nullUsage = SCU { calls = emptyVarEnv, occs = emptyVarEnv }
532
533 combineUsage u1 u2 = SCU { calls = plusVarEnv_C (++) (calls u1) (calls u2),
534                            occs  = plusVarEnv_C combineOcc (occs u1) (occs u2) }
535
536 combineUsages [] = nullUsage
537 combineUsages us = foldr1 combineUsage us
538
539 lookupOcc :: ScUsage -> Var -> (ScUsage, ArgOcc)
540 lookupOcc (SCU { calls = sc_calls, occs = sc_occs }) bndr
541   = (SCU {calls = sc_calls, occs = delVarEnv sc_occs bndr},
542      lookupVarEnv sc_occs bndr `orElse` NoOcc)
543
544 lookupOccs :: ScUsage -> [Var] -> (ScUsage, [ArgOcc])
545 lookupOccs (SCU { calls = sc_calls, occs = sc_occs }) bndrs
546   = (SCU {calls = sc_calls, occs = delVarEnvList sc_occs bndrs},
547      [lookupVarEnv sc_occs b `orElse` NoOcc | b <- bndrs])
548
549 data ArgOcc = NoOcc     -- Doesn't occur at all; or a type argument
550             | UnkOcc    -- Used in some unknown way
551
552             | ScrutOcc (UniqFM [ArgOcc])        -- See Note [ScrutOcc]
553
554             | BothOcc   -- Definitely taken apart, *and* perhaps used in some other way
555
556 {-      Note  [ScrutOcc]
557
558 An occurrence of ScrutOcc indicates that the thing is *only* taken apart or applied.
559
560   Functions, litersl: ScrutOcc emptyUFM
561   Data constructors:  ScrutOcc subs,
562
563 where (subs :: UniqFM [ArgOcc]) gives usage of the *pattern-bound* components,
564 The domain of the UniqFM is the Unique of the data constructor
565
566 The [ArgOcc] is the occurrences of the *pattern-bound* components 
567 of the data structure.  E.g.
568         data T a = forall b. MkT a b (b->a)
569 A pattern binds b, x::a, y::b, z::b->a, but not 'a'!
570
571 -}
572
573 instance Outputable ArgOcc where
574   ppr (ScrutOcc xs) = ptext SLIT("scrut-occ") <> parens (ppr xs)
575   ppr UnkOcc        = ptext SLIT("unk-occ")
576   ppr BothOcc       = ptext SLIT("both-occ")
577   ppr NoOcc         = ptext SLIT("no-occ")
578
579 combineOcc NoOcc         occ           = occ
580 combineOcc occ           NoOcc         = occ
581 combineOcc (ScrutOcc xs) (ScrutOcc ys) = ScrutOcc (plusUFM_C combineOccs xs ys)
582 combineOcc UnkOcc        UnkOcc        = UnkOcc
583 combineOcc _        _                  = BothOcc
584
585 combineOccs :: [ArgOcc] -> [ArgOcc] -> [ArgOcc]
586 combineOccs xs ys = zipWithEqual "combineOccs" combineOcc xs ys
587
588 conArgOccs :: ArgOcc -> AltCon -> [ArgOcc]
589 -- Find usage of components of data con; returns [UnkOcc...] if unknown
590 -- See Note [ScrutOcc] for the extra UnkOccs in the vanilla datacon case
591
592 conArgOccs (ScrutOcc fm) (DataAlt dc) 
593   | Just pat_arg_occs <- lookupUFM fm dc
594   = tyvar_unks ++ pat_arg_occs
595   where
596     tyvar_unks | isVanillaDataCon dc = [UnkOcc | tv <- dataConUnivTyVars dc]
597                | otherwise           = []
598
599 conArgOccs other con = repeat UnkOcc
600 \end{code}
601
602
603 %************************************************************************
604 %*                                                                      *
605 \subsection{The main recursive function}
606 %*                                                                      *
607 %************************************************************************
608
609 The main recursive function gathers up usage information, and
610 creates specialised versions of functions.
611
612 \begin{code}
613 scExpr :: ScEnv -> CoreExpr -> UniqSM (ScUsage, CoreExpr)
614         -- The unique supply is needed when we invent
615         -- a new name for the specialised function and its args
616
617 scExpr env e@(Type t) = returnUs (nullUsage, e)
618 scExpr env e@(Lit l)  = returnUs (nullUsage, e)
619 scExpr env e@(Var v)  = returnUs (varUsage env v UnkOcc, e)
620 scExpr env (Note n e) = scExpr env e    `thenUs` \ (usg,e') ->
621                         returnUs (usg, Note n e')
622 scExpr env (Cast e co)= scExpr env e    `thenUs` \ (usg,e') ->
623                         returnUs (usg, Cast e' co)
624 scExpr env (Lam b e)  = scExpr (extendBndr env b) e     `thenUs` \ (usg,e') ->
625                         returnUs (usg, Lam b e')
626
627 scExpr env (Case scrut b ty alts) 
628   = do  { (alt_usgs, alt_occs, alts') <- mapAndUnzip3Us sc_alt alts
629         ; let (alt_usg, b_occ) = lookupOcc (combineUsages alt_usgs) b
630               scrut_occ = foldr combineOcc b_occ alt_occs
631                 -- The combined usage of the scrutinee is given
632                 -- by scrut_occ, which is passed to scScrut, which
633                 -- in turn treats a bare-variable scrutinee specially
634         ; (scrut_usg, scrut') <- scScrut env scrut scrut_occ
635         ; return (alt_usg `combineUsage` scrut_usg,
636                   Case scrut' b ty alts') }
637   where
638     sc_alt (con,bs,rhs)
639       = do { let env1 = extendCaseBndrs env b scrut con bs
640            ; (usg,rhs') <- scExpr env1 rhs
641            ; let (usg', arg_occs) = lookupOccs usg bs
642                  scrut_occ = case con of
643                                 DataAlt dc -> ScrutOcc (unitUFM dc arg_occs)
644                                 other      -> ScrutOcc emptyUFM
645            ; return (usg', scrut_occ, (con,bs,rhs')) }
646
647 scExpr env (Let bind body)
648   = scBind env bind     `thenUs` \ (env', bind_usg, bind') ->
649     scExpr env' body    `thenUs` \ (body_usg, body') ->
650     returnUs (bind_usg `combineUsage` body_usg, Let bind' body')
651
652 scExpr env e@(App _ _) 
653   = do  { let (fn, args) = collectArgs e
654         ; (fn_usg, fn') <- scScrut env fn (ScrutOcc emptyUFM)
655         -- Process the function too.   It's almost always a variable,
656         -- but not always.  In particular, if this pass follows float-in,
657         -- which it may, we can get 
658         --      (let f = ...f... in f) arg1 arg2
659         -- We use scScrut to record the fact that the function is called
660         -- Perhpas we should check that it has at least one value arg, 
661         -- but currently we don't bother
662
663         ; (arg_usgs, args') <- mapAndUnzipUs (scExpr env) args
664         ; let call_usg = case fn of
665                            Var f | Just RecFun <- lookupScopeEnv env f
666                                  -> SCU { calls = unitVarEnv f [(cons env, args)], 
667                                           occs  = emptyVarEnv }
668                            other -> nullUsage
669         ; return (combineUsages arg_usgs `combineUsage` fn_usg 
670                                          `combineUsage` call_usg,
671                   mkApps fn' args') }
672
673
674 ----------------------
675 scScrut :: ScEnv -> CoreExpr -> ArgOcc -> UniqSM (ScUsage, CoreExpr)
676 -- Used for the scrutinee of a case, 
677 -- or the function of an application
678 scScrut env e@(Var v) occ = returnUs (varUsage env v occ, e)
679 scScrut env e         occ = scExpr env e
680
681
682 ----------------------
683 scBind :: ScEnv -> CoreBind -> UniqSM (ScEnv, ScUsage, CoreBind)
684 scBind env (Rec [(fn,rhs)])
685   | notNull val_bndrs
686   = scExpr env_fn_body body             `thenUs` \ (usg, body') ->
687     specialise env fn bndrs body' usg   `thenUs` \ (rules, spec_prs) ->
688         -- Note body': the specialised copies should be based on the 
689         --             optimised version of the body, in case there were
690         --             nested functions inside.
691     let
692         SCU { calls = calls, occs = occs } = usg
693     in
694     returnUs (extendBndr env fn,        -- For the body of the letrec, just
695                                         -- extend the env with Other to record 
696                                         -- that it's in scope; no funny RecFun business
697               SCU { calls = calls `delVarEnv` fn, occs = occs `delVarEnvList` val_bndrs},
698               Rec ((fn `addIdSpecialisations` rules, mkLams bndrs body') : spec_prs))
699   where
700     (bndrs,body) = collectBinders rhs
701     val_bndrs    = filter isId bndrs
702     env_fn_body  = extendRecBndr env fn bndrs
703
704 scBind env (Rec prs)
705   = mapAndUnzipUs do_one prs    `thenUs` \ (usgs, prs') ->
706     returnUs (extendBndrs env (map fst prs), combineUsages usgs, Rec prs')
707   where
708     do_one (bndr,rhs) = scExpr env rhs  `thenUs` \ (usg, rhs') ->
709                         returnUs (usg, (bndr,rhs'))
710
711 scBind env (NonRec bndr rhs)
712   = scExpr env rhs      `thenUs` \ (usg, rhs') ->
713     returnUs (extendBndr env bndr, usg, NonRec bndr rhs')
714
715 ----------------------
716 varUsage env v use 
717   | Just RecArg <- lookupScopeEnv env v = SCU { calls = emptyVarEnv, 
718                                                 occs = unitVarEnv v use }
719   | otherwise                           = nullUsage
720 \end{code}
721
722
723 %************************************************************************
724 %*                                                                      *
725 \subsection{The specialiser}
726 %*                                                                      *
727 %************************************************************************
728
729 \begin{code}
730 specialise :: ScEnv
731            -> Id                        -- Functionn
732            -> [CoreBndr] -> CoreExpr    -- Its RHS
733            -> ScUsage                   -- Info on usage
734            -> UniqSM ([CoreRule],       -- Rules
735                       [(Id,CoreExpr)])  -- Bindings
736
737 specialise env fn bndrs body body_usg
738   = do  { let (_, bndr_occs) = lookupOccs body_usg bndrs
739
740         ; mb_calls <- mapM (callToPats (scope env) bndr_occs)
741                            (lookupVarEnv (calls body_usg) fn `orElse` [])
742
743         ; let good_calls :: [([Var], [CoreArg])]
744               good_calls = catMaybes mb_calls
745               in_scope = mkInScopeSet $ unionVarSets $
746                          [ exprsFreeVars pats `delVarSetList` vs 
747                          | (vs,pats) <- good_calls ]
748               uniq_calls = nubBy (same_call in_scope) good_calls
749     in
750     mapAndUnzipUs (spec_one env fn (mkLams bndrs body)) 
751                   (uniq_calls `zip` [1..]) }
752   where
753         -- Two calls are the same if they match both ways
754     same_call in_scope (vs1,as1)(vs2,as2)
755          =  isJust (matchN in_scope vs1 as1 as2)
756          && isJust (matchN in_scope vs2 as2 as1)
757
758 callToPats :: InScopeEnv -> [ArgOcc] -> Call
759            -> UniqSM (Maybe ([Var], [CoreExpr]))
760         -- The VarSet is the variables to quantify over in the rule
761         -- The [CoreExpr] are the argument patterns for the rule
762 callToPats in_scope bndr_occs (con_env, args)
763   | length args < length bndr_occs      -- Check saturated
764   = return Nothing
765   | otherwise
766   = do  { prs <- argsToPats in_scope con_env (args `zip` bndr_occs)
767         ; let (good_pats, pats) = unzip prs
768               pat_fvs = varSetElems (exprsFreeVars pats)
769               qvars   = filter (not . (`elemVarEnv` in_scope)) pat_fvs
770                 -- Quantify over variables that are not in sccpe
771                 -- See Note [Shadowing] at the top
772                 
773         ; if or good_pats 
774           then return (Just (qvars, pats))
775           else return Nothing }
776
777 ---------------------
778 spec_one :: ScEnv
779          -> Id                                  -- Function
780          -> CoreExpr                            -- Rhs of the original function
781          -> (([Var], [CoreArg]), Int)
782          -> UniqSM (CoreRule, (Id,CoreExpr))    -- Rule and binding
783
784 -- spec_one creates a specialised copy of the function, together
785 -- with a rule for using it.  I'm very proud of how short this
786 -- function is, considering what it does :-).
787
788 {- 
789   Example
790   
791      In-scope: a, x::a   
792      f = /\b \y::[(a,b)] -> ....f (b,c) ((:) (a,(b,c)) (x,v) (h w))...
793           [c::*, v::(b,c) are presumably bound by the (...) part]
794   ==>
795      f_spec = /\ b c \ v::(b,c) hw::[(a,(b,c))] ->
796                   (...entire RHS of f...) (b,c) ((:) (a,(b,c)) (x,v) hw)
797   
798      RULE:  forall b::* c::*,           -- Note, *not* forall a, x
799                    v::(b,c),
800                    hw::[(a,(b,c))] .
801   
802             f (b,c) ((:) (a,(b,c)) (x,v) hw) = f_spec b c v hw
803 -}
804
805 spec_one env fn rhs ((vars_to_bind, pats), rule_number)
806   = getUniqueUs                 `thenUs` \ spec_uniq ->
807     let 
808         fn_name      = idName fn
809         fn_loc       = nameSrcLoc fn_name
810         spec_occ     = mkSpecOcc (nameOccName fn_name)
811
812                 -- Put the type variables first; the type of a term
813                 -- variable may mention a type variable
814         (tvs, ids)   = partition isTyVar vars_to_bind
815         bndrs        = tvs ++ ids
816         spec_body    = mkApps rhs pats
817         body_ty      = exprType spec_body
818         
819         (spec_lam_args, spec_call_args) = mkWorkerArgs bndrs body_ty
820                 -- Usual w/w hack to avoid generating 
821                 -- a spec_rhs of unlifted type and no args
822         
823         rule_name = mkFastString ("SC:" ++ showSDoc (ppr fn <> int rule_number))
824         spec_rhs  = mkLams spec_lam_args spec_body
825         spec_id   = mkUserLocal spec_occ spec_uniq (mkPiTypes spec_lam_args body_ty) fn_loc
826         rule_rhs  = mkVarApps (Var spec_id) spec_call_args
827         rule      = mkLocalRule rule_name specConstrActivation fn_name bndrs pats rule_rhs
828     in
829     returnUs (rule, (spec_id, spec_rhs))
830
831 -- In which phase should the specialise-constructor rules be active?
832 -- Originally I made them always-active, but Manuel found that
833 -- this defeated some clever user-written rules.  So Plan B
834 -- is to make them active only in Phase 0; after all, currently,
835 -- the specConstr transformation is only run after the simplifier
836 -- has reached Phase 0.  In general one would want it to be 
837 -- flag-controllable, but for now I'm leaving it baked in
838 --                                      [SLPJ Oct 01]
839 specConstrActivation :: Activation
840 specConstrActivation = ActiveAfter 0    -- Baked in; see comments above
841 \end{code}
842
843 %************************************************************************
844 %*                                                                      *
845 \subsection{Argument analysis}
846 %*                                                                      *
847 %************************************************************************
848
849 This code deals with analysing call-site arguments to see whether
850 they are constructor applications.
851
852
853 \begin{code}
854     -- argToPat takes an actual argument, and returns an abstracted
855     -- version, consisting of just the "constructor skeleton" of the
856     -- argument, with non-constructor sub-expression replaced by new
857     -- placeholder variables.  For example:
858     --    C a (D (f x) (g y))  ==>  C p1 (D p2 p3)
859
860 argToPat :: InScopeEnv                  -- What's in scope at the fn defn site
861          -> ConstrEnv                   -- ConstrEnv at the call site
862          -> CoreArg                     -- A call arg (or component thereof)
863          -> ArgOcc
864          -> UniqSM (Bool, CoreArg)
865 -- Returns (interesting, pat), 
866 -- where pat is the pattern derived from the argument
867 --            intersting=True if the pattern is non-trivial (not a variable or type)
868 -- E.g.         x:xs         --> (True, x:xs)
869 --              f xs         --> (False, w)        where w is a fresh wildcard
870 --              (f xs, 'c')  --> (True, (w, 'c'))  where w is a fresh wildcard
871 --              \x. x+y      --> (True, \x. x+y)
872 --              lvl7         --> (True, lvl7)      if lvl7 is bound 
873 --                                                 somewhere further out
874
875 argToPat in_scope con_env arg@(Type ty) arg_occ
876   = return (False, arg)
877
878 argToPat in_scope con_env (Var v) arg_occ
879   | not (isLocalId v) || v `elemVarEnv` in_scope
880   =     -- The recursive call passes a variable that 
881         -- is in scope at the function definition site
882         -- It's worth specialising on this if
883         --      (a) it's used in an interesting way in the body
884         --      (b) we know what its value is
885     if    (case arg_occ of { UnkOcc -> False; other -> True })  -- (a)
886        && isValueUnfolding (idUnfolding v)                      -- (b)
887     then return (True, Var v)
888     else wildCardPat (idType v)
889
890 argToPat in_scope con_env arg arg_occ
891   | is_value_lam arg
892   = return (True, arg)
893   where
894     is_value_lam (Lam v e)      -- Spot a value lambda, even if 
895         | isId v = True         -- it is inside a type lambda
896         | otherwise = is_value_lam e
897     is_value_lam other = False
898
899 argToPat in_scope con_env arg arg_occ
900   | Just (CV dc args) <- is_con_app_maybe con_env arg
901   , case arg_occ of
902         ScrutOcc _ -> True              -- Used only by case scrutinee
903         BothOcc    -> case arg of       -- Used by case scrut
904                         App {} -> True  -- ...and elsewhere...
905                         other  -> False
906         other      -> False     -- No point; the arg is not decomposed
907   = do  { args' <- argsToPats in_scope con_env (args `zip` conArgOccs arg_occ dc)
908         ; return (True, mk_con_app dc (map snd args')) }
909
910 argToPat in_scope con_env (Var v) arg_occ
911   =     -- A variable bound inside the function. 
912         -- Don't make a wild-card, because we may usefully share
913         --      e.g.  f a = let x = ... in f (x,x)
914         -- NB: this case follows the lambda and con-app cases!!
915     return (False, Var v)
916
917 -- The default case: make a wild-card
918 argToPat in_scope con_env arg arg_occ = wildCardPat (exprType arg)
919
920 wildCardPat :: Type -> UniqSM (Bool, CoreArg)
921 wildCardPat ty = do { uniq <- getUniqueUs
922                     ; let id = mkSysLocal FSLIT("sc") uniq ty
923                     ; return (False, Var id) }
924
925 argsToPats :: InScopeEnv -> ConstrEnv
926            -> [(CoreArg, ArgOcc)]
927            -> UniqSM [(Bool, CoreArg)]
928 argsToPats in_scope con_env args
929   = mapUs do_one args
930   where
931     do_one (arg,occ) = argToPat in_scope con_env arg occ
932 \end{code}
933
934
935 \begin{code}
936 is_con_app_maybe :: ConstrEnv -> CoreExpr -> Maybe ConValue
937 is_con_app_maybe env (Var v)
938   = case lookupVarEnv env v of
939         Just stuff -> Just stuff
940                 -- You might think we could look in the idUnfolding here
941                 -- but that doesn't take account of which branch of a 
942                 -- case we are in, which is the whole point
943
944         Nothing | isCheapUnfolding unf
945                 -> is_con_app_maybe env (unfoldingTemplate unf)
946                 where
947                   unf = idUnfolding v
948                 -- However we do want to consult the unfolding 
949                 -- as well, for let-bound constructors!
950
951         other  -> Nothing
952
953 is_con_app_maybe env (Lit lit)
954   = Just (CV (LitAlt lit) [])
955
956 is_con_app_maybe env expr
957   = case collectArgs expr of
958         (Var fun, args) | Just con <- isDataConWorkId_maybe fun,
959                           args `lengthAtLeast` dataConRepArity con
960                 -- Might be > because the arity excludes type args
961                         -> Just (CV (DataAlt con) args)
962
963         other -> Nothing
964
965 mk_con_app :: AltCon -> [CoreArg] -> CoreExpr
966 mk_con_app (LitAlt lit)  []   = Lit lit
967 mk_con_app (DataAlt con) args = mkConApp con args
968 \end{code}