X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Ftypecheck%2FTcRnDriver.lhs;h=1e5743a59a7886d70043be7f5276360aa0f0d335;hb=6a4854eaa266d994ebd0d471614a52b43dd329d9;hp=59d790f334bf205d6573ccc6a571eac666bd4a07;hpb=d1652879c78b51f3caf7ffb9e49460012629fa62;p=ghc-hetmet.git diff --git a/ghc/compiler/typecheck/TcRnDriver.lhs b/ghc/compiler/typecheck/TcRnDriver.lhs index 59d790f..1e5743a 100644 --- a/ghc/compiler/typecheck/TcRnDriver.lhs +++ b/ghc/compiler/typecheck/TcRnDriver.lhs @@ -6,7 +6,8 @@ \begin{code} module TcRnDriver ( #ifdef GHCI - mkExportEnv, getModuleContents, tcRnStmt, tcRnThing, tcRnExpr, + mkExportEnv, getModuleContents, tcRnStmt, + tcRnGetInfo, tcRnExpr, tcRnType, #endif tcRnModule, tcTopSrcDecls, @@ -21,100 +22,114 @@ import {-# SOURCE #-} TcSplice ( tcSpliceDecls ) import CmdLineOpts ( DynFlag(..), opt_PprStyle_Debug, dopt ) import DriverState ( v_MainModIs, v_MainFunIs ) -import HsSyn ( HsModule(..), HsBinds(..), MonoBinds(..), HsExpr(..), - HsGroup(..), SpliceDecl(..), HsExtCore(..), - andMonoBinds - ) -import RdrHsSyn ( RdrNameHsModule, RdrNameHsDecl, - findSplice, main_RDR_Unqual ) +import HsSyn ( HsModule(..), HsExtCore(..), HsGroup(..), LHsDecl, SpliceDecl(..), HsBind(..), + nlHsApp, nlHsVar, pprLHsBinds ) +import RdrHsSyn ( findSplice ) -import PrelNames ( runIOName, rootMainName, mAIN_Name ) +import PrelNames ( runIOName, rootMainName, mAIN_Name, + main_RDR_Unqual ) import RdrName ( RdrName, mkRdrUnqual, emptyGlobalRdrEnv, plusGlobalRdrEnv ) import TcHsSyn ( zonkTopDecls ) import TcExpr ( tcInferRho ) import TcRnMonad -import TcType ( tidyTopType ) +import TcType ( tidyTopType, tcEqType, mkTyVarTys, substTyWith ) import Inst ( showLIE ) import TcBinds ( tcTopBinds ) import TcDefaults ( tcDefaults ) -import TcEnv ( tcExtendGlobalValEnv, tcLookupGlobal ) +import TcEnv ( tcExtendGlobalValEnv ) import TcRules ( tcRules ) import TcForeign ( tcForeignImports, tcForeignExports ) import TcInstDcls ( tcInstDecls1, tcInstDecls2 ) import TcIface ( tcExtCoreBindings ) import TcSimplify ( tcSimplifyTop ) import TcTyClsDecls ( tcTyAndClassDecls ) -import LoadIface ( loadOrphanModules ) +import LoadIface ( loadOrphanModules, loadHiBootInterface ) +import IfaceEnv ( lookupOrig ) import RnNames ( importsFromLocalDecls, rnImports, exportsFromAvail, - reportUnusedNames ) + reportUnusedNames, reportDeprecations ) import RnEnv ( lookupSrcOcc_maybe ) import RnSource ( rnSrcDecls, rnTyClDecls, checkModDeprec ) import PprCore ( pprIdRules, pprCoreBindings ) import CoreSyn ( IdCoreRule, bindersOfBinds ) -import ErrUtils ( mkDumpDoc, showPass ) -import Id ( mkLocalId, isLocalId, idName, idType, setIdLocalExported ) +import DataCon ( dataConWrapId ) +import ErrUtils ( Messages, mkDumpDoc, showPass ) +import Id ( mkExportedLocalId, isLocalId, idName, idType ) import Var ( Var ) import Module ( mkHomeModule, mkModuleName, moduleName, moduleEnvElts ) import OccName ( mkVarOcc ) import Name ( Name, isExternalName, getSrcLoc, getOccName ) import NameSet -import TyCon ( tyConHasGenerics ) +import TyCon ( tyConHasGenerics, isSynTyCon, getSynTyConDefn, tyConKind ) +import SrcLoc ( srcLocSpan, Located(..), noLoc ) import Outputable -import HscTypes ( ModIface, ModDetails(..), ModGuts(..), - HscEnv(..), ModIface(..), ModDetails(..), - GhciMode(..), noDependencies, - Deprecs( NoDeprecs ), plusDeprecs, - GenAvailInfo(Avail), availsToNameSet, availName, - ForeignStubs(NoStubs), TypeEnv, typeEnvTyCons, - extendTypeEnvWithIds, typeEnvIds, typeEnvTyCons, - emptyFixityEnv +import HscTypes ( ModGuts(..), HscEnv(..), ExternalPackageState(..), + GhciMode(..), noDependencies, isOneShot, + Deprecs( NoDeprecs ), ModIface(..), plusDeprecs, + ForeignStubs(NoStubs), TyThing(..), + TypeEnv, lookupTypeEnv, + extendTypeEnvWithIds, typeEnvIds, typeEnvTyCons, + emptyFixityEnv, availName ) #ifdef GHCI -import HsSyn ( HsStmtContext(..), - Stmt(..), Pat(VarPat), - collectStmtsBinders, mkSimpleMatch, placeHolderType ) -import RdrHsSyn ( RdrNameHsExpr, RdrNameStmt ) +import HsSyn ( HsStmtContext(..), Stmt(..), HsExpr(..), HsBindGroup(..), + LStmt, LHsExpr, LHsType, mkMatchGroup, + collectStmtsBinders, mkSimpleMatch, placeHolderType, + nlLetStmt, nlExprStmt, nlBindStmt, nlResultStmt, nlVarPat ) import RdrName ( GlobalRdrEnv, mkGlobalRdrEnv, GlobalRdrElt(..), Provenance(..), ImportSpec(..), lookupLocalRdrEnv, extendLocalRdrEnv ) -import RnHsSyn ( RenamedStmt ) import RnSource ( addTcgDUs ) -import TcHsSyn ( TypecheckedHsExpr, mkHsLet, zonkTopExpr, zonkTopBndrs ) +import TcHsSyn ( mkHsLet, zonkTopLExpr, zonkTopBndrs ) +import TcHsType ( kcHsType ) import TcExpr ( tcCheckRho ) +import TcIface ( loadImportedInsts ) import TcMType ( zonkTcType ) +import TcUnify ( unifyTyConApp ) import TcMatches ( tcStmtsAndThen, TcStmtCtxt(..) ) import TcSimplify ( tcSimplifyInteractive, tcSimplifyInfer ) -import TcType ( Type, mkForAllTys, mkFunTys, mkTyConApp, tyVarsOfType ) -import TcEnv ( tcLookupTyCon, tcLookupId ) -import TyCon ( DataConDetails(..) ) -import Inst ( tcStdSyntaxName ) -import RnExpr ( rnStmts, rnExpr ) +import TcType ( Type, mkForAllTys, mkFunTys, mkTyConApp, tyVarsOfType, + isUnLiftedType, tyClsNamesOfDFunHead ) +import TcEnv ( tcLookupTyCon, tcLookupId, tcLookupGlobal ) +import RnTypes ( rnLHsType ) +import Inst ( tcStdSyntaxName, tcGetInstEnvs ) +import InstEnv ( DFunId, classInstances, instEnvElts ) +import RnExpr ( rnStmts, rnLExpr ) import RnNames ( exportsToAvails ) import LoadIface ( loadSrcInterface ) -import IfaceSyn ( IfaceDecl(..), IfaceClassOp(..), IfaceConDecl(..), IfaceExtName(..), - tyThingToIfaceDecl ) -import IfaceEnv ( tcIfaceGlobal ) +import IfaceSyn ( IfaceDecl(..), IfaceClassOp(..), IfaceConDecl(..), + IfaceExtName(..), IfaceConDecls(..), IfaceInst(..), + tyThingToIfaceDecl, dfunToIfaceInst ) import RnEnv ( lookupOccRn, dataTcOccs, lookupFixityRn ) -import Id ( Id, isImplicitId ) +import Id ( Id, isImplicitId, globalIdDetails ) import MkId ( unsafeCoerceId ) +import DataCon ( dataConTyCon ) +import TyCon ( tyConName ) import TysWiredIn ( mkListTy, unitTy ) import IdInfo ( GlobalIdDetails(..) ) -import SrcLoc ( interactiveSrcLoc ) -import Var ( setGlobalIdDetails ) +import SrcLoc ( interactiveSrcLoc, unLoc ) +import Kind ( Kind ) +import Var ( globaliseId ) import Name ( nameOccName, nameModuleName ) import NameEnv ( delListFromNameEnv ) import PrelNames ( iNTERACTIVE, ioTyConName, printName, monadNames, itName, returnIOName ) import Module ( ModuleName, lookupModuleEnvByName ) -import HscTypes ( InteractiveContext(..), - HomeModInfo(..), typeEnvElts, - TyThing(..), availNames, icPrintUnqual ) +import HscTypes ( InteractiveContext(..), ExternalPackageState( eps_PTE ), + HomeModInfo(..), typeEnvElts, typeEnvClasses, + availNames, icPrintUnqual, + ModDetails(..), Dependencies(..) ) import BasicTypes ( RecFlag(..), Fixity ) +import Bag ( unitBag ) +import ListSetOps ( removeDups ) import Panic ( ghcError, GhcException(..) ) +import SrcLoc ( SrcLoc ) #endif import FastString ( mkFastString ) -import Util ( sortLt ) +import Util ( sortLe ) +import Bag ( unionBags, snocBag ) + +import Maybe ( isJust ) \end{code} @@ -128,20 +143,30 @@ import Util ( sortLt ) \begin{code} tcRnModule :: HscEnv - -> RdrNameHsModule - -> IO (Maybe TcGblEnv) + -> Located (HsModule RdrName) + -> IO (Messages, Maybe TcGblEnv) -tcRnModule hsc_env - (HsModule maybe_mod exports import_decls local_decls mod_deprec loc) +tcRnModule hsc_env (L loc (HsModule maybe_mod exports + import_decls local_decls mod_deprec)) = do { showPass (hsc_dflags hsc_env) "Renamer/typechecker" ; let { this_mod = case maybe_mod of - Nothing -> mkHomeModule mAIN_Name -- 'module M where' is omitted - Just mod -> mod } ; -- The normal case + Nothing -> mkHomeModule mAIN_Name + -- 'module M where' is omitted + Just (L _ mod) -> mod } ; + -- The normal case - initTc hsc_env this_mod $ addSrcLoc loc $ + initTc hsc_env this_mod $ + setSrcSpan loc $ do { -- Deal with imports; sets tcg_rdr_env, tcg_imports (rdr_env, imports) <- rnImports import_decls ; + + -- Record boot-file info in the EPS, so that it's + -- visible to loadHiBootInterface in tcRnSrcDecls, + -- and any other incrementally-performed imports + updateEps_ (\eps -> eps { eps_is_boot = imp_dep_mods imports }) ; + + -- Update the gbl env updGblEnv ( \ gbl -> gbl { tcg_rdr_env = rdr_env, tcg_imports = tcg_imports gbl `plusImportAvails` imports }) $ do { @@ -162,9 +187,17 @@ tcRnModule hsc_env traceRn (text "rn3") ; + -- Report the use of any deprecated things + -- We do this before processsing the export list so + -- that we don't bleat about re-exporting a deprecated + -- thing (especially via 'module Foo' export item) + -- Only uses in the body of the module are complained about + reportDeprecations tcg_env ; + -- Process the export list - export_avails <- exportsFromAvail maybe_mod exports ; + exports <- exportsFromAvail (isJust maybe_mod) exports ; +{- Jan 04: I don't think this is necessary any more; usage info is derived from tcg_dus -- Get any supporting decls for the exports that have not already -- been sucked in for the declarations in the body of the module. -- (This can happen if something is imported only to be re-exported.) @@ -175,15 +208,15 @@ tcRnModule hsc_env -- We don't need the results, but sucking them in may side-effect -- the ExternalPackageState, apart from recording usage mappM (tcLookupGlobal . availName) export_avails ; +-} -- Check whether the entire module is deprecated -- This happens only once per module let { mod_deprecs = checkModDeprec mod_deprec } ; -- Add exports and deprecations to envt - let { export_fvs = availsToNameSet export_avails ; - final_env = tcg_env { tcg_exports = export_avails, - tcg_dus = tcg_dus tcg_env `plusDU` usesOnly export_fvs, + let { final_env = tcg_env { tcg_exports = exports, + tcg_dus = tcg_dus tcg_env `plusDU` usesOnly exports, tcg_deprecs = tcg_deprecs tcg_env `plusDeprecs` mod_deprecs } -- A module deprecation over-rides the earlier ones @@ -201,286 +234,6 @@ tcRnModule hsc_env %************************************************************************ %* * - The interactive interface -%* * -%************************************************************************ - -\begin{code} -#ifdef GHCI -tcRnStmt :: HscEnv - -> InteractiveContext - -> RdrNameStmt - -> IO (Maybe (InteractiveContext, [Name], TypecheckedHsExpr)) - -- The returned [Name] is the same as the input except for - -- ExprStmt, in which case the returned [Name] is [itName] - -- - -- The returned TypecheckedHsExpr is of type IO [ () ], - -- a list of the bound values, coerced to (). - -tcRnStmt hsc_env ictxt rdr_stmt - = initTc hsc_env iNTERACTIVE $ - setInteractiveContext ictxt $ do { - - -- Rename; use CmdLineMode because tcRnStmt is only used interactively - ([rn_stmt], fvs) <- rnStmts DoExpr [rdr_stmt] ; - traceRn (text "tcRnStmt" <+> vcat [ppr rdr_stmt, ppr rn_stmt, ppr fvs]) ; - failIfErrsM ; - - -- The real work is done here - (bound_ids, tc_expr) <- tcUserStmt rn_stmt ; - - traceTc (text "tcs 1") ; - let { -- Make all the bound ids "global" ids, now that - -- they're notionally top-level bindings. This is - -- important: otherwise when we come to compile an expression - -- using these ids later, the byte code generator will consider - -- the occurrences to be free rather than global. - global_ids = map globaliseId bound_ids ; - globaliseId id = setGlobalIdDetails id VanillaGlobal ; - - -- Update the interactive context - rn_env = ic_rn_local_env ictxt ; - type_env = ic_type_env ictxt ; - - bound_names = map idName global_ids ; - new_rn_env = extendLocalRdrEnv rn_env bound_names ; - - -- Remove any shadowed bindings from the type_env; - -- they are inaccessible but might, I suppose, cause - -- a space leak if we leave them there - shadowed = [ n | name <- bound_names, - let rdr_name = mkRdrUnqual (nameOccName name), - Just n <- [lookupLocalRdrEnv rn_env rdr_name] ] ; - - filtered_type_env = delListFromNameEnv type_env shadowed ; - new_type_env = extendTypeEnvWithIds filtered_type_env global_ids ; - - new_ic = ictxt { ic_rn_local_env = new_rn_env, - ic_type_env = new_type_env } - } ; - - dumpOptTcRn Opt_D_dump_tc - (vcat [text "Bound Ids" <+> pprWithCommas ppr global_ids, - text "Typechecked expr" <+> ppr tc_expr]) ; - - returnM (new_ic, bound_names, tc_expr) - } -\end{code} - - -Here is the grand plan, implemented in tcUserStmt - - What you type The IO [HValue] that hscStmt returns - ------------- ------------------------------------ - let pat = expr ==> let pat = expr in return [coerce HVal x, coerce HVal y, ...] - bindings: [x,y,...] - - pat <- expr ==> expr >>= \ pat -> return [coerce HVal x, coerce HVal y, ...] - bindings: [x,y,...] - - expr (of IO type) ==> expr >>= \ v -> return [coerce HVal v] - [NB: result not printed] bindings: [it] - - expr (of non-IO type, ==> let v = expr in print v >> return [coerce HVal v] - result showable) bindings: [it] - - expr (of non-IO type, - result not showable) ==> error - - -\begin{code} ---------------------------- -tcUserStmt :: RenamedStmt -> TcM ([Id], TypecheckedHsExpr) -tcUserStmt (ExprStmt expr _ loc) - = newUnique `thenM` \ uniq -> - let - fresh_it = itName uniq - the_bind = FunMonoBind fresh_it False - [ mkSimpleMatch [] expr placeHolderType loc ] loc - in - tryTcLIE_ (do { -- Try this if the other fails - traceTc (text "tcs 1b") ; - tc_stmts [ - LetStmt (MonoBind the_bind [] NonRecursive), - ExprStmt (HsApp (HsVar printName) (HsVar fresh_it)) - placeHolderType loc] }) - (do { -- Try this first - traceTc (text "tcs 1a") ; - tc_stmts [BindStmt (VarPat fresh_it) expr loc] }) - -tcUserStmt stmt = tc_stmts [stmt] - ---------------------------- -tc_stmts stmts - = do { ioTyCon <- tcLookupTyCon ioTyConName ; - let { - ret_ty = mkListTy unitTy ; - io_ret_ty = mkTyConApp ioTyCon [ret_ty] ; - - names = collectStmtsBinders stmts ; - - stmt_ctxt = SC { sc_what = DoExpr, - sc_rhs = check_rhs, - sc_body = check_body, - sc_ty = ret_ty } ; - - check_rhs rhs rhs_ty = tcCheckRho rhs (mkTyConApp ioTyCon [rhs_ty]) ; - check_body body = tcCheckRho body io_ret_ty ; - - -- mk_return builds the expression - -- returnIO @ [()] [coerce () x, .., coerce () z] - -- - -- Despite the inconvenience of building the type applications etc, - -- this *has* to be done in type-annotated post-typecheck form - -- because we are going to return a list of *polymorphic* values - -- coerced to type (). If we built a *source* stmt - -- return [coerce x, ..., coerce z] - -- then the type checker would instantiate x..z, and we wouldn't - -- get their *polymorphic* values. (And we'd get ambiguity errs - -- if they were overloaded, since they aren't applied to anything.) - mk_return ret_id ids = HsApp (TyApp (HsVar ret_id) [ret_ty]) - (ExplicitList unitTy (map mk_item ids)) ; - mk_item id = HsApp (TyApp (HsVar unsafeCoerceId) [idType id, unitTy]) - (HsVar id) ; - - io_ty = mkTyConApp ioTyCon [] - } ; - - -- OK, we're ready to typecheck the stmts - traceTc (text "tcs 2") ; - ((ids, tc_expr), lie) <- getLIE $ do { - (ids, tc_stmts) <- tcStmtsAndThen combine stmt_ctxt stmts $ - do { - -- Look up the names right in the middle, - -- where they will all be in scope - ids <- mappM tcLookupId names ; - ret_id <- tcLookupId returnIOName ; -- return @ IO - return (ids, [ResultStmt (mk_return ret_id ids) interactiveSrcLoc]) } ; - - io_ids <- mappM (tcStdSyntaxName DoOrigin io_ty) monadNames ; - return (ids, HsDo DoExpr tc_stmts io_ids io_ret_ty interactiveSrcLoc) - } ; - - -- Simplify the context right here, so that we fail - -- if there aren't enough instances. Notably, when we see - -- e - -- we use recoverTc_ to try it <- e - -- and then let it = e - -- It's the simplify step that rejects the first. - traceTc (text "tcs 3") ; - const_binds <- tcSimplifyInteractive lie ; - - -- Build result expression and zonk it - let { expr = mkHsLet const_binds tc_expr } ; - zonked_expr <- zonkTopExpr expr ; - zonked_ids <- zonkTopBndrs ids ; - - return (zonked_ids, zonked_expr) - } - where - combine stmt (ids, stmts) = (ids, stmt:stmts) -\end{code} - - -tcRnExpr just finds the type of an expression - -\begin{code} -tcRnExpr :: HscEnv - -> InteractiveContext - -> RdrNameHsExpr - -> IO (Maybe Type) -tcRnExpr hsc_env ictxt rdr_expr - = initTc hsc_env iNTERACTIVE $ - setInteractiveContext ictxt $ do { - - (rn_expr, fvs) <- rnExpr rdr_expr ; - failIfErrsM ; - - -- Now typecheck the expression; - -- it might have a rank-2 type (e.g. :t runST) - ((tc_expr, res_ty), lie) <- getLIE (tcInferRho rn_expr) ; - ((qtvs, _, dict_ids), lie_top) <- getLIE (tcSimplifyInfer smpl_doc (tyVarsOfType res_ty) lie) ; - tcSimplifyInteractive lie_top ; - - let { all_expr_ty = mkForAllTys qtvs $ - mkFunTys (map idType dict_ids) $ - res_ty } ; - zonkTcType all_expr_ty - } - where - smpl_doc = ptext SLIT("main expression") -\end{code} - - -\begin{code} -tcRnThing :: HscEnv - -> InteractiveContext - -> RdrName - -> IO (Maybe [(IfaceDecl, Fixity)]) --- Look up a RdrName and return all the TyThings it might be --- A capitalised RdrName is given to us in the DataName namespace, --- but we want to treat it as *both* a data constructor --- *and* as a type or class constructor; --- hence the call to dataTcOccs, and we return up to two results -tcRnThing hsc_env ictxt rdr_name - = initTc hsc_env iNTERACTIVE $ - setInteractiveContext ictxt $ do { - - -- If the identifier is a constructor (begins with an - -- upper-case letter), then we need to consider both - -- constructor and type class identifiers. - let { rdr_names = dataTcOccs rdr_name } ; - - -- results :: [(Messages, Maybe Name)] - results <- mapM (tryTc . lookupOccRn) rdr_names ; - - -- The successful lookups will be (Just name) - let { (warns_s, good_names) = unzip [ (msgs, name) - | (msgs, Just name) <- results] ; - errs_s = [msgs | (msgs, Nothing) <- results] } ; - - -- Fail if nothing good happened, else add warnings - if null good_names then - -- No lookup succeeded, so - -- pick the first error message and report it - -- ToDo: If one of the errors is "could be Foo.X or Baz.X", - -- while the other is "X is not in scope", - -- we definitely want the former; but we might pick the latter - do { addMessages (head errs_s) ; failM } - else -- Add deprecation warnings - mapM_ addMessages warns_s ; - - -- And lookup up the entities - mapM do_one good_names - } - where - do_one name = do { thing <- tcLookupGlobal name - ; fixity <- lookupFixityRn name - ; return (toIfaceDecl ictxt thing, fixity) } - -toIfaceDecl :: InteractiveContext -> TyThing -> IfaceDecl -toIfaceDecl ictxt thing - = tyThingToIfaceDecl True {- Discard IdInfo -} ext_nm thing - where - unqual = icPrintUnqual ictxt - ext_nm n | unqual n = LocalTop (nameOccName n) -- What a hack - | otherwise = ExtPkg (nameModuleName n) (nameOccName n) -\end{code} - - -\begin{code} -setInteractiveContext :: InteractiveContext -> TcRn a -> TcRn a -setInteractiveContext icxt thing_inside - = traceTc (text "setIC" <+> ppr (ic_type_env icxt)) `thenM_` - (updGblEnv (\env -> env {tcg_rdr_env = ic_rn_gbl_env icxt, - tcg_type_env = ic_type_env icxt}) $ - updLclEnv (\env -> env {tcl_rdr = ic_rn_local_env icxt}) $ - thing_inside) -#endif /* GHCI */ -\end{code} - -%************************************************************************ -%* * Type-checking external-core modules %* * %************************************************************************ @@ -488,7 +241,7 @@ setInteractiveContext icxt thing_inside \begin{code} tcRnExtCore :: HscEnv -> HsExtCore RdrName - -> IO (Maybe ModGuts) + -> IO (Messages, Maybe ModGuts) -- Nothing => some error occurred tcRnExtCore hsc_env (HsExtCore this_mod decls src_binds) @@ -497,15 +250,17 @@ tcRnExtCore hsc_env (HsExtCore this_mod decls src_binds) initTc hsc_env this_mod $ do { + let { ldecls = map noLoc decls } ; + -- Deal with the type declarations; first bring their stuff -- into scope, then rname them, then type check them - (rdr_env, imports) <- importsFromLocalDecls (mkFakeGroup decls) ; + (rdr_env, imports) <- importsFromLocalDecls (mkFakeGroup ldecls) ; updGblEnv (\gbl -> gbl { tcg_rdr_env = rdr_env `plusGlobalRdrEnv` tcg_rdr_env gbl, tcg_imports = imports `plusImportAvails` tcg_imports gbl }) $ do { - rn_decls <- rnTyClDecls decls ; + rn_decls <- rnTyClDecls ldecls ; failIfErrsM ; -- Dump trace of renaming part @@ -513,7 +268,7 @@ tcRnExtCore hsc_env (HsExtCore this_mod decls src_binds) -- Typecheck them all together so that -- any mutually recursive types are done right - tcg_env <- checkNoErrs (tcTyAndClassDecls rn_decls) ; + tcg_env <- checkNoErrs (tcTyAndClassDecls [{- no boot names -}] rn_decls) ; -- Make the new type env available to stuff slurped from interface files setGblEnv tcg_env $ do { @@ -524,7 +279,7 @@ tcRnExtCore hsc_env (HsExtCore this_mod decls src_binds) -- Wrap up let { bndrs = bindersOfBinds core_binds ; - my_exports = map (Avail . idName) bndrs ; + my_exports = mkNameSet (map idName bndrs) ; -- ToDo: export the data types also? final_type_env = extendTypeEnvWithIds (tcg_type_env tcg_env) bndrs ; @@ -553,7 +308,7 @@ tcRnExtCore hsc_env (HsExtCore this_mod decls src_binds) mkFakeGroup decls -- Rather clumsy; lots of unused fields = HsGroup { hs_tyclds = decls, -- This is the one we want - hs_valds = EmptyBinds, hs_fords = [], + hs_valds = [], hs_fords = [], hs_instds = [], hs_fixds = [], hs_depds = [], hs_ruleds = [], hs_defds = [] } \end{code} @@ -566,12 +321,14 @@ mkFakeGroup decls -- Rather clumsy; lots of unused fields %************************************************************************ \begin{code} -tcRnSrcDecls :: [RdrNameHsDecl] -> TcM TcGblEnv +tcRnSrcDecls :: [LHsDecl RdrName] -> TcM TcGblEnv -- Returns the variables free in the decls -- Reason: solely to report unused imports and bindings tcRnSrcDecls decls - = do { -- Do all the declarations - (tc_envs, lie) <- getLIE (tc_rn_src_decls decls) ; + = do { boot_names <- loadHiBootInterface ; + + -- Do all the declarations + (tc_envs, lie) <- getLIE (tc_rn_src_decls boot_names decls) ; -- tcSimplifyTop deals with constant or ambiguous InstIds. -- How could there be ambiguous ones? They can only arise if a @@ -592,11 +349,14 @@ tcRnSrcDecls decls TcGblEnv { tcg_type_env = type_env, tcg_binds = binds, tcg_rules = rules, tcg_fords = fords } = tcg_env } ; - (bind_ids, binds', fords', rules') <- zonkTopDecls (binds `andMonoBinds` inst_binds) + (bind_ids, binds', fords', rules') <- zonkTopDecls (binds `unionBags` inst_binds) rules fords ; let { final_type_env = extendTypeEnvWithIds type_env bind_ids } ; + -- Compre the hi-boot iface (if any) with the real thing + checkHiBootIface final_type_env boot_names ; + -- Make the new type env available to stuff slurped from interface files writeMutVar (tcg_type_env_var tcg_env) final_type_env ; @@ -604,15 +364,15 @@ tcRnSrcDecls decls tcg_binds = binds', tcg_rules = rules', tcg_fords = fords' }) } -tc_rn_src_decls :: [RdrNameHsDecl] -> TcM (TcGblEnv, TcLclEnv) +tc_rn_src_decls :: [Name] -> [LHsDecl RdrName] -> TcM (TcGblEnv, TcLclEnv) -- Loops around dealing with each top level inter-splice group -- in turn, until it's dealt with the entire module -tc_rn_src_decls ds +tc_rn_src_decls boot_names ds = do { let { (first_group, group_tail) = findSplice ds } ; -- If ds is [] we get ([], Nothing) -- Type check the decls up to, but not including, the first splice - tc_envs@(tcg_env,tcl_env) <- tcRnGroup first_group ; + tc_envs@(tcg_env,tcl_env) <- tcRnGroup boot_names first_group ; -- Bale out if errors; for example, error recovery when checking -- the RHS of 'main' can mean that 'main' is not in the envt for @@ -629,24 +389,94 @@ tc_rn_src_decls ds } ; -- If there's a splice, we must carry on - Just (SpliceDecl splice_expr splice_loc, rest_ds) -> do { + Just (SpliceDecl splice_expr, rest_ds) -> do { #ifndef GHCI failWithTc (text "Can't do a top-level splice; need a bootstrapped compiler") #else -- Rename the splice expression, and get its supporting decls - (rn_splice_expr, splice_fvs) <- addSrcLoc splice_loc $ - rnExpr splice_expr ; + (rn_splice_expr, splice_fvs) <- rnLExpr splice_expr ; + failIfErrsM ; -- Don't typecheck if renaming failed + -- Execute the splice spliced_decls <- tcSpliceDecls rn_splice_expr ; -- Glue them on the front of the remaining decls and loop setGblEnv (tcg_env `addTcgDUs` usesOnly splice_fvs) $ - tc_rn_src_decls (spliced_decls ++ rest_ds) + tc_rn_src_decls boot_names (spliced_decls ++ rest_ds) #endif /* GHCI */ }}} \end{code} +%************************************************************************ +%* * + Comparing the hi-boot interface with the real thing +%* * +%************************************************************************ + +In both one-shot mode and GHCi mode, hi-boot interfaces are demand-loaded +into the External Package Table. Once we've typechecked the body of the +module, we want to compare what we've found (gathered in a TypeEnv) with +the hi-boot stuff in the EPT. We do so here, using the export list of +the hi-boot interface as our checklist. + +\begin{code} +checkHiBootIface :: TypeEnv -> [Name] -> TcM () +-- Compare the hi-boot file for this module (if there is one) +-- with the type environment we've just come up with +checkHiBootIface env boot_names + = mapM_ (check_one env) boot_names + +---------------- +check_one local_env name + = do { eps <- getEps + + -- Look up the hi-boot one; + -- it should jolly well be there (else GHC bug) + ; case lookupTypeEnv (eps_PTE eps) name of { + Nothing -> pprPanic "checkHiBootIface" (ppr name) ; + Just boot_thing -> + + -- Look it up in the local type env + -- It should be there, but it's a programmer error if not + case lookupTypeEnv local_env name of + Nothing -> addErrTc (missingBootThing boot_thing) + Just real_thing -> check_thing boot_thing real_thing + } } + +---------------- +check_thing (ATyCon boot_tc) (ATyCon real_tc) + | isSynTyCon boot_tc && isSynTyCon real_tc, + defn1 `tcEqType` substTyWith tvs2 (mkTyVarTys tvs1) defn2 + = return () + + | tyConKind boot_tc == tyConKind real_tc + = return () + where + (tvs1, defn1) = getSynTyConDefn boot_tc + (tvs2, defn2) = getSynTyConDefn boot_tc + +check_thing (AnId boot_id) (AnId real_id) + | idType boot_id `tcEqType` idType real_id + = return () + +check_thing (ADataCon dc1) (ADataCon dc2) + | idType (dataConWrapId dc1) `tcEqType` idType (dataConWrapId dc2) + = return () + + -- Can't declare a class in a hi-boot file + +check_thing boot_thing real_thing -- Default case; failure + = addErrAt (srcLocSpan (getSrcLoc real_thing)) + (bootMisMatch real_thing) + +---------------- +missingBootThing thing + = ppr thing <+> ptext SLIT("is defined in the hi-boot file, but not in the module") +bootMisMatch thing + = ppr thing <+> ptext SLIT("has conflicting definitions in the module and its hi-boot file") +\end{code} + %************************************************************************ %* * @@ -666,15 +496,15 @@ declarations. It expects there to be an incoming TcGblEnv in the monad; it augments it and returns the new TcGblEnv. \begin{code} -tcRnGroup :: HsGroup RdrName -> TcM (TcGblEnv, TcLclEnv) +tcRnGroup :: [Name] -> HsGroup RdrName -> TcM (TcGblEnv, TcLclEnv) -- Returns the variables free in the decls, for unused-binding reporting -tcRnGroup decls +tcRnGroup boot_names decls = do { -- Rename the declarations (tcg_env, rn_decls) <- rnTopSrcDecls decls ; setGblEnv tcg_env $ do { -- Typecheck the declarations - tcTopSrcDecls rn_decls + tcTopSrcDecls boot_names rn_decls }} ------------------------------------------------ @@ -686,6 +516,7 @@ rnTopSrcDecls group tcg_imports = imports `plusImportAvails` tcg_imports gbl }) $ do { + traceRn (ptext SLIT("rnTopSrcDecls") <+> ppr rdr_env) ; failIfErrsM ; -- No point in continuing if (say) we have duplicate declarations -- Rename the source decls @@ -699,8 +530,8 @@ rnTopSrcDecls group }} ------------------------------------------------ -tcTopSrcDecls :: HsGroup Name -> TcM (TcGblEnv, TcLclEnv) -tcTopSrcDecls +tcTopSrcDecls :: [Name] -> HsGroup Name -> TcM (TcGblEnv, TcLclEnv) +tcTopSrcDecls boot_names (HsGroup { hs_tyclds = tycl_decls, hs_instds = inst_decls, hs_fords = foreign_decls, @@ -711,7 +542,7 @@ tcTopSrcDecls -- The latter come in via tycl_decls traceTc (text "Tc2") ; - tcg_env <- checkNoErrs (tcTyAndClassDecls tycl_decls) ; + tcg_env <- checkNoErrs (tcTyAndClassDecls boot_names tycl_decls) ; -- tcTyAndClassDecls recovers internally, but if anything gave rise to -- an error we'd better stop now, to avoid a cascade @@ -741,7 +572,7 @@ tcTopSrcDecls -- We also typecheck any extra binds that came out -- of the "deriving" process (deriv_binds) traceTc (text "Tc5") ; - (tc_val_binds, lcl_env) <- tcTopBinds (val_binds `ThenBinds` deriv_binds) ; + (tc_val_binds, lcl_env) <- tcTopBinds (val_binds ++ deriv_binds) ; setLclTypeEnv lcl_env $ do { -- Second pass over class and instance declarations, @@ -760,13 +591,13 @@ tcTopSrcDecls -- Wrap up traceTc (text "Tc7a") ; tcg_env <- getGblEnv ; - let { all_binds = tc_val_binds `AndMonoBinds` - inst_binds `AndMonoBinds` + let { all_binds = tc_val_binds `unionBags` + inst_binds `unionBags` foe_binds ; -- Extend the GblEnv with the (as yet un-zonked) -- bindings, rules, foreign decls - tcg_env' = tcg_env { tcg_binds = tcg_binds tcg_env `andMonoBinds` all_binds, + tcg_env' = tcg_env { tcg_binds = tcg_binds tcg_env `unionBags` all_binds, tcg_rules = tcg_rules tcg_env ++ rules, tcg_fords = tcg_fords tcg_env ++ foe_decls ++ fi_decls } } ; return (tcg_env', lcl_env) @@ -774,39 +605,372 @@ tcTopSrcDecls \end{code} +%************************************************************************ +%* * + Checking for 'main' +%* * +%************************************************************************ + +\begin{code} +checkMain + = do { ghci_mode <- getGhciMode ; + tcg_env <- getGblEnv ; + + mb_main_mod <- readMutVar v_MainModIs ; + mb_main_fn <- readMutVar v_MainFunIs ; + let { main_mod = case mb_main_mod of { + Just mod -> mkModuleName mod ; + Nothing -> mAIN_Name } ; + main_fn = case mb_main_fn of { + Just fn -> mkRdrUnqual (mkVarOcc (mkFastString fn)) ; + Nothing -> main_RDR_Unqual } } ; + + check_main ghci_mode tcg_env main_mod main_fn + } + + +check_main ghci_mode tcg_env main_mod main_fn + -- If we are in module Main, check that 'main' is defined. + -- It may be imported from another module! + -- + -- ToDo: We have to return the main_name separately, because it's a + -- bona fide 'use', and should be recorded as such, but the others + -- aren't + -- + -- Blimey: a whole page of code to do this... + | mod_name /= main_mod + = return tcg_env + + | otherwise + = addErrCtxt mainCtxt $ + do { mb_main <- lookupSrcOcc_maybe main_fn + -- Check that 'main' is in scope + -- It might be imported from another module! + ; case mb_main of { + Nothing -> do { complain_no_main + ; return tcg_env } ; + Just main_name -> do + { let { rhs = nlHsApp (nlHsVar runIOName) (nlHsVar main_name) } + -- :Main.main :: IO () = runIO main + + ; (main_expr, ty) <- setSrcSpan (srcLocSpan (getSrcLoc main_name)) $ + tcInferRho rhs + + ; let { root_main_id = mkExportedLocalId rootMainName ty ; + main_bind = noLoc (VarBind root_main_id main_expr) } + + ; return (tcg_env { tcg_binds = tcg_binds tcg_env + `snocBag` main_bind, + tcg_dus = tcg_dus tcg_env + `plusDU` usesOnly (unitFV main_name) + }) + }}} + where + mod_name = moduleName (tcg_mod tcg_env) + + complain_no_main | ghci_mode == Interactive = return () + | otherwise = failWithTc noMainMsg + -- In interactive mode, don't worry about the absence of 'main' + -- In other modes, fail altogether, so that we don't go on + -- and complain a second time when processing the export list. + + mainCtxt = ptext SLIT("When checking the type of the main function") <+> quotes (ppr main_fn) + noMainMsg = ptext SLIT("The main function") <+> quotes (ppr main_fn) + <+> ptext SLIT("is not defined in module") <+> quotes (ppr main_mod) +\end{code} + + %********************************************************* %* * - mkGlobalContext: make up an interactive context - - Used for initialising the lexical environment - of the interactive read-eval-print loop + GHCi stuff %* * %********************************************************* \begin{code} #ifdef GHCI -mkExportEnv :: HscEnv -> [ModuleName] -- Expose these modules' exports only - -> IO (Maybe GlobalRdrEnv) +setInteractiveContext :: InteractiveContext -> TcRn a -> TcRn a +setInteractiveContext icxt thing_inside + = traceTc (text "setIC" <+> ppr (ic_type_env icxt)) `thenM_` + (updGblEnv (\env -> env {tcg_rdr_env = ic_rn_gbl_env icxt, + tcg_type_env = ic_type_env icxt}) $ + updLclEnv (\env -> env {tcl_rdr = ic_rn_local_env icxt}) $ + thing_inside) +\end{code} + + +\begin{code} +tcRnStmt :: HscEnv + -> InteractiveContext + -> LStmt RdrName + -> IO (Maybe (InteractiveContext, [Name], LHsExpr Id)) + -- The returned [Name] is the same as the input except for + -- ExprStmt, in which case the returned [Name] is [itName] + -- + -- The returned TypecheckedHsExpr is of type IO [ () ], + -- a list of the bound values, coerced to (). + +tcRnStmt hsc_env ictxt rdr_stmt + = initTcPrintErrors hsc_env iNTERACTIVE $ + setInteractiveContext ictxt $ do { + + -- Rename; use CmdLineMode because tcRnStmt is only used interactively + ([rn_stmt], fvs) <- rnStmts DoExpr [rdr_stmt] ; + traceRn (text "tcRnStmt" <+> vcat [ppr rdr_stmt, ppr rn_stmt, ppr fvs]) ; + failIfErrsM ; + + -- The real work is done here + (bound_ids, tc_expr) <- tcUserStmt rn_stmt ; + + traceTc (text "tcs 1") ; + let { -- Make all the bound ids "global" ids, now that + -- they're notionally top-level bindings. This is + -- important: otherwise when we come to compile an expression + -- using these ids later, the byte code generator will consider + -- the occurrences to be free rather than global. + global_ids = map (globaliseId VanillaGlobal) bound_ids ; + + -- Update the interactive context + rn_env = ic_rn_local_env ictxt ; + type_env = ic_type_env ictxt ; + + bound_names = map idName global_ids ; + new_rn_env = extendLocalRdrEnv rn_env bound_names ; + + -- Remove any shadowed bindings from the type_env; + -- they are inaccessible but might, I suppose, cause + -- a space leak if we leave them there + shadowed = [ n | name <- bound_names, + let rdr_name = mkRdrUnqual (nameOccName name), + Just n <- [lookupLocalRdrEnv rn_env rdr_name] ] ; + + filtered_type_env = delListFromNameEnv type_env shadowed ; + new_type_env = extendTypeEnvWithIds filtered_type_env global_ids ; + + new_ic = ictxt { ic_rn_local_env = new_rn_env, + ic_type_env = new_type_env } + } ; + + dumpOptTcRn Opt_D_dump_tc + (vcat [text "Bound Ids" <+> pprWithCommas ppr global_ids, + text "Typechecked expr" <+> ppr tc_expr]) ; + + returnM (new_ic, bound_names, tc_expr) + } +\end{code} + + +Here is the grand plan, implemented in tcUserStmt + + What you type The IO [HValue] that hscStmt returns + ------------- ------------------------------------ + let pat = expr ==> let pat = expr in return [coerce HVal x, coerce HVal y, ...] + bindings: [x,y,...] + + pat <- expr ==> expr >>= \ pat -> return [coerce HVal x, coerce HVal y, ...] + bindings: [x,y,...] + + expr (of IO type) ==> expr >>= \ it -> return [coerce HVal it] + [NB: result not printed] bindings: [it] + + expr (of non-IO type, ==> let it = expr in print it >> return [coerce HVal it] + result showable) bindings: [it] + + expr (of non-IO type, + result not showable) ==> error + + +\begin{code} +--------------------------- +tcUserStmt :: LStmt Name -> TcM ([Id], LHsExpr Id) +tcUserStmt (L _ (ExprStmt expr _)) + = newUnique `thenM` \ uniq -> + let + fresh_it = itName uniq + the_bind = noLoc $ FunBind (noLoc fresh_it) False + (mkMatchGroup [mkSimpleMatch [] expr]) + in + tryTcLIE_ (do { -- Try this if the other fails + traceTc (text "tcs 1b") ; + tc_stmts [ + nlLetStmt [HsBindGroup (unitBag the_bind) [] NonRecursive], + nlExprStmt (nlHsApp (nlHsVar printName) + (nlHsVar fresh_it)) + ] }) + (do { -- Try this first + traceTc (text "tcs 1a") ; + tc_stmts [nlBindStmt (nlVarPat fresh_it) expr] }) + +tcUserStmt stmt = tc_stmts [stmt] + +--------------------------- +tc_stmts stmts + = do { ioTyCon <- tcLookupTyCon ioTyConName ; + let { + ret_ty = mkListTy unitTy ; + io_ret_ty = mkTyConApp ioTyCon [ret_ty] ; + + names = map unLoc (collectStmtsBinders stmts) ; + + stmt_ctxt = SC { sc_what = DoExpr, + sc_rhs = infer_rhs, + sc_body = check_body, + sc_ty = ret_ty } ; + + infer_rhs rhs = do { (rhs', rhs_ty) <- tcInferRho rhs + ; [pat_ty] <- unifyTyConApp ioTyCon rhs_ty + ; return (rhs', pat_ty) } ; + check_body body = tcCheckRho body io_ret_ty ; + + -- mk_return builds the expression + -- returnIO @ [()] [coerce () x, .., coerce () z] + -- + -- Despite the inconvenience of building the type applications etc, + -- this *has* to be done in type-annotated post-typecheck form + -- because we are going to return a list of *polymorphic* values + -- coerced to type (). If we built a *source* stmt + -- return [coerce x, ..., coerce z] + -- then the type checker would instantiate x..z, and we wouldn't + -- get their *polymorphic* values. (And we'd get ambiguity errs + -- if they were overloaded, since they aren't applied to anything.) + mk_return ret_id ids = nlHsApp (noLoc $ TyApp (nlHsVar ret_id) [ret_ty]) + (noLoc $ ExplicitList unitTy (map mk_item ids)) ; + mk_item id = nlHsApp (noLoc $ TyApp (nlHsVar unsafeCoerceId) [idType id, unitTy]) + (nlHsVar id) ; + + io_ty = mkTyConApp ioTyCon [] + } ; + + -- OK, we're ready to typecheck the stmts + traceTc (text "tcs 2") ; + ((ids, tc_expr), lie) <- getLIE $ do { + (ids, tc_stmts) <- tcStmtsAndThen combine stmt_ctxt stmts $ + do { + -- Look up the names right in the middle, + -- where they will all be in scope + ids <- mappM tcLookupId names ; + ret_id <- tcLookupId returnIOName ; -- return @ IO + return (ids, [nlResultStmt (mk_return ret_id ids)]) } ; + + io_ids <- mappM (tcStdSyntaxName DoOrigin io_ty) monadNames ; + return (ids, noLoc (HsDo DoExpr tc_stmts io_ids io_ret_ty)) + } ; + + -- Simplify the context right here, so that we fail + -- if there aren't enough instances. Notably, when we see + -- e + -- we use recoverTc_ to try it <- e + -- and then let it = e + -- It's the simplify step that rejects the first. + traceTc (text "tcs 3") ; + const_binds <- tcSimplifyInteractive lie ; + + -- Build result expression and zonk it + let { expr = mkHsLet const_binds tc_expr } ; + zonked_expr <- zonkTopLExpr expr ; + zonked_ids <- zonkTopBndrs ids ; + + -- None of the Ids should be of unboxed type, because we + -- cast them all to HValues in the end! + mappM bad_unboxed (filter (isUnLiftedType . idType) zonked_ids) ; + + return (zonked_ids, zonked_expr) + } + where + combine stmt (ids, stmts) = (ids, stmt:stmts) + bad_unboxed id = addErr (sep [ptext SLIT("GHCi can't bind a variable of unlifted type:"), + nest 2 (ppr id <+> dcolon <+> ppr (idType id))]) +\end{code} + +tcRnExpr just finds the type of an expression + +\begin{code} +tcRnExpr :: HscEnv + -> InteractiveContext + -> LHsExpr RdrName + -> IO (Maybe Type) +tcRnExpr hsc_env ictxt rdr_expr + = initTcPrintErrors hsc_env iNTERACTIVE $ + setInteractiveContext ictxt $ do { + + (rn_expr, fvs) <- rnLExpr rdr_expr ; + failIfErrsM ; + + -- Now typecheck the expression; + -- it might have a rank-2 type (e.g. :t runST) + ((tc_expr, res_ty), lie) <- getLIE (tcInferRho rn_expr) ; + ((qtvs, _, dict_ids), lie_top) <- getLIE (tcSimplifyInfer smpl_doc (tyVarsOfType res_ty) lie) ; + tcSimplifyInteractive lie_top ; + + let { all_expr_ty = mkForAllTys qtvs $ + mkFunTys (map idType dict_ids) $ + res_ty } ; + zonkTcType all_expr_ty + } + where + smpl_doc = ptext SLIT("main expression") +\end{code} + +tcRnType just finds the kind of a type + +\begin{code} +tcRnType :: HscEnv + -> InteractiveContext + -> LHsType RdrName + -> IO (Maybe Kind) +tcRnType hsc_env ictxt rdr_type + = initTcPrintErrors hsc_env iNTERACTIVE $ + setInteractiveContext ictxt $ do { + + rn_type <- rnLHsType doc rdr_type ; + failIfErrsM ; + + -- Now kind-check the type + (ty', kind) <- kcHsType rn_type ; + return kind + } + where + doc = ptext SLIT("In GHCi input") + +#endif /* GHCi */ +\end{code} + + +%************************************************************************ +%* * + More GHCi stuff, to do with browsing and getting info +%* * +%************************************************************************ + +\begin{code} +#ifdef GHCI +mkExportEnv :: HscEnv -> [ModuleName] -- Expose these modules' exports only + -> IO GlobalRdrEnv mkExportEnv hsc_env exports - = initTc hsc_env iNTERACTIVE $ do { - export_envs <- mappM getModuleExports exports ; - returnM (foldr plusGlobalRdrEnv emptyGlobalRdrEnv export_envs) + = do { mb_envs <- initTcPrintErrors hsc_env iNTERACTIVE $ + mappM getModuleExports exports + ; case mb_envs of + Just envs -> return (foldr plusGlobalRdrEnv emptyGlobalRdrEnv envs) + Nothing -> return emptyGlobalRdrEnv + -- Some error; initTc will have printed it } getModuleExports :: ModuleName -> TcM GlobalRdrEnv getModuleExports mod = do { iface <- load_iface mod + ; loadOrphanModules (dep_orphs (mi_deps iface)) + -- Load any orphan-module interfaces, + -- so their instances are visible ; avails <- exportsToAvails (mi_exports iface) - ; let { gres = [ GRE { gre_name = name, gre_prov = vanillaProv mod, - gre_deprec = mi_dep_fn iface name } + ; let { gres = [ GRE { gre_name = name, gre_prov = vanillaProv mod } | avail <- avails, name <- availNames avail ] } ; returnM (mkGlobalRdrEnv gres) } vanillaProv :: ModuleName -> Provenance -- We're building a GlobalRdrEnv as if the user imported -- all the specified modules into the global interactive module -vanillaProv mod = Imported [ImportSpec mod mod False interactiveSrcLoc] False +vanillaProv mod = Imported [ImportSpec mod mod False + (srcLocSpan interactiveSrcLoc)] False \end{code} \begin{code} @@ -818,14 +982,14 @@ getModuleContents -> IO (Maybe [IfaceDecl]) getModuleContents hsc_env ictxt mod exports_only - = initTc hsc_env iNTERACTIVE (get_mod_contents exports_only) + = initTcPrintErrors hsc_env iNTERACTIVE (get_mod_contents exports_only) where get_mod_contents exports_only - | not exports_only -- We want the whole top-level type env + | not exports_only -- We want the whole top-level type env -- so it had better be a home module = do { hpt <- getHpt ; case lookupModuleEnvByName hpt mod of - Just mod_info -> return (map (toIfaceDecl ictxt) $ + Just mod_info -> return (map toIfaceDecl $ filter wantToSee $ typeEnvElts $ md_types (hm_details mod_info)) @@ -841,18 +1005,21 @@ getModuleContents hsc_env ictxt mod exports_only get_decl avail = do { thing <- tcLookupGlobal (availName avail) - ; return (filter_decl (availOccs avail) (toIfaceDecl ictxt thing)) } + ; return (filter_decl (availOccs avail) (toIfaceDecl thing)) } --------------------- filter_decl occs decl@(IfaceClass {ifSigs = sigs}) = decl { ifSigs = filter (keep_sig occs) sigs } -filter_decl occs decl@(IfaceData {ifCons = DataCons cons}) - = decl { ifCons = DataCons (filter (keep_con occs) cons) } +filter_decl occs decl@(IfaceData {ifCons = IfDataTyCon th cons}) + = decl { ifCons = IfDataTyCon th (filter (keep_con occs) cons) } +filter_decl occs decl@(IfaceData {ifCons = IfNewTyCon con}) + | keep_con occs con = decl + | otherwise = decl {ifCons = IfAbstractTyCon} -- Hmm? filter_decl occs decl = decl -keep_sig occs (IfaceClassOp occ _ _) = occ `elem` occs -keep_con occs (IfaceConDecl occ _ _ _ _ _) = occ `elem` occs +keep_sig occs (IfaceClassOp occ _ _) = occ `elem` occs +keep_con occs con = ifConOcc con `elem` occs availOccs avail = map nameOccName (availNames avail) @@ -868,83 +1035,109 @@ load_iface mod = loadSrcInterface doc mod False {- Not boot iface -} --------------------- noRdrEnvErr mod = ptext SLIT("No top-level environment available for module") <+> quotes (ppr mod) -#endif \end{code} -%************************************************************************ -%* * - Checking for 'main' -%* * -%************************************************************************ - \begin{code} -checkMain - = do { ghci_mode <- getGhciMode ; - tcg_env <- getGblEnv ; +tcRnGetInfo :: HscEnv + -> InteractiveContext + -> RdrName + -> IO (Maybe [(IfaceDecl, + Fixity, SrcLoc, + [(IfaceInst, SrcLoc)])]) +-- Used to implemnent :info in GHCi +-- +-- Look up a RdrName and return all the TyThings it might be +-- A capitalised RdrName is given to us in the DataName namespace, +-- but we want to treat it as *both* a data constructor +-- *and* as a type or class constructor; +-- hence the call to dataTcOccs, and we return up to two results +tcRnGetInfo hsc_env ictxt rdr_name + = initTcPrintErrors hsc_env iNTERACTIVE $ + setInteractiveContext ictxt $ do { - mb_main_mod <- readMutVar v_MainModIs ; - mb_main_fn <- readMutVar v_MainFunIs ; - let { main_mod = case mb_main_mod of { - Just mod -> mkModuleName mod ; - Nothing -> mAIN_Name } ; - main_fn = case mb_main_fn of { - Just fn -> mkRdrUnqual (mkVarOcc (mkFastString fn)) ; - Nothing -> main_RDR_Unqual } } ; - - check_main ghci_mode tcg_env main_mod main_fn - } + -- If the identifier is a constructor (begins with an + -- upper-case letter), then we need to consider both + -- constructor and type class identifiers. + let { rdr_names = dataTcOccs rdr_name } ; + -- results :: [(Messages, Maybe Name)] + results <- mapM (tryTc . lookupOccRn) rdr_names ; -check_main ghci_mode tcg_env main_mod main_fn - -- If we are in module Main, check that 'main' is defined. - -- It may be imported from another module! - -- - -- ToDo: We have to return the main_name separately, because it's a - -- bona fide 'use', and should be recorded as such, but the others - -- aren't - -- - -- Blimey: a whole page of code to do this... - | mod_name /= main_mod - = return tcg_env + traceRn (text "xx" <+> vcat [ppr rdr_names, ppr (map snd results)]); + -- The successful lookups will be (Just name) + let { (warns_s, good_names) = unzip [ (msgs, name) + | (msgs, Just name) <- results] ; + errs_s = [msgs | (msgs, Nothing) <- results] } ; - | otherwise - = addErrCtxt mainCtxt $ - do { mb_main <- lookupSrcOcc_maybe main_fn - -- Check that 'main' is in scope - -- It might be imported from another module! - ; case mb_main of { - Nothing -> do { complain_no_main - ; return tcg_env } ; - Just main_name -> do - { let { rhs = HsApp (HsVar runIOName) (HsVar main_name) } - -- :Main.main :: IO () = runIO main + -- Fail if nothing good happened, else add warnings + if null good_names then + -- No lookup succeeded, so + -- pick the first error message and report it + -- ToDo: If one of the errors is "could be Foo.X or Baz.X", + -- while the other is "X is not in scope", + -- we definitely want the former; but we might pick the latter + do { addMessages (head errs_s) ; failM } + else -- Add deprecation warnings + mapM_ addMessages warns_s ; + + -- And lookup up the entities, avoiding duplicates, which arise + -- because constructors and record selectors are represented by + -- their parent declaration + let { do_one name = do { thing <- tcLookupGlobal name + ; let decl = toIfaceDecl thing + ; fixity <- lookupFixityRn name + ; insts <- lookupInsts thing + ; return (decl, fixity, getSrcLoc thing, + map mk_inst insts) } ; + -- For the SrcLoc, the 'thing' has better info than + -- the 'name' because getting the former forced the + -- declaration to be loaded into the cache + mk_inst dfun = (dfunToIfaceInst dfun, getSrcLoc dfun) ; + cmp (d1,_,_,_) (d2,_,_,_) = ifName d1 `compare` ifName d2 } ; + results <- mapM do_one good_names ; + return (fst (removeDups cmp results)) + } - ; (main_expr, ty) <- addSrcLoc (getSrcLoc main_name) $ - tcInferRho rhs +lookupInsts :: TyThing -> TcM [DFunId] +lookupInsts (AClass cls) + = do { loadImportedInsts cls [] -- [] means load all instances for cls + ; inst_envs <- tcGetInstEnvs + ; return [df | (_,_,df) <- classInstances inst_envs cls] } + +lookupInsts (ATyCon tc) + = do { eps <- getEps -- Load all instances for all classes that are + -- in the type environment (which are all the ones + -- we've seen in any interface file so far + ; mapM_ (\c -> loadImportedInsts c []) + (typeEnvClasses (eps_PTE eps)) + ; (pkg_ie, home_ie) <- tcGetInstEnvs -- Search all + ; return (get home_ie ++ get pkg_ie) } + where + get ie = [df | (_,_,df) <- instEnvElts ie, relevant df] + relevant df = tc_name `elemNameSet` tyClsNamesOfDFunHead (idType df) + tc_name = tyConName tc - ; let { root_main_id = setIdLocalExported (mkLocalId rootMainName ty) ; - main_bind = VarMonoBind root_main_id main_expr } +lookupInsts other = return [] - ; return (tcg_env { tcg_binds = tcg_binds tcg_env - `andMonoBinds` main_bind, - tcg_dus = tcg_dus tcg_env - `plusDU` usesOnly (unitFV main_name) - }) - }}} + +toIfaceDecl :: TyThing -> IfaceDecl +toIfaceDecl thing + = tyThingToIfaceDecl True -- Discard IdInfo + emptyNameSet -- Show data cons + ext_nm (munge thing) where - mod_name = moduleName (tcg_mod tcg_env) - - complain_no_main | ghci_mode == Interactive = return () - | otherwise = failWithTc noMainMsg - -- In interactive mode, don't worry about the absence of 'main' - -- In other modes, fail altogether, so that we don't go on - -- and complain a second time when processing the export list. + ext_nm n = ExtPkg (nameModuleName n) (nameOccName n) - mainCtxt = ptext SLIT("When checking the type of the main function") <+> quotes (ppr main_fn) - noMainMsg = ptext SLIT("The main function") <+> quotes (ppr main_fn) - <+> ptext SLIT("is not defined in module") <+> quotes (ppr main_mod) -\end{code} + -- munge transforms a thing to it's "parent" thing + munge (ADataCon dc) = ATyCon (dataConTyCon dc) + munge (AnId id) = case globalIdDetails id of + RecordSelId tc lbl -> ATyCon tc + ClassOpId cls -> AClass cls + other -> AnId id + munge other_thing = other_thing +#endif /* GHCI */ +\end{code} %************************************************************************ %* * @@ -970,7 +1163,7 @@ tcDump env } where short_dump = pprTcGblEnv env - full_dump = ppr (tcg_binds env) + full_dump = pprLHsBinds (tcg_binds env) -- NB: foreign x-d's have undefined's in their types; -- hence can't show the tc_fords @@ -1025,9 +1218,9 @@ ppr_insts dfun_ids = text "INSTANCES" $$ nest 4 (ppr_sigs dfun_ids) ppr_sigs :: [Var] -> SDoc ppr_sigs ids -- Print type signatures; sort by OccName - = vcat (map ppr_sig (sortLt lt_sig ids)) + = vcat (map ppr_sig (sortLe le_sig ids)) where - lt_sig id1 id2 = getOccName id1 < getOccName id2 + le_sig id1 id2 = getOccName id1 <= getOccName id2 ppr_sig id = ppr id <+> dcolon <+> ppr (tidyTopType (idType id)) ppr_rules :: [IdCoreRule] -> SDoc