Implement unboxed sum primitive type
Summary: This patch implements primitive unboxed sum types, as described in https://ghc.haskell.org/trac/ghc/wiki/UnpackedSumTypes. Main changes are: - Add new syntax for unboxed sums types, terms and patterns. Hidden behind `-XUnboxedSums`. - Add unlifted unboxed sum type constructors and data constructors, extend type and pattern checkers and desugarer. - Add new RuntimeRep for unboxed sums. - Extend unarise pass to translate unboxed sums to unboxed tuples right before code generation. - Add `StgRubbishArg` to `StgArg`, and a new type `CmmArg` for better code generation when sum values are involved. - Add user manual section for unboxed sums. Some other changes: - Generalize `UbxTupleRep` to `MultiRep` and `UbxTupAlt` to `MultiValAlt` to be able to use those with both sums and tuples. - Don't use `tyConPrimRep` in `isVoidTy`: `tyConPrimRep` is really wrong, given an `Any` `TyCon`, there's no way to tell what its kind is, but `kindPrimRep` and in turn `tyConPrimRep` returns `PtrRep`. - Fix some bugs on the way: #12375. Not included in this patch: - Update Haddock for new the new unboxed sum syntax. - `TemplateHaskell` support is left as future work. For reviewers: - Front-end code is mostly trivial and adapted from unboxed tuple code for type checking, pattern checking, renaming, desugaring etc. - Main translation routines are in `RepType` and `UnariseStg`. Documentation in `UnariseStg` should be enough for understanding what's going on. Credits: - Johan Tibell wrote the initial front-end and interface file extensions. - Simon Peyton Jones reviewed this patch many times, wrote some code, and helped with debugging. Reviewers: bgamari, alanz, goldfire, RyanGlScott, simonpj, austin, simonmar, hvr, erikd Reviewed By: simonpj Subscribers: Iceland_jack, ggreif, ezyang, RyanGlScott, goldfire, thomie, mpickering Differential Revision: https://phabricator.haskell.org/D2259
Showing
- compiler/basicTypes/BasicTypes.hs 27 additions, 1 deletioncompiler/basicTypes/BasicTypes.hs
- compiler/basicTypes/DataCon.hs 5 additions, 7 deletionscompiler/basicTypes/DataCon.hs
- compiler/basicTypes/Id.hs 2 additions, 5 deletionscompiler/basicTypes/Id.hs
- compiler/basicTypes/IdInfo.hs 1 addition, 1 deletioncompiler/basicTypes/IdInfo.hs
- compiler/basicTypes/Unique.hs 9 additions, 0 deletionscompiler/basicTypes/Unique.hs
- compiler/cmm/CLabel.hs 3 additions, 1 deletioncompiler/cmm/CLabel.hs
- compiler/cmm/CmmExpr.hs 9 additions, 3 deletionscompiler/cmm/CmmExpr.hs
- compiler/cmm/CmmLayoutStack.hs 1 addition, 1 deletioncompiler/cmm/CmmLayoutStack.hs
- compiler/cmm/CmmLive.hs 1 addition, 3 deletionscompiler/cmm/CmmLive.hs
- compiler/cmm/CmmParse.y 4 additions, 4 deletionscompiler/cmm/CmmParse.y
- compiler/cmm/CmmUtils.hs 20 additions, 2 deletionscompiler/cmm/CmmUtils.hs
- compiler/cmm/MkGraph.hs 51 additions, 23 deletionscompiler/cmm/MkGraph.hs
- compiler/cmm/PprCmmExpr.hs 9 additions, 0 deletionscompiler/cmm/PprCmmExpr.hs
- compiler/codeGen/StgCmm.hs 4 additions, 4 deletionscompiler/codeGen/StgCmm.hs
- compiler/codeGen/StgCmmBind.hs 3 additions, 3 deletionscompiler/codeGen/StgCmmBind.hs
- compiler/codeGen/StgCmmClosure.hs 2 additions, 3 deletionscompiler/codeGen/StgCmmClosure.hs
- compiler/codeGen/StgCmmCon.hs 7 additions, 3 deletionscompiler/codeGen/StgCmmCon.hs
- compiler/codeGen/StgCmmEnv.hs 26 additions, 11 deletionscompiler/codeGen/StgCmmEnv.hs
- compiler/codeGen/StgCmmExpr.hs 17 additions, 13 deletionscompiler/codeGen/StgCmmExpr.hs
- compiler/codeGen/StgCmmForeign.hs 5 additions, 2 deletionscompiler/codeGen/StgCmmForeign.hs
Loading
-
mentioned in issue #9214 (closed)
-
mentioned in issue #12437
-
mentioned in commit 14c2e8e0
-
mentioned in issue #14608 (closed)
-
mentioned in commit ecff651f
-
mentioned in commit ec6af9c4
-
mentioned in merge request !10165 (closed)
Please register or sign in to comment