[project @ 1997-09-04 20:04:29 by sof]
[ghc-hetmet.git] / ghc / compiler / simplCore / SimplEnv.lhs
index f07a328..68453bc 100644 (file)
@@ -7,92 +7,88 @@
 #include "HsVersions.h"
 
 module SimplEnv (
-       nullSimplEnv,
+       nullSimplEnv, combineSimplEnv,
        pprSimplEnv, -- debugging only
 
-       replaceInEnvs, nullInEnvs,
-
        extendTyEnv, extendTyEnvList,
        simplTy, simplTyInId,
 
-       extendIdEnvWithAtom, extendIdEnvWithAtomList,
-       extendIdEnvWithInlining,
+       extendIdEnvWithAtom, extendIdEnvWithAtoms,
        extendIdEnvWithClone, extendIdEnvWithClones,
        lookupId,
 
-       extendUnfoldEnvGivenRhs,
-       extendUnfoldEnvGivenFormDetails,
-       extendUnfoldEnvGivenConstructor,
+
+       markDangerousOccs,
+       lookupRhsInfo, lookupOutIdEnv, isEvaluated,
+       extendEnvGivenBinding, extendEnvGivenNewRhs,
+       extendEnvGivenRhsInfo, extendEnvGivenInlining,
+
        lookForConstructor,
-       lookupUnfolding, filterUnfoldEnvForInlines,
 
-       getSwitchChecker, switchIsSet,
+       getSwitchChecker, switchIsSet, getSimplIntSwitch, 
+       switchOffInlining, setCaseScrutinee,
 
-       setEnclosingCC,
+       setEnclosingCC, getEnclosingCC,
 
        -- Types
-       SwitchChecker(..),
-       SimplEnv, EnclosingCcDetails(..),
-       InIdEnv(..), IdVal(..), InTypeEnv(..),
-       UnfoldEnv, UnfoldItem, UnfoldConApp,
-
-       InId(..),  InBinder(..),  InBinding(..),  InType(..),
-       OutId(..), OutBinder(..), OutBinding(..), OutType(..),
+       SYN_IE(SwitchChecker),
+       SimplEnv, 
+       SYN_IE(InIdEnv), SYN_IE(InTypeEnv),
+       UnfoldConApp,
+       RhsInfo(..),
 
-       InExpr(..),  InAlts(..),  InDefault(..),  InArg(..),
-       OutExpr(..), OutAlts(..), OutDefault(..), OutArg(..)
+       SYN_IE(InId),  SYN_IE(InBinder),  SYN_IE(InBinding),  SYN_IE(InType),
+       SYN_IE(OutId), SYN_IE(OutBinder), SYN_IE(OutBinding), SYN_IE(OutType),
 
-       -- and to make the interface self-sufficient...
+       SYN_IE(InExpr),  SYN_IE(InAlts),  SYN_IE(InDefault),  SYN_IE(InArg),
+       SYN_IE(OutExpr), SYN_IE(OutAlts), SYN_IE(OutDefault), SYN_IE(OutArg)
     ) where
 
-import Ubiq{-uitous-}
+IMP_Ubiq(){-uitous-}
 
-import SmplLoop                -- breaks the MagicUFs / SimplEnv loop
+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
+IMPORT_DELOOPER(SmplLoop)              -- breaks the MagicUFs / SimplEnv loop
+#endif
 
-import BinderInfo      ( BinderInfo{-instances-} )
-import CmdLineOpts     ( switchIsOn, intSwitchSet, SimplifierSwitch(..), SwitchResult )
+import BinderInfo      ( orBinderInfo, andBinderInfo, noBinderInfo,
+                         BinderInfo(..){-instances, too-}, FunOrArg, DuplicationDanger, InsideSCC
+                       )
+import CmdLineOpts     ( switchIsOn, intSwitchSet, opt_UnfoldingCreationThreshold,
+                         SimplifierSwitch(..), SwitchResult(..)
+                       )
 import CoreSyn
-import CoreUnfold      ( UnfoldingDetails(..), mkGenForm, modifyUnfoldingDetails,
-                         calcUnfoldingGuidance, UnfoldingGuidance(..),
-                         mkFormSummary, FormSummary
+import CoreUnfold      ( mkFormSummary, okToInline, couldBeSmallEnoughToInline,
+                         Unfolding(..), UfExpr, RdrName,
+                         SimpleUnfolding(..), FormSummary(..),
+                         calcUnfoldingGuidance, UnfoldingGuidance(..)
                        )
+import CoreUtils       ( coreExprCc, unTagBinders )
+import CostCentre      ( CostCentre, subsumedCosts, noCostCentreAttached )
 import FiniteMap       -- lots of things
-import Id              ( idType, getIdUnfolding, getIdStrictness,
-                         applyTypeEnvToId,
+import Id              ( idType, getIdUnfolding, getIdStrictness, idWantsToBeINLINEd,
+                         applyTypeEnvToId, getInlinePragma,
                          nullIdEnv, growIdEnvList, rngIdEnv, lookupIdEnv,
-                         addOneToIdEnv, modifyIdEnv,
-                         IdEnv(..), IdSet(..), GenId )
-import IdInfo          ( StrictnessInfo )
+                         addOneToIdEnv, modifyIdEnv, mkIdSet, modifyIdEnv_Directly,
+                         SYN_IE(IdEnv), SYN_IE(IdSet), GenId, SYN_IE(Id) )
 import Literal         ( isNoRepLit, Literal{-instances-} )
+import Maybes          ( maybeToBool, expectJust )
 import Name            ( isLocallyDefined )
-import Outputable      ( Outputable(..){-instances-} )
+import OccurAnal       ( occurAnalyseExpr )
+import Outputable      ( PprStyle(..), Outputable(..){-instances-} )
 import PprCore         -- various instances
-import PprStyle                ( PprStyle(..) )
 import PprType         ( GenType, GenTyVar )
 import Pretty
-import Type            ( getAppDataTyCon, applyTypeEnvToTy )
-import TyVar           ( nullTyVarEnv, addOneToIdEnv, addOneToTyVarEnv,
-                         growTyVarEnvList,
-                         TyVarEnv(..), GenTyVar{-instance Eq-}
+import Type            ( eqTy, applyTypeEnvToTy, SYN_IE(Type) )
+import TyVar           ( nullTyVarEnv, addOneToTyVarEnv, growTyVarEnvList,
+                         SYN_IE(TyVarEnv), GenTyVar{-instance Eq-} ,
+                         SYN_IE(TyVar)
                        )
-import Unique          ( Unique{-instance Outputable-} )
-import UniqSet         -- lots of things
-import Usage           ( UVar(..), GenUsage{-instances-} )
-import Util            ( zipEqual, panic, assertPanic )
+import Unique          ( Unique{-instance Outputable-}, Uniquable(..) )
+import UniqFM          ( addToUFM, addToUFM_C, ufmToList )
+import Usage           ( SYN_IE(UVar), GenUsage{-instances-} )
+import Util            ( SYN_IE(Eager), appEager, returnEager, runEager,
+                         zipEqual, thenCmp, cmpList, panic, panic#, assertPanic, Ord3(..) )
 
-type TypeEnv = TyVarEnv Type
-addToUFM_Directly = panic "addToUFM_Directly (SimplEnv)"
-bottomIsGuaranteed = panic "bottomIsGuaranteed (SimplEnv)"
-cmpType = panic "cmpType (SimplEnv)"
-exprSmallEnoughToDup = panic "exprSmallEnoughToDup (SimplEnv)"
-lookupDirectlyUFM = panic "lookupDirectlyUFM (SimplEnv)"
-manifestlyWHNF = panic "manifestlyWHNF (SimplEnv)"
-occurAnalyseExpr = panic "occurAnalyseExpr (SimplEnv)"
-oneSafeOcc = panic "oneSafeOcc (SimplEnv)"
-oneTextualOcc = panic "oneTextualOcc (SimplEnv)"
-simplIdWantsToBeINLINEd = panic "simplIdWantsToBeINLINEd (SimplEnv)"
-uNFOLDING_CREATION_THRESHOLD = panic "uNFOLDING_CREATION_THRESHOLD (SimplEnv)"
-ufmToList = panic "ufmToList (SimplEnv)"
 \end{code}
 
 %************************************************************************
@@ -101,6 +97,27 @@ ufmToList = panic "ufmToList (SimplEnv)"
 %*                                                                     *
 %************************************************************************
 
+\begin{code}
+type InId      = Id                    -- Not yet cloned
+type InBinder  = (InId, BinderInfo)
+type InType    = Type                  -- Ditto
+type InBinding = SimplifiableCoreBinding
+type InExpr    = SimplifiableCoreExpr
+type InAlts    = SimplifiableCoreCaseAlts
+type InDefault = SimplifiableCoreCaseDefault
+type InArg     = SimplifiableCoreArg
+
+type OutId     = Id                    -- Cloned
+type OutBinder = Id
+type OutType   = Type                  -- Cloned
+type OutBinding        = CoreBinding
+type OutExpr   = CoreExpr
+type OutAlts   = CoreCaseAlts
+type OutDefault        = CoreCaseDefault
+type OutArg    = CoreArg
+
+type SwitchChecker = SimplifierSwitch -> SwitchResult
+\end{code}
 
 %************************************************************************
 %*                                                                     *
@@ -127,522 +144,411 @@ inside the Ids, etc.).
 data SimplEnv
   = SimplEnv
        SwitchChecker
+       CostCentre              -- The enclosing cost-centre (when profiling)
+       InTypeEnv               -- Maps old type variables to new clones
+       InIdEnv                 -- Maps locally-bound Ids to new clones
+       OutIdEnv                -- Info about the values of OutIds
+       ConAppMap               -- Maps constructor applications back to OutIds
 
-       EnclosingCcDetails -- the enclosing cost-centre (when profiling)
-
-       InTypeEnv       -- For cloning types
-                       -- Domain is all in-scope type variables
-
-       InIdEnv         -- IdEnv
-                       -- Domain is
-                       --      *all*
-                       --      *in-scope*,
-                       --      *locally-defined*
-                       --      *InIds*
-                       -- (Could omit the exported top-level guys,
-                       -- since their names mustn't change; and ditto
-                       -- the non-exported top-level guys which you
-                       -- don't want to macro-expand, since their
-                       -- names need not change.)
-                       --
-                       -- Starts off empty
-
-       UnfoldEnv       -- Domain is any *OutIds*, including imports
-                       -- where we know something more than the
-                       -- interface file tells about their value (see
-                       -- below)
 
 nullSimplEnv :: SwitchChecker -> SimplEnv
 
 nullSimplEnv sw_chkr
-  = SimplEnv sw_chkr NoEnclosingCcDetails nullTyVarEnv nullIdEnv null_unfold_env
-
-pprSimplEnv (SimplEnv _ _ ty_env id_env (UFE unfold_env _ _))
-  = ppAboves [
-       ppStr "** Type Env ** ????????", -- ppr PprDebug ty_env,
-       ppSP, ppStr "** Id Env ** ?????????",
---     ppAboves [ pp_id_entry x | x <- getIdEnvMapping id_env ],
-       ppSP, ppStr "** Unfold Env **",
-       ppAboves [ pp_uf_entry x | x <- rngIdEnv unfold_env ]
-    ]
-  where
-    pp_id_entry (v, idval)
-      = ppCat [ppr PprDebug v, ppStr "=>",
-              case idval of
-                InlineIt _ _ e -> ppCat [ppStr "InlineIt:", ppr PprDebug e]
-                ItsAnAtom a    -> ppCat [ppStr "Atom:", ppr PprDebug a]
-             ]
-
-    pp_uf_entry (UnfoldItem v form encl_cc)
-      = ppCat [ppr PprDebug v, ppStr "=>",
-              case form of
-                NoUnfoldingDetails -> ppStr "NoUnfoldingDetails"
-                LitForm l -> ppCat [ppStr "Lit:", ppr PprDebug l]
-                OtherLitForm ls -> ppCat [ppStr "Other lit:", ppInterleave (ppStr ", ")
-                                                              [ppr PprDebug l | l <- ls]]
-                ConForm c a     -> ppCat [ppStr "Con:", ppr PprDebug c, ppr PprDebug a]
-                OtherConForm cs -> ppCat [ppStr "OtherCon:", ppInterleave (ppStr ", ")
-                                                             [ppr PprDebug c | c <- cs]]
-                GenForm t w e g -> ppCat [ppStr "UF:", ppr PprDebug t, ppr PprDebug w,
-                                                       ppr PprDebug g, ppr PprDebug e]
-                MagicForm s _   -> ppCat [ppStr "Magic:", ppr PprDebug s]
-             ]
+  = SimplEnv sw_chkr subsumedCosts nullTyVarEnv nullIdEnv nullIdEnv nullConApps
+
+combineSimplEnv :: SimplEnv -> SimplEnv -> SimplEnv
+combineSimplEnv env@(SimplEnv chkr _       _      _         out_id_env con_apps)
+           new_env@(SimplEnv _    encl_cc ty_env in_id_env _          _       )
+  = SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps
+
+pprSimplEnv (SimplEnv _ _ ty_env in_id_env out_id_env con_apps) = panic "pprSimplEnv"
 \end{code}
 
+
 %************************************************************************
 %*                                                                     *
-\subsubsection{The @IdVal@ type (for the ``IdEnv'')}
+\subsubsection{Command-line switches}
 %*                                                                     *
 %************************************************************************
 
-The unfoldings for imported things are mostly kept within the Id
-itself; nevertheless, they {\em can} get into the @UnfoldEnv@.  For
-example, suppose \tr{x} is imported, and we have
-\begin{verbatim}
-       case x of
-         (p,q) -> <body>
-\end{verbatim}
-Then within \tr{<body>}, we know that \tr{x} is a pair with components
-\tr{p} and \tr{q}.
+\begin{code}
+getSwitchChecker :: SimplEnv -> SwitchChecker
+getSwitchChecker (SimplEnv chkr _ _ _ _ _) = chkr
+
+switchIsSet :: SimplEnv -> SimplifierSwitch -> Bool
+switchIsSet (SimplEnv chkr _ _ _ _ _) switch
+  = switchIsOn chkr switch
+
+getSimplIntSwitch :: SwitchChecker -> (Int-> SimplifierSwitch) -> Int
+getSimplIntSwitch chkr switch
+  = expectJust "getSimplIntSwitch" (intSwitchSet chkr switch)
+
+       -- Crude, but simple
+setCaseScrutinee :: SimplEnv -> SimplEnv
+setCaseScrutinee (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps)
+  = SimplEnv chkr' encl_cc ty_env in_id_env out_id_env con_apps
+  where
+    chkr' SimplCaseScrutinee = SwBool True
+    chkr' other                     = chkr other
+\end{code}
+
+@switchOffInlining@ is used to prepare the environment for simplifying
+the RHS of an Id that's marked with an INLINE pragma.  It is going to
+be inlined wherever they are used, and then all the inlining will take
+effect.  Meanwhile, there isn't much point in doing anything to the
+as-yet-un-INLINEd rhs.  Furthremore, it's very important to switch off
+inlining!  because
+       (a) not doing so will inline a worker straight back into its wrapper!
+
+and    (b) Consider the following example 
+               let f = \pq -> BIG
+               in
+               let g = \y -> f y y
+                   {-# INLINE g #-}
+               in ...g...g...g...g...g...
+
+       Now, if that's the ONLY occurrence of f, it will be inlined inside g,
+       and thence copied multiple times when g is inlined.
+
+       Andy disagrees! Example:
+               all xs = foldr (&&) True xs
+               any p = all . map p  {-# INLINE any #-}
+       
+       Problem: any won't get deforested, and so if it's exported and
+       the importer doesn't use the inlining, (eg passes it as an arg)
+       then we won't get deforestation at all.
+       We havn't solved this problem yet!
+
+We prepare the envt by simply discarding the out_id_env, which has
+all the unfolding info. At one point we did it by modifying the chkr so
+that it said "EssentialUnfoldingsOnly", but that prevented legitmate, and important,
+simplifications happening in the body of the RHS.
 
 \begin{code}
-type InIdEnv = IdEnv IdVal     -- Maps InIds to their value
-
-data IdVal
-  = InlineIt InIdEnv InTypeEnv InExpr
-               -- No binding of the Id is left;
-               -- You *have* to replace any occurences
-               -- of the id with this expression.
-               -- Rather like a macro, really
-               -- NB: the InIdEnv/InTypeEnv is necessary to prevent
-               -- name caputure. Consider:
-               --      let y = ...
-               --          x = ...y...
-               --          y = ...
-               --      in ...x...
-               -- If x gets an InlineIt, we must remember
-               -- the correct binding for y.
-
-  | ItsAnAtom OutArg   -- Used either (a) to record the cloned Id
-                       -- or (b) if the orig defn is a let-binding, and
-                       -- the RHS of the let simplifies to an atom,
-                       -- we just bind the variable to that atom, and
-                       -- elide the let.
+switchOffInlining :: SimplEnv -> SimplEnv
+switchOffInlining (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps)
+  = SimplEnv chkr encl_cc ty_env in_id_env nullIdEnv nullConApps
 \end{code}
 
 %************************************************************************
 %*                                                                     *
-\subsubsection{The @UnfoldEnv@ type}
+\subsubsection{The ``enclosing cost-centre''}
 %*                                                                     *
 %************************************************************************
 
-The @UnfoldEnv@ contains information about the value of some of the
-in-scope identifiers.  It obeys the following invariant:
-
-       If the @UnfoldEnv@ contains information, it is safe to use it!
-
-In particular, if the @UnfoldEnv@ contains details of an unfolding of
-an Id, then it's safe to use the unfolding.  If, for example, the Id
-is used many times, then its unfolding won't be put in the UnfoldEnv
-at all.
+\begin{code}
+setEnclosingCC :: SimplEnv -> CostCentre -> SimplEnv
 
-The @UnfoldEnv@ (used to be [WDP 94/06]) a simple association list
-because (a)~it's small, and (b)~we need to search its {\em range} as
-well as its domain.
+setEnclosingCC (SimplEnv chkr _ ty_env in_id_env out_id_env con_apps) encl_cc
+  = SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps
 
-\begin{code}
-data UnfoldItem -- a glorified triple...
-  = UnfoldItem OutId                   -- key: used in lookForConstructor
-               UnfoldingDetails        -- for that Id
-               EnclosingCcDetails      -- so that if we do an unfolding,
-                                       -- we can "wrap" it in the CC
-                                       -- that was in force.
-
-data UnfoldConApp -- yet another glorified triple
-  = UCA                OutId                   -- same fields as ConForm
-               [OutArg]
-
-data UnfoldEnv -- yup, a glorified triple...
-  = UFE                (IdEnv UnfoldItem)      -- Maps an OutId => its UnfoldItem
-               IdSet                   -- The Ids in the domain of the env
-                                       -- which have details (GenForm True ...)
-                                       -- i.e., they claim they are duplicatable.
-                                       -- These are the ones we have to worry
-                                       -- about when adding new items to the
-                                       -- unfold env.
-               (FiniteMap UnfoldConApp OutId)
-                                       -- Maps applications of constructors (to
-                                       -- types & atoms) back to OutIds that are
-                                       -- bound to them; i.e., this is a reversed
-                                       -- mapping for (part of) the main IdEnv
-                                       -- (1st part of UFE)
-
-null_unfold_env = UFE nullIdEnv emptyUniqSet emptyFM
+getEnclosingCC :: SimplEnv -> CostCentre
+getEnclosingCC (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps) = encl_cc
 \end{code}
 
-The @UnfoldEnv@ type.  We expect on the whole that an @UnfoldEnv@ will
-be small, because it contains bindings only for those things whose
-form or unfolding is known.  Basically it maps @Id@ to their
-@UnfoldingDetails@ (and @EnclosingCcDetails@---boring...), but we also
-need to search it associatively, to look for @Id@s which have a given
-constructor form.
-
-We implement it with @IdEnvs@, possibly overkill, but sometimes these
-things silently grow quite big....  Here are some local functions used
-elsewhere in the module:
+%************************************************************************
+%*                                                                     *
+\subsubsection{The @TypeEnv@ part}
+%*                                                                     *
+%************************************************************************
 
 \begin{code}
-grow_unfold_env   :: UnfoldEnv -> OutId -> UnfoldingDetails -> EnclosingCcDetails -> UnfoldEnv
-lookup_unfold_env :: UnfoldEnv -> OutId -> UnfoldingDetails
-lookup_unfold_env_encl_cc
-                 :: UnfoldEnv -> OutId -> EnclosingCcDetails
-
-grow_unfold_env full_u_env id NoUnfoldingDetails _ = full_u_env
-
-grow_unfold_env (UFE u_env interesting_ids con_apps) id
-               uf_details@(GenForm True _ _ _) encl_cc
-    -- Only interested in Ids which have a "dangerous" unfolding; that is
-    -- one that claims to have a single occurrence.
-  = UFE (addOneToIdEnv u_env id (UnfoldItem id uf_details encl_cc))
-       (addOneToUniqSet interesting_ids id)
-       con_apps
-
-grow_unfold_env (UFE u_env interesting_ids con_apps) id uf_details encl_cc
-  = UFE (addOneToIdEnv u_env id (UnfoldItem id uf_details encl_cc))
-       interesting_ids
-       new_con_apps
-  where
-    new_con_apps
-      = case uf_details of
-         ConForm con vargs
-           -> case (lookupFM con_apps entry) of
-                Just _  -> con_apps -- unchanged; we hang onto what we have
-                Nothing -> addToFM con_apps entry id
-           where
-             entry = UCA con vargs
-
-         not_a_constructor -> con_apps -- unchanged
+type TypeEnv = TyVarEnv Type
+type InTypeEnv = TypeEnv       -- Maps InTyVars to OutTypes
 
-addto_unfold_env (UFE u_env interesting_ids con_apps) extra_items
-  = ASSERT(not (any constructor_form_in_those extra_items))
-    -- otherwise, we'd need to change con_apps
-    UFE (growIdEnvList u_env extra_items) interesting_ids con_apps
+extendTyEnv :: SimplEnv -> TyVar -> Type -> SimplEnv
+extendTyEnv (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps) tyvar ty
+  = SimplEnv chkr encl_cc new_ty_env in_id_env out_id_env con_apps
   where
-    constructor_form_in_those (_, UnfoldItem _ (ConForm _ _) _) = True
-    constructor_form_in_those _ = False
+    new_ty_env = addOneToTyVarEnv ty_env tyvar ty
 
-rng_unfold_env (UFE u_env _ _) = rngIdEnv u_env
+extendTyEnvList :: SimplEnv -> [(TyVar,Type)] -> SimplEnv
+extendTyEnvList (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps) pairs
+  = SimplEnv chkr encl_cc new_ty_env in_id_env out_id_env con_apps
+  where
+    new_ty_env = growTyVarEnvList ty_env pairs
 
-get_interesting_ids (UFE _ interesting_ids _) = interesting_ids
+simplTy     (SimplEnv _ _ ty_env _ _ _) ty = returnEager (applyTypeEnvToTy ty_env ty)
+simplTyInId (SimplEnv _ _ ty_env _ _ _) id = returnEager (applyTypeEnvToId ty_env id)
+\end{code}
 
-foldr_unfold_env fun (UFE u_env interesting_ids con_apps) stuff
-  = UFE (foldr fun u_env stuff) interesting_ids con_apps
+%************************************************************************
+%*                                                                     *
+\subsubsection{The ``Id env'' part}
+%*                                                                     *
+%************************************************************************
 
-lookup_unfold_env (UFE u_env _ _) id
-  = case (lookupIdEnv u_env id) of
-      Nothing                 -> NoUnfoldingDetails
-      Just (UnfoldItem _ uf _) -> uf
+\begin{code}
+type InIdEnv = IdEnv OutArg    -- Maps InIds to their value
+                               -- Usually this is just the cloned Id, but if
+                               -- if the orig defn is a let-binding, and
+                               -- the RHS of the let simplifies to an atom,
+                               -- we just bind the variable to that atom, and
+                               -- elide the let.
+\end{code}
 
-lookup_unfold_env_encl_cc (UFE u_env _ _) id
-  = case (lookupIdEnv u_env id) of
-      Nothing                      -> NoEnclosingCcDetails
-      Just (UnfoldItem _ _ encl_cc) -> encl_cc
+\begin{code}
+lookupId :: SimplEnv -> Id -> Eager ans OutArg
 
-lookup_conapp (UFE _ _ con_apps) con args
-  = lookupFM con_apps (UCA con args)
+lookupId (SimplEnv _ _ _ in_id_env _ _) id
+  = case (lookupIdEnv in_id_env id) of
+      Just atom -> returnEager atom
+      Nothing   -> returnEager (VarArg id)
+\end{code}
 
-modify_unfold_env (UFE u_env interesting_ids con_apps) zapper id
-  = UFE (modifyIdEnv u_env zapper id) interesting_ids con_apps
+\begin{code}
+extendIdEnvWithAtom
+       :: SimplEnv
+       -> InBinder
+        -> OutArg{-Val args only, please-}
+       -> SimplEnv
 
--- If the current binding claims to be a "unique" one, then
--- we modify it.
-modifyItem :: Bool -> BinderInfo -> UnfoldItem -> UnfoldItem
+extendIdEnvWithAtom (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps)
+                   (in_id,occ_info) atom
+  = case atom of
+     LitArg _      -> SimplEnv chkr encl_cc ty_env new_in_id_env out_id_env con_apps
+     VarArg out_id -> SimplEnv chkr encl_cc ty_env new_in_id_env 
+                              (modifyOccInfo out_id_env (uniqueOf out_id, occ_info)) con_apps
+--SimplEnv chkr encl_cc ty_env new_in_id_env new_out_id_env con_apps
+  where
+    new_in_id_env  = addOneToIdEnv in_id_env in_id atom
+{-
+    new_out_id_env = case atom of
+                       LitArg _      -> out_id_env
+                       VarArg out_id -> modifyOccInfo out_id_env (uniqueOf out_id, occ_info)
+-}
 
-modifyItem ok_to_dup occ_info (UnfoldItem id details enc_cc)
-  = UnfoldItem id (modifyUnfoldingDetails ok_to_dup occ_info details) enc_cc
-\end{code}
+extendIdEnvWithAtoms :: SimplEnv -> [(InBinder, OutArg)] -> SimplEnv
+extendIdEnvWithAtoms = foldr (\ (bndr,val) env -> extendIdEnvWithAtom env bndr val)
 
-The main thing about @UnfoldConApp@ is that it has @Ord@ defined on
-it, so we can use it for a @FiniteMap@ key.
-\begin{code}
-instance Eq  UnfoldConApp where
-    a == b = case cmp_app a b of { EQ_ -> True;   _ -> False }
-    a /= b = case cmp_app a b of { EQ_ -> False;  _ -> True  }
 
-instance Ord UnfoldConApp where
-    a <= b = case cmp_app a b of { LT_ -> True;  EQ_ -> True;  GT__ -> False }
-    a <  b = case cmp_app a b of { LT_ -> True;  EQ_ -> False; GT__ -> False }
-    a >= b = case cmp_app a b of { LT_ -> False; EQ_ -> True;  GT__ -> True  }
-    a >  b = case cmp_app a b of { LT_ -> False; EQ_ -> False; GT__ -> True  }
-    _tagCmp a b = case cmp_app a b of { LT_ -> _LT; EQ_ -> _EQ; GT__ -> _GT }
+extendIdEnvWithClone :: SimplEnv -> InBinder -> OutId -> SimplEnv
 
-instance Ord3 UnfoldConApp where
-    cmp = cmp_app
+extendIdEnvWithClone (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps)
+                    (in_id,_) out_id
+  = SimplEnv chkr encl_cc ty_env new_in_id_env out_id_env con_apps
+  where
+    new_in_id_env = addOneToIdEnv in_id_env in_id (VarArg out_id)
 
-cmp_app (UCA c1 as1) (UCA c2 as2)
-  = case (c1 `cmp` c2) of
-      LT_ -> LT_
-      GT_ -> GT_
-      _   -> cmp_lists cmp_atom as1 as2
+extendIdEnvWithClones :: SimplEnv -> [InBinder] -> [OutId] -> SimplEnv
+extendIdEnvWithClones (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps)
+                     in_binders out_ids
+  = SimplEnv chkr encl_cc ty_env new_in_id_env out_id_env con_apps
   where
-    cmp_lists cmp_item []     []     = EQ_
-    cmp_lists cmp_item (x:xs) []     = GT_
-    cmp_lists cmp_item []     (y:ys) = LT_
-    cmp_lists cmp_item (x:xs) (y:ys)
-      = case cmp_item x y of { EQ_ -> cmp_lists cmp_item xs ys; other -> other }
-
-    cmp_atom (VarArg x) (VarArg y) = x `cmp` y
-    cmp_atom (VarArg _) _               = LT_
-    cmp_atom (LitArg x) (LitArg y)
-      = case _tagCmp x y of { _LT -> LT_; _EQ -> EQ_; GT__ -> GT_ }
-    cmp_atom (LitArg _) _               = GT_
+    new_in_id_env = growIdEnvList in_id_env bindings
+    bindings      = zipEqual "extendIdEnvWithClones"
+                            [id | (id,_) <- in_binders]
+                            (map VarArg out_ids)
 \end{code}
 
 %************************************************************************
 %*                                                                     *
-\subsubsection{The @EnclosingCcDetails@ type}
+\subsubsection{The @OutIdEnv@}
 %*                                                                     *
 %************************************************************************
 
-\begin{code}
-data EnclosingCcDetails
-  = NoEnclosingCcDetails
-  | EnclosingCC            CostCentre
-\end{code}
 
-%************************************************************************
-%*                                                                     *
-\subsubsection{The ``InXXX'' and ``OutXXX'' type synonyms}
-%*                                                                     *
-%************************************************************************
+The domain of @OutIdInfo@ is some, but not necessarily all, in-scope @OutId@s;
+both locally-bound ones, and perhaps some imported ones too.
 
 \begin{code}
-type InId      = Id                    -- Not yet cloned
-type InBinder  = (InId, BinderInfo)
-type InType    = Type                  -- Ditto
-type InBinding = SimplifiableCoreBinding
-type InExpr    = SimplifiableCoreExpr
-type InAlts    = SimplifiableCoreCaseAlts
-type InDefault = SimplifiableCoreCaseDefault
-type InArg     = SimplifiableCoreArg
-
-type OutId     = Id                    -- Cloned
-type OutBinder = Id
-type OutType   = Type                  -- Cloned
-type OutBinding        = CoreBinding
-type OutExpr   = CoreExpr
-type OutAlts   = CoreCaseAlts
-type OutDefault        = CoreCaseDefault
-type OutArg    = CoreArg
+type OutIdEnv = IdEnv (OutId, BinderInfo, RhsInfo)
 
 \end{code}
 
-\begin{code}
-type SwitchChecker = SimplifierSwitch -> SwitchResult
-\end{code}
+The "Id" part is just so that we can recover the domain of the mapping, which
+IdEnvs don't allow directly.
 
-%************************************************************************
-%*                                                                     *
-\subsection{@SimplEnv@ handling}
-%*                                                                     *
-%************************************************************************
+The @BinderInfo@ tells about the occurrences of the @OutId@.
+Anything that isn't in here should be assumed to occur many times.
+We keep this info so we can modify it when something changes.
 
-%************************************************************************
-%*                                                                     *
-\subsubsection{Command-line switches}
-%*                                                                     *
-%************************************************************************
+The @RhsInfo@ part tells about the value to which the @OutId@ is bound.
 
 \begin{code}
-getSwitchChecker :: SimplEnv -> SwitchChecker
-getSwitchChecker (SimplEnv chkr _ _ _ _) = chkr
-
-switchIsSet :: SimplEnv -> SimplifierSwitch -> Bool
-switchIsSet (SimplEnv chkr _ _ _ _) switch
-  = switchIsOn chkr switch
+data RhsInfo = NoRhsInfo
+            | OtherLit [Literal]               -- It ain't one of these
+            | OtherCon [Id]                    -- It ain't one of these
+
+               -- InUnfolding is used for let(rec) bindings that
+               -- are *definitely* going to be inlined.
+               -- We record the un-simplified RHS and drop the binding
+            | InUnfolding SimplEnv             -- Un-simplified unfolding
+                          SimplifiableCoreExpr -- (need to snag envts therefore)
+
+            | OutUnfolding CostCentre
+                           SimpleUnfolding     -- Already-simplified unfolding
+
+lookupOutIdEnv :: SimplEnv -> OutId -> Maybe (OutId,BinderInfo,RhsInfo)
+lookupOutIdEnv (SimplEnv _ _ _ _ out_id_env _) id = lookupIdEnv out_id_env id
+
+lookupRhsInfo :: SimplEnv -> OutId -> RhsInfo
+lookupRhsInfo env id
+  = case lookupOutIdEnv env id of
+       Just (_,_,info) -> info
+       Nothing         -> NoRhsInfo
+
+modifyOutEnvItem :: (OutId, BinderInfo, RhsInfo)
+                -> (OutId, BinderInfo, RhsInfo) 
+                -> (OutId, BinderInfo, RhsInfo)
+modifyOutEnvItem (id, occ, info1) (_, _, info2)
+  = case (info1, info2) of
+               (OtherLit ls1, OtherLit ls2) -> (id,occ, OtherLit (ls1++ls2))
+               (OtherCon cs1, OtherCon cs2) -> (id,occ, OtherCon (cs1++cs2))
+               (_,            NoRhsInfo)    -> (id,occ, info1)
+               other                        -> (id,occ, info2)
 \end{code}
 
-%************************************************************************
-%*                                                                     *
-\subsubsection{The ``enclosing cost-centre''}
-%*                                                                     *
-%************************************************************************
 
 \begin{code}
-setEnclosingCC :: SimplEnv -> EnclosingCcDetails -> SimplEnv
-
-setEnclosingCC (SimplEnv chkr _ ty_env id_env unfold_env) encl_cc
-  = SimplEnv chkr encl_cc ty_env id_env unfold_env
+isEvaluated :: RhsInfo -> Bool
+isEvaluated (OtherLit _) = True
+isEvaluated (OtherCon _) = True
+isEvaluated (OutUnfolding _ (SimpleUnfolding ValueForm _ expr)) = True
+isEvaluated other = False
 \end{code}
 
-%************************************************************************
-%*                                                                     *
-\subsubsection{The @TypeEnv@ part}
-%*                                                                     *
-%************************************************************************
+
 
 \begin{code}
-type InTypeEnv = TypeEnv       -- Maps InTyVars to OutTypes
+mkSimplUnfoldingGuidance chkr out_id rhs
+  = calcUnfoldingGuidance (getInlinePragma out_id) opt_UnfoldingCreationThreshold rhs
 
-extendTyEnv :: SimplEnv -> TyVar -> Type -> SimplEnv
-extendTyEnv (SimplEnv chkr encl_cc ty_env id_env unfold_env) tyvar ty
-  = SimplEnv chkr encl_cc new_ty_env id_env unfold_env
+extendEnvGivenRhsInfo :: SimplEnv -> OutId -> BinderInfo -> RhsInfo -> SimplEnv
+extendEnvGivenRhsInfo env@(SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps)
+                     out_id occ_info rhs_info
+  = SimplEnv chkr encl_cc ty_env in_id_env new_out_id_env con_apps
   where
-    new_ty_env = addOneToTyVarEnv ty_env tyvar ty
+    new_out_id_env = addToUFM_C modifyOutEnvItem out_id_env out_id 
+                               (out_id, occ_info, rhs_info)
+\end{code}
 
-extendTyEnvList :: SimplEnv -> [(TyVar,Type)] -> SimplEnv
-extendTyEnvList (SimplEnv chkr encl_cc ty_env id_env unfold_env) pairs
-  = SimplEnv chkr encl_cc new_ty_env id_env unfold_env
+
+\begin{code}
+modifyOccInfo out_id_env (uniq, new_occ)
+  = modifyIdEnv_Directly modify_fn out_id_env uniq
   where
-    new_ty_env = growTyVarEnvList ty_env pairs
+    modify_fn (id,occ,rhs) = (id, orBinderInfo occ new_occ, rhs)
 
-simplTy     (SimplEnv _ _ ty_env _ _) ty = applyTypeEnvToTy ty_env ty
-simplTyInId (SimplEnv _ _ ty_env _ _) id = applyTypeEnvToId ty_env id
+markDangerousOccs (SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps) atoms
+  = SimplEnv chkr encl_cc ty_env in_id_env new_out_id_env con_apps
+  where
+    new_out_id_env = foldl (modifyIdEnv modify_fn) out_id_env [v | VarArg v <- atoms]
+    modify_fn (id,occ,rhs) = (id, noBinderInfo, rhs)
 \end{code}
 
-@replaceInEnvs@ is used to install saved type and id envs
-when pulling an un-simplified expression out of the environment, which
-was saved with its environments.
 
 \begin{code}
-nullInEnvs = (nullTyVarEnv, nullIdEnv) :: (InTypeEnv,InIdEnv)
-
-replaceInEnvs :: SimplEnv -> (InTypeEnv,InIdEnv) -> SimplEnv
-
-replaceInEnvs (SimplEnv chkr encl_cc ty_env id_env unfold_env)
-             (new_ty_env, new_id_env)
-  = SimplEnv chkr encl_cc new_ty_env new_id_env unfold_env
+extendEnvGivenInlining :: SimplEnv -> Id -> BinderInfo -> InExpr -> SimplEnv
+extendEnvGivenInlining env@(SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps)
+                      id occ_info rhs
+  = SimplEnv chkr encl_cc ty_env in_id_env new_out_id_env con_apps
+  where
+    new_out_id_env = addToUFM out_id_env id (id, occ_info, InUnfolding env rhs)
 \end{code}
 
 %************************************************************************
 %*                                                                     *
-\subsubsection{The ``Id env'' part}
+\subsubsection{The @ConAppMap@ type}
 %*                                                                     *
 %************************************************************************
 
-\begin{code}
-extendIdEnvWithAtom
-       :: SimplEnv
-       -> InBinder -> OutArg
-       -> SimplEnv
-
-extendIdEnvWithAtom (SimplEnv chkr encl_cc ty_env id_env unfold_env) (in_id,occ_info) atom@(LitArg lit)
-  = SimplEnv chkr encl_cc ty_env new_id_env unfold_env
-  where
-    new_id_env = addOneToIdEnv id_env in_id (ItsAnAtom atom)
+The @ConAppMap@ maps applications of constructors (to value atoms)
+back to an association list that says "if the constructor was applied
+to one of these lists-of-Types, then this OutId is your man (in a
+non-gender-specific sense)".  I.e., this is a reversed mapping for
+(part of) the main OutIdEnv
 
-extendIdEnvWithAtom (SimplEnv chkr encl_cc ty_env id_env unfold_env)
-           (in_id, occ_info) atom@(VarArg out_id)
-  = SimplEnv chkr encl_cc ty_env new_id_env new_unfold_env
-  where
-    new_id_env = addOneToIdEnv id_env in_id (ItsAnAtom atom)
+\begin{code}
+type ConAppMap = FiniteMap UnfoldConApp [([Type], OutId)]
 
-    new_unfold_env = modify_unfold_env
-                       unfold_env
-                       (modifyItem ok_to_dup occ_info)
-                       out_id
-               -- Modify binding for in_id
-               -- NO! modify out_id, because its the info on the
-               -- atom that interest's us.
+data UnfoldConApp
+  = UCA                OutId                   -- data constructor
+               [OutArg]                -- *value* arguments; see use below
+\end{code}
 
-    ok_to_dup    = switchIsOn chkr SimplOkToDupCode
+\begin{code}
+nullConApps = emptyFM
 
-extendIdEnvWithAtomList
-       :: SimplEnv
-       -> [(InBinder, OutArg)]
-       -> SimplEnv
-extendIdEnvWithAtomList = foldr (\ (bndr,val) env -> extendIdEnvWithAtom env bndr val)
+extendConApps con_apps id (Con con args)
+  = addToFM_C (\old new -> new++old) con_apps (UCA con val_args) [(ty_args,id)]
+  where
+    val_args = filter isValArg args            -- Literals and Ids
+    ty_args  = [ty | TyArg ty <- args]         -- Just types
 
-extendIdEnvWithInlining
-       :: SimplEnv             -- The Env to modify
-       -> SimplEnv             -- The Env to record in the inlining.  Usually the
-                               -- same as the previous one, except in the recursive case
-       -> InBinder -> InExpr
-       -> SimplEnv
+extendConApps con_apps id other_rhs = con_apps
+\end{code}
 
-extendIdEnvWithInlining (SimplEnv chkr encl_cc ty_env        id_env        unfold_env)
-                       ~(SimplEnv _   _       inline_ty_env inline_id_env _         )
-                       (in_id,occ_info)
-                       expr
-  = SimplEnv chkr encl_cc ty_env new_id_env unfold_env
+\begin{code}
+lookForConstructor (SimplEnv _ _ _ _ _ con_apps) con args
+  = case lookupFM con_apps (UCA con val_args) of
+       Nothing     -> Nothing
+
+       Just assocs -> case [id | (tys, id) <- assocs, 
+                                 and (zipWith eqTy tys ty_args)]
+                      of
+                         []     -> Nothing
+                         (id:_) -> Just id
   where
-    new_id_env = addOneToIdEnv id_env in_id (InlineIt inline_id_env inline_ty_env expr)
+    val_args = filter isValArg args            -- Literals and Ids
+    ty_args  = [ty | TyArg ty <- args]         -- Just types
 
-extendIdEnvWithClone
-       :: SimplEnv
-       -> InBinder     -- Old binder; binderinfo ignored
-       -> OutId        -- Its new clone, as an Id
-       -> SimplEnv
+\end{code}
 
-extendIdEnvWithClone (SimplEnv chkr encl_cc ty_env id_env unfold_env)
-       (in_id,_) out_id
-  = SimplEnv chkr encl_cc ty_env new_id_env unfold_env
-  where
-    new_id_env = addOneToIdEnv id_env in_id (ItsAnAtom (VarArg out_id))
+NB: In @lookForConstructor@ we used (before Apr 94) to have a special case
+for nullary constructors, but now we only do constructor re-use in
+let-bindings the special case isn't necessary any more.
 
-extendIdEnvWithClones  -- Like extendIdEnvWithClone
-       :: SimplEnv
-       -> [InBinder]
-       -> [OutId]
-       -> SimplEnv
+\begin{verbatim}       
+  =    -- Don't re-use nullary constructors; it's a waste.  Consider
+       -- let
+       --        a = leInt#! p q
+       -- in
+       -- case a of
+       --    True  -> ...
+       --    False -> False
+       --
+       -- Here the False in the second case will get replace by "a", hardly
+       -- a good idea
+    Nothing
+\end{verbatim}
 
-extendIdEnvWithClones (SimplEnv chkr encl_cc ty_env id_env unfold_env)
-       in_binders out_ids
-  = SimplEnv chkr encl_cc ty_env new_id_env unfold_env
-  where
-    new_id_env = growIdEnvList id_env (in_ids `zipEqual` out_vals)
-    in_ids     = [id | (id,_) <- in_binders]
-    out_vals   = [ItsAnAtom (VarArg out_id) | out_id <- out_ids]
-
-lookupId :: SimplEnv -> Id -> Maybe IdVal
-
-lookupId (SimplEnv _ _ _ id_env _) id
-#ifndef DEBUG
-  = lookupIdEnv id_env id
-#else
-  = case (lookupIdEnv id_env id) of
-      xxx@(Just _) -> xxx
-      xxx         -> --false!: ASSERT(not (isLocallyDefined id))
-                     xxx
-#endif
-\end{code}
 
-%************************************************************************
-%*                                                                     *
-\subsubsection{The @UnfoldEnv@}
-%*                                                                     *
-%************************************************************************
+The main thing about @UnfoldConApp@ is that it has @Ord@ defined on
+it, so we can use it for a @FiniteMap@ key.
 
 \begin{code}
-extendUnfoldEnvGivenFormDetails
-       :: SimplEnv
-       -> OutId
-       -> UnfoldingDetails
-       -> SimplEnv
+instance Eq  UnfoldConApp where
+    a == b = case (a `cmp` b) of { EQ_ -> True;   _ -> False }
+    a /= b = case (a `cmp` b) of { EQ_ -> False;  _ -> True  }
 
-extendUnfoldEnvGivenFormDetails
-       env@(SimplEnv chkr encl_cc ty_env id_env unfold_env)
-       id details
-  = case details of
-      NoUnfoldingDetails -> env
-      good_details      -> SimplEnv chkr encl_cc ty_env id_env new_unfold_env
-       where
-         new_unfold_env = grow_unfold_env unfold_env id good_details encl_cc
+instance Ord UnfoldConApp where
+    a <= b = case (a `cmp` b) of { LT_ -> True;  EQ_ -> True;  GT__ -> False }
+    a <  b = case (a `cmp` b) of { LT_ -> True;  EQ_ -> False; GT__ -> False }
+    a >= b = case (a `cmp` b) of { LT_ -> False; EQ_ -> True;  GT__ -> True  }
+    a >  b = case (a `cmp` b) of { LT_ -> False; EQ_ -> False; GT__ -> True  }
+    _tagCmp a b = case (a `cmp` b) of { LT_ -> _LT; EQ_ -> _EQ; GT__ -> _GT }
 
-extendUnfoldEnvGivenConstructor -- specialised variant
-       :: SimplEnv
-       -> OutId                -- bind this to...
-       -> Id -> [OutId]        -- "con <tys-to-be-invented> args"
-       -> SimplEnv
+instance Ord3 UnfoldConApp where
+    cmp = cmp_app
 
-extendUnfoldEnvGivenConstructor env var con args
-  = let
-       -- conjure up the types to which the con should be applied
-       scrut_ty        = idType var
-       (_, ty_args, _) = getAppDataTyCon scrut_ty
-    in
-    extendUnfoldEnvGivenFormDetails
-      env var (ConForm con (map VarArg args))
+cmp_app (UCA c1 as1) (UCA c2 as2)
+  = cmp c1 c2 `thenCmp` cmpList cmp_arg as1 as2
+  where
+    -- ToDo: make an "instance Ord3 CoreArg"???
+
+    cmp_arg (VarArg   x) (VarArg   y) = x `cmp` y
+    cmp_arg (LitArg   x) (LitArg   y) = x `cmp` y
+    cmp_arg (TyArg    x) (TyArg    y) = panic# "SimplEnv.cmp_app:TyArgs"
+    cmp_arg (UsageArg x) (UsageArg y) = panic# "SimplEnv.cmp_app:UsageArgs"
+    cmp_arg x y
+      | tag x _LT_ tag y = LT_
+      | otherwise       = GT_
+      where
+       tag (VarArg   _) = ILIT(1)
+       tag (LitArg   _) = ILIT(2)
+       tag (TyArg    _) = panic# "SimplEnv.cmp_app:TyArg"
+       tag (UsageArg _) = panic# "SimplEnv.cmp_app:UsageArg"
 \end{code}
 
 
@@ -687,163 +593,73 @@ of the RHS.  In the example we'd go back and record that r_index is now used
 inside a lambda.
 
 \begin{code}
-extendUnfoldEnvGivenRhs
-       :: SimplEnv
-       -> InBinder
-       -> OutId        -- Note: *must* be an "out" Id (post-cloning)
-       -> OutExpr      -- Its rhs (*simplified*)
-       -> SimplEnv
-
-extendUnfoldEnvGivenRhs env@(SimplEnv chkr encl_cc ty_env id_env unfold_env)
-                       binder@(_,occ_info) out_id rhs
-  = SimplEnv chkr encl_cc ty_env id_env new_unfold_env
+extendEnvGivenNewRhs :: SimplEnv -> OutId -> OutExpr -> SimplEnv
+extendEnvGivenNewRhs env out_id rhs
+  = extendEnvGivenBinding env noBinderInfo out_id rhs
+
+extendEnvGivenBinding :: SimplEnv -> BinderInfo -> OutId -> OutExpr -> SimplEnv
+extendEnvGivenBinding env@(SimplEnv chkr encl_cc ty_env in_id_env out_id_env con_apps)
+                     occ_info out_id rhs
+  = SimplEnv chkr encl_cc ty_env in_id_env new_out_id_env new_con_apps 
   where
+    new_out_id_env | okToInline form occ_info (couldBeSmallEnoughToInline guidance) 
+                  = out_id_env_with_unfolding
+                  | otherwise
+                  = out_id_env
+       -- Don't bother to extend the OutIdEnv unless there is some possibility
+       -- that the thing might be inlined.  We check this by calling okToInline suitably.
+
+    new_con_apps = _scc_ "eegnr.conapps" 
+                  extendConApps con_apps out_id rhs
+
+       -- Modify the occ info for rhs's interesting free variables.
+    out_id_env_with_unfolding = _scc_ "eegnr.modify_occ" 
+                               foldl modifyOccInfo env1 full_fv_occ_info
+               -- NB: full_fv_occ_info *combines* the occurrence of the current binder
+               -- with the occurrences of its RHS's free variables.  That's to take
+               -- account of:
+               --              let a = \x -> BIG in
+               --              let b = \f -> f a
+               --              in ...b...b...b...
+               -- Here "a" occurs exactly once. "b" simplifies to a small value.
+               -- So "b" will be inlined at each call site, and there's a good chance
+               -- that "a" will too.  So we'd better modify "a"s occurrence info to
+               -- record the fact that it can now occur many times by virtue that "b" can.
+
+    full_fv_occ_info         = _scc_ "eegnr.full_fv" 
+                               [ (uniq, fv_occ `andBinderInfo` occ_info) 
+                               | (uniq, fv_occ) <- ufmToList fv_occ_info
+                               ]
+
+       -- Add an unfolding and rhs_info for the new Id.
+       -- If the out_id is already in the OutIdEnv (which can happen if
+       -- the call to extendEnvGivenBinding is from extendEnvGivenNewRhs)
+       -- then just replace the unfolding, leaving occurrence info alone.
+    env1                     = _scc_ "eegnr.modify_out" 
+                               addToUFM_C modifyOutEnvItem out_id_env out_id 
+                                          (out_id, occ_info, rhs_info)
+
        -- Occurrence-analyse the RHS
-    (fv_occ_info, template) = occurAnalyseExpr {-test:nullIdEnv-} interesting_fvs rhs
+       -- The "interesting" free variables we want occurrence info for are those
+       -- in the OutIdEnv that have only a single occurrence right now.
+    (fv_occ_info, template) = _scc_ "eegnr.occ-anal" 
+                             occurAnalyseExpr is_interesting rhs
 
-    interesting_fvs = get_interesting_ids unfold_env
+    is_interesting v        = _scc_ "eegnr.mkidset" 
+                             case lookupIdEnv out_id_env v of
+                               Just (_, OneOcc _ _ _ _ _, _) -> True
+                               other                         -> False
 
        -- Compute unfolding details
-    details = case rhs of
-               Var v                      -> panic "Vars already dealt with"
-               Lit lit | isNoRepLit lit -> LitForm lit
-                         | otherwise      -> panic "non-noRep Lits already dealt with"
-
-               Con con args               -> ConForm con args
-
-               other -> mkGenForm ok_to_dup occ_info
-                                  (mkFormSummary (getIdStrictness out_id) rhs)
-                                  template guidance
-
-       -- Compute resulting unfold env
-    new_unfold_env = case details of
-                       NoUnfoldingDetails      -> unfold_env
-                       GenForm _ _ _ _ -> unfold_env2{-test: unfold_env1 -}
-                       other                   -> unfold_env1
-
-       -- Add unfolding to unfold env
-    unfold_env1 = grow_unfold_env unfold_env out_id details encl_cc
-
-       -- Modify unfoldings of free vars of rhs, based on their
-       -- occurrence info in the rhs [see notes above]
-    unfold_env2 = foldr_unfold_env modify unfold_env1 (ufmToList fv_occ_info)
-
-    modify :: (Unique, BinderInfo) -> IdEnv UnfoldItem -> IdEnv UnfoldItem
-    modify (u, occ_info) env
-      = case (lookupDirectlyUFM env u) of
-         Nothing -> env -- ToDo: can this happen?
-         Just xx -> addToUFM_Directly env u (modifyItem ok_to_dup occ_info xx)
-
-       -- Compute unfolding guidance
-    guidance = if simplIdWantsToBeINLINEd out_id env
-              then UnfoldAlways
-              else calcUnfoldingGuidance True{-sccs OK-} bOMB_OUT_SIZE rhs
-
-    bOMB_OUT_SIZE = case (intSwitchSet chkr SimplUnfoldingCreationThreshold) of
-                     Nothing -> uNFOLDING_CREATION_THRESHOLD
-                     Just xx -> xx
-
-    ok_to_dup     = switchIsOn chkr SimplOkToDupCode
-                       || exprSmallEnoughToDup rhs
-                       -- [Andy] added, Jun 95
-
-{- Reinstated AJG Jun 95; This is needed
-    --example that does not (currently) work
-    --without this extention
-
-    --let f = g x
-    --in
-    --  case <exp> of
-    --    True -> h i f
-    --    False -> f
-    -- ==>
-    --  case <exp> of
-    --    True -> h i f
-    --    False -> g x
--}
-{- OLD:
-   Omitted SLPJ Feb 95; should, I claim, be unnecessary
-       -- is_really_small looks for things like f a b c
-       -- but making sure there are not *too* many arguments.
-       -- (This is brought to you by *ANDY* Magic Constants, Inc.)
-    is_really_small
-      = case collectArgs new_rhs of
-         (Var _, _, _, xs) -> length xs < 10
-         _ -> False
--}
-\end{code}
-
-\begin{code}
-lookupUnfolding :: SimplEnv -> Id -> UnfoldingDetails
-
-lookupUnfolding (SimplEnv _ _ _ _ unfold_env) var
-  | not (isLocallyDefined var) -- Imported, so look inside the id
-  = getIdUnfolding var
-
-  | otherwise                  -- Locally defined, so look in the envt.
-                               -- There'll be nothing inside the Id.
-  = lookup_unfold_env unfold_env var
-\end{code}
-
-We need to remove any @GenForm@ bindings from the UnfoldEnv for
-the RHS of an Id which has an INLINE pragma.
-
-\begin{code}
-filterUnfoldEnvForInlines :: SimplEnv -> SimplEnv
-
-filterUnfoldEnvForInlines env@(SimplEnv chkr encl_cc ty_env id_env unfold_env)
-  = SimplEnv chkr encl_cc ty_env id_env new_unfold_env
-  where
-    new_unfold_env = null_unfold_env
-       -- This version is really simple.  INLINEd things are going to
-       -- be inlined wherever they are used, and then all the
-       -- UnfoldEnv stuff will take effect.  Meanwhile, there isn't
-       -- much point in doing anything to the as-yet-un-INLINEd rhs.
-
-       -- Andy disagrees! Example:
-       --      all xs = foldr (&&) True xs
-       --      any p = all . map p  {-# INLINE any #-}
-       --
-       -- Problem: any won't get deforested, and so if it's exported and
-       -- the importer doesn't use the inlining, (eg passes it as an arg)
-       -- then we won't get deforestation at all.
-       --
-       -- So he'd like not to filter the unfold env at all.  But that's a disaster:
-       -- Suppose we have:
-       --
-       -- let f = \pq -> BIG
-       -- in
-       -- let g = \y -> f y y
-       --     {-# INLINE g #-}
-       -- in ...g...g...g...g...g...
-       --
-       -- Now, if that's the ONLY occurrence of f, it will be inlined inside g,
-       -- and thence copied multiple times when g is inlined.
-\end{code}
-
-======================
-
-In @lookForConstructor@ we used (before Apr 94) to have a special case
-for nullary constructors:
-
-\begin{verbatim}
-  =    -- Don't re-use nullary constructors; it's a waste.  Consider
-       -- let
-       --        a = leInt#! p q
-       -- in
-       -- case a of
-       --    True  -> ...
-       --    False -> False
-       --
-       -- Here the False in the second case will get replace by "a", hardly
-       -- a good idea
-    Nothing
-\end{verbatim}
-
-but now we only do constructor re-use in let-bindings the special
-case isn't necessary any more.
-
-\begin{code}
-lookForConstructor (SimplEnv _ _ _ _ unfold_env) con args
-  = lookup_conapp unfold_env con args
+    rhs_info = OutUnfolding unf_cc (SimpleUnfolding form guidance template)
+    form     = _scc_ "eegnr.form_sum" 
+              mkFormSummary rhs
+    guidance = _scc_ "eegnr.guidance" 
+              mkSimplUnfoldingGuidance chkr out_id rhs
+
+       -- Compute cost centre for thing
+    unf_cc  | noCostCentreAttached expr_cc = encl_cc
+           | otherwise                    = expr_cc
+           where
+             expr_cc =  coreExprCc rhs
 \end{code}