[project @ 2002-05-23 15:51:26 by simonpj]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcModule.lhs
index f5c5c44..6b76101 100644 (file)
@@ -6,7 +6,7 @@
 \begin{code}
 module TcModule (
        typecheckModule, typecheckIface, typecheckStmt, typecheckExpr,
-       typecheckExtraDecls,
+       typecheckExtraDecls, typecheckCoreModule,
        TcResults(..)
     ) where
 
@@ -18,7 +18,7 @@ import HsSyn          ( HsBinds(..), MonoBinds(..), HsDecl(..), HsExpr(..),
                          isSourceInstDecl, mkSimpleMatch, placeHolderType, isCoreDecl
                        )
 import PrelNames       ( ioTyConName, printName,
-                         returnIOName, bindIOName, failIOName, runMainName, 
+                         returnIOName, bindIOName, failIOName, thenIOName, runMainName, 
                          dollarMainName, itName
                        )
 import MkId            ( unsafeCoerceId )
@@ -28,7 +28,7 @@ import TcHsSyn                ( TypecheckedMonoBinds, TypecheckedHsExpr,
                          TypecheckedForeignDecl, TypecheckedRuleDecl,
                          TypecheckedCoreBind,
                          zonkTopBinds, zonkForeignExports, zonkRules, mkHsLet,
-                         zonkExpr, zonkIdBndr, zonkCoreBinds
+                         zonkExpr, zonkIdBndr
                        )
 
 import Rename          ( RnResult(..) )
@@ -175,12 +175,13 @@ tcUserStmt names stmt
     
 
 tc_stmts names stmts
-  = tcLookupGlobalId returnIOName      `thenNF_Tc` \ return_id ->
-    tcLookupGlobalId bindIOName                `thenNF_Tc` \ bind_id ->
-    tcLookupGlobalId failIOName                `thenNF_Tc` \ fail_id ->
+  = mapNF_Tc tcLookupGlobalId 
+       [returnIOName, failIOName, bindIOName, thenIOName]      `thenNF_Tc` \ io_ids ->
     tcLookupTyCon ioTyConName          `thenNF_Tc` \ ioTyCon ->
     newTyVarTy liftedTypeKind          `thenNF_Tc` \ res_ty ->
     let
+       return_id  = head io_ids        -- Rather gruesome
+
        io_ty = (\ ty -> mkTyConApp ioTyCon [ty], res_ty)
 
                -- mk_return builds the expression
@@ -212,7 +213,7 @@ tc_stmts names stmts
     traceTc (text "tcs 4") `thenNF_Tc_`
 
     returnTc (mkHsLet const_binds $
-             HsDoOut DoExpr tc_stmts return_id bind_id fail_id 
+             HsDoOut DoExpr tc_stmts io_ids
                      (mkTyConApp ioTyCon [mkListTy unitTy]) noSrcLoc,
              ids)
   where
@@ -353,7 +354,6 @@ data TcResults
        tc_insts   :: [DFunId],                 -- Instances 
        tc_rules   :: [TypecheckedRuleDecl],    -- Transformation rules
        tc_binds   :: TypecheckedMonoBinds,     -- Bindings
-       tc_cbinds  :: [TypecheckedCoreBind],    -- (external)Core value decls/bindings.
        tc_fords   :: [TypecheckedForeignDecl]  -- Foreign import & exports.
     }
 
@@ -405,7 +405,6 @@ tcModule pcs hst (RnResult { rr_decls = decls, rr_mod = this_mod,
         traceTc (text "Tc5")                           `thenNF_Tc_`
        tcTopBinds (val_binds `ThenBinds` deriv_binds)  `thenTc` \ ((val_binds, env2), lie_valdecls) ->
        
-        tcCoreBinds core_binds                          `thenTc` \ core_binds' -> 
        -- Second pass over class and instance declarations, 
        -- plus rules and foreign exports, to generate bindings
        tcSetEnv env2                           $
@@ -446,8 +445,9 @@ tcModule pcs hst (RnResult { rr_decls = decls, rr_mod = this_mod,
                           lie_rules     `plusLIE`
                           lie_main
        in
-       tcSimplifyTop lie_alldecls      `thenTc` \ const_inst_binds ->
-        traceTc (text "endsimpltop")   `thenTc_`
+       tcSimplifyTop lie_alldecls              `thenTc` \ const_inst_binds ->
+        traceTc (text "endsimpltop")           `thenTc_`
+       
        
            -- Backsubstitution.    This must be done last.
            -- Even tcSimplifyTop may do some unification.
@@ -461,7 +461,6 @@ tcModule pcs hst (RnResult { rr_decls = decls, rr_mod = this_mod,
        in
        traceTc (text "Tc7")            `thenNF_Tc_`
        zonkTopBinds all_binds          `thenNF_Tc` \ (all_binds', final_env)  ->
-       zonkCoreBinds core_binds'       `thenNF_Tc` \ core_binds' ->
        tcSetEnv final_env              $
                -- zonkTopBinds puts all the top-level Ids into the tcGEnv
        traceTc (text "Tc8")            `thenNF_Tc_`
@@ -480,7 +479,6 @@ tcModule pcs hst (RnResult { rr_decls = decls, rr_mod = this_mod,
                              tc_insts   = map iDFunId inst_info,
                              tc_binds   = all_binds', 
                              tc_fords   = foi_decls ++ foe_decls',
-                             tc_cbinds  = core_binds',
                              tc_rules   = src_rules'
                            }
        )
@@ -573,7 +571,7 @@ tcIfaceImports this_mod decls
     fixTc (\ ~(unf_env, _, _, _) ->
        -- This fixTc follows the same general plan as tcImports,
        -- which is better commented (below)
-       tcTyAndClassDecls unf_env this_mod tycl_decls   `thenTc` \ tycl_things ->
+       tcTyAndClassDecls this_mod tycl_decls           `thenTc` \ tycl_things ->
        tcExtendGlobalEnv tycl_things                   $
        tcInterfaceSigs unf_env this_mod tycl_decls     `thenTc` \ sig_ids ->
        tcExtendGlobalValEnv sig_ids                    $
@@ -620,9 +618,9 @@ tcImports unf_env pcs hst this_mod
        -- tcImports recovers internally, but if anything gave rise to
        -- an error we'd better stop now, to avoid a cascade
        
-    traceTc (text "Tc1")                               `thenNF_Tc_`
-    tcTyAndClassDecls unf_env this_mod tycl_decls      `thenTc` \ tycl_things ->
-    tcExtendGlobalEnv tycl_things                      $
+    traceTc (text "Tc1")                       `thenNF_Tc_`
+    tcTyAndClassDecls  this_mod tycl_decls     `thenTc` \ tycl_things ->
+    tcExtendGlobalEnv tycl_things              $
     
        -- Interface type signatures
        -- We tie a knot so that the Ids read out of interfaces are in scope
@@ -679,6 +677,68 @@ addIfaceRules rule_base rules
     add_rule rule_base (IfaceRuleOut id rule) = extendRuleBase rule_base (id, rule)
 \end{code}    
 
+\begin{code}
+typecheckCoreModule
+       :: DynFlags
+       -> PersistentCompilerState
+       -> HomeSymbolTable
+       -> ModIface             -- Iface for this module (just module & fixities)
+       -> [RenamedHsDecl]
+       -> IO (Maybe (PersistentCompilerState, (TypeEnv, [TypecheckedCoreBind], [TypecheckedRuleDecl])))
+typecheckCoreModule dflags pcs hst mod_iface decls
+  = do { maybe_tc_stuff <- typecheck dflags pcs hst alwaysQualify $
+                            tcCoreDecls this_mod decls
+
+--     ; printIfaceDump dflags maybe_tc_stuff
+
+           -- Q: Is it OK not to extend PCS here?
+          -- (in the event that it needs to be, I'm returning the PCS passed in.)
+        ; case maybe_tc_stuff of
+           Nothing -> return Nothing
+           Just result -> return (Just (pcs, result)) }
+  where
+    this_mod = mi_module mod_iface
+    core_decls = [d | (TyClD d) <- decls, isCoreDecl d]
+
+
+tcCoreDecls :: Module 
+           -> [RenamedHsDecl]  -- All interface-file decls
+           -> TcM (TypeEnv, [TypecheckedCoreBind], [TypecheckedRuleDecl])
+tcCoreDecls this_mod decls
+-- The decls are all TyClD declarations coming from External Core input.
+  = let
+       tycl_decls = [d | TyClD d <- decls]
+       rule_decls = [d | RuleD d <- decls]
+       core_decls = filter isCoreDecl tycl_decls
+    in
+    fixTc (\ ~(unf_env, _) ->
+       -- This fixTc follows the same general plan as tcImports,
+       -- which is better commented.
+       -- [ Q: do we need to tie a knot for External Core? ]
+       tcTyAndClassDecls this_mod tycl_decls           `thenTc` \ tycl_things ->
+       tcExtendGlobalEnv tycl_things                   $
+
+        tcInterfaceSigs unf_env this_mod tycl_decls    `thenTc` \ sig_ids ->
+        tcExtendGlobalValEnv sig_ids                   $
+
+       tcCoreBinds core_decls                          `thenTc` \ core_prs ->
+       let
+          local_ids = map fst core_prs
+       in
+       tcExtendGlobalValEnv local_ids                  $
+
+       tcIfaceRules rule_decls                         `thenTc` \ rules ->
+
+       let     
+          src_things = filter (isLocalThing this_mod) tycl_things
+                       ++ map AnId local_ids
+       in
+       tcGetEnv                                        `thenNF_Tc` \ env ->    
+       returnTc (env, (mkTypeEnv src_things, core_prs, rules))
+    )                                                  `thenTc` \ (_, result) ->
+    returnTc result
+\end{code}
+
 
 %************************************************************************
 %*                                                                     *