[project @ 2003-06-27 21:17:24 by simonpj]
[ghc-hetmet.git] / ghc / compiler / simplCore / FloatOut.lhs
index 046ab3e..c598b4a 100644 (file)
@@ -1,43 +1,84 @@
 %
-% (c) The GRASP/AQUA Project, Glasgow University, 1992-1995
+% (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
 %
 \section[FloatOut]{Float bindings outwards (towards the top level)}
 
 ``Long-distance'' floating of bindings towards the top level.
 
 \begin{code}
-#include "HsVersions.h"
-
 module FloatOut ( floatOutwards ) where
 
-IMPORT_Trace           -- ToDo: rm (debugging)
-import Pretty
-import Outputable
+#include "HsVersions.h"
 
-import PlainCore
+import CoreSyn
+import CoreUtils       ( mkSCC )
 
-import BasicLit                ( BasicLit(..), PrimKind )
-import CmdLineOpts     ( GlobalSwitch(..) )
+import CmdLineOpts     ( DynFlags, DynFlag(..), FloatOutSwitches(..) )
+import ErrUtils                ( dumpIfSet_dyn )
 import CostCentre      ( dupifyCC, CostCentre )
-import SetLevels
-import Id              ( eqId )
-import IdEnv
-import Maybes          ( Maybe(..), catMaybes, maybeToBool )
-import SplitUniq
-import Util
+import Id              ( Id )
+import CoreLint                ( showPass, endPass )
+import SetLevels       ( Level(..), LevelledExpr, LevelledBind,
+                         setLevels, ltMajLvl, ltLvl, isTopLvl )
+import UniqSupply       ( UniqSupply )
+import List            ( partition )
+import Outputable
+import Util             ( notNull )
 \end{code}
 
+       -----------------
+       Overall game plan
+       -----------------
+
+The Big Main Idea is:
+
+       To float out sub-expressions that can thereby get outside
+       a non-one-shot value lambda, and hence may be shared.
+
+
+To achieve this we may need to do two thing:
+
+   a) Let-bind the sub-expression:
+
+       f (g x)  ==>  let lvl = f (g x) in lvl
+
+      Now we can float the binding for 'lvl'.  
+
+   b) More than that, we may need to abstract wrt a type variable
+
+       \x -> ... /\a -> let v = ...a... in ....
+
+      Here the binding for v mentions 'a' but not 'x'.  So we
+      abstract wrt 'a', to give this binding for 'v':
+
+           vp = /\a -> ...a...
+           v  = vp a
+
+      Now the binding for vp can float out unimpeded.
+      I can't remember why this case seemed important enough to
+      deal with, but I certainly found cases where important floats
+      didn't happen if we did not abstract wrt tyvars.
+
+With this in mind we can also achieve another goal: lambda lifting.
+We can make an arbitrary (function) binding float to top level by
+abstracting wrt *all* local variables, not just type variables, leaving
+a binding that can be floated right to top level.  Whether or not this
+happens is controlled by a flag.
+
+
 Random comments
 ~~~~~~~~~~~~~~~
-At the moment we never float a binding out to between two adjacent lambdas.  For
-example:
+
+At the moment we never float a binding out to between two adjacent
+lambdas.  For example:
+
 @
        \x y -> let t = x+x in ...
 ===>
        \x -> let t = x+x in \y -> ...
 @
-Reason: this is less efficient in the case where the original lambda is
-never partially applied.
+Reason: this is less efficient in the case where the original lambda
+is never partially applied.
 
 But there's a case I've seen where this might not be true.  Consider:
 @
@@ -51,25 +92,15 @@ It turns out that this generates a subexpression of the form
 @
        \deq x ys -> let eq = eqFromEqDict deq in ...
 @
-which might usefully be separated to
+vwhich might usefully be separated to
 @
        \deq -> let eq = eqFromEqDict deq in \xy -> ...
 @
 Well, maybe.  We don't do this at the moment.
 
-
 \begin{code}
-type LevelledExpr  = CoreExpr   (Id, Level) Id
-type LevelledBind  = CoreBinding (Id, Level) Id
-type FloatingBind  = (Level, Floater)
-type FloatingBinds = [FloatingBind]
-
-data Floater = LetFloater     PlainCoreBinding
-
-            | CaseFloater   (PlainCoreExpr -> PlainCoreExpr)
-                               -- Give me a right-hand side of the
-                               -- (usually single) alternative, and
-                               -- I'll build the case
+type FloatBind     = (Level, CoreBind)
+type FloatBinds    = [FloatBind]
 \end{code}
 
 %************************************************************************
