Let the specialiser work on dicts under lambdas
Following the discussion under #16473, this change allows the specializer to work on any dicts in a lambda, not just those that occur at the beginning. For example, if you use data types which contain dictionaries and higher-rank functions then once these are erased by the optimiser you end up with functions such as: ``` go_s4K9 Int# -> forall (m :: * -> *). Monad m => (forall x. Union '[State (Sum Int)] x -> m x) -> m () ``` The dictionary argument is after the Int# value argument, this patch allows `go` to be specialised.
Showing
- compiler/specialise/Specialise.hs 370 additions, 114 deletionscompiler/specialise/Specialise.hs
- testsuite/tests/perf/compiler/Makefile 5 additions, 1 deletiontestsuite/tests/perf/compiler/Makefile
- testsuite/tests/perf/compiler/T16473.hs 102 additions, 0 deletionstestsuite/tests/perf/compiler/T16473.hs
- testsuite/tests/perf/compiler/T16473.stdout 139 additions, 0 deletionstestsuite/tests/perf/compiler/T16473.stdout
- testsuite/tests/perf/compiler/all.T 2 additions, 0 deletionstestsuite/tests/perf/compiler/all.T
- testsuite/tests/simplCore/should_compile/T7785.stderr 1 addition, 1 deletiontestsuite/tests/simplCore/should_compile/T7785.stderr
- testsuite/tests/warnings/should_compile/T16282/T16282.stderr 10 additions, 5 deletionstestsuite/tests/warnings/should_compile/T16282/T16282.stderr
Loading
Please register or sign in to comment