matchLocalInst: do domination analysis
When multiple Given quantified constraints match a Wanted, and there is a quantified constraint that dominates all others, we now pick it to solve the Wanted. See Note [Use only the best matching quantified constraint]. For example: [G] d1: forall a b. ( Eq a, Num b, C a b ) => D a b [G] d2: forall a . C a Int => D a Int [W] {w}: D a Int When solving the Wanted, we find that both Givens match, but we pick the second, because it has a weaker precondition, C a Int, compared to (Eq a, Num Int, C a Int). We thus say that d2 dominates d1; see Note [When does a quantified instance dominate another?]. This domination test is done purely in terms of superclass expansion, in the function GHC.Tc.Solver.Interact.impliedBySCs. We don't attempt to do a full round of constraint solving; this simple check suffices for now. Fixes #22216 and #22223
Showing
- compiler/GHC/Tc/Solver/InertSet.hs 11 additions, 6 deletionscompiler/GHC/Tc/Solver/InertSet.hs
- compiler/GHC/Tc/Solver/Interact.hs 193 additions, 65 deletionscompiler/GHC/Tc/Solver/Interact.hs
- compiler/GHC/Tc/Solver/Monad.hs 9 additions, 13 deletionscompiler/GHC/Tc/Solver/Monad.hs
- compiler/GHC/Tc/Types/Origin.hs 6 additions, 6 deletionscompiler/GHC/Tc/Types/Origin.hs
- compiler/GHC/Utils/Misc.hs 9 additions, 0 deletionscompiler/GHC/Utils/Misc.hs
- docs/users_guide/9.6.1-notes.rst 10 additions, 0 deletionsdocs/users_guide/9.6.1-notes.rst
- testsuite/tests/quantified-constraints/T22216a.hs 14 additions, 0 deletionstestsuite/tests/quantified-constraints/T22216a.hs
- testsuite/tests/quantified-constraints/T22216b.hs 11 additions, 0 deletionstestsuite/tests/quantified-constraints/T22216b.hs
- testsuite/tests/quantified-constraints/T22216c.hs 23 additions, 0 deletionstestsuite/tests/quantified-constraints/T22216c.hs
- testsuite/tests/quantified-constraints/T22216d.hs 33 additions, 0 deletionstestsuite/tests/quantified-constraints/T22216d.hs
- testsuite/tests/quantified-constraints/T22216e.hs 19 additions, 0 deletionstestsuite/tests/quantified-constraints/T22216e.hs
- testsuite/tests/quantified-constraints/T22223.hs 24 additions, 0 deletionstestsuite/tests/quantified-constraints/T22223.hs
- testsuite/tests/quantified-constraints/all.T 6 additions, 0 deletionstestsuite/tests/quantified-constraints/all.T
Loading
Please register or sign in to comment