Attach the INLINE Activation pragma to any automatically-generated specialisations
[ghc-hetmet.git] / compiler / specialise / Specialise.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1993-1998
3 %
4 \section[Specialise]{Stamping out overloading, and (optionally) polymorphism}
5
6 \begin{code}
7 {-# OPTIONS -w #-}
8 -- The above warning supression flag is a temporary kludge.
9 -- While working on this module you are encouraged to remove it and fix
10 -- any warnings in the module. See
11 --     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
12 -- for details
13
14 module Specialise ( specProgram ) where
15
16 #include "HsVersions.h"
17
18 import DynFlags ( DynFlags, DynFlag(..) )
19 import Id               ( Id, idName, idType, mkUserLocal, 
20                           idInlinePragma, setInlinePragma ) 
21 import TcType           ( Type, mkTyVarTy, tcSplitSigmaTy, 
22                           tyVarsOfTypes, tyVarsOfTheta, isClassPred,
23                           tcCmpType, isUnLiftedType
24                         )
25 import CoreSubst        ( Subst, mkEmptySubst, extendTvSubstList, lookupIdSubst,
26                           substBndr, substBndrs, substTy, substInScope,
27                           cloneIdBndr, cloneIdBndrs, cloneRecIdBndrs
28                         ) 
29 import VarSet
30 import VarEnv
31 import CoreSyn
32 import CoreUtils        ( applyTypeToArgs, mkPiTypes )
33 import CoreFVs          ( exprFreeVars, exprsFreeVars, idFreeVars )
34 import CoreTidy         ( tidyRules )
35 import CoreLint         ( showPass, endPass )
36 import Rules            ( addIdSpecialisations, mkLocalRule, lookupRule, emptyRuleBase, rulesOfBinds )
37 import PprCore          ( pprRules )
38 import UniqSupply       ( UniqSupply,
39                           UniqSM, initUs_, thenUs, returnUs, getUniqueUs, 
40                           getUs, mapUs
41                         )
42 import Name
43 import MkId             ( voidArgId, realWorldPrimId )
44 import FiniteMap
45 import Maybes           ( catMaybes, maybeToBool )
46 import ErrUtils         ( dumpIfSet_dyn )
47 import BasicTypes       ( Activation( AlwaysActive ) )
48 import Bag
49 import List             ( partition )
50 import Util             ( zipEqual, zipWithEqual, cmpList, lengthIs,
51                           equalLength, lengthAtLeast, notNull )
52 import Outputable
53 import FastString
54
55 infixr 9 `thenSM`
56 \end{code}
57
58 %************************************************************************
59 %*                                                                      *
60 \subsection[notes-Specialise]{Implementation notes [SLPJ, Aug 18 1993]}
61 %*                                                                      *
62 %************************************************************************
63
64 These notes describe how we implement specialisation to eliminate
65 overloading.
66
67 The specialisation pass works on Core
68 syntax, complete with all the explicit dictionary application,
69 abstraction and construction as added by the type checker.  The
70 existing type checker remains largely as it is.
71
72 One important thought: the {\em types} passed to an overloaded
73 function, and the {\em dictionaries} passed are mutually redundant.
74 If the same function is applied to the same type(s) then it is sure to
75 be applied to the same dictionary(s)---or rather to the same {\em
76 values}.  (The arguments might look different but they will evaluate
77 to the same value.)
78
79 Second important thought: we know that we can make progress by
80 treating dictionary arguments as static and worth specialising on.  So
81 we can do without binding-time analysis, and instead specialise on
82 dictionary arguments and no others.
83
84 The basic idea
85 ~~~~~~~~~~~~~~
86 Suppose we have
87
88         let f = <f_rhs>
89         in <body>
90
91 and suppose f is overloaded.
92
93 STEP 1: CALL-INSTANCE COLLECTION
94
95 We traverse <body>, accumulating all applications of f to types and
96 dictionaries.
97
98 (Might there be partial applications, to just some of its types and
99 dictionaries?  In principle yes, but in practice the type checker only
100 builds applications of f to all its types and dictionaries, so partial
101 applications could only arise as a result of transformation, and even
102 then I think it's unlikely.  In any case, we simply don't accumulate such
103 partial applications.)
104
105
106 STEP 2: EQUIVALENCES
107
108 So now we have a collection of calls to f:
109         f t1 t2 d1 d2
110         f t3 t4 d3 d4
111         ...
112 Notice that f may take several type arguments.  To avoid ambiguity, we
113 say that f is called at type t1/t2 and t3/t4.
114
115 We take equivalence classes using equality of the *types* (ignoring
116 the dictionary args, which as mentioned previously are redundant).
117
118 STEP 3: SPECIALISATION
119
120 For each equivalence class, choose a representative (f t1 t2 d1 d2),
121 and create a local instance of f, defined thus:
122
123         f@t1/t2 = <f_rhs> t1 t2 d1 d2
124
125 f_rhs presumably has some big lambdas and dictionary lambdas, so lots
126 of simplification will now result.  However we don't actually *do* that
127 simplification.  Rather, we leave it for the simplifier to do.  If we
128 *did* do it, though, we'd get more call instances from the specialised
129 RHS.  We can work out what they are by instantiating the call-instance
130 set from f's RHS with the types t1, t2.
131
132 Add this new id to f's IdInfo, to record that f has a specialised version.
133
134 Before doing any of this, check that f's IdInfo doesn't already
135 tell us about an existing instance of f at the required type/s.
136 (This might happen if specialisation was applied more than once, or
137 it might arise from user SPECIALIZE pragmas.)
138
139 Recursion
140 ~~~~~~~~~
141 Wait a minute!  What if f is recursive?  Then we can't just plug in
142 its right-hand side, can we?
143
144 But it's ok.  The type checker *always* creates non-recursive definitions
145 for overloaded recursive functions.  For example:
146
147         f x = f (x+x)           -- Yes I know its silly
148
149 becomes
150
151         f a (d::Num a) = let p = +.sel a d
152                          in
153                          letrec fl (y::a) = fl (p y y)
154                          in
155                          fl
156
157 We still have recusion for non-overloaded functions which we
158 speciailise, but the recursive call should get specialised to the
159 same recursive version.
160
161
162 Polymorphism 1
163 ~~~~~~~~~~~~~~
164
165 All this is crystal clear when the function is applied to *constant
166 types*; that is, types which have no type variables inside.  But what if
167 it is applied to non-constant types?  Suppose we find a call of f at type
168 t1/t2.  There are two possibilities:
169
170 (a) The free type variables of t1, t2 are in scope at the definition point
171 of f.  In this case there's no problem, we proceed just as before.  A common
172 example is as follows.  Here's the Haskell:
173
174         g y = let f x = x+x
175               in f y + f y
176
177 After typechecking we have
178
179         g a (d::Num a) (y::a) = let f b (d'::Num b) (x::b) = +.sel b d' x x
180                                 in +.sel a d (f a d y) (f a d y)
181
182 Notice that the call to f is at type type "a"; a non-constant type.
183 Both calls to f are at the same type, so we can specialise to give:
184
185         g a (d::Num a) (y::a) = let f@a (x::a) = +.sel a d x x
186                                 in +.sel a d (f@a y) (f@a y)
187
188
189 (b) The other case is when the type variables in the instance types
190 are *not* in scope at the definition point of f.  The example we are
191 working with above is a good case.  There are two instances of (+.sel a d),
192 but "a" is not in scope at the definition of +.sel.  Can we do anything?
193 Yes, we can "common them up", a sort of limited common sub-expression deal.
194 This would give:
195
196         g a (d::Num a) (y::a) = let +.sel@a = +.sel a d
197                                     f@a (x::a) = +.sel@a x x
198                                 in +.sel@a (f@a y) (f@a y)
199
200 This can save work, and can't be spotted by the type checker, because
201 the two instances of +.sel weren't originally at the same type.
202
203 Further notes on (b)
204
205 * There are quite a few variations here.  For example, the defn of
206   +.sel could be floated ouside the \y, to attempt to gain laziness.
207   It certainly mustn't be floated outside the \d because the d has to
208   be in scope too.
209
210 * We don't want to inline f_rhs in this case, because
211 that will duplicate code.  Just commoning up the call is the point.
212
213 * Nothing gets added to +.sel's IdInfo.
214
215 * Don't bother unless the equivalence class has more than one item!
216
217 Not clear whether this is all worth it.  It is of course OK to
218 simply discard call-instances when passing a big lambda.
219
220 Polymorphism 2 -- Overloading
221 ~~~~~~~~~~~~~~
222 Consider a function whose most general type is
223
224         f :: forall a b. Ord a => [a] -> b -> b
225
226 There is really no point in making a version of g at Int/Int and another
227 at Int/Bool, because it's only instancing the type variable "a" which
228 buys us any efficiency. Since g is completely polymorphic in b there
229 ain't much point in making separate versions of g for the different
230 b types.
231
232 That suggests that we should identify which of g's type variables
233 are constrained (like "a") and which are unconstrained (like "b").
234 Then when taking equivalence classes in STEP 2, we ignore the type args
235 corresponding to unconstrained type variable.  In STEP 3 we make
236 polymorphic versions.  Thus:
237
238         f@t1/ = /\b -> <f_rhs> t1 b d1 d2
239
240 We do this.
241
242
243 Dictionary floating
244 ~~~~~~~~~~~~~~~~~~~
245 Consider this
246
247         f a (d::Num a) = let g = ...
248                          in
249                          ...(let d1::Ord a = Num.Ord.sel a d in g a d1)...
250
251 Here, g is only called at one type, but the dictionary isn't in scope at the
252 definition point for g.  Usually the type checker would build a
253 definition for d1 which enclosed g, but the transformation system
254 might have moved d1's defn inward.  Solution: float dictionary bindings
255 outwards along with call instances.
256
257 Consider
258
259         f x = let g p q = p==q
260                   h r s = (r+s, g r s)
261               in
262               h x x
263
264
265 Before specialisation, leaving out type abstractions we have
266
267         f df x = let g :: Eq a => a -> a -> Bool
268                      g dg p q = == dg p q
269                      h :: Num a => a -> a -> (a, Bool)
270                      h dh r s = let deq = eqFromNum dh
271                                 in (+ dh r s, g deq r s)
272               in
273               h df x x
274
275 After specialising h we get a specialised version of h, like this:
276
277                     h' r s = let deq = eqFromNum df
278                              in (+ df r s, g deq r s)
279
280 But we can't naively make an instance for g from this, because deq is not in scope
281 at the defn of g.  Instead, we have to float out the (new) defn of deq
282 to widen its scope.  Notice that this floating can't be done in advance -- it only
283 shows up when specialisation is done.
284
285 User SPECIALIZE pragmas
286 ~~~~~~~~~~~~~~~~~~~~~~~
287 Specialisation pragmas can be digested by the type checker, and implemented
288 by adding extra definitions along with that of f, in the same way as before
289
290         f@t1/t2 = <f_rhs> t1 t2 d1 d2
291
292 Indeed the pragmas *have* to be dealt with by the type checker, because
293 only it knows how to build the dictionaries d1 and d2!  For example
294
295         g :: Ord a => [a] -> [a]
296         {-# SPECIALIZE f :: [Tree Int] -> [Tree Int] #-}
297
298 Here, the specialised version of g is an application of g's rhs to the
299 Ord dictionary for (Tree Int), which only the type checker can conjure
300 up.  There might not even *be* one, if (Tree Int) is not an instance of
301 Ord!  (All the other specialision has suitable dictionaries to hand
302 from actual calls.)
303
304 Problem.  The type checker doesn't have to hand a convenient <f_rhs>, because
305 it is buried in a complex (as-yet-un-desugared) binding group.
306 Maybe we should say
307
308         f@t1/t2 = f* t1 t2 d1 d2
309
310 where f* is the Id f with an IdInfo which says "inline me regardless!".
311 Indeed all the specialisation could be done in this way.
312 That in turn means that the simplifier has to be prepared to inline absolutely
313 any in-scope let-bound thing.
314
315
316 Again, the pragma should permit polymorphism in unconstrained variables:
317
318         h :: Ord a => [a] -> b -> b
319         {-# SPECIALIZE h :: [Int] -> b -> b #-}
320
321 We *insist* that all overloaded type variables are specialised to ground types,
322 (and hence there can be no context inside a SPECIALIZE pragma).
323 We *permit* unconstrained type variables to be specialised to
324         - a ground type
325         - or left as a polymorphic type variable
326 but nothing in between.  So
327
328         {-# SPECIALIZE h :: [Int] -> [c] -> [c] #-}
329
330 is *illegal*.  (It can be handled, but it adds complication, and gains the
331 programmer nothing.)
332
333
334 SPECIALISING INSTANCE DECLARATIONS
335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
336 Consider
337
338         instance Foo a => Foo [a] where
339                 ...
340         {-# SPECIALIZE instance Foo [Int] #-}
341
342 The original instance decl creates a dictionary-function
343 definition:
344
345         dfun.Foo.List :: forall a. Foo a -> Foo [a]
346
347 The SPECIALIZE pragma just makes a specialised copy, just as for
348 ordinary function definitions:
349
350         dfun.Foo.List@Int :: Foo [Int]
351         dfun.Foo.List@Int = dfun.Foo.List Int dFooInt
352
353 The information about what instance of the dfun exist gets added to
354 the dfun's IdInfo in the same way as a user-defined function too.
355
356
357 Automatic instance decl specialisation?
358 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
359 Can instance decls be specialised automatically?  It's tricky.
360 We could collect call-instance information for each dfun, but
361 then when we specialised their bodies we'd get new call-instances
362 for ordinary functions; and when we specialised their bodies, we might get
363 new call-instances of the dfuns, and so on.  This all arises because of
364 the unrestricted mutual recursion between instance decls and value decls.
365
366 Still, there's no actual problem; it just means that we may not do all
367 the specialisation we could theoretically do.
368
369 Furthermore, instance decls are usually exported and used non-locally,
370 so we'll want to compile enough to get those specialisations done.
371
372 Lastly, there's no such thing as a local instance decl, so we can
373 survive solely by spitting out *usage* information, and then reading that
374 back in as a pragma when next compiling the file.  So for now,
375 we only specialise instance decls in response to pragmas.
376
377
378 SPITTING OUT USAGE INFORMATION
379 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
380
381 To spit out usage information we need to traverse the code collecting
382 call-instance information for all imported (non-prelude?) functions
383 and data types. Then we equivalence-class it and spit it out.
384
385 This is done at the top-level when all the call instances which escape
386 must be for imported functions and data types.
387
388 *** Not currently done ***
389
390
391 Partial specialisation by pragmas
392 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
393 What about partial specialisation:
394
395         k :: (Ord a, Eq b) => [a] -> b -> b -> [a]
396         {-# SPECIALIZE k :: Eq b => [Int] -> b -> b -> [a] #-}
397
398 or even
399
400         {-# SPECIALIZE k :: Eq b => [Int] -> [b] -> [b] -> [a] #-}
401
402 Seems quite reasonable.  Similar things could be done with instance decls:
403
404         instance (Foo a, Foo b) => Foo (a,b) where
405                 ...
406         {-# SPECIALIZE instance Foo a => Foo (a,Int) #-}
407         {-# SPECIALIZE instance Foo b => Foo (Int,b) #-}
408
409 Ho hum.  Things are complex enough without this.  I pass.
410
411
412 Requirements for the simplifer
413 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
414 The simplifier has to be able to take advantage of the specialisation.
415
416 * When the simplifier finds an application of a polymorphic f, it looks in
417 f's IdInfo in case there is a suitable instance to call instead.  This converts
418
419         f t1 t2 d1 d2   ===>   f_t1_t2
420
421 Note that the dictionaries get eaten up too!
422
423 * Dictionary selection operations on constant dictionaries must be
424   short-circuited:
425
426         +.sel Int d     ===>  +Int
427
428 The obvious way to do this is in the same way as other specialised
429 calls: +.sel has inside it some IdInfo which tells that if it's applied
430 to the type Int then it should eat a dictionary and transform to +Int.
431
432 In short, dictionary selectors need IdInfo inside them for constant
433 methods.
434
435 * Exactly the same applies if a superclass dictionary is being
436   extracted:
437
438         Eq.sel Int d   ===>   dEqInt
439
440 * Something similar applies to dictionary construction too.  Suppose
441 dfun.Eq.List is the function taking a dictionary for (Eq a) to
442 one for (Eq [a]).  Then we want
443
444         dfun.Eq.List Int d      ===> dEq.List_Int
445
446 Where does the Eq [Int] dictionary come from?  It is built in
447 response to a SPECIALIZE pragma on the Eq [a] instance decl.
448
449 In short, dfun Ids need IdInfo with a specialisation for each
450 constant instance of their instance declaration.
451
452 All this uses a single mechanism: the SpecEnv inside an Id
453
454
455 What does the specialisation IdInfo look like?
456 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
457
458 The SpecEnv of an Id maps a list of types (the template) to an expression
459
460         [Type]  |->  Expr
461
462 For example, if f has this SpecInfo:
463
464         [Int, a]  ->  \d:Ord Int. f' a
465
466 it means that we can replace the call
467
468         f Int t  ===>  (\d. f' t)
469
470 This chucks one dictionary away and proceeds with the
471 specialised version of f, namely f'.
472
473
474 What can't be done this way?
475 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
476 There is no way, post-typechecker, to get a dictionary for (say)
477 Eq a from a dictionary for Eq [a].  So if we find
478
479         ==.sel [t] d
480
481 we can't transform to
482
483         eqList (==.sel t d')
484
485 where
486         eqList :: (a->a->Bool) -> [a] -> [a] -> Bool
487
488 Of course, we currently have no way to automatically derive
489 eqList, nor to connect it to the Eq [a] instance decl, but you
490 can imagine that it might somehow be possible.  Taking advantage
491 of this is permanently ruled out.
492
493 Still, this is no great hardship, because we intend to eliminate
494 overloading altogether anyway!
495
496
497
498 A note about non-tyvar dictionaries
499 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
500 Some Ids have types like
501
502         forall a,b,c. Eq a -> Ord [a] -> tau
503
504 This seems curious at first, because we usually only have dictionary
505 args whose types are of the form (C a) where a is a type variable.
506 But this doesn't hold for the functions arising from instance decls,
507 which sometimes get arguements with types of form (C (T a)) for some
508 type constructor T.
509
510 Should we specialise wrt this compound-type dictionary?  We used to say
511 "no", saying:
512         "This is a heuristic judgement, as indeed is the fact that we 
513         specialise wrt only dictionaries.  We choose *not* to specialise
514         wrt compound dictionaries because at the moment the only place
515         they show up is in instance decls, where they are simply plugged
516         into a returned dictionary.  So nothing is gained by specialising
517         wrt them."
518
519 But it is simpler and more uniform to specialise wrt these dicts too;
520 and in future GHC is likely to support full fledged type signatures 
521 like
522         f ;: Eq [(a,b)] => ...
523
524
525 %************************************************************************
526 %*                                                                      *
527 \subsubsection{The new specialiser}
528 %*                                                                      *
529 %************************************************************************
530
531 Our basic game plan is this.  For let(rec) bound function
532         f :: (C a, D c) => (a,b,c,d) -> Bool
533
534 * Find any specialised calls of f, (f ts ds), where 
535   ts are the type arguments t1 .. t4, and
536   ds are the dictionary arguments d1 .. d2.
537
538 * Add a new definition for f1 (say):
539
540         f1 = /\ b d -> (..body of f..) t1 b t3 d d1 d2
541
542   Note that we abstract over the unconstrained type arguments.
543
544 * Add the mapping
545
546         [t1,b,t3,d]  |->  \d1 d2 -> f1 b d
547
548   to the specialisations of f.  This will be used by the
549   simplifier to replace calls 
550                 (f t1 t2 t3 t4) da db
551   by
552                 (\d1 d1 -> f1 t2 t4) da db
553
554   All the stuff about how many dictionaries to discard, and what types
555   to apply the specialised function to, are handled by the fact that the
556   SpecEnv contains a template for the result of the specialisation.
557
558 We don't build *partial* specialisations for f.  For example:
559
560   f :: Eq a => a -> a -> Bool
561   {-# SPECIALISE f :: (Eq b, Eq c) => (b,c) -> (b,c) -> Bool #-}
562
563 Here, little is gained by making a specialised copy of f.
564 There's a distinct danger that the specialised version would
565 first build a dictionary for (Eq b, Eq c), and then select the (==) 
566 method from it!  Even if it didn't, not a great deal is saved.
567
568 We do, however, generate polymorphic, but not overloaded, specialisations:
569
570   f :: Eq a => [a] -> b -> b -> b
571   {#- SPECIALISE f :: [Int] -> b -> b -> b #-}
572
573 Hence, the invariant is this: 
574
575         *** no specialised version is overloaded ***
576
577
578 %************************************************************************
579 %*                                                                      *
580 \subsubsection{The exported function}
581 %*                                                                      *
582 %************************************************************************
583
584 \begin{code}
585 specProgram :: DynFlags -> UniqSupply -> [CoreBind] -> IO [CoreBind]
586 specProgram dflags us binds
587   = do
588         showPass dflags "Specialise"
589
590         let binds' = initSM us (go binds        `thenSM` \ (binds', uds') ->
591                                 returnSM (dumpAllDictBinds uds' binds'))
592
593         endPass dflags "Specialise" Opt_D_dump_spec binds'
594
595         dumpIfSet_dyn dflags Opt_D_dump_rules "Top-level specialisations"
596                   (pprRules (tidyRules emptyTidyEnv (rulesOfBinds binds')))
597
598         return binds'
599   where
600         -- We need to start with a Subst that knows all the things
601         -- that are in scope, so that the substitution engine doesn't
602         -- accidentally re-use a unique that's already in use
603         -- Easiest thing is to do it all at once, as if all the top-level
604         -- decls were mutually recursive
605     top_subst       = mkEmptySubst (mkInScopeSet (mkVarSet (bindersOfBinds binds)))
606
607     go []           = returnSM ([], emptyUDs)
608     go (bind:binds) = go binds                          `thenSM` \ (binds', uds) ->
609                       specBind top_subst bind uds       `thenSM` \ (bind', uds') ->
610                       returnSM (bind' ++ binds', uds')
611 \end{code}
612
613 %************************************************************************
614 %*                                                                      *
615 \subsubsection{@specExpr@: the main function}
616 %*                                                                      *
617 %************************************************************************
618
619 \begin{code}
620 specVar :: Subst -> Id -> CoreExpr
621 specVar subst v = lookupIdSubst subst v
622
623 specExpr :: Subst -> CoreExpr -> SpecM (CoreExpr, UsageDetails)
624 -- We carry a substitution down:
625 --      a) we must clone any binding that might flaot outwards,
626 --         to avoid name clashes
627 --      b) we carry a type substitution to use when analysing
628 --         the RHS of specialised bindings (no type-let!)
629
630 ---------------- First the easy cases --------------------
631 specExpr subst (Type ty) = returnSM (Type (substTy subst ty), emptyUDs)
632 specExpr subst (Var v)   = returnSM (specVar subst v,         emptyUDs)
633 specExpr subst (Lit lit) = returnSM (Lit lit,                 emptyUDs)
634 specExpr subst (Cast e co) =
635   specExpr subst e              `thenSM` \ (e', uds) ->
636   returnSM ((Cast e' (substTy subst co)), uds)
637 specExpr subst (Note note body)
638   = specExpr subst body         `thenSM` \ (body', uds) ->
639     returnSM (Note (specNote subst note) body', uds)
640
641
642 ---------------- Applications might generate a call instance --------------------
643 specExpr subst expr@(App fun arg)
644   = go expr []
645   where
646     go (App fun arg) args = specExpr subst arg  `thenSM` \ (arg', uds_arg) ->
647                             go fun (arg':args)  `thenSM` \ (fun', uds_app) ->
648                             returnSM (App fun' arg', uds_arg `plusUDs` uds_app)
649
650     go (Var f)       args = case specVar subst f of
651                                 Var f' -> returnSM (Var f', mkCallUDs subst f' args)
652                                 e'     -> returnSM (e', emptyUDs)       -- I don't expect this!
653     go other         args = specExpr subst other
654
655 ---------------- Lambda/case require dumping of usage details --------------------
656 specExpr subst e@(Lam _ _)
657   = specExpr subst' body        `thenSM` \ (body', uds) ->
658     let
659         (filtered_uds, body'') = dumpUDs bndrs' uds body'
660     in
661     returnSM (mkLams bndrs' body'', filtered_uds)
662   where
663     (bndrs, body) = collectBinders e
664     (subst', bndrs') = substBndrs subst bndrs
665         -- More efficient to collect a group of binders together all at once
666         -- and we don't want to split a lambda group with dumped bindings
667
668 specExpr subst (Case scrut case_bndr ty alts)
669   = specExpr subst scrut                `thenSM` \ (scrut', uds_scrut) ->
670     mapAndCombineSM spec_alt alts       `thenSM` \ (alts', uds_alts) ->
671     returnSM (Case scrut' case_bndr' (substTy subst ty) alts', uds_scrut `plusUDs` uds_alts)
672   where
673     (subst_alt, case_bndr') = substBndr subst case_bndr
674         -- No need to clone case binder; it can't float like a let(rec)
675
676     spec_alt (con, args, rhs)
677         = specExpr subst_rhs rhs                `thenSM` \ (rhs', uds) ->
678           let
679              (uds', rhs'') = dumpUDs args uds rhs'
680           in
681           returnSM ((con, args', rhs''), uds')
682         where
683           (subst_rhs, args') = substBndrs subst_alt args
684
685 ---------------- Finally, let is the interesting case --------------------
686 specExpr subst (Let bind body)
687   =     -- Clone binders
688     cloneBindSM subst bind                      `thenSM` \ (rhs_subst, body_subst, bind') ->
689         
690         -- Deal with the body
691     specExpr body_subst body                    `thenSM` \ (body', body_uds) ->
692
693         -- Deal with the bindings
694     specBind rhs_subst bind' body_uds           `thenSM` \ (binds', uds) ->
695
696         -- All done
697     returnSM (foldr Let body' binds', uds)
698
699 -- Must apply the type substitution to coerceions
700 specNote subst note           = note
701 \end{code}
702
703 %************************************************************************
704 %*                                                                      *
705 \subsubsection{Dealing with a binding}
706 %*                                                                      *
707 %************************************************************************
708
709 \begin{code}
710 specBind :: Subst                       -- Use this for RHSs
711          -> CoreBind
712          -> UsageDetails                -- Info on how the scope of the binding
713          -> SpecM ([CoreBind],          -- New bindings
714                    UsageDetails)        -- And info to pass upstream
715
716 specBind rhs_subst bind body_uds
717   = specBindItself rhs_subst bind (calls body_uds)      `thenSM` \ (bind', bind_uds) ->
718     let
719         bndrs   = bindersOf bind
720         all_uds = zapCalls bndrs (body_uds `plusUDs` bind_uds)
721                         -- It's important that the `plusUDs` is this way round,
722                         -- because body_uds may bind dictionaries that are
723                         -- used in the calls passed to specDefn.  So the
724                         -- dictionary bindings in bind_uds may mention 
725                         -- dictionaries bound in body_uds.
726     in
727     case splitUDs bndrs all_uds of
728
729         (_, ([],[]))    -- This binding doesn't bind anything needed
730                         -- in the UDs, so put the binding here
731                         -- This is the case for most non-dict bindings, except
732                         -- for the few that are mentioned in a dict binding
733                         -- that is floating upwards in body_uds
734                 -> returnSM ([bind'], all_uds)
735
736         (float_uds, (dict_binds, calls))        -- This binding is needed in the UDs, so float it out
737                 -> returnSM ([], float_uds `plusUDs` mkBigUD bind' dict_binds calls)
738    
739
740 -- A truly gruesome function
741 mkBigUD bind@(NonRec _ _) dbs calls
742   =     -- Common case: non-recursive and no specialisations
743         -- (if there were any specialistions it would have been made recursive)
744     MkUD { dict_binds = listToBag (mkDB bind : dbs),
745            calls = listToCallDetails calls }
746
747 mkBigUD bind dbs calls
748   =     -- General case
749     MkUD { dict_binds = unitBag (mkDB (Rec (bind_prs bind ++ dbsToPairs dbs))),
750                         -- Make a huge Rec
751            calls = listToCallDetails calls }
752   where
753     bind_prs (NonRec b r) = [(b,r)]
754     bind_prs (Rec prs)    = prs
755
756     dbsToPairs []             = []
757     dbsToPairs ((bind,_):dbs) = bind_prs bind ++ dbsToPairs dbs
758
759 -- specBindItself deals with the RHS, specialising it according
760 -- to the calls found in the body (if any)
761 specBindItself rhs_subst (NonRec bndr rhs) call_info
762   = specDefn rhs_subst call_info (bndr,rhs)     `thenSM` \ ((bndr',rhs'), spec_defns, spec_uds) ->
763     let
764         new_bind | null spec_defns = NonRec bndr' rhs'
765                  | otherwise       = Rec ((bndr',rhs'):spec_defns)
766                 -- bndr' mentions the spec_defns in its SpecEnv
767                 -- Not sure why we couln't just put the spec_defns first
768     in
769     returnSM (new_bind, spec_uds)
770
771 specBindItself rhs_subst (Rec pairs) call_info
772   = mapSM (specDefn rhs_subst call_info) pairs  `thenSM` \ stuff ->
773     let
774         (pairs', spec_defns_s, spec_uds_s) = unzip3 stuff
775         spec_defns = concat spec_defns_s
776         spec_uds   = plusUDList spec_uds_s
777         new_bind   = Rec (spec_defns ++ pairs')
778     in
779     returnSM (new_bind, spec_uds)
780     
781
782 specDefn :: Subst                       -- Subst to use for RHS
783          -> CallDetails                 -- Info on how it is used in its scope
784          -> (Id, CoreExpr)              -- The thing being bound and its un-processed RHS
785          -> SpecM ((Id, CoreExpr),      -- The thing and its processed RHS
786                                         --      the Id may now have specialisations attached
787                    [(Id,CoreExpr)],     -- Extra, specialised bindings
788                    UsageDetails         -- Stuff to fling upwards from the RHS and its
789             )                           --      specialised versions
790
791 specDefn subst calls (fn, rhs)
792         -- The first case is the interesting one
793   |  rhs_tyvars `lengthIs`     n_tyvars -- Rhs of fn's defn has right number of big lambdas
794   && rhs_ids    `lengthAtLeast` n_dicts -- and enough dict args
795   && notNull calls_for_me               -- And there are some calls to specialise
796
797 --   && not (certainlyWillInline (idUnfolding fn))      -- And it's not small
798 --      See Note [Inline specialisation] for why we do not 
799 --      switch off specialisation for inline functions
800
801   =   -- Specialise the body of the function
802     specExpr subst rhs                                  `thenSM` \ (rhs', rhs_uds) ->
803
804       -- Make a specialised version for each call in calls_for_me
805     mapSM spec_call calls_for_me                `thenSM` \ stuff ->
806     let
807         (spec_defns, spec_uds, spec_rules) = unzip3 stuff
808
809         fn' = addIdSpecialisations fn spec_rules
810     in
811     returnSM ((fn',rhs'), 
812               spec_defns, 
813               rhs_uds `plusUDs` plusUDList spec_uds)
814
815   | otherwise   -- No calls or RHS doesn't fit our preconceptions
816   = WARN( notNull calls_for_me, ptext SLIT("Missed specialisation opportunity for") <+> ppr fn )
817           -- Note [Specialisation shape]
818     specExpr subst rhs                  `thenSM` \ (rhs', rhs_uds) ->
819     returnSM ((fn, rhs'), [], rhs_uds)
820   
821   where
822     fn_type            = idType fn
823     (tyvars, theta, _) = tcSplitSigmaTy fn_type
824     n_tyvars           = length tyvars
825     n_dicts            = length theta
826     inline_prag        = idInlinePragma fn
827
828         -- It's important that we "see past" any INLINE pragma
829         -- else we'll fail to specialise an INLINE thing
830     (inline_rhs, rhs_inside) = dropInline rhs
831     (rhs_tyvars, rhs_ids, rhs_body) = collectTyAndValBinders rhs_inside
832
833     rhs_dicts = take n_dicts rhs_ids
834     rhs_bndrs = rhs_tyvars ++ rhs_dicts
835     body      = mkLams (drop n_dicts rhs_ids) rhs_body
836                 -- Glue back on the non-dict lambdas
837
838     calls_for_me = case lookupFM calls fn of
839                         Nothing -> []
840                         Just cs -> fmToList cs
841
842     ----------------------------------------------------------
843         -- Specialise to one particular call pattern
844     spec_call :: (CallKey, ([DictExpr], VarSet))        -- Call instance
845               -> SpecM ((Id,CoreExpr),                  -- Specialised definition
846                         UsageDetails,                   -- Usage details from specialised body
847                         CoreRule)                       -- Info for the Id's SpecEnv
848     spec_call (CallKey call_ts, (call_ds, call_fvs))
849       = ASSERT( call_ts `lengthIs` n_tyvars  && call_ds `lengthIs` n_dicts )
850                 -- Calls are only recorded for properly-saturated applications
851         
852         -- Suppose f's defn is  f = /\ a b c d -> \ d1 d2 -> rhs        
853         -- Supppose the call is for f [Just t1, Nothing, Just t3, Nothing] [dx1, dx2]
854
855         -- Construct the new binding
856         --      f1 = SUBST[a->t1,c->t3, d1->d1', d2->d2'] (/\ b d -> rhs)
857         -- PLUS the usage-details
858         --      { d1' = dx1; d2' = dx2 }
859         -- where d1', d2' are cloned versions of d1,d2, with the type substitution applied.
860         --
861         -- Note that the substitution is applied to the whole thing.
862         -- This is convenient, but just slightly fragile.  Notably:
863         --      * There had better be no name clashes in a/b/c/d
864         --
865         let
866                 -- poly_tyvars = [b,d] in the example above
867                 -- spec_tyvars = [a,c] 
868                 -- ty_args     = [t1,b,t3,d]
869            poly_tyvars = [tv | (tv, Nothing) <- rhs_tyvars `zip` call_ts]
870            spec_tyvars = [tv | (tv, Just _)  <- rhs_tyvars `zip` call_ts]
871            ty_args     = zipWithEqual "spec_call" mk_ty_arg rhs_tyvars call_ts
872                        where
873                          mk_ty_arg rhs_tyvar Nothing   = Type (mkTyVarTy rhs_tyvar)
874                          mk_ty_arg rhs_tyvar (Just ty) = Type ty
875            rhs_subst  = extendTvSubstList subst (spec_tyvars `zip` [ty | Just ty <- call_ts])
876         in
877         cloneBinders rhs_subst rhs_dicts                `thenSM` \ (rhs_subst', rhs_dicts') ->
878         let
879            inst_args = ty_args ++ map Var rhs_dicts'
880
881                 -- Figure out the type of the specialised function
882            body_ty = applyTypeToArgs rhs fn_type inst_args
883            (lam_args, app_args)                 -- Add a dummy argument if body_ty is unlifted
884                 | isUnLiftedType body_ty        -- C.f. WwLib.mkWorkerArgs
885                 = (poly_tyvars ++ [voidArgId], poly_tyvars ++ [realWorldPrimId])
886                 | otherwise = (poly_tyvars, poly_tyvars)
887            spec_id_ty = mkPiTypes lam_args body_ty
888         in
889         newIdSM fn spec_id_ty                           `thenSM` \ spec_f ->
890         specExpr rhs_subst' (mkLams lam_args body)      `thenSM` \ (spec_rhs, rhs_uds) ->       
891         let
892                 -- The rule to put in the function's specialisation is:
893                 --      forall b,d, d1',d2'.  f t1 b t3 d d1' d2' = f1 b d  
894            spec_env_rule = mkLocalRule (mkFastString ("SPEC " ++ showSDoc (ppr fn)))
895                                 inline_prag     -- Note [Auto-specialisation and RULES]
896                                 (idName fn)
897                                 (poly_tyvars ++ rhs_dicts')
898                                 inst_args 
899                                 (mkVarApps (Var spec_f) app_args)
900
901                 -- Add the { d1' = dx1; d2' = dx2 } usage stuff
902            final_uds = foldr addDictBind rhs_uds (my_zipEqual "spec_call" rhs_dicts' call_ds)
903
904            spec_pr | inline_rhs = (spec_f `setInlinePragma` inline_prag, Note InlineMe spec_rhs)
905                    | otherwise  = (spec_f,                               spec_rhs)
906         in
907         returnSM (spec_pr, final_uds, spec_env_rule)
908
909       where
910         my_zipEqual doc xs ys 
911 #ifdef DEBUG
912          | not (equalLength xs ys) = pprPanic "my_zipEqual" (vcat 
913                                                 [ ppr xs, ppr ys
914                                                 , ppr fn <+> ppr call_ts
915                                                 , ppr (idType fn), ppr theta
916                                                 , ppr n_dicts, ppr rhs_dicts 
917                                                 , ppr rhs])
918 #endif
919          | otherwise               = zipEqual doc xs ys
920 \end{code}
921
922 Note [Auto-specialisation and RULES]
923 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
924 Consider:
925    g :: Num a => a -> a
926    g = ...
927
928    f :: (Int -> Int) -> Int
929    f w = ...
930    {-# RULE f g = 0 #-}
931
932 Suppose that auto-specialisation makes a specialised version of
933 g::Int->Int That version won't appear in the LHS of the RULE for f.
934 So if the specialisation rule fires too early, the rule for f may
935 never fire. 
936
937 It might be possible to add new rules, to "complete" the rewrite system.
938 Thus when adding
939         RULE forall d. g Int d = g_spec
940 also add
941         RULE f g_spec = 0
942
943 But that's a bit complicated.  For now we ask the programmer's help,
944 by *copying the INLINE activation pragma* to the auto-specialised rule.
945 So if g says {-# NOINLINE[2] g #-}, then the auto-spec rule will also
946 not be active until phase 2.  
947
948
949 Note [Specialisation shape]
950 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
951 We only specialise a function if it has visible top-level lambdas
952 corresponding to its overloading.  E.g. if
953         f :: forall a. Eq a => ....
954 then its body must look like
955         f = /\a. \d. ...
956
957 Reason: when specialising the body for a call (f ty dexp), we want to
958 substitute dexp for d, and pick up specialised calls in the body of f.
959
960 This doesn't always work.  One example I came across was htis:
961         newtype Gen a = MkGen{ unGen :: Int -> a }
962
963         choose :: Eq a => a -> Gen a
964         choose n = MkGen (\r -> n)
965
966         oneof = choose (1::Int)
967
968 It's a silly exapmle, but we get
969         choose = /\a. g `cast` co
970 where choose doesn't have any dict arguments.  Thus far I have not
971 tried to fix this (wait till there's a real example).
972
973
974 Note [Inline specialisations]
975 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
976 We transfer to the specialised function any INLINE stuff from the
977 original.  This means (a) the Activation in the IdInfo, and (b) any
978 InlineMe on the RHS.  
979
980 This is a change (Jun06).  Previously the idea is that the point of
981 inlining was precisely to specialise the function at its call site,
982 and that's not so important for the specialised copies.  But
983 *pragma-directed* specialisation now takes place in the
984 typechecker/desugarer, with manually specified INLINEs.  The
985 specialiation here is automatic.  It'd be very odd if a function
986 marked INLINE was specialised (because of some local use), and then
987 forever after (including importing modules) the specialised version
988 wasn't INLINEd.  After all, the programmer said INLINE!
989
990 You might wonder why we don't just not specialise INLINE functions.
991 It's because even INLINE functions are sometimes not inlined, when 
992 they aren't applied to interesting arguments.  But perhaps the type
993 arguments alone are enough to specialise (even though the args are too
994 boring to trigger inlining), and it's certainly better to call the 
995 specialised version.
996
997 A case in point is dictionary functions, which are current marked
998 INLINE, but which are worth specialising.
999
1000 \begin{code}
1001 dropInline :: CoreExpr -> (Bool, CoreExpr)
1002 dropInline (Note InlineMe rhs) = (True,  rhs)
1003 dropInline rhs                 = (False, rhs)
1004 \end{code}
1005
1006 %************************************************************************
1007 %*                                                                      *
1008 \subsubsection{UsageDetails and suchlike}
1009 %*                                                                      *
1010 %************************************************************************
1011
1012 \begin{code}
1013 data UsageDetails 
1014   = MkUD {
1015         dict_binds :: !(Bag DictBind),
1016                         -- Floated dictionary bindings
1017                         -- The order is important; 
1018                         -- in ds1 `union` ds2, bindings in ds2 can depend on those in ds1
1019                         -- (Remember, Bags preserve order in GHC.)
1020
1021         calls     :: !CallDetails
1022     }
1023
1024 type DictBind = (CoreBind, VarSet)
1025         -- The set is the free vars of the binding
1026         -- both tyvars and dicts
1027
1028 type DictExpr = CoreExpr
1029
1030 emptyUDs = MkUD { dict_binds = emptyBag, calls = emptyFM }
1031
1032 type ProtoUsageDetails = ([DictBind],
1033                           [(Id, CallKey, ([DictExpr], VarSet))]
1034                          )
1035
1036 ------------------------------------------------------------                    
1037 type CallDetails  = FiniteMap Id CallInfo
1038 newtype CallKey   = CallKey [Maybe Type]                        -- Nothing => unconstrained type argument
1039 type CallInfo     = FiniteMap CallKey
1040                               ([DictExpr], VarSet)              -- Dict args and the vars of the whole
1041                                                                 -- call (including tyvars)
1042                                                                 -- [*not* include the main id itself, of course]
1043         -- The finite maps eliminate duplicates
1044         -- The list of types and dictionaries is guaranteed to
1045         -- match the type of f
1046
1047 -- Type isn't an instance of Ord, so that we can control which
1048 -- instance we use.  That's tiresome here.  Oh well
1049 instance Eq CallKey where
1050   k1 == k2 = case k1 `compare` k2 of { EQ -> True; other -> False }
1051
1052 instance Ord CallKey where
1053   compare (CallKey k1) (CallKey k2) = cmpList cmp k1 k2
1054                 where
1055                   cmp Nothing Nothing     = EQ
1056                   cmp Nothing (Just t2)   = LT
1057                   cmp (Just t1) Nothing   = GT
1058                   cmp (Just t1) (Just t2) = tcCmpType t1 t2
1059
1060 unionCalls :: CallDetails -> CallDetails -> CallDetails
1061 unionCalls c1 c2 = plusFM_C plusFM c1 c2
1062
1063 singleCall :: Id -> [Maybe Type] -> [DictExpr] -> CallDetails
1064 singleCall id tys dicts 
1065   = unitFM id (unitFM (CallKey tys) (dicts, call_fvs))
1066   where
1067     call_fvs = exprsFreeVars dicts `unionVarSet` tys_fvs
1068     tys_fvs  = tyVarsOfTypes (catMaybes tys)
1069         -- The type args (tys) are guaranteed to be part of the dictionary
1070         -- types, because they are just the constrained types,
1071         -- and the dictionary is therefore sure to be bound
1072         -- inside the binding for any type variables free in the type;
1073         -- hence it's safe to neglect tyvars free in tys when making
1074         -- the free-var set for this call
1075         -- BUT I don't trust this reasoning; play safe and include tys_fvs
1076         --
1077         -- We don't include the 'id' itself.
1078
1079 listToCallDetails calls
1080   = foldr (unionCalls . mk_call) emptyFM calls
1081   where
1082     mk_call (id, tys, dicts_w_fvs) = unitFM id (unitFM tys dicts_w_fvs)
1083         -- NB: the free vars of the call are provided
1084
1085 callDetailsToList calls = [ (id,tys,dicts)
1086                           | (id,fm) <- fmToList calls,
1087                             (tys, dicts) <- fmToList fm
1088                           ]
1089
1090 mkCallUDs subst f args 
1091   | null theta
1092   || not (all isClassPred theta)        
1093         -- Only specialise if all overloading is on class params. 
1094         -- In ptic, with implicit params, the type args
1095         --  *don't* say what the value of the implicit param is!
1096   || not (spec_tys `lengthIs` n_tyvars)
1097   || not ( dicts   `lengthIs` n_dicts)
1098   || maybeToBool (lookupRule (\act -> True) (substInScope subst) emptyRuleBase f args)
1099         -- There's already a rule covering this call.  A typical case
1100         -- is where there's an explicit user-provided rule.  Then
1101         -- we don't want to create a specialised version 
1102         -- of the function that overlaps.
1103   = emptyUDs    -- Not overloaded, or no specialisation wanted
1104
1105   | otherwise
1106   = MkUD {dict_binds = emptyBag, 
1107           calls      = singleCall f spec_tys dicts
1108     }
1109   where
1110     (tyvars, theta, _) = tcSplitSigmaTy (idType f)
1111     constrained_tyvars = tyVarsOfTheta theta 
1112     n_tyvars           = length tyvars
1113     n_dicts            = length theta
1114
1115     spec_tys = [mk_spec_ty tv ty | (tv, Type ty) <- tyvars `zip` args]
1116     dicts    = [dict_expr | (_, dict_expr) <- theta `zip` (drop n_tyvars args)]
1117     
1118     mk_spec_ty tyvar ty 
1119         | tyvar `elemVarSet` constrained_tyvars = Just ty
1120         | otherwise                             = Nothing
1121
1122 ------------------------------------------------------------                    
1123 plusUDs :: UsageDetails -> UsageDetails -> UsageDetails
1124 plusUDs (MkUD {dict_binds = db1, calls = calls1})
1125         (MkUD {dict_binds = db2, calls = calls2})
1126   = MkUD {dict_binds = d, calls = c}
1127   where
1128     d = db1    `unionBags`   db2 
1129     c = calls1 `unionCalls`  calls2
1130
1131 plusUDList = foldr plusUDs emptyUDs
1132
1133 -- zapCalls deletes calls to ids from uds
1134 zapCalls ids uds = uds {calls = delListFromFM (calls uds) ids}
1135
1136 mkDB bind = (bind, bind_fvs bind)
1137
1138 bind_fvs (NonRec bndr rhs) = pair_fvs (bndr,rhs)
1139 bind_fvs (Rec prs)         = foldl delVarSet rhs_fvs bndrs
1140                            where
1141                              bndrs = map fst prs
1142                              rhs_fvs = unionVarSets (map pair_fvs prs)
1143
1144 pair_fvs (bndr, rhs) = exprFreeVars rhs `unionVarSet` idFreeVars bndr
1145         -- Don't forget variables mentioned in the
1146         -- rules of the bndr.  C.f. OccAnal.addRuleUsage
1147         -- Also tyvars mentioned in its type; they may not appear in the RHS
1148         --      type T a = Int
1149         --      x :: T a = 3
1150
1151 addDictBind (dict,rhs) uds = uds { dict_binds = mkDB (NonRec dict rhs) `consBag` dict_binds uds }
1152
1153 dumpAllDictBinds (MkUD {dict_binds = dbs}) binds
1154   = foldrBag add binds dbs
1155   where
1156     add (bind,_) binds = bind : binds
1157
1158 dumpUDs :: [CoreBndr]
1159         -> UsageDetails -> CoreExpr
1160         -> (UsageDetails, CoreExpr)
1161 dumpUDs bndrs uds body
1162   = (free_uds, foldr add_let body dict_binds)
1163   where
1164     (free_uds, (dict_binds, _)) = splitUDs bndrs uds
1165     add_let (bind,_) body       = Let bind body
1166
1167 splitUDs :: [CoreBndr]
1168          -> UsageDetails
1169          -> (UsageDetails,              -- These don't mention the binders
1170              ProtoUsageDetails)         -- These do
1171              
1172 splitUDs bndrs uds@(MkUD {dict_binds = orig_dbs, 
1173                           calls      = orig_calls})
1174
1175   = if isEmptyBag dump_dbs && null dump_calls then
1176         -- Common case: binder doesn't affect floats
1177         (uds, ([],[]))  
1178
1179     else
1180         -- Binders bind some of the fvs of the floats
1181         (MkUD {dict_binds = free_dbs, 
1182                calls      = listToCallDetails free_calls},
1183          (bagToList dump_dbs, dump_calls)
1184         )
1185
1186   where
1187     bndr_set = mkVarSet bndrs
1188
1189     (free_dbs, dump_dbs, dump_idset) 
1190           = foldlBag dump_db (emptyBag, emptyBag, bndr_set) orig_dbs
1191                 -- Important that it's foldl not foldr;
1192                 -- we're accumulating the set of dumped ids in dump_set
1193
1194         -- Filter out any calls that mention things that are being dumped
1195     orig_call_list                 = callDetailsToList orig_calls
1196     (dump_calls, free_calls)       = partition captured orig_call_list
1197     captured (id,tys,(dicts, fvs)) =  fvs `intersectsVarSet` dump_idset
1198                                    || id `elemVarSet` dump_idset
1199
1200     dump_db (free_dbs, dump_dbs, dump_idset) db@(bind, fvs)
1201         | dump_idset `intersectsVarSet` fvs     -- Dump it
1202         = (free_dbs, dump_dbs `snocBag` db,
1203            extendVarSetList dump_idset (bindersOf bind))
1204
1205         | otherwise     -- Don't dump it
1206         = (free_dbs `snocBag` db, dump_dbs, dump_idset)
1207 \end{code}
1208
1209
1210 %************************************************************************
1211 %*                                                                      *
1212 \subsubsection{Boring helper functions}
1213 %*                                                                      *
1214 %************************************************************************
1215
1216 \begin{code}
1217 type SpecM a = UniqSM a
1218
1219 thenSM    = thenUs
1220 returnSM  = returnUs
1221 getUniqSM = getUniqueUs
1222 mapSM     = mapUs
1223 initSM    = initUs_
1224
1225 mapAndCombineSM f []     = returnSM ([], emptyUDs)
1226 mapAndCombineSM f (x:xs) = f x  `thenSM` \ (y, uds1) ->
1227                            mapAndCombineSM f xs `thenSM` \ (ys, uds2) ->
1228                            returnSM (y:ys, uds1 `plusUDs` uds2)
1229
1230 cloneBindSM :: Subst -> CoreBind -> SpecM (Subst, Subst, CoreBind)
1231 -- Clone the binders of the bind; return new bind with the cloned binders
1232 -- Return the substitution to use for RHSs, and the one to use for the body
1233 cloneBindSM subst (NonRec bndr rhs)
1234   = getUs       `thenUs` \ us ->
1235     let
1236         (subst', bndr') = cloneIdBndr subst us bndr
1237     in
1238     returnUs (subst, subst', NonRec bndr' rhs)
1239
1240 cloneBindSM subst (Rec pairs)
1241   = getUs       `thenUs` \ us ->
1242     let
1243         (subst', bndrs') = cloneRecIdBndrs subst us (map fst pairs)
1244     in
1245     returnUs (subst', subst', Rec (bndrs' `zip` map snd pairs))
1246
1247 cloneBinders subst bndrs
1248   = getUs       `thenUs` \ us ->
1249     returnUs (cloneIdBndrs subst us bndrs)
1250
1251 newIdSM old_id new_ty
1252   = getUniqSM           `thenSM` \ uniq ->
1253     let 
1254         -- Give the new Id a similar occurrence name to the old one
1255         name   = idName old_id
1256         new_id = mkUserLocal (mkSpecOcc (nameOccName name)) uniq new_ty (getSrcSpan name)
1257     in
1258     returnSM new_id
1259 \end{code}
1260
1261
1262                 Old (but interesting) stuff about unboxed bindings
1263                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1264
1265 What should we do when a value is specialised to a *strict* unboxed value?
1266
1267         map_*_* f (x:xs) = let h = f x
1268                                t = map f xs
1269                            in h:t
1270
1271 Could convert let to case:
1272
1273         map_*_Int# f (x:xs) = case f x of h# ->
1274                               let t = map f xs
1275                               in h#:t
1276
1277 This may be undesirable since it forces evaluation here, but the value
1278 may not be used in all branches of the body. In the general case this
1279 transformation is impossible since the mutual recursion in a letrec
1280 cannot be expressed as a case.
1281
1282 There is also a problem with top-level unboxed values, since our
1283 implementation cannot handle unboxed values at the top level.
1284
1285 Solution: Lift the binding of the unboxed value and extract it when it
1286 is used:
1287
1288         map_*_Int# f (x:xs) = let h = case (f x) of h# -> _Lift h#
1289                                   t = map f xs
1290                               in case h of
1291                                  _Lift h# -> h#:t
1292
1293 Now give it to the simplifier and the _Lifting will be optimised away.
1294
1295 The benfit is that we have given the specialised "unboxed" values a
1296 very simplep lifted semantics and then leave it up to the simplifier to
1297 optimise it --- knowing that the overheads will be removed in nearly
1298 all cases.
1299
1300 In particular, the value will only be evaluted in the branches of the
1301 program which use it, rather than being forced at the point where the
1302 value is bound. For example:
1303
1304         filtermap_*_* p f (x:xs)
1305           = let h = f x
1306                 t = ...
1307             in case p x of
1308                 True  -> h:t
1309                 False -> t
1310    ==>
1311         filtermap_*_Int# p f (x:xs)
1312           = let h = case (f x) of h# -> _Lift h#
1313                 t = ...
1314             in case p x of
1315                 True  -> case h of _Lift h#
1316                            -> h#:t
1317                 False -> t
1318
1319 The binding for h can still be inlined in the one branch and the
1320 _Lifting eliminated.
1321
1322
1323 Question: When won't the _Lifting be eliminated?
1324
1325 Answer: When they at the top-level (where it is necessary) or when
1326 inlining would duplicate work (or possibly code depending on
1327 options). However, the _Lifting will still be eliminated if the
1328 strictness analyser deems the lifted binding strict.
1329