cmmTopCodeGen no longer takes DynFlags as an argument
[ghc-hetmet.git] / compiler / stgSyn / CoreToStg.lhs
index b2d7257..df8fabe 100644 (file)
@@ -12,22 +12,22 @@ module CoreToStg ( coreToStg, coreExprToStg ) where
 #include "HsVersions.h"
 
 import CoreSyn
-import CoreUtils       ( rhsIsStatic, exprType, findDefault )
-import CoreArity       ( manifestArity )
+import CoreUtils        ( exprType, findDefault )
+import CoreArity        ( manifestArity )
 import StgSyn
 
 import Type
 import TyCon
+import MkId            ( coercionTokenId )
 import Id
-import Var             ( Var )
 import IdInfo
 import DataCon
-import CostCentre      ( noCCS )
+import CostCentre       ( noCCS )
 import VarSet
 import VarEnv
-import Maybes          ( maybeToBool )
-import Name            ( getOccName, isExternalName, nameOccName )
-import OccName         ( occNameString, occNameFS )
+import Maybes           ( maybeToBool )
+import Name             ( getOccName, isExternalName, nameOccName )
+import OccName          ( occNameString, occNameFS )
 import BasicTypes       ( Arity )
 import Module
 import Outputable
@@ -35,13 +35,13 @@ import MonadUtils
 import FastString
 import Util
 import ForeignCall
-import PrimOp          ( PrimCall(..) )
+import PrimOp           ( PrimCall(..) )
 \end{code}
 
 %************************************************************************
-%*                                                                     *
+%*                                                                      *
 \subsection[live-vs-free-doc]{Documentation}
-%*                                                                     *
+%*                                                                      *
 %************************************************************************
 
 (There is other relevant documentation in codeGen/CgLetNoEscape.)
@@ -61,25 +61,25 @@ may be reused for something else.
 
 There ought to be a better way to say this.  Here are some examples:
 \begin{verbatim}
