0b4df3336eacd9df55d4f1639c730bc245127650
[ghc-hetmet.git] / compiler / iface / TcIface.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[TcIfaceSig]{Type checking of type signatures in interface files}
5
6 \begin{code}
7 module TcIface ( 
8         tcImportDecl, checkWiredInTyCon, tcHiBootIface, typecheckIface, 
9         tcIfaceDecl, tcIfaceInst, tcIfaceRule, tcIfaceGlobal, 
10         tcExtCoreBindings
11  ) where
12
13 #include "HsVersions.h"
14
15 import IfaceSyn
16 import LoadIface        ( loadInterface, loadWiredInHomeIface,
17                           loadDecls, findAndReadIface )
18 import IfaceEnv         ( lookupIfaceTop, lookupIfaceExt, newGlobalBinder, 
19                           extendIfaceIdEnv, extendIfaceTyVarEnv, newIPName,
20                           tcIfaceTyVar, tcIfaceLclId, lookupIfaceTc, refineIfaceIdEnv,
21                           newIfaceName, newIfaceNames, ifaceExportNames )
22 import BuildTyCl        ( buildSynTyCon, buildAlgTyCon, buildDataCon, buildClass,
23                           mkAbstractTyConRhs, mkDataTyConRhs, mkNewTyConRhs )
24 import TcRnMonad
25 import Type             ( liftedTypeKind, splitTyConApp, mkTyConApp,
26                           mkTyVarTys, ThetaType )
27 import TypeRep          ( Type(..), PredType(..) )
28 import TyCon            ( TyCon, tyConName )
29 import HscTypes         ( ExternalPackageState(..), 
30                           TyThing(..), tyThingClass, tyThingTyCon, 
31                           ModIface(..), ModDetails(..), HomeModInfo(..),
32                           emptyModDetails, lookupTypeEnv, lookupType, typeEnvIds )
33 import InstEnv          ( Instance(..), mkImportedInstance )
34 import Unify            ( coreRefineTys )
35 import CoreSyn
36 import CoreUtils        ( exprType )
37 import CoreUnfold
38 import CoreLint         ( lintUnfolding )
39 import WorkWrap         ( mkWrapper )
40 import Id               ( Id, mkVanillaGlobal, mkLocalId )
41 import MkId             ( mkFCallId )
42 import IdInfo           ( IdInfo, CafInfo(..), WorkerInfo(..), 
43                           setUnfoldingInfoLazily, setAllStrictnessInfo, setWorkerInfo,
44                           setArityInfo, setInlinePragInfo, setCafInfo, 
45                           vanillaIdInfo, newStrictnessInfo )
46 import Class            ( Class )
47 import TyCon            ( tyConDataCons, isTupleTyCon, mkForeignTyCon )
48 import DataCon          ( DataCon, dataConWorkId, dataConTyVars, dataConInstArgTys, isVanillaDataCon )
49 import TysWiredIn       ( tupleCon, tupleTyCon, listTyCon, intTyCon, boolTyCon, charTyCon, parrTyCon )
50 import Var              ( TyVar, mkTyVar, tyVarKind )
51 import Name             ( Name, nameModule, nameIsLocalOrFrom, isWiredInName,
52                           wiredInNameTyThing_maybe, nameParent )
53 import NameEnv
54 import OccName          ( OccName, mkVarOccFS, mkTyVarOcc )
55 import FastString       ( FastString )
56 import Module           ( Module, lookupModuleEnv )
57 import UniqSupply       ( initUs_ )
58 import Outputable       
59 import ErrUtils         ( Message )
60 import Maybes           ( MaybeErr(..) )
61 import SrcLoc           ( noSrcLoc )
62 import Util             ( zipWithEqual, equalLength, splitAtList )
63 import DynFlags         ( DynFlag(..), isOneShot )
64 \end{code}
65
66 This module takes
67
68         IfaceDecl -> TyThing
69         IfaceType -> Type
70         etc
71
72 An IfaceDecl is populated with RdrNames, and these are not renamed to
73 Names before typechecking, because there should be no scope errors etc.
74
75         -- For (b) consider: f = $(...h....)
76         -- where h is imported, and calls f via an hi-boot file.  
77         -- This is bad!  But it is not seen as a staging error, because h
78         -- is indeed imported.  We don't want the type-checker to black-hole 
79         -- when simplifying and compiling the splice!
80         --
81         -- Simple solution: discard any unfolding that mentions a variable
82         -- bound in this module (and hence not yet processed).
83         -- The discarding happens when forkM finds a type error.
84
85 %************************************************************************
86 %*                                                                      *
87 %*      tcImportDecl is the key function for "faulting in"              *
88 %*      imported things
89 %*                                                                      *
90 %************************************************************************
91
92 The main idea is this.  We are chugging along type-checking source code, and
93 find a reference to GHC.Base.map.  We call tcLookupGlobal, which doesn't find
94 it in the EPS type envt.  So it 
95         1 loads GHC.Base.hi
96         2 gets the decl for GHC.Base.map
97         3 typechecks it via tcIfaceDecl
98         4 and adds it to the type env in the EPS
99
100 Note that DURING STEP 4, we may find that map's type mentions a type 
101 constructor that also 
102
103 Notice that for imported things we read the current version from the EPS
104 mutable variable.  This is important in situations like
105         ...$(e1)...$(e2)...
106 where the code that e1 expands to might import some defns that 
107 also turn out to be needed by the code that e2 expands to.
108
109 \begin{code}
110 tcImportDecl :: Name -> TcM TyThing
111 -- Entry point for *source-code* uses of importDecl
112 tcImportDecl name 
113   | Just thing <- wiredInNameTyThing_maybe name
114   = do  { initIfaceTcRn (loadWiredInHomeIface name) 
115         ; return thing }
116   | otherwise
117   = do  { traceIf (text "tcImportDecl" <+> ppr name)
118         ; mb_thing <- initIfaceTcRn (importDecl name)
119         ; case mb_thing of
120             Succeeded thing -> return thing
121             Failed err      -> failWithTc err }
122
123 checkWiredInTyCon :: TyCon -> TcM ()
124 -- Ensure that the home module of the TyCon (and hence its instances)
125 -- are loaded. It might not be a wired-in tycon (see the calls in TcUnify),
126 -- in which case this is a no-op.
127 checkWiredInTyCon tc    
128   | not (isWiredInName tc_name) 
129   = return ()
130   | otherwise
131   = do  { mod <- getModule
132         ; if nameIsLocalOrFrom mod tc_name then
133                 -- Don't look for (non-existent) Float.hi when
134                 -- compiling Float.lhs, which mentions Float of course
135                 return ()
136           else  -- A bit yukky to call initIfaceTcRn here
137                 initIfaceTcRn (loadWiredInHomeIface tc_name) 
138         }
139   where
140     tc_name = tyConName tc
141
142 importDecl :: Name -> IfM lcl (MaybeErr Message TyThing)
143 -- Get the TyThing for this Name from an interface file
144 -- It's not a wired-in thing -- the caller caught that
145 importDecl name
146   = ASSERT( not (isWiredInName name) )
147     do  { traceIf nd_doc
148
149         -- Load the interface, which should populate the PTE
150         ; mb_iface <- loadInterface nd_doc (nameModule name) ImportBySystem
151         ; case mb_iface of {
152                 Failed err_msg  -> return (Failed err_msg) ;
153                 Succeeded iface -> do
154
155         -- Now look it up again; this time we should find it
156         { eps <- getEps 
157         ; case lookupTypeEnv (eps_PTE eps) name of
158             Just thing -> return (Succeeded thing)
159             Nothing    -> return (Failed not_found_msg)
160     }}}
161   where
162     nd_doc = ptext SLIT("Need decl for") <+> ppr name
163     not_found_msg = hang (ptext SLIT("Can't find interface-file declaration for") <+> ppr (nameParent name))
164                        2 (vcat [ptext SLIT("Probable cause: bug in .hi-boot file, or inconsistent .hi file"),
165                                 ptext SLIT("Use -ddump-if-trace to get an idea of which file caused the error")])
166 \end{code}
167
168 %************************************************************************
169 %*                                                                      *
170                 Type-checking a complete interface
171 %*                                                                      *
172 %************************************************************************
173
174 Suppose we discover we don't need to recompile.  Then we must type
175 check the old interface file.  This is a bit different to the
176 incremental type checking we do as we suck in interface files.  Instead
177 we do things similarly as when we are typechecking source decls: we
178 bring into scope the type envt for the interface all at once, using a
179 knot.  Remember, the decls aren't necessarily in dependency order --
180 and even if they were, the type decls might be mutually recursive.
181
182 \begin{code}
183 typecheckIface :: ModIface      -- Get the decls from here
184                -> TcRnIf gbl lcl ModDetails
185 typecheckIface iface
186   = initIfaceTc iface $ \ tc_env_var -> do
187         -- The tc_env_var is freshly allocated, private to 
188         -- type-checking this particular interface
189         {       -- Get the right set of decls and rules.  If we are compiling without -O
190                 -- we discard pragmas before typechecking, so that we don't "see"
191                 -- information that we shouldn't.  From a versioning point of view
192                 -- It's not actually *wrong* to do so, but in fact GHCi is unable 
193                 -- to handle unboxed tuples, so it must not see unfoldings.
194           ignore_prags <- doptM Opt_IgnoreInterfacePragmas
195
196                 -- Load & typecheck the decls
197         ; decl_things <- loadDecls ignore_prags (mi_decls iface)
198
199         ; let type_env = mkNameEnv decl_things
200         ; writeMutVar tc_env_var type_env
201
202                 -- Now do those rules and instances
203         ; let { rules | ignore_prags = []
204                       | otherwise    = mi_rules iface
205               ; dfuns = mi_insts iface
206               } 
207         ; dfuns <- mapM tcIfaceInst dfuns
208         ; rules <- mapM tcIfaceRule rules
209
210                 -- Exports
211         ; exports <-  ifaceExportNames (mi_exports iface)
212
213                 -- Finished
214         ; return (ModDetails {  md_types = type_env, 
215                                 md_insts = dfuns,
216                                 md_rules = rules,
217                                 md_exports = exports }) 
218     }
219 \end{code}
220
221
222 %************************************************************************
223 %*                                                                      *
224                 Type and class declarations
225 %*                                                                      *
226 %************************************************************************
227
228 \begin{code}
229 tcHiBootIface :: Module -> TcRn ModDetails
230 -- Load the hi-boot iface for the module being compiled,
231 -- if it indeed exists in the transitive closure of imports
232 -- Return the ModDetails, empty if no hi-boot iface
233 tcHiBootIface mod
234   = do  { traceIf (text "loadHiBootInterface" <+> ppr mod)
235
236         ; mode <- getGhcMode
237         ; if not (isOneShot mode)
238                 -- In --make and interactive mode, if this module has an hs-boot file
239                 -- we'll have compiled it already, and it'll be in the HPT
240                 -- 
241                 -- We check wheher the interface is a *boot* interface.
242                 -- It can happen (when using GHC from Visual Studio) that we
243                 -- compile a module in TypecheckOnly mode, with a stable, 
244                 -- fully-populated HPT.  In that case the boot interface isn't there
245                 -- (it's been replaced by the mother module) so we can't check it.
246                 -- And that's fine, because if M's ModInfo is in the HPT, then 
247                 -- it's been compiled once, and we don't need to check the boot iface
248           then do { hpt <- getHpt
249                   ; case lookupModuleEnv hpt mod of
250                       Just info | mi_boot (hm_iface info) 
251                                 -> return (hm_details info)
252                       other -> return emptyModDetails }
253           else do
254
255         -- OK, so we're in one-shot mode.  
256         -- In that case, we're read all the direct imports by now, 
257         -- so eps_is_boot will record if any of our imports mention us by 
258         -- way of hi-boot file
259         { eps <- getEps
260         ; case lookupModuleEnv (eps_is_boot eps) mod of {
261             Nothing -> return emptyModDetails ; -- The typical case
262
263             Just (_, False) -> failWithTc moduleLoop ;
264                 -- Someone below us imported us!
265                 -- This is a loop with no hi-boot in the way
266                 
267             Just (mod, True) ->         -- There's a hi-boot interface below us
268                 
269     do  { read_result <- findAndReadIface 
270                                 True    -- Explicit import? 
271                                 need mod
272                                 True    -- Hi-boot file
273
274         ; case read_result of
275                 Failed err               -> failWithTc (elaborate err)
276                 Succeeded (iface, _path) -> typecheckIface iface
277     }}}}
278   where
279     need = ptext SLIT("Need the hi-boot interface for") <+> ppr mod
280                  <+> ptext SLIT("to compare against the Real Thing")
281
282     moduleLoop = ptext SLIT("Circular imports: module") <+> quotes (ppr mod) 
283                      <+> ptext SLIT("depends on itself")
284
285     elaborate err = hang (ptext SLIT("Could not find hi-boot interface for") <+> 
286                           quotes (ppr mod) <> colon) 4 err
287 \end{code}
288
289
290 %************************************************************************
291 %*                                                                      *
292                 Type and class declarations
293 %*                                                                      *
294 %************************************************************************
295
296 When typechecking a data type decl, we *lazily* (via forkM) typecheck
297 the constructor argument types.  This is in the hope that we may never
298 poke on those argument types, and hence may never need to load the
299 interface files for types mentioned in the arg types.
300
301 E.g.    
302         data Foo.S = MkS Baz.T
303 Mabye we can get away without even loading the interface for Baz!
304
305 This is not just a performance thing.  Suppose we have
306         data Foo.S = MkS Baz.T
307         data Baz.T = MkT Foo.S
308 (in different interface files, of course).
309 Now, first we load and typecheck Foo.S, and add it to the type envt.  
310 If we do explore MkS's argument, we'll load and typecheck Baz.T.
311 If we explore MkT's argument we'll find Foo.S already in the envt.  
312
313 If we typechecked constructor args eagerly, when loading Foo.S we'd try to
314 typecheck the type Baz.T.  So we'd fault in Baz.T... and then need Foo.S...
315 which isn't done yet.
316
317 All very cunning. However, there is a rather subtle gotcha which bit
318 me when developing this stuff.  When we typecheck the decl for S, we
319 extend the type envt with S, MkS, and all its implicit Ids.  Suppose
320 (a bug, but it happened) that the list of implicit Ids depended in
321 turn on the constructor arg types.  Then the following sequence of
322 events takes place:
323         * we build a thunk <t> for the constructor arg tys
324         * we build a thunk for the extended type environment (depends on <t>)
325         * we write the extended type envt into the global EPS mutvar
326         
327 Now we look something up in the type envt
328         * that pulls on <t>
329         * which reads the global type envt out of the global EPS mutvar
330         * but that depends in turn on <t>
331
332 It's subtle, because, it'd work fine if we typechecked the constructor args 
333 eagerly -- they don't need the extended type envt.  They just get the extended
334 type envt by accident, because they look at it later.
335
336 What this means is that the implicitTyThings MUST NOT DEPEND on any of
337 the forkM stuff.
338
339
340 \begin{code}
341 tcIfaceDecl :: IfaceDecl -> IfL TyThing
342
343 tcIfaceDecl (IfaceId {ifName = occ_name, ifType = iface_type, ifIdInfo = info})
344   = do  { name <- lookupIfaceTop occ_name
345         ; ty <- tcIfaceType iface_type
346         ; info <- tcIdInfo name ty info
347         ; return (AnId (mkVanillaGlobal name ty info)) }
348
349 tcIfaceDecl (IfaceData {ifName = occ_name, 
350                         ifTyVars = tv_bndrs, 
351                         ifCtxt = ctxt,
352                         ifCons = rdr_cons, 
353                         ifVrcs = arg_vrcs, ifRec = is_rec, 
354                         ifGeneric = want_generic })
355   = do  { tc_name <- lookupIfaceTop occ_name
356         ; bindIfaceTyVars tv_bndrs $ \ tyvars -> do
357
358         { tycon <- fixM ( \ tycon -> do
359             { stupid_theta <- tcIfaceCtxt ctxt
360             ; cons  <- tcIfaceDataCons tycon tyvars rdr_cons
361             ; buildAlgTyCon tc_name tyvars stupid_theta
362                             cons arg_vrcs is_rec want_generic
363             })
364         ; traceIf (text "tcIfaceDecl4" <+> ppr tycon)
365         ; return (ATyCon tycon)
366     }}
367
368 tcIfaceDecl (IfaceSyn {ifName = occ_name, ifTyVars = tv_bndrs, 
369                        ifSynRhs = rdr_rhs_ty, ifVrcs = arg_vrcs})
370    = bindIfaceTyVars tv_bndrs $ \ tyvars -> do
371      { tc_name <- lookupIfaceTop occ_name
372      ; rhs_ty <- tcIfaceType rdr_rhs_ty
373      ; return (ATyCon (buildSynTyCon tc_name tyvars rhs_ty arg_vrcs))
374      }
375
376 tcIfaceDecl (IfaceClass {ifCtxt = rdr_ctxt, ifName = occ_name, ifTyVars = tv_bndrs, 
377                          ifFDs = rdr_fds, ifSigs = rdr_sigs, 
378                          ifVrcs = tc_vrcs, ifRec = tc_isrec })
379   = bindIfaceTyVars tv_bndrs $ \ tyvars -> do
380     { cls_name <- lookupIfaceTop occ_name
381     ; ctxt <- tcIfaceCtxt rdr_ctxt
382     ; sigs <- mappM tc_sig rdr_sigs
383     ; fds  <- mappM tc_fd rdr_fds
384     ; cls  <- buildClass cls_name tyvars ctxt fds sigs tc_isrec tc_vrcs
385     ; return (AClass cls) }
386   where
387    tc_sig (IfaceClassOp occ dm rdr_ty)
388      = do { op_name <- lookupIfaceTop occ
389           ; op_ty   <- forkM (mk_doc op_name rdr_ty) (tcIfaceType rdr_ty)
390                 -- Must be done lazily for just the same reason as the 
391                 -- context of a data decl: the type sig might mention the
392                 -- class being defined
393           ; return (op_name, dm, op_ty) }
394
395    mk_doc op_name op_ty = ptext SLIT("Class op") <+> sep [ppr op_name, ppr op_ty]
396
397    tc_fd (tvs1, tvs2) = do { tvs1' <- mappM tcIfaceTyVar tvs1
398                            ; tvs2' <- mappM tcIfaceTyVar tvs2
399                            ; return (tvs1', tvs2') }
400
401 tcIfaceDecl (IfaceForeign {ifName = rdr_name, ifExtName = ext_name})
402   = do  { name <- lookupIfaceTop rdr_name
403         ; return (ATyCon (mkForeignTyCon name ext_name 
404                                          liftedTypeKind 0 [])) }
405
406 tcIfaceDataCons tycon tc_tyvars if_cons
407   = case if_cons of
408         IfAbstractTyCon  -> return mkAbstractTyConRhs
409         IfDataTyCon cons -> do  { data_cons <- mappM tc_con_decl cons
410                                 ; return (mkDataTyConRhs data_cons) }
411         IfNewTyCon con   -> do  { data_con <- tc_con_decl con
412                                 ; return (mkNewTyConRhs tycon data_con) }
413   where
414     tc_con_decl (IfVanillaCon { ifConOcc = occ, ifConInfix = is_infix, ifConArgTys = args, 
415                                 ifConStricts = stricts, ifConFields = field_lbls})
416       = do { name  <- lookupIfaceTop occ
417                 -- Read the argument types, but lazily to avoid faulting in
418                 -- the component types unless they are really needed
419            ; arg_tys <- forkM (mk_doc name) (mappM tcIfaceType args)
420            ; lbl_names <- mappM lookupIfaceTop field_lbls
421            ; buildDataCon name is_infix True {- Vanilla -} 
422                           stricts lbl_names
423                           tc_tyvars [] arg_tys tycon
424                           (mkTyVarTys tc_tyvars)        -- Vanilla => we know result tys
425            }  
426
427     tc_con_decl (IfGadtCon {    ifConTyVars = con_tvs,
428                                 ifConOcc = occ, ifConCtxt = ctxt, 
429                                 ifConArgTys = args, ifConResTys = ress, 
430                                 ifConStricts = stricts})
431       = bindIfaceTyVars con_tvs $ \ con_tyvars -> do
432         { name  <- lookupIfaceTop occ
433         ; theta <- tcIfaceCtxt ctxt     -- Laziness seems not worth the bother here
434                 -- At one stage I thought that this context checking *had*
435                 -- to be lazy, because of possible mutual recursion between the
436                 -- type and the classe: 
437                 -- E.g. 
438                 --      class Real a where { toRat :: a -> Ratio Integer }
439                 --      data (Real a) => Ratio a = ...
440                 -- But now I think that the laziness in checking class ops breaks 
441                 -- the loop, so no laziness needed
442
443         -- Read the argument types, but lazily to avoid faulting in
444         -- the component types unless they are really needed
445         ; arg_tys <- forkM (mk_doc name) (mappM tcIfaceType args)
446         ; res_tys <- forkM (mk_doc name) (mappM tcIfaceType ress)
447
448         ; buildDataCon name False {- Not infix -} False {- Not vanilla -}
449                        stricts [{- No fields -}]
450                        con_tyvars theta 
451                        arg_tys tycon res_tys
452         }
453     mk_doc con_name = ptext SLIT("Constructor") <+> ppr con_name
454 \end{code}      
455
456
457 %************************************************************************
458 %*                                                                      *
459                 Instances
460 %*                                                                      *
461 %************************************************************************
462
463 \begin{code}
464 tcIfaceInst :: IfaceInst -> IfL Instance
465 tcIfaceInst (IfaceInst { ifDFun = dfun_occ, ifOFlag = oflag,
466                          ifInstCls = cls, ifInstTys = mb_tcs,
467                          ifInstOrph = orph })
468   = do  { dfun    <- forkM (ptext SLIT("Dict fun") <+> ppr dfun_occ) $
469                      tcIfaceExtId (LocalTop dfun_occ)
470         ; cls'    <- lookupIfaceExt cls
471         ; mb_tcs' <- mapM do_tc mb_tcs
472         ; return (mkImportedInstance cls' mb_tcs' orph dfun oflag) }
473   where
474     do_tc Nothing   = return Nothing
475     do_tc (Just tc) = do { tc' <- lookupIfaceTc tc; return (Just tc') }
476 \end{code}
477
478
479 %************************************************************************
480 %*                                                                      *
481                 Rules
482 %*                                                                      *
483 %************************************************************************
484
485 We move a IfaceRule from eps_rules to eps_rule_base when all its LHS free vars
486 are in the type environment.  However, remember that typechecking a Rule may 
487 (as a side effect) augment the type envt, and so we may need to iterate the process.
488
489 \begin{code}
490 tcIfaceRule :: IfaceRule -> IfL CoreRule
491 tcIfaceRule (IfaceRule {ifRuleName = name, ifActivation = act, ifRuleBndrs = bndrs,
492                         ifRuleHead = fn, ifRuleArgs = args, ifRuleRhs = rhs,
493                         ifRuleOrph = orph })
494   = do  { fn' <- lookupIfaceExt fn
495         ; ~(bndrs', args', rhs') <- 
496                 -- Typecheck the payload lazily, in the hope it'll never be looked at
497                 forkM (ptext SLIT("Rule") <+> ftext name) $
498                 bindIfaceBndrs bndrs                      $ \ bndrs' ->
499                 do { args' <- mappM tcIfaceExpr args
500                    ; rhs'  <- tcIfaceExpr rhs
501                    ; return (bndrs', args', rhs') }
502         ; mb_tcs <- mapM ifTopFreeName args
503         ; returnM (Rule { ru_name = name, ru_fn = fn', ru_act = act, 
504                           ru_bndrs = bndrs', ru_args = args', 
505                           ru_rhs = rhs', ru_orph = orph,
506                           ru_rough = mb_tcs,
507                           ru_local = isLocalIfaceExtName fn }) }
508   where
509         -- This function *must* mirror exactly what Rules.topFreeName does
510         -- We could have stored the ru_rough field in the iface file
511         -- but that would be redundant, I think.
512         -- The only wrinkle is that we must not be deceived by
513         -- type syononyms at the top of a type arg.  Since
514         -- we can't tell at this point, we are careful not
515         -- to write them out in coreRuleToIfaceRule
516     ifTopFreeName :: IfaceExpr -> IfL (Maybe Name)
517     ifTopFreeName (IfaceType (IfaceTyConApp tc _ ))
518         = do { n <- lookupIfaceTc tc
519              ; return (Just n) }
520     ifTopFreeName (IfaceApp f a) = ifTopFreeName f
521     ifTopFreeName (IfaceExt ext) = do { n <- lookupIfaceExt ext
522                                       ; return (Just n) }
523     ifTopFreeName other = return Nothing
524 \end{code}
525
526
527 %************************************************************************
528 %*                                                                      *
529                         Types
530 %*                                                                      *
531 %************************************************************************
532
533 \begin{code}
534 tcIfaceType :: IfaceType -> IfL Type
535 tcIfaceType (IfaceTyVar n)        = do { tv <- tcIfaceTyVar n; return (TyVarTy tv) }
536 tcIfaceType (IfaceAppTy t1 t2)    = do { t1' <- tcIfaceType t1; t2' <- tcIfaceType t2; return (AppTy t1' t2') }
537 tcIfaceType (IfaceFunTy t1 t2)    = do { t1' <- tcIfaceType t1; t2' <- tcIfaceType t2; return (FunTy t1' t2') }
538 tcIfaceType (IfaceTyConApp tc ts) = do { tc' <- tcIfaceTyCon tc; ts' <- tcIfaceTypes ts; return (mkTyConApp tc' ts') }
539 tcIfaceType (IfaceForAllTy tv t)  = bindIfaceTyVar tv $ \ tv' -> do { t' <- tcIfaceType t; return (ForAllTy tv' t') }
540 tcIfaceType (IfacePredTy st)      = do { st' <- tcIfacePredType st; return (PredTy st') }
541
542 tcIfaceTypes tys = mapM tcIfaceType tys
543
544 -----------------------------------------
545 tcIfacePredType :: IfacePredType -> IfL PredType
546 tcIfacePredType (IfaceClassP cls ts) = do { cls' <- tcIfaceClass cls; ts' <- tcIfaceTypes ts; return (ClassP cls' ts') }
547 tcIfacePredType (IfaceIParam ip t)   = do { ip' <- newIPName ip; t' <- tcIfaceType t; return (IParam ip' t') }
548
549 -----------------------------------------
550 tcIfaceCtxt :: IfaceContext -> IfL ThetaType
551 tcIfaceCtxt sts = mappM tcIfacePredType sts
552 \end{code}
553
554
555 %************************************************************************
556 %*                                                                      *
557                         Core
558 %*                                                                      *
559 %************************************************************************
560
561 \begin{code}
562 tcIfaceExpr :: IfaceExpr -> IfL CoreExpr
563 tcIfaceExpr (IfaceType ty)
564   = tcIfaceType ty              `thenM` \ ty' ->
565     returnM (Type ty')
566
567 tcIfaceExpr (IfaceLcl name)
568   = tcIfaceLclId name   `thenM` \ id ->
569     returnM (Var id)
570
571 tcIfaceExpr (IfaceExt gbl)
572   = tcIfaceExtId gbl    `thenM` \ id ->
573     returnM (Var id)
574
575 tcIfaceExpr (IfaceLit lit)
576   = returnM (Lit lit)
577
578 tcIfaceExpr (IfaceFCall cc ty)
579   = tcIfaceType ty      `thenM` \ ty' ->
580     newUnique           `thenM` \ u ->
581     returnM (Var (mkFCallId u cc ty'))
582
583 tcIfaceExpr (IfaceTuple boxity args) 
584   = mappM tcIfaceExpr args      `thenM` \ args' ->
585     let
586         -- Put the missing type arguments back in
587         con_args = map (Type . exprType) args' ++ args'
588     in
589     returnM (mkApps (Var con_id) con_args)
590   where
591     arity = length args
592     con_id = dataConWorkId (tupleCon boxity arity)
593     
594
595 tcIfaceExpr (IfaceLam bndr body)
596   = bindIfaceBndr bndr          $ \ bndr' ->
597     tcIfaceExpr body            `thenM` \ body' ->
598     returnM (Lam bndr' body')
599
600 tcIfaceExpr (IfaceApp fun arg)
601   = tcIfaceExpr fun             `thenM` \ fun' ->
602     tcIfaceExpr arg             `thenM` \ arg' ->
603     returnM (App fun' arg')
604
605 tcIfaceExpr (IfaceCase scrut case_bndr ty alts) 
606   = tcIfaceExpr scrut           `thenM` \ scrut' ->
607     newIfaceName (mkVarOccFS case_bndr) `thenM` \ case_bndr_name ->
608     let
609         scrut_ty   = exprType scrut'
610         case_bndr' = mkLocalId case_bndr_name scrut_ty
611         tc_app     = splitTyConApp scrut_ty
612                 -- NB: Won't always succeed (polymoprhic case)
613                 --     but won't be demanded in those cases
614                 -- NB: not tcSplitTyConApp; we are looking at Core here
615                 --     look through non-rec newtypes to find the tycon that
616                 --     corresponds to the datacon in this case alternative
617     in
618     extendIfaceIdEnv [case_bndr']       $
619     mappM (tcIfaceAlt tc_app) alts      `thenM` \ alts' ->
620     tcIfaceType ty              `thenM` \ ty' ->
621     returnM (Case scrut' case_bndr' ty' alts')
622
623 tcIfaceExpr (IfaceLet (IfaceNonRec bndr rhs) body)
624   = tcIfaceExpr rhs             `thenM` \ rhs' ->
625     bindIfaceId bndr            $ \ bndr' ->
626     tcIfaceExpr body            `thenM` \ body' ->
627     returnM (Let (NonRec bndr' rhs') body')
628
629 tcIfaceExpr (IfaceLet (IfaceRec pairs) body)
630   = bindIfaceIds bndrs          $ \ bndrs' ->
631     mappM tcIfaceExpr rhss      `thenM` \ rhss' ->
632     tcIfaceExpr body            `thenM` \ body' ->
633     returnM (Let (Rec (bndrs' `zip` rhss')) body')
634   where
635     (bndrs, rhss) = unzip pairs
636
637 tcIfaceExpr (IfaceNote note expr) 
638   = tcIfaceExpr expr            `thenM` \ expr' ->
639     case note of
640         IfaceCoerce to_ty -> tcIfaceType to_ty  `thenM` \ to_ty' ->
641                              returnM (Note (Coerce to_ty'
642                                                    (exprType expr')) expr')
643         IfaceInlineMe     -> returnM (Note InlineMe   expr')
644         IfaceSCC cc       -> returnM (Note (SCC cc)   expr')
645         IfaceCoreNote n   -> returnM (Note (CoreNote n) expr')
646
647 -------------------------
648 tcIfaceAlt _ (IfaceDefault, names, rhs)
649   = ASSERT( null names )
650     tcIfaceExpr rhs             `thenM` \ rhs' ->
651     returnM (DEFAULT, [], rhs')
652   
653 tcIfaceAlt _ (IfaceLitAlt lit, names, rhs)
654   = ASSERT( null names )
655     tcIfaceExpr rhs             `thenM` \ rhs' ->
656     returnM (LitAlt lit, [], rhs')
657
658 -- A case alternative is made quite a bit more complicated
659 -- by the fact that we omit type annotations because we can
660 -- work them out.  True enough, but its not that easy!
661 tcIfaceAlt (tycon, inst_tys) (IfaceDataAlt data_occ, arg_strs, rhs)
662   = do  { let tycon_mod = nameModule (tyConName tycon)
663         ; con <- tcIfaceDataCon (ExtPkg tycon_mod data_occ)
664         ; ASSERT2( con `elem` tyConDataCons tycon,
665                    ppr con $$ ppr tycon $$ ppr (tyConDataCons tycon) )
666                   
667           if isVanillaDataCon con then
668                 tcVanillaAlt con inst_tys arg_strs rhs
669           else
670     do  {       -- General case
671           let (tyvar_strs, id_strs) = splitAtList (dataConTyVars con) arg_strs
672         ; tyvar_names <- mapM (newIfaceName . mkTyVarOcc) tyvar_strs
673         ; id_names    <- mapM (newIfaceName . mkVarOccFS) id_strs
674         ; let   tyvars   = [ mkTyVar name (tyVarKind tv) 
675                            | (name,tv) <- tyvar_names `zip` dataConTyVars con ]
676                 arg_tys  = dataConInstArgTys con (mkTyVarTys tyvars)
677                 arg_ids  = ASSERT2( equalLength id_names arg_tys,
678                                     ppr (con, tyvar_names++id_names, rhs) $$ ppr tyvars $$ ppr arg_tys )
679                            zipWith mkLocalId id_names arg_tys
680
681                 Just refine = coreRefineTys con tyvars (mkTyConApp tycon inst_tys)
682                 
683         ; rhs' <- extendIfaceTyVarEnv tyvars    $
684                   extendIfaceIdEnv arg_ids      $
685                   refineIfaceIdEnv refine       $
686                         -- You might think that we don't need to refine the envt here,
687                         -- but we do: \(x::a) -> case y of 
688                         --                           MkT -> case x of { True -> ... }
689                         -- In the "case x" we need to know x's type, because we use that
690                         -- to find which module to look for "True" in. Sigh.
691                   tcIfaceExpr rhs
692         ; return (DataAlt con, tyvars ++ arg_ids, rhs') }}
693
694 tcIfaceAlt (tycon, inst_tys) (IfaceTupleAlt boxity, arg_occs, rhs)
695   = ASSERT( isTupleTyCon tycon )
696     do  { let [data_con] = tyConDataCons tycon
697         ; tcVanillaAlt data_con inst_tys arg_occs rhs }
698
699 tcVanillaAlt data_con inst_tys arg_strs rhs
700   = do  { arg_names <- newIfaceNames (map mkVarOccFS arg_strs)
701         ; let arg_tys = dataConInstArgTys data_con inst_tys
702         ; let arg_ids = ASSERT2( equalLength arg_names arg_tys,
703                                  ppr data_con <+> ppr inst_tys <+> ppr arg_strs $$ ppr rhs )
704                         zipWith mkLocalId arg_names arg_tys
705         ; rhs' <- extendIfaceIdEnv arg_ids (tcIfaceExpr rhs)
706         ; returnM (DataAlt data_con, arg_ids, rhs') }
707 \end{code}
708
709
710 \begin{code}
711 tcExtCoreBindings :: [IfaceBinding] -> IfL [CoreBind]   -- Used for external core
712 tcExtCoreBindings []     = return []
713 tcExtCoreBindings (b:bs) = do_one b (tcExtCoreBindings bs)
714
715 do_one :: IfaceBinding -> IfL [CoreBind] -> IfL [CoreBind]
716 do_one (IfaceNonRec bndr rhs) thing_inside
717   = do  { rhs' <- tcIfaceExpr rhs
718         ; bndr' <- newExtCoreBndr bndr
719         ; extendIfaceIdEnv [bndr'] $ do 
720         { core_binds <- thing_inside
721         ; return (NonRec bndr' rhs' : core_binds) }}
722
723 do_one (IfaceRec pairs) thing_inside
724   = do  { bndrs' <- mappM newExtCoreBndr bndrs
725         ; extendIfaceIdEnv bndrs' $ do
726         { rhss' <- mappM tcIfaceExpr rhss
727         ; core_binds <- thing_inside
728         ; return (Rec (bndrs' `zip` rhss') : core_binds) }}
729   where
730     (bndrs,rhss) = unzip pairs
731 \end{code}
732
733
734 %************************************************************************
735 %*                                                                      *
736                 IdInfo
737 %*                                                                      *
738 %************************************************************************
739
740 \begin{code}
741 tcIdInfo :: Name -> Type -> IfaceIdInfo -> IfL IdInfo
742 tcIdInfo name ty NoInfo         = return vanillaIdInfo
743 tcIdInfo name ty (HasInfo info) = foldlM tcPrag init_info info
744   where
745     -- Set the CgInfo to something sensible but uninformative before
746     -- we start; default assumption is that it has CAFs
747     init_info = vanillaIdInfo
748
749     tcPrag info HsNoCafRefs         = returnM (info `setCafInfo`   NoCafRefs)
750     tcPrag info (HsArity arity)     = returnM (info `setArityInfo` arity)
751     tcPrag info (HsStrictness str)  = returnM (info `setAllStrictnessInfo` Just str)
752
753         -- The next two are lazy, so they don't transitively suck stuff in
754     tcPrag info (HsWorker nm arity) = tcWorkerInfo ty info nm arity
755     tcPrag info (HsInline inline_prag) = returnM (info `setInlinePragInfo` inline_prag)
756     tcPrag info (HsUnfold expr)
757         = tcPragExpr name expr  `thenM` \ maybe_expr' ->
758           let
759                 -- maybe_expr' doesn't get looked at if the unfolding
760                 -- is never inspected; so the typecheck doesn't even happen
761                 unfold_info = case maybe_expr' of
762                                 Nothing    -> noUnfolding
763                                 Just expr' -> mkTopUnfolding expr' 
764           in
765           returnM (info `setUnfoldingInfoLazily` unfold_info)
766 \end{code}
767
768 \begin{code}
769 tcWorkerInfo ty info wkr arity
770   = do  { mb_wkr_id <- forkM_maybe doc (tcIfaceExtId wkr)
771
772         -- We return without testing maybe_wkr_id, but as soon as info is
773         -- looked at we will test it.  That's ok, because its outside the
774         -- knot; and there seems no big reason to further defer the
775         -- tcIfaceId lookup.  (Contrast with tcPragExpr, where postponing walking
776         -- over the unfolding until it's actually used does seem worth while.)
777         ; us <- newUniqueSupply
778
779         ; returnM (case mb_wkr_id of
780                      Nothing     -> info
781                      Just wkr_id -> add_wkr_info us wkr_id info) }
782   where
783     doc = text "Worker for" <+> ppr wkr
784     add_wkr_info us wkr_id info
785         = info `setUnfoldingInfoLazily`  mk_unfolding us wkr_id
786                `setWorkerInfo`           HasWorker wkr_id arity
787
788     mk_unfolding us wkr_id = mkTopUnfolding (initUs_ us (mkWrapper ty strict_sig) wkr_id)
789
790         -- We are relying here on strictness info always appearing 
791         -- before worker info,  fingers crossed ....
792     strict_sig = case newStrictnessInfo info of
793                    Just sig -> sig
794                    Nothing  -> pprPanic "Worker info but no strictness for" (ppr wkr)
795 \end{code}
796
797 For unfoldings we try to do the job lazily, so that we never type check
798 an unfolding that isn't going to be looked at.
799
800 \begin{code}
801 tcPragExpr :: Name -> IfaceExpr -> IfL (Maybe CoreExpr)
802 tcPragExpr name expr
803   = forkM_maybe doc $
804     tcIfaceExpr expr            `thenM` \ core_expr' ->
805
806                 -- Check for type consistency in the unfolding
807     ifOptM Opt_DoCoreLinting (
808         get_in_scope_ids                        `thenM` \ in_scope -> 
809         case lintUnfolding noSrcLoc in_scope core_expr' of
810           Nothing       -> returnM ()
811           Just fail_msg -> pprPanic "Iface Lint failure" (doc <+> fail_msg)
812     )                           `thenM_`
813
814    returnM core_expr'   
815   where
816     doc = text "Unfolding of" <+> ppr name
817     get_in_scope_ids    -- Urgh; but just for linting
818         = setLclEnv () $ 
819           do    { env <- getGblEnv 
820                 ; case if_rec_types env of {
821                           Nothing -> return [] ;
822                           Just (_, get_env) -> do
823                 { type_env <- get_env
824                 ; return (typeEnvIds type_env) }}}
825 \end{code}
826
827
828
829 %************************************************************************
830 %*                                                                      *
831                 Getting from Names to TyThings
832 %*                                                                      *
833 %************************************************************************
834
835 \begin{code}
836 tcIfaceGlobal :: Name -> IfL TyThing
837 tcIfaceGlobal name
838   | Just thing <- wiredInNameTyThing_maybe name
839         -- Wired-in things include TyCons, DataCons, and Ids
840   = do { loadWiredInHomeIface name; return thing }
841         -- Even though we are in an interface file, we want to make
842         -- sure its instances are loaded (imagine f :: Double -> Double)
843         -- and its RULES are loaded too
844   | otherwise
845   = do  { (eps,hpt) <- getEpsAndHpt
846         ; case lookupType hpt (eps_PTE eps) name of {
847             Just thing -> return thing ;
848             Nothing    -> do
849
850         { env <- getGblEnv
851         ; case if_rec_types env of {
852             Just (mod, get_type_env) 
853                 | nameIsLocalOrFrom mod name
854                 -> do           -- It's defined in the module being compiled
855                 { type_env <- setLclEnv () get_type_env         -- yuk
856                 ; case lookupNameEnv type_env name of
857                         Just thing -> return thing
858                         Nothing    -> pprPanic "tcIfaceGlobal (local): not found:"  
859                                                 (ppr name $$ ppr type_env) }
860
861           ; other -> do
862
863         { mb_thing <- importDecl name   -- It's imported; go get it
864         ; case mb_thing of
865             Failed err      -> failIfM err
866             Succeeded thing -> return thing
867     }}}}}
868
869 tcIfaceTyCon :: IfaceTyCon -> IfL TyCon
870 tcIfaceTyCon IfaceIntTc         = tcWiredInTyCon intTyCon
871 tcIfaceTyCon IfaceBoolTc        = tcWiredInTyCon boolTyCon
872 tcIfaceTyCon IfaceCharTc        = tcWiredInTyCon charTyCon
873 tcIfaceTyCon IfaceListTc        = tcWiredInTyCon listTyCon
874 tcIfaceTyCon IfacePArrTc        = tcWiredInTyCon parrTyCon
875 tcIfaceTyCon (IfaceTupTc bx ar) = tcWiredInTyCon (tupleTyCon bx ar)
876 tcIfaceTyCon (IfaceTc ext_nm)   = do { name <- lookupIfaceExt ext_nm
877                                      ; thing <- tcIfaceGlobal name 
878                                      ; return (check_tc (tyThingTyCon thing)) }
879   where
880 #ifdef DEBUG
881     check_tc tc = case toIfaceTyCon (error "urk") tc of
882                    IfaceTc _ -> tc
883                    other     -> pprTrace "check_tc" (ppr tc) tc
884 #else
885     check_tc tc = tc
886 #endif
887
888 -- Even though we are in an interface file, we want to make
889 -- sure the instances and RULES of this tycon are loaded 
890 -- Imagine: f :: Double -> Double
891 tcWiredInTyCon :: TyCon -> IfL TyCon
892 tcWiredInTyCon tc = do { loadWiredInHomeIface (tyConName tc)
893                        ; return tc }
894
895 tcIfaceClass :: IfaceExtName -> IfL Class
896 tcIfaceClass rdr_name = do { name <- lookupIfaceExt rdr_name
897                            ; thing <- tcIfaceGlobal name
898                            ; return (tyThingClass thing) }
899
900 tcIfaceDataCon :: IfaceExtName -> IfL DataCon
901 tcIfaceDataCon gbl = do { name <- lookupIfaceExt gbl
902                         ; thing <- tcIfaceGlobal name
903                         ; case thing of
904                                 ADataCon dc -> return dc
905                                 other   -> pprPanic "tcIfaceExtDC" (ppr gbl $$ ppr name$$ ppr thing) }
906
907 tcIfaceExtId :: IfaceExtName -> IfL Id
908 tcIfaceExtId gbl = do { name <- lookupIfaceExt gbl
909                       ; thing <- tcIfaceGlobal name
910                       ; case thing of
911                           AnId id -> return id
912                           other   -> pprPanic "tcIfaceExtId" (ppr gbl $$ ppr name$$ ppr thing) }
913 \end{code}
914
915 %************************************************************************
916 %*                                                                      *
917                 Bindings
918 %*                                                                      *
919 %************************************************************************
920
921 \begin{code}
922 bindIfaceBndr :: IfaceBndr -> (CoreBndr -> IfL a) -> IfL a
923 bindIfaceBndr (IfaceIdBndr bndr) thing_inside
924   = bindIfaceId bndr thing_inside
925 bindIfaceBndr (IfaceTvBndr bndr) thing_inside
926   = bindIfaceTyVar bndr thing_inside
927     
928 bindIfaceBndrs :: [IfaceBndr] -> ([CoreBndr] -> IfL a) -> IfL a
929 bindIfaceBndrs []     thing_inside = thing_inside []
930 bindIfaceBndrs (b:bs) thing_inside
931   = bindIfaceBndr b     $ \ b' ->
932     bindIfaceBndrs bs   $ \ bs' ->
933     thing_inside (b':bs')
934
935 -----------------------
936 bindIfaceId :: IfaceIdBndr -> (Id -> IfL a) -> IfL a
937 bindIfaceId (occ, ty) thing_inside
938   = do  { name <- newIfaceName (mkVarOccFS occ)
939         ; ty' <- tcIfaceType ty
940         ; let { id = mkLocalId name ty' }
941         ; extendIfaceIdEnv [id] (thing_inside id) }
942     
943 bindIfaceIds :: [IfaceIdBndr] -> ([Id] -> IfL a) -> IfL a
944 bindIfaceIds bndrs thing_inside
945   = do  { names <- newIfaceNames (map mkVarOccFS occs)
946         ; tys' <- mappM tcIfaceType tys
947         ; let { ids = zipWithEqual "tcCoreValBndr" mkLocalId names tys' }
948         ; extendIfaceIdEnv ids (thing_inside ids) }
949   where
950     (occs,tys) = unzip bndrs
951
952
953 -----------------------
954 newExtCoreBndr :: IfaceIdBndr -> IfL Id
955 newExtCoreBndr (var, ty)
956   = do  { mod <- getIfModule
957         ; name <- newGlobalBinder mod (mkVarOccFS var) Nothing noSrcLoc
958         ; ty' <- tcIfaceType ty
959         ; return (mkLocalId name ty') }
960
961 -----------------------
962 bindIfaceTyVar :: IfaceTvBndr -> (TyVar -> IfL a) -> IfL a
963 bindIfaceTyVar (occ,kind) thing_inside
964   = do  { name <- newIfaceName (mkTyVarOcc occ)
965         ; let tyvar = mk_iface_tyvar name kind
966         ; extendIfaceTyVarEnv [tyvar] (thing_inside tyvar) }
967
968 bindIfaceTyVars :: [IfaceTvBndr] -> ([TyVar] -> IfL a) -> IfL a
969 bindIfaceTyVars bndrs thing_inside
970   = do  { names <- newIfaceNames (map mkTyVarOcc occs)
971         ; let tyvars = zipWith mk_iface_tyvar names kinds
972         ; extendIfaceTyVarEnv tyvars (thing_inside tyvars) }
973   where
974     (occs,kinds) = unzip bndrs
975
976 mk_iface_tyvar name kind = mkTyVar name kind
977 \end{code}
978