[project @ 2002-03-08 15:50:53 by simonpj]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcEnv.lhs
1 \begin{code}
2 module TcEnv(
3         TcId, TcIdSet, 
4         TyThing(..), TyThingDetails(..), TcTyThing(..),
5
6         -- Getting stuff from the environment
7         TcEnv, initTcEnv, 
8         tcEnvTyCons, tcEnvClasses, tcEnvIds, tcLEnvElts,
9         getTcGEnv,
10         
11         -- Instance environment, and InstInfo type
12         tcGetInstEnv, tcSetInstEnv, 
13         InstInfo(..), pprInstInfo,
14         simpleInstInfoTy, simpleInstInfoTyCon, 
15
16         -- Global environment
17         tcExtendGlobalEnv, tcExtendGlobalValEnv, tcExtendGlobalTypeEnv,
18         tcLookupTyCon, tcLookupClass, tcLookupGlobalId, tcLookupDataCon,
19         tcLookupGlobal_maybe, tcLookupGlobal, 
20
21         -- Local environment
22         tcExtendKindEnv,  tcInLocalScope,
23         tcExtendTyVarEnv,    tcExtendTyVarEnv2, 
24         tcExtendLocalValEnv, tcExtendLocalValEnv2, 
25         tcLookup, tcLookupLocalIds, tcLookup_maybe, tcLookupId,
26
27         -- Global type variables
28         tcGetGlobalTyVars,
29
30         -- Random useful things
31         RecTcEnv, tcLookupRecId, tcLookupRecId_maybe, 
32
33         -- New Ids
34         newLocalName, newDFunName,
35
36         -- Misc
37         isLocalThing, tcSetEnv
38   ) where
39
40 #include "HsVersions.h"
41
42 import RnHsSyn          ( RenamedMonoBinds, RenamedSig )
43 import TcMonad
44 import TcMType          ( zonkTcTyVarsAndFV )
45 import TcType           ( Type, ThetaType, TcKind, TcTyVar, TcTyVarSet, 
46                           tyVarsOfTypes, tcSplitDFunTy,
47                           getDFunTyKey, tcTyConAppTyCon
48                         )
49 import Id               ( idName, isDataConWrapId_maybe )
50 import Var              ( TyVar, Id, idType )
51 import VarSet
52 import DataCon          ( DataCon )
53 import TyCon            ( TyCon, DataConDetails )
54 import Class            ( Class, ClassOpItem )
55 import Name             ( Name, NamedThing(..), 
56                           getSrcLoc, mkLocalName, isLocalName, nameIsLocalOrFrom
57                         )
58 import NameEnv          ( NameEnv, lookupNameEnv, nameEnvElts, elemNameEnv,
59                           extendNameEnvList, emptyNameEnv, plusNameEnv )
60 import OccName          ( mkDFunOcc, occNameString )
61 import HscTypes         ( DFunId, 
62                           PackageTypeEnv, TypeEnv, 
63                           extendTypeEnvList, extendTypeEnvWithIds,
64                           typeEnvTyCons, typeEnvClasses, typeEnvIds,
65                           HomeSymbolTable
66                         )
67 import Module           ( Module )
68 import InstEnv          ( InstEnv, emptyInstEnv )
69 import HscTypes         ( lookupType, TyThing(..) )
70 import SrcLoc           ( SrcLoc )
71 import Outputable
72
73 import IOExts           ( newIORef )
74 \end{code}
75
76 %************************************************************************
77 %*                                                                      *
78 \subsection{TcEnv}
79 %*                                                                      *
80 %************************************************************************
81
82 \begin{code}
83 type TcId    = Id                       -- Type may be a TcType
84 type TcIdSet = IdSet
85
86 data TcEnv
87   = TcEnv {
88         tcGST    :: Name -> Maybe TyThing,      -- The type environment at the moment we began this compilation
89
90         tcInsts  :: InstEnv,            -- All instances (both imported and in this module)
91
92         tcGEnv   :: TypeEnv,            -- The global type environment we've accumulated while
93                  {- NameEnv TyThing-}   -- compiling this module:
94                                         --      types and classes (both imported and local)
95                                         --      imported Ids
96                                         -- (Ids defined in this module start in the local envt, 
97                                         --  though they move to the global envt during zonking)
98
99         tcLEnv   :: NameEnv TcTyThing,  -- The local type environment: Ids and TyVars
100                                         -- defined in this module
101
102         tcTyVars :: TcRef TcTyVarSet    -- The "global tyvars"
103                                         -- Namely, the in-scope TyVars bound in tcLEnv, plus the tyvars
104                                         -- mentioned in the types of Ids bound in tcLEnv
105                                         -- Why mutable? see notes with tcGetGlobalTyVars
106     }
107
108 \end{code}
109
110 The Global-Env/Local-Env story
111 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
112 During type checking, we keep in the GlobalEnv
113         * All types and classes
114         * All Ids derived from types and classes (constructors, selectors)
115         * Imported Ids
116
117 At the end of type checking, we zonk the local bindings,
118 and as we do so we add to the GlobalEnv
119         * Locally defined top-level Ids
120
121 Why?  Because they are now Ids not TcIds.  This final GlobalEnv is
122 used thus:
123         a) fed back (via the knot) to typechecking the 
124            unfoldings of interface signatures
125
126         b) used to augment the GlobalSymbolTable
127
128
129 \begin{code}
130 initTcEnv :: HomeSymbolTable -> PackageTypeEnv -> IO TcEnv
131 initTcEnv hst pte 
132   = do { gtv_var <- newIORef emptyVarSet ;
133          return (TcEnv { tcGST    = lookup,
134                          tcGEnv   = emptyNameEnv,
135                          tcInsts  = emptyInstEnv,
136                          tcLEnv   = emptyNameEnv,
137                          tcTyVars = gtv_var
138          })}
139   where
140     lookup name | isLocalName name = Nothing
141                 | otherwise        = lookupType hst pte name
142
143
144 tcEnvClasses env = typeEnvClasses (tcGEnv env)
145 tcEnvTyCons  env = typeEnvTyCons  (tcGEnv env) 
146 tcEnvIds     env = typeEnvIds     (tcGEnv env) 
147 tcLEnvElts   env = nameEnvElts (tcLEnv env)
148
149 getTcGEnv (TcEnv { tcGEnv = genv }) = genv
150
151 tcInLocalScope :: TcEnv -> Name -> Bool
152 tcInLocalScope env v = v `elemNameEnv` (tcLEnv env)
153 \end{code}
154
155 \begin{code}
156 data TcTyThing
157   = AGlobal TyThing             -- Used only in the return type of a lookup
158   | ATcId   TcId                -- Ids defined in this module
159   | ATyVar  TyVar               -- Type variables
160   | AThing  TcKind              -- Used temporarily, during kind checking
161 -- Here's an example of how the AThing guy is used
162 -- Suppose we are checking (forall a. T a Int):
163 --      1. We first bind (a -> AThink kv), where kv is a kind variable. 
164 --      2. Then we kind-check the (T a Int) part.
165 --      3. Then we zonk the kind variable.
166 --      4. Now we know the kind for 'a', and we add (a -> ATyVar a::K) to the environment
167
168 \end{code}
169
170 This data type is used to help tie the knot
171  when type checking type and class declarations
172
173 \begin{code}
174 data TyThingDetails = SynTyDetails Type
175                     | DataTyDetails ThetaType (DataConDetails DataCon) [Id]
176                     | ClassDetails ThetaType [Id] [ClassOpItem] DataCon
177                     | ForeignTyDetails  -- Nothing yet
178 \end{code}
179
180 %************************************************************************
181 %*                                                                      *
182 \subsection{Basic lookups}
183 %*                                                                      *
184 %************************************************************************
185
186 \begin{code}
187 lookup_global :: TcEnv -> Name -> Maybe TyThing
188         -- Try the global envt and then the global symbol table
189 lookup_global env name 
190   = case lookupNameEnv (tcGEnv env) name of
191         Just thing -> Just thing
192         Nothing    -> tcGST env name
193
194 lookup_local :: TcEnv -> Name -> Maybe TcTyThing
195         -- Try the local envt and then try the global
196 lookup_local env name
197   = case lookupNameEnv (tcLEnv env) name of
198         Just thing -> Just thing
199         Nothing    -> case lookup_global env name of
200                         Just thing -> Just (AGlobal thing)
201                         Nothing    -> Nothing
202 \end{code}
203
204 \begin{code}
205 type RecTcEnv = TcEnv
206 -- This environment is used for getting the 'right' IdInfo 
207 -- on imported things and for looking up Ids in unfoldings
208 -- The environment doesn't have any local Ids in it
209
210 tcLookupRecId_maybe :: RecTcEnv -> Name -> Maybe Id
211 tcLookupRecId_maybe env name = case lookup_global env name of
212                                    Just (AnId id) -> Just id
213                                    other          -> Nothing
214
215 tcLookupRecId ::  RecTcEnv -> Name -> Id
216 tcLookupRecId env name = case lookup_global env name of
217                                 Just (AnId id) -> id
218                                 Nothing        -> pprPanic "tcLookupRecId" (ppr name)
219 \end{code}
220
221 %************************************************************************
222 %*                                                                      *
223 \subsection{Making new Ids}
224 %*                                                                      *
225 %************************************************************************
226
227 Constructing new Ids
228
229 \begin{code}
230 newLocalName :: Name -> NF_TcM Name
231 newLocalName name       -- Make a clone
232   = tcGetUnique         `thenNF_Tc` \ uniq ->
233     returnNF_Tc (mkLocalName uniq (getOccName name) (getSrcLoc name))
234 \end{code}
235
236 Make a name for the dict fun for an instance decl.
237 It's a *local* name for the moment.  The CoreTidy pass
238 will globalise it.
239
240 \begin{code}
241 newDFunName :: Class -> [Type] -> SrcLoc -> NF_TcM Name
242 newDFunName clas (ty:_) loc
243   = tcGetUnique                 `thenNF_Tc` \ uniq ->
244     returnNF_Tc (mkLocalName uniq (mkDFunOcc dfun_string) loc)
245   where
246         -- Any string that is somewhat unique will do
247     dfun_string = occNameString (getOccName clas) ++ occNameString (getDFunTyKey ty)
248
249 newDFunName clas [] loc = pprPanic "newDFunName" (ppr clas <+> ppr loc)
250 \end{code}
251
252 \begin{code}
253 isLocalThing :: NamedThing a => Module -> a -> Bool
254 isLocalThing mod thing = nameIsLocalOrFrom mod (getName thing)
255 \end{code}
256
257 %************************************************************************
258 %*                                                                      *
259 \subsection{The global environment}
260 %*                                                                      *
261 %************************************************************************
262
263 \begin{code}
264 tcExtendGlobalEnv :: [TyThing] -> TcM r -> TcM r
265 tcExtendGlobalEnv things thing_inside
266   = tcGetEnv                            `thenNF_Tc` \ env ->
267     let
268         ge' = extendTypeEnvList (tcGEnv env) things
269     in
270     tcSetEnv (env {tcGEnv = ge'}) thing_inside
271
272
273 tcExtendGlobalTypeEnv :: TypeEnv -> TcM r -> TcM r
274 tcExtendGlobalTypeEnv extra_env thing_inside
275   = tcGetEnv                            `thenNF_Tc` \ env ->
276     let
277         ge' = tcGEnv env `plusNameEnv` extra_env
278     in
279     tcSetEnv (env {tcGEnv = ge'}) thing_inside
280
281 tcExtendGlobalValEnv :: [Id] -> TcM a -> TcM a
282 tcExtendGlobalValEnv ids thing_inside
283   = tcGetEnv                            `thenNF_Tc` \ env ->
284     let
285         ge' = extendTypeEnvWithIds (tcGEnv env) ids
286     in
287     tcSetEnv (env {tcGEnv = ge'}) thing_inside
288 \end{code}
289
290
291 \begin{code}
292 tcLookupGlobal_maybe :: Name -> NF_TcM (Maybe TyThing)
293 tcLookupGlobal_maybe name
294   = tcGetEnv            `thenNF_Tc` \ env ->
295     returnNF_Tc (lookup_global env name)
296 \end{code}
297
298 A variety of global lookups, when we know what we are looking for.
299
300 \begin{code}
301 tcLookupGlobal :: Name -> NF_TcM TyThing
302 tcLookupGlobal name
303   = tcLookupGlobal_maybe name   `thenNF_Tc` \ maybe_thing ->
304     case maybe_thing of
305         Just thing -> returnNF_Tc thing
306         other      -> notFound "tcLookupGlobal" name
307
308 tcLookupGlobalId :: Name -> NF_TcM Id
309 tcLookupGlobalId name
310   = tcLookupGlobal_maybe name   `thenNF_Tc` \ maybe_id ->
311     case maybe_id of
312         Just (AnId id) -> returnNF_Tc id
313         other          -> notFound "tcLookupGlobalId" name
314         
315 tcLookupDataCon :: Name -> TcM DataCon
316 tcLookupDataCon con_name
317   = tcLookupGlobalId con_name           `thenNF_Tc` \ con_id ->
318     case isDataConWrapId_maybe con_id of
319         Just data_con -> returnTc data_con
320         Nothing       -> failWithTc (badCon con_id)
321
322
323 tcLookupClass :: Name -> NF_TcM Class
324 tcLookupClass name
325   = tcLookupGlobal_maybe name   `thenNF_Tc` \ maybe_clas ->
326     case maybe_clas of
327         Just (AClass clas) -> returnNF_Tc clas
328         other              -> notFound "tcLookupClass" name
329         
330 tcLookupTyCon :: Name -> NF_TcM TyCon
331 tcLookupTyCon name
332   = tcLookupGlobal_maybe name   `thenNF_Tc` \ maybe_tc ->
333     case maybe_tc of
334         Just (ATyCon tc) -> returnNF_Tc tc
335         other            -> notFound "tcLookupTyCon" name
336
337 tcLookupId :: Name -> NF_TcM Id
338 tcLookupId name
339   = tcLookup name       `thenNF_Tc` \ thing -> 
340     case thing of
341         ATcId tc_id       -> returnNF_Tc tc_id
342         AGlobal (AnId id) -> returnNF_Tc id
343         other             -> pprPanic "tcLookupId" (ppr name)
344
345 tcLookupLocalIds :: [Name] -> NF_TcM [TcId]
346 tcLookupLocalIds ns
347   = tcGetEnv            `thenNF_Tc` \ env ->
348     returnNF_Tc (map (lookup (tcLEnv env)) ns)
349   where
350     lookup lenv name = case lookupNameEnv lenv name of
351                         Just (ATcId id) -> id
352                         other           -> pprPanic "tcLookupLocalIds" (ppr name)
353 \end{code}
354
355
356 %************************************************************************
357 %*                                                                      *
358 \subsection{The local environment}
359 %*                                                                      *
360 %************************************************************************
361
362 \begin{code}
363 tcLookup_maybe :: Name -> NF_TcM (Maybe TcTyThing)
364 tcLookup_maybe name
365   = tcGetEnv            `thenNF_Tc` \ env ->
366     returnNF_Tc (lookup_local env name)
367
368 tcLookup :: Name -> NF_TcM TcTyThing
369 tcLookup name
370   = tcLookup_maybe name         `thenNF_Tc` \ maybe_thing ->
371     case maybe_thing of
372         Just thing -> returnNF_Tc thing
373         other      -> notFound "tcLookup" name
374         -- Extract the IdInfo from an IfaceSig imported from an interface file
375 \end{code}
376
377
378 \begin{code}
379 tcExtendKindEnv :: [(Name,TcKind)] -> TcM r -> TcM r
380 tcExtendKindEnv pairs thing_inside
381   = tcGetEnv                            `thenNF_Tc` \ env ->
382     let
383         le' = extendNameEnvList (tcLEnv env) [(n, AThing k) | (n,k) <- pairs]
384         -- No need to extend global tyvars for kind checking
385     in
386     tcSetEnv (env {tcLEnv = le'}) thing_inside
387     
388 tcExtendTyVarEnv :: [TyVar] -> TcM r -> TcM r
389 tcExtendTyVarEnv tvs thing_inside
390   = tc_extend_tv_env [(getName tv, ATyVar tv) | tv <- tvs] tvs thing_inside
391
392 tcExtendTyVarEnv2 :: [(TyVar,TcTyVar)] -> TcM r -> TcM r
393 tcExtendTyVarEnv2 tv_pairs thing_inside
394   = tc_extend_tv_env [(getName tv1, ATyVar tv2) | (tv1,tv2) <- tv_pairs]
395                      [tv | (_,tv) <- tv_pairs]
396                      thing_inside
397
398 tc_extend_tv_env binds tyvars thing_inside
399   = tcGetEnv                    `thenNF_Tc` \ env@(TcEnv {tcLEnv = le, tcTyVars = gtvs}) ->
400     let
401         le'        = extendNameEnvList le binds
402         new_tv_set = mkVarSet tyvars
403     in
404         -- It's important to add the in-scope tyvars to the global tyvar set
405         -- as well.  Consider
406         --      f (x::r) = let g y = y::r in ...
407         -- Here, g mustn't be generalised.  This is also important during
408         -- class and instance decls, when we mustn't generalise the class tyvars
409         -- when typechecking the methods.
410     tc_extend_gtvs gtvs new_tv_set              `thenNF_Tc` \ gtvs' ->
411     tcSetEnv (env {tcLEnv = le', tcTyVars = gtvs'}) thing_inside
412 \end{code}
413
414
415 \begin{code}
416 tcExtendLocalValEnv :: [TcId] -> TcM a -> TcM a
417 tcExtendLocalValEnv ids thing_inside
418   = tcGetEnv            `thenNF_Tc` \ env ->
419     let
420         extra_global_tyvars = tyVarsOfTypes [idType id | id <- ids]
421         extra_env           = [(idName id, ATcId id) | id <- ids]
422         le'                 = extendNameEnvList (tcLEnv env) extra_env
423     in
424     tc_extend_gtvs (tcTyVars env) extra_global_tyvars   `thenNF_Tc` \ gtvs' ->
425     tcSetEnv (env {tcLEnv = le', tcTyVars = gtvs'}) thing_inside
426
427 tcExtendLocalValEnv2 :: [(Name,TcId)] -> TcM a -> TcM a
428 tcExtendLocalValEnv2 names_w_ids thing_inside
429   = tcGetEnv            `thenNF_Tc` \ env ->
430     let
431         extra_global_tyvars = tyVarsOfTypes [idType id | (name,id) <- names_w_ids]
432         extra_env           = [(name, ATcId id) | (name,id) <- names_w_ids]
433         le'                 = extendNameEnvList (tcLEnv env) extra_env
434     in
435     tc_extend_gtvs (tcTyVars env) extra_global_tyvars   `thenNF_Tc` \ gtvs' ->
436     tcSetEnv (env {tcLEnv = le', tcTyVars = gtvs'}) thing_inside
437 \end{code}
438
439
440 %************************************************************************
441 %*                                                                      *
442 \subsection{The global tyvars}
443 %*                                                                      *
444 %************************************************************************
445
446 \begin{code}
447 tc_extend_gtvs gtvs extra_global_tvs
448   = tcReadMutVar gtvs                   `thenNF_Tc` \ global_tvs ->
449     tcNewMutVar (global_tvs `unionVarSet` extra_global_tvs)
450 \end{code}
451
452 @tcGetGlobalTyVars@ returns a fully-zonked set of tyvars free in the environment.
453 To improve subsequent calls to the same function it writes the zonked set back into
454 the environment.
455
456 \begin{code}
457 tcGetGlobalTyVars :: NF_TcM TcTyVarSet
458 tcGetGlobalTyVars
459   = tcGetEnv                                    `thenNF_Tc` \ (TcEnv {tcTyVars = gtv_var}) ->
460     tcReadMutVar gtv_var                        `thenNF_Tc` \ gbl_tvs ->
461     zonkTcTyVarsAndFV (varSetElems gbl_tvs)     `thenNF_Tc` \ gbl_tvs' ->
462     tcWriteMutVar gtv_var gbl_tvs'              `thenNF_Tc_` 
463     returnNF_Tc gbl_tvs'
464 \end{code}
465
466
467 %************************************************************************
468 %*                                                                      *
469 \subsection{The instance environment}
470 %*                                                                      *
471 %************************************************************************
472
473 \begin{code}
474 tcGetInstEnv :: NF_TcM InstEnv
475 tcGetInstEnv = tcGetEnv         `thenNF_Tc` \ env -> 
476                returnNF_Tc (tcInsts env)
477
478 tcSetInstEnv :: InstEnv -> TcM a -> TcM a
479 tcSetInstEnv ie thing_inside
480   = tcGetEnv    `thenNF_Tc` \ env ->
481     tcSetEnv (env {tcInsts = ie}) thing_inside
482 \end{code}    
483
484
485 %************************************************************************
486 %*                                                                      *
487 \subsection{The InstInfo type}
488 %*                                                                      *
489 %************************************************************************
490
491 The InstInfo type summarises the information in an instance declaration
492
493     instance c => k (t tvs) where b
494
495 It is used just for *local* instance decls (not ones from interface files).
496 But local instance decls includes
497         - derived ones
498         - generic ones
499 as well as explicit user written ones.
500
501 \begin{code}
502 data InstInfo
503   = InstInfo {
504       iDFunId :: DFunId,                -- The dfun id
505       iBinds  :: RenamedMonoBinds,      -- Bindings, b
506       iPrags  :: [RenamedSig]           -- User pragmas recorded for generating specialised instances
507     }
508
509   | NewTypeDerived {            -- Used for deriving instances of newtypes, where the
510                                 -- witness dictionary is identical to the argument dictionary
511                                 -- Hence no bindings.
512       iDFunId :: DFunId                 -- The dfun id
513     }
514
515 pprInstInfo info = vcat [ptext SLIT("InstInfo:") <+> ppr (idType (iDFunId info))]
516
517 simpleInstInfoTy :: InstInfo -> Type
518 simpleInstInfoTy info = case tcSplitDFunTy (idType (iDFunId info)) of
519                           (_, _, _, [ty]) -> ty
520
521 simpleInstInfoTyCon :: InstInfo -> TyCon
522   -- Gets the type constructor for a simple instance declaration,
523   -- i.e. one of the form       instance (...) => C (T a b c) where ...
524 simpleInstInfoTyCon inst = tcTyConAppTyCon (simpleInstInfoTy inst)
525 \end{code}
526
527
528 %************************************************************************
529 %*                                                                      *
530 \subsection{Errors}
531 %*                                                                      *
532 %************************************************************************
533
534 \begin{code}
535 badCon con_id = quotes (ppr con_id) <+> ptext SLIT("is not a data constructor")
536
537 notFound wheRe name = failWithTc (text wheRe <> colon <+> quotes (ppr name) <+> 
538                                   ptext SLIT("is not in scope"))
539 \end{code}