f7f9c9fe7e16522ef9e572788e6832c2b29ec0da
[ghc-hetmet.git] / ghc / compiler / rename / RnHiFiles.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section{Dealing with interface files}
5
6 \begin{code}
7 module RnHiFiles (
8         readIface, findAndReadIface, loadInterface, loadHomeInterface, 
9         tryLoadInterface, loadOrphanModules,
10         loadExports, loadFixDecls, loadDeprecs,
11
12         lookupFixityRn, 
13
14         getTyClDeclBinders, 
15         removeContext           -- removeContext probably belongs somewhere else
16    ) where
17
18 #include "HsVersions.h"
19
20 import CmdLineOpts      ( opt_IgnoreIfacePragmas )
21 import HscTypes         ( ModuleLocation(..),
22                           ModIface(..), emptyModIface,
23                           VersionInfo(..), ImportedModuleInfo,
24                           lookupIfaceByModName, 
25                           ImportVersion, WhetherHasOrphans, IsBootInterface,
26                           DeclsMap, GatedDecl, IfaceInsts, IfaceRules,
27                           AvailInfo, GenAvailInfo(..), Avails, Deprecations(..)
28                          )
29 import HsSyn            ( TyClDecl(..), InstDecl(..),
30                           HsType(..), FixitySig(..), RuleDecl(..),
31                           tyClDeclNames, tyClDeclSysNames
32                         )
33 import RdrHsSyn         ( RdrNameTyClDecl, RdrNameInstDecl, RdrNameRuleDecl,
34                           extractHsTyRdrNames 
35                         )
36 import BasicTypes       ( Version, defaultFixity )
37 import RnEnv
38 import RnMonad
39 import ParseIface       ( parseIface, IfaceStuff(..) )
40
41 import Name             ( Name {-instance NamedThing-}, nameOccName,
42                           nameModule, isLocalName, nameIsLocalOrFrom,
43                           NamedThing(..),
44                          )
45 import Name             ( mkNameEnv, extendNameEnv )
46 import Module           ( Module, 
47                           moduleName, isHomeModule,
48                           ModuleName, WhereFrom(..),
49                           extendModuleEnv, mkVanillaModule
50                         )
51 import RdrName          ( RdrName, rdrNameOcc )
52 import SrcLoc           ( mkSrcLoc )
53 import Maybes           ( maybeToBool, orElse )
54 import StringBuffer     ( hGetStringBuffer )
55 import FastString       ( mkFastString )
56 import ErrUtils         ( Message )
57 import Finder           ( findModule )
58 import Lex
59 import FiniteMap
60 import Outputable
61 import Bag
62 import Config
63
64 import Directory
65 \end{code}
66
67
68 %*********************************************************
69 %*                                                      *
70 \subsection{Loading a new interface file}
71 %*                                                      *
72 %*********************************************************
73
74 \begin{code}
75 loadHomeInterface :: SDoc -> Name -> RnM d ModIface
76 loadHomeInterface doc_str name
77   = ASSERT2( not (isLocalName name), ppr name <+> parens doc_str )
78     loadInterface doc_str (moduleName (nameModule name)) ImportBySystem
79
80 loadOrphanModules :: [ModuleName] -> RnM d ()
81 loadOrphanModules mods
82   | null mods = returnRn ()
83   | otherwise = traceRn (text "Loading orphan modules:" <+> 
84                          fsep (map ppr mods))                   `thenRn_` 
85                 mapRn_ load mods                                `thenRn_`
86                 returnRn ()
87   where
88     load mod   = loadInterface (mk_doc mod) mod ImportBySystem
89     mk_doc mod = ppr mod <+> ptext SLIT("is a orphan-instance module")
90
91 loadInterface :: SDoc -> ModuleName -> WhereFrom -> RnM d ModIface
92 loadInterface doc mod from 
93   = tryLoadInterface doc mod from       `thenRn` \ (ifaces, maybe_err) ->
94     case maybe_err of
95         Nothing  -> returnRn ifaces
96         Just err -> failWithRn ifaces err
97
98 tryLoadInterface :: SDoc -> ModuleName -> WhereFrom -> RnM d (ModIface, Maybe Message)
99   -- Returns (Just err) if an error happened
100   -- It *doesn't* add an error to the monad, because sometimes it's ok to fail...
101   -- Specifically, when we read the usage information from an interface file,
102   -- we try to read the interfaces it mentions.  But it's OK to fail; perhaps
103   -- the module has changed, and that interface is no longer used.
104   
105   -- tryLoadInterface guarantees to return with iImpModInfo m --> (..., True)
106   -- (If the load fails, we plug in a vanilla placeholder)
107 tryLoadInterface doc_str mod_name from
108  = getHomeIfaceTableRn          `thenRn` \ hit ->
109    getModuleRn                  `thenRn` \ this_mod ->
110    getIfacesRn                  `thenRn` \ ifaces@(Ifaces { iPIT = pit }) ->
111
112         -- CHECK WHETHER WE HAVE IT ALREADY
113    case lookupIfaceByModName hit pit mod_name of {
114         Just iface |  case from of
115                         ImportByUser       -> not (mi_boot iface)
116                         ImportByUserSource -> mi_boot iface
117                         ImportBySystem     -> True
118                    -> returnRn (iface, Nothing) ;       -- Already loaded
119                         -- The not (mi_boot iface) test checks that the already-loaded
120                         -- interface isn't a boot iface.  This can conceivably happen,
121                         -- if the version checking happened to load a boot interface
122                         -- before we got to real imports.  
123         other       -> 
124
125    let
126         mod_map  = iImpModInfo ifaces
127         mod_info = lookupFM mod_map mod_name
128
129         hi_boot_file 
130           = case (from, mod_info) of
131                 (ImportByUser,       _)             -> False    -- Not hi-boot
132                 (ImportByUserSource, _)             -> True     -- hi-boot
133                 (ImportBySystem, Just (_, is_boot)) -> is_boot
134                 (ImportBySystem, Nothing)           -> False
135                         -- We're importing a module we know absolutely
136                         -- nothing about, so we assume it's from
137                         -- another package, where we aren't doing 
138                         -- dependency tracking. So it won't be a hi-boot file.
139
140         redundant_source_import 
141           = case (from, mod_info) of 
142                 (ImportByUserSource, Just (_,False)) -> True
143                 other                                -> False
144    in
145
146         -- Issue a warning for a redundant {- SOURCE -} import
147         -- NB that we arrange to read all the ordinary imports before 
148         -- any of the {- SOURCE -} imports
149    warnCheckRn  (not redundant_source_import)
150                 (warnRedundantSourceImport mod_name)    `thenRn_`
151
152         -- Check that we aren't importing ourselves. 
153         -- That only happens in Rename.checkOldIface, 
154         -- which doesn't call tryLoadInterface
155    warnCheckRn  (moduleName this_mod /= mod_name)
156                 (warnSelfImport this_mod)               `thenRn_`
157
158         -- READ THE MODULE IN
159    findAndReadIface doc_str mod_name hi_boot_file   `thenRn` \ read_result ->
160    case read_result of {
161         Left err ->     -- Not found, so add an empty export env to the Ifaces map
162                         -- so that we don't look again
163            let
164                 fake_mod    = mkVanillaModule mod_name
165                 fake_iface  = emptyModIface fake_mod
166                 new_ifaces  = ifaces { iPIT = extendModuleEnv pit fake_mod fake_iface }
167            in
168            setIfacesRn new_ifaces               `thenRn_`
169            returnRn (fake_iface, Just err) ;
170
171         -- Found and parsed!
172         Right (mod, iface) ->
173
174         -- LOAD IT INTO Ifaces
175
176         -- NB: *first* we do loadDecl, so that the provenance of all the locally-defined
177         ---    names is done correctly (notably, whether this is an .hi file or .hi-boot file).
178         --     If we do loadExport first the wrong info gets into the cache (unless we
179         --      explicitly tag each export which seems a bit of a bore)
180
181
182         -- Sanity check.  If we're system-importing a module we know nothing at all
183         -- about, it should be from a different package to this one
184     WARN( not (maybeToBool mod_info) && 
185           case from of { ImportBySystem -> True; other -> False } &&
186           isHomeModule mod,
187           ppr mod )
188
189     loadDecls mod               (iDecls ifaces)   (pi_decls iface)      `thenRn` \ (decls_vers, new_decls) ->
190     loadRules mod               (iRules ifaces)   (pi_rules iface)      `thenRn` \ (rule_vers, new_rules) ->
191     loadInstDecls mod           (iInsts ifaces)   (pi_insts iface)      `thenRn` \ new_insts ->
192     loadExports                                   (pi_exports iface)    `thenRn` \ (export_vers, avails) ->
193     loadFixDecls mod                              (pi_fixity iface)     `thenRn` \ fix_env ->
194     loadDeprecs mod                               (pi_deprecs iface)    `thenRn` \ deprec_env ->
195     let
196         version = VersionInfo { vers_module  = pi_vers iface, 
197                                 vers_exports = export_vers,
198                                 vers_rules = rule_vers,
199                                 vers_decls = decls_vers }
200
201         -- For an explicit user import, add to mod_map info about
202         -- the things the imported module depends on, extracted
203         -- from its usage info; and delete the module itself, which is now in the PIT
204         mod_map1 = case from of
205                         ImportByUser -> addModDeps mod is_loaded (pi_usages iface) mod_map
206                         other        -> mod_map
207         mod_map2 = delFromFM mod_map1 mod_name
208
209         this_mod_name = moduleName this_mod
210         is_loaded m   =  m == this_mod_name 
211                       || maybeToBool (lookupIfaceByModName hit pit m)
212                 -- We treat the currently-being-compiled module as 'loaded' because
213                 -- even though it isn't yet in the HIT or PIT; otherwise it gets
214                 -- put into iImpModInfo, and then spat out into its own interface
215                 -- file as a dependency
216
217         -- Now add info about this module to the PIT
218         has_orphans = pi_orphan iface
219         new_pit   = extendModuleEnv pit mod mod_iface
220         mod_iface = ModIface { mi_module = mod, mi_version = version,
221                                mi_orphan = has_orphans, mi_boot = hi_boot_file,
222                                mi_exports = avails, 
223                                mi_fixities = fix_env, mi_deprecs = deprec_env,
224                                mi_usages  = [], -- Will be filled in later
225                                mi_decls   = panic "No mi_decls in PIT",
226                                mi_globals = mkIfaceGlobalRdrEnv avails
227                     }
228
229         new_ifaces = ifaces { iPIT        = new_pit,
230                               iDecls      = new_decls,
231                               iInsts      = new_insts,
232                               iRules      = new_rules,
233                               iImpModInfo = mod_map2  }
234     in
235     seq mod_map2 $
236     setIfacesRn new_ifaces              `thenRn_`
237     returnRn (mod_iface, Nothing)
238     }}
239
240 -----------------------------------------------------
241 --      Adding module dependencies from the 
242 --      import decls in the interface file
243 -----------------------------------------------------
244
245 addModDeps :: Module 
246            -> (ModuleName -> Bool)      -- True for modules that are already loaded
247            -> [ImportVersion a] 
248            -> ImportedModuleInfo -> ImportedModuleInfo
249 -- (addModDeps M ivs deps)
250 -- We are importing module M, and M.hi contains 'import' decls given by ivs
251 addModDeps mod is_loaded new_deps mod_deps
252   = foldr add mod_deps filtered_new_deps
253   where
254         -- Don't record dependencies when importing a module from another package
255         -- Except for its descendents which contain orphans,
256         -- and in that case, forget about the boot indicator
257     filtered_new_deps :: [(ModuleName, (WhetherHasOrphans, IsBootInterface))]
258     filtered_new_deps
259         | isHomeModule mod  = [ (imp_mod, (has_orphans, is_boot))
260                               | (imp_mod, has_orphans, is_boot, _) <- new_deps,
261                                 not (is_loaded imp_mod)
262                               ]                       
263         | otherwise         = [ (imp_mod, (True, False))
264                               | (imp_mod, has_orphans, _, _) <- new_deps,
265                                 not (is_loaded imp_mod) && has_orphans
266                               ]
267     add (imp_mod, dep) deps = addToFM_C combine deps imp_mod dep
268
269     combine old@(old_has_orphans, old_is_boot) new@(new_has_orphans, new_is_boot)
270         | old_is_boot = new     -- Record the best is_boot info
271         | otherwise   = old
272
273 -----------------------------------------------------
274 --      Loading the export list
275 -----------------------------------------------------
276
277 loadExports :: (Version, [ExportItem]) -> RnM d (Version, [(ModuleName,Avails)])
278 loadExports (vers, items)
279   = mapRn loadExport items      `thenRn` \ avails_s ->
280     returnRn (vers, avails_s)
281
282
283 loadExport :: ExportItem -> RnM d (ModuleName, Avails)
284 loadExport (mod, entities)
285   = mapRn (load_entity mod) entities    `thenRn` \ avails ->
286     returnRn (mod, avails)
287   where
288     load_entity mod (Avail occ)
289       = newGlobalName mod occ   `thenRn` \ name ->
290         returnRn (Avail name)
291     load_entity mod (AvailTC occ occs)
292       = newGlobalName mod occ           `thenRn` \ name ->
293         mapRn (newGlobalName mod) occs  `thenRn` \ names ->
294         returnRn (AvailTC name names)
295
296
297 -----------------------------------------------------
298 --      Loading type/class/value decls
299 -----------------------------------------------------
300
301 loadDecls :: Module 
302           -> DeclsMap
303           -> [(Version, RdrNameTyClDecl)]
304           -> RnM d (NameEnv Version, DeclsMap)
305 loadDecls mod (decls_map, n_slurped) decls
306   = foldlRn (loadDecl mod) (emptyNameEnv, decls_map) decls      `thenRn` \ (vers, decls_map') -> 
307     returnRn (vers, (decls_map', n_slurped))
308
309 loadDecl mod (version_map, decls_map) (version, decl)
310   = getTyClDeclBinders mod decl `thenRn` \ (avail, sys_names) ->
311     let
312         full_avail    = case avail of
313                           Avail n -> avail
314                           AvailTC n ns -> AvailTC n (sys_names ++ ns)
315         main_name     = availName full_avail
316         new_decls_map = extendNameEnvList decls_map stuff
317         stuff         = [ (name, (full_avail, name==main_name, (mod, decl))) 
318                         | name <- availNames full_avail]
319
320         new_version_map = extendNameEnv version_map main_name version
321     in
322     returnRn (new_version_map, new_decls_map)
323
324 -----------------------------------------------------
325 --      Loading fixity decls
326 -----------------------------------------------------
327
328 loadFixDecls mod decls
329   = mapRn (loadFixDecl mod_name) decls  `thenRn` \ to_add ->
330     returnRn (mkNameEnv to_add)
331   where
332     mod_name = moduleName mod
333
334 loadFixDecl mod_name sig@(FixitySig rdr_name fixity loc)
335   = newGlobalName mod_name (rdrNameOcc rdr_name)        `thenRn` \ name ->
336     returnRn (name, fixity)
337
338
339 -----------------------------------------------------
340 --      Loading instance decls
341 -----------------------------------------------------
342
343 loadInstDecls :: Module
344               -> IfaceInsts
345               -> [RdrNameInstDecl]
346               -> RnM d IfaceInsts
347 loadInstDecls mod (insts, n_slurped) decls
348   = setModuleRn mod $
349     foldlRn (loadInstDecl mod) insts decls      `thenRn` \ insts' ->
350     returnRn (insts', n_slurped)
351
352
353 loadInstDecl mod insts decl@(InstDecl inst_ty _ _ _ _)
354   =     -- Find out what type constructors and classes are "gates" for the
355         -- instance declaration.  If all these "gates" are slurped in then
356         -- we should slurp the instance decl too.
357         -- 
358         -- We *don't* want to count names in the context part as gates, though.
359         -- For example:
360         --              instance Foo a => Baz (T a) where ...
361         --
362         -- Here the gates are Baz and T, but *not* Foo.
363     let 
364         munged_inst_ty = removeContext inst_ty
365         free_names     = extractHsTyRdrNames munged_inst_ty
366     in
367     mapRn lookupIfaceName free_names    `thenRn` \ gate_names ->
368     returnRn ((gate_names, (mod, decl)) `consBag` insts)
369
370
371 -- In interface files, the instance decls now look like
372 --      forall a. Foo a -> Baz (T a)
373 -- so we have to strip off function argument types as well
374 -- as the bit before the '=>' (which is always empty in interface files)
375 removeContext (HsForAllTy tvs cxt ty) = HsForAllTy tvs [] (removeFuns ty)
376 removeContext ty                      = removeFuns ty
377
378 removeFuns (HsFunTy _ ty) = removeFuns ty
379 removeFuns ty               = ty
380
381
382 -----------------------------------------------------
383 --      Loading Rules
384 -----------------------------------------------------
385
386 loadRules :: Module -> IfaceRules 
387           -> (Version, [RdrNameRuleDecl])
388           -> RnM d (Version, IfaceRules)
389 loadRules mod (rule_bag, n_slurped) (version, rules)
390   | null rules || opt_IgnoreIfacePragmas 
391   = returnRn (version, (rule_bag, n_slurped))
392   | otherwise
393   = setModuleRn mod                     $
394     mapRn (loadRule mod) rules          `thenRn` \ new_rules ->
395     returnRn (version, (rule_bag `unionBags` listToBag new_rules, n_slurped))
396
397 loadRule :: Module -> RdrNameRuleDecl -> RnM d (GatedDecl RdrNameRuleDecl)
398 -- "Gate" the rule simply by whether the rule variable is
399 -- needed.  We can refine this later.
400 loadRule mod decl@(IfaceRule _ _ var _ _ src_loc)
401   = lookupIfaceName var         `thenRn` \ var_name ->
402     returnRn ([var_name], (mod, decl))
403
404
405 -----------------------------------------------------
406 --      Loading Deprecations
407 -----------------------------------------------------
408
409 loadDeprecs :: Module -> IfaceDeprecs -> RnM d Deprecations
410 loadDeprecs m Nothing                                  = returnRn NoDeprecs
411 loadDeprecs m (Just (Left txt))  = returnRn (DeprecAll txt)
412 loadDeprecs m (Just (Right prs)) = setModuleRn m                                $
413                                    foldlRn loadDeprec emptyNameEnv prs  `thenRn` \ env ->
414                                    returnRn (DeprecSome env)
415 loadDeprec deprec_env (n, txt)
416   = lookupIfaceName n           `thenRn` \ name ->
417     traceRn (text "Loaded deprecation(s) for" <+> ppr name <> colon <+> ppr txt) `thenRn_`
418     returnRn (extendNameEnv deprec_env name (name,txt))
419 \end{code}
420
421
422 %*********************************************************
423 %*                                                      *
424 \subsection{Getting binders out of a declaration}
425 %*                                                      *
426 %*********************************************************
427
428 @getDeclBinders@ returns the names for a @RdrNameHsDecl@.
429 It's used for both source code (from @availsFromDecl@) and interface files
430 (from @loadDecl@).
431
432 It doesn't deal with source-code specific things: @ValD@, @DefD@.  They
433 are handled by the sourc-code specific stuff in @RnNames@.
434
435 \begin{code}
436 getTyClDeclBinders
437         :: Module
438         -> RdrNameTyClDecl
439         -> RnM d (AvailInfo, [Name])    -- The [Name] are the system names
440
441 -----------------
442 getTyClDeclBinders mod (IfaceSig {tcdName = var, tcdLoc = src_loc})
443   = newTopBinder mod var src_loc                        `thenRn` \ var_name ->
444     returnRn (Avail var_name, [])
445
446 getTyClDeclBinders mod tycl_decl
447   = new_top_bndrs mod (tyClDeclNames tycl_decl)         `thenRn` \ names@(main_name:_) ->
448     new_top_bndrs mod (tyClDeclSysNames tycl_decl)      `thenRn` \ sys_names ->
449     returnRn (AvailTC main_name names, sys_names)
450
451 -----------------
452 new_top_bndrs mod names_w_locs
453   = sequenceRn [newTopBinder mod name loc | (name,loc) <- names_w_locs]
454 \end{code}
455
456
457 %*********************************************************
458 %*                                                      *
459 \subsection{Reading an interface file}
460 %*                                                      *
461 %*********************************************************
462
463 \begin{code}
464 findAndReadIface :: SDoc -> ModuleName 
465                  -> IsBootInterface     -- True  <=> Look for a .hi-boot file
466                                         -- False <=> Look for .hi file
467                  -> RnM d (Either Message (Module, ParsedIface))
468         -- Nothing <=> file not found, or unreadable, or illegible
469         -- Just x  <=> successfully found and parsed 
470
471 findAndReadIface doc_str mod_name hi_boot_file
472   = traceRn trace_msg                   `thenRn_`
473
474     ioToRnM (findModule mod_name)       `thenRn` \ maybe_found ->
475     case maybe_found of
476
477       Right (Just (wanted_mod,locn))
478         -> mkHiPath hi_boot_file locn `thenRn` \ file -> 
479            readIface file `thenRn` \ read_result ->
480            case read_result of
481                 Left bad -> returnRn (Left bad)
482                 Right iface 
483                    -> let read_mod = pi_mod iface
484                       in warnCheckRn (wanted_mod == read_mod)
485                                      (hiModuleNameMismatchWarn wanted_mod 
486                                         read_mod) `thenRn_`
487                          returnRn (Right (wanted_mod, iface))
488         -- Can't find it
489       other   -> traceRn (ptext SLIT("...not found"))   `thenRn_`
490                  returnRn (Left (noIfaceErr mod_name hi_boot_file))
491
492   where
493     trace_msg = sep [hsep [ptext SLIT("Reading"), 
494                            if hi_boot_file then ptext SLIT("[boot]") else empty,
495                            ptext SLIT("interface for"), 
496                            ppr mod_name <> semi],
497                      nest 4 (ptext SLIT("reason:") <+> doc_str)]
498
499 mkHiPath hi_boot_file locn
500   | hi_boot_file = 
501         ioToRnM_no_fail (doesFileExist hi_boot_ver_path) `thenRn` \ b ->
502         if b then returnRn hi_boot_ver_path
503              else returnRn hi_boot_path
504   | otherwise    = returnRn hi_path
505         where (Just hi_path)   = ml_hi_file locn
506               hi_boot_path     = hi_path ++ "-boot"
507               hi_boot_ver_path = hi_path ++ "-boot-" ++ cHscIfaceFileVersion
508 \end{code}
509
510 @readIface@ tries just the one file.
511
512 \begin{code}
513 readIface :: String -> RnM d (Either Message ParsedIface)
514         -- Nothing <=> file not found, or unreadable, or illegible
515         -- Just x  <=> successfully found and parsed 
516 readIface file_path
517   = --ioToRnM (putStrLn ("reading iface " ++ file_path)) `thenRn_`
518     traceRn (ptext SLIT("readIFace") <+> text file_path)        `thenRn_` 
519
520     ioToRnM (hGetStringBuffer False file_path)                  `thenRn` \ read_result ->
521     case read_result of {
522         Left io_error  -> bale_out (text (show io_error)) ;
523         Right contents -> 
524
525     case parseIface contents init_parser_state of
526         POk _ (PIface iface) -> returnRn (Right iface)
527         PFailed err          -> bale_out err
528         parse_result         -> bale_out empty
529                 -- This last case can happen if the interface file is (say) empty
530                 -- in which case the parser thinks it looks like an IdInfo or
531                 -- something like that.  Just an artefact of the fact that the
532                 -- parser is used for several purposes at once.
533     }
534   where
535     init_parser_state = PState{ bol = 0#, atbol = 1#,
536                                 context = [],
537                                 glasgow_exts = 1#,
538                                 loc = mkSrcLoc (mkFastString file_path) 1 }
539
540     bale_out err = returnRn (Left (badIfaceFile file_path err))
541 \end{code}
542
543
544 %*********************************************************
545 %*                                                      *
546 \subsection{Looking up fixities}
547 %*                                                      *
548 %*********************************************************
549
550 @lookupFixityRn@ has to be in RnIfaces (or RnHiFiles) because 
551 it calls @loadHomeInterface@.
552
553 lookupFixity is a bit strange.  
554
555 * Nested local fixity decls are put in the local fixity env, which we
556   find with getFixtyEnv
557
558 * Imported fixities are found in the HIT or PIT
559
560 * Top-level fixity decls in this module may be for Names that are
561     either  Global         (constructors, class operations)
562     or      Local/Exported (everything else)
563   (See notes with RnNames.getLocalDeclBinders for why we have this split.)
564   We put them all in the local fixity environment
565
566 \begin{code}
567 lookupFixityRn :: Name -> RnMS Fixity
568 lookupFixityRn name
569   = getModuleRn                         `thenRn` \ this_mod ->
570     if nameIsLocalOrFrom this_mod name
571     then        -- It's defined in this module
572         getFixityEnv                    `thenRn` \ local_fix_env ->
573         returnRn (lookupLocalFixity local_fix_env name)
574
575     else        -- It's imported
576       -- For imported names, we have to get their fixities by doing a loadHomeInterface,
577       -- and consulting the Ifaces that comes back from that, because the interface
578       -- file for the Name might not have been loaded yet.  Why not?  Suppose you import module A,
579       -- which exports a function 'f', which is defined in module B.  Then B isn't loaded
580       -- right away (after all, it's possible that nothing from B will be used).
581       -- When we come across a use of 'f', we need to know its fixity, and it's then,
582       -- and only then, that we load B.hi.  That is what's happening here.
583         loadHomeInterface doc name              `thenRn` \ iface ->
584         returnRn (lookupNameEnv (mi_fixities iface) name `orElse` defaultFixity)
585   where
586     doc      = ptext SLIT("Checking fixity for") <+> ppr name
587 \end{code}
588
589
590 %*********************************************************
591 %*                                                       *
592 \subsection{Errors}
593 %*                                                       *
594 %*********************************************************
595
596 \begin{code}
597 noIfaceErr mod_name boot_file
598   = ptext SLIT("Could not find interface file for") <+> quotes (ppr mod_name)
599         -- We used to print the search path, but we can't do that
600         -- now, because it's hidden inside the finder.
601         -- Maybe the finder should expose more functions.
602
603 badIfaceFile file err
604   = vcat [ptext SLIT("Bad interface file:") <+> text file, 
605           nest 4 err]
606
607 hiModuleNameMismatchWarn :: Module -> Module  -> Message
608 hiModuleNameMismatchWarn requested_mod read_mod = 
609     hsep [ ptext SLIT("Something is amiss; requested module name")
610          , ppr (moduleName requested_mod)
611          , ptext SLIT("differs from name found in the interface file")
612          , ppr read_mod
613          ]
614
615 warnRedundantSourceImport mod_name
616   = ptext SLIT("Unnecessary {- SOURCE -} in the import of module")
617           <+> quotes (ppr mod_name)
618
619 warnSelfImport mod
620   = ptext SLIT("Importing my own interface: module") <+> ppr mod
621 \end{code}
622