Major improvements to the specialiser
This patch is joint work of Alexis King and Simon PJ. It does some significant refactoring of the type-class specialiser. Main highlights: * We can specialise functions with types like f :: Eq a => a -> Ord b => b => blah where the classes aren't all at the front (#16473). Here we can correctly specialise 'f' based on a call like f @Int @Bool dEqInt x dOrdBool This change really happened in an earlier patch commit 2d0cf625 Author: Sandy Maguire <sandy@sandymaguire.me> Date: Thu May 16 12:12:10 2019 -0400 work that this new patch builds directly on that work, and refactors it a bit. * We can specialise functions with implicit parameters (#17930) g :: (?foo :: Bool, Show a) => a -> String Previously we could not, but now they behave just like a non-class argument as in 'f' above. * We can specialise under-saturated calls, where some (but not all of the dictionary arguments are provided (#17966). For example, we can specialise the above 'f' based on a call map (f @Int dEqInt) xs even though we don't (and can't) give Ord dictionary. This may sound exotic, but #17966 is a program from the wild, and showed significant perf loss for functions like f, if you need saturation of all dictionaries. * We fix a buglet in which a floated dictionary had a bogus demand (#17810), by using zapIdDemandInfo in the NonRec case of specBind. * A tiny side benefit: we can drop dead arguments to specialised functions; see Note [Drop dead args from specialisations] * Fixed a bug in deciding what dictionaries are "interesting"; see Note [Keep the old dictionaries interesting] This is all achieved by by building on Sandy Macguire's work in defining SpecArg, which mkCallUDs uses to describe the arguments of the call. Main changes: * Main work is in specHeader, which marched down the [InBndr] from the function definition and the [SpecArg] from the call site, together. * specCalls no longer has an arity check; the entire mechanism now handles unders-saturated calls fine. * mkCallUDs decides on an argument-by-argument basis whether to specialise a particular dictionary argument; this is new. See mk_spec_arg in mkCallUDs. It looks as if there are many more lines of code, but I think that all the extra lines are comments!
Showing
- compiler/GHC/Core/Op/Specialise.hs 520 additions, 381 deletionscompiler/GHC/Core/Op/Specialise.hs
- compiler/GHC/Core/Subst.hs 1 addition, 2 deletionscompiler/GHC/Core/Subst.hs
- compiler/GHC/Core/Unfold.hs 6 additions, 5 deletionscompiler/GHC/Core/Unfold.hs
- compiler/GHC/HsToCore/Binds.hs 1 addition, 1 deletioncompiler/GHC/HsToCore/Binds.hs
- testsuite/tests/perf/compiler/T16473.stdout 9 additions, 2 deletionstestsuite/tests/perf/compiler/T16473.stdout
- testsuite/tests/simplCore/should_compile/Makefile 5 additions, 0 deletionstestsuite/tests/simplCore/should_compile/Makefile
- testsuite/tests/simplCore/should_compile/T17810.hs 7 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T17810.hs
- testsuite/tests/simplCore/should_compile/T17810a.hs 27 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T17810a.hs
- testsuite/tests/simplCore/should_compile/T17930.hs 10 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T17930.hs
- testsuite/tests/simplCore/should_compile/T17930.stderr 2 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T17930.stderr
- testsuite/tests/simplCore/should_compile/T17966.hs 20 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T17966.hs
- testsuite/tests/simplCore/should_compile/T17966.stdout 4 additions, 0 deletionstestsuite/tests/simplCore/should_compile/T17966.stdout
- testsuite/tests/simplCore/should_compile/all.T 7 additions, 0 deletionstestsuite/tests/simplCore/should_compile/all.T
- testsuite/tests/simplCore/should_compile/spec004.hs 12 additions, 0 deletionstestsuite/tests/simplCore/should_compile/spec004.hs
- testsuite/tests/simplCore/should_compile/spec004.stderr 84 additions, 0 deletionstestsuite/tests/simplCore/should_compile/spec004.stderr
Loading
Please register or sign in to comment