2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 \section[RnNames]{Extracting imported and top-level names in scope}
8 rnImports, getLocalNonValBinders,
9 rnExports, extendGlobalRdrEnvRn,
10 reportUnusedNames, finishWarnings,
13 #include "HsVersions.h"
18 import RnHsDoc ( rnHsDoc )
19 import IfaceEnv ( ifaceExportNames )
20 import LoadIface ( loadSrcInterface, loadSysInterface )
21 import TcRnMonad hiding (LIE)
36 import BasicTypes ( WarningTxt(..) )
37 import DriverPhases ( isHsBoot )
41 import Data.List ( partition, concatMap, (\\), delete )
42 import IO ( openFile, IOMode(..) )
43 import Monad ( when, mplus )
48 %************************************************************************
52 %************************************************************************
55 rnImports :: [LImportDecl RdrName]
56 -> RnM ([LImportDecl Name], GlobalRdrEnv, ImportAvails,AnyHpcUsage)
59 -- PROCESS IMPORT DECLS
60 -- Do the non {- SOURCE -} ones first, so that we get a helpful
61 -- warning for {- SOURCE -} ones that are unnecessary
62 = do this_mod <- getModule
63 implicit_prelude <- doptM Opt_ImplicitPrelude
64 let prel_imports = mkPrelImports this_mod implicit_prelude imports
65 (source, ordinary) = partition is_source_import imports
66 is_source_import (L _ (ImportDecl _ is_boot _ _ _)) = is_boot
68 ifOptM Opt_WarnImplicitPrelude (
69 when (notNull prel_imports) $ addWarn (implicitPreludeWarn)
72 stuff1 <- mapM (rnImportDecl this_mod) (prel_imports ++ ordinary)
73 stuff2 <- mapM (rnImportDecl this_mod) source
74 let (decls, rdr_env, imp_avails,hpc_usage) = combine (stuff1 ++ stuff2)
75 return (decls, rdr_env, imp_avails,hpc_usage)
78 combine :: [(LImportDecl Name, GlobalRdrEnv, ImportAvails,AnyHpcUsage)]
79 -> ([LImportDecl Name], GlobalRdrEnv, ImportAvails,AnyHpcUsage)
80 combine = foldr plus ([], emptyGlobalRdrEnv, emptyImportAvails,False)
81 where plus (decl, gbl_env1, imp_avails1,hpc_usage1)
82 (decls, gbl_env2, imp_avails2,hpc_usage2)
84 gbl_env1 `plusGlobalRdrEnv` gbl_env2,
85 imp_avails1 `plusImportAvails` imp_avails2,
86 hpc_usage1 || hpc_usage2)
88 mkPrelImports :: Module -> Bool -> [LImportDecl RdrName] -> [LImportDecl RdrName]
89 -- Consruct the implicit declaration "import Prelude" (or not)
91 -- NB: opt_NoImplicitPrelude is slightly different to import Prelude ();
92 -- because the former doesn't even look at Prelude.hi for instance
93 -- declarations, whereas the latter does.
94 mkPrelImports this_mod implicit_prelude import_decls
96 || explicit_prelude_import
97 || not implicit_prelude
99 | otherwise = [preludeImportDecl]
101 explicit_prelude_import
102 = notNull [ () | L _ (ImportDecl mod _ _ _ _) <- import_decls,
103 unLoc mod == pRELUDE_NAME ]
105 preludeImportDecl :: LImportDecl RdrName
108 ImportDecl (L loc pRELUDE_NAME)
109 False {- Not a boot interface -}
110 False {- Not qualified -}
111 Nothing {- No "as" -}
112 Nothing {- No import list -}
114 loc = mkGeneralSrcSpan (fsLit "Implicit import declaration")
117 rnImportDecl :: Module
118 -> LImportDecl RdrName
119 -> RnM (LImportDecl Name, GlobalRdrEnv, ImportAvails,AnyHpcUsage)
121 rnImportDecl this_mod (L loc (ImportDecl loc_imp_mod_name want_boot
122 qual_only as_mod imp_details))
126 -- If there's an error in loadInterface, (e.g. interface
127 -- file not found) we get lots of spurious errors from 'filterImports'
129 imp_mod_name = unLoc loc_imp_mod_name
130 doc = ppr imp_mod_name <+> ptext (sLit "is directly imported")
132 iface <- loadSrcInterface doc imp_mod_name want_boot
134 -- Compiler sanity check: if the import didn't say
135 -- {-# SOURCE #-} we should not get a hi-boot file
136 WARN( not want_boot && mi_boot iface, ppr imp_mod_name ) (do
138 -- Issue a user warning for a redundant {- SOURCE -} import
139 -- NB that we arrange to read all the ordinary imports before
140 -- any of the {- SOURCE -} imports
141 warnIf (want_boot && not (mi_boot iface))
142 (warnRedundantSourceImport imp_mod_name)
145 imp_mod = mi_module iface
146 warns = mi_warns iface
147 orph_iface = mi_orphan iface
148 has_finsts = mi_finsts iface
151 filtered_exports = filter not_this_mod (mi_exports iface)
152 not_this_mod (mod,_) = mod /= this_mod
153 -- If the module exports anything defined in this module, just
154 -- ignore it. Reason: otherwise it looks as if there are two
155 -- local definition sites for the thing, and an error gets
156 -- reported. Easiest thing is just to filter them out up
157 -- front. This situation only arises if a module imports
158 -- itself, or another module that imported it. (Necessarily,
159 -- this invoves a loop.)
161 -- Tiresome consequence: if you say
166 -- module B( AType ) where
167 -- import {-# SOURCE #-} A( AType )
169 -- then you'll get a 'B does not export AType' message. Oh well.
171 qual_mod_name = case as_mod of
172 Nothing -> imp_mod_name
173 Just another_name -> another_name
174 imp_spec = ImpDeclSpec { is_mod = imp_mod_name, is_qual = qual_only,
175 is_dloc = loc, is_as = qual_mod_name }
178 -- Get the total exports from this module
179 total_avails <- ifaceExportNames filtered_exports
181 -- filter the imports according to the import declaration
182 (new_imp_details, gbl_env) <-
183 filterImports iface imp_spec imp_details total_avails
188 -- Compute new transitive dependencies
190 orphans | orph_iface = ASSERT( not (imp_mod `elem` dep_orphs deps) )
191 imp_mod : dep_orphs deps
192 | otherwise = dep_orphs deps
194 finsts | has_finsts = ASSERT( not (imp_mod `elem` dep_finsts deps) )
195 imp_mod : dep_finsts deps
196 | otherwise = dep_finsts deps
198 pkg = modulePackageId (mi_module iface)
200 (dependent_mods, dependent_pkgs)
201 | pkg == thisPackage dflags =
202 -- Imported module is from the home package
203 -- Take its dependent modules and add imp_mod itself
204 -- Take its dependent packages unchanged
206 -- NB: (dep_mods deps) might include a hi-boot file
207 -- for the module being compiled, CM. Do *not* filter
208 -- this out (as we used to), because when we've
209 -- finished dealing with the direct imports we want to
210 -- know if any of them depended on CM.hi-boot, in
211 -- which case we should do the hi-boot consistency
212 -- check. See LoadIface.loadHiBootInterface
213 ((imp_mod_name, want_boot) : dep_mods deps, dep_pkgs deps)
216 -- Imported module is from another package
217 -- Dump the dependent modules
218 -- Add the package imp_mod comes from to the dependent packages
219 ASSERT2( not (pkg `elem` dep_pkgs deps), ppr pkg <+> ppr (dep_pkgs deps) )
220 ([], pkg : dep_pkgs deps)
222 -- True <=> import M ()
223 import_all = case imp_details of
224 Just (is_hiding, ls) -> not is_hiding && null ls
227 imports = ImportAvails {
228 imp_mods = unitModuleEnv imp_mod [(qual_mod_name, import_all, loc)],
231 imp_dep_mods = mkModDeps dependent_mods,
232 imp_dep_pkgs = dependent_pkgs
235 -- Complain if we import a deprecated module
236 ifOptM Opt_WarnWarningsDeprecations (
238 WarnAll txt -> addWarn (moduleWarn imp_mod_name txt)
242 let new_imp_decl = L loc (ImportDecl loc_imp_mod_name want_boot
243 qual_only as_mod new_imp_details)
245 return (new_imp_decl, gbl_env, imports, mi_hpc iface)
248 warnRedundantSourceImport :: ModuleName -> SDoc
249 warnRedundantSourceImport mod_name
250 = ptext (sLit "Unnecessary {-# SOURCE #-} in the import of module")
251 <+> quotes (ppr mod_name)
255 %************************************************************************
257 importsFromLocalDecls
259 %************************************************************************
261 From the top-level declarations of this module produce
262 * the lexical environment
264 created by its bindings.
266 Note [Shadowing in extendGlobalRdrEnvRn]
267 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
268 Usually when etending the GlobalRdrEnv we complain if a new binding
269 duplicates an existing one. By adding the bindings one at a time,
270 this check also complains if we add two new bindings for the same name.
271 (Remember that in Template Haskell the duplicates might *already be*
272 in the GlobalRdrEnv from higher up the module.)
274 But with a Template Haskell quotation we want to *shadow*:
276 Here the inner binding for 'f' simply shadows the outer one.
277 And that applies even if the binding for 'f' is in a where-clause,
278 and hence is in the *local* RdrEnv not the *global* RdrEnv.
280 Hence the shadowP boolean passed in.
283 extendGlobalRdrEnvRn :: Bool -- Note [Shadowing in extendGlobalRdrEnvRn]
286 -> RnM (TcGblEnv, TcLclEnv)
287 -- Updates both the GlobalRdrEnv and the FixityEnv
288 -- We return a new TcLclEnv only becuase we might have to
289 -- delete some bindings from it; see Note [Shadowing in extendGlobalRdrEnvRn]
291 extendGlobalRdrEnvRn shadowP avails new_fixities
292 = do { (gbl_env, lcl_env) <- getEnvs
293 ; let rdr_env = tcg_rdr_env gbl_env
294 fix_env = tcg_fix_env gbl_env
296 -- Delete new_occs from global and local envs
297 -- We are going to shadow them
298 -- See Note [Shadowing in extendGlobalRdrEnvRn]
299 new_occs = map (nameOccName . gre_name) gres
300 rdr_env1 = hideSomeUnquals rdr_env new_occs
301 lcl_env1 = lcl_env { tcl_rdr = delListFromOccEnv (tcl_rdr lcl_env) new_occs }
303 -- Note [Shadowing in extendGlobalRdrEnvRn]
304 (rdr_env2, lcl_env2) | shadowP = (rdr_env1, lcl_env1)
305 | otherwise = (rdr_env, lcl_env)
307 rdr_env3 = foldl extendGlobalRdrEnv rdr_env2 gres
308 fix_env' = foldl extend_fix_env fix_env gres
309 (rdr_env', dups) = findLocalDupsRdrEnv rdr_env3 new_occs
311 gbl_env' = gbl_env { tcg_rdr_env = rdr_env', tcg_fix_env = fix_env' }
313 ; mapM_ addDupDeclErr dups
315 ; traceRn (text "extendGlobalRdrEnvRn" <+> (ppr new_fixities $$ ppr fix_env $$ ppr fix_env'))
316 ; return (gbl_env', lcl_env2) }
318 gres = gresFromAvails LocalDef avails
320 -- If there is a fixity decl for the gre, add it to the fixity env
321 extend_fix_env fix_env gre
322 | Just (L _ fi) <- lookupFsEnv new_fixities (occNameFS occ)
323 = extendNameEnv fix_env name (FixItem occ fi)
328 occ = nameOccName name
331 @getLocalDeclBinders@ returns the names for an @HsDecl@. It's
332 used for source code.
334 *** See "THE NAMING STORY" in HsDecls ****
336 Instances of type families
337 ~~~~~~~~~~~~~~~~~~~~~~~~~~
338 Indexed data/newtype instances contain data constructors that we need to
339 collect, too. Moreover, we need to descend into the data/newtypes instances
340 of associated families.
342 We need to be careful with the handling of the type constructor of each type
343 instance as the family constructor is already defined, and we want to avoid
344 raising a duplicate declaration error. So, we make a new name for it, but
345 don't return it in the 'AvailInfo'.
348 getLocalNonValBinders :: HsGroup RdrName -> RnM [AvailInfo]
349 -- Get all the top-level binders bound the group *except*
350 -- for value bindings, which are treated separately
351 -- Specificaly we return AvailInfo for
356 -- (in hs-boot files) value signatures
358 getLocalNonValBinders group
359 = do { gbl_env <- getGblEnv
360 ; get_local_binders gbl_env group }
362 get_local_binders :: TcGblEnv -> HsGroup RdrName -> RnM [GenAvailInfo Name]
363 get_local_binders gbl_env (HsGroup {hs_valds = ValBindsIn _ val_sigs,
364 hs_tyclds = tycl_decls,
365 hs_instds = inst_decls,
366 hs_fords = foreign_decls })
367 = do { tc_names_s <- mapM new_tc tycl_decls
368 ; at_names_s <- mapM inst_ats inst_decls
369 ; val_names <- mapM new_simple val_bndrs
370 ; return (val_names ++ tc_names_s ++ concat at_names_s) }
372 mod = tcg_mod gbl_env
373 is_hs_boot = isHsBoot (tcg_src gbl_env) ;
375 for_hs_bndrs :: [Located RdrName]
376 for_hs_bndrs = [nm | L _ (ForeignImport nm _ _) <- foreign_decls]
378 -- In a hs-boot file, the value binders come from the
379 -- *signatures*, and there should be no foreign binders
380 val_bndrs :: [Located RdrName]
381 val_bndrs | is_hs_boot = [nm | L _ (TypeSig nm _) <- val_sigs]
382 | otherwise = for_hs_bndrs
384 new_simple :: Located RdrName -> RnM (GenAvailInfo Name)
385 new_simple rdr_name = do
386 nm <- newTopSrcBinder mod rdr_name
390 | isFamInstDecl (unLoc tc_decl)
391 = do { main_name <- lookupFamInstDeclBndr mod main_rdr
392 ; sub_names <- mapM (newTopSrcBinder mod) sub_rdrs
393 ; return (AvailTC main_name sub_names) }
394 -- main_name is not bound here!
396 = do { main_name <- newTopSrcBinder mod main_rdr
397 ; sub_names <- mapM (newTopSrcBinder mod) sub_rdrs
398 ; return (AvailTC main_name (main_name : sub_names)) }
400 (main_rdr : sub_rdrs) = tyClDeclNames (unLoc tc_decl)
403 = mapM new_tc (instDeclATs (unLoc inst_decl))
405 get_local_binders _ g = pprPanic "get_local_binders" (ppr g)
409 %************************************************************************
411 \subsection{Filtering imports}
413 %************************************************************************
415 @filterImports@ takes the @ExportEnv@ telling what the imported module makes
416 available, and filters it through the import spec (if any).
419 filterImports :: ModIface
420 -> ImpDeclSpec -- The span for the entire import decl
421 -> Maybe (Bool, [LIE RdrName]) -- Import spec; True => hiding
422 -> [AvailInfo] -- What's available
423 -> RnM (Maybe (Bool, [LIE Name]), -- Import spec w/ Names
424 GlobalRdrEnv) -- Same again, but in GRE form
425 filterImports _ decl_spec Nothing all_avails
426 = return (Nothing, mkGlobalRdrEnv (gresFromAvails prov all_avails))
428 prov = Imported [ImpSpec { is_decl = decl_spec, is_item = ImpAll }]
431 filterImports iface decl_spec (Just (want_hiding, import_items)) all_avails
432 = do -- check for errors, convert RdrNames to Names
433 opt_typeFamilies <- doptM Opt_TypeFamilies
434 items1 <- mapM (lookup_lie opt_typeFamilies) import_items
436 let items2 :: [(LIE Name, AvailInfo)]
437 items2 = concat items1
438 -- NB the AvailInfo may have duplicates, and several items
439 -- for the same parent; e.g N(x) and N(y)
441 names = availsToNameSet (map snd items2)
442 keep n = not (n `elemNameSet` names)
443 pruned_avails = filterAvails keep all_avails
444 hiding_prov = Imported [ImpSpec { is_decl = decl_spec, is_item = ImpAll }]
446 gres | want_hiding = gresFromAvails hiding_prov pruned_avails
447 | otherwise = concatMap (gresFromIE decl_spec) items2
449 return (Just (want_hiding, map fst items2), mkGlobalRdrEnv gres)
451 -- This environment is how we map names mentioned in the import
452 -- list to the actual Name they correspond to, and the name family
453 -- that the Name belongs to (the AvailInfo). The situation is
454 -- complicated by associated families, which introduce a three-level
455 -- hierachy, where class = grand parent, assoc family = parent, and
456 -- data constructors = children. The occ_env entries for associated
457 -- families needs to capture all this information; hence, we have the
458 -- third component of the environment that gives the class name (=
459 -- grand parent) in case of associated families.
461 -- This env will have entries for data constructors too,
462 -- they won't make any difference because naked entities like T
463 -- in an import list map to TcOccs, not VarOccs.
464 occ_env :: OccEnv (Name, -- the name
465 AvailInfo, -- the export item providing the name
466 Maybe Name) -- the parent of associated types
467 occ_env = mkOccEnv_C combine [ (nameOccName n, (n, a, Nothing))
468 | a <- all_avails, n <- availNames a]
470 -- we know that (1) there are at most entries for one name, (2) their
471 -- first component is identical, (3) they are for tys/cls, and (4) one
472 -- entry has the name in its parent position (the other doesn't)
473 combine (name, AvailTC p1 subs1, Nothing)
474 (_ , AvailTC p2 subs2, Nothing)
476 (parent, subs) = if p1 == name then (p2, subs1) else (p1, subs2)
478 (name, AvailTC name subs, Just parent)
479 combine x y = pprPanic "filterImports/combine" (ppr x $$ ppr y)
481 lookup_lie :: Bool -> LIE RdrName -> TcRn [(LIE Name, AvailInfo)]
482 lookup_lie opt_typeFamilies (L loc ieRdr)
484 stuff <- setSrcSpan loc $
485 case lookup_ie opt_typeFamilies ieRdr of
486 Failed err -> addErr err >> return []
487 Succeeded a -> return a
488 checkDodgyImport stuff
489 return [ (L loc ie, avail) | (ie,avail) <- stuff ]
491 -- Warn when importing T(..) if T was exported abstractly
492 checkDodgyImport stuff
493 | IEThingAll n <- ieRdr, (_, AvailTC _ [_]):_ <- stuff
494 = ifOptM Opt_WarnDodgyImports (addWarn (dodgyImportWarn n))
495 -- NB. use the RdrName for reporting the warning
499 -- For each import item, we convert its RdrNames to Names,
500 -- and at the same time construct an AvailInfo corresponding
501 -- to what is actually imported by this item.
502 -- Returns Nothing on error.
503 -- We return a list here, because in the case of an import
504 -- item like C, if we are hiding, then C refers to *both* a
505 -- type/class and a data constructor. Moreover, when we import
506 -- data constructors of an associated family, we need separate
507 -- AvailInfos for the data constructors and the family (as they have
508 -- different parents). See the discussion at occ_env.
509 lookup_ie :: Bool -> IE RdrName -> MaybeErr Message [(IE Name,AvailInfo)]
510 lookup_ie opt_typeFamilies ie
511 = let bad_ie = Failed (badImportItemErr iface decl_spec ie)
513 lookup_name rdrName =
514 case lookupOccEnv occ_env (rdrNameOcc rdrName) of
520 (name, avail, _) <- lookup_name n
521 return [(IEVar name, trimAvail avail name)]
524 (name, avail@(AvailTC name2 subs), mb_parent) <- lookup_name tc
526 -- non-associated ty/cls
527 Nothing -> return [(IEThingAll name, avail)]
529 Just parent -> return [(IEThingAll name,
530 AvailTC name2 (subs \\ [name])),
531 (IEThingAll name, AvailTC parent [name])]
534 | want_hiding -- hiding ( C )
535 -- Here the 'C' can be a data constructor
536 -- *or* a type/class, or even both
537 -> let tc_name = lookup_name tc
538 dc_name = lookup_name (setRdrNameSpace tc srcDataName)
540 case catMaybeErr [ tc_name, dc_name ] of
542 names -> return [mkIEThingAbs name | name <- names]
544 -> do nameAvail <- lookup_name tc
545 return [mkIEThingAbs nameAvail]
547 IEThingWith tc ns -> do
548 (name, AvailTC _ subnames, mb_parent) <- lookup_name tc
550 env = mkOccEnv [(nameOccName s, s) | s <- subnames]
551 mb_children = map (lookupOccEnv env . rdrNameOcc) ns
552 children <- if any isNothing mb_children
554 else return (catMaybes mb_children)
555 -- check for proper import of type families
556 when (not opt_typeFamilies && any isTyConName children) $
557 Failed (typeItemErr (head . filter isTyConName $ children)
558 (text "in import list"))
560 -- non-associated ty/cls
561 Nothing -> return [(IEThingWith name children,
562 AvailTC name (name:children))]
564 Just parent -> return [(IEThingWith name children,
565 AvailTC name children),
566 (IEThingWith name children,
567 AvailTC parent [name])]
569 _other -> Failed illegalImportItemErr
570 -- could be IEModuleContents, IEGroup, IEDoc, IEDocNamed
574 mkIEThingAbs (n, av, Nothing ) = (IEThingAbs n, trimAvail av n)
575 mkIEThingAbs (n, _, Just parent) = (IEThingAbs n, AvailTC parent [n])
578 catMaybeErr :: [MaybeErr err a] -> [a]
579 catMaybeErr ms = [ a | Succeeded a <- ms ]
582 %************************************************************************
586 %************************************************************************
589 -- | make a 'GlobalRdrEnv' where all the elements point to the same
590 -- import declaration (useful for "hiding" imports, or imports with
592 gresFromAvails :: Provenance -> [AvailInfo] -> [GlobalRdrElt]
593 gresFromAvails prov avails
594 = concatMap (gresFromAvail (const prov)) avails
596 gresFromAvail :: (Name -> Provenance) -> AvailInfo -> [GlobalRdrElt]
597 gresFromAvail prov_fn avail
598 = [ GRE {gre_name = n,
599 gre_par = availParent n avail,
600 gre_prov = prov_fn n}
601 | n <- availNames avail ]
603 greAvail :: GlobalRdrElt -> AvailInfo
604 greAvail gre = mkUnitAvail (gre_name gre) (gre_par gre)
606 mkUnitAvail :: Name -> Parent -> AvailInfo
607 mkUnitAvail me (ParentIs p) = AvailTC p [me]
608 mkUnitAvail me NoParent | isTyConName me = AvailTC me [me]
609 | otherwise = Avail me
611 plusAvail :: GenAvailInfo Name -> GenAvailInfo Name -> GenAvailInfo Name
612 plusAvail (Avail n1) (Avail _) = Avail n1
613 plusAvail (AvailTC _ ns1) (AvailTC n2 ns2) = AvailTC n2 (ns1 `unionLists` ns2)
614 plusAvail a1 a2 = pprPanic "RnEnv.plusAvail" (hsep [ppr a1,ppr a2])
616 availParent :: Name -> AvailInfo -> Parent
617 availParent _ (Avail _) = NoParent
618 availParent n (AvailTC m _) | n == m = NoParent
619 | otherwise = ParentIs m
621 trimAvail :: AvailInfo -> Name -> AvailInfo
622 trimAvail (Avail n) _ = Avail n
623 trimAvail (AvailTC n ns) m = ASSERT( m `elem` ns) AvailTC n [m]
625 -- | filters 'AvailInfo's by the given predicate
626 filterAvails :: (Name -> Bool) -> [AvailInfo] -> [AvailInfo]
627 filterAvails keep avails = foldr (filterAvail keep) [] avails
629 -- | filters an 'AvailInfo' by the given predicate
630 filterAvail :: (Name -> Bool) -> AvailInfo -> [AvailInfo] -> [AvailInfo]
631 filterAvail keep ie rest =
633 Avail n | keep n -> ie : rest
636 let left = filter keep ns in
637 if null left then rest else AvailTC tc left : rest
639 -- | Given an import\/export spec, construct the appropriate 'GlobalRdrElt's.
640 gresFromIE :: ImpDeclSpec -> (LIE Name, AvailInfo) -> [GlobalRdrElt]
641 gresFromIE decl_spec (L loc ie, avail)
642 = gresFromAvail prov_fn avail
644 is_explicit = case ie of
645 IEThingAll name -> \n -> n == name
647 prov_fn name = Imported [imp_spec]
649 imp_spec = ImpSpec { is_decl = decl_spec, is_item = item_spec }
650 item_spec = ImpSome { is_explicit = is_explicit name, is_iloc = loc }
652 mkChildEnv :: [GlobalRdrElt] -> NameEnv [Name]
653 mkChildEnv gres = foldr add emptyNameEnv gres
655 add (GRE { gre_name = n, gre_par = ParentIs p }) env = extendNameEnv_C (++) env p [n]
658 findChildren :: NameEnv [Name] -> Name -> [Name]
659 findChildren env n = lookupNameEnv env n `orElse` []
662 ---------------------------------------
665 All this AvailEnv stuff is hardly used; only in a very small
666 part of RnNames. Todo: remove?
667 ---------------------------------------
670 type AvailEnv = NameEnv AvailInfo -- Maps a Name to the AvailInfo that contains it
672 emptyAvailEnv :: AvailEnv
673 emptyAvailEnv = emptyNameEnv
675 unitAvailEnv :: AvailInfo -> AvailEnv
676 unitAvailEnv a = unitNameEnv (availName a) a
678 plusAvailEnv :: AvailEnv -> AvailEnv -> AvailEnv
679 plusAvailEnv = plusNameEnv_C plusAvail
681 availEnvElts :: AvailEnv -> [AvailInfo]
682 availEnvElts = nameEnvElts
684 addAvail :: AvailEnv -> AvailInfo -> AvailEnv
685 addAvail avails avail = extendNameEnv_C plusAvail avails (availName avail) avail
687 mkAvailEnv :: [AvailInfo] -> AvailEnv
688 -- 'avails' may have several items with the same availName
689 -- E.g import Ix( Ix(..), index )
690 -- will give Ix(Ix,index,range) and Ix(index)
691 -- We want to combine these; addAvail does that
692 mkAvailEnv avails = foldl addAvail emptyAvailEnv avails
694 -- After combining the avails, we need to ensure that the parent name is the
695 -- first entry in the list of subnames, if it is included at all. (Subsequent
696 -- functions rely on that.)
697 normaliseAvail :: AvailInfo -> AvailInfo
698 normaliseAvail avail@(Avail _) = avail
699 normaliseAvail (AvailTC name subs) = AvailTC name subs'
701 subs' = if name `elem` subs then name : (delete name subs) else subs
703 -- | combines 'AvailInfo's from the same family
704 nubAvails :: [AvailInfo] -> [AvailInfo]
705 nubAvails avails = map normaliseAvail . nameEnvElts . mkAvailEnv $ avails
709 %************************************************************************
711 \subsection{Export list processing}
713 %************************************************************************
715 Processing the export list.
717 You might think that we should record things that appear in the export
718 list as ``occurrences'' (using @addOccurrenceName@), but you'd be
719 wrong. We do check (here) that they are in scope, but there is no
720 need to slurp in their actual declaration (which is what
721 @addOccurrenceName@ forces).
723 Indeed, doing so would big trouble when compiling @PrelBase@, because
724 it re-exports @GHC@, which includes @takeMVar#@, whose type includes
725 @ConcBase.StateAndSynchVar#@, and so on...
728 type ExportAccum -- The type of the accumulating parameter of
729 -- the main worker function in rnExports
730 = ([LIE Name], -- Export items with Names
731 ExportOccMap, -- Tracks exported occurrence names
732 [AvailInfo]) -- The accumulated exported stuff
735 emptyExportAccum :: ExportAccum
736 emptyExportAccum = ([], emptyOccEnv, [])
738 type ExportOccMap = OccEnv (Name, IE RdrName)
739 -- Tracks what a particular exported OccName
740 -- in an export list refers to, and which item
741 -- it came from. It's illegal to export two distinct things
742 -- that have the same occurrence name
744 rnExports :: Bool -- False => no 'module M(..) where' header at all
745 -> Maybe [LIE RdrName] -- Nothing => no explicit export list
749 -- Complains if two distinct exports have same OccName
750 -- Warns about identical exports.
751 -- Complains about exports items not in scope
753 rnExports explicit_mod exports
754 tcg_env@(TcGblEnv { tcg_mod = this_mod,
755 tcg_rdr_env = rdr_env,
756 tcg_imports = imports })
758 -- If the module header is omitted altogether, then behave
759 -- as if the user had written "module Main(main) where..."
760 -- EXCEPT in interactive mode, when we behave as if he had
761 -- written "module Main where ..."
762 -- Reason: don't want to complain about 'main' not in scope
763 -- in interactive mode
766 | explicit_mod = exports
767 | ghcLink dflags == LinkInMemory = Nothing
768 | otherwise = Just ([noLoc (IEVar main_RDR_Unqual)])
769 -- ToDo: the 'noLoc' here is unhelpful if 'main'
770 -- turns out to be out of scope
772 ; (rn_exports, avails) <- exports_from_avail real_exports rdr_env imports this_mod
773 ; let final_avails = nubAvails avails -- Combine families
775 ; return (tcg_env { tcg_exports = final_avails,
776 tcg_rn_exports = case tcg_rn_exports tcg_env of
778 Just _ -> rn_exports,
779 tcg_dus = tcg_dus tcg_env `plusDU`
780 usesOnly (availsToNameSet final_avails) }) }
783 exports_from_avail :: Maybe [LIE RdrName]
784 -- Nothing => no explicit export list
788 -> RnM (Maybe [LIE Name], [AvailInfo])
790 exports_from_avail Nothing rdr_env _imports _this_mod
791 = -- The same as (module M) where M is the current module name,
792 -- so that's how we handle it.
794 avails = [ greAvail gre | gre <- globalRdrEnvElts rdr_env,
797 return (Nothing, avails)
799 exports_from_avail (Just rdr_items) rdr_env imports this_mod
800 = do (ie_names, _, exports) <- foldlM do_litem emptyExportAccum rdr_items
802 return (Just ie_names, exports)
804 do_litem :: ExportAccum -> LIE RdrName -> RnM ExportAccum
805 do_litem acc lie = setSrcSpan (getLoc lie) (exports_from_item acc lie)
807 kids_env :: NameEnv [Name] -- Maps a parent to its in-scope children
808 kids_env = mkChildEnv (globalRdrEnvElts rdr_env)
810 imported_modules = [ qual_name
811 | xs <- moduleEnvElts $ imp_mods imports,
812 (qual_name, _, _) <- xs ]
814 exports_from_item :: ExportAccum -> LIE RdrName -> RnM ExportAccum
815 exports_from_item acc@(ie_names, occs, exports)
816 (L loc ie@(IEModuleContents mod))
817 | let earlier_mods = [ mod | (L _ (IEModuleContents mod)) <- ie_names ]
818 , mod `elem` earlier_mods -- Duplicate export of M
819 = do { warn_dup_exports <- doptM Opt_WarnDuplicateExports ;
820 warnIf warn_dup_exports (dupModuleExport mod) ;
824 = do { implicit_prelude <- doptM Opt_ImplicitPrelude
825 ; let { exportValid = (mod `elem` imported_modules)
826 || (moduleName this_mod == mod)
827 ; gres = filter (isModuleExported implicit_prelude mod)
828 (globalRdrEnvElts rdr_env)
831 ; checkErr exportValid (moduleNotImported mod)
832 ; warnIf (exportValid && null gres) (nullModuleExport mod)
834 ; occs' <- check_occs ie occs (map gre_name gres)
835 -- This check_occs not only finds conflicts
836 -- between this item and others, but also
837 -- internally within this item. That is, if
838 -- 'M.x' is in scope in several ways, we'll have
839 -- several members of mod_avails with the same
841 ; return (L loc (IEModuleContents mod) : ie_names,
842 occs', map greAvail gres ++ exports) }
844 exports_from_item acc@(lie_names, occs, exports) (L loc ie)
846 = do new_ie <- lookup_doc_ie ie
847 return (L loc new_ie : lie_names, occs, exports)
850 = do (new_ie, avail) <- lookup_ie ie
851 if isUnboundName (ieName new_ie)
852 then return acc -- Avoid error cascade
855 occs' <- check_occs ie occs (availNames avail)
857 return (L loc new_ie : lie_names, occs', avail : exports)
860 lookup_ie :: IE RdrName -> RnM (IE Name, AvailInfo)
861 lookup_ie (IEVar rdr)
862 = do gre <- lookupGreRn rdr
863 return (IEVar (gre_name gre), greAvail gre)
865 lookup_ie (IEThingAbs rdr)
866 = do gre <- lookupGreRn rdr
867 let name = gre_name gre
869 NoParent -> return (IEThingAbs name,
871 ParentIs p -> return (IEThingAbs name,
874 lookup_ie ie@(IEThingAll rdr)
875 = do name <- lookupGlobalOccRn rdr
876 let kids = findChildren kids_env name
878 (if (isTyConName name) then addWarn (dodgyExportWarn name)
879 -- This occurs when you export T(..), but
880 -- only import T abstractly, or T is a synonym.
881 else addErr (exportItemErr ie))
883 return (IEThingAll name, AvailTC name (name:kids))
885 lookup_ie ie@(IEThingWith rdr sub_rdrs)
886 = do name <- lookupGlobalOccRn rdr
887 if isUnboundName name
888 then return (IEThingWith name [], AvailTC name [name])
890 let env = mkOccEnv [ (nameOccName s, s)
891 | s <- findChildren kids_env name ]
892 mb_names = map (lookupOccEnv env . rdrNameOcc) sub_rdrs
893 if any isNothing mb_names
894 then do addErr (exportItemErr ie)
895 return (IEThingWith name [], AvailTC name [name])
896 else do let names = catMaybes mb_names
897 optTyFam <- doptM Opt_TypeFamilies
898 when (not optTyFam && any isTyConName names) $
899 addErr (typeItemErr ( head
902 (text "in export list"))
903 return (IEThingWith name names, AvailTC name (name:names))
905 lookup_ie _ = panic "lookup_ie" -- Other cases covered earlier
908 lookup_doc_ie :: IE RdrName -> RnM (IE Name)
909 lookup_doc_ie (IEGroup lev doc) = do rn_doc <- rnHsDoc doc
910 return (IEGroup lev rn_doc)
911 lookup_doc_ie (IEDoc doc) = do rn_doc <- rnHsDoc doc
912 return (IEDoc rn_doc)
913 lookup_doc_ie (IEDocNamed str) = return (IEDocNamed str)
914 lookup_doc_ie _ = panic "lookup_doc_ie" -- Other cases covered earlier
917 isDoc :: IE RdrName -> Bool
918 isDoc (IEDoc _) = True
919 isDoc (IEDocNamed _) = True
920 isDoc (IEGroup _ _) = True
923 -------------------------------
924 isModuleExported :: Bool -> ModuleName -> GlobalRdrElt -> Bool
925 -- True if the thing is in scope *both* unqualified, *and* with qualifier M
926 isModuleExported implicit_prelude mod (GRE { gre_name = name, gre_prov = prov })
927 | implicit_prelude && isBuiltInSyntax name = False
928 -- Optimisation: filter out names for built-in syntax
929 -- They just clutter up the environment (esp tuples), and the parser
930 -- will generate Exact RdrNames for them, so the cluttered
931 -- envt is no use. To avoid doing this filter all the time,
932 -- we use -XNoImplicitPrelude as a clue that the filter is
933 -- worth while. Really, it's only useful for GHC.Base and GHC.Tuple.
935 -- It's worth doing because it makes the environment smaller for
936 -- every module that imports the Prelude
939 LocalDef -> moduleName (nameModule name) == mod
940 Imported is -> any unQualSpecOK is && any (qualSpecOK mod) is
942 -------------------------------
943 check_occs :: IE RdrName -> ExportOccMap -> [Name] -> RnM ExportOccMap
944 check_occs ie occs names
945 = foldlM check occs names
948 = case lookupOccEnv occs name_occ of
949 Nothing -> return (extendOccEnv occs name_occ (name, ie))
952 | name == name' -- Duplicate export
953 -> do { warn_dup_exports <- doptM Opt_WarnDuplicateExports ;
954 warnIf warn_dup_exports (dupExportWarn name_occ ie ie') ;
957 | otherwise -- Same occ name but different names: an error
958 -> do { global_env <- getGlobalRdrEnv ;
959 addErr (exportClashErr global_env name' name ie' ie) ;
962 name_occ = nameOccName name
965 %*********************************************************
969 %*********************************************************
972 finishWarnings :: DynFlags -> Maybe WarningTxt
973 -> TcGblEnv -> RnM TcGblEnv
974 -- (a) Report usage of imports that are deprecated or have other warnings
975 -- (b) If the whole module is warned about or deprecated, update tcg_warns
976 -- All this happens only once per module
977 finishWarnings dflags mod_warn tcg_env
978 = do { (eps,hpt) <- getEpsAndHpt
979 ; ifOptM Opt_WarnWarningsDeprecations $
980 mapM_ (check hpt (eps_PIT eps)) all_gres
981 -- By this time, typechecking is complete,
982 -- so the PIT is fully populated
984 -- Deal with a module deprecation; it overrides all existing warns
985 ; let new_warns = case mod_warn of
986 Just txt -> WarnAll txt
987 Nothing -> tcg_warns tcg_env
988 ; return (tcg_env { tcg_warns = new_warns }) }
990 used_names = allUses (tcg_dus tcg_env)
991 -- Report on all deprecated uses; hence allUses
992 all_gres = globalRdrEnvElts (tcg_rdr_env tcg_env)
994 check hpt pit gre@(GRE {gre_name = name, gre_prov = Imported (imp_spec:_)})
995 | name `elemNameSet` used_names
996 , Just deprec_txt <- lookupImpDeprec dflags hpt pit gre
997 = addWarnAt (importSpecLoc imp_spec)
998 (sep [ptext (sLit "In the use of") <+>
999 pprNonVarNameSpace (occNameSpace (nameOccName name)) <+>
1001 (parens imp_msg) <> colon,
1004 name_mod = nameModule name
1005 imp_mod = importSpecModule imp_spec
1006 imp_msg = ptext (sLit "imported from") <+> ppr imp_mod <> extra
1007 extra | imp_mod == moduleName name_mod = empty
1008 | otherwise = ptext (sLit ", but defined in") <+> ppr name_mod
1010 check _ _ _ = return () -- Local, or not used, or not deprectated
1011 -- The Imported pattern-match: don't deprecate locally defined names
1012 -- For a start, we may be exporting a deprecated thing
1013 -- Also we may use a deprecated thing in the defn of another
1014 -- deprecated things. We may even use a deprecated thing in
1015 -- the defn of a non-deprecated thing, when changing a module's
1018 lookupImpDeprec :: DynFlags -> HomePackageTable -> PackageIfaceTable
1019 -> GlobalRdrElt -> Maybe WarningTxt
1020 -- The name is definitely imported, so look in HPT, PIT
1021 lookupImpDeprec dflags hpt pit gre
1022 = case lookupIfaceByModule dflags hpt pit (nameModule name) of
1023 Just iface -> mi_warn_fn iface name `mplus` -- Bleat if the thing, *or
1025 ParentIs p -> mi_warn_fn iface p -- its parent*, is warn'd
1028 Nothing -> Nothing -- See Note [Used names with interface not loaded]
1033 Note [Used names with interface not loaded]
1034 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1035 By now all the interfaces should have been loaded,
1036 because reportDeprecations happens after typechecking.
1037 However, it's still (just) possible to to find a used
1038 Name whose interface hasn't been loaded:
1040 a) It might be a WiredInName; in that case we may not load
1041 its interface (although we could).
1043 b) It might be GHC.Real.fromRational, or GHC.Num.fromInteger
1044 These are seen as "used" by the renamer (if -XNoImplicitPrelude)
1045 is on), but the typechecker may discard their uses
1046 if in fact the in-scope fromRational is GHC.Read.fromRational,
1047 (see tcPat.tcOverloadedLit), and the typechecker sees that the type
1048 is fixed, say, to GHC.Base.Float (see Inst.lookupSimpleInst).
1049 In that obscure case it won't force the interface in.
1051 In both cases we simply don't permit deprecations;
1052 this is, after all, wired-in stuff.
1055 %*********************************************************
1059 %*********************************************************
1062 reportUnusedNames :: Maybe [LIE RdrName] -- Export list
1063 -> TcGblEnv -> RnM ()
1064 reportUnusedNames export_decls gbl_env
1065 = do { traceRn ((text "RUN") <+> (ppr (tcg_dus gbl_env)))
1066 ; warnUnusedTopBinds unused_locals
1067 ; warnUnusedModules unused_imp_mods
1068 ; warnUnusedImports unused_imports
1069 ; warnDuplicateImports defined_and_used
1070 ; printMinimalImports minimal_imports }
1072 used_names :: NameSet
1073 used_names = findUses (tcg_dus gbl_env) emptyNameSet
1074 -- NB: currently, if f x = g, we only treat 'g' as used if 'f' is used
1077 -- Collect the defined names from the in-scope environment
1078 defined_names :: [GlobalRdrElt]
1079 defined_names = globalRdrEnvElts (tcg_rdr_env gbl_env)
1081 -- Note that defined_and_used, defined_but_not_used
1082 -- are both [GRE]; that's why we need defined_and_used
1083 -- rather than just used_names
1084 defined_and_used, defined_but_not_used :: [GlobalRdrElt]
1085 (defined_and_used, defined_but_not_used)
1086 = partition (gre_is_used used_names) defined_names
1088 kids_env = mkChildEnv defined_names
1089 -- This is done in mkExports too; duplicated work
1091 gre_is_used :: NameSet -> GlobalRdrElt -> Bool
1092 gre_is_used used_names (GRE {gre_name = name})
1093 = name `elemNameSet` used_names
1094 || any (`elemNameSet` used_names) (findChildren kids_env name)
1095 -- A use of C implies a use of T,
1096 -- if C was brought into scope by T(..) or T(C)
1098 -- Filter out the ones that are
1099 -- (a) defined in this module, and
1100 -- (b) not defined by a 'deriving' clause
1101 -- The latter have an Internal Name, so we can filter them out easily
1102 unused_locals :: [GlobalRdrElt]
1103 unused_locals = filter is_unused_local defined_but_not_used
1104 is_unused_local :: GlobalRdrElt -> Bool
1105 is_unused_local gre = isLocalGRE gre && isExternalName (gre_name gre)
1107 unused_imports :: [GlobalRdrElt]
1108 unused_imports = mapCatMaybes unused_imp defined_but_not_used
1109 unused_imp :: GlobalRdrElt -> Maybe GlobalRdrElt -- Result has trimmed Imported provenances
1110 unused_imp (GRE {gre_prov = LocalDef}) = Nothing
1111 unused_imp gre@(GRE {gre_prov = Imported imp_specs})
1112 | null trimmed_specs = Nothing
1113 | otherwise = Just (gre {gre_prov = Imported trimmed_specs})
1115 trimmed_specs = filter report_if_unused imp_specs
1117 -- To figure out the minimal set of imports, start with the things
1118 -- that are in scope (i.e. in gbl_env). Then just combine them
1119 -- into a bunch of avails, so they are properly grouped
1121 -- BUG WARNING: this does not deal properly with qualified imports!
1122 minimal_imports :: FiniteMap ModuleName AvailEnv
1123 minimal_imports0 = foldr add_expall emptyFM expall_mods
1124 minimal_imports1 = foldr add_name minimal_imports0 defined_and_used
1125 minimal_imports = foldr add_inst_mod minimal_imports1 direct_import_mods
1126 -- The last line makes sure that we retain all direct imports
1127 -- even if we import nothing explicitly.
1128 -- It's not necessarily redundant to import such modules. Consider
1132 -- The import M() is not *necessarily* redundant, even if
1133 -- we suck in no instance decls from M (e.g. it contains
1134 -- no instance decls, or This contains no code). It may be
1135 -- that we import M solely to ensure that M's orphan instance
1136 -- decls (or those in its imports) are visible to people who
1137 -- import This. Sigh.
1138 -- There's really no good way to detect this, so the error message
1139 -- in RnEnv.warnUnusedModules is weakened instead
1141 -- We've carefully preserved the provenance so that we can
1142 -- construct minimal imports that import the name by (one of)
1143 -- the same route(s) as the programmer originally did.
1144 add_name gre@(GRE {gre_prov = Imported (imp_spec:_)}) acc
1145 = addToFM_C plusAvailEnv acc
1146 (importSpecModule imp_spec) (unitAvailEnv (greAvail gre))
1147 add_name _ acc = acc -- Local
1149 -- Modules mentioned as 'module M' in the export list
1150 expall_mods = case export_decls of
1152 Just es -> [m | L _ (IEModuleContents m) <- es]
1154 -- This is really bogus. The idea is that if we see 'module M' in
1155 -- the export list we must retain the import decls that drive it
1156 -- If we aren't careful we might see
1157 -- module A( module M ) where
1160 -- and suppose that N exports everything that M does. Then we
1161 -- must not drop the import of M even though N brings it all into
1164 -- BUG WARNING: 'module M' exports aside, what if M.x is mentioned?!
1166 -- The reason that add_expall is bogus is that it doesn't take
1167 -- qualified imports into account. But it's an improvement.
1168 add_expall mod acc = addToFM_C plusAvailEnv acc mod emptyAvailEnv
1170 add_inst_mod (mod, _) acc
1171 | mod_name `elemFM` acc = acc -- We import something already
1172 | otherwise = addToFM acc mod_name emptyAvailEnv
1174 mod_name = moduleName mod
1175 -- Add an empty collection of imports for a module
1176 -- from which we have sucked only instance decls
1178 imports = tcg_imports gbl_env
1180 direct_import_mods :: [(Module, [(ModuleName, Bool, SrcSpan)])]
1181 -- See the type of the imp_mods for this triple
1182 direct_import_mods = fmToList (imp_mods imports)
1184 -- unused_imp_mods are the directly-imported modules
1185 -- that are not mentioned in minimal_imports1
1186 -- [Note: not 'minimal_imports', because that includes directly-imported
1187 -- modules even if we use nothing from them; see notes above]
1189 -- BUG WARNING: this code is generally buggy
1190 unused_imp_mods :: [(ModuleName, SrcSpan)]
1191 unused_imp_mods = [(mod_name,loc)
1192 | (mod, xs) <- direct_import_mods,
1193 (_, no_imp, loc) <- xs,
1194 let mod_name = moduleName mod,
1195 not (mod_name `elemFM` minimal_imports1),
1198 -- The not no_imp part is not to complain about
1199 -- import M (), which is an idiom for importing
1200 -- instance declarations
1202 module_unused :: ModuleName -> Bool
1203 module_unused mod = any (((==) mod) . fst) unused_imp_mods
1205 report_if_unused :: ImportSpec -> Bool
1206 -- Do we want to report this as an unused import?
1207 report_if_unused (ImpSpec {is_decl = d, is_item = i})
1208 = not (module_unused (is_mod d)) -- Not if we've already said entire import is unused
1209 && isExplicitItem i -- Only if the import was explicit
1211 ---------------------
1212 warnDuplicateImports :: [GlobalRdrElt] -> RnM ()
1213 -- Given the GREs for names that are used, figure out which imports
1214 -- could be omitted without changing the top-level environment.
1216 -- NB: Given import Foo( T )
1217 -- import qualified Foo
1218 -- we do not report a duplicate import, even though Foo.T is brought
1219 -- into scope by both, because there's nothing you can *omit* without
1220 -- changing the top-level environment. So we complain only if it's
1221 -- explicitly named in both imports or neither.
1223 -- Furthermore, we complain about Foo.T only if
1224 -- there is no complaint about (unqualified) T
1226 warnDuplicateImports gres
1227 = ifOptM Opt_WarnUnusedImports $
1228 sequence_ [ warn name pr
1229 | GRE { gre_name = name, gre_prov = Imported imps } <- gres
1230 , pr <- redundants imps ]
1232 warn name (red_imp, cov_imp)
1233 = addWarnAt (importSpecLoc red_imp)
1234 (vcat [ptext (sLit "Redundant import of:") <+> quotes pp_name,
1235 ptext (sLit "It is also") <+> ppr cov_imp])
1237 pp_name | is_qual red_decl = ppr (is_as red_decl) <> dot <> ppr occ
1238 | otherwise = ppr occ
1239 occ = nameOccName name
1240 red_decl = is_decl red_imp
1242 redundants :: [ImportSpec] -> [(ImportSpec,ImportSpec)]
1243 -- The returned pair is (redundant-import, covering-import)
1245 = [ (red_imp, cov_imp)
1247 , isExplicitItem (is_item red_imp)
1248 -- Complain only about redundant imports
1249 -- mentioned explicitly by the user
1250 , cov_imp <- take 1 (filter (covers red_imp) imps) ]
1251 -- The 'take 1' picks the first offending group
1252 -- for this particular name
1254 -- "red_imp" is a putative redundant import
1255 -- "cov_imp" potentially covers it
1256 -- This test decides whether red_imp could be dropped
1258 -- NOTE: currently the test does not warn about
1261 -- even if the same underlying 'x' is involved, because dropping
1262 -- either import would change the qualified names in scope (M.x, N.x)
1263 -- But if the qualified names aren't used, the import is indeed redundant
1264 -- Sadly we don't know that. Oh well.
1265 covers red_imp@(ImpSpec { is_decl = red_decl })
1266 cov_imp@(ImpSpec { is_decl = cov_decl, is_item = cov_item })
1267 | red_loc == cov_loc
1268 = False -- Ignore diagonal elements
1269 | not (is_as red_decl == is_as cov_decl)
1270 = False -- They bring into scope different qualified names
1271 | not (is_qual red_decl) && is_qual cov_decl
1272 = False -- Covering one doesn't bring unqualified name into scope
1274 = not (isExplicitItem cov_item) -- Redundant one is selective and covering one isn't
1275 || red_later -- or both are explicit; tie-break using red_later
1278 = not cov_selective -- Redundant one is selective and covering one isn't
1279 || red_later -- Both are explicit; tie-break using red_later
1281 = not cov_selective -- Neither import is selective
1282 && (is_mod red_decl == is_mod cov_decl) -- They import the same module
1283 && red_later -- Tie-break
1286 red_loc = importSpecLoc red_imp
1287 cov_loc = importSpecLoc cov_imp
1288 red_later = red_loc > cov_loc
1290 -- ToDo: deal with original imports with 'qualified' and 'as M' clauses
1291 printMinimalImports :: FiniteMap ModuleName AvailEnv -- Minimal imports
1293 printMinimalImports imps
1294 = ifOptM Opt_D_dump_minimal_imports $ do {
1296 mod_ies <- initIfaceTcRn $ mapM to_ies (fmToList imps) ;
1297 this_mod <- getModule ;
1298 rdr_env <- getGlobalRdrEnv ;
1299 dflags <- getDOpts ;
1300 liftIO $ do h <- openFile (mkFilename this_mod) WriteMode
1301 printForUser h (mkPrintUnqualified dflags rdr_env)
1302 (vcat (map ppr_mod_ie mod_ies))
1305 mkFilename this_mod = moduleNameString (moduleName this_mod) ++ ".imports"
1306 ppr_mod_ie (mod_name, ies)
1307 | mod_name == moduleName pRELUDE
1309 | null ies -- Nothing except instances comes from here
1310 = ptext (sLit "import") <+> ppr mod_name <> ptext (sLit "() -- Instances only")
1312 = ptext (sLit "import") <+> ppr mod_name <>
1313 parens (fsep (punctuate comma (map ppr ies)))
1315 to_ies (mod, avail_env) = do ies <- mapM to_ie (availEnvElts avail_env)
1318 to_ie :: AvailInfo -> IfG (IE Name)
1319 -- The main trick here is that if we're importing all the constructors
1320 -- we want to say "T(..)", but if we're importing only a subset we want
1321 -- to say "T(A,B,C)". So we have to find out what the module exports.
1322 to_ie (Avail n) = return (IEVar n)
1323 to_ie (AvailTC n [m]) = ASSERT( n==m )
1324 return (IEThingAbs n)
1325 to_ie (AvailTC n ns) = do
1326 iface <- loadSysInterface doc n_mod
1327 case [xs | (m,as) <- mi_exports iface,
1330 x == nameOccName n] of
1331 [xs] | all_used xs -> return (IEThingAll n)
1332 | otherwise -> return (IEThingWith n (filter (/= n) ns))
1333 other -> pprTrace "to_ie" (ppr n <+> ppr n_mod <+> ppr other) $
1336 all_used avail_occs = all (`elem` map nameOccName ns) avail_occs
1337 doc = text "Compute minimal imports from" <+> ppr n
1338 n_mod = nameModule n
1342 %************************************************************************
1346 %************************************************************************
1349 badImportItemErr :: ModIface -> ImpDeclSpec -> IE RdrName -> SDoc
1350 badImportItemErr iface decl_spec ie
1351 = sep [ptext (sLit "Module"), quotes (ppr (is_mod decl_spec)), source_import,
1352 ptext (sLit "does not export"), quotes (ppr ie)]
1354 source_import | mi_boot iface = ptext (sLit "(hi-boot interface)")
1357 illegalImportItemErr :: SDoc
1358 illegalImportItemErr = ptext (sLit "Illegal import item")
1360 dodgyImportWarn :: RdrName -> SDoc
1361 dodgyImportWarn item = dodgyMsg (ptext (sLit "import")) item
1362 dodgyExportWarn :: Name -> SDoc
1363 dodgyExportWarn item = dodgyMsg (ptext (sLit "export")) item
1365 dodgyMsg :: OutputableBndr n => SDoc -> n -> SDoc
1367 = sep [ ptext (sLit "The") <+> kind <+> ptext (sLit "item") <+> quotes (ppr (IEThingAll tc)),
1368 ptext (sLit "suggests that") <+> quotes (ppr tc) <+> ptext (sLit "has constructors or class methods,"),
1369 ptext (sLit "but it has none") ]
1371 exportItemErr :: IE RdrName -> SDoc
1372 exportItemErr export_item
1373 = sep [ ptext (sLit "The export item") <+> quotes (ppr export_item),
1374 ptext (sLit "attempts to export constructors or class methods that are not visible here") ]
1376 typeItemErr :: Name -> SDoc -> SDoc
1377 typeItemErr name wherestr
1378 = sep [ ptext (sLit "Using 'type' tag on") <+> quotes (ppr name) <+> wherestr,
1379 ptext (sLit "Use -XTypeFamilies to enable this extension") ]
1381 exportClashErr :: GlobalRdrEnv -> Name -> Name -> IE RdrName -> IE RdrName
1383 exportClashErr global_env name1 name2 ie1 ie2
1384 = vcat [ ptext (sLit "Conflicting exports for") <+> quotes (ppr occ) <> colon
1385 , ppr_export ie1' name1'
1386 , ppr_export ie2' name2' ]
1388 occ = nameOccName name1
1389 ppr_export ie name = nest 2 (quotes (ppr ie) <+> ptext (sLit "exports") <+>
1390 quotes (ppr name) <+> pprNameProvenance (get_gre name))
1392 -- get_gre finds a GRE for the Name, so that we can show its provenance
1394 = case lookupGRE_Name global_env name of
1396 [] -> pprPanic "exportClashErr" (ppr name)
1397 get_loc name = nameSrcLoc $ gre_name $ get_gre name
1398 (name1', ie1', name2', ie2') = if get_loc name1 < get_loc name2
1399 then (name1, ie1, name2, ie2)
1400 else (name2, ie2, name1, ie1)
1402 addDupDeclErr :: [Name] -> TcRn ()
1404 = panic "addDupDeclErr: empty list"
1405 addDupDeclErr names@(name : _)
1406 = addErrAt (getSrcSpan (last sorted_names)) $
1407 -- Report the error at the later location
1408 vcat [ptext (sLit "Multiple declarations of") <+> quotes (ppr name),
1409 ptext (sLit "Declared at:") <+> vcat (map (ppr . nameSrcLoc) sorted_names)]
1411 sorted_names = sortWith nameSrcLoc names
1413 dupExportWarn :: OccName -> IE RdrName -> IE RdrName -> SDoc
1414 dupExportWarn occ_name ie1 ie2
1415 = hsep [quotes (ppr occ_name),
1416 ptext (sLit "is exported by"), quotes (ppr ie1),
1417 ptext (sLit "and"), quotes (ppr ie2)]
1419 dupModuleExport :: ModuleName -> SDoc
1421 = hsep [ptext (sLit "Duplicate"),
1422 quotes (ptext (sLit "Module") <+> ppr mod),
1423 ptext (sLit "in export list")]
1425 moduleNotImported :: ModuleName -> SDoc
1426 moduleNotImported mod
1427 = ptext (sLit "The export item `module") <+> ppr mod <>
1428 ptext (sLit "' is not imported")
1430 nullModuleExport :: ModuleName -> SDoc
1431 nullModuleExport mod
1432 = ptext (sLit "The export item `module") <+> ppr mod <> ptext (sLit "' exports nothing")
1434 moduleWarn :: ModuleName -> WarningTxt -> SDoc
1435 moduleWarn mod (WarningTxt txt)
1436 = sep [ ptext (sLit "Module") <+> quotes (ppr mod) <> ptext (sLit ":"),
1438 moduleWarn mod (DeprecatedTxt txt)
1439 = sep [ ptext (sLit "Module") <+> quotes (ppr mod)
1440 <+> ptext (sLit "is deprecated:"),
1443 implicitPreludeWarn :: SDoc
1445 = ptext (sLit "Module `Prelude' implicitly imported")