Make sure mkSplitUniqSupply stores the precomputed mask only.
mkSplitUniqSupply was lazy on the boxed char. This caused a bunch of issues: * The closure captured the boxed Char * The mask was recomputed on every split of the supply. * It also caused the allocation of MkSplitSupply to happen in it's own (allocated) closure. The reason of which I did not further investigate. We know force the computation of the mask inside mkSplitUniqSupply. * This way the mask is computed at most once per UniqSupply creation. * It allows ww to kick in, causing the closure to retain the unboxed value. Requesting Uniques in a loop is now faster by about 20%. I did not check the impact on the overall compiler, but I added a test to avoid regressions.
Showing
- compiler/basicTypes/UniqSupply.hs 2 additions, 1 deletioncompiler/basicTypes/UniqSupply.hs
- testsuite/tests/perf/should_run/UniqLoop.hs 17 additions, 0 deletionstestsuite/tests/perf/should_run/UniqLoop.hs
- testsuite/tests/perf/should_run/all.T 8 additions, 0 deletionstestsuite/tests/perf/should_run/all.T
testsuite/tests/perf/should_run/UniqLoop.hs
0 → 100644
Please register or sign in to comment