Use checkTyEqRhs to make types concrete
This commit refactors makeTypeConcrete to call checkTyEqRhs with the appropriate parameters. This avoids duplicating subtle logic in two places in the compiler. Changes: 1. Refactor of 'TyEqFlags'. Now 'TyEqFlags' stores a 'TEFTask', which is a description of which of the following checks we want to perform in 'checkTyEqRhs': - occurs check - level check - concreteness check In the process, the 'AreUnifying' datatype has been removed, as it is no longer needed. 2. Refactor of 'checkTyVar': a. Make use of the new 'TEFTask' data type to decide which checks to perform. In particular, this ensures that we perform **both** a concreteness check and a level check when both are required; previously we only did a concreteness check (that was a bug!). b. Recursively call 'checkTyVar' on the kind of unfilled metavariables. This deals with a bug in which we failed to uphold the invariant that the kind of a concrete type must itself be concrete. See test cases T23051, T23176. 3. Re-write of 'makeTypeConcrete', which now simply calls 'checkTyEqRhs' with appropriate 'TyEqFlags'/'TEFTask'. This gets rid of code duplication and risk for the two code paths going out-of-sync. Fixes #25616. See also #23883.
parent
f6493dbc
No related branches found
No related tags found
Pipeline #105749 canceled
Stage: tool-lint
Stage: quick-build
Stage: full-build
Stage: packaging
Stage: testing
Stage: deploy
Showing
- compiler/GHC/Core/Type.hs 10 additions, 7 deletionscompiler/GHC/Core/Type.hs
- compiler/GHC/Tc/Errors.hs 1 addition, 2 deletionscompiler/GHC/Tc/Errors.hs
- compiler/GHC/Tc/Gen/App.hs 1 addition, 2 deletionscompiler/GHC/Tc/Gen/App.hs
- compiler/GHC/Tc/Solver/Default.hs 8 additions, 9 deletionscompiler/GHC/Tc/Solver/Default.hs
- compiler/GHC/Tc/Solver/Monad.hs 14 additions, 18 deletionscompiler/GHC/Tc/Solver/Monad.hs
- compiler/GHC/Tc/Types/Constraint.hs 0 additions, 24 deletionscompiler/GHC/Tc/Types/Constraint.hs
- compiler/GHC/Tc/Utils/Concrete.hs 65 additions, 210 deletionscompiler/GHC/Tc/Utils/Concrete.hs
- compiler/GHC/Tc/Utils/TcMType.hs 1 addition, 1 deletioncompiler/GHC/Tc/Utils/TcMType.hs
- compiler/GHC/Tc/Utils/TcType.hs 4 additions, 4 deletionscompiler/GHC/Tc/Utils/TcType.hs
- compiler/GHC/Tc/Utils/Unify.hs 459 additions, 163 deletionscompiler/GHC/Tc/Utils/Unify.hs
- compiler/GHC/Tc/Utils/Unify.hs-boot 12 additions, 5 deletionscompiler/GHC/Tc/Utils/Unify.hs-boot
- hie.yaml 1 addition, 1 deletionhie.yaml
- testsuite/tests/rep-poly/RepPolyInferPatBind.stderr 1 addition, 3 deletionstestsuite/tests/rep-poly/RepPolyInferPatBind.stderr
- testsuite/tests/rep-poly/RepPolyInferPatSyn.stderr 1 addition, 3 deletionstestsuite/tests/rep-poly/RepPolyInferPatSyn.stderr
- testsuite/tests/rep-poly/RepPolyTuple3.stderr 1 addition, 1 deletiontestsuite/tests/rep-poly/RepPolyTuple3.stderr
- testsuite/tests/rep-poly/T23153.stderr 1 addition, 1 deletiontestsuite/tests/rep-poly/T23153.stderr
- testsuite/tests/rep-poly/T23154.stderr 5 additions, 0 deletionstestsuite/tests/rep-poly/T23154.stderr
Loading
Please register or sign in to comment