Fix some missed opportunities for preInlineUnconditionally
There are two signficant changes here: * Ticket #18815 showed that we were missing some opportunities for preInlineUnconditionally. The one-line fix is in the code for GHC.Core.Opt.Simplify.Utils.preInlineUnconditionally, which now switches off only for INLINE pragmas. I expanded Note [Stable unfoldings and preInlineUnconditionally] to explain. * When doing this I discovered a way in which preInlineUnconditionally was occasionally /too/ eager. It's all explained in Note [Occurrences in stable unfoldings] in GHC.Core.Opt.OccurAnal, and the one-line change adding markAllMany to occAnalUnfolding. I also got confused about what NoUserInline meant, so I've renamed it to NoUserInlinePrag, and changed its pretty-printing slightly. That led to soem error messate wibbling, and touches quite a few files, but there is no change in functionality. I did a nofib run. As expected, no significant changes. Program Size Allocs ---------------------------------------- sphere -0.0% -0.4% ---------------------------------------- Min -0.0% -0.4% Max -0.0% +0.0% Geometric Mean -0.0% -0.0% I'm allowing a max-residency increase for T10370, which seems very irreproducible. (See comments on !4241.) There is always sampling error for max-residency measurements; and in any case the change shows up on some platforms but not others. Metric Increase: T10370
Showing
- compiler/GHC/Core/Opt/OccurAnal.hs 27 additions, 3 deletionscompiler/GHC/Core/Opt/OccurAnal.hs
- compiler/GHC/Core/Opt/Simplify.hs 1 addition, 1 deletioncompiler/GHC/Core/Opt/Simplify.hs
- compiler/GHC/Core/Opt/Simplify/Utils.hs 14 additions, 6 deletionscompiler/GHC/Core/Opt/Simplify/Utils.hs
- compiler/GHC/Core/Opt/Specialise.hs 1 addition, 1 deletioncompiler/GHC/Core/Opt/Specialise.hs
- compiler/GHC/Core/Opt/WorkWrap.hs 13 additions, 7 deletionscompiler/GHC/Core/Opt/WorkWrap.hs
- compiler/GHC/Hs/Binds.hs 2 additions, 2 deletionscompiler/GHC/Hs/Binds.hs
- compiler/GHC/HsToCore/Binds.hs 4 additions, 4 deletionscompiler/GHC/HsToCore/Binds.hs
- compiler/GHC/HsToCore/Quote.hs 4 additions, 4 deletionscompiler/GHC/HsToCore/Quote.hs
- compiler/GHC/Parser.y 1 addition, 1 deletioncompiler/GHC/Parser.y
- compiler/GHC/ThToHs.hs 1 addition, 1 deletioncompiler/GHC/ThToHs.hs
- compiler/GHC/Types/Basic.hs 13 additions, 13 deletionscompiler/GHC/Types/Basic.hs
- compiler/GHC/Utils/Binary.hs 5 additions, 5 deletionscompiler/GHC/Utils/Binary.hs
- testsuite/tests/roles/should_compile/Roles1.stderr 22 additions, 23 deletionstestsuite/tests/roles/should_compile/Roles1.stderr
- testsuite/tests/roles/should_compile/Roles14.stderr 7 additions, 8 deletionstestsuite/tests/roles/should_compile/Roles14.stderr
- testsuite/tests/roles/should_compile/Roles2.stderr 8 additions, 8 deletionstestsuite/tests/roles/should_compile/Roles2.stderr
- testsuite/tests/roles/should_compile/Roles3.stderr 14 additions, 16 deletionstestsuite/tests/roles/should_compile/Roles3.stderr
- testsuite/tests/roles/should_compile/Roles4.stderr 11 additions, 12 deletionstestsuite/tests/roles/should_compile/Roles4.stderr
- testsuite/tests/roles/should_compile/T8958.stderr 13 additions, 14 deletionstestsuite/tests/roles/should_compile/T8958.stderr
- testsuite/tests/simplCore/should_compile/Makefile 11 additions, 0 deletionstestsuite/tests/simplCore/should_compile/Makefile
- testsuite/tests/simplCore/should_compile/T13143.stderr 3 additions, 3 deletionstestsuite/tests/simplCore/should_compile/T13143.stderr
Loading
Please register or sign in to comment