summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Klebinger <klebinger.andreas@gmx.at>2021-11-01 20:44:52 +0100
committerAndreas Klebinger <klebinger.andreas@gmx.at>2021-11-02 13:41:30 +0100
commit527114c314f3e5191efffd504e23a731a7baf18b (patch)
tree95af9f04e172d27d4c28bee15d945921169a3822
parent7445bd714c1bea39207f9a2fa497c325b95ba2c7 (diff)
downloadhaskell-wip/andreask/eta_join_arity.tar.gz
Don't undersaturate join points through eta-reduction.wip/andreask/eta_join_arity
In #20599 I ran into an issue where the unfolding for a join point was eta-reduced removing the required lambdas. This patch adds guards that should prevent this from happening going forward.
-rw-r--r--compiler/GHC/Core/Utils.hs7
-rw-r--r--compiler/GHC/CoreToStg/Prep.hs8
2 files changed, 13 insertions, 2 deletions
diff --git a/compiler/GHC/Core/Utils.hs b/compiler/GHC/Core/Utils.hs
index 6b7eb3bf11..271380557d 100644
--- a/compiler/GHC/Core/Utils.hs
+++ b/compiler/GHC/Core/Utils.hs
@@ -2460,7 +2460,12 @@ tryEtaReduce bndrs body
ok_fun _fun = False
---------------
- ok_fun_id fun = fun_arity fun >= incoming_arity
+ ok_fun_id fun = -- There are arguments to reduce
+ fun_arity fun >= incoming_arity &&
+ -- We always want args for join points so
+ -- we should never eta-reduce to a trivial expression.
+ -- See Note [Invariants on join points] in GHC.Core, and #20599
+ not (isJoinId fun)
---------------
fun_arity fun -- See Note [Arity care]
diff --git a/compiler/GHC/CoreToStg/Prep.hs b/compiler/GHC/CoreToStg/Prep.hs
index 675ef7776c..bc12ec2b63 100644
--- a/compiler/GHC/CoreToStg/Prep.hs
+++ b/compiler/GHC/CoreToStg/Prep.hs
@@ -1527,7 +1527,13 @@ tryEtaReducePrep bndrs expr@(App _ _)
ok _ _ = False
-- We can't eta reduce something which must be saturated.
- ok_to_eta_reduce (Var f) = not (hasNoBinding f) && not (isLinearType (idType f))
+ ok_to_eta_reduce (Var f) = not (hasNoBinding f) &&
+ not (isLinearType (idType f)) && -- Unsure why this is unsafe.
+ (not (isJoinId f) || idJoinArity f <= n_remaining)
+ -- Don't undersaturate join points.
+ -- See Note [Invariants on join points] in GHC.Core, and #20599
+
+
ok_to_eta_reduce _ = False -- Safe. ToDo: generalise