-       let v = [q] \[x] -> e
-       in
-       ...v...  (but no q's)
+        let v = [q] \[x] -> e
+        in
+        ...v...  (but no q's)
 \end{verbatim}
 
-Just after the `in', v is live, but q is dead. If the whole of that
+Just after the `in', v is live, but q is dead.  If the whole of that
 let expression was enclosed in a case expression, thus:
 \begin{verbatim}
-       case (let v = [q] \[x] -> e in ...v...) of
-               alts[...q...]
+        case (let v = [q] \[x] -> e in ...v...) of
+                alts[...q...]
 \end{verbatim}
 (ie @alts@ mention @q@), then @q@ is live even after the `in'; because
 we'll return later to the @alts@ and need it.
 
 Let-no-escapes make this a bit more interesting:
 \begin{verbatim}
-       let-no-escape v = [q] \ [x] -> e
-       in
-       ...v...
+        let-no-escape v = [q] \ [x] -> e
+        in
+        ...v...
 \end{verbatim}
 Here, @q@ is still live at the `in', because @v@ is represented not by
 a closure but by the current stack state.  In other words, if @v@ is
@@ -88,19 +88,19 @@ let-no-escaped variable, then {\em its} free variables are also live
 if @v@ is.
 
 %************************************************************************
-%*                                                                     *
+%*                                                                      *
 \subsection[caf-info]{Collecting live CAF info}
-%*                                                                     *
+%*                                                                      *
 %************************************************************************
 
-In this pass we also collect information on which CAFs are live for 
-constructing SRTs (see SRT.lhs).  
+In this pass we also collect information on which CAFs are live for
+constructing SRTs (see SRT.lhs).
 
 A top-level Id has CafInfo, which is
 
-       - MayHaveCafRefs, if it may refer indirectly to
-         one or more CAFs, or
-       - NoCafRefs if it definitely doesn't
+        - MayHaveCafRefs, if it may refer indirectly to
+          one or more CAFs, or
+        - NoCafRefs if it definitely doesn't
 
 The CafInfo has already been calculated during the CoreTidy pass.
 
@@ -118,11 +118,11 @@ Interaction of let-no-escape with SRTs   [Sept 01]
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 Consider
 
-       let-no-escape x = ...caf1...caf2...
-       in
-       ...x...x...x...
+        let-no-escape x = ...caf1...caf2...
+        in
+        ...x...x...x...
 
-where caf1,caf2 are CAFs.  Since x doesn't have a closure, we 
+where caf1,caf2 are CAFs.  Since x doesn't have a closure, we
 build SRTs just as if x's defn was inlined at each call site, and
 that means that x's CAF refs get duplicated in the overall SRT.
 
@@ -133,9 +133,9 @@ for x, solely to put in the SRTs lower down.
 
 
 %************************************************************************
-%*                                                                     *
+%*                                                                      *
 \subsection[binds-StgVarInfo]{Setting variable info: top-level, binds, RHSs}
-%*                                                                     *
+%*                                                                      *
 %************************************************************************
 
 \begin{code}
@@ -145,13 +145,13 @@ coreToStg this_pkg pgm
   where (_, _, pgm') = coreTopBindsToStg this_pkg emptyVarEnv pgm
 
 coreExprToStg :: CoreExpr -> StgExpr
-coreExprToStg expr 
+coreExprToStg expr
   = new_expr where (new_expr,_,_) = initLne emptyVarEnv (coreToStgExpr expr)
 
 
 coreTopBindsToStg
     :: PackageId
-    -> IdEnv HowBound          -- environment for the bindings
+    -> IdEnv HowBound           -- environment for the bindings
     -> [CoreBind]
     -> (IdEnv HowBound, FreeVarsInfo, [StgBinding])
 
@@ -159,50 +159,54 @@ coreTopBindsToStg _        env [] = (env, emptyFVInfo, [])
 coreTopBindsToStg this_pkg env (b:bs)
   = (env2, fvs2, b':bs')
   where
-       -- Notice the mutually-recursive "knot" here:
-       --   env accumulates down the list of binds, 
-       --   fvs accumulates upwards
-       (env1, fvs2, b' ) = coreTopBindToStg this_pkg env fvs1 b
-       (env2, fvs1, bs') = coreTopBindsToStg this_pkg env1 bs
+        -- Notice the mutually-recursive "knot" here:
+        --   env accumulates down the list of binds,
+        --   fvs accumulates upwards
+        (env1, fvs2, b' ) = coreTopBindToStg this_pkg env fvs1 b
+        (env2, fvs1, bs') = coreTopBindsToStg this_pkg env1 bs
 
 coreTopBindToStg
-       :: PackageId
-       -> IdEnv HowBound
-       -> FreeVarsInfo         -- Info about the body
-       -> CoreBind
-       -> (IdEnv HowBound, FreeVarsInfo, StgBinding)
+        :: PackageId
+        -> IdEnv HowBound
+        -> FreeVarsInfo         -- Info about the body
+        -> CoreBind
+        -> (IdEnv HowBound, FreeVarsInfo, StgBinding)
 
 coreTopBindToStg this_pkg env body_fvs (NonRec id rhs)
-  = let 
-       env'      = extendVarEnv env id how_bound
-       how_bound = LetBound TopLet $! manifestArity rhs
+  = let
+        env'      = extendVarEnv env id how_bound
+        how_bound = LetBound TopLet $! manifestArity rhs
 
-        (stg_rhs, fvs') = 
-           initLne env $ do
+        (stg_rhs, fvs') =
+            initLne env $ do
               (stg_rhs, fvs') <- coreToTopStgRhs this_pkg body_fvs (id,rhs)
               return (stg_rhs, fvs')
-       
-       bind = StgNonRec id stg_rhs
+
+        bind = StgNonRec id stg_rhs
     in
-    ASSERT2(consistentCafInfo id bind, ppr id $$ ppr rhs $$ ppr bind )
+    ASSERT2(consistentCafInfo id bind, ppr id )
+      -- NB: previously the assertion printed 'rhs' and 'bind'
+      --     as well as 'id', but that led to a black hole
+      --     where printing the assertion error tripped the
+      --     assertion again!
     (env', fvs' `unionFVInfo` body_fvs, bind)
 
 coreTopBindToStg this_pkg env body_fvs (Rec pairs)
   = ASSERT( not (null pairs) )
-    let 
-       binders = map fst pairs
+    let
+        binders = map fst pairs
 
-       extra_env' = [ (b, LetBound TopLet $! manifestArity rhs)
-                    | (b, rhs) <- pairs ]
-       env' = extendVarEnvList env extra_env'
+        extra_env' = [ (b, LetBound TopLet $! manifestArity rhs)
+                     | (b, rhs) <- pairs ]
+        env' = extendVarEnvList env extra_env'
 
         (stg_rhss, fvs')
-         = initLne env' $ do
-              (stg_rhss, fvss') <- mapAndUnzipM (coreToTopStgRhs this_pkg body_fvs) pairs
-              let fvs' = unionFVInfos fvss'
-              return (stg_rhss, fvs')
+          = initLne env' $ do
+               (stg_rhss, fvss') <- mapAndUnzipM (coreToTopStgRhs this_pkg body_fvs) pairs
+               let fvs' = unionFVInfos fvss'
+               return (stg_rhss, fvs')
 
-       bind = StgRec (zip binders stg_rhss)
+        bind = StgRec (zip binders stg_rhss)
     in
     ASSERT2(consistentCafInfo (head binders) bind, ppr binders)
     (env', fvs' `unionFVInfo` body_fvs, bind)
@@ -214,78 +218,74 @@ coreTopBindToStg this_pkg env body_fvs (Rec pairs)
 -- floated out a binding, in which case it will be approximate.
 consistentCafInfo :: Id -> GenStgBinding Var Id -> Bool
 consistentCafInfo id bind
-  | occNameFS (nameOccName (idName id)) == fsLit "sat"
-  = safe
-  | otherwise
-  = WARN (not exact, ppr id) safe
+  = WARN( not (exact || is_sat_thing) , ppr id <+> ppr id_marked_caffy <+> ppr binding_is_caffy )
+    safe
   where
-       safe  = id_marked_caffy || not binding_is_caffy
-       exact = id_marked_caffy == binding_is_caffy
-       id_marked_caffy  = mayHaveCafRefs (idCafInfo id)
-       binding_is_caffy = stgBindHasCafRefs bind
+    safe  = id_marked_caffy || not binding_is_caffy
+    exact = id_marked_caffy == binding_is_caffy
+    id_marked_caffy  = mayHaveCafRefs (idCafInfo id)
+    binding_is_caffy = stgBindHasCafRefs bind
+    is_sat_thing = occNameFS (nameOccName (idName id)) == fsLit "sat"
 \end{code}
 
 \begin{code}
 coreToTopStgRhs
-       :: PackageId
-       -> FreeVarsInfo         -- Free var info for the scope of the binding
-       -> (Id,CoreExpr)
-       -> LneM (StgRhs, FreeVarsInfo)
+        :: PackageId
+        -> FreeVarsInfo         -- Free var info for the scope of the binding
+        -> (Id,CoreExpr)
+        -> LneM (StgRhs, FreeVarsInfo)
 
 coreToTopStgRhs this_pkg scope_fv_info (bndr, rhs)
   = do { (new_rhs, rhs_fvs, _) <- coreToStgExpr rhs
        ; lv_info <- freeVarsToLiveVars rhs_fvs
 
-       ; let stg_rhs   = mkTopStgRhs is_static rhs_fvs (mkSRT lv_info) bndr_info new_rhs
+       ; let stg_rhs   = mkTopStgRhs this_pkg rhs_fvs (mkSRT lv_info) bndr_info new_rhs
              stg_arity = stgRhsArity stg_rhs
-       ; return (ASSERT2( arity_ok stg_arity, mk_arity_msg stg_arity) stg_rhs, 
+       ; return (ASSERT2( arity_ok stg_arity, mk_arity_msg stg_arity) stg_rhs,
                  rhs_fvs) }
   where
     bndr_info = lookupFVInfo scope_fv_info bndr
-    is_static = rhsIsStatic this_pkg rhs
-
-       -- It's vital that the arity on a top-level Id matches
-       -- the arity of the generated STG binding, else an importing 
-       -- module will use the wrong calling convention
-       --      (Trac #2844 was an example where this happened)
-       -- NB1: we can't move the assertion further out without
-       --      blocking the "knot" tied in coreTopBindsToStg
-       -- NB2: the arity check is only needed for Ids with External
-       --      Names, because they are externally visible.  The CorePrep
-       --      pass introduces "sat" things with Local Names and does
-       --      not bother to set their Arity info, so don't fail for those
+
+        -- It's vital that the arity on a top-level Id matches
+        -- the arity of the generated STG binding, else an importing
+        -- module will use the wrong calling convention
+        --      (Trac #2844 was an example where this happened)
+        -- NB1: we can't move the assertion further out without
+        --      blocking the "knot" tied in coreTopBindsToStg
+        -- NB2: the arity check is only needed for Ids with External
+        --      Names, because they are externally visible.  The CorePrep
+        --      pass introduces "sat" things with Local Names and does
+        --      not bother to set their Arity info, so don't fail for those
     arity_ok stg_arity
        | isExternalName (idName bndr) = id_arity == stg_arity
-       | otherwise                   = True
+       | otherwise                    = True
     id_arity  = idArity bndr
     mk_arity_msg stg_arity
-        = vcat [ppr bndr, 
+        = vcat [ppr bndr,
                 ptext (sLit "Id arity:") <+> ppr id_arity,
                 ptext (sLit "STG arity:") <+> ppr stg_arity]
 
-mkTopStgRhs :: Bool -> FreeVarsInfo
-           -> SRT -> StgBinderInfo -> StgExpr
-           -> StgRhs
+mkTopStgRhs :: PackageId -> FreeVarsInfo
+            -> SRT -> StgBinderInfo -> StgExpr
+            -> StgRhs
 
-mkTopStgRhs is_static rhs_fvs srt binder_info (StgLam _ bndrs body)
-  = ASSERT( is_static )
-    StgRhsClosure noCCS binder_info
-                 (getFVs rhs_fvs)               
-                 ReEntrant
-                 srt
-                 bndrs body
+mkTopStgRhs _ rhs_fvs srt binder_info (StgLam _ bndrs body)
+  = StgRhsClosure noCCS binder_info
+                  (getFVs rhs_fvs)
+                  ReEntrant
+                  srt
+                  bndrs body
 
-mkTopStgRhs is_static _ _ _ (StgConApp con args)
-  | is_static   -- StgConApps can be updatable (see isCrossDllConApp)
+mkTopStgRhs this_pkg _ _ _ (StgConApp con args)
+  | not (isDllConApp this_pkg con args)  -- Dynamic StgConApps are updatable
   = StgRhsCon noCCS con args
 
-mkTopStgRhs is_static rhs_fvs srt binder_info rhs
-  = ASSERT2( not is_static, ppr rhs )
-    StgRhsClosure noCCS binder_info
-                 (getFVs rhs_fvs)               
-                 Updatable
-                 srt
-                 [] rhs
+mkTopStgRhs _ rhs_fvs srt binder_info rhs
+  = StgRhsClosure noCCS binder_info
+                  (getFVs rhs_fvs)
+                  Updatable
+                  srt
+                  [] rhs
 \end{code}
 
 
@@ -295,14 +295,14 @@ mkTopStgRhs is_static rhs_fvs srt binder_info rhs
 
 \begin{code}
 coreToStgExpr
-       :: CoreExpr
-       -> LneM (StgExpr,       -- Decorated STG expr
-                FreeVarsInfo,  -- Its free vars (NB free, not live)
-                EscVarsSet)    -- Its escapees, a subset of its free vars;
-                               -- also a subset of the domain of the envt
-                               -- because we are only interested in the escapees
-                               -- for vars which might be turned into
-                               -- let-no-escaped ones.
+        :: CoreExpr
+        -> LneM (StgExpr,       -- Decorated STG expr
+                 FreeVarsInfo,  -- Its free vars (NB free, not live)
+                 EscVarsSet)    -- Its escapees, a subset of its free vars;
+                                -- also a subset of the domain of the envt
+                                -- because we are only interested in the escapees
+                                -- for vars which might be turned into
+                                -- let-no-escaped ones.
 \end{code}
 
 The second and third components can be derived in a simple bottom up pass, not
@@ -312,8 +312,9 @@ on these components, but it in turn is not scrutinised as the basis for any
 decisions.  Hence no black holes.
 
 \begin{code}
-coreToStgExpr (Lit l) = return (StgLit l, emptyFVInfo, emptyVarSet)
-coreToStgExpr (Var v) = coreToStgApp Nothing v []
+coreToStgExpr (Lit l)      = return (StgLit l, emptyFVInfo, emptyVarSet)
+coreToStgExpr (Var v)      = coreToStgApp Nothing v               []
+coreToStgExpr (Coercion _) = coreToStgApp Nothing coercionTokenId []
 
 coreToStgExpr expr@(App _ _)
   = coreToStgApp Nothing f args
@@ -322,16 +323,16 @@ coreToStgExpr expr@(App _ _)
 
 coreToStgExpr expr@(Lam _ _)
   = let
-       (args, body) = myCollectBinders expr 
-       args'        = filterStgBinders args
+        (args, body) = myCollectBinders expr
+        args'        = filterStgBinders args
     in
     extendVarEnvLne [ (a, LambdaBound) | a <- args' ] $ do
     (body, body_fvs, body_escs) <- coreToStgExpr body
     let
-       fvs             = args' `minusFVBinders` body_fvs
-       escs            = body_escs `delVarSetList` args'
-       result_expr | null args' = body
-                   | otherwise  = StgLam (exprType expr) args' body
+        fvs             = args' `minusFVBinders` body_fvs
+        escs            = body_escs `delVarSetList` args'
+        result_expr | null args' = body
+                    | otherwise  = StgLam (exprType expr) args' body
 
     return (result_expr, fvs, escs)
 
@@ -360,22 +361,22 @@ coreToStgExpr (Case scrut bndr _ alts) = do
                      unionFVInfos fvs_s,
                      unionVarSets escs_s )
     let
-       -- Determine whether the default binder is dead or not
-       -- This helps the code generator to avoid generating an assignment
-       -- for the case binder (is extremely rare cases) ToDo: remove.
-       bndr' | bndr `elementOfFVInfo` alts_fvs = bndr
-             | otherwise                       = bndr `setIdOccInfo` IAmDead
-
-       -- Don't consider the default binder as being 'live in alts',
-       -- since this is from the point of view of the case expr, where
-       -- the default binder is not free.
-       alts_fvs_wo_bndr  = bndr `minusFVBinder` alts_fvs
-       alts_escs_wo_bndr = alts_escs `delVarSet` bndr
+        -- Determine whether the default binder is dead or not
+        -- This helps the code generator to avoid generating an assignment
+        -- for the case binder (is extremely rare cases) ToDo: remove.
+        bndr' | bndr `elementOfFVInfo` alts_fvs = bndr
+              | otherwise                       = bndr `setIdOccInfo` IAmDead
+
+        -- Don't consider the default binder as being 'live in alts',
+        -- since this is from the point of view of the case expr, where
+        -- the default binder is not free.
+        alts_fvs_wo_bndr  = bndr `minusFVBinder` alts_fvs
+        alts_escs_wo_bndr = alts_escs `delVarSet` bndr
 
     alts_lv_info <- freeVarsToLiveVars alts_fvs_wo_bndr
 
-       -- We tell the scrutinee that everything 
-       -- live in the alts is live in it, too.
+        -- We tell the scrutinee that everything
+        -- live in the alts is live in it, too.
     (scrut2, scrut_fvs, _scrut_escs, scrut_lv_info)
        <- setVarsLiveInCont alts_lv_info $ do
             (scrut2, scrut_fvs, scrut_escs) <- coreToStgExpr scrut
@@ -384,33 +385,33 @@ coreToStgExpr (Case scrut bndr _ alts) = do
 
     return (
       StgCase scrut2 (getLiveVars scrut_lv_info)
-                    (getLiveVars alts_lv_info)
-                    bndr'
-                    (mkSRT alts_lv_info)
-                    (mkStgAltType bndr alts)
-                    alts2,
+                     (getLiveVars alts_lv_info)
+                     bndr'
+                     (mkSRT alts_lv_info)
+                     (mkStgAltType bndr alts)
+                     alts2,
       scrut_fvs `unionFVInfo` alts_fvs_wo_bndr,
       alts_escs_wo_bndr `unionVarSet` getFVSet scrut_fvs
-               -- You might think we should have scrut_escs, not 
-               -- (getFVSet scrut_fvs), but actually we can't call, and 
-               -- then return from, a let-no-escape thing.
+                -- You might think we should have scrut_escs, not
+                -- (getFVSet scrut_fvs), but actually we can't call, and
+                -- then return from, a let-no-escape thing.
       )
   where
     vars_alt (con, binders, rhs)
-      = let            -- Remove type variables
-           binders' = filterStgBinders binders
-        in     
+      = let     -- Remove type variables
+            binders' = filterStgBinders binders
+        in
         extendVarEnvLne [(b, LambdaBound) | b <- binders'] $ do
         (rhs2, rhs_fvs, rhs_escs) <- coreToStgExpr rhs
         let
-               -- Records whether each param is used in the RHS
-           good_use_mask = [ b `elementOfFVInfo` rhs_fvs | b <- binders' ]
+                -- Records whether each param is used in the RHS
+            good_use_mask = [ b `elementOfFVInfo` rhs_fvs | b <- binders' ]
 
         return ( (con, binders', good_use_mask, rhs2),
                  binders' `minusFVBinders` rhs_fvs,
                  rhs_escs `delVarSetList` binders' )
-               -- ToDo: remove the delVarSet;
-               -- since escs won't include any of these binders
+                -- ToDo: remove the delVarSet;
+                -- since escs won't include any of these binders
 \end{code}
 
 Lets not only take quite a bit of work, but this is where we convert
@@ -433,34 +434,34 @@ coreToStgExpr e = pprPanic "coreToStgExpr" (ppr e)
 mkStgAltType :: Id -> [CoreAlt] -> AltType
 mkStgAltType bndr alts
   = case splitTyConApp_maybe (repType (idType bndr)) of
-       Just (tc,_) | isUnboxedTupleTyCon tc -> UbxTupAlt tc
-                   | isUnLiftedTyCon tc     -> PrimAlt tc
-                   | isHiBootTyCon tc       -> look_for_better_tycon
-                   | isAlgTyCon tc          -> AlgAlt tc
-                   | otherwise              -> ASSERT( _is_poly_alt_tycon tc )
-                                               PolyAlt
-       Nothing                              -> PolyAlt
+        Just (tc,_) | isUnboxedTupleTyCon tc -> UbxTupAlt tc
+                    | isUnLiftedTyCon tc     -> PrimAlt tc
+                    | isHiBootTyCon tc       -> look_for_better_tycon
+                    | isAlgTyCon tc          -> AlgAlt tc
+                    | otherwise              -> ASSERT2( _is_poly_alt_tycon tc, ppr tc )
+                                                PolyAlt
+        Nothing                              -> PolyAlt
 
   where
    _is_poly_alt_tycon tc
-       =  isFunTyCon tc
+        =  isFunTyCon tc
         || isPrimTyCon tc   -- "Any" is lifted but primitive
-       || isOpenTyCon tc   -- Type family; e.g. arising from strict
-                           -- function application where argument has a
-                           -- type-family type
+        || isFamilyTyCon tc   -- Type family; e.g. arising from strict
+                            -- function application where argument has a
+                            -- type-family type
 
-   -- Sometimes, the TyCon is a HiBootTyCon which may not have any 
-   -- constructors inside it.  Then we can get a better TyCon by 
+   -- Sometimes, the TyCon is a HiBootTyCon which may not have any
+   -- constructors inside it.  Then we can get a better TyCon by
    -- grabbing the one from a constructor alternative
    -- if one exists.
    look_for_better_tycon
-       | ((DataAlt con, _, _) : _) <- data_alts = 
-               AlgAlt (dataConTyCon con)
-       | otherwise =
-               ASSERT(null data_alts)
-               PolyAlt
-       where
-               (data_alts, _deflt) = findDefault alts
+        | ((DataAlt con, _, _) : _) <- data_alts =
+                AlgAlt (dataConTyCon con)
+        | otherwise =
+                ASSERT(null data_alts)
+                PolyAlt
+        where
+                (data_alts, _deflt) = findDefault alts
 \end{code}
 
 
@@ -470,13 +471,13 @@ mkStgAltType bndr alts
 
 \begin{code}
 coreToStgApp
-        :: Maybe UpdateFlag            -- Just upd <=> this application is
-                                       -- the rhs of a thunk binding
-                                       --      x = [...] \upd [] -> the_app
-                                       -- with specified update flag
-       -> Id                           -- Function
-       -> [CoreArg]                    -- Arguments
-       -> LneM (StgExpr, FreeVarsInfo, EscVarsSet)
+         :: Maybe UpdateFlag            -- Just upd <=> this application is
+                                        -- the rhs of a thunk binding
+                                        --      x = [...] \upd [] -> the_app
+                                        -- with specified update flag
+        -> Id                           -- Function
+        -> [CoreArg]                    -- Arguments
+        -> LneM (StgExpr, FreeVarsInfo, EscVarsSet)
 
 
 coreToStgApp _ f args = do
@@ -484,68 +485,77 @@ coreToStgApp _ f args = do
     how_bound <- lookupVarLne f
 
     let
-       n_val_args       = valArgCount args
-       not_letrec_bound = not (isLetBound how_bound)
-       fun_fvs = singletonFVInfo f how_bound fun_occ
-            -- e.g. (f :: a -> int) (x :: a) 
+        n_val_args       = valArgCount args
+        not_letrec_bound = not (isLetBound how_bound)
+        fun_fvs = singletonFVInfo f how_bound fun_occ
+            -- e.g. (f :: a -> int) (x :: a)
             -- Here the free variables are "f", "x" AND the type variable "a"
             -- coreToStgArgs will deal with the arguments recursively
 
-       -- Mostly, the arity info of a function is in the fn's IdInfo
-       -- But new bindings introduced by CoreSat may not have no
-       -- arity info; it would do us no good anyway.  For example:
-       --      let f = \ab -> e in f
-       -- No point in having correct arity info for f!
-       -- Hence the hasArity stuff below.
-       -- NB: f_arity is only consulted for LetBound things
-       f_arity   = stgArity f how_bound
-       saturated = f_arity <= n_val_args
-
-       fun_occ 
-        | not_letrec_bound         = noBinderInfo      -- Uninteresting variable
-        | f_arity > 0 && saturated = stgSatOcc -- Saturated or over-saturated function call
-        | otherwise                = stgUnsatOcc       -- Unsaturated function or thunk
-
-       fun_escs
-        | not_letrec_bound      = emptyVarSet  -- Only letrec-bound escapees are interesting
-        | f_arity == n_val_args = emptyVarSet  -- A function *or thunk* with an exactly
-                                               -- saturated call doesn't escape
-                                               -- (let-no-escape applies to 'thunks' too)
-
-        | otherwise         = unitVarSet f     -- Inexact application; it does escape
-
-       -- At the moment of the call:
-
-       --  either the function is *not* let-no-escaped, in which case
-       --         nothing is live except live_in_cont
-       --      or the function *is* let-no-escaped in which case the
-       --         variables it uses are live, but still the function
-       --         itself is not.  PS.  In this case, the function's
-       --         live vars should already include those of the
-       --         continuation, but it does no harm to just union the
-       --         two regardless.
-
-       res_ty = exprType (mkApps (Var f) args)
-       app = case idDetails f of
-               DataConWorkId dc | saturated -> StgConApp dc args'
-               PrimOpId op      -> ASSERT( saturated )
-                                   StgOpApp (StgPrimOp op) args' res_ty
-               FCallId (CCall (CCallSpec (StaticTarget lbl) PrimCallConv _))
-                                 -- prim calls are represented as FCalls in core,
-                                 -- but in stg we distinguish them
-                                -> ASSERT( saturated )
-                                    StgOpApp (StgPrimCallOp (PrimCall lbl)) args' res_ty
-               FCallId call     -> ASSERT( saturated )
-                                   StgOpApp (StgFCallOp call (idUnique f)) args' res_ty
-                TickBoxOpId {}   -> pprPanic "coreToStg TickBox" $ ppr (f,args')
-               _other           -> StgApp f args'
+        -- Mostly, the arity info of a function is in the fn's IdInfo
+        -- But new bindings introduced by CoreSat may not have no
+        -- arity info; it would do us no good anyway.  For example:
+        --      let f = \ab -> e in f
+        -- No point in having correct arity info for f!
+        -- Hence the hasArity stuff below.
+        -- NB: f_arity is only consulted for LetBound things
+        f_arity   = stgArity f how_bound
+        saturated = f_arity <= n_val_args
+
+        fun_occ
+         | not_letrec_bound         = noBinderInfo      -- Uninteresting variable
+         | f_arity > 0 && saturated = stgSatOcc -- Saturated or over-saturated function call
+         | otherwise                = stgUnsatOcc       -- Unsaturated function or thunk
+
+        fun_escs
+         | not_letrec_bound      = emptyVarSet  -- Only letrec-bound escapees are interesting
+         | f_arity == n_val_args = emptyVarSet  -- A function *or thunk* with an exactly
+                                                -- saturated call doesn't escape
+                                                -- (let-no-escape applies to 'thunks' too)
+
+         | otherwise         = unitVarSet f     -- Inexact application; it does escape
+
+        -- At the moment of the call:
+
+        --  either the function is *not* let-no-escaped, in which case
+        --         nothing is live except live_in_cont
+        --      or the function *is* let-no-escaped in which case the
+        --         variables it uses are live, but still the function
+        --         itself is not.  PS.  In this case, the function's
+        --         live vars should already include those of the
+        --         continuation, but it does no harm to just union the
+        --         two regardless.
+
+        res_ty = exprType (mkApps (Var f) args)
+        app = case idDetails f of
+                DataConWorkId dc | saturated -> StgConApp dc args'
+
+                -- Some primitive operator that might be implemented as a library call.
+                PrimOpId op      -> ASSERT( saturated )
+                                    StgOpApp (StgPrimOp op) args' res_ty
+
+                -- A call to some primitive Cmm function.
+                FCallId (CCall (CCallSpec (StaticTarget lbl (Just pkgId)) PrimCallConv _))
+                                 -> ASSERT( saturated )
+                                    StgOpApp (StgPrimCallOp (PrimCall lbl pkgId)) args' res_ty
+
+                -- A regular foreign call.
+                FCallId call     -> ASSERT( saturated )
+                                    StgOpApp (StgFCallOp call (idUnique f)) args' res_ty
 
-    return (
-       app,
-       fun_fvs  `unionFVInfo` args_fvs,
-       fun_escs `unionVarSet` (getFVSet args_fvs)
-                               -- All the free vars of the args are disqualified
-                               -- from being let-no-escaped.
+                TickBoxOpId {}   -> pprPanic "coreToStg TickBox" $ ppr (f,args')
+                _other           -> StgApp f args'
+        fvs = fun_fvs  `unionFVInfo` args_fvs
+        vars = fun_escs `unionVarSet` (getFVSet args_fvs)
+                                -- All the free vars of the args are disqualified
+                                -- from being let-no-escaped.
+
+    -- Forcing these fixes a leak in the code generator, noticed while
+    -- profiling for trac #4367
+    app `seq` fvs `seq` seqVarSet vars `seq` return (
+        app,
+        fvs,
+        vars
      )
 
 
@@ -563,36 +573,40 @@ coreToStgArgs (Type _ : args) = do     -- Type argument
     (args', fvs) <- coreToStgArgs args
     return (args', fvs)
 
+coreToStgArgs (Coercion _ : args)  -- Coercion argument; replace with place holder
+  = do { (args', fvs) <- coreToStgArgs args
+       ; return (StgVarArg coercionTokenId : args', fvs) }
+
 coreToStgArgs (arg : args) = do         -- Non-type argument
     (stg_args, args_fvs) <- coreToStgArgs args
     (arg', arg_fvs, _escs) <- coreToStgExpr arg
     let
-       fvs = args_fvs `unionFVInfo` arg_fvs
-       stg_arg = case arg' of
-                      StgApp v []      -> StgVarArg v
-                      StgConApp con [] -> StgVarArg (dataConWorkId con)
-                      StgLit lit       -> StgLitArg lit
-                      _                -> pprPanic "coreToStgArgs" (ppr arg)
-
-       -- WARNING: what if we have an argument like (v `cast` co)
-       --          where 'co' changes the representation type?
-       --          (This really only happens if co is unsafe.)
-       -- Then all the getArgAmode stuff in CgBindery will set the
-       -- cg_rep of the CgIdInfo based on the type of v, rather
-       -- than the type of 'co'.
-       -- This matters particularly when the function is a primop
-       -- or foreign call.
-       -- Wanted: a better solution than this hacky warning
+        fvs = args_fvs `unionFVInfo` arg_fvs
+        stg_arg = case arg' of
+                       StgApp v []      -> StgVarArg v
+                       StgConApp con [] -> StgVarArg (dataConWorkId con)
+                       StgLit lit       -> StgLitArg lit
+                       _                -> pprPanic "coreToStgArgs" (ppr arg)
+
+        -- WARNING: what if we have an argument like (v `cast` co)
+        --          where 'co' changes the representation type?
+        --          (This really only happens if co is unsafe.)
+        -- Then all the getArgAmode stuff in CgBindery will set the
+        -- cg_rep of the CgIdInfo based on the type of v, rather
+        -- than the type of 'co'.
+        -- This matters particularly when the function is a primop
+        -- or foreign call.
+        -- Wanted: a better solution than this hacky warning
     let
-       arg_ty = exprType arg
-       stg_arg_ty = stgArgType stg_arg
-       bad_args = (isUnLiftedType arg_ty && not (isUnLiftedType stg_arg_ty)) 
-               || (typePrimRep arg_ty /= typePrimRep stg_arg_ty)
-       -- In GHCi we coerce an argument of type BCO# (unlifted) to HValue (lifted), 
-       -- and pass it to a function expecting an HValue (arg_ty).  This is ok because
-       -- we can treat an unlifted value as lifted.  But the other way round 
-       -- we complain.
-       -- We also want to check if a pointer is cast to a non-ptr etc
+        arg_ty = exprType arg
+        stg_arg_ty = stgArgType stg_arg
+        bad_args = (isUnLiftedType arg_ty && not (isUnLiftedType stg_arg_ty))
+                || (typePrimRep arg_ty /= typePrimRep stg_arg_ty)
+        -- In GHCi we coerce an argument of type BCO# (unlifted) to HValue (lifted),
+        -- and pass it to a function expecting an HValue (arg_ty).  This is ok because
+        -- we can treat an unlifted value as lifted.  But the other way round
+        -- we complain.
+        -- We also want to check if a pointer is cast to a non-ptr etc
 
     WARN( bad_args, ptext (sLit "Dangerous-looking argument. Probable cause: bad unsafeCoerce#") $$ ppr arg )
      return (stg_arg : stg_args, fvs)
@@ -603,14 +617,14 @@ coreToStgArgs (arg : args) = do         -- Non-type argument
 -- ---------------------------------------------------------------------------
 
 coreToStgLet
-        :: Bool        -- True <=> yes, we are let-no-escaping this let
-        -> CoreBind    -- bindings
-        -> CoreExpr    -- body
-        -> LneM (StgExpr,      -- new let
-                 FreeVarsInfo, -- variables free in the whole let
-                 EscVarsSet,   -- variables that escape from the whole let
-                 Bool)         -- True <=> none of the binders in the bindings
-                               -- is among the escaping vars
+         :: Bool        -- True <=> yes, we are let-no-escaping this let
+         -> CoreBind    -- bindings
+         -> CoreExpr    -- body
+         -> LneM (StgExpr,      -- new let
+                  FreeVarsInfo, -- variables free in the whole let
+                  EscVarsSet,   -- variables that escape from the whole let
+                  Bool)         -- True <=> none of the binders in the bindings
+                                -- is among the escaping vars
 
 coreToStgLet let_no_escape bind body = do
     (bind2, bind_fvs, bind_escs, bind_lvs,
@@ -621,8 +635,8 @@ coreToStgLet let_no_escape bind body = do
           -- we ain't in a let-no-escape world
           live_in_cont <- getVarsLiveInCont
           ( bind2, bind_fvs, bind_escs, bind_lv_info, env_ext)
-                <- setVarsLiveInCont (if let_no_escape 
-                                          then live_in_cont 
+                <- setVarsLiveInCont (if let_no_escape
+                                          then live_in_cont
                                           else emptyLiveInfo)
                                      (vars_bind rec_body_fvs bind)
 
@@ -635,92 +649,92 @@ coreToStgLet let_no_escape bind body = do
                      body2, body_fvs, body_escs, getLiveVars body_lv_info)
 
 
-       -- Compute the new let-expression
+        -- Compute the new let-expression
     let
-       new_let | let_no_escape = StgLetNoEscape live_in_whole_let bind_lvs bind2 body2
-               | otherwise     = StgLet bind2 body2
+        new_let | let_no_escape = StgLetNoEscape live_in_whole_let bind_lvs bind2 body2
+                | otherwise     = StgLet bind2 body2
 
-       free_in_whole_let
-         = binders `minusFVBinders` (bind_fvs `unionFVInfo` body_fvs)
+        free_in_whole_let
+          = binders `minusFVBinders` (bind_fvs `unionFVInfo` body_fvs)
 
-       live_in_whole_let
-         = bind_lvs `unionVarSet` (body_lvs `delVarSetList` binders)
+        live_in_whole_let
+          = bind_lvs `unionVarSet` (body_lvs `delVarSetList` binders)
 
-       real_bind_escs = if let_no_escape then
-                           bind_escs
-                        else
-                           getFVSet bind_fvs
-                           -- Everything escapes which is free in the bindings
+        real_bind_escs = if let_no_escape then
+                            bind_escs
+                         else
+                            getFVSet bind_fvs
+                            -- Everything escapes which is free in the bindings
 
-       let_escs = (real_bind_escs `unionVarSet` body_escs) `delVarSetList` binders
+        let_escs = (real_bind_escs `unionVarSet` body_escs) `delVarSetList` binders
 
-       all_escs = bind_escs `unionVarSet` body_escs    -- Still includes binders of
-                                                       -- this let(rec)
+        all_escs = bind_escs `unionVarSet` body_escs    -- Still includes binders of
+                                                        -- this let(rec)
 
-       no_binder_escapes = isEmptyVarSet (set_of_binders `intersectVarSet` all_escs)
+        no_binder_escapes = isEmptyVarSet (set_of_binders `intersectVarSet` all_escs)
 
-       -- Debugging code as requested by Andrew Kennedy
-       checked_no_binder_escapes
-               | debugIsOn && not no_binder_escapes && any is_join_var binders
-               = pprTrace "Interesting!  A join var that isn't let-no-escaped" (ppr binders)
-                 False
-               | otherwise = no_binder_escapes
-                           
-               -- Mustn't depend on the passed-in let_no_escape flag, since
-               -- no_binder_escapes is used by the caller to derive the flag!
+        -- Debugging code as requested by Andrew Kennedy
+        checked_no_binder_escapes
+                | debugIsOn && not no_binder_escapes && any is_join_var binders
+                = pprTrace "Interesting!  A join var that isn't let-no-escaped" (ppr binders)
+                  False
+                | otherwise = no_binder_escapes
+
+                -- Mustn't depend on the passed-in let_no_escape flag, since
+                -- no_binder_escapes is used by the caller to derive the flag!
     return (
-       new_let,
-       free_in_whole_let,
-       let_escs,
-       checked_no_binder_escapes
+        new_let,
+        free_in_whole_let,
+        let_escs,
+        checked_no_binder_escapes
       )
   where
     set_of_binders = mkVarSet binders
-    binders       = bindersOf bind
+    binders        = bindersOf bind
 
     mk_binding bind_lv_info binder rhs
-       = (binder, LetBound (NestedLet live_vars) (manifestArity rhs))
-       where
-          live_vars | let_no_escape = addLiveVar bind_lv_info binder
-                    | otherwise     = unitLiveVar binder
-               -- c.f. the invariant on NestedLet
-
-    vars_bind :: FreeVarsInfo          -- Free var info for body of binding
-             -> CoreBind
-             -> LneM (StgBinding,
-                      FreeVarsInfo, 
-                      EscVarsSet,        -- free vars; escapee vars
-                      LiveInfo,          -- Vars and CAFs live in binding
-                      [(Id, HowBound)])  -- extension to environment
-                                        
+        = (binder, LetBound (NestedLet live_vars) (manifestArity rhs))
+        where
+           live_vars | let_no_escape = addLiveVar bind_lv_info binder
+                     | otherwise     = unitLiveVar binder
+                -- c.f. the invariant on NestedLet
+
+    vars_bind :: FreeVarsInfo           -- Free var info for body of binding
+              -> CoreBind
+              -> LneM (StgBinding,
+                       FreeVarsInfo,
+                       EscVarsSet,        -- free vars; escapee vars
+                       LiveInfo,          -- Vars and CAFs live in binding
+                       [(Id, HowBound)])  -- extension to environment
+
 
     vars_bind body_fvs (NonRec binder rhs) = do
         (rhs2, bind_fvs, bind_lv_info, escs) <- coreToStgRhs body_fvs [] (binder,rhs)
-       let
-           env_ext_item = mk_binding bind_lv_info binder rhs
+        let
+            env_ext_item = mk_binding bind_lv_info binder rhs
 
-       return (StgNonRec binder rhs2,
-               bind_fvs, escs, bind_lv_info, [env_ext_item])
+        return (StgNonRec binder rhs2,
+                bind_fvs, escs, bind_lv_info, [env_ext_item])
 
 
     vars_bind body_fvs (Rec pairs)
       = mfix $ \ ~(_, rec_rhs_fvs, _, bind_lv_info, _) ->
-          let
-               rec_scope_fvs = unionFVInfo body_fvs rec_rhs_fvs
-               binders = map fst pairs
-               env_ext = [ mk_binding bind_lv_info b rhs 
-                         | (b,rhs) <- pairs ]
-          in
-          extendVarEnvLne env_ext $ do
-             (rhss2, fvss, lv_infos, escss)
-                    <- mapAndUnzip4M (coreToStgRhs rec_scope_fvs binders) pairs 
-             let
-                       bind_fvs = unionFVInfos fvss
-                       bind_lv_info = foldr unionLiveInfo emptyLiveInfo lv_infos
-                       escs     = unionVarSets escss
-             
-             return (StgRec (binders `zip` rhss2),
-                     bind_fvs, escs, bind_lv_info, env_ext)
+           let
+                rec_scope_fvs = unionFVInfo body_fvs rec_rhs_fvs
+                binders = map fst pairs
+                env_ext = [ mk_binding bind_lv_info b rhs
+                          | (b,rhs) <- pairs ]
+           in
+           extendVarEnvLne env_ext $ do
+              (rhss2, fvss, lv_infos, escss)
+                     <- mapAndUnzip4M (coreToStgRhs rec_scope_fvs binders) pairs
+              let
+                        bind_fvs = unionFVInfos fvss
+                        bind_lv_info = foldr unionLiveInfo emptyLiveInfo lv_infos
+                        escs     = unionVarSets escss
+
+              return (StgRec (binders `zip` rhss2),
+                      bind_fvs, escs, bind_lv_info, env_ext)
 
 
 is_join_var :: Id -> Bool
@@ -730,10 +744,10 @@ is_join_var j = occNameString (getOccName j) == "$j"
 \end{code}
 
 \begin{code}
-coreToStgRhs :: FreeVarsInfo           -- Free var info for the scope of the binding
-            -> [Id]
-            -> (Id,CoreExpr)
-            -> LneM (StgRhs, FreeVarsInfo, LiveInfo, EscVarsSet)
+coreToStgRhs :: FreeVarsInfo            -- Free var info for the scope of the binding
+             -> [Id]
+             -> (Id,CoreExpr)
+             -> LneM (StgRhs, FreeVarsInfo, LiveInfo, EscVarsSet)
 
 coreToStgRhs scope_fv_info binders (bndr, rhs) = do
     (new_rhs, rhs_fvs, rhs_escs) <- coreToStgExpr rhs
@@ -749,14 +763,14 @@ mkStgRhs _ _ _ (StgConApp con args) = StgRhsCon noCCS con args
 
 mkStgRhs rhs_fvs srt binder_info (StgLam _ bndrs body)
   = StgRhsClosure noCCS binder_info
-                 (getFVs rhs_fvs)               
-                 ReEntrant
-                 srt bndrs body
-       
+                  (getFVs rhs_fvs)
+                  ReEntrant
+                  srt bndrs body
+
 mkStgRhs rhs_fvs srt binder_info rhs
   = StgRhsClosure noCCS binder_info
-                 (getFVs rhs_fvs)               
-                 upd_flag srt [] rhs
+                  (getFVs rhs_fvs)
+                  upd_flag srt [] rhs
   where
    upd_flag = Updatable
   {-
@@ -770,19 +784,19 @@ mkStgRhs rhs_fvs srt binder_info rhs
 
 {- ToDo:
           upd = if isOnceDem dem
-                   then (if isNotTop toplev 
-                           then SingleEntry    -- HA!  Paydirt for "dem"
-                           else 
+                    then (if isNotTop toplev
+                            then SingleEntry    -- HA!  Paydirt for "dem"
+                            else
 #ifdef DEBUG
                      trace "WARNING: SE CAFs unsupported, forcing UPD instead" $
 #endif
                      Updatable)
-               else Updatable
+                else Updatable
         -- For now we forbid SingleEntry CAFs; they tickle the
         -- ASSERT in rts/Storage.c line 215 at newCAF() re mut_link,
         -- and I don't understand why.  There's only one SE_CAF (well,
         -- only one that tickled a great gaping bug in an earlier attempt
-        -- at ClosureInfo.getEntryConvention) in the whole of nofib, 
+        -- at ClosureInfo.getEntryConvention) in the whole of nofib,
         -- specifically Main.lvl6 in spectral/cryptarithm2.
         -- So no great loss.  KSW 2000-07.
 -}
@@ -793,30 +807,30 @@ non-updatable.  This has several advantages:
 
         - the non-updatable thunk behaves exactly like the PAP,
 
-       - the thunk is more efficient to enter, because it is
-         specialised to the task.
+        - the thunk is more efficient to enter, because it is
+          specialised to the task.
 
         - we save one update frame, one stg_update_PAP, one update
-         and lots of PAP_enters.
+          and lots of PAP_enters.
 
-       - in the case where the thunk is top-level, we save building
-         a black hole and futhermore the thunk isn't considered to
-         be a CAF any more, so it doesn't appear in any SRTs.
+        - in the case where the thunk is top-level, we save building
+          a black hole and futhermore the thunk isn't considered to
+          be a CAF any more, so it doesn't appear in any SRTs.
 
 We do it here, because the arity information is accurate, and we need
 to do it before the SRT pass to save the SRT entries associated with
 any top-level PAPs.
 
 isPAP env (StgApp f args) = listLengthCmp args arity == LT -- idArity f > length args
-                         where
-                           arity = stgArity f (lookupBinding env f)
-isPAP env _              = False
+                          where
+                            arity = stgArity f (lookupBinding env f)
+isPAP env _               = False
 
 
 %************************************************************************
-%*                                                                     *
+%*                                                                      *
 \subsection[LNE-monad]{A little monad for this let-no-escaping pass}
-%*                                                                     *
+%*                                                                      *
 %************************************************************************
 
 There's a lot of stuff to pass around, so we use this @LneM@ monad to
@@ -829,30 +843,30 @@ newtype LneM a = LneM
              -> a
     }
 
-type LiveInfo = (StgLiveVars,  -- Dynamic live variables; 
-                               -- i.e. ones with a nested (non-top-level) binding
-                CafSet)        -- Static live variables;
-                               -- i.e. top-level variables that are CAFs or refer to them
+type LiveInfo = (StgLiveVars,   -- Dynamic live variables;
+                                -- i.e. ones with a nested (non-top-level) binding
+                 CafSet)        -- Static live variables;
+                                -- i.e. top-level variables that are CAFs or refer to them
 
 type EscVarsSet = IdSet
 type CafSet     = IdSet
 
 data HowBound
-  = ImportBound                -- Used only as a response to lookupBinding; never
-                       -- exists in the range of the (IdEnv HowBound)
+  = ImportBound         -- Used only as a response to lookupBinding; never
+                        -- exists in the range of the (IdEnv HowBound)
 
-  | LetBound           -- A let(rec) in this module
-       LetInfo         -- Whether top level or nested
-       Arity           -- Its arity (local Ids don't have arity info at this point)
+  | LetBound            -- A let(rec) in this module
+        LetInfo         -- Whether top level or nested
+        Arity           -- Its arity (local Ids don't have arity info at this point)
 
-  | LambdaBound                -- Used for both lambda and case
+  | LambdaBound         -- Used for both lambda and case
 
 data LetInfo
-  = TopLet             -- top level things
-  | NestedLet LiveInfo -- For nested things, what is live if this
-                       -- thing is live?  Invariant: the binder
-                       -- itself is always a member of
-                       -- the dynamic set of its own LiveInfo
+  = TopLet              -- top level things
+  | NestedLet LiveInfo  -- For nested things, what is live if this
+                        -- thing is live?  Invariant: the binder
+                        -- itself is always a member of
+                        -- the dynamic set of its own LiveInfo
 
 isLetBound :: HowBound -> Bool
 isLetBound (LetBound _ _) = True
@@ -866,8 +880,8 @@ topLevelBound _                   = False
 
 For a let(rec)-bound variable, x, we record LiveInfo, the set of
 variables that are live if x is live.  This LiveInfo comprises
-       (a) dynamic live variables (ones with a non-top-level binding)
-       (b) static live variabes (CAFs or things that refer to CAFs)
+        (a) dynamic live variables (ones with a non-top-level binding)
+        (b) static live variabes (CAFs or things that refer to CAFs)
 
 For "normal" variables (a) is just x alone.  If x is a let-no-escaped
 variable then x is represented by a code pointer and a stack pointer
@@ -950,8 +964,8 @@ lookupVarLne v = LneM $ \env _lvs_cont -> lookupBinding env v
 
 lookupBinding :: IdEnv HowBound -> Id -> HowBound
 lookupBinding env v = case lookupVarEnv env v of
-                       Just xx -> xx
-                       Nothing -> ASSERT2( isGlobalId v, ppr v ) ImportBound
+                        Just xx -> xx
+                        Nothing -> ASSERT2( isGlobalId v, ppr v ) ImportBound
 
 
 -- The result of lookupLiveVarsForSet, a set of live variables, is
@@ -968,50 +982,50 @@ freeVarsToLiveVars fvs = LneM freeVarsToLiveVars'
 
     do_one (v, how_bound)
       = case how_bound of
-         ImportBound                     -> unitLiveCaf v      -- Only CAF imports are 
-                                                               -- recorded in fvs
-         LetBound TopLet _              
-               | mayHaveCafRefs (idCafInfo v) -> unitLiveCaf v
-               | otherwise                    -> emptyLiveInfo
+          ImportBound                     -> unitLiveCaf v      -- Only CAF imports are
+                                                                -- recorded in fvs
+          LetBound TopLet _
+                | mayHaveCafRefs (idCafInfo v) -> unitLiveCaf v
+                | otherwise                    -> emptyLiveInfo
 
-         LetBound (NestedLet lvs) _      -> lvs        -- lvs already contains v
-                                                       -- (see the invariant on NestedLet)
+          LetBound (NestedLet lvs) _      -> lvs        -- lvs already contains v
+                                                        -- (see the invariant on NestedLet)
 
-         _lambda_or_case_binding         -> unitLiveVar v      -- Bound by lambda or case
+          _lambda_or_case_binding         -> unitLiveVar v      -- Bound by lambda or case
 \end{code}
 
 %************************************************************************
-%*                                                                     *
+%*                                                                      *
 \subsection[Free-var info]{Free variable information}
-%*                                                                     *
+%*                                                                      *
 %************************************************************************
 
 \begin{code}
 type FreeVarsInfo = VarEnv (Var, HowBound, StgBinderInfo)
-       -- The Var is so we can gather up the free variables
-       -- as a set.
-       --
-       -- The HowBound info just saves repeated lookups;
-       -- we look up just once when we encounter the occurrence.
-       -- INVARIANT: Any ImportBound Ids are HaveCafRef Ids
-       --            Imported Ids without CAF refs are simply
-       --            not put in the FreeVarsInfo for an expression.
-       --            See singletonFVInfo and freeVarsToLiveVars
-       --
-       -- StgBinderInfo records how it occurs; notably, we
-       -- are interested in whether it only occurs in saturated 
-       -- applications, because then we don't need to build a
-       -- curried version.
-       -- If f is mapped to noBinderInfo, that means
-       -- that f *is* mentioned (else it wouldn't be in the
-       -- IdEnv at all), but perhaps in an unsaturated applications.
-       --
-       -- All case/lambda-bound things are also mapped to
-       -- noBinderInfo, since we aren't interested in their
-       -- occurence info.
-       --
-       -- For ILX we track free var info for type variables too;
-       -- hence VarEnv not IdEnv
+        -- The Var is so we can gather up the free variables
+        -- as a set.
+        --
+        -- The HowBound info just saves repeated lookups;
+        -- we look up just once when we encounter the occurrence.
+        -- INVARIANT: Any ImportBound Ids are HaveCafRef Ids
+        --            Imported Ids without CAF refs are simply
+        --            not put in the FreeVarsInfo for an expression.
+        --            See singletonFVInfo and freeVarsToLiveVars
+        --
+        -- StgBinderInfo records how it occurs; notably, we
+        -- are interested in whether it only occurs in saturated
+        -- applications, because then we don't need to build a
+        -- curried version.
+        -- If f is mapped to noBinderInfo, that means
+        -- that f *is* mentioned (else it wouldn't be in the
+        -- IdEnv at all), but perhaps in an unsaturated applications.
+        --
+        -- All case/lambda-bound things are also mapped to
+        -- noBinderInfo, since we aren't interested in their
+        -- occurence info.
+        --
+        -- For ILX we track free var info for type variables too;
+        -- hence VarEnv not IdEnv
 \end{code}
 
 \begin{code}
@@ -1022,7 +1036,7 @@ singletonFVInfo :: Id -> HowBound -> StgBinderInfo -> FreeVarsInfo
 -- Don't record non-CAF imports at all, to keep free-var sets small
 singletonFVInfo id ImportBound info
    | mayHaveCafRefs (idCafInfo id) = unitVarEnv id (id, ImportBound, info)
-   | otherwise                            = emptyVarEnv
+   | otherwise                     = emptyVarEnv
 singletonFVInfo id how_bound info  = unitVarEnv id (id, how_bound, info)
 
 unionFVInfo :: FreeVarsInfo -> FreeVarsInfo -> FreeVarsInfo
@@ -1036,8 +1050,8 @@ minusFVBinders vs fv = foldr minusFVBinder fv vs
 
 minusFVBinder :: Id -> FreeVarsInfo -> FreeVarsInfo
 minusFVBinder v fv = fv `delVarEnv` v
-       -- When removing a binder, remember to add its type variables
-       -- c.f. CoreFVs.delBinderFV
+        -- When removing a binder, remember to add its type variables
+        -- c.f. CoreFVs.delBinderFV
 
 elementOfFVInfo :: Id -> FreeVarsInfo -> Bool
 elementOfFVInfo id fvs = maybeToBool (lookupVarEnv fvs id)
@@ -1045,21 +1059,21 @@ elementOfFVInfo id fvs = maybeToBool (lookupVarEnv fvs id)
 lookupFVInfo :: FreeVarsInfo -> Id -> StgBinderInfo
 -- Find how the given Id is used.
 -- Externally visible things may be used any old how
-lookupFVInfo fvs id 
+lookupFVInfo fvs id
   | isExternalName (idName id) = noBinderInfo
   | otherwise = case lookupVarEnv fvs id of
-                       Nothing         -> noBinderInfo
-                       Just (_,_,info) -> info
+                        Nothing         -> noBinderInfo
+                        Just (_,_,info) -> info
 
-allFreeIds :: FreeVarsInfo -> [(Id,HowBound)]  -- Both top level and non-top-level Ids
+allFreeIds :: FreeVarsInfo -> [(Id,HowBound)]   -- Both top level and non-top-level Ids
 allFreeIds fvs = ASSERT( all (isId . fst) ids ) ids
       where
-       ids = [(id,how_bound) | (id,how_bound,_) <- varEnvElts fvs]
+        ids = [(id,how_bound) | (id,how_bound,_) <- varEnvElts fvs]
 
 -- Non-top-level things only, both type variables and ids
-getFVs :: FreeVarsInfo -> [Var]        
-getFVs fvs = [id | (id, how_bound, _) <- varEnvElts fvs, 
-                   not (topLevelBound how_bound) ]
+getFVs :: FreeVarsInfo -> [Var]
+getFVs fvs = [id | (id, how_bound, _) <- varEnvElts fvs,
+                    not (topLevelBound how_bound) ]
 
 getFVSet :: FreeVarsInfo -> VarSet
 getFVSet fvs = mkVarSet (getFVs fvs)
@@ -1073,8 +1087,8 @@ plusFVInfo (id1,hb1,info1) (id2,hb2,info2)
 
 -- The HowBound info for a variable in the FVInfo should be consistent
 check_eq_how_bound :: HowBound -> HowBound -> Bool
-check_eq_how_bound ImportBound               ImportBound        = True
-check_eq_how_bound LambdaBound               LambdaBound        = True
+check_eq_how_bound ImportBound        ImportBound        = True
+check_eq_how_bound LambdaBound        LambdaBound        = True
 check_eq_how_bound (LetBound li1 ar1) (LetBound li2 ar2) = ar1 == ar2 && check_eq_li li1 li2
 check_eq_how_bound _                  _                  = False
 
@@ -1092,20 +1106,20 @@ filterStgBinders bndrs = filter isId bndrs
 
 
 \begin{code}
-       -- Ignore all notes except SCC
+        -- Ignore all notes except SCC
 myCollectBinders :: Expr Var -> ([Var], Expr Var)
 myCollectBinders expr
   = go [] expr
   where
     go bs (Lam b e)          = go (b:bs) e
-    go bs e@(Note (SCC _) _) = (reverse bs, e) 
+    go bs e@(Note (SCC _) _) = (reverse bs, e)
     go bs (Cast e _)         = go bs e
     go bs (Note _ e)         = go bs e
-    go bs e                 = (reverse bs, e)
+    go bs e                  = (reverse bs, e)
 
 myCollectArgs :: CoreExpr -> (Id, [CoreArg])
-       -- We assume that we only have variables
-       -- in the function position by now
+        -- We assume that we only have variables
+        -- in the function position by now
 myCollectArgs expr
   = go expr []
   where
@@ -1115,7 +1129,7 @@ myCollectArgs expr
     go (Cast e _)       as = go e as
     go (Note _ e)       as = go e as
     go (Lam b e)        as
-       | isTyVar b         = go e as   -- Note [Collect args]
+       | isTyVar b         = go e as  -- Note [Collect args]
     go _                _  = pprPanic "CoreToStg.myCollectArgs" (ppr expr)
 \end{code}
 
@@ -1123,10 +1137,10 @@ Note [Collect args]
 ~~~~~~~~~~~~~~~~~~~
 This big-lambda case occurred following a rather obscure eta expansion.
 It all seems a bit yukky to me.
-     
+
 \begin{code}
 stgArity :: Id -> HowBound -> Arity
 stgArity _ (LetBound _ arity) = arity
-stgArity f ImportBound       = idArity f
+stgArity f ImportBound        = idArity f
 stgArity _ LambdaBound        = 0
 \end{code}