Demand: Clear distinction between Call SubDmd and eval Dmd (#21717)
In #21717 we saw a reportedly unsound strictness signature due to an unsound definition of plusSubDmd on Calls. This patch contains a description and the fix to the unsoundness as outlined in `Note [Call SubDemand vs. evaluation Demand]`. This fix means we also get rid of the special handling of `-fpedantic-bottoms` in eta-reduction. Thanks to less strict and actually sound strictness results, we will no longer eta-reduce the problematic cases in the first place, even without `-fpedantic-bottoms`. So fixing the unsoundness also makes our eta-reduction code simpler with less hacks to explain. But there is another, more unfortunate side-effect: We *unfix* #21085, but fortunately we have a new fix ready: See `Note [mkCall and plusSubDmd]`. There's another change: I decided to make `Note [SubDemand denotes at least one evaluation]` a lot simpler by using `plusSubDmd` (instead of `lubPlusSubDmd`) even if both argument demands are lazy. That leads to less precise results, but in turn rids ourselves from the need for 4 different `OpMode`s and the complication of `Note [Manual specialisation of lub*Dmd/plus*Dmd]`. The result is simpler code that is in line with the paper draft on Demand Analysis. I left the abandoned idea in `Note [Unrealised opportunity in plusDmd]` for posterity. The fallout in terms of regressions is negligible, as the testsuite and NoFib shows. ``` Program Allocs Instrs -------------------------------------------------------------------------------- hidden +0.2% -0.2% linear -0.0% -0.7% -------------------------------------------------------------------------------- Min -0.0% -0.7% Max +0.2% +0.0% Geometric Mean +0.0% -0.0% ``` Fixes #21717.
parent
615e2278
Pipeline #57123 passed with warnings
Stage: tool-lint
Stage: quick-build
Stage: full-build
Stage: packaging
Stage: testing
Showing
- compiler/GHC/Core/Opt/Arity.hs 4 additions, 14 deletionscompiler/GHC/Core/Opt/Arity.hs
- compiler/GHC/Core/Opt/Simplify/Utils.hs 1 addition, 5 deletionscompiler/GHC/Core/Opt/Simplify/Utils.hs
- compiler/GHC/Types/Demand.hs 207 additions, 247 deletionscompiler/GHC/Types/Demand.hs
- testsuite/tests/arityanal/should_compile/Arity11.stderr 5 additions, 2 deletionstestsuite/tests/arityanal/should_compile/Arity11.stderr
- testsuite/tests/arityanal/should_compile/Arity14.stderr 2 additions, 2 deletionstestsuite/tests/arityanal/should_compile/Arity14.stderr
- testsuite/tests/arityanal/should_compile/Arity16.stderr 2 additions, 2 deletionstestsuite/tests/arityanal/should_compile/Arity16.stderr
- testsuite/tests/simplCore/should_compile/T21261.hs 15 additions, 7 deletionstestsuite/tests/simplCore/should_compile/T21261.hs
- testsuite/tests/simplCore/should_compile/T21261.stderr 4 additions, 3 deletionstestsuite/tests/simplCore/should_compile/T21261.stderr
- testsuite/tests/simplCore/should_compile/T21261_pedantic.hs 0 additions, 18 deletionstestsuite/tests/simplCore/should_compile/T21261_pedantic.hs
- testsuite/tests/simplCore/should_compile/T21261_pedantic.stderr 0 additions, 26 deletions...ite/tests/simplCore/should_compile/T21261_pedantic.stderr
- testsuite/tests/simplCore/should_compile/all.T 1 addition, 2 deletionstestsuite/tests/simplCore/should_compile/all.T
- testsuite/tests/stranal/should_compile/T18894.stderr 5 additions, 5 deletionstestsuite/tests/stranal/should_compile/T18894.stderr
- testsuite/tests/stranal/sigs/T20746.stderr 1 addition, 1 deletiontestsuite/tests/stranal/sigs/T20746.stderr
- testsuite/tests/stranal/sigs/T21081.stderr 2 additions, 2 deletionstestsuite/tests/stranal/sigs/T21081.stderr
- testsuite/tests/stranal/sigs/T21119.stderr 2 additions, 2 deletionstestsuite/tests/stranal/sigs/T21119.stderr
- testsuite/tests/stranal/sigs/T21717.hs 22 additions, 0 deletionstestsuite/tests/stranal/sigs/T21717.hs
- testsuite/tests/stranal/sigs/T21717.stderr 21 additions, 0 deletionstestsuite/tests/stranal/sigs/T21717.stderr
- testsuite/tests/stranal/sigs/T5075.stderr 2 additions, 2 deletionstestsuite/tests/stranal/sigs/T5075.stderr
- testsuite/tests/stranal/sigs/all.T 1 addition, 0 deletionstestsuite/tests/stranal/sigs/all.T
Loading
Please register or sign in to comment