[commit: ghc] wip/nested-cpr: Recover [CPR for sum types] (slightly differently) (317a8f5)
git at git.haskell.org
git at git.haskell.org
Tue Dec 3 18:10:38 UTC 2013
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nested-cpr
Link : http://ghc.haskell.org/trac/ghc/changeset/317a8f5982d4b7ebc943b901fd1e65759ed73e85/ghc
>---------------------------------------------------------------
commit 317a8f5982d4b7ebc943b901fd1e65759ed73e85
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Thu Nov 28 11:17:16 2013 +0000
Recover [CPR for sum types] (slightly differently)
>---------------------------------------------------------------
317a8f5982d4b7ebc943b901fd1e65759ed73e85
compiler/basicTypes/Demand.lhs | 16 +---------------
compiler/stranal/DmdAnal.lhs | 13 +++++++------
2 files changed, 8 insertions(+), 21 deletions(-)
diff --git a/compiler/basicTypes/Demand.lhs b/compiler/basicTypes/Demand.lhs
index b3fe942..7eda769 100644
--- a/compiler/basicTypes/Demand.lhs
+++ b/compiler/basicTypes/Demand.lhs
@@ -28,7 +28,7 @@ module Demand (
isBotRes, isTopRes, resTypeArgDmd,
topRes, botRes, cprConRes, vanillaCprConRes,
appIsBottom, isBottomingSig, pprIfaceStrictSig,
- trimCPRInfo, returnsCPR, returnsCPR_maybe,
+ returnsCPR, returnsCPR_maybe,
StrictSig(..), mkStrictSig, topSig, botSig, cprProdSig,
isTopSig, splitStrictSig, increaseStrictSigArity,
sigMayConverge,
@@ -831,20 +831,6 @@ isBotRes :: DmdResult -> Bool
isBotRes Diverges = True
isBotRes _ = False
--- TODO: This currently ignores trim_sums. Evaluate if still required, and fix
--- Note [CPR for sum types]
-trimCPRInfo :: Bool -> Bool -> DmdResult -> DmdResult
-trimCPRInfo trim_all _trim_sums res
- = trimR res
- where
- trimR (Converges c) = Converges (trimC c)
- trimR (Dunno c) = Dunno (trimC c)
- trimR Diverges = Diverges
-
- trimC (RetCon n rs) | trim_all = NoCPR
- | otherwise = RetCon n (map trimR rs)
- trimC NoCPR = NoCPR
-
returnsCPR :: DmdResult -> Bool
returnsCPR dr = isJust (returnsCPR_maybe False dr)
diff --git a/compiler/stranal/DmdAnal.lhs b/compiler/stranal/DmdAnal.lhs
index 953b616..480f234 100644
--- a/compiler/stranal/DmdAnal.lhs
+++ b/compiler/stranal/DmdAnal.lhs
@@ -654,9 +654,10 @@ dmdAnalRhs top_lvl rec_flag env id rhs
-- See Note [NOINLINE and strictness]
-- See Note [Product demands for function body]
- body_dmd = case deepSplitProductType_maybe (exprType body) of
- Nothing -> cleanEvalDmd
- Just (dc, _, _, _) -> cleanEvalProdDmd (dataConRepArity dc)
+ (is_sum_type, body_dmd)
+ = case deepSplitProductType_maybe (exprType body) of
+ Nothing -> (True, cleanEvalDmd)
+ Just (dc, _, _, _) -> (False, cleanEvalProdDmd (dataConRepArity dc))
-- See Note [Lazy and unleashable free variables]
-- See Note [Aggregated demand for cardinality]
@@ -666,9 +667,9 @@ dmdAnalRhs top_lvl rec_flag env id rhs
(lazy_fv, sig_fv) = splitFVs is_thunk rhs_fv1
- rhs_res' = trimCPRInfo trim_all trim_sums rhs_res
- trim_all = is_thunk && not_strict
- trim_sums = not (isTopLevel top_lvl) -- See Note [CPR for sum types]
+ -- Note [CPR for sum types]
+ rhs_res' | is_sum_type || (is_thunk && not_strict) = topRes
+ | otherwise = rhs_res
-- See Note [CPR for thunks]
is_thunk = not (exprIsHNF rhs)
More information about the ghc-commits
mailing list