[project @ 1997-03-14 07:52:06 by simonpj]
[ghc-hetmet.git] / ghc / compiler / hsSyn / HsTypes.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1996
3 %
4 \section[HsTypes]{Abstract syntax: user-defined types}
5
6 If compiled without \tr{#define COMPILING_GHC}, you get
7 (part of) a Haskell-abstract-syntax library.  With it,
8 you get part of GHC.
9
10 \begin{code}
11 #include "HsVersions.h"
12
13 module HsTypes (
14         HsType(..), HsTyVar(..),
15         SYN_IE(Context), SYN_IE(ClassAssertion)
16
17         , mkHsForAllTy
18         , getTyVarName, replaceTyVarName
19         , pprParendHsType
20         , pprContext
21         , cmpHsType, cmpContext
22     ) where
23
24 IMP_Ubiq()
25
26 import Outputable       ( interppSP, ifnotPprForUser )
27 import Kind             ( Kind {- instance Outputable -} )
28 import Name             ( nameOccName )
29 import Pretty
30 import PprStyle         ( PprStyle(..) )
31 import Util             ( thenCmp, cmpList, isIn, panic# )
32 \end{code}
33
34 This is the syntax for types as seen in type signatures.
35
36 \begin{code}
37 type Context name = [ClassAssertion name]
38
39 type ClassAssertion name = (name, HsType name)
40         -- The type is usually a type variable, but it
41         -- doesn't have to be when reading interface files
42
43 data HsType name
44   = HsPreForAllTy       (Context name)
45                         (HsType name)
46
47         -- The renamer turns HsPreForAllTys into HsForAllTys when they
48         -- occur in signatures, to make the binding of variables
49         -- explicit.  This distinction is made visible for
50         -- non-COMPILING_GHC code, because you probably want to do the
51         -- same thing.
52
53   | HsForAllTy          [HsTyVar name]
54                         (Context name)
55                         (HsType name)
56
57   | MonoTyVar           name            -- Type variable
58
59   | MonoTyApp           (HsType name)
60                         (HsType name)
61
62   | MonoFunTy           (HsType name) -- function type
63                         (HsType name)
64
65   | MonoListTy          name            -- The list TyCon name
66                         (HsType name)   -- Element type
67
68   | MonoTupleTy         name            -- The tuple TyCon name
69                         [HsType name]   -- Element types (length gives arity)
70
71   -- these next two are only used in unfoldings in interfaces
72   | MonoDictTy          name    -- Class
73                         (HsType name)
74
75 mkHsForAllTy []  []   ty = ty
76 mkHsForAllTy tvs ctxt ty = HsForAllTy tvs ctxt ty
77
78 data HsTyVar name
79   = UserTyVar name
80   | IfaceTyVar name Kind
81         -- *** NOTA BENE *** A "monotype" in a pragma can have
82         -- for-alls in it, (mostly to do with dictionaries).  These
83         -- must be explicitly Kinded.
84
85 getTyVarName (UserTyVar n)    = n
86 getTyVarName (IfaceTyVar n _) = n
87
88 replaceTyVarName :: HsTyVar name1 -> name2 -> HsTyVar name2
89 replaceTyVarName (UserTyVar n)    n' = UserTyVar n'
90 replaceTyVarName (IfaceTyVar n k) n' = IfaceTyVar n' k
91 \end{code}
92
93
94 %************************************************************************
95 %*                                                                      *
96 \subsection{Pretty printing}
97 %*                                                                      *
98 %************************************************************************
99
100 \begin{code}
101
102 instance (Outputable name) => Outputable (HsType name) where
103     ppr = pprHsType
104
105 instance (Outputable name) => Outputable (HsTyVar name) where
106     ppr sty (UserTyVar name) = ppr_hs_tyname sty name
107     ppr sty (IfaceTyVar name kind) = ppCat [ppr_hs_tyname sty name, ppPStr SLIT("::"), ppr sty kind]
108
109
110 -- Here comes a rather gross hack.  
111 -- We want to print data and class decls in interface files, from the original source
112 -- When we do, we want the type variables to come out with their original names, not
113 -- some new unique (or else interfaces wobble too much).  So when we come to one of
114 -- these type variables we sneakily change the style to PprForUser!
115 ppr_hs_tyname PprInterface tv_name = ppr PprForUser tv_name
116 ppr_hs_tyname other_sty    tv_name = ppr other_sty tv_name
117
118 ppr_forall sty ctxt_prec [] [] ty
119    = ppr_mono_ty sty ctxt_prec ty
120 ppr_forall sty ctxt_prec tvs ctxt ty
121    = ppSep [ppPStr SLIT("_forall_"), ppBracket (interppSP sty tvs),
122             pprContext sty ctxt,  ppPStr SLIT("=>"),
123             pprHsType sty ty]
124
125 pprContext :: (Outputable name) => PprStyle -> (Context name) -> Pretty
126 pprContext sty []               = ppNil
127 pprContext sty context
128   = ppCat [ppCurlies (ppIntersperse pp'SP (map ppr_assert context))]
129   where
130     ppr_assert (clas, ty) = ppCat [ppr sty clas, ppr sty ty]
131 \end{code}
132
133 \begin{code}
134 pREC_TOP = (0 :: Int)
135 pREC_FUN = (1 :: Int)
136 pREC_CON = (2 :: Int)
137
138 maybeParen :: Bool -> Pretty -> Pretty
139 maybeParen True  p = ppParens p
140 maybeParen False p = p
141         
142 -- printing works more-or-less as for Types
143
144 pprHsType, pprParendHsType :: (Outputable name) => PprStyle -> HsType name -> Pretty
145
146 pprHsType sty ty       = ppr_mono_ty sty pREC_TOP ty
147 pprParendHsType sty ty = ppr_mono_ty sty pREC_CON ty
148
149 ppr_mono_ty sty ctxt_prec (HsPreForAllTy ctxt ty)     = ppr_forall sty ctxt_prec [] ctxt ty
150 ppr_mono_ty sty ctxt_prec (HsForAllTy tvs ctxt ty)    = ppr_forall sty ctxt_prec tvs ctxt ty
151
152 ppr_mono_ty sty ctxt_prec (MonoTyVar name) = ppr_hs_tyname sty name
153
154 ppr_mono_ty sty ctxt_prec (MonoFunTy ty1 ty2)
155   = let p1 = ppr_mono_ty sty pREC_FUN ty1
156         p2 = ppr_mono_ty sty pREC_TOP ty2
157     in
158     maybeParen (ctxt_prec >= pREC_FUN)
159                (ppSep [p1, ppBeside (ppPStr SLIT("-> ")) p2])
160
161 ppr_mono_ty sty ctxt_prec (MonoTupleTy _ tys)
162  = ppParens (ppInterleave ppComma (map (ppr sty) tys))
163
164 ppr_mono_ty sty ctxt_prec (MonoListTy _ ty)
165  = ppBesides [ppLbrack, ppr_mono_ty sty pREC_TOP ty, ppRbrack]
166
167 ppr_mono_ty sty ctxt_prec (MonoTyApp fun_ty arg_ty)
168   = maybeParen (ctxt_prec >= pREC_CON)
169                (ppCat [ppr_mono_ty sty pREC_FUN fun_ty, ppr_mono_ty sty pREC_CON arg_ty])
170
171 ppr_mono_ty sty ctxt_prec (MonoDictTy clas ty)
172   = ppCurlies (ppCat [ppr sty clas, ppr_mono_ty sty pREC_CON ty])
173         -- Curlies are temporary
174 \end{code}
175
176
177 %************************************************************************
178 %*                                                                      *
179 \subsection{Comparison}
180 %*                                                                      *
181 %************************************************************************
182
183 We do define a specialised equality for these \tr{*Type} types; used
184 in checking interfaces.  Most any other use is likely to be {\em
185 wrong}, so be careful!
186
187 \begin{code}
188 cmpHsTyVar :: (a -> a -> TAG_) -> HsTyVar a -> HsTyVar a -> TAG_
189 cmpHsType :: (a -> a -> TAG_) -> HsType a -> HsType a -> TAG_
190 cmpContext  :: (a -> a -> TAG_) -> Context  a -> Context  a -> TAG_
191
192 cmpHsTyVar cmp (UserTyVar v1)    (UserTyVar v2)    = v1 `cmp` v2
193 cmpHsTyVar cmp (IfaceTyVar v1 _) (IfaceTyVar v2 _) = v1 `cmp` v2
194 cmpHsTyVar cmp (UserTyVar _)     other             = LT_
195 cmpHsTyVar cmp other1            other2            = GT_
196
197
198 -- We assume that HsPreForAllTys have been smashed by now.
199 # ifdef DEBUG
200 cmpHsType _ (HsPreForAllTy _ _) _ = panic# "cmpHsType:HsPreForAllTy:1st arg"
201 cmpHsType _ _ (HsPreForAllTy _ _) = panic# "cmpHsType:HsPreForAllTy:2nd arg"
202 # endif
203
204 cmpHsType cmp (HsForAllTy tvs1 c1 t1) (HsForAllTy tvs2 c2 t2)
205   = cmpList (cmpHsTyVar cmp) tvs1 tvs2  `thenCmp`
206     cmpContext cmp c1 c2                `thenCmp`
207     cmpHsType cmp t1 t2
208
209 cmpHsType cmp (MonoTyVar n1) (MonoTyVar n2)
210   = cmp n1 n2
211
212 cmpHsType cmp (MonoTupleTy _ tys1) (MonoTupleTy _ tys2)
213   = cmpList (cmpHsType cmp) tys1 tys2
214 cmpHsType cmp (MonoListTy _ ty1) (MonoListTy _ ty2)
215   = cmpHsType cmp ty1 ty2
216
217 cmpHsType cmp (MonoTyApp fun_ty1 arg_ty1) (MonoTyApp fun_ty2 arg_ty2)
218   = cmpHsType cmp fun_ty1 fun_ty2 `thenCmp` cmpHsType cmp arg_ty1 arg_ty2
219
220 cmpHsType cmp (MonoFunTy a1 b1) (MonoFunTy a2 b2)
221   = cmpHsType cmp a1 a2 `thenCmp` cmpHsType cmp b1 b2
222
223 cmpHsType cmp (MonoDictTy c1 ty1)   (MonoDictTy c2 ty2)
224   = cmp c1 c2 `thenCmp` cmpHsType cmp ty1 ty2
225
226 cmpHsType cmp ty1 ty2 -- tags must be different
227   = let tag1 = tag ty1
228         tag2 = tag ty2
229     in
230     if tag1 _LT_ tag2 then LT_ else GT_
231   where
232     tag (MonoTyVar n1)          = (ILIT(1) :: FAST_INT)
233     tag (MonoTupleTy _ tys1)    = ILIT(2)
234     tag (MonoListTy _ ty1)      = ILIT(3)
235     tag (MonoTyApp tc1 tys1)    = ILIT(4)
236     tag (MonoFunTy a1 b1)       = ILIT(5)
237     tag (MonoDictTy c1 ty1)     = ILIT(7)
238     tag (HsForAllTy _ _ _)      = ILIT(8)
239     tag (HsPreForAllTy _ _)     = ILIT(9)
240
241 -------------------
242 cmpContext cmp a b
243   = cmpList cmp_ctxt a b
244   where
245     cmp_ctxt (c1, ty1) (c2, ty2)
246       = cmp c1 c2 `thenCmp` cmpHsType cmp ty1 ty2
247 \end{code}