summaryrefslogtreecommitdiff
path: root/compiler/typecheck/TcBackpack.hs
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2017-02-01 20:25:33 -0500
committerBen Gamari <ben@smart-cactus.org>2017-02-18 00:07:03 -0500
commitb207b536ded40156f9adb168565ca78e1eef2c74 (patch)
treec7e074201603ac54abb60856010ef82478a2113d /compiler/typecheck/TcBackpack.hs
parentefeaf9e436109cb35b491e08b5407c0598108186 (diff)
downloadhaskell-b207b536ded40156f9adb168565ca78e1eef2c74.tar.gz
Generalize kind of the (->) tycon
This is generalizes the kind of `(->)`, as discussed in #11714. This involves a few things, * Generalizing the kind of `funTyCon`, adding two new `RuntimeRep` binders, ```lang=haskell (->) :: forall (r1 :: RuntimeRep) (r2 :: RuntimeRep) (a :: TYPE r1) (b :: TYPE r2). a -> b -> * ``` * Unsaturated applications of `(->)` are expressed as explicit `TyConApp`s * Saturated applications of `(->)` are expressed as `FunTy` as they are currently * Saturated applications of `(->)` are expressed by a new `FunCo` constructor in coercions * `splitTyConApp` needs to ensure that `FunTy`s are split to a `TyConApp` of `(->)` with the appropriate `RuntimeRep` arguments * Teach CoreLint to check that all saturated applications of `(->)` are represented with `FunTy` At the moment I assume that `Constraint ~ *`, which is an annoying source of complexity. This will be simplified once D3023 is resolved. Also, this introduces two known regressions, `tcfail181`, `T10403` ===================== Only shows the instance, instance Monad ((->) r) -- Defined in ‘GHC.Base’ in its error message when -fprint-potential-instances is used. This is because its instance head now mentions 'LiftedRep which is not in scope. I'm not entirely sure of the right way to fix this so I'm just accepting the new output for now. T5963 (Typeable) ================ T5963 is now broken since Data.Typeable.Internals.mkFunTy computes its fingerprint without the RuntimeRep variables that (->) expects. This will be fixed with the merge of D2010. Haddock performance =================== The `haddock.base` and `haddock.Cabal` tests regress in allocations by about 20%. This certainly hurts, but it's also not entirely unexpected: the size of every function type grows with this patch and Haddock has a lot of functions in its heap.
Diffstat (limited to 'compiler/typecheck/TcBackpack.hs')
0 files changed, 0 insertions, 0 deletions