[project @ 2003-10-10 12:42:30 by simonpj]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcRnDriver.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[TcModule]{Typechecking a whole module}
5
6 \begin{code}
7 module TcRnDriver (
8 #ifdef GHCI
9         mkExportEnv, getModuleContents, tcRnStmt, tcRnThing, tcRnExpr,
10 #endif
11         tcRnModule, 
12         tcTopSrcDecls,
13         tcRnIface, tcRnExtCore
14     ) where
15
16 #include "HsVersions.h"
17
18 #ifdef GHCI
19 import {-# SOURCE #-} TcSplice ( tcSpliceDecls )
20 #endif
21
22 import CmdLineOpts      ( DynFlag(..), opt_PprStyle_Debug, dopt )
23 import DriverState      ( v_MainModIs, v_MainFunIs )
24 import HsSyn            ( HsModule(..), HsBinds(..), MonoBinds(..), HsExpr(..),
25                           HsGroup(..), SpliceDecl(..), HsExtCore(..),
26                           andMonoBinds
27                         )
28 import RdrHsSyn         ( RdrNameHsModule, RdrNameHsDecl, 
29                           findSplice, main_RDR_Unqual )
30
31 import PrelNames        ( runIOName, rootMainName, mAIN_Name )
32 import RdrName          ( RdrName, mkRdrUnqual, emptyGlobalRdrEnv, 
33                           plusGlobalRdrEnv )
34 import TcHsSyn          ( zonkTopDecls )
35 import TcExpr           ( tcInferRho )
36 import TcRnMonad
37 import TcType           ( tidyTopType )
38 import Inst             ( showLIE )
39 import TcBinds          ( tcTopBinds )
40 import TcDefaults       ( tcDefaults )
41 import TcEnv            ( tcExtendGlobalValEnv, tcLookupGlobal )
42 import TcRules          ( tcRules )
43 import TcForeign        ( tcForeignImports, tcForeignExports )
44 import TcInstDcls       ( tcInstDecls1, tcInstDecls2 )
45 import TcIface          ( typecheckIface, tcExtCoreBindings )
46 import TcSimplify       ( tcSimplifyTop )
47 import TcTyClsDecls     ( tcTyAndClassDecls )
48 import LoadIface        ( loadOrphanModules )
49 import RnNames          ( importsFromLocalDecls, rnImports, exportsFromAvail, 
50                           reportUnusedNames )
51 import RnEnv            ( lookupSrcOcc_maybe )
52 import RnSource         ( rnSrcDecls, rnTyClDecls, checkModDeprec )
53 import PprCore          ( pprIdRules, pprCoreBindings )
54 import CoreSyn          ( IdCoreRule, bindersOfBinds )
55 import ErrUtils         ( mkDumpDoc, showPass )
56 import Id               ( mkLocalId, isLocalId, idName, idType, setIdLocalExported )
57 import Var              ( Var )
58 import Module           ( mkHomeModule, mkModuleName, moduleName, moduleEnvElts )
59 import OccName          ( mkVarOcc )
60 import Name             ( Name, isExternalName, getSrcLoc, getOccName )
61 import NameSet
62 import TyCon            ( tyConHasGenerics )
63 import Outputable
64 import HscTypes         ( ModIface, ModDetails(..), ModGuts(..),
65                           HscEnv(..), ModIface(..), ModDetails(..), 
66                           GhciMode(..), noDependencies,
67                           Deprecs( NoDeprecs ), plusDeprecs,
68                           GenAvailInfo(Avail), availsToNameSet, availName,
69                           ForeignStubs(NoStubs), TypeEnv, typeEnvTyCons, 
70                           extendTypeEnvWithIds, typeEnvIds, typeEnvTyCons,
71                           emptyFixityEnv
72                         )
73 #ifdef GHCI
74 import HsSyn            ( HsStmtContext(..), 
75                           Stmt(..), Pat(VarPat), 
76                           collectStmtsBinders, mkSimpleMatch, placeHolderType )
77 import RdrHsSyn         ( RdrNameHsExpr, RdrNameStmt )
78 import RdrName          ( GlobalRdrEnv, mkGlobalRdrEnv, GlobalRdrElt(..),
79                           Provenance(..), ImportSpec(..),
80                           lookupLocalRdrEnv, extendLocalRdrEnv )
81 import RnHsSyn          ( RenamedStmt ) 
82 import RnSource         ( addTcgDUs )
83 import TcHsSyn          ( TypecheckedHsExpr, mkHsLet, zonkTopExpr, zonkTopBndrs )
84 import TcExpr           ( tcCheckRho )
85 import TcMType          ( zonkTcType )
86 import TcMatches        ( tcStmtsAndThen, TcStmtCtxt(..) )
87 import TcSimplify       ( tcSimplifyInteractive, tcSimplifyInfer )
88 import TcType           ( Type, mkForAllTys, mkFunTys, mkTyConApp, tyVarsOfType )
89 import TcEnv            ( tcLookupTyCon, tcLookupId )
90 import TyCon            ( DataConDetails(..) )
91 import Inst             ( tcStdSyntaxName )
92 import RnExpr           ( rnStmts, rnExpr )
93 import RnNames          ( exportsToAvails )
94 import LoadIface        ( loadSrcInterface )
95 import IfaceSyn         ( IfaceDecl(..), IfaceClassOp(..), IfaceConDecl(..), IfaceExtName(..),
96                           tyThingToIfaceDecl )
97 import IfaceEnv         ( tcIfaceGlobal )
98 import RnEnv            ( lookupOccRn, dataTcOccs, lookupFixityRn )
99 import Id               ( Id, isImplicitId )
100 import MkId             ( unsafeCoerceId )
101 import TysWiredIn       ( mkListTy, unitTy )
102 import IdInfo           ( GlobalIdDetails(..) )
103 import SrcLoc           ( interactiveSrcLoc )
104 import Var              ( setGlobalIdDetails )
105 import Name             ( nameOccName, nameModuleName )
106 import NameEnv          ( delListFromNameEnv )
107 import PrelNames        ( iNTERACTIVE, ioTyConName, printName, monadNames, itName, returnIOName )
108 import Module           ( ModuleName, lookupModuleEnvByName )
109 import HscTypes         ( InteractiveContext(..),
110                           HomeModInfo(..), typeEnvElts, 
111                           TyThing(..), availNames, icPrintUnqual )
112 import BasicTypes       ( RecFlag(..), Fixity )
113 import Panic            ( ghcError, GhcException(..) )
114 #endif
115
116 import FastString       ( mkFastString )
117 import Util             ( sortLt )
118 \end{code}
119
120
121
122 %************************************************************************
123 %*                                                                      *
124         Typecheck and rename a module
125 %*                                                                      *
126 %************************************************************************
127
128
129 \begin{code}
130 tcRnModule :: HscEnv 
131            -> RdrNameHsModule 
132            -> IO (Maybe TcGblEnv)
133
134 tcRnModule hsc_env
135            (HsModule maybe_mod exports import_decls local_decls mod_deprec loc)
136  = do { showPass (hsc_dflags hsc_env) "Renamer/typechecker" ;
137
138    let { this_mod = case maybe_mod of
139                         Nothing  -> mkHomeModule mAIN_Name      -- 'module M where' is omitted
140                         Just mod -> mod } ;                     -- The normal case
141                 
142    initTc hsc_env this_mod $ addSrcLoc loc $
143    do {         -- Deal with imports; sets tcg_rdr_env, tcg_imports
144         (rdr_env, imports) <- rnImports import_decls ;
145         updGblEnv ( \ gbl -> gbl { tcg_rdr_env = rdr_env,
146                                    tcg_imports = tcg_imports gbl `plusImportAvails` imports }) 
147                      $ do {
148         traceRn (text "rn1" <+> ppr (imp_dep_mods imports)) ;
149                 -- Fail if there are any errors so far
150                 -- The error printing (if needed) takes advantage 
151                 -- of the tcg_env we have now set
152         failIfErrsM ;
153
154                 -- Load any orphan-module interfaces, so that
155                 -- their rules and instance decls will be found
156         loadOrphanModules (imp_orphs imports) ;
157
158         traceRn (text "rn1a") ;
159                 -- Rename and type check the declarations
160         tcg_env <- tcRnSrcDecls local_decls ;
161         setGblEnv tcg_env               $ do {
162
163         traceRn (text "rn3") ;
164
165                 -- Process the export list
166         export_avails <- exportsFromAvail maybe_mod exports ;
167
168                 -- Get any supporting decls for the exports that have not already
169                 -- been sucked in for the declarations in the body of the module.
170                 -- (This can happen if something is imported only to be re-exported.)
171                 --
172                 -- Importing these supporting declarations is required 
173                 --      *only* to gether usage information
174                 --      (see comments with MkIface.mkImportInfo for why)
175                 -- We don't need the results, but sucking them in may side-effect
176                 -- the ExternalPackageState, apart from recording usage
177         mappM (tcLookupGlobal . availName) export_avails ;
178
179                 -- Check whether the entire module is deprecated
180                 -- This happens only once per module
181         let { mod_deprecs = checkModDeprec mod_deprec } ;
182
183                 -- Add exports and deprecations to envt
184         let { export_fvs = availsToNameSet export_avails ;
185               final_env  = tcg_env { tcg_exports = export_avails,
186                                      tcg_dus = tcg_dus tcg_env `plusDU` usesOnly export_fvs,
187                                      tcg_deprecs = tcg_deprecs tcg_env `plusDeprecs` 
188                                                    mod_deprecs }
189                 -- A module deprecation over-rides the earlier ones
190              } ;
191
192                 -- Report unused names
193         reportUnusedNames final_env ;
194
195                 -- Dump output and return
196         tcDump final_env ;
197         return final_env
198     }}}}
199 \end{code}
200
201
202 %*********************************************************
203 %*                                                       *
204 \subsection{Closing up the interface decls}
205 %*                                                       *
206 %*********************************************************
207
208 Suppose we discover we don't need to recompile.   Then we start from the
209 IfaceDecls in the ModIface, and fluff them up by sucking in all the decls they need.
210
211 \begin{code}
212 tcRnIface :: HscEnv
213           -> ModIface   -- Get the decls from here
214           -> IO ModDetails
215 tcRnIface hsc_env iface
216   = initIfaceIO hsc_env (mi_deps iface) (typecheckIface iface)
217 \end{code}
218
219
220 %************************************************************************
221 %*                                                                      *
222                 The interactive interface 
223 %*                                                                      *
224 %************************************************************************
225
226 \begin{code}
227 #ifdef GHCI
228 tcRnStmt :: HscEnv
229          -> InteractiveContext
230          -> RdrNameStmt
231          -> IO (Maybe (InteractiveContext, [Name], TypecheckedHsExpr))
232                 -- The returned [Name] is the same as the input except for
233                 -- ExprStmt, in which case the returned [Name] is [itName]
234                 --
235                 -- The returned TypecheckedHsExpr is of type IO [ () ],
236                 -- a list of the bound values, coerced to ().
237
238 tcRnStmt hsc_env ictxt rdr_stmt
239   = initTc hsc_env iNTERACTIVE $ 
240     setInteractiveContext ictxt $ do {
241
242     -- Rename; use CmdLineMode because tcRnStmt is only used interactively
243     ([rn_stmt], fvs) <- rnStmts DoExpr [rdr_stmt] ;
244     traceRn (text "tcRnStmt" <+> vcat [ppr rdr_stmt, ppr rn_stmt, ppr fvs]) ;
245     failIfErrsM ;
246     
247     -- The real work is done here
248     (bound_ids, tc_expr) <- tcUserStmt rn_stmt ;
249     
250     traceTc (text "tcs 1") ;
251     let {       -- Make all the bound ids "global" ids, now that
252                 -- they're notionally top-level bindings.  This is
253                 -- important: otherwise when we come to compile an expression
254                 -- using these ids later, the byte code generator will consider
255                 -- the occurrences to be free rather than global.
256         global_ids     = map globaliseId bound_ids ;
257         globaliseId id = setGlobalIdDetails id VanillaGlobal ;
258     
259                 -- Update the interactive context
260         rn_env   = ic_rn_local_env ictxt ;
261         type_env = ic_type_env ictxt ;
262
263         bound_names = map idName global_ids ;
264         new_rn_env  = extendLocalRdrEnv rn_env bound_names ;
265
266                 -- Remove any shadowed bindings from the type_env;
267                 -- they are inaccessible but might, I suppose, cause 
268                 -- a space leak if we leave them there
269         shadowed = [ n | name <- bound_names,
270                          let rdr_name = mkRdrUnqual (nameOccName name),
271                          Just n <- [lookupLocalRdrEnv rn_env rdr_name] ] ;
272
273         filtered_type_env = delListFromNameEnv type_env shadowed ;
274         new_type_env = extendTypeEnvWithIds filtered_type_env global_ids ;
275
276         new_ic = ictxt { ic_rn_local_env = new_rn_env, 
277                          ic_type_env     = new_type_env }
278     } ;
279
280     dumpOptTcRn Opt_D_dump_tc 
281         (vcat [text "Bound Ids" <+> pprWithCommas ppr global_ids,
282                text "Typechecked expr" <+> ppr tc_expr]) ;
283
284     returnM (new_ic, bound_names, tc_expr)
285     }
286 \end{code}              
287
288
289 Here is the grand plan, implemented in tcUserStmt
290
291         What you type                   The IO [HValue] that hscStmt returns
292         -------------                   ------------------------------------
293         let pat = expr          ==>     let pat = expr in return [coerce HVal x, coerce HVal y, ...]
294                                         bindings: [x,y,...]
295
296         pat <- expr             ==>     expr >>= \ pat -> return [coerce HVal x, coerce HVal y, ...]
297                                         bindings: [x,y,...]
298
299         expr (of IO type)       ==>     expr >>= \ v -> return [coerce HVal v]
300           [NB: result not printed]      bindings: [it]
301           
302         expr (of non-IO type,   ==>     let v = expr in print v >> return [coerce HVal v]
303           result showable)              bindings: [it]
304
305         expr (of non-IO type, 
306           result not showable)  ==>     error
307
308
309 \begin{code}
310 ---------------------------
311 tcUserStmt :: RenamedStmt -> TcM ([Id], TypecheckedHsExpr)
312 tcUserStmt (ExprStmt expr _ loc)
313   = newUnique           `thenM` \ uniq ->
314     let 
315         fresh_it = itName uniq
316         the_bind = FunMonoBind fresh_it False 
317                         [ mkSimpleMatch [] expr placeHolderType loc ] loc
318     in
319     tryTcLIE_ (do {     -- Try this if the other fails
320                 traceTc (text "tcs 1b") ;
321                 tc_stmts [
322                     LetStmt (MonoBind the_bind [] NonRecursive),
323                     ExprStmt (HsApp (HsVar printName) (HsVar fresh_it)) 
324                              placeHolderType loc] })
325           (do {         -- Try this first 
326                 traceTc (text "tcs 1a") ;
327                 tc_stmts [BindStmt (VarPat fresh_it) expr loc] })
328
329 tcUserStmt stmt = tc_stmts [stmt]
330
331 ---------------------------
332 tc_stmts stmts
333  = do { ioTyCon <- tcLookupTyCon ioTyConName ;
334         let {
335             ret_ty    = mkListTy unitTy ;
336             io_ret_ty = mkTyConApp ioTyCon [ret_ty] ;
337
338             names = collectStmtsBinders stmts ;
339
340             stmt_ctxt = SC { sc_what = DoExpr, 
341                              sc_rhs  = check_rhs,
342                              sc_body = check_body,
343                              sc_ty   = ret_ty } ;
344
345             check_rhs rhs rhs_ty = tcCheckRho rhs  (mkTyConApp ioTyCon [rhs_ty]) ;
346             check_body body      = tcCheckRho body io_ret_ty ;
347
348                 -- mk_return builds the expression
349                 --      returnIO @ [()] [coerce () x, ..,  coerce () z]
350                 --
351                 -- Despite the inconvenience of building the type applications etc,
352                 -- this *has* to be done in type-annotated post-typecheck form
353                 -- because we are going to return a list of *polymorphic* values
354                 -- coerced to type (). If we built a *source* stmt
355                 --      return [coerce x, ..., coerce z]
356                 -- then the type checker would instantiate x..z, and we wouldn't
357                 -- get their *polymorphic* values.  (And we'd get ambiguity errs
358                 -- if they were overloaded, since they aren't applied to anything.)
359             mk_return ret_id ids = HsApp (TyApp (HsVar ret_id) [ret_ty]) 
360                                          (ExplicitList unitTy (map mk_item ids)) ;
361             mk_item id = HsApp (TyApp (HsVar unsafeCoerceId) [idType id, unitTy])
362                                (HsVar id) ;
363
364             io_ty = mkTyConApp ioTyCon []
365          } ;
366
367         -- OK, we're ready to typecheck the stmts
368         traceTc (text "tcs 2") ;
369         ((ids, tc_expr), lie) <- getLIE $ do {
370             (ids, tc_stmts) <- tcStmtsAndThen combine stmt_ctxt stmts   $ 
371                         do {
372                             -- Look up the names right in the middle,
373                             -- where they will all be in scope
374                             ids <- mappM tcLookupId names ;
375                             ret_id <- tcLookupId returnIOName ;         -- return @ IO
376                             return (ids, [ResultStmt (mk_return ret_id ids) interactiveSrcLoc]) } ;
377
378             io_ids <- mappM (tcStdSyntaxName DoOrigin io_ty) monadNames ;
379             return (ids, HsDo DoExpr tc_stmts io_ids io_ret_ty interactiveSrcLoc) 
380         } ;
381
382         -- Simplify the context right here, so that we fail
383         -- if there aren't enough instances.  Notably, when we see
384         --              e
385         -- we use recoverTc_ to try     it <- e
386         -- and then                     let it = e
387         -- It's the simplify step that rejects the first.
388         traceTc (text "tcs 3") ;
389         const_binds <- tcSimplifyInteractive lie ;
390
391         -- Build result expression and zonk it
392         let { expr = mkHsLet const_binds tc_expr } ;
393         zonked_expr <- zonkTopExpr expr ;
394         zonked_ids  <- zonkTopBndrs ids ;
395
396         return (zonked_ids, zonked_expr)
397         }
398   where
399     combine stmt (ids, stmts) = (ids, stmt:stmts)
400 \end{code}
401
402
403 tcRnExpr just finds the type of an expression
404
405 \begin{code}
406 tcRnExpr :: HscEnv
407          -> InteractiveContext
408          -> RdrNameHsExpr
409          -> IO (Maybe Type)
410 tcRnExpr hsc_env ictxt rdr_expr
411   = initTc hsc_env iNTERACTIVE $ 
412     setInteractiveContext ictxt $ do {
413
414     (rn_expr, fvs) <- rnExpr rdr_expr ;
415     failIfErrsM ;
416
417         -- Now typecheck the expression; 
418         -- it might have a rank-2 type (e.g. :t runST)
419     ((tc_expr, res_ty), lie)       <- getLIE (tcInferRho rn_expr) ;
420     ((qtvs, _, dict_ids), lie_top) <- getLIE (tcSimplifyInfer smpl_doc (tyVarsOfType res_ty) lie)  ;
421     tcSimplifyInteractive lie_top ;
422
423     let { all_expr_ty = mkForAllTys qtvs                $
424                         mkFunTys (map idType dict_ids)  $
425                         res_ty } ;
426     zonkTcType all_expr_ty
427     }
428   where
429     smpl_doc = ptext SLIT("main expression")
430 \end{code}
431
432
433 \begin{code}
434 tcRnThing :: HscEnv
435           -> InteractiveContext
436           -> RdrName
437           -> IO (Maybe [(IfaceDecl, Fixity)])
438 -- Look up a RdrName and return all the TyThings it might be
439 -- A capitalised RdrName is given to us in the DataName namespace,
440 -- but we want to treat it as *both* a data constructor 
441 -- *and* as a type or class constructor; 
442 -- hence the call to dataTcOccs, and we return up to two results
443 tcRnThing hsc_env ictxt rdr_name
444   = initTc hsc_env iNTERACTIVE $ 
445     setInteractiveContext ictxt $ do {
446
447         -- If the identifier is a constructor (begins with an
448         -- upper-case letter), then we need to consider both
449         -- constructor and type class identifiers.
450     let { rdr_names = dataTcOccs rdr_name } ;
451
452         -- results :: [(Messages, Maybe Name)]
453     results <- mapM (tryTc . lookupOccRn) rdr_names ;
454
455         -- The successful lookups will be (Just name)
456     let { (warns_s, good_names) = unzip [ (msgs, name) 
457                                         | (msgs, Just name) <- results] ;
458           errs_s = [msgs | (msgs, Nothing) <- results] } ;
459
460         -- Fail if nothing good happened, else add warnings
461     if null good_names then
462                 -- No lookup succeeded, so
463                 -- pick the first error message and report it
464                 -- ToDo: If one of the errors is "could be Foo.X or Baz.X",
465                 --       while the other is "X is not in scope", 
466                 --       we definitely want the former; but we might pick the latter
467         do { addMessages (head errs_s) ; failM }
468       else                      -- Add deprecation warnings
469         mapM_ addMessages warns_s ;
470         
471         -- And lookup up the entities
472     mapM do_one good_names
473     }
474   where
475     do_one name = do { thing <- tcLookupGlobal name
476                      ; fixity <- lookupFixityRn name
477                      ; return (toIfaceDecl ictxt thing, fixity) }
478
479 toIfaceDecl :: InteractiveContext -> TyThing -> IfaceDecl
480 toIfaceDecl ictxt thing
481   = tyThingToIfaceDecl True {- Discard IdInfo -} ext_nm thing
482   where
483     unqual = icPrintUnqual ictxt
484     ext_nm n | unqual n  = LocalTop (nameOccName n)     -- What a hack
485              | otherwise = ExtPkg (nameModuleName n) (nameOccName n)
486 \end{code}
487
488
489 \begin{code}
490 setInteractiveContext :: InteractiveContext -> TcRn a -> TcRn a
491 setInteractiveContext icxt thing_inside 
492   = traceTc (text "setIC" <+> ppr (ic_type_env icxt))   `thenM_`
493     (updGblEnv (\env -> env {tcg_rdr_env  = ic_rn_gbl_env icxt,
494                              tcg_type_env = ic_type_env   icxt}) $
495      updLclEnv (\env -> env {tcl_rdr = ic_rn_local_env icxt})   $
496                thing_inside)
497 #endif /* GHCI */
498 \end{code}
499
500 %************************************************************************
501 %*                                                                      *
502         Type-checking external-core modules
503 %*                                                                      *
504 %************************************************************************
505
506 \begin{code}
507 tcRnExtCore :: HscEnv 
508             -> HsExtCore RdrName
509             -> IO (Maybe ModGuts)
510         -- Nothing => some error occurred 
511
512 tcRnExtCore hsc_env (HsExtCore this_mod decls src_binds)
513         -- The decls are IfaceDecls; all names are original names
514  = do { showPass (hsc_dflags hsc_env) "Renamer/typechecker" ;
515
516    initTc hsc_env this_mod $ do {
517
518         -- Deal with the type declarations; first bring their stuff
519         -- into scope, then rname them, then type check them
520    (rdr_env, imports) <- importsFromLocalDecls (mkFakeGroup decls) ;
521
522    updGblEnv (\gbl -> gbl { tcg_rdr_env = rdr_env `plusGlobalRdrEnv` tcg_rdr_env gbl,
523                             tcg_imports = imports `plusImportAvails` tcg_imports gbl }) 
524                   $ do {
525
526    rn_decls <- rnTyClDecls decls ;
527    failIfErrsM ;
528
529         -- Dump trace of renaming part
530    rnDump (ppr rn_decls) ;
531
532         -- Typecheck them all together so that
533         -- any mutually recursive types are done right
534    tcg_env <- checkNoErrs (tcTyAndClassDecls rn_decls) ;
535         -- Make the new type env available to stuff slurped from interface files
536
537    setGblEnv tcg_env $ do {
538    
539         -- Now the core bindings
540    core_binds <- initIfaceExtCore (tcExtCoreBindings this_mod src_binds) ;
541
542         -- Wrap up
543    let {
544         bndrs      = bindersOfBinds core_binds ;
545         my_exports = map (Avail . idName) bndrs ;
546                 -- ToDo: export the data types also?
547
548         final_type_env = extendTypeEnvWithIds (tcg_type_env tcg_env) bndrs ;
549
550         mod_guts = ModGuts {    mg_module   = this_mod,
551                                 mg_usages   = [],               -- ToDo: compute usage
552                                 mg_dir_imps = [],               -- ??
553                                 mg_deps     = noDependencies,   -- ??
554                                 mg_exports  = my_exports,
555                                 mg_types    = final_type_env,
556                                 mg_insts    = tcg_insts tcg_env,
557                                 mg_rules    = [],
558                                 mg_binds    = core_binds,
559
560                                 -- Stubs
561                                 mg_rdr_env  = emptyGlobalRdrEnv,
562                                 mg_fix_env  = emptyFixityEnv,
563                                 mg_deprecs  = NoDeprecs,
564                                 mg_foreign  = NoStubs
565                     } } ;
566
567    tcCoreDump mod_guts ;
568
569    return mod_guts
570    }}}}
571
572 mkFakeGroup decls -- Rather clumsy; lots of unused fields
573   = HsGroup {   hs_tyclds = decls,      -- This is the one we want
574                 hs_valds = EmptyBinds, hs_fords = [],
575                 hs_instds = [], hs_fixds = [], hs_depds = [],
576                 hs_ruleds = [], hs_defds = [] }
577 \end{code}
578
579
580 %************************************************************************
581 %*                                                                      *
582         Type-checking the top level of a module
583 %*                                                                      *
584 %************************************************************************
585
586 \begin{code}
587 tcRnSrcDecls :: [RdrNameHsDecl] -> TcM TcGblEnv
588         -- Returns the variables free in the decls
589         -- Reason: solely to report unused imports and bindings
590 tcRnSrcDecls decls
591  = do {         -- Do all the declarations
592         (tc_envs, lie) <- getLIE (tc_rn_src_decls decls) ;
593
594              -- tcSimplifyTop deals with constant or ambiguous InstIds.  
595              -- How could there be ambiguous ones?  They can only arise if a
596              -- top-level decl falls under the monomorphism
597              -- restriction, and no subsequent decl instantiates its
598              -- type.  (Usually, ambiguous type variables are resolved
599              -- during the generalisation step.)
600         traceTc (text "Tc8") ;
601         inst_binds <- setEnvs tc_envs (tcSimplifyTop lie) ;
602                 -- Setting the global env exposes the instances to tcSimplifyTop
603                 -- Setting the local env exposes the local Ids to tcSimplifyTop, 
604                 -- so that we get better error messages (monomorphism restriction)
605
606             -- Backsubstitution.  This must be done last.
607             -- Even tcSimplifyTop may do some unification.
608         traceTc (text "Tc9") ;
609         let { (tcg_env, _) = tc_envs ;
610               TcGblEnv { tcg_type_env = type_env, tcg_binds = binds, 
611                          tcg_rules = rules, tcg_fords = fords } = tcg_env } ;
612
613         (bind_ids, binds', fords', rules') <- zonkTopDecls (binds `andMonoBinds` inst_binds)
614                                                            rules fords ;
615
616         let { final_type_env = extendTypeEnvWithIds type_env bind_ids } ;
617
618         -- Make the new type env available to stuff slurped from interface files
619         writeMutVar (tcg_type_env_var tcg_env) final_type_env ;
620
621         return (tcg_env { tcg_type_env = final_type_env,
622                           tcg_binds = binds', tcg_rules = rules', tcg_fords = fords' }) 
623    }
624
625 tc_rn_src_decls :: [RdrNameHsDecl] -> TcM (TcGblEnv, TcLclEnv)
626 -- Loops around dealing with each top level inter-splice group 
627 -- in turn, until it's dealt with the entire module
628 tc_rn_src_decls ds
629  = do { let { (first_group, group_tail) = findSplice ds } ;
630                 -- If ds is [] we get ([], Nothing)
631
632         -- Type check the decls up to, but not including, the first splice
633         tc_envs@(tcg_env,tcl_env) <- tcRnGroup first_group ;
634
635         -- Bale out if errors; for example, error recovery when checking
636         -- the RHS of 'main' can mean that 'main' is not in the envt for 
637         -- the subsequent checkMain test
638         failIfErrsM ;
639
640         setEnvs tc_envs $
641
642         -- If there is no splice, we're nearly done
643         case group_tail of {
644            Nothing -> do {      -- Last thing: check for `main'
645                            tcg_env <- checkMain ;
646                            return (tcg_env, tcl_env) 
647                       } ;
648
649         -- If there's a splice, we must carry on
650            Just (SpliceDecl splice_expr splice_loc, rest_ds) -> do {
651 #ifndef GHCI
652         failWithTc (text "Can't do a top-level splice; need a bootstrapped compiler")
653 #else
654
655         -- Rename the splice expression, and get its supporting decls
656         (rn_splice_expr, splice_fvs) <- addSrcLoc splice_loc $
657                                         rnExpr splice_expr ;
658         -- Execute the splice
659         spliced_decls <- tcSpliceDecls rn_splice_expr ;
660
661         -- Glue them on the front of the remaining decls and loop
662         setGblEnv (tcg_env `addTcgDUs` usesOnly splice_fvs) $
663         tc_rn_src_decls (spliced_decls ++ rest_ds)
664 #endif /* GHCI */
665     }}}
666 \end{code}
667
668
669 %************************************************************************
670 %*                                                                      *
671         Type-checking the top level of a module
672 %*                                                                      *
673 %************************************************************************
674
675 tcRnGroup takes a bunch of top-level source-code declarations, and
676  * renames them
677  * gets supporting declarations from interface files
678  * typechecks them
679  * zonks them
680  * and augments the TcGblEnv with the results
681
682 In Template Haskell it may be called repeatedly for each group of
683 declarations.  It expects there to be an incoming TcGblEnv in the
684 monad; it augments it and returns the new TcGblEnv.
685
686 \begin{code}
687 tcRnGroup :: HsGroup RdrName -> TcM (TcGblEnv, TcLclEnv)
688         -- Returns the variables free in the decls, for unused-binding reporting
689 tcRnGroup decls
690  = do {         -- Rename the declarations
691         (tcg_env, rn_decls) <- rnTopSrcDecls decls ;
692         setGblEnv tcg_env $ do {
693
694                 -- Typecheck the declarations
695         tcTopSrcDecls rn_decls 
696   }}
697
698 ------------------------------------------------
699 rnTopSrcDecls :: HsGroup RdrName -> TcM (TcGblEnv, HsGroup Name)
700 rnTopSrcDecls group
701  = do {         -- Bring top level binders into scope
702         (rdr_env, imports) <- importsFromLocalDecls group ;
703         updGblEnv (\gbl -> gbl { tcg_rdr_env = rdr_env `plusGlobalRdrEnv` tcg_rdr_env gbl,
704                                  tcg_imports = imports `plusImportAvails` tcg_imports gbl }) 
705                   $ do {
706
707         failIfErrsM ;   -- No point in continuing if (say) we have duplicate declarations
708
709                 -- Rename the source decls
710         (tcg_env, rn_decls) <- rnSrcDecls group ;
711         failIfErrsM ;
712
713                 -- Dump trace of renaming part
714         rnDump (ppr rn_decls) ;
715
716         return (tcg_env, rn_decls)
717    }}
718
719 ------------------------------------------------
720 tcTopSrcDecls :: HsGroup Name -> TcM (TcGblEnv, TcLclEnv)
721 tcTopSrcDecls
722         (HsGroup { hs_tyclds = tycl_decls, 
723                    hs_instds = inst_decls,
724                    hs_fords  = foreign_decls,
725                    hs_defds  = default_decls,
726                    hs_ruleds = rule_decls,
727                    hs_valds  = val_binds })
728  = do {         -- Type-check the type and class decls, and all imported decls
729                 -- The latter come in via tycl_decls
730         traceTc (text "Tc2") ;
731
732         tcg_env <- checkNoErrs (tcTyAndClassDecls tycl_decls) ;
733         -- tcTyAndClassDecls recovers internally, but if anything gave rise to
734         -- an error we'd better stop now, to avoid a cascade
735         
736         -- Make these type and class decls available to stuff slurped from interface files
737         writeMutVar (tcg_type_env_var tcg_env) (tcg_type_env tcg_env) ;
738
739
740         setGblEnv tcg_env       $ do {
741                 -- Source-language instances, including derivings,
742                 -- and import the supporting declarations
743         traceTc (text "Tc3") ;
744         (tcg_env, inst_infos, deriv_binds) <- tcInstDecls1 tycl_decls inst_decls ;
745         setGblEnv tcg_env       $ do {
746
747                 -- Foreign import declarations next.  No zonking necessary
748                 -- here; we can tuck them straight into the global environment.
749         traceTc (text "Tc4") ;
750         (fi_ids, fi_decls) <- tcForeignImports foreign_decls ;
751         tcExtendGlobalValEnv fi_ids     $ do {
752
753                 -- Default declarations
754         traceTc (text "Tc4a") ;
755         default_tys <- tcDefaults default_decls ;
756         updGblEnv (\gbl -> gbl { tcg_default = default_tys }) $ do {
757         
758                 -- Value declarations next
759                 -- We also typecheck any extra binds that came out 
760                 -- of the "deriving" process (deriv_binds)
761         traceTc (text "Tc5") ;
762         (tc_val_binds, lcl_env) <- tcTopBinds (val_binds `ThenBinds` deriv_binds) ;
763         setLclTypeEnv lcl_env   $ do {
764
765                 -- Second pass over class and instance declarations, 
766         traceTc (text "Tc6") ;
767         (tcl_env, inst_binds) <- tcInstDecls2 tycl_decls inst_infos ;
768         showLIE (text "after instDecls2") ;
769
770                 -- Foreign exports
771                 -- They need to be zonked, so we return them
772         traceTc (text "Tc7") ;
773         (foe_binds, foe_decls) <- tcForeignExports foreign_decls ;
774
775                 -- Rules
776         rules <- tcRules rule_decls ;
777
778                 -- Wrap up
779         traceTc (text "Tc7a") ;
780         tcg_env <- getGblEnv ;
781         let { all_binds = tc_val_binds   `AndMonoBinds`
782                           inst_binds     `AndMonoBinds`
783                           foe_binds  ;
784
785                 -- Extend the GblEnv with the (as yet un-zonked) 
786                 -- bindings, rules, foreign decls
787               tcg_env' = tcg_env {  tcg_binds = tcg_binds tcg_env `andMonoBinds` all_binds,
788                                     tcg_rules = tcg_rules tcg_env ++ rules,
789                                     tcg_fords = tcg_fords tcg_env ++ foe_decls ++ fi_decls } } ;
790         return (tcg_env', lcl_env)
791     }}}}}}
792 \end{code}
793
794
795 %*********************************************************
796 %*                                                       *
797         mkGlobalContext: make up an interactive context
798
799         Used for initialising the lexical environment
800         of the interactive read-eval-print loop
801 %*                                                       *
802 %*********************************************************
803
804 \begin{code}
805 #ifdef GHCI
806 mkExportEnv :: HscEnv -> [ModuleName]   -- Expose these modules' exports only
807             -> IO (Maybe GlobalRdrEnv)
808
809 mkExportEnv hsc_env exports
810   = initTc hsc_env iNTERACTIVE $ do {
811     export_envs <- mappM getModuleExports exports ;
812     returnM (foldr plusGlobalRdrEnv emptyGlobalRdrEnv export_envs)
813     }
814
815 getModuleExports :: ModuleName -> TcM GlobalRdrEnv
816 getModuleExports mod 
817   = do  { iface <- load_iface mod
818         ; avails <- exportsToAvails (mi_exports iface)
819         ; let { gres = [ GRE  { gre_name = name, gre_prov = vanillaProv mod,
820                                 gre_deprec = mi_dep_fn iface name }
821                         | avail <- avails, name <- availNames avail ] }
822         ; returnM (mkGlobalRdrEnv gres) }
823
824 vanillaProv :: ModuleName -> Provenance
825 -- We're building a GlobalRdrEnv as if the user imported
826 -- all the specified modules into the global interactive module
827 vanillaProv mod = Imported [ImportSpec mod mod False interactiveSrcLoc] False
828 \end{code}
829
830 \begin{code}
831 getModuleContents
832   :: HscEnv
833   -> InteractiveContext
834   -> ModuleName                 -- Module to inspect
835   -> Bool                       -- Grab just the exports, or the whole toplev
836   -> IO (Maybe [IfaceDecl])
837
838 getModuleContents hsc_env ictxt mod exports_only
839  = initTc hsc_env iNTERACTIVE (get_mod_contents exports_only)
840  where
841    get_mod_contents exports_only
842       | not exports_only        -- We want the whole top-level type env
843                           -- so it had better be a home module
844       = do { hpt <- getHpt
845            ; case lookupModuleEnvByName hpt mod of
846                Just mod_info -> return (map (toIfaceDecl ictxt) $
847                                         filter wantToSee $
848                                         typeEnvElts $
849                                         md_types (hm_details mod_info))
850                Nothing -> ghcError (ProgramError (showSDoc (noRdrEnvErr mod)))
851                           -- This is a system error; the module should be in the HPT
852            }
853   
854       | otherwise               -- Want the exports only
855       = do { iface <- load_iface mod
856            ; avails <- exportsToAvails (mi_exports iface)
857            ; mappM get_decl avails
858         }
859
860    get_decl avail 
861         = do { thing <- tcLookupGlobal (availName avail)
862              ; return (filter_decl (availOccs avail) (toIfaceDecl ictxt thing)) }
863
864 ---------------------
865 filter_decl occs decl@(IfaceClass {ifSigs = sigs})
866   = decl { ifSigs = filter (keep_sig occs) sigs }
867 filter_decl occs decl@(IfaceData {ifCons = DataCons cons})
868   = decl { ifCons = DataCons (filter (keep_con occs) cons) }
869 filter_decl occs decl
870   = decl
871
872 keep_sig occs (IfaceClassOp occ _ _)       = occ `elem` occs
873 keep_con occs (IfaceConDecl occ _ _ _ _ _) = occ `elem` occs
874
875 availOccs avail = map nameOccName (availNames avail)
876
877 wantToSee (AnId id)    = not (isImplicitId id)
878 wantToSee (ADataCon _) = False  -- They'll come via their TyCon
879 wantToSee _            = True
880
881 ---------------------
882 load_iface mod = loadSrcInterface doc mod False {- Not boot iface -}
883                where
884                  doc = ptext SLIT("context for compiling statements")
885
886 ---------------------
887 noRdrEnvErr mod = ptext SLIT("No top-level environment available for module") 
888                   <+> quotes (ppr mod)
889 #endif
890 \end{code}
891
892 %************************************************************************
893 %*                                                                      *
894         Checking for 'main'
895 %*                                                                      *
896 %************************************************************************
897
898 \begin{code}
899 checkMain 
900   = do { ghci_mode <- getGhciMode ;
901          tcg_env   <- getGblEnv ;
902
903          mb_main_mod <- readMutVar v_MainModIs ;
904          mb_main_fn  <- readMutVar v_MainFunIs ;
905          let { main_mod = case mb_main_mod of {
906                                 Just mod -> mkModuleName mod ;
907                                 Nothing  -> mAIN_Name } ;
908                 main_fn  = case mb_main_fn of {
909                                 Just fn -> mkRdrUnqual (mkVarOcc (mkFastString fn)) ;
910                                 Nothing -> main_RDR_Unqual } } ;
911         
912          check_main ghci_mode tcg_env main_mod main_fn
913     }
914
915
916 check_main ghci_mode tcg_env main_mod main_fn
917      -- If we are in module Main, check that 'main' is defined.
918      -- It may be imported from another module!
919      --
920      -- ToDo: We have to return the main_name separately, because it's a
921      -- bona fide 'use', and should be recorded as such, but the others
922      -- aren't 
923      -- 
924      -- Blimey: a whole page of code to do this...
925  | mod_name /= main_mod
926  = return tcg_env
927
928  | otherwise
929  = addErrCtxt mainCtxt                  $
930    do   { mb_main <- lookupSrcOcc_maybe main_fn
931                 -- Check that 'main' is in scope
932                 -- It might be imported from another module!
933         ; case mb_main of {
934              Nothing -> do { complain_no_main   
935                            ; return tcg_env } ;
936              Just main_name -> do
937         { let { rhs = HsApp (HsVar runIOName) (HsVar main_name) }
938                         -- :Main.main :: IO () = runIO main 
939
940         ; (main_expr, ty) <- addSrcLoc (getSrcLoc main_name)    $
941                              tcInferRho rhs
942
943         ; let { root_main_id = setIdLocalExported (mkLocalId rootMainName ty) ;
944                 main_bind    = VarMonoBind root_main_id main_expr }
945
946         ; return (tcg_env { tcg_binds = tcg_binds tcg_env 
947                                         `andMonoBinds` main_bind,
948                             tcg_dus   = tcg_dus tcg_env
949                                         `plusDU` usesOnly (unitFV main_name)
950                  }) 
951     }}}
952   where
953     mod_name = moduleName (tcg_mod tcg_env) 
954  
955     complain_no_main | ghci_mode == Interactive = return ()
956                      | otherwise                = failWithTc noMainMsg
957         -- In interactive mode, don't worry about the absence of 'main'
958         -- In other modes, fail altogether, so that we don't go on
959         -- and complain a second time when processing the export list.
960
961     mainCtxt  = ptext SLIT("When checking the type of the main function") <+> quotes (ppr main_fn)
962     noMainMsg = ptext SLIT("The main function") <+> quotes (ppr main_fn) 
963                 <+> ptext SLIT("is not defined in module") <+> quotes (ppr main_mod)
964 \end{code}
965
966
967 %************************************************************************
968 %*                                                                      *
969                 Degugging output
970 %*                                                                      *
971 %************************************************************************
972
973 \begin{code}
974 rnDump :: SDoc -> TcRn ()
975 -- Dump, with a banner, if -ddump-rn
976 rnDump doc = do { dumpOptTcRn Opt_D_dump_rn (mkDumpDoc "Renamer" doc) }
977
978 tcDump :: TcGblEnv -> TcRn ()
979 tcDump env
980  = do { dflags <- getDOpts ;
981
982         -- Dump short output if -ddump-types or -ddump-tc
983         ifM (dopt Opt_D_dump_types dflags || dopt Opt_D_dump_tc dflags)
984             (dumpTcRn short_dump) ;
985
986         -- Dump bindings if -ddump-tc
987         dumpOptTcRn Opt_D_dump_tc (mkDumpDoc "Typechecker" full_dump)
988    }
989   where
990     short_dump = pprTcGblEnv env
991     full_dump  = ppr (tcg_binds env)
992         -- NB: foreign x-d's have undefined's in their types; 
993         --     hence can't show the tc_fords
994
995 tcCoreDump mod_guts
996  = do { dflags <- getDOpts ;
997         ifM (dopt Opt_D_dump_types dflags || dopt Opt_D_dump_tc dflags)
998             (dumpTcRn (pprModGuts mod_guts)) ;
999
1000         -- Dump bindings if -ddump-tc
1001         dumpOptTcRn Opt_D_dump_tc (mkDumpDoc "Typechecker" full_dump) }
1002   where
1003     full_dump = pprCoreBindings (mg_binds mod_guts)
1004
1005 -- It's unpleasant having both pprModGuts and pprModDetails here
1006 pprTcGblEnv :: TcGblEnv -> SDoc
1007 pprTcGblEnv (TcGblEnv { tcg_type_env = type_env, 
1008                         tcg_insts    = dfun_ids, 
1009                         tcg_rules    = rules,
1010                         tcg_imports  = imports })
1011   = vcat [ ppr_types dfun_ids type_env
1012          , ppr_insts dfun_ids
1013          , vcat (map ppr rules)
1014          , ppr_gen_tycons (typeEnvTyCons type_env)
1015          , ptext SLIT("Dependent modules:") <+> ppr (moduleEnvElts (imp_dep_mods imports))
1016          , ptext SLIT("Dependent packages:") <+> ppr (imp_dep_pkgs imports)]
1017
1018 pprModGuts :: ModGuts -> SDoc
1019 pprModGuts (ModGuts { mg_types = type_env,
1020                       mg_rules = rules })
1021   = vcat [ ppr_types [] type_env,
1022            ppr_rules rules ]
1023
1024
1025 ppr_types :: [Var] -> TypeEnv -> SDoc
1026 ppr_types dfun_ids type_env
1027   = text "TYPE SIGNATURES" $$ nest 4 (ppr_sigs ids)
1028   where
1029     ids = [id | id <- typeEnvIds type_env, want_sig id]
1030     want_sig id | opt_PprStyle_Debug = True
1031                 | otherwise          = isLocalId id && 
1032                                        isExternalName (idName id) && 
1033                                        not (id `elem` dfun_ids)
1034         -- isLocalId ignores data constructors, records selectors etc.
1035         -- The isExternalName ignores local dictionary and method bindings
1036         -- that the type checker has invented.  Top-level user-defined things 
1037         -- have External names.
1038
1039 ppr_insts :: [Var] -> SDoc
1040 ppr_insts []       = empty
1041 ppr_insts dfun_ids = text "INSTANCES" $$ nest 4 (ppr_sigs dfun_ids)
1042
1043 ppr_sigs :: [Var] -> SDoc
1044 ppr_sigs ids
1045         -- Print type signatures; sort by OccName 
1046   = vcat (map ppr_sig (sortLt lt_sig ids))
1047   where
1048     lt_sig id1 id2 = getOccName id1 < getOccName id2
1049     ppr_sig id = ppr id <+> dcolon <+> ppr (tidyTopType (idType id))
1050
1051 ppr_rules :: [IdCoreRule] -> SDoc
1052 ppr_rules [] = empty
1053 ppr_rules rs = vcat [ptext SLIT("{-# RULES"),
1054                       nest 4 (pprIdRules rs),
1055                       ptext SLIT("#-}")]
1056
1057 ppr_gen_tycons []  = empty
1058 ppr_gen_tycons tcs = vcat [ptext SLIT("Tycons with generics:"),
1059                            nest 2 (fsep (map ppr (filter tyConHasGenerics tcs)))]
1060 \end{code}