@@ -79,46 +110,48 @@ data Floater = LetFloater     PlainCoreBinding
 %************************************************************************
 
 \begin{code}
-floatOutwards :: (GlobalSwitch -> Bool)         -- access to all global cmd-line opts
-             -> SplitUniqSupply
-             -> PlainCoreProgram 
-             -> PlainCoreProgram
-
-floatOutwards sw_chker us pgm
-  = case (setLevels pgm sw_chker us) of { annotated_w_levels ->
-
-    case unzip (map (floatTopBind sw_chker) annotated_w_levels)
-               of { (fss, final_toplev_binds_s) ->
-
-    (if sw_chker D_verbose_core2core
-     then pprTrace "Levels added:\n" (ppr PprDebug annotated_w_levels)
-     else id
-    )
-    ( if not (sw_chker D_simplifier_stats) then
-        id
-      else
-        let
-           (tlets, ntlets, lams) = get_stats (sum_stats fss)
-        in
-        pprTrace "FloatOut stats: " (ppBesides [
-               ppInt tlets,  ppStr " Lets floated to top level; ",
-               ppInt ntlets, ppStr " Lets floated elsewhere; from ",
-               ppInt lams,   ppStr " Lambda groups"])
-    )
-    concat final_toplev_binds_s
-    }}
+floatOutwards :: DynFlags
+             -> FloatOutSwitches
+             -> UniqSupply 
+             -> [CoreBind] -> IO [CoreBind]
+
+floatOutwards dflags float_sws us pgm
+  = do {
+       showPass dflags float_msg ;
+
+       let { annotated_w_levels = setLevels float_sws pgm us ;
+             (fss, binds_s')    = unzip (map floatTopBind annotated_w_levels)
+           } ;
 
-floatTopBind sw bind@(CoNonRec _ _)
-  = case (floatBind sw nullIdEnv tOP_LEVEL bind) of { (fs, floats, bind', _) ->
+       dumpIfSet_dyn dflags Opt_D_verbose_core2core "Levels added:"
+                 (vcat (map ppr annotated_w_levels));
+
+       let { (tlets, ntlets, lams) = get_stats (sum_stats fss) };
+
+       dumpIfSet_dyn dflags Opt_D_dump_simpl_stats "FloatOut stats:"
+               (hcat [ int tlets,  ptext SLIT(" Lets floated to top level; "),
+                       int ntlets, ptext SLIT(" Lets floated elsewhere; from "),
+                       int lams,   ptext SLIT(" Lambda groups")]);
+
+       endPass dflags float_msg  Opt_D_verbose_core2core (concat binds_s')
+                       {- no specific flag for dumping float-out -} 
+    }
+  where
+    float_msg = showSDoc (text "Float out" <+> parens (sws float_sws))
+    sws (FloatOutSw lam const) = pp_not lam   <+> text "lambdas" <> comma <+>
+                                pp_not const <+> text "constants"
+    pp_not True  = empty
+    pp_not False = text "not"
+
+floatTopBind bind@(NonRec _ _)
+  = case (floatBind bind) of { (fs, floats, bind') ->
     (fs, floatsToBinds floats ++ [bind'])
     }
 
-floatTopBind sw bind@(CoRec _)
-  = case (floatBind sw nullIdEnv tOP_LEVEL bind) of { (fs, floats, CoRec pairs', _) ->
-       -- Actually floats will be empty
-    --false:ASSERT(null floats)
-    (fs, [CoRec (floatsToBindPairs floats ++ pairs')])
-    }
+floatTopBind bind@(Rec _)
+  = case (floatBind bind) of { (fs, floats, Rec pairs') ->
+    WARN( notNull floats, ppr bind $$ ppr floats )
+    (fs, [Rec (floatsToBindPairs floats ++ pairs')]) }
 \end{code}
 
 %************************************************************************
@@ -129,62 +162,46 @@ floatTopBind sw bind@(CoRec _)
 
 
 \begin{code}
-floatBind :: (GlobalSwitch -> Bool) 
-         -> IdEnv Level
-         -> Level
-         -> LevelledBind
-         -> (FloatStats, FloatingBinds, PlainCoreBinding, IdEnv Level)
-
-floatBind sw env lvl (CoNonRec (name,level) rhs)
-  = case (floatExpr sw env level rhs) of { (fs, rhs_floats, rhs') ->
+floatBind :: LevelledBind
+         -> (FloatStats, FloatBinds, CoreBind)
 
-       -- A good dumping point
-    case (partitionByMajorLevel level rhs_floats)      of { (rhs_floats', heres) ->
+floatBind (NonRec (TB name level) rhs)
+  = case (floatRhs level rhs) of { (fs, rhs_floats, rhs') ->
+    (fs, rhs_floats, NonRec name rhs') }
 
-    (fs, rhs_floats',CoNonRec name (install heres rhs'), addOneToIdEnv env name level)
-    }}
-    
-floatBind sw env lvl bind@(CoRec pairs)
+floatBind bind@(Rec pairs)
   = case (unzip3 (map do_pair pairs)) of { (fss, rhss_floats, new_pairs) ->
 
     if not (isTopLvl bind_level) then
        -- Standard case
-       (sum_stats fss, concat rhss_floats, CoRec new_pairs, new_env)
+       (sum_stats fss, concat rhss_floats, Rec new_pairs)
     else
-       {- In a recursive binding, destined for the top level (only), 
-          the rhs floats may contain 
-          references to the bound things.  For example
-
-               f = ...(let v = ...f... in b) ...
-
-          might get floated to
-
-               v = ...f...
-               f = ... b ...
-
-          and hence we must (pessimistically) make all the floats recursive 
-          with the top binding.  Later dependency analysis will unravel it.
-       -}
-
-       (sum_stats fss,
-        [], 
-        CoRec (new_pairs ++ floatsToBindPairs (concat rhss_floats)),
-        new_env)
-
+       -- In a recursive binding, *destined for* the top level
+       -- (only), the rhs floats may contain references to the 
+       -- bound things.  For example
+       --
+       --      f = ...(let v = ...f... in b) ...
+       --
+       --  might get floated to
+       --
+       --      v = ...f...
+       --      f = ... b ...
+       --
+       -- and hence we must (pessimistically) make all the floats recursive
+       -- with the top binding.  Later dependency analysis will unravel it.
+       --
+       -- Can't happen on nested bindings because floatRhs will dump
+       -- the bindings in the RHS (partitionByMajorLevel treats top specially)
+       (sum_stats fss, [],
+        Rec (new_pairs ++ floatsToBindPairs (concat rhss_floats)))
     }
   where
-    new_env = growIdEnvList env (map fst pairs)
-
     bind_level = getBindLevel bind
 
-    do_pair ((name, level), rhs)
-      = case (floatExpr sw new_env level rhs) of { (fs, rhs_floats, rhs') ->
-
-               -- A good dumping point
-       case (partitionByMajorLevel level rhs_floats)   of { (rhs_floats', heres) ->
-
-       (fs, rhs_floats', (name, install heres rhs'))
-       }}
+    do_pair (TB name level, rhs)
+      = case (floatRhs level rhs) of { (fs, rhs_floats, rhs') ->
+       (fs, rhs_floats, (name, rhs'))
+       }
 \end{code}
 
 %************************************************************************
@@ -194,186 +211,122 @@ floatBind sw env lvl bind@(CoRec pairs)
 %************************************************************************
 
 \begin{code}
-floatExpr :: (GlobalSwitch -> Bool) 
-         -> IdEnv Level
-         -> Level 
-         -> LevelledExpr
-         -> (FloatStats, FloatingBinds, PlainCoreExpr)
-
-floatExpr sw env _ (CoVar v)        = (zero_stats, [], CoVar v)
-
-floatExpr sw env _ (CoLit l)     = (zero_stats, [], CoLit l)
-
-floatExpr sw env _ (CoPrim op ty as) = (zero_stats, [], CoPrim op ty as)
-floatExpr sw env _ (CoCon con ty as) = (zero_stats, [], CoCon con ty as)
-
-floatExpr sw env lvl (CoApp e a)
-  = case (floatExpr sw env lvl e) of { (fs, floating_defns, e') ->
-    (fs, floating_defns, CoApp e' a) }
-    
-floatExpr sw env lvl (CoTyApp e ty)
-  = case (floatExpr sw env lvl e) of { (fs, floating_defns, e') ->
-    (fs, floating_defns, CoTyApp e' ty) }
-
-floatExpr sw env lvl (CoTyLam tv e)
-  = let
-       incd_lvl = incMinorLvl lvl
-    in
-    case (floatExpr sw env incd_lvl e) of { (fs, floats, e') ->
-
-       -- Dump any bindings which absolutely cannot go any further
-    case (partitionByLevel incd_lvl floats)    of { (floats', heres) ->
-
-    (fs, floats', CoTyLam tv (install heres e'))
-    }}
-
-floatExpr sw env lvl (CoLam args@((_,incd_lvl):_) rhs)
+floatExpr, floatRhs
+        :: Level
+        -> LevelledExpr
+        -> (FloatStats, FloatBinds, CoreExpr)
+
+floatRhs lvl arg
+  = case (floatExpr lvl arg) of { (fsa, floats, arg') ->
+    case (partitionByMajorLevel lvl floats) of { (floats', heres) ->
+       -- Dump bindings that aren't going to escape from a lambda
+       -- This is to avoid floating the x binding out of
+       --      f (let x = e in b)
+       -- unnecessarily.  It even causes a bug to do so if we have
+       --      y = writeArr# a n (let x = e in b)
+       -- because the y binding is an expr-ok-for-speculation one.
+       -- [SLPJ Dec 01: I don't understand this last comment; 
+       --               writeArr# is not ok-for-spec because of its side effect]
+    (fsa, floats', install heres arg') }}
+
+floatExpr _ (Var v)   = (zeroStats, [], Var v)
+floatExpr _ (Type ty) = (zeroStats, [], Type ty)
+floatExpr _ (Lit lit) = (zeroStats, [], Lit lit)
+         
+floatExpr lvl (App e a)
+  = case (floatExpr lvl e) of { (fse, floats_e, e') ->
+    case (floatRhs  lvl a) of { (fsa, floats_a, a') ->
+    (fse `add_stats` fsa, floats_e ++ floats_a, App e' a') }}
+
+floatExpr lvl lam@(Lam _ _)
   = let
-       args'    = map fst args
-       new_env  = growIdEnvList env args
+       (bndrs_w_lvls, body) = collectBinders lam
+       bndrs                = [b | TB b _ <- bndrs_w_lvls]
+       lvls                 = [l | TB b l <- bndrs_w_lvls]
+
+       -- For the all-tyvar case we are prepared to pull 
+       -- the lets out, to implement the float-out-of-big-lambda
+       -- transform; but otherwise we only float bindings that are
+       -- going to escape a value lambda.
+       -- In particular, for one-shot lambdas we don't float things
+       -- out; we get no saving by so doing.
+       partition_fn | all isTyVar bndrs = partitionByLevel
+                    | otherwise         = partitionByMajorLevel
     in
-    case (floatExpr sw new_env incd_lvl rhs) of { (fs, floats, rhs') ->
+    case (floatExpr (last lvls) body) of { (fs, floats, body') ->
 
        -- Dump any bindings which absolutely cannot go any further
-    case (partitionByLevel incd_lvl floats)    of { (floats', heres) ->
+    case (partition_fn (head lvls) floats)     of { (floats', heres) ->
 
-    (add_to_stats fs floats',
-     floats',
-     mkCoLam args' (install heres rhs'))
+    (add_to_stats fs floats', floats', mkLams bndrs (install heres body'))
     }}
 
-floatExpr sw env lvl (CoSCC cc expr)
-  = case (floatExpr sw env lvl expr)    of { (fs, floating_defns, expr') ->
+floatExpr lvl (Note note@(SCC cc) expr)
+  = case (floatExpr lvl expr)    of { (fs, floating_defns, expr') ->
     let
-       -- annotate bindings floated outwards past an scc expression
+       -- Annotate bindings floated outwards past an scc expression
        -- with the cc.  We mark that cc as "duplicated", though.
 
        annotated_defns = annotate (dupifyCC cc) floating_defns
     in
-    (fs, annotated_defns, CoSCC cc expr') }
+    (fs, annotated_defns, Note note expr') }
   where
-    annotate :: CostCentre -> FloatingBinds -> FloatingBinds
+    annotate :: CostCentre -> FloatBinds -> FloatBinds
 
     annotate dupd_cc defn_groups
       = [ (level, ann_bind floater) | (level, floater) <- defn_groups ]
       where
-       ann_bind (LetFloater (CoNonRec binder rhs)) 
-         = LetFloater (CoNonRec binder (ann_rhs rhs))
-
-       ann_bind (LetFloater (CoRec pairs))
-         = LetFloater (CoRec [(binder, ann_rhs rhs) | (binder, rhs) <- pairs])
-
-       ann_bind (CaseFloater fn) = CaseFloater ( \ rhs -> CoSCC dupd_cc (fn rhs) )
-
-       ann_rhs (CoLam   args e) = CoLam   args (ann_rhs e)
-       ann_rhs (CoTyLam tv   e) = CoTyLam tv   (ann_rhs e)
-       ann_rhs rhs@(CoCon _ _ _)= rhs  -- no point in scc'ing WHNF data
-       ann_rhs rhs              = CoSCC dupd_cc rhs
-
-       -- Note: Nested SCC's are preserved for the benefit of
-       --       cost centre stack profiling (Durham)
-
-floatExpr sw env lvl (CoLet bind body)
-  = case (floatBind sw env     lvl bind) of { (fsb, rhs_floats, bind', new_env) ->
-    case (floatExpr sw new_env lvl body) of { (fse, body_floats, body') ->
-    (add_stats fsb fse,
-     rhs_floats ++ [(bind_lvl, LetFloater bind')] ++ body_floats,
-     body')
+       ann_bind (NonRec binder rhs)
+         = NonRec binder (mkSCC dupd_cc rhs)
+
+       ann_bind (Rec pairs)
+         = Rec [(binder, mkSCC dupd_cc rhs) | (binder, rhs) <- pairs]
+
+floatExpr lvl (Note InlineMe expr)     -- Other than SCCs
+  = case floatExpr InlineCtxt expr of { (fs, floating_defns, expr') ->
+       -- There can be some floating_defns, arising from
+       -- ordinary lets that were there all the time.  It seems
+       -- more efficient to test once here than to avoid putting
+       -- them into floating_defns (which would mean testing for
+       -- inlineCtxt  at every let)
+    (fs, [], Note InlineMe (install floating_defns expr')) }   -- See notes in SetLevels
+
+floatExpr lvl (Note note expr) -- Other than SCCs
+  = case (floatExpr lvl expr)    of { (fs, floating_defns, expr') ->
+    (fs, floating_defns, Note note expr') }
+
+floatExpr lvl (Let bind body)
+  = case (floatBind bind)     of { (fsb, rhs_floats,  bind') ->
+    case (floatExpr lvl body) of { (fse, body_floats, body') ->
+--    if isInlineCtxt lvl then -- No floating inside an InlineMe
+--     ASSERT( null rhs_floats && null body_floats )
+--     (add_stats fsb fse, [], Let bind' body')
+--    else
+       (add_stats fsb fse,
+        rhs_floats ++ [(bind_lvl, bind')] ++ body_floats,
+        body')
     }}
   where
     bind_lvl = getBindLevel bind
 
-floatExpr sw env lvl (CoCase scrut alts)
-  = case (floatExpr sw env lvl scrut) of { (fse, fde, scrut') ->
-
-    case (scrut', float_alts alts) of 
-
-{-     CASE-FLOATING DROPPED FOR NOW.  (SLPJ 7/2/94)
-
-       (CoVar scrut_var, (fda, CoAlgAlts [(con,bs,rhs')] CoNoDefault)) 
-               | scrut_var_lvl `ltMajLvl` lvl ->
-
-               -- Candidate for case floater; scrutinising a variable; it can
-               -- escape outside a lambda; there's only one alternative.
-               (fda ++ fde ++ [case_floater], rhs')
-
-               where
-               case_floater = (scrut_var_lvl, CaseFloater fn)
-               fn body = CoCase scrut' (CoAlgAlts [(con,bs,body)] CoNoDefault)
-               scrut_var_lvl = case lookupIdEnv env scrut_var of
-                                 Nothing  -> Level 0 0
-                                 Just lvl -> unTopify lvl
-
- END OF CASE FLOATING DROPPED          -}
-
-       (_, (fsa, fda, alts')) -> 
-
-               (add_stats fse fsa, fda ++ fde, CoCase scrut' alts') 
-    }
+floatExpr lvl (Case scrut (TB case_bndr case_lvl) alts)
+  = case floatExpr lvl scrut   of { (fse, fde, scrut') ->
+    case floatList float_alt alts      of { (fsa, fda, alts')  ->
+    (add_stats fse fsa, fda ++ fde, Case scrut' case_bndr alts')
+    }}
   where
-      incd_lvl = incMinorLvl lvl
-
-      partition_fn = partitionByMajorLevel
-
-{-     OMITTED
-       We don't want to be too keen about floating lets out of case alternatives
-       because they may benefit from seeing the evaluation done by the case.
-       
-       The main reason for doing this is to allocate in fewer larger blocks
-       but that's really an STG-level issue.
-
-                       case alts of
-                               -- Just one alternative, then dump only
-                               -- what *has* to be dumped
-                       CoAlgAlts  [_] CoNoDefault         -> partitionByLevel
-                       CoAlgAlts  []  (CoBindDefault _ _) -> partitionByLevel
-                       CoPrimAlts [_] CoNoDefault         -> partitionByLevel
-                       CoPrimAlts []  (CoBindDefault _ _) -> partitionByLevel
-
-                               -- If there's more than one alternative, then
-                               -- this is a dumping point
-                       other                              -> partitionByMajorLevel
--}
-
-      float_alts (CoAlgAlts alts deflt)
-       = case (float_deflt  deflt)              of { (fsd,  fdd,  deflt') ->
-         case (unzip3 (map float_alg_alt alts)) of { (fsas, fdas, alts') ->
-         (foldr add_stats fsd fsas,
-          concat fdas ++ fdd,
-          CoAlgAlts alts' deflt') }}
-
-      float_alts (CoPrimAlts alts deflt)
-       = case (float_deflt deflt)                of { (fsd,   fdd, deflt') ->
-         case (unzip3 (map float_prim_alt alts)) of { (fsas, fdas, alts') ->
-         (foldr add_stats fsd fsas,
-          concat fdas ++ fdd,
-          CoPrimAlts alts' deflt') }}
-
-      -------------
-      float_alg_alt (con, bs, rhs)
-       = let
-             bs' = map fst bs
-             new_env = growIdEnvList env bs
-         in
-         case (floatExpr sw new_env incd_lvl rhs)      of { (fs, rhs_floats, rhs') ->
-         case (partition_fn incd_lvl rhs_floats)       of { (rhs_floats', heres) ->
-         (fs, rhs_floats', (con, bs', install heres rhs')) }}
-
-      --------------
-      float_prim_alt (lit, rhs)
-       = case (floatExpr sw env incd_lvl rhs)          of { (fs, rhs_floats, rhs') ->
-         case (partition_fn incd_lvl rhs_floats)       of { (rhs_floats', heres) ->
-         (fs, rhs_floats', (lit, install heres rhs')) }}
-
-      --------------
-      float_deflt CoNoDefault = (zero_stats, [], CoNoDefault)
-
-      float_deflt (CoBindDefault (b,lvl) rhs)
-       = case (floatExpr sw new_env lvl rhs)           of { (fs, rhs_floats, rhs') ->
-         case (partition_fn incd_lvl rhs_floats)       of { (rhs_floats', heres) ->
-         (fs, rhs_floats', CoBindDefault b (install heres rhs')) }}
-       where
-         new_env = addOneToIdEnv env b lvl        
+       -- Use floatRhs for the alternatives, so that we
+       -- don't gratuitiously float bindings out of the RHSs
+    float_alt (con, bs, rhs)
+       = case (floatRhs case_lvl rhs)  of { (fs, rhs_floats, rhs') ->
+         (fs, rhs_floats, (con, [b | TB b _ <- bs], rhs')) }
+
+
+floatList :: (a -> (FloatStats, FloatBinds, b)) -> [a] -> (FloatStats, FloatBinds, [b])
+floatList f [] = (zeroStats, [], [])
+floatList f (a:as) = case f a           of { (fs_a,  binds_a,  b)  ->
+                    case floatList f as of { (fs_as, binds_as, bs) ->
+                    (fs_a `add_stats` fs_as, binds_a ++ binds_as, b:bs) }}
 \end{code}
 
 %************************************************************************
@@ -393,9 +346,9 @@ data FloatStats
 
 get_stats (FlS a b c) = (a, b, c)
 
-zero_stats = FlS 0 0 0
+zeroStats = FlS 0 0 0
 
-sum_stats xs = foldr add_stats zero_stats xs
+sum_stats xs = foldr add_stats zeroStats xs
 
 add_stats (FlS a1 b1 c1) (FlS a2 b2 c2)
   = FlS (a1 + a2) (b1 + b2) (c1 + c2)
@@ -408,6 +361,7 @@ add_to_stats (FlS a b c) floats
     to_very_top (my_lvl, _) = isTopLvl my_lvl
 \end{code}
 
+
 %************************************************************************
 %*                                                                     *
 \subsection{Utility bits for floating}
@@ -415,25 +369,32 @@ add_to_stats (FlS a b c) floats
 %************************************************************************
 
 \begin{code}
-getBindLevel (CoNonRec (_, lvl) _)      = lvl
-getBindLevel (CoRec (((_,lvl), _) : _)) = lvl
+getBindLevel (NonRec (TB _ lvl) _)      = lvl
+getBindLevel (Rec (((TB _ lvl), _) : _)) = lvl
 \end{code}
 
 \begin{code}
 partitionByMajorLevel, partitionByLevel
        :: Level                -- Partitioning level
 
-       -> FloatingBinds        -- Defns to be divided into 2 piles...
+       -> FloatBinds           -- Defns to be divided into 2 piles...
 
-       -> (FloatingBinds,      -- Defns  with level strictly < partition level,
-           FloatingBinds)      -- The rest
+       -> (FloatBinds, -- Defns  with level strictly < partition level,
+           FloatBinds) -- The rest
 
 
-partitionByMajorLevel ctxt_lvl defns 
+partitionByMajorLevel ctxt_lvl defns
   = partition float_further defns
   where
-    float_further (my_lvl, _) = my_lvl `ltMajLvl` ctxt_lvl ||
-                               isTopLvl my_lvl
+       -- Float it if we escape a value lambda, or if we get to the top level
+    float_further (my_lvl, bind) = my_lvl `ltMajLvl` ctxt_lvl || isTopLvl my_lvl
+       -- The isTopLvl part says that if we can get to the top level, say "yes" anyway
+       -- This means that 
+       --      x = f e
+       -- transforms to 
+       --    lvl = e
+       --    x = f lvl
+       -- which is as it should be
 
 partitionByLevel ctxt_lvl defns
   = partition float_further defns
@@ -442,25 +403,20 @@ partitionByLevel ctxt_lvl defns
 \end{code}
 
 \begin{code}
-floatsToBinds :: FloatingBinds -> [PlainCoreBinding]
-floatsToBinds floats = map get_bind floats
-                    where
-                      get_bind (_, LetFloater bind) = bind
-                      get_bind (_, CaseFloater _)   = panic "floatsToBinds"
+floatsToBinds :: FloatBinds -> [CoreBind]
+floatsToBinds floats = map snd floats
 
-floatsToBindPairs :: FloatingBinds -> [(Id,PlainCoreExpr)]
+floatsToBindPairs :: FloatBinds -> [(Id,CoreExpr)]
 
 floatsToBindPairs floats = concat (map mk_pairs floats)
   where
-   mk_pairs (_, LetFloater (CoRec pairs))         = pairs
-   mk_pairs (_, LetFloater (CoNonRec binder rhs)) = [(binder,rhs)]
-   mk_pairs (_, CaseFloater _)                           = panic "floatsToBindPairs"
+   mk_pairs (_, Rec pairs)         = pairs
+   mk_pairs (_, NonRec binder rhs) = [(binder,rhs)]
 
-install :: FloatingBinds -> PlainCoreExpr -> PlainCoreExpr
+install :: FloatBinds -> CoreExpr -> CoreExpr
 
 install defn_groups expr
   = foldr install_group expr defn_groups
   where
-    install_group (_, LetFloater defns) body = CoLet defns body
-    install_group (_, CaseFloater fn)   body = fn body
+    install_group (_, defns) body = Let defns body
 \end{code}