[project @ 2001-03-15 11:26:27 by simonmar]
[ghc-hetmet.git] / ghc / compiler / main / HscMain.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1993-2000
3 %
4 \section[GHC_Main]{Main driver for Glasgow Haskell compiler}
5
6 \begin{code}
7 module HscMain ( HscResult(..), hscMain, 
8 #ifdef GHCI
9                  hscStmt,
10 #endif
11                  initPersistentCompilerState ) where
12
13 #include "HsVersions.h"
14
15 #ifdef GHCI
16 import ByteCodeGen      ( byteCodeGen )
17 import CoreTidy         ( tidyCoreExpr )
18 import CorePrep         ( corePrepExpr )
19 import Rename           ( renameStmt )
20 import RdrHsSyn         ( RdrNameStmt )
21 import Type             ( Type )
22 import Id               ( Id, idName, setGlobalIdDetails )
23 import IdInfo           ( GlobalIdDetails(VanillaGlobal) )
24 import HscTypes         ( InteractiveContext(..), TyThing(..) )
25 import PrelNames        ( iNTERACTIVE )
26 import StringBuffer     ( stringToStringBuffer )
27 #endif
28
29 import HsSyn
30
31 import Id               ( idName )
32 import IdInfo           ( CafInfo(..), CgInfoEnv, CgInfo(..) )
33 import StringBuffer     ( hGetStringBuffer, freeStringBuffer )
34 import Parser
35 import Lex              ( PState(..), ParseResult(..) )
36 import SrcLoc           ( mkSrcLoc )
37 import Rename           ( checkOldIface, renameModule, closeIfaceDecls )
38 import Rules            ( emptyRuleBase )
39 import PrelInfo         ( wiredInThingEnv, wiredInThings )
40 import PrelNames        ( vanillaSyntaxMap, knownKeyNames )
41 import MkIface          ( completeIface, writeIface, pprIface )
42 import TcModule
43 import InstEnv          ( emptyInstEnv )
44 import Desugar
45 import SimplCore
46 import CoreUtils        ( coreBindsSize )
47 import CoreTidy         ( tidyCorePgm )
48 import CorePrep         ( corePrepPgm )
49 import StgSyn
50 import CoreToStg        ( coreToStg )
51 import SimplStg         ( stg2stg )
52 import CodeGen          ( codeGen )
53 import CodeOutput       ( codeOutput )
54
55 import Module           ( ModuleName, moduleName, mkHomeModule, 
56                           moduleUserString )
57 import CmdLineOpts
58 import ErrUtils         ( dumpIfSet_dyn, showPass, printError )
59 import Util             ( unJust )
60 import UniqSupply       ( mkSplitUniqSupply )
61
62 import Bag              ( emptyBag )
63 import Outputable
64 import Interpreter
65 import CmStaticInfo     ( GhciMode(..) )
66 import HscStats         ( ppSourceStats )
67 import HscTypes
68 import FiniteMap        ( FiniteMap, plusFM, emptyFM, addToFM )
69 import OccName          ( OccName )
70 import Name             ( Name, nameModule, nameOccName, getName, isGlobalName )
71 import NameEnv          ( emptyNameEnv, mkNameEnv )
72 import Module           ( Module, lookupModuleEnvByName )
73 import Maybes           ( orElse )
74
75 import IOExts           ( newIORef, readIORef, writeIORef, unsafePerformIO )
76
77 import Monad            ( when )
78 import Maybe            ( isJust )
79 import IO
80 \end{code}
81
82
83 %************************************************************************
84 %*                                                                      *
85 \subsection{The main compiler pipeline}
86 %*                                                                      *
87 %************************************************************************
88
89 \begin{code}
90 data HscResult
91    -- compilation failed
92    = HscFail     PersistentCompilerState -- updated PCS
93    -- concluded that it wasn't necessary
94    | HscNoRecomp PersistentCompilerState -- updated PCS
95                  ModDetails              -- new details (HomeSymbolTable additions)
96                  ModIface                -- new iface (if any compilation was done)
97    -- did recompilation
98    | HscRecomp   PersistentCompilerState -- updated PCS
99                  ModDetails              -- new details (HomeSymbolTable additions)
100                  ModIface                -- new iface (if any compilation was done)
101                  (Maybe String)          -- generated stub_h filename (in TMPDIR)
102                  (Maybe String)          -- generated stub_c filename (in TMPDIR)
103                  (Maybe ([UnlinkedBCO],ItblEnv)) -- interpreted code, if any
104              
105
106         -- no errors or warnings; the individual passes
107         -- (parse/rename/typecheck) print messages themselves
108
109 hscMain
110   :: GhciMode
111   -> DynFlags
112   -> Module
113   -> ModuleLocation             -- location info
114   -> Bool                       -- True <=> source unchanged
115   -> Bool                       -- True <=> have an object file (for msgs only)
116   -> Maybe ModIface             -- old interface, if available
117   -> HomeSymbolTable            -- for home module ModDetails
118   -> HomeIfaceTable
119   -> PersistentCompilerState    -- IN: persistent compiler state
120   -> IO HscResult
121
122 hscMain ghci_mode dflags mod location source_unchanged have_object 
123         maybe_old_iface hst hit pcs
124  = do {
125       showPass dflags ("Checking old interface for hs = " 
126                         ++ show (ml_hs_file location)
127                         ++ ", hspp = " ++ show (ml_hspp_file location));
128
129       (pcs_ch, errs_found, (recomp_reqd, maybe_checked_iface))
130          <- checkOldIface ghci_mode dflags hit hst pcs 
131                 (unJust "hscMain" (ml_hi_file location))
132                 source_unchanged maybe_old_iface;
133
134       if errs_found then
135          return (HscFail pcs_ch)
136       else do {
137
138       let no_old_iface = not (isJust maybe_checked_iface)
139           what_next | recomp_reqd || no_old_iface = hscRecomp 
140                     | otherwise                   = hscNoRecomp
141       ;
142       what_next ghci_mode dflags have_object mod location 
143                 maybe_checked_iface hst hit pcs_ch
144       }}
145
146
147 -- we definitely expect to have the old interface available
148 hscNoRecomp ghci_mode dflags have_object 
149             mod location (Just old_iface) hst hit pcs_ch
150  | ghci_mode == OneShot
151  = do {
152       hPutStrLn stderr "compilation IS NOT required";
153       let { bomb = panic "hscNoRecomp:OneShot" };
154       return (HscNoRecomp pcs_ch bomb bomb)
155       }
156  | otherwise
157  = do {
158       when (verbosity dflags >= 1) $
159                 hPutStrLn stderr ("Skipping  " ++ 
160                         compMsg have_object mod location);
161
162       -- CLOSURE
163       (pcs_cl, closure_errs, cl_hs_decls) 
164          <- closeIfaceDecls dflags hit hst pcs_ch old_iface ;
165       if closure_errs then 
166          return (HscFail pcs_cl) 
167       else do {
168
169       -- TYPECHECK
170       maybe_tc_result 
171         <- typecheckIface dflags pcs_cl hst old_iface (vanillaSyntaxMap, cl_hs_decls);
172
173       case maybe_tc_result of {
174          Nothing -> return (HscFail pcs_cl);
175          Just (pcs_tc, new_details) ->
176
177       return (HscNoRecomp pcs_tc new_details old_iface)
178       }}}
179
180 compMsg use_object mod location =
181     mod_str ++ take (max 0 (16 - length mod_str)) (repeat ' ')
182     ++" ( " ++ unJust "hscRecomp" (ml_hs_file location) ++ ", "
183     ++ (if use_object
184           then unJust "hscRecomp" (ml_obj_file location)
185           else "interpreted")
186     ++ " )"
187  where mod_str = moduleUserString mod
188
189
190 hscRecomp ghci_mode dflags have_object 
191           mod location maybe_checked_iface hst hit pcs_ch
192  = do   {
193           -- what target are we shooting for?
194         ; let toInterp = dopt_HscLang dflags == HscInterpreted
195
196         ; when (verbosity dflags >= 1) $
197                 hPutStrLn stderr ("Compiling " ++ 
198                         compMsg (not toInterp) mod location);
199
200             -------------------
201             -- PARSE
202             -------------------
203         ; maybe_parsed <- myParseModule dflags 
204                              (unJust "hscRecomp:hspp" (ml_hspp_file location))
205         ; case maybe_parsed of {
206              Nothing -> return (HscFail pcs_ch);
207              Just rdr_module -> do {
208         ; let this_mod = mkHomeModule (hsModuleName rdr_module)
209     
210             -------------------
211             -- RENAME
212             -------------------
213         ; (pcs_rn, print_unqualified, maybe_rn_result) 
214              <- _scc_ "Rename" 
215                  renameModule dflags hit hst pcs_ch this_mod rdr_module
216         ; case maybe_rn_result of {
217              Nothing -> return (HscFail pcs_ch{-was: pcs_rn-});
218              Just (is_exported, new_iface, rn_hs_decls) -> do {
219     
220             -- In interactive mode, we don't want to discard any top-level entities at
221             -- all (eg. do not inline them away during simplification), and retain them
222             -- all in the TypeEnv so they are available from the command line.
223             --
224             -- isGlobalName separates the user-defined top-level names from those
225             -- introduced by the type checker.
226         ; let dont_discard | ghci_mode == Interactive = isGlobalName
227                            | otherwise = is_exported
228
229             -------------------
230             -- TYPECHECK
231             -------------------
232         ; maybe_tc_result 
233             <- _scc_ "TypeCheck" typecheckModule dflags pcs_rn hst new_iface 
234                                              print_unqualified rn_hs_decls 
235         ; case maybe_tc_result of {
236              Nothing -> return (HscFail pcs_ch{-was: pcs_rn-});
237              Just (pcs_tc, tc_result) -> do {
238     
239             -------------------
240             -- DESUGAR
241             -------------------
242         ; (ds_details, foreign_stuff) 
243              <- _scc_ "DeSugar" 
244                 deSugar dflags pcs_tc hst this_mod print_unqualified tc_result
245
246             -------------------
247             -- SIMPLIFY
248             -------------------
249         ; simpl_details
250              <- _scc_     "Core2Core"
251                 core2core dflags pcs_tc hst dont_discard ds_details
252
253             -------------------
254             -- TIDY
255             -------------------
256         ; cg_info_ref <- newIORef Nothing ;
257         ; let cg_info :: CgInfoEnv
258               cg_info = unsafePerformIO $ do {
259                            maybe_cg_env <- readIORef cg_info_ref ;
260                            case maybe_cg_env of
261                              Just env -> return env
262                              Nothing  -> do { printError "Urk! Looked at CgInfo too early!";
263                                               return emptyNameEnv } }
264                 -- cg_info_ref will be filled in just after restOfCodeGeneration
265                 -- Meanwhile, tidyCorePgm is careful not to look at cg_info!
266
267         ; (pcs_simpl, tidy_details) 
268              <- tidyCorePgm dflags this_mod pcs_tc cg_info simpl_details
269       
270             -------------------
271             -- PREPARE FOR CODE GENERATION
272             -------------------
273               -- Do saturation and convert to A-normal form
274         ; prepd_details <- corePrepPgm dflags tidy_details
275
276             -------------------
277             -- CONVERT TO STG and COMPLETE CODE GENERATION
278             -------------------
279         ; let
280             ModDetails{md_binds=binds, md_types=env_tc} = prepd_details
281
282             local_tycons     = typeEnvTyCons  env_tc
283             local_classes    = typeEnvClasses env_tc
284
285             imported_module_names = map ideclName (hsModuleImports rdr_module)
286             imported_modules = map mod_name_to_Module imported_module_names
287
288             (h_code,c_code,fe_binders) = foreign_stuff
289         
290             pit = pcs_PIT pcs_simpl
291
292             mod_name_to_Module :: ModuleName -> Module
293             mod_name_to_Module nm
294                = let str_mi = lookupModuleEnvByName hit nm `orElse`
295                               lookupModuleEnvByName pit nm `orElse`
296                               pprPanic "mod_name_to_Module: no hst or pst mapping for" 
297                                 (ppr nm)
298                  in  mi_module str_mi
299
300         ; (maybe_stub_h_filename, maybe_stub_c_filename,
301            maybe_bcos, final_iface )
302            <- if toInterp
303                 then do 
304                     -----------------  Generate byte code ------------------
305                     (bcos,itbl_env) <- byteCodeGen dflags binds 
306                                         local_tycons local_classes
307
308                     -- Fill in the code-gen info
309                     writeIORef cg_info_ref (Just emptyNameEnv)
310
311                     ------------------ BUILD THE NEW ModIface ------------
312                     final_iface <- _scc_ "MkFinalIface" 
313                           mkFinalIface ghci_mode dflags location 
314                                    maybe_checked_iface new_iface tidy_details
315
316                     return ( Nothing, Nothing, 
317                              Just (bcos,itbl_env), final_iface )
318
319                 else do
320                     -----------------  Convert to STG ------------------
321                     (stg_binds, cost_centre_info, stg_back_end_info) 
322                               <- _scc_ "CoreToStg"
323                                   myCoreToStg dflags this_mod binds
324                     
325                     -- Fill in the code-gen info for the earlier tidyCorePgm
326                     writeIORef cg_info_ref (Just stg_back_end_info)
327
328                     ------------------ BUILD THE NEW ModIface ------------
329                     final_iface <- _scc_ "MkFinalIface" 
330                           mkFinalIface ghci_mode dflags location 
331                                    maybe_checked_iface new_iface tidy_details
332
333                     ------------------  Code generation ------------------
334                     abstractC <- _scc_ "CodeGen"
335                                   codeGen dflags this_mod imported_modules
336                                          cost_centre_info fe_binders
337                                          local_tycons stg_binds
338                     
339                     ------------------  Code output -----------------------
340                     (maybe_stub_h_name, maybe_stub_c_name)
341                        <- codeOutput dflags this_mod local_tycons
342                              binds stg_binds
343                              c_code h_code abstractC
344                         
345                     return ( maybe_stub_h_name, maybe_stub_c_name, 
346                              Nothing, final_iface )
347
348         ; let final_details = tidy_details {md_binds = []} 
349
350
351           -- and the answer is ...
352         ; return (HscRecomp pcs_simpl
353                             final_details
354                             final_iface
355                             maybe_stub_h_filename maybe_stub_c_filename
356                             maybe_bcos)
357           }}}}}}}
358
359
360
361 mkFinalIface ghci_mode dflags location 
362         maybe_old_iface new_iface new_details
363  = case completeIface maybe_old_iface new_iface new_details of
364
365       (new_iface, Nothing) -- no change in the interfacfe
366          -> do when (dopt Opt_D_dump_hi_diffs dflags)
367                     (printDump (text "INTERFACE UNCHANGED"))
368                dumpIfSet_dyn dflags Opt_D_dump_hi
369                              "UNCHANGED FINAL INTERFACE" (pprIface new_iface)
370                return new_iface
371
372       (new_iface, Just sdoc_diffs)
373          -> do dumpIfSet_dyn dflags Opt_D_dump_hi_diffs "INTERFACE HAS CHANGED" 
374                                     sdoc_diffs
375                dumpIfSet_dyn dflags Opt_D_dump_hi "NEW FINAL INTERFACE" 
376                                     (pprIface new_iface)
377
378                -- Write the interface file, if not in interactive mode
379                when (ghci_mode /= Interactive) 
380                     (writeIface (unJust "hscRecomp:hi" (ml_hi_file location))
381                                 new_iface)
382                return new_iface
383
384
385 myParseModule dflags src_filename
386  = do --------------------------  Parser  ----------------
387       showPass dflags "Parser"
388       _scc_  "Parser" do
389
390       buf <- hGetStringBuffer True{-expand tabs-} src_filename
391
392       let glaexts | dopt Opt_GlasgowExts dflags = 1#
393                   | otherwise                   = 0#
394
395       case parseModule buf PState{ bol = 0#, atbol = 1#,
396                                    context = [], glasgow_exts = glaexts,
397                                    loc = mkSrcLoc (_PK_ src_filename) 1 } of {
398
399         PFailed err -> do { hPutStrLn stderr (showSDoc err);
400                             freeStringBuffer buf;
401                             return Nothing };
402
403         POk _ rdr_module@(HsModule mod_name _ _ _ _ _ _) -> do {
404
405       dumpIfSet_dyn dflags Opt_D_dump_parsed "Parser" (ppr rdr_module) ;
406       
407       dumpIfSet_dyn dflags Opt_D_source_stats "Source Statistics"
408                            (ppSourceStats False rdr_module) ;
409       
410       return (Just rdr_module)
411         -- ToDo: free the string buffer later.
412       }}
413
414
415 myCoreToStg dflags this_mod tidy_binds
416  = do 
417       () <- coreBindsSize tidy_binds `seq` return ()
418       -- TEMP: the above call zaps some space usage allocated by the
419       -- simplifier, which for reasons I don't understand, persists
420       -- thoroughout code generation
421
422       stg_binds <- _scc_ "Core2Stg" coreToStg dflags tidy_binds
423
424       (stg_binds2, cost_centre_info)
425            <- _scc_ "Core2Stg" stg2stg dflags this_mod stg_binds
426
427       let env_rhs :: CgInfoEnv
428           env_rhs = mkNameEnv [ (idName bndr, CgInfo (stgRhsArity rhs) caf_info)
429                               | (bind,_) <- stg_binds2, 
430                                 let caf_info 
431                                      | stgBindHasCafRefs bind = MayHaveCafRefs
432                                      | otherwise = NoCafRefs,
433                                 (bndr,rhs) <- stgBindPairs bind ]
434
435       return (stg_binds2, cost_centre_info, env_rhs)
436    where
437       stgBindPairs (StgNonRec _ b r) = [(b,r)]
438       stgBindPairs (StgRec    _ prs) = prs
439 \end{code}
440
441
442 %************************************************************************
443 %*                                                                      *
444 \subsection{Compiling a do-statement}
445 %*                                                                      *
446 %************************************************************************
447
448 \begin{code}
449 #ifdef GHCI
450 hscStmt
451   :: DynFlags
452   -> HomeSymbolTable    
453   -> HomeIfaceTable
454   -> PersistentCompilerState    -- IN: persistent compiler state
455   -> InteractiveContext         -- Context for compiling
456   -> String                     -- The statement
457   -> Bool                       -- just treat it as an expression
458   -> IO ( PersistentCompilerState, 
459           Maybe ( [Id], 
460                   Type, 
461                   UnlinkedBCOExpr) )
462 \end{code}
463
464 When the UnlinkedBCOExpr is linked you get an HValue of type
465         IO [HValue]
466 When you run it you get a list of HValues that should be 
467 the same length as the list of names; add them to the ClosureEnv.
468
469 A naked expression returns a singleton Name [it].
470
471         What you type                   The IO [HValue] that hscStmt returns
472         -------------                   ------------------------------------
473         let pat = expr          ==>     let pat = expr in return [coerce HVal x, coerce HVal y, ...]
474                                         bindings: [x,y,...]
475
476         pat <- expr             ==>     expr >>= \ pat -> return [coerce HVal x, coerce HVal y, ...]
477                                         bindings: [x,y,...]
478
479         expr (of IO type)       ==>     expr >>= \ v -> return [v]
480           [NB: result not printed]      bindings: [it]
481           
482
483         expr (of non-IO type, 
484           result showable)      ==>     let v = expr in print v >> return [v]
485                                         bindings: [it]
486
487         expr (of non-IO type, 
488           result not showable)  ==>     error
489
490 \begin{code}
491 hscStmt dflags hst hit pcs0 icontext stmt just_expr
492    = let 
493         InteractiveContext { 
494              ic_rn_env   = rn_env, 
495              ic_type_env = type_env,
496              ic_module   = scope_mod } = icontext
497      in
498      do { maybe_stmt <- hscParseStmt dflags stmt
499         ; case maybe_stmt of
500              Nothing -> return (pcs0, Nothing)
501              Just parsed_stmt -> do {
502
503            let { notExprStmt (ExprStmt _ _) = False;
504                  notExprStmt _              = True 
505                };
506
507            if (just_expr && notExprStmt parsed_stmt)
508                 then do hPutStrLn stderr ("not an expression: `" ++ stmt ++ "'")
509                         return (pcs0, Nothing)
510                 else do {
511
512                 -- Rename it
513           (pcs1, print_unqual, maybe_renamed_stmt)
514                  <- renameStmt dflags hit hst pcs0 scope_mod 
515                                 iNTERACTIVE rn_env parsed_stmt
516
517         ; case maybe_renamed_stmt of
518                 Nothing -> return (pcs0, Nothing)
519                 Just (bound_names, rn_stmt) -> do {
520
521                 -- Typecheck it
522           maybe_tc_return <- 
523             if just_expr 
524                 then case rn_stmt of { (syn, ExprStmt e _, decls) -> 
525                      typecheckExpr dflags pcs1 hst type_env
526                            print_unqual iNTERACTIVE (syn,e,decls) }
527                 else typecheckStmt dflags pcs1 hst type_env
528                            print_unqual iNTERACTIVE bound_names rn_stmt
529
530         ; case maybe_tc_return of
531                 Nothing -> return (pcs0, Nothing)
532                 Just (pcs2, tc_expr, bound_ids, ty) ->  do {
533
534                 -- Desugar it
535           ds_expr <- deSugarExpr dflags pcs2 hst iNTERACTIVE print_unqual tc_expr
536         
537                 -- Simplify it
538         ; simpl_expr <- simplifyExpr dflags pcs2 hst ds_expr
539
540                 -- Tidy it (temporary, until coreSat does cloning)
541         ; tidy_expr <- tidyCoreExpr simpl_expr
542
543                 -- Prepare for codegen
544         ; prepd_expr <- corePrepExpr dflags tidy_expr
545
546                 -- Convert to BCOs
547         ; bcos <- coreExprToBCOs dflags prepd_expr
548
549         ; let
550                 -- Make all the bound ids "global" ids, now that
551                 -- they're notionally top-level bindings.  This is
552                 -- important: otherwise when we come to compile an expression
553                 -- using these ids later, the byte code generator will consider
554                 -- the occurrences to be free rather than global.
555              global_bound_ids = map globaliseId bound_ids;
556              globaliseId id   = setGlobalIdDetails id VanillaGlobal
557
558         ; return (pcs2, Just (global_bound_ids, ty, bcos))
559
560      }}}}}
561
562 hscParseStmt :: DynFlags -> String -> IO (Maybe RdrNameStmt)
563 hscParseStmt dflags str
564  = do --------------------------  Parser  ----------------
565       showPass dflags "Parser"
566       _scc_ "Parser" do
567
568       buf <- stringToStringBuffer str
569
570       let glaexts | dopt Opt_GlasgowExts dflags = 1#
571                   | otherwise                   = 0#
572
573       case parseStmt buf PState{ bol = 0#, atbol = 1#,
574                                  context = [], glasgow_exts = glaexts,
575                                  loc = mkSrcLoc SLIT("<no file>") 0 } of {
576
577         PFailed err -> do { hPutStrLn stderr (showSDoc err);
578 --      Not yet implemented in <4.11    freeStringBuffer buf;
579                             return Nothing };
580
581         -- no stmt: the line consisted of just space or comments
582         POk _ Nothing -> return Nothing;
583
584         POk _ (Just rdr_stmt) -> do {
585
586       --ToDo: can't free the string buffer until we've finished this
587       -- compilation sweep and all the identifiers have gone away.
588       --freeStringBuffer buf;
589       dumpIfSet_dyn dflags Opt_D_dump_parsed "Parser" (ppr rdr_stmt);
590       return (Just rdr_stmt)
591       }}
592 #endif
593 \end{code}
594
595 %************************************************************************
596 %*                                                                      *
597 \subsection{Initial persistent state}
598 %*                                                                      *
599 %************************************************************************
600
601 \begin{code}
602 initPersistentCompilerState :: IO PersistentCompilerState
603 initPersistentCompilerState 
604   = do prs <- initPersistentRenamerState
605        return (
606         PCS { pcs_PIT   = emptyIfaceTable,
607               pcs_PTE   = wiredInThingEnv,
608               pcs_insts = emptyInstEnv,
609               pcs_rules = emptyRuleBase,
610               pcs_PRS   = prs
611             }
612         )
613
614 initPersistentRenamerState :: IO PersistentRenamerState
615   = do us <- mkSplitUniqSupply 'r'
616        return (
617         PRS { prsOrig  = NameSupply { nsUniqs = us,
618                                       nsNames = initOrigNames,
619                                       nsIPs   = emptyFM },
620               prsDecls   = (emptyNameEnv, 0),
621               prsInsts   = (emptyBag, 0),
622               prsRules   = (emptyBag, 0),
623               prsImpMods = emptyFM
624             }
625         )
626
627 initOrigNames :: FiniteMap (ModuleName,OccName) Name
628 initOrigNames 
629    = grab knownKeyNames `plusFM` grab (map getName wiredInThings)
630      where
631         grab names = foldl add emptyFM names
632         add env name 
633            = addToFM env (moduleName (nameModule name), nameOccName name) name
634
635
636 initRules :: PackageRuleBase
637 initRules = emptyRuleBase
638 {- SHOULD BE (ish)
639             foldl add emptyVarEnv builtinRules
640           where
641             add env (name,rule) 
642               = extendRuleBase env name rule
643 -}
644 \end{code}