[project @ 2003-10-13 10:43:02 by simonpj]
[ghc-hetmet.git] / ghc / compiler / iface / TcIface.lhs
index 911f4b1..dce075c 100644 (file)
@@ -6,7 +6,7 @@
 \begin{code}
 module TcIface ( 
        tcImportDecl, typecheckIface,
-       tcIfaceKind, loadImportedInsts, 
+       tcIfaceKind, loadImportedInsts, loadImportedRules,
        tcExtCoreBindings
  ) where
 #include "HsVersions.h"
@@ -25,13 +25,14 @@ import Type         ( Kind, openTypeKind, liftedTypeKind,
                          mkTyVarTys, mkGenTyConApp, mkTyVarTys, ThetaType )
 import TypeRep         ( Type(..), PredType(..) )
 import TyCon           ( TyCon, tyConName )
-import HscTypes                ( ExternalPackageState(..), PackageInstEnv,
-                         TyThing(..), implicitTyThings, 
-                         ModIface(..), ModDetails(..), InstPool, 
+import HscTypes                ( ExternalPackageState(..), PackageInstEnv, PackageRuleBase,
+                         HscEnv, TyThing(..), implicitTyThings, typeEnvIds,
+                         ModIface(..), ModDetails(..), InstPool, ModGuts,
                          TypeEnv, mkTypeEnv, extendTypeEnvList, lookupTypeEnv,
                          DeclPool, RulePool, Pool(..), Gated, addRuleToPool )
 import InstEnv         ( extendInstEnv )
 import CoreSyn
+import PprCore         ( pprIdRules )
 import Rules           ( extendRuleBaseList )
 import CoreUtils       ( exprType )
 import CoreUnfold
@@ -112,12 +113,12 @@ tcImportDecl name
   = do { 
     -- Make sure the interface is loaded
        ; let { nd_doc = ptext SLIT("Need decl for") <+> ppr name }
-       ; traceIf nd_doc
+       ; traceIf (nd_doc <+> char '{')         -- Brace matches the later message
        ; loadHomeInterface nd_doc name
 
     -- Get the real name of the thing, with a correct nameParent field.
-    -- Before the interface is loaded, we may have a non-commital 'Nothing' in
-    -- the namePareent field (made up by IfaceEnv.lookupOrig), but 
+    -- Before the interface is loaded, we may have a non-committal 'Nothing'
+    -- in the namePareent field (made up by IfaceEnv.lookupOrig), but 
     -- loading the interface updates the name cache.
     -- We need the right nameParent field in getThing
        ; real_name <- lookupOrig (nameModuleName name) (nameOccName name)
@@ -132,7 +133,7 @@ tcImportDecl name
 
        ; let { extra | getName main_thing == real_name = empty
                      | otherwise = brackets (ptext SLIT("when seeking") <+> ppr real_name) }
-       ; traceIf (ptext SLIT("...imported decl for") <+> ppr main_thing <+> extra)
+       ; traceIf (ptext SLIT(" ...imported decl for") <+> ppr main_thing <+> extra <+> char '}')
 
 
     -- Look up the wanted Name in the type envt; it might be
@@ -152,7 +153,7 @@ recordImportOf :: TyThing -> IfG ()
 --          whose gates are all in the type envt, is in eps_rule_base
 
 recordImportOf thing
-  = do         { (new_things, iface_rules) <- updateEps (\ eps -> 
+  = do         { new_things <- updateEps (\ eps -> 
            let { new_things   = thing : implicitTyThings thing 
                ; new_type_env = extendTypeEnvList (eps_PTE eps) new_things
                -- NB: opportunity for a very subtle loop here!
@@ -163,23 +164,12 @@ recordImportOf thing
                --      * which pokes the suspended forks
                --      * which, to execute, need to consult type-env (to check
                --        entirely unrelated types, perhaps)
-
-               ; (new_rules, iface_rules) = selectRules (eps_rules eps) 
-                                                        (map getName new_things)
-                                                        new_type_env }
-           in (eps { eps_PTE = new_type_env, eps_rules = new_rules }, 
-               (new_things, iface_rules))
+           }
+           in (eps { eps_PTE = new_type_env }, new_things)
          )
-
-    -- Now type-check those rules (which may side-effect the EPS again)
        ; traceIf (text "tcImport: extend type env" <+> ppr new_things)
-       ; core_rules <- mapM tc_rule iface_rules
-       ; updateEps_ (\ eps -> 
-           eps { eps_rule_base = extendRuleBaseList (eps_rule_base eps) core_rules }
-         ) }
+       }
        
-tc_rule (mod, rule) = initIfaceLcl mod (tcIfaceRule rule)
-
 getThing :: Name -> IfG TyThing
 -- Find and typecheck the thing; the Name might be a "subordinate name"
 -- of the "main thing" (e.g. the constructor of a data type declaration)
@@ -445,10 +435,6 @@ loadImportedInsts cls tys
        ; let { (inst_pool', iface_insts) 
                    = selectInsts (eps_insts eps) cls_gate tc_gates }
 
-       ; traceTc (text "loadImportedInsts" <+> vcat [ppr cls <+> ppr tys,
-                       text "new pool" <+> ppr inst_pool',
-                       text "new insts" <+> ppr iface_insts])
-
        -- Empty => finish up rapidly, without writing to eps
        ; if null iface_insts then
                return (eps_inst_env eps)
@@ -506,30 +492,50 @@ are in the type environment.  However, remember that typechecking a Rule may
 (as a side effect) augment the type envt, and so we may need to iterate the process.
 
 \begin{code}
-selectRules :: RulePool 
-           -> [Name]           -- Names of things being added
-           -> TypeEnv          -- New type env, including things being added
-           -> (RulePool, [(ModuleName, IfaceRule)])
-selectRules (Pool rules n_in n_out) new_names type_env
-  = (Pool rules' n_in (n_out + length iface_rules), iface_rules)
+loadImportedRules :: HscEnv -> ModGuts -> IO PackageRuleBase
+loadImportedRules hsc_env guts
+  = initIfaceRules hsc_env guts $ do 
+       { -- Get new rules
+         if_rules <- updateEps (\ eps ->
+               let { (new_pool, if_rules) = selectRules (eps_rules eps) (eps_PTE eps) }
+               in (eps { eps_rules = new_pool }, if_rules) )
+
+       ; traceIf (ptext SLIT("Importing rules:") <+> vcat (map ppr if_rules))
+
+       ; let tc_rule (mod, rule) = initIfaceLcl mod (tcIfaceRule rule)
+       ; core_rules <- mapM tc_rule if_rules
+
+       -- Debug print
+       ; traceIf (ptext SLIT("Imported rules:") <+> pprIdRules core_rules)
+       
+       -- Update the rule base and return it
+       ; updateEps (\ eps -> 
+           let { new_rule_base = extendRuleBaseList (eps_rule_base eps) core_rules }
+           in (eps { eps_rule_base = new_rule_base }, new_rule_base)
+         ) 
+
+       -- Strictly speaking, at this point we should go round again, since
+       -- typechecking one set of rules may bring in new things which enable
+       -- some more rules to come in.  But we call loadImportedRules several
+       -- times anyway, so I'm going to be lazy and ignore this.
+    }
+
+
+selectRules :: RulePool -> TypeEnv -> (RulePool, [(ModuleName, IfaceRule)])
+-- Not terribly efficient.  Look at each rule in the pool to see if
+-- all its gates are in the type env.  If so, take it out of the pool.
+-- If not, trim its gates for next time.
+selectRules (Pool rules n_in n_out) type_env
+  = (Pool rules' n_in (n_out + length if_rules), if_rules)
   where
-    (rules', iface_rules) = foldl select_one (rules, []) new_names
-
-    select_one :: (NameEnv [Gated IfaceRule], [(ModuleName, IfaceRule)]) -> Name
-              -> (NameEnv [Gated IfaceRule], [(ModuleName, IfaceRule)])
-    select_one (rules, decls) name
-       = case lookupNameEnv rules name of
-           Nothing          -> (rules, decls)
-           Just gated_rules -> foldl filter_rule (delFromNameEnv rules name, decls) gated_rules
-
-    filter_rule :: (NameEnv [Gated IfaceRule], [(ModuleName, IfaceRule)]) -> Gated IfaceRule 
-               -> (NameEnv [Gated IfaceRule], [(ModuleName, IfaceRule)])
-    filter_rule (rules, decls) (rule_fvs, rule)
-       = case [fv | fv <- rule_fvs, not (fv `elemNameEnv` type_env)] of
-           [] ->       -- No remaining FVs, so slurp it
-                       (rules, rule:decls)
-           fvs ->      -- There leftover fvs, so toss it back in the pool
-                       (addRuleToPool rules rule fvs, decls)
+    (rules', if_rules) = foldl do_one ([], []) rules
+
+    do_one (pool, if_rules) (gates, rule)
+       | null gates' = (pool, rule:if_rules)
+       | otherwise   = ((gates',rule) : pool, if_rules)
+       where
+         gates' = filter (`elemNameEnv` type_env) gates
+
 
 tcIfaceRule :: IfaceRule -> IfL IdCoreRule
 tcIfaceRule (IfaceRule {ifRuleName = rule_name, ifActivation = act, ifRuleBndrs = bndrs,
@@ -829,7 +835,8 @@ tcPragExpr name expr
 
                -- Check for type consistency in the unfolding
     ifOptM Opt_DoCoreLinting (
-       case lintUnfolding noSrcLoc [{- in scope -}] core_expr' of
+       get_in_scope_ids                        `thenM` \ in_scope -> 
+       case lintUnfolding noSrcLoc in_scope core_expr' of
          Nothing       -> returnM ()
          Just fail_msg -> pprPanic "Iface Lint failure" (doc <+> fail_msg)
     )                          `thenM_`
@@ -837,6 +844,14 @@ tcPragExpr name expr
    returnM core_expr'  
   where
     doc = text "Unfolding of" <+> ppr name
+    get_in_scope_ids   -- Urgh; but just for linting
+       = setLclEnv () $ 
+         do    { env <- getGblEnv 
+               ; case if_rec_types env of {
+                         Nothing -> return [] ;
+                         Just (_, get_env) -> do
+               { type_env <- get_env
+               ; return (typeEnvIds type_env) }}}
 \end{code}