X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2FsimplCore%2FSimplCore.lhs;h=0d3c544c4106a00d36759f1d9847970a0d285cf1;hb=f7ecf7234c224489be8a5e63fced903b655d92ee;hp=a58f126ae8b21b995b923df7b9ad858b5daf4581;hpb=68afb16743cafd5b7495771d359891c6dfc5a186;p=ghc-hetmet.git diff --git a/ghc/compiler/simplCore/SimplCore.lhs b/ghc/compiler/simplCore/SimplCore.lhs index a58f126..0d3c544 100644 --- a/ghc/compiler/simplCore/SimplCore.lhs +++ b/ghc/compiler/simplCore/SimplCore.lhs @@ -8,7 +8,8 @@ module SimplCore ( core2core ) where -import Ubiq{-uitous-} +IMP_Ubiq(){-uitous-} +IMPORT_1_3(IO(hPutStr,stderr)) import AnalFBWW ( analFBWW ) import Bag ( isEmptyBag, foldBag ) @@ -33,15 +34,16 @@ import CmdLineOpts ( CoreToDo(..), SimplifierSwitch(..), switchIsOn, import CoreLint ( lintCoreBindings ) import CoreSyn import CoreUnfold -import CoreUtils ( substCoreBindings, manifestlyWHNF ) +import CoreUtils ( substCoreBindings ) import ErrUtils ( ghcExit ) +import FiniteMap ( FiniteMap ) import FloatIn ( floatInwards ) import FloatOut ( floatOutwards ) import FoldrBuildWW ( mkFoldrBuildWW ) import Id ( idType, toplevelishId, idWantsToBeINLINEd, - unfoldingUnfriendlyId, + unfoldingUnfriendlyId, isWrapperId, nullIdEnv, addOneToIdEnv, delOneFromIdEnv, - lookupIdEnv, IdEnv(..), + lookupIdEnv, SYN_IE(IdEnv), GenId{-instance Outputable-} ) import IdInfo ( mkUnfolding ) @@ -49,15 +51,13 @@ import LiberateCase ( liberateCase ) import MagicUFs ( MagicUnfoldingFun ) import Maybes ( maybeToBool ) import Outputable ( Outputable(..){-instance * (,) -} ) -import PprCore ( pprCoreBinding, GenCoreExpr{-instance Outputable-} ) +import PprCore import PprStyle ( PprStyle(..) ) import PprType ( GenType{-instance Outputable-}, GenTyVar{-ditto-} ) import Pretty ( ppShow, ppAboves, ppAbove, ppCat, ppStr ) import SAT ( doStaticArgs ) -import SCCauto ( addAutoCostCentres ) import SimplMonad ( zeroSimplCount, showSimplCount, SimplCount ) import SimplPgm ( simplifyPgm ) -import SimplVar ( leastItCouldCost ) import Specialise import SpecUtils ( pprSpecErrs ) import StrictAnal ( saWwTopBinds ) @@ -72,7 +72,6 @@ import DefUtils ( deforestable ) #endif isWrapperFor = panic "SimplCore.isWrapperFor (ToDo)" -isWrapperId = panic "SimplCore.isWrapperId (ToDo)" \end{code} \begin{code} @@ -85,7 +84,7 @@ core2core :: [CoreToDo] -- spec of what core-to-core passes to do -> [CoreBinding] -- input... -> IO ([CoreBinding], -- results: program, plus... - IdEnv UnfoldingDetails, -- unfoldings to be exported from here + IdEnv Unfolding, -- unfoldings to be exported from here SpecialiseData) -- specialisation data core2core core_todos module_name ppr_style us local_tycons tycon_specs binds @@ -241,16 +240,9 @@ core2core core_todos module_name ppr_style us local_tycons tycon_specs binds end_pass False us2 binds2 inline_env spec_data simpl_stats "Deforestation" } #endif - CoreDoAutoCostCentres - -> _scc_ "AutoSCCs" - begin_pass "AutoSCCs" >> - case (addAutoCostCentres module_name binds) of { binds2 -> - end_pass False us2 binds2 inline_env spec_data simpl_stats "AutoSCCs" } - CoreDoPrintCore -- print result of last pass -> end_pass True us2 binds inline_env spec_data simpl_stats "Print" - ------------------------------------------------- begin_pass @@ -311,9 +303,9 @@ will be visible on the other side of an interface, too. \begin{code} calcInlinings :: Bool -- True => inlinings with _scc_s are OK - -> IdEnv UnfoldingDetails + -> IdEnv Unfolding -> [CoreBinding] - -> IdEnv UnfoldingDetails + -> IdEnv Unfolding calcInlinings scc_s_OK inline_env_so_far top_binds = let @@ -325,9 +317,9 @@ calcInlinings scc_s_OK inline_env_so_far top_binds pp_item (binder, details) = ppCat [ppr PprDebug binder, ppStr "=>", pp_det details] where - pp_det NoUnfoldingDetails = ppStr "_N_" + pp_det NoUnfolding = ppStr "_N_" --LATER: pp_det (IWantToBeINLINEd _) = ppStr "INLINE" - pp_det (GenForm _ _ expr guide) + pp_det (CoreUnfolding (SimpleUnfolding _ guide expr)) = ppAbove (ppr PprDebug guide) (ppr PprDebug expr) pp_det other = ppStr "???" @@ -368,7 +360,7 @@ calcInlinings scc_s_OK inline_env_so_far top_binds | rhs_mentions_an_unmentionable || (not explicit_INLINE_requested - && (rhs_looks_like_a_caf || guidance_says_don't || guidance_size_too_big)) + && (rhs_looks_like_a_caf || guidance_size_too_big)) = let my_my_trace = if explicit_INLINE_requested @@ -435,38 +427,16 @@ calcInlinings scc_s_OK inline_env_so_far top_binds guidance_size = case guidance of UnfoldAlways -> 0 -- *extremely* small - EssentialUnfolding -> 0 -- ditto UnfoldIfGoodArgs _ _ _ size -> size - guidance_says_don't = case guidance of { UnfoldNever -> True; _ -> False } - guidance_size_too_big -- Does the guidance suggest that this unfolding will -- be of no use *no matter* the arguments given to it? -- Could be more sophisticated... - = case guidance of - UnfoldAlways -> False - EssentialUnfolding -> False - UnfoldIfGoodArgs _ no_val_args arg_info_vec size - - -> if explicit_creation_threshold then - False -- user set threshold; don't second-guess... - - else if no_val_args == 0 && rhs_looks_like_a_data_val then - False -- we'd like a top-level data constr to be - -- visible even if it is never unfolded - else - let - cost - = leastItCouldCost con_discount_weight size no_val_args - arg_info_vec rhs_arg_tys - in --- (if (unfold_use_threshold < cost) then (pprTrace "cost:" (ppInt cost)) else \x->x ) ( - unfold_use_threshold < cost --- ) + = not (couldBeSmallEnoughToInline con_discount_weight unfold_use_threshold guidance) - rhs_looks_like_a_caf = not (manifestlyWHNF rhs) + rhs_looks_like_a_caf = not (whnfOrBottom rhs) rhs_looks_like_a_data_val = case (collectBinders rhs) of