5c4bd3315ac6788f873251a9c359df3f4f13216e
[ghc-hetmet.git] / ghc / compiler / types / TypeRep.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1998
3 %
4 \section[TypeRep]{Type - friends' interface}
5
6 \begin{code}
7 module TypeRep (
8         TyThing(..), 
9         Type(..), TyNote(..),           -- Representation visible 
10         PredType(..),                   -- to friends
11         
12         Kind, ThetaType,                -- Synonyms
13
14         funTyCon,
15
16         -- Pretty-printing
17         pprType, pprParendType, pprTyThingCategory,
18         pprPred, pprTheta, pprThetaArrow, pprClassPred,
19
20         -- Re-export fromKind
21         liftedTypeKind, unliftedTypeKind, openTypeKind,
22         isLiftedTypeKind, isUnliftedTypeKind, isOpenTypeKind, 
23         mkArrowKind, mkArrowKinds,
24         pprKind, pprParendKind
25     ) where
26
27 #include "HsVersions.h"
28
29 import {-# SOURCE #-} DataCon( DataCon, dataConName )
30
31 -- friends:
32 import Kind
33 import Var        ( Var, Id, TyVar, tyVarKind )
34 import VarSet     ( TyVarSet )
35 import Name       ( Name, NamedThing(..), BuiltInSyntax(..), mkWiredInName )
36 import OccName    ( mkOccFS, tcName )
37 import BasicTypes ( IPName, tupleParens )
38 import TyCon      ( TyCon, mkFunTyCon, tyConArity, tupleTyConBoxity, isTupleTyCon, isRecursiveTyCon )
39 import Class      ( Class )
40
41 -- others
42 import PrelNames  ( gHC_PRIM, funTyConKey, listTyConKey, parrTyConKey, hasKey )
43 import Outputable
44 \end{code}
45
46 %************************************************************************
47 %*                                                                      *
48 \subsection{Type Classifications}
49 %*                                                                      *
50 %************************************************************************
51
52 A type is
53
54         *unboxed*       iff its representation is other than a pointer
55                         Unboxed types are also unlifted.
56
57         *lifted*        A type is lifted iff it has bottom as an element.
58                         Closures always have lifted types:  i.e. any
59                         let-bound identifier in Core must have a lifted
60                         type.  Operationally, a lifted object is one that
61                         can be entered.
62
63                         Only lifted types may be unified with a type variable.
64
65         *algebraic*     A type with one or more constructors, whether declared
66                         with "data" or "newtype".   
67                         An algebraic type is one that can be deconstructed
68                         with a case expression.  
69                         *NOT* the same as lifted types,  because we also 
70                         include unboxed tuples in this classification.
71
72         *data*          A type declared with "data".  Also boxed tuples.
73
74         *primitive*     iff it is a built-in type that can't be expressed
75                         in Haskell.
76
77 Currently, all primitive types are unlifted, but that's not necessarily
78 the case.  (E.g. Int could be primitive.)
79
80 Some primitive types are unboxed, such as Int#, whereas some are boxed
81 but unlifted (such as ByteArray#).  The only primitive types that we
82 classify as algebraic are the unboxed tuples.
83
84 examples of type classifications:
85
86 Type            primitive       boxed           lifted          algebraic    
87 -----------------------------------------------------------------------------
88 Int#,           Yes             No              No              No
89 ByteArray#      Yes             Yes             No              No
90 (# a, b #)      Yes             No              No              Yes
91 (  a, b  )      No              Yes             Yes             Yes
92 [a]             No              Yes             Yes             Yes
93
94
95
96         ----------------------
97         A note about newtypes
98         ----------------------
99
100 Consider
101         newtype N = MkN Int
102
103 Then we want N to be represented as an Int, and that's what we arrange.
104 The front end of the compiler [TcType.lhs] treats N as opaque, 
105 the back end treats it as transparent [Type.lhs].
106
107 There's a bit of a problem with recursive newtypes
108         newtype P = MkP P
109         newtype Q = MkQ (Q->Q)
110
111 Here the 'implicit expansion' we get from treating P and Q as transparent
112 would give rise to infinite types, which in turn makes eqType diverge.
113 Similarly splitForAllTys and splitFunTys can get into a loop.  
114
115 Solution: 
116
117 * Newtypes are always represented using NewTcApp, never as TyConApp.
118
119 * For non-recursive newtypes, P, treat P just like a type synonym after 
120   type-checking is done; i.e. it's opaque during type checking (functions
121   from TcType) but transparent afterwards (functions from Type).  
122   "Treat P as a type synonym" means "all functions expand NewTcApps 
123   on the fly".
124
125   Applications of the data constructor P simply vanish:
126         P x = x
127   
128
129 * For recursive newtypes Q, treat the Q and its representation as 
130   distinct right through the compiler.  Applications of the data consructor
131   use a coerce:
132         Q = \(x::Q->Q). coerce Q x
133   They are rare, so who cares if they are a tiny bit less efficient.
134
135 The typechecker (TcTyDecls) identifies enough type construtors as 'recursive'
136 to cut all loops.  The other members of the loop may be marked 'non-recursive'.
137
138
139 %************************************************************************
140 %*                                                                      *
141 \subsection{The data type}
142 %*                                                                      *
143 %************************************************************************
144
145
146 \begin{code}
147 data Type
148   = TyVarTy TyVar       
149
150   | AppTy
151         Type            -- Function is *not* a TyConApp or NewTcApp
152         Type            -- It must be another AppTy, or TyVarTy
153                         -- (or NoteTy of these)
154
155   | TyConApp            -- Application of a TyCon
156         TyCon           -- *Invariant* saturated appliations of FunTyCon and
157                         --      synonyms have their own constructors, below.
158         [Type]          -- Might not be saturated.
159
160   | NewTcApp            -- Application of a NewType TyCon.   All newtype applications
161         TyCon           -- show up like this until they are fed through newTypeRep,
162                         -- which returns 
163                         --      * an ordinary TyConApp for non-saturated, 
164                         --       or recursive newtypes
165                         --
166                         --      * the representation type of the newtype for satuarted, 
167                         --        non-recursive ones
168                         -- [But the result of a call to newTypeRep is always consumed
169                         --  immediately; it never lives on in another type.  So in any
170                         --  type, newtypes are always represented with NewTcApp.]
171         [Type]          -- Might not be saturated.
172
173   | FunTy               -- Special case of TyConApp: TyConApp FunTyCon [t1,t2]
174         Type
175         Type
176
177   | ForAllTy            -- A polymorphic type
178         TyVar
179         Type    
180
181   | PredTy              -- A high level source type 
182         PredType        -- ...can be expanded to a representation type...
183
184   | NoteTy              -- A type with a note attached
185         TyNote
186         Type            -- The expanded version
187
188 data TyNote
189   = FTVNote TyVarSet    -- The free type variables of the noted expression
190
191   | SynNote Type        -- Used for type synonyms
192                         -- The Type is always a TyConApp, and is the un-expanded form.
193                         -- The type to which the note is attached is the expanded form.
194 \end{code}
195
196 -------------------------------------
197                 Source types
198
199 A type of the form
200         PredTy p
201 represents a value whose type is the Haskell predicate p, 
202 where a predicate is what occurs before the '=>' in a Haskell type.
203 It can be expanded into its representation, but: 
204
205         * The type checker must treat it as opaque
206         * The rest of the compiler treats it as transparent
207
208 Consider these examples:
209         f :: (Eq a) => a -> Int
210         g :: (?x :: Int -> Int) => a -> Int
211         h :: (r\l) => {r} => {l::Int | r}
212
213 Here the "Eq a" and "?x :: Int -> Int" and "r\l" are all called *predicates*
214 Predicates are represented inside GHC by PredType:
215
216 \begin{code}
217 data PredType 
218   = ClassP Class [Type]         -- Class predicate
219   | IParam (IPName Name) Type   -- Implicit parameter
220
221 type ThetaType = [PredType]
222 \end{code}
223
224 (We don't support TREX records yet, but the setup is designed
225 to expand to allow them.)
226
227 A Haskell qualified type, such as that for f,g,h above, is
228 represented using 
229         * a FunTy for the double arrow
230         * with a PredTy as the function argument
231
232 The predicate really does turn into a real extra argument to the
233 function.  If the argument has type (PredTy p) then the predicate p is
234 represented by evidence (a dictionary, for example, of type (predRepTy p).
235
236
237 %************************************************************************
238 %*                                                                      *
239                         TyThing
240 %*                                                                      *
241 %************************************************************************
242
243 Despite the fact that DataCon has to be imported via a hi-boot route, 
244 this module seems the right place for TyThing, because it's needed for
245 funTyCon and all the types in TysPrim.
246
247 \begin{code}
248 data TyThing = AnId     Id
249              | ADataCon DataCon
250              | ATyCon   TyCon
251              | AClass   Class
252
253 instance Outputable TyThing where
254   ppr thing = pprTyThingCategory thing <+> quotes (ppr (getName thing))
255
256 pprTyThingCategory :: TyThing -> SDoc
257 pprTyThingCategory (ATyCon _)   = ptext SLIT("Type constructor")
258 pprTyThingCategory (AClass _)   = ptext SLIT("Class")
259 pprTyThingCategory (AnId   _)   = ptext SLIT("Identifier")
260 pprTyThingCategory (ADataCon _) = ptext SLIT("Data constructor")
261
262 instance NamedThing TyThing where       -- Can't put this with the type
263   getName (AnId id)     = getName id    -- decl, because the DataCon instance
264   getName (ATyCon tc)   = getName tc    -- isn't visible there
265   getName (AClass cl)   = getName cl
266   getName (ADataCon dc) = dataConName dc
267 \end{code}
268
269
270 %************************************************************************
271 %*                                                                      *
272 \subsection{Wired-in type constructors
273 %*                                                                      *
274 %************************************************************************
275
276 We define a few wired-in type constructors here to avoid module knots
277
278 \begin{code}
279 funTyCon = mkFunTyCon funTyConName (mkArrowKinds [argTypeKind, openTypeKind] liftedTypeKind)
280         -- You might think that (->) should have type (?? -> ? -> *), and you'd be right
281         -- But if we do that we get kind errors when saying
282         --      instance Control.Arrow (->)
283         -- becuase the expected kind is (*->*->*).  The trouble is that the
284         -- expected/actual stuff in the unifier does not go contra-variant, whereas
285         -- the kind sub-typing does.  Sigh.  It really only matters if you use (->) in
286         -- a prefix way, thus:  (->) Int# Int#.  And this is unusual.
287
288 funTyConName = mkWiredInName gHC_PRIM
289                         (mkOccFS tcName FSLIT("(->)"))
290                         funTyConKey
291                         Nothing                 -- No parent object
292                         (ATyCon funTyCon)       -- Relevant TyCon
293                         BuiltInSyntax
294 \end{code}
295
296
297 %************************************************************************
298 %*                                                                      *
299 \subsection{The external interface}
300 %*                                                                      *
301 %************************************************************************
302
303 @pprType@ is the standard @Type@ printer; the overloaded @ppr@ function is
304 defined to use this.  @pprParendType@ is the same, except it puts
305 parens around the type, except for the atomic cases.  @pprParendType@
306 works just by setting the initial context precedence very high.
307
308 \begin{code}
309 data Prec = TopPrec     -- No parens
310           | FunPrec     -- Function args; no parens for tycon apps
311           | TyConPrec   -- Tycon args; no parens for atomic
312           deriving( Eq, Ord )
313
314 maybeParen :: Prec -> Prec -> SDoc -> SDoc
315 maybeParen ctxt_prec inner_prec pretty
316   | ctxt_prec < inner_prec = pretty
317   | otherwise              = parens pretty
318
319 ------------------
320 pprType, pprParendType :: Type -> SDoc
321 pprType       ty = ppr_type TopPrec   ty
322 pprParendType ty = ppr_type TyConPrec ty
323
324 ------------------
325 pprPred :: PredType -> SDoc
326 pprPred (ClassP cls tys) = pprClassPred cls tys
327 pprPred (IParam ip ty)   = ppr ip <> dcolon <> pprType ty
328
329 pprClassPred :: Class -> [Type] -> SDoc
330 pprClassPred clas tys = ppr clas <+> sep (map pprParendType tys)
331
332 pprTheta :: ThetaType -> SDoc
333 pprTheta theta = parens (sep (punctuate comma (map pprPred theta)))
334
335 pprThetaArrow :: ThetaType -> SDoc
336 pprThetaArrow theta 
337   | null theta = empty
338   | otherwise  = parens (sep (punctuate comma (map pprPred theta))) <+> ptext SLIT("=>")
339
340 ------------------
341 instance Outputable Type where
342     ppr ty = pprType ty
343
344 instance Outputable PredType where
345     ppr = pprPred
346
347 instance Outputable name => OutputableBndr (IPName name) where
348     pprBndr _ n = ppr n -- Simple for now
349
350 ------------------
351         -- OK, here's the main printer
352
353 ppr_type :: Prec -> Type -> SDoc
354 ppr_type p (TyVarTy tv)               = ppr tv
355 ppr_type p (PredTy pred)              = braces (ppr pred)
356 ppr_type p (NoteTy (SynNote ty1) ty2) = ppr_type p ty1
357 ppr_type p (NoteTy other         ty2) = ppr_type p ty2
358
359 ppr_type p (TyConApp tc tys) = ppr_tc_app p tc tys
360 ppr_type p (NewTcApp tc tys) = ifPprDebug (if isRecursiveTyCon tc 
361                                            then ptext SLIT("<recnt>")
362                                            else ptext SLIT("<nt>")
363                                   ) <> 
364                                ppr_tc_app p tc tys
365
366 ppr_type p (AppTy t1 t2) = maybeParen p TyConPrec $
367                            pprType t1 <+> ppr_type TyConPrec t2
368
369 ppr_type p (FunTy ty1 ty2)
370   = -- We don't want to lose synonyms, so we mustn't use splitFunTys here.
371     maybeParen p FunPrec $
372     sep (ppr_type FunPrec ty1 : ppr_fun_tail ty2)
373   where
374     ppr_fun_tail (FunTy ty1 ty2) = (arrow <+> ppr_type FunPrec ty1) : ppr_fun_tail ty2
375     ppr_fun_tail other_ty        = [arrow <+> pprType other_ty]
376
377 ppr_type p ty@(ForAllTy _ _)  
378   = maybeParen p FunPrec $
379     sep [pprForAll tvs, pprThetaArrow ctxt, pprType tau]
380   where
381     (tvs,  rho) = split1 [] ty
382     (ctxt, tau) = split2 [] rho
383
384     split1 tvs (ForAllTy tv ty)        = split1 (tv:tvs) ty
385     split1 tvs (NoteTy (FTVNote _) ty) = split1 tvs ty
386     split1 tvs ty                      = (reverse tvs, ty)
387  
388     split2 ps (NoteTy (FTVNote _) arg   -- Rather a disgusting case
389                `FunTy` res)           = split2 ps (arg `FunTy` res)
390     split2 ps (PredTy p `FunTy` ty)   = split2 (p:ps) ty
391     split2 ps (NoteTy (FTVNote _) ty) = split2 ps ty
392     split2 ps ty                      = (reverse ps, ty)
393
394 ppr_tc_app :: Prec -> TyCon -> [Type] -> SDoc
395 ppr_tc_app p tc [] 
396   = ppr tc
397 ppr_tc_app p tc [ty] 
398   | tc `hasKey` listTyConKey = brackets (pprType ty)
399   | tc `hasKey` parrTyConKey = ptext SLIT("[:") <> pprType ty <> ptext SLIT(":]")
400 ppr_tc_app p tc tys
401   | isTupleTyCon tc && tyConArity tc == length tys
402   = tupleParens (tupleTyConBoxity tc) (sep (punctuate comma (map pprType tys)))
403   | otherwise
404   = maybeParen p TyConPrec $
405     ppr tc <+> sep (map (ppr_type TyConPrec) tys)
406
407 -------------------
408 pprForAll tvs = ptext SLIT("forall") <+> sep (map pprTvBndr tvs) <> dot
409
410 pprTvBndr tv | isLiftedTypeKind kind = ppr tv
411              | otherwise             = parens (ppr tv <+> dcolon <+> pprKind kind)
412              where
413                kind = tyVarKind tv
414 \end{code}
415