Fix nasty bug in w/w for absence analysis
This dark corner was exposed by Trac #14285. It involves the interaction between absence analysis and INLINABLE pragmas. There is a full explanation in Note [aBSENT_ERROR_ID] in MkCore, which you can read there. The changes in this patch are * Make exprIsHNF return True for absentError, treating absentError like an honorary data constructor. * Make absentError /not/ be diverging, unlike other error Ids. This is all a bit horrible. * While doing this I found that exprOkForSpeculation didn't have a case for value lambdas so I added one. It's not really called on lifted types much, but it seems like the right thing
Showing
- compiler/basicTypes/MkId.hs 9 additions, 7 deletionscompiler/basicTypes/MkId.hs
- compiler/coreSyn/CoreUtils.hs 21 additions, 11 deletionscompiler/coreSyn/CoreUtils.hs
- compiler/coreSyn/MkCore.hs 100 additions, 10 deletionscompiler/coreSyn/MkCore.hs
- compiler/simplCore/Simplify.hs 44 additions, 54 deletionscompiler/simplCore/Simplify.hs
- compiler/stranal/WwLib.hs 23 additions, 14 deletionscompiler/stranal/WwLib.hs
- testsuite/tests/stranal/should_run/T14285.hs 9 additions, 0 deletionstestsuite/tests/stranal/should_run/T14285.hs
- testsuite/tests/stranal/should_run/T14285.stdout 1 addition, 0 deletionstestsuite/tests/stranal/should_run/T14285.stdout
- testsuite/tests/stranal/should_run/T14285a.hs 37 additions, 0 deletionstestsuite/tests/stranal/should_run/T14285a.hs
- testsuite/tests/stranal/should_run/all.T 1 addition, 0 deletionstestsuite/tests/stranal/should_run/all.T
Loading
Please register or sign in to comment