Simon's fixes to the generated type instances in Generics
[ghc-hetmet.git] / compiler / main / HscTypes.lhs
1 %
2 % (c) The University of Glasgow, 2006
3 %
4 \section[HscTypes]{Types for the per-module compiler}
5
6 \begin{code}
7 -- | Types for the per-module compiler
8 module HscTypes ( 
9         -- * compilation state
10         HscEnv(..), hscEPS,
11         FinderCache, FindResult(..), ModLocationCache,
12         Target(..), TargetId(..), pprTarget, pprTargetId,
13         ModuleGraph, emptyMG,
14
15         -- * Information about modules
16         ModDetails(..), emptyModDetails,
17         ModGuts(..), CgGuts(..), ForeignStubs(..), appendStubC,
18         ImportedMods,
19
20         ModSummary(..), ms_mod_name, showModMsg, isBootSummary,
21         msHsFilePath, msHiFilePath, msObjFilePath,
22
23         -- * Information about the module being compiled
24         HscSource(..), isHsBoot, hscSourceString,       -- Re-exported from DriverPhases
25         
26         -- * State relating to modules in this package
27         HomePackageTable, HomeModInfo(..), emptyHomePackageTable,
28         hptInstances, hptRules, hptVectInfo,
29         hptObjs,
30
31         -- * State relating to known packages
32         ExternalPackageState(..), EpsStats(..), addEpsInStats,
33         PackageTypeEnv, PackageIfaceTable, emptyPackageIfaceTable,
34         lookupIfaceByModule, emptyModIface,
35         
36         PackageInstEnv, PackageRuleBase,
37
38
39         -- * Annotations
40         prepareAnnotations,
41
42         -- * Interactive context
43         InteractiveContext(..), emptyInteractiveContext, 
44         icPrintUnqual, extendInteractiveContext,
45         substInteractiveContext,
46         mkPrintUnqualified, pprModulePrefix,
47
48         -- * Interfaces
49         ModIface(..), mkIfaceWarnCache, mkIfaceHashCache, mkIfaceFixCache,
50         emptyIfaceWarnCache,
51
52         -- * Fixity
53         FixityEnv, FixItem(..), lookupFixity, emptyFixityEnv,
54
55         -- * TyThings and type environments
56         TyThing(..),
57         tyThingClass, tyThingTyCon, tyThingDataCon, tyThingId, tyThingCoAxiom,
58         implicitTyThings, implicitTyConThings, implicitClassThings, isImplicitTyThing,
59         
60         TypeEnv, lookupType, lookupTypeHscEnv, mkTypeEnv, emptyTypeEnv,
61         extendTypeEnv, extendTypeEnvList, extendTypeEnvWithIds, lookupTypeEnv,
62         typeEnvElts, typeEnvClasses, typeEnvTyCons, typeEnvIds,
63         typeEnvDataCons, typeEnvCoAxioms,
64
65         -- * MonadThings
66         MonadThings(..),
67
68         -- * Information on imports and exports
69         WhetherHasOrphans, IsBootInterface, Usage(..), 
70         Dependencies(..), noDependencies,
71         NameCache(..), OrigNameCache, OrigIParamCache,
72         Avails, availsToNameSet, availsToNameEnv, availName, availNames,
73         GenAvailInfo(..), AvailInfo, RdrAvailInfo, 
74         IfaceExport,
75
76         -- * Warnings
77         Warnings(..), WarningTxt(..), plusWarns,
78
79         -- * Linker stuff
80         Linkable(..), isObjectLinkable, linkableObjs,
81         Unlinked(..), CompiledByteCode,
82         isObject, nameOfObject, isInterpretable, byteCodeOfObject,
83         
84         -- * Program coverage
85         HpcInfo(..), emptyHpcInfo, isHpcUsed, AnyHpcUsage,
86
87         -- * Breakpoints
88         ModBreaks (..), BreakIndex, emptyModBreaks,
89
90         -- * Vectorisation information
91         VectInfo(..), IfaceVectInfo(..), noVectInfo, plusVectInfo, 
92         noIfaceVectInfo,
93
94         -- * Compilation errors and warnings
95         SourceError, GhcApiError, mkSrcErr, srcErrorMessages, mkApiErr,
96         throwOneError, handleSourceError,
97         handleFlagWarnings, printOrThrowWarnings,
98     ) where
99
100 #include "HsVersions.h"
101
102 #ifdef GHCI
103 import ByteCodeAsm      ( CompiledByteCode )
104 import {-# SOURCE #-}  InteractiveEval ( Resume )
105 #endif
106
107 import HsSyn
108 import RdrName
109 import Name
110 import NameEnv
111 import NameSet  
112 import Module
113 import InstEnv          ( InstEnv, Instance )
114 import FamInstEnv       ( FamInstEnv, FamInst )
115 import Rules            ( RuleBase )
116 import CoreSyn          ( CoreBind )
117 import VarEnv
118 import Var
119 import Id
120 import Type             
121
122 import Annotations
123 import Class            ( Class, classAllSelIds, classATs, classTyCon )
124 import TyCon
125 import DataCon          ( DataCon, dataConImplicitIds, dataConWrapId )
126 import PrelNames        ( gHC_PRIM )
127 import Packages hiding ( Version(..) )
128 import DynFlags         ( DynFlags(..), isOneShot, HscTarget (..), dopt,
129                           DynFlag(..) )
130 import DriverPhases     ( HscSource(..), isHsBoot, hscSourceString, Phase )
131 import BasicTypes       ( IPName, defaultFixity, WarningTxt(..) )
132 import OptimizationFuel ( OptFuelState )
133 import IfaceSyn
134 import CoreSyn          ( CoreRule, CoreVect )
135 import Maybes           ( orElse, expectJust, catMaybes )
136 import Outputable
137 import BreakArray
138 import SrcLoc           ( SrcSpan, Located(..) )
139 import UniqFM           ( lookupUFM, eltsUFM, emptyUFM )
140 import UniqSupply       ( UniqSupply )
141 import FastString
142 import StringBuffer     ( StringBuffer )
143 import Fingerprint
144 import MonadUtils
145 import Data.Dynamic     ( Typeable )
146 import qualified Data.Dynamic as Dyn
147 import Bag
148 import ErrUtils
149
150 import System.FilePath
151 import System.Time      ( ClockTime )
152 import Data.IORef
153 import Data.Array       ( Array, array )
154 import Data.List
155 import Data.Map (Map)
156 import Control.Monad    ( mplus, guard, liftM, when )
157 import Exception
158
159 -- -----------------------------------------------------------------------------
160 -- Source Errors
161
162 -- When the compiler (HscMain) discovers errors, it throws an
163 -- exception in the IO monad.
164
165 mkSrcErr :: ErrorMessages -> SourceError
166 srcErrorMessages :: SourceError -> ErrorMessages
167 mkApiErr :: SDoc -> GhcApiError
168
169 throwOneError :: MonadIO m => ErrMsg -> m ab
170 throwOneError err = liftIO $ throwIO $ mkSrcErr $ unitBag err
171
172 -- | A source error is an error that is caused by one or more errors in the
173 -- source code.  A 'SourceError' is thrown by many functions in the
174 -- compilation pipeline.  Inside GHC these errors are merely printed via
175 -- 'log_action', but API clients may treat them differently, for example,
176 -- insert them into a list box.  If you want the default behaviour, use the
177 -- idiom:
178 --
179 -- > handleSourceError printExceptionAndWarnings $ do
180 -- >   ... api calls that may fail ...
181 --
182 -- The 'SourceError's error messages can be accessed via 'srcErrorMessages'.
183 -- This list may be empty if the compiler failed due to @-Werror@
184 -- ('Opt_WarnIsError').
185 --
186 -- See 'printExceptionAndWarnings' for more information on what to take care
187 -- of when writing a custom error handler.
188 data SourceError = SourceError ErrorMessages
189
190 instance Show SourceError where
191   show (SourceError msgs) = unlines . map show . bagToList $ msgs
192     -- ToDo: is there some nicer way to print this?
193
194 sourceErrorTc :: Dyn.TyCon
195 sourceErrorTc = Dyn.mkTyCon "SourceError"
196 {-# NOINLINE sourceErrorTc #-}
197 instance Typeable SourceError where
198   typeOf _ = Dyn.mkTyConApp sourceErrorTc []
199
200 instance Exception SourceError
201
202 mkSrcErr = SourceError
203
204 -- | Perform the given action and call the exception handler if the action
205 -- throws a 'SourceError'.  See 'SourceError' for more information.
206 handleSourceError :: (ExceptionMonad m) =>
207                      (SourceError -> m a) -- ^ exception handler
208                   -> m a -- ^ action to perform
209                   -> m a
210 handleSourceError handler act =
211   gcatch act (\(e :: SourceError) -> handler e)
212
213 srcErrorMessages (SourceError msgs) = msgs
214
215 -- | XXX: what exactly is an API error?
216 data GhcApiError = GhcApiError SDoc
217
218 instance Show GhcApiError where
219   show (GhcApiError msg) = showSDoc msg
220
221 ghcApiErrorTc :: Dyn.TyCon
222 ghcApiErrorTc = Dyn.mkTyCon "GhcApiError"
223 {-# NOINLINE ghcApiErrorTc #-}
224 instance Typeable GhcApiError where
225   typeOf _ = Dyn.mkTyConApp ghcApiErrorTc []
226
227 instance Exception GhcApiError
228
229 mkApiErr = GhcApiError
230
231 -- | Given a bag of warnings, turn them into an exception if
232 -- -Werror is enabled, or print them out otherwise.
233 printOrThrowWarnings :: DynFlags -> Bag WarnMsg -> IO ()
234 printOrThrowWarnings dflags warns
235   | dopt Opt_WarnIsError dflags
236   = when (not (isEmptyBag warns)) $ do
237       throwIO $ mkSrcErr $ warns `snocBag` warnIsErrorMsg
238   | otherwise
239   = printBagOfWarnings dflags warns
240
241 handleFlagWarnings :: DynFlags -> [Located String] -> IO ()
242 handleFlagWarnings dflags warns
243  = when (dopt Opt_WarnDeprecatedFlags dflags) $ do
244         -- It would be nicer if warns :: [Located Message], but that
245         -- has circular import problems.
246       let bag = listToBag [ mkPlainWarnMsg loc (text warn) 
247                           | L loc warn <- warns ]
248
249       printOrThrowWarnings dflags bag
250 \end{code}
251
252 \begin{code}
253 -- | Hscenv is like 'Session', except that some of the fields are immutable.
254 -- An HscEnv is used to compile a single module from plain Haskell source
255 -- code (after preprocessing) to either C, assembly or C--.  Things like
256 -- the module graph don't change during a single compilation.
257 --
258 -- Historical note: \"hsc\" used to be the name of the compiler binary,
259 -- when there was a separate driver and compiler.  To compile a single
260 -- module, the driver would invoke hsc on the source code... so nowadays
261 -- we think of hsc as the layer of the compiler that deals with compiling
262 -- a single module.
263 data HscEnv 
264   = HscEnv { 
265         hsc_dflags :: DynFlags,
266                 -- ^ The dynamic flag settings
267
268         hsc_targets :: [Target],
269                 -- ^ The targets (or roots) of the current session
270
271         hsc_mod_graph :: ModuleGraph,
272                 -- ^ The module graph of the current session
273
274         hsc_IC :: InteractiveContext,
275                 -- ^ The context for evaluating interactive statements
276
277         hsc_HPT    :: HomePackageTable,
278                 -- ^ The home package table describes already-compiled
279                 -- home-package modules, /excluding/ the module we 
280                 -- are compiling right now.
281                 -- (In one-shot mode the current module is the only
282                 --  home-package module, so hsc_HPT is empty.  All other
283                 --  modules count as \"external-package\" modules.
284                 --  However, even in GHCi mode, hi-boot interfaces are
285                 --  demand-loaded into the external-package table.)
286                 --
287                 -- 'hsc_HPT' is not mutable because we only demand-load 
288                 -- external packages; the home package is eagerly 
289                 -- loaded, module by module, by the compilation manager.
290                 --      
291                 -- The HPT may contain modules compiled earlier by @--make@
292                 -- but not actually below the current module in the dependency
293                 -- graph.
294
295                 -- (This changes a previous invariant: changed Jan 05.)
296         
297         hsc_EPS :: {-# UNPACK #-} !(IORef ExternalPackageState),
298                 -- ^ Information about the currently loaded external packages.
299                 -- This is mutable because packages will be demand-loaded during
300                 -- a compilation run as required.
301         
302         hsc_NC  :: {-# UNPACK #-} !(IORef NameCache),
303                 -- ^ As with 'hsc_EPS', this is side-effected by compiling to
304                 -- reflect sucking in interface files.  They cache the state of
305                 -- external interface files, in effect.
306
307         hsc_FC   :: {-# UNPACK #-} !(IORef FinderCache),
308                 -- ^ The cached result of performing finding in the file system
309         hsc_MLC  :: {-# UNPACK #-} !(IORef ModLocationCache),
310                 -- ^ This caches the location of modules, so we don't have to 
311                 -- search the filesystem multiple times. See also 'hsc_FC'.
312
313         hsc_OptFuel :: OptFuelState,
314                 -- ^ Settings to control the use of \"optimization fuel\":
315                 -- by limiting the number of transformations,
316                 -- we can use binary search to help find compiler bugs.
317
318         hsc_type_env_var :: Maybe (Module, IORef TypeEnv)
319                 -- ^ Used for one-shot compilation only, to initialise
320                 -- the 'IfGblEnv'. See 'TcRnTypes.tcg_type_env_var' for 
321                 -- 'TcRunTypes.TcGblEnv'
322  }
323
324 hscEPS :: HscEnv -> IO ExternalPackageState
325 hscEPS hsc_env = readIORef (hsc_EPS hsc_env)
326
327 -- | A compilation target.
328 --
329 -- A target may be supplied with the actual text of the
330 -- module.  If so, use this instead of the file contents (this
331 -- is for use in an IDE where the file hasn't been saved by
332 -- the user yet).
333 data Target = Target
334       { targetId           :: TargetId  -- ^ module or filename
335       , targetAllowObjCode :: Bool      -- ^ object code allowed?
336       , targetContents     :: Maybe (StringBuffer,ClockTime)
337                                         -- ^ in-memory text buffer?
338       }
339
340 data TargetId
341   = TargetModule ModuleName
342         -- ^ A module name: search for the file
343   | TargetFile FilePath (Maybe Phase)
344         -- ^ A filename: preprocess & parse it to find the module name.
345         -- If specified, the Phase indicates how to compile this file
346         -- (which phase to start from).  Nothing indicates the starting phase
347         -- should be determined from the suffix of the filename.
348   deriving Eq
349
350 pprTarget :: Target -> SDoc
351 pprTarget (Target id obj _) = 
352    (if obj then char '*' else empty) <> pprTargetId id
353
354 instance Outputable Target where
355     ppr = pprTarget
356
357 pprTargetId :: TargetId -> SDoc
358 pprTargetId (TargetModule m) = ppr m
359 pprTargetId (TargetFile f _) = text f
360
361 instance Outputable TargetId where
362     ppr = pprTargetId
363
364 -- | Helps us find information about modules in the home package
365 type HomePackageTable  = ModuleNameEnv HomeModInfo
366         -- Domain = modules in the home package that have been fully compiled
367         -- "home" package name cached here for convenience
368
369 -- | Helps us find information about modules in the imported packages
370 type PackageIfaceTable = ModuleEnv ModIface
371         -- Domain = modules in the imported packages
372
373 emptyHomePackageTable :: HomePackageTable
374 emptyHomePackageTable  = emptyUFM
375
376 emptyPackageIfaceTable :: PackageIfaceTable
377 emptyPackageIfaceTable = emptyModuleEnv
378
379 -- | Information about modules in the package being compiled
380 data HomeModInfo 
381   = HomeModInfo {
382       hm_iface    :: !ModIface,
383         -- ^ The basic loaded interface file: every loaded module has one of
384         -- these, even if it is imported from another package
385       hm_details  :: !ModDetails,
386         -- ^ Extra information that has been created from the 'ModIface' for
387         -- the module, typically during typechecking
388       hm_linkable :: !(Maybe Linkable)
389         -- ^ The actual artifact we would like to link to access things in
390         -- this module.
391         --
392         -- 'hm_linkable' might be Nothing:
393         --
394         --   1. If this is an .hs-boot module
395         --
396         --   2. Temporarily during compilation if we pruned away
397         --      the old linkable because it was out of date.
398         --
399         -- After a complete compilation ('GHC.load'), all 'hm_linkable' fields
400         -- in the 'HomePackageTable' will be @Just@.
401         --
402         -- When re-linking a module ('HscMain.HscNoRecomp'), we construct the
403         -- 'HomeModInfo' by building a new 'ModDetails' from the old
404         -- 'ModIface' (only).
405     }
406
407 -- | Find the 'ModIface' for a 'Module', searching in both the loaded home
408 -- and external package module information
409 lookupIfaceByModule
410         :: DynFlags
411         -> HomePackageTable
412         -> PackageIfaceTable
413         -> Module
414         -> Maybe ModIface
415 lookupIfaceByModule dflags hpt pit mod
416   | modulePackageId mod == thisPackage dflags
417   =     -- The module comes from the home package, so look first
418         -- in the HPT.  If it's not from the home package it's wrong to look
419         -- in the HPT, because the HPT is indexed by *ModuleName* not Module
420     fmap hm_iface (lookupUFM hpt (moduleName mod)) 
421     `mplus` lookupModuleEnv pit mod
422
423   | otherwise = lookupModuleEnv pit mod         -- Look in PIT only 
424
425 -- If the module does come from the home package, why do we look in the PIT as well?
426 -- (a) In OneShot mode, even home-package modules accumulate in the PIT
427 -- (b) Even in Batch (--make) mode, there is *one* case where a home-package
428 --     module is in the PIT, namely GHC.Prim when compiling the base package.
429 -- We could eliminate (b) if we wanted, by making GHC.Prim belong to a package
430 -- of its own, but it doesn't seem worth the bother.
431 \end{code}
432
433
434 \begin{code}
435 hptInstances :: HscEnv -> (ModuleName -> Bool) -> ([Instance], [FamInst])
436 -- ^ Find all the instance declarations (of classes and families) that are in
437 -- modules imported by this one, directly or indirectly, and are in the Home
438 -- Package Table.  This ensures that we don't see instances from modules @--make@
439 -- compiled before this one, but which are not below this one.
440 hptInstances hsc_env want_this_module
441   = let (insts, famInsts) = unzip $ flip hptAllThings hsc_env $ \mod_info -> do
442                 guard (want_this_module (moduleName (mi_module (hm_iface mod_info))))
443                 let details = hm_details mod_info
444                 return (md_insts details, md_fam_insts details)
445     in (concat insts, concat famInsts)
446
447 hptVectInfo :: HscEnv -> VectInfo
448 -- ^ Get the combined VectInfo of all modules in the home package table.  In
449 -- contrast to instances and rules, we don't care whether the modules are
450 -- \"below\" us in the dependency sense.  The VectInfo of those modules not \"below\" 
451 -- us does not affect the compilation of the current module.
452 hptVectInfo = concatVectInfo . hptAllThings ((: []) . md_vect_info . hm_details)
453
454 hptRules :: HscEnv -> [(ModuleName, IsBootInterface)] -> [CoreRule]
455 -- ^ Get rules from modules \"below\" this one (in the dependency sense)
456 hptRules = hptSomeThingsBelowUs (md_rules . hm_details) False
457
458
459 hptAnns :: HscEnv -> Maybe [(ModuleName, IsBootInterface)] -> [Annotation]
460 -- ^ Get annotations from modules \"below\" this one (in the dependency sense)
461 hptAnns hsc_env (Just deps) = hptSomeThingsBelowUs (md_anns . hm_details) False hsc_env deps
462 hptAnns hsc_env Nothing = hptAllThings (md_anns . hm_details) hsc_env
463
464 hptAllThings :: (HomeModInfo -> [a]) -> HscEnv -> [a]
465 hptAllThings extract hsc_env = concatMap extract (eltsUFM (hsc_HPT hsc_env))
466
467 hptSomeThingsBelowUs :: (HomeModInfo -> [a]) -> Bool -> HscEnv -> [(ModuleName, IsBootInterface)] -> [a]
468 -- Get things from modules \"below\" this one (in the dependency sense)
469 -- C.f Inst.hptInstances
470 hptSomeThingsBelowUs extract include_hi_boot hsc_env deps
471  | isOneShot (ghcMode (hsc_dflags hsc_env)) = []
472   | otherwise
473   = let 
474         hpt = hsc_HPT hsc_env
475     in
476     [ thing
477     |   -- Find each non-hi-boot module below me
478       (mod, is_boot_mod) <- deps
479     , include_hi_boot || not is_boot_mod
480
481         -- unsavoury: when compiling the base package with --make, we
482         -- sometimes try to look up RULES etc for GHC.Prim.  GHC.Prim won't
483         -- be in the HPT, because we never compile it; it's in the EPT
484         -- instead.  ToDo: clean up, and remove this slightly bogus
485         -- filter:
486     , mod /= moduleName gHC_PRIM
487
488         -- Look it up in the HPT
489     , let things = case lookupUFM hpt mod of
490                     Just info -> extract info
491                     Nothing -> pprTrace "WARNING in hptSomeThingsBelowUs" msg [] 
492           msg = vcat [ptext (sLit "missing module") <+> ppr mod,
493                       ptext (sLit "Probable cause: out-of-date interface files")]
494                         -- This really shouldn't happen, but see Trac #962
495
496         -- And get its dfuns
497     , thing <- things ]
498
499 hptObjs :: HomePackageTable -> [FilePath]
500 hptObjs hpt = concat (map (maybe [] linkableObjs . hm_linkable) (eltsUFM hpt))
501 \end{code}
502
503 %************************************************************************
504 %*                                                                      *
505 \subsection{Dealing with Annotations}
506 %*                                                                      *
507 %************************************************************************
508
509 \begin{code}
510 prepareAnnotations :: HscEnv -> Maybe ModGuts -> IO AnnEnv
511 -- ^ Deal with gathering annotations in from all possible places 
512 --   and combining them into a single 'AnnEnv'
513 prepareAnnotations hsc_env mb_guts
514   = do { eps <- hscEPS hsc_env
515        ; let -- Extract annotations from the module being compiled if supplied one
516             mb_this_module_anns = fmap (mkAnnEnv . mg_anns) mb_guts
517         -- Extract dependencies of the module if we are supplied one,
518         -- otherwise load annotations from all home package table
519         -- entries regardless of dependency ordering.
520             home_pkg_anns  = (mkAnnEnv . hptAnns hsc_env) $ fmap (dep_mods . mg_deps) mb_guts
521             other_pkg_anns = eps_ann_env eps
522             ann_env        = foldl1' plusAnnEnv $ catMaybes [mb_this_module_anns, 
523                                                              Just home_pkg_anns, 
524                                                              Just other_pkg_anns]
525
526        ; return ann_env }
527 \end{code}
528
529 %************************************************************************
530 %*                                                                      *
531 \subsection{The Finder cache}
532 %*                                                                      *
533 %************************************************************************
534
535 \begin{code}
536 -- | The 'FinderCache' maps home module names to the result of
537 -- searching for that module.  It records the results of searching for
538 -- modules along the search path.  On @:load@, we flush the entire
539 -- contents of this cache.
540 --
541 -- Although the @FinderCache@ range is 'FindResult' for convenience ,
542 -- in fact it will only ever contain 'Found' or 'NotFound' entries.
543 --
544 type FinderCache = ModuleNameEnv FindResult
545
546 -- | The result of searching for an imported module.
547 data FindResult
548   = Found ModLocation Module
549         -- ^ The module was found
550   | NoPackage PackageId
551         -- ^ The requested package was not found
552   | FoundMultiple [PackageId]
553         -- ^ _Error_: both in multiple packages
554
555   | NotFound          -- Not found
556       { fr_paths       :: [FilePath]       -- Places where I looked
557
558       , fr_pkg         :: Maybe PackageId  -- Just p => module is in this package's
559                                            --           manifest, but couldn't find
560                                            --           the .hi file
561
562       , fr_mods_hidden :: [PackageId]      -- Module is in these packages,
563                                            --   but the *module* is hidden
564
565       , fr_pkgs_hidden :: [PackageId]      -- Module is in these packages,
566                                            --   but the *package* is hidden
567
568       , fr_suggestions :: [Module]         -- Possible mis-spelled modules
569       }
570
571 -- | Cache that remembers where we found a particular module.  Contains both
572 -- home modules and package modules.  On @:load@, only home modules are
573 -- purged from this cache.
574 type ModLocationCache = ModuleEnv ModLocation
575 \end{code}
576
577 %************************************************************************
578 %*                                                                      *
579 \subsection{Symbol tables and Module details}
580 %*                                                                      *
581 %************************************************************************
582
583 \begin{code}
584 -- | A 'ModIface' plus a 'ModDetails' summarises everything we know 
585 -- about a compiled module.  The 'ModIface' is the stuff *before* linking,
586 -- and can be written out to an interface file. The 'ModDetails is after 
587 -- linking and can be completely recovered from just the 'ModIface'.
588 -- 
589 -- When we read an interface file, we also construct a 'ModIface' from it,
590 -- except that we explicitly make the 'mi_decls' and a few other fields empty;
591 -- as when reading we consolidate the declarations etc. into a number of indexed
592 -- maps and environments in the 'ExternalPackageState'.
593 data ModIface 
594    = ModIface {
595         mi_module   :: !Module,             -- ^ Name of the module we are for
596         mi_iface_hash :: !Fingerprint,      -- ^ Hash of the whole interface
597         mi_mod_hash :: !Fingerprint,        -- ^ Hash of the ABI only
598
599         mi_orphan   :: !WhetherHasOrphans,  -- ^ Whether this module has orphans
600         mi_finsts   :: !WhetherHasFamInst,  -- ^ Whether this module has family instances
601         mi_boot     :: !IsBootInterface,    -- ^ Read from an hi-boot file?
602
603         mi_deps     :: Dependencies,
604                 -- ^ The dependencies of the module.  This is
605                 -- consulted for directly-imported modules, but not
606                 -- for anything else (hence lazy)
607
608         mi_usages   :: [Usage],
609                 -- ^ Usages; kept sorted so that it's easy to decide
610                 -- whether to write a new iface file (changing usages
611                 -- doesn't affect the hash of this module)
612         
613                 -- NOT STRICT!  we read this field lazily from the interface file
614                 -- It is *only* consulted by the recompilation checker
615
616                 -- Exports
617                 -- Kept sorted by (mod,occ), to make version comparisons easier
618         mi_exports  :: ![IfaceExport],
619                 -- ^ Records the modules that are the declaration points for things
620                 -- exported by this module, and the 'OccName's of those things
621         
622         mi_exp_hash :: !Fingerprint,    -- ^ Hash of export list
623
624         mi_fixities :: [(OccName,Fixity)],
625                 -- ^ Fixities
626         
627                 -- NOT STRICT!  we read this field lazily from the interface file
628
629         mi_warns  :: Warnings,
630                 -- ^ Warnings
631                 
632                 -- NOT STRICT!  we read this field lazily from the interface file
633
634         mi_anns  :: [IfaceAnnotation],
635                 -- ^ Annotations
636         
637                 -- NOT STRICT!  we read this field lazily from the interface file
638
639                 -- Type, class and variable declarations
640                 -- The hash of an Id changes if its fixity or deprecations change
641                 --      (as well as its type of course)
642                 -- Ditto data constructors, class operations, except that 
643                 -- the hash of the parent class/tycon changes
644         mi_decls :: [(Fingerprint,IfaceDecl)],  -- ^ Sorted type, variable, class etc. declarations
645
646         mi_globals  :: !(Maybe GlobalRdrEnv),
647                 -- ^ Binds all the things defined at the top level in
648                 -- the /original source/ code for this module. which
649                 -- is NOT the same as mi_exports, nor mi_decls (which
650                 -- may contains declarations for things not actually
651                 -- defined by the user).  Used for GHCi and for inspecting
652                 -- the contents of modules via the GHC API only.
653                 --
654                 -- (We need the source file to figure out the
655                 -- top-level environment, if we didn't compile this module
656                 -- from source then this field contains @Nothing@).
657                 --
658                 -- Strictly speaking this field should live in the
659                 -- 'HomeModInfo', but that leads to more plumbing.
660
661                 -- Instance declarations and rules
662         mi_insts     :: [IfaceInst],                    -- ^ Sorted class instance
663         mi_fam_insts :: [IfaceFamInst],                 -- ^ Sorted family instances
664         mi_rules     :: [IfaceRule],                    -- ^ Sorted rules
665         mi_orphan_hash :: !Fingerprint, -- ^ Hash for orphan rules and 
666                                         -- class and family instances
667                                         -- combined
668
669         mi_vect_info :: !IfaceVectInfo, -- ^ Vectorisation information
670
671                 -- Cached environments for easy lookup
672                 -- These are computed (lazily) from other fields
673                 -- and are not put into the interface file
674         mi_warn_fn  :: Name -> Maybe WarningTxt,        -- ^ Cached lookup for 'mi_warns'
675         mi_fix_fn  :: OccName -> Fixity,                -- ^ Cached lookup for 'mi_fixities'
676         mi_hash_fn :: OccName -> Maybe (OccName, Fingerprint),
677                         -- ^ Cached lookup for 'mi_decls'.
678                         -- The @Nothing@ in 'mi_hash_fn' means that the thing
679                         -- isn't in decls. It's useful to know that when
680                         -- seeing if we are up to date wrt. the old interface.
681                         -- The 'OccName' is the parent of the name, if it has one.
682         mi_hpc    :: !AnyHpcUsage
683                 -- ^ True if this program uses Hpc at any point in the program.
684      }
685
686 -- | The 'ModDetails' is essentially a cache for information in the 'ModIface'
687 -- for home modules only. Information relating to packages will be loaded into
688 -- global environments in 'ExternalPackageState'.
689 data ModDetails
690    = ModDetails {
691         -- The next two fields are created by the typechecker
692         md_exports   :: [AvailInfo],
693         md_types     :: !TypeEnv,       -- ^ Local type environment for this particular module
694         md_insts     :: ![Instance],    -- ^ 'DFunId's for the instances in this module
695         md_fam_insts :: ![FamInst],
696         md_rules     :: ![CoreRule],    -- ^ Domain may include 'Id's from other modules
697         md_anns      :: ![Annotation],  -- ^ Annotations present in this module: currently 
698                                         -- they only annotate things also declared in this module
699         md_vect_info :: !VectInfo       -- ^ Module vectorisation information
700      }
701
702 emptyModDetails :: ModDetails
703 emptyModDetails = ModDetails { md_types = emptyTypeEnv,
704                                md_exports = [],
705                                md_insts     = [],
706                                md_rules     = [],
707                                md_fam_insts = [],
708                                md_anns      = [],
709                                md_vect_info = noVectInfo
710                              } 
711
712 -- | Records the modules directly imported by a module for extracting e.g. usage information
713 type ImportedMods = ModuleEnv [(ModuleName, Bool, SrcSpan)]
714 -- TODO: we are not actually using the codomain of this type at all, so it can be
715 -- replaced with ModuleEnv ()
716
717 -- | A ModGuts is carried through the compiler, accumulating stuff as it goes
718 -- There is only one ModGuts at any time, the one for the module
719 -- being compiled right now.  Once it is compiled, a 'ModIface' and 
720 -- 'ModDetails' are extracted and the ModGuts is discarded.
721 data ModGuts
722   = ModGuts {
723         mg_module    :: !Module,         -- ^ Module being compiled
724         mg_boot      :: IsBootInterface, -- ^ Whether it's an hs-boot module
725         mg_exports   :: ![AvailInfo],    -- ^ What it exports
726         mg_deps      :: !Dependencies,   -- ^ What it depends on, directly or
727                                          -- otherwise
728         mg_dir_imps  :: !ImportedMods,   -- ^ Directly-imported modules; used to
729                                          -- generate initialisation code
730         mg_used_names:: !NameSet,        -- ^ What the module needed (used in 'MkIface.mkIface')
731
732         mg_rdr_env   :: !GlobalRdrEnv,   -- ^ Top-level lexical environment
733
734         -- These fields all describe the things **declared in this module**
735         mg_fix_env   :: !FixityEnv,      -- ^ Fixities declared in this module
736                                          -- TODO: I'm unconvinced this is actually used anywhere
737         mg_types     :: !TypeEnv,        -- ^ Types declared in this module
738         mg_insts     :: ![Instance],     -- ^ Class instances declared in this module
739         mg_fam_insts :: ![FamInst],      -- ^ Family instances declared in this module
740         mg_rules     :: ![CoreRule],     -- ^ Before the core pipeline starts, contains 
741                                          -- See Note [Overall plumbing for rules] in Rules.lhs
742         mg_binds     :: ![CoreBind],     -- ^ Bindings for this module
743         mg_foreign   :: !ForeignStubs,   -- ^ Foreign exports declared in this module
744         mg_warns     :: !Warnings,       -- ^ Warnings declared in the module
745         mg_anns      :: [Annotation],    -- ^ Annotations declared in this module
746         mg_hpc_info  :: !HpcInfo,        -- ^ Coverage tick boxes in the module
747         mg_modBreaks :: !ModBreaks,      -- ^ Breakpoints for the module
748         mg_vect_decls:: ![CoreVect],     -- ^ Vectorisation declarations in this module
749                                          --   (produced by desugarer & consumed by vectoriser)
750         mg_vect_info :: !VectInfo,       -- ^ Pool of vectorised declarations in the module
751
752         -- The next two fields are unusual, because they give instance
753         -- environments for *all* modules in the home package, including
754         -- this module, rather than for *just* this module.  
755         -- Reason: when looking up an instance we don't want to have to
756         --        look at each module in the home package in turn
757         mg_inst_env     :: InstEnv,
758         -- ^ Class instance environment from /home-package/ modules (including
759         -- this one); c.f. 'tcg_inst_env'
760         mg_fam_inst_env :: FamInstEnv
761         -- ^ Type-family instance enviroment for /home-package/ modules
762         -- (including this one); c.f. 'tcg_fam_inst_env'
763     }
764
765 -- The ModGuts takes on several slightly different forms:
766 --
767 -- After simplification, the following fields change slightly:
768 --      mg_rules        Orphan rules only (local ones now attached to binds)
769 --      mg_binds        With rules attached
770
771 -- The ModGuts takes on several slightly different forms:
772 --
773 -- After simplification, the following fields change slightly:
774 --      mg_rules        Orphan rules only (local ones now attached to binds)
775 --      mg_binds        With rules attached
776
777
778 ---------------------------------------------------------
779 -- The Tidy pass forks the information about this module: 
780 --      * one lot goes to interface file generation (ModIface)
781 --        and later compilations (ModDetails)
782 --      * the other lot goes to code generation (CgGuts)
783
784 -- | A restricted form of 'ModGuts' for code generation purposes
785 data CgGuts 
786   = CgGuts {
787         cg_module   :: !Module, -- ^ Module being compiled
788
789         cg_tycons   :: [TyCon],
790                 -- ^ Algebraic data types (including ones that started
791                 -- life as classes); generate constructors and info
792                 -- tables. Includes newtypes, just for the benefit of
793                 -- External Core
794
795         cg_binds    :: [CoreBind],
796                 -- ^ The tidied main bindings, including
797                 -- previously-implicit bindings for record and class
798                 -- selectors, and data construtor wrappers.  But *not*
799                 -- data constructor workers; reason: we we regard them
800                 -- as part of the code-gen of tycons
801
802         cg_foreign  :: !ForeignStubs,   -- ^ Foreign export stubs
803         cg_dep_pkgs :: ![PackageId],    -- ^ Dependent packages, used to 
804                                         -- generate #includes for C code gen
805         cg_hpc_info :: !HpcInfo,        -- ^ Program coverage tick box information
806         cg_modBreaks :: !ModBreaks      -- ^ Module breakpoints
807     }
808
809 -----------------------------------
810 -- | Foreign export stubs
811 data ForeignStubs = NoStubs             -- ^ We don't have any stubs
812                   | ForeignStubs
813                         SDoc            
814                         SDoc            
815                    -- ^ There are some stubs. Parameters:
816                    --
817                    --  1) Header file prototypes for
818                    --     "foreign exported" functions
819                    --
820                    --  2) C stubs to use when calling
821                    --     "foreign exported" functions
822
823 appendStubC :: ForeignStubs -> SDoc -> ForeignStubs
824 appendStubC NoStubs            c_code = ForeignStubs empty c_code
825 appendStubC (ForeignStubs h c) c_code = ForeignStubs h (c $$ c_code)
826 \end{code}
827
828 \begin{code}
829 emptyModIface :: Module -> ModIface
830 emptyModIface mod
831   = ModIface { mi_module   = mod,
832                mi_iface_hash = fingerprint0,
833                mi_mod_hash = fingerprint0,
834                mi_orphan   = False,
835                mi_finsts   = False,
836                mi_boot     = False,
837                mi_deps     = noDependencies,
838                mi_usages   = [],
839                mi_exports  = [],
840                mi_exp_hash = fingerprint0,
841                mi_fixities = [],
842                mi_warns    = NoWarnings,
843                mi_anns     = [],
844                mi_insts     = [],
845                mi_fam_insts = [],
846                mi_rules     = [],
847                mi_decls     = [],
848                mi_globals   = Nothing,
849                mi_orphan_hash = fingerprint0,
850                mi_vect_info = noIfaceVectInfo,
851                mi_warn_fn    = emptyIfaceWarnCache,
852                mi_fix_fn    = emptyIfaceFixCache,
853                mi_hash_fn   = emptyIfaceHashCache,
854                mi_hpc       = False
855     }           
856 \end{code}
857
858
859 %************************************************************************
860 %*                                                                      *
861 \subsection{The interactive context}
862 %*                                                                      *
863 %************************************************************************
864
865 \begin{code}
866 -- | Interactive context, recording information relevant to GHCi
867 data InteractiveContext 
868   = InteractiveContext { 
869           ic_toplev_scope :: [Module]   -- ^ The context includes the "top-level" scope of
870                                         -- these modules
871
872         , ic_exports :: [(Module, Maybe (ImportDecl RdrName))]    -- ^ The context includes just the exported parts of these
873                                         -- modules
874
875         , ic_rn_gbl_env :: GlobalRdrEnv -- ^ The contexts' cached 'GlobalRdrEnv', built from
876                                         -- 'ic_toplev_scope' and 'ic_exports'
877
878         , ic_tmp_ids :: [Id]   -- ^ Names bound during interaction with the user.
879                                -- Later Ids shadow earlier ones with the same OccName
880                                -- Expressions are typed with these Ids in the envt
881                                -- For runtime-debugging, these Ids may have free
882                                -- TcTyVars of RuntimUnkSkol flavour, but no free TyVars
883                                -- (because the typechecker doesn't expect that)
884
885 #ifdef GHCI
886         , ic_resume :: [Resume]         -- ^ The stack of breakpoint contexts
887 #endif
888
889         , ic_cwd :: Maybe FilePath      -- virtual CWD of the program
890     }
891
892
893 emptyInteractiveContext :: InteractiveContext
894 emptyInteractiveContext
895   = InteractiveContext { ic_toplev_scope = [],
896                          ic_exports = [],
897                          ic_rn_gbl_env = emptyGlobalRdrEnv,
898                          ic_tmp_ids = []
899 #ifdef GHCI
900                          , ic_resume = []
901 #endif
902                          , ic_cwd = Nothing
903                        }
904
905 icPrintUnqual :: DynFlags -> InteractiveContext -> PrintUnqualified
906 icPrintUnqual dflags ictxt = mkPrintUnqualified dflags (ic_rn_gbl_env ictxt)
907
908
909 extendInteractiveContext
910         :: InteractiveContext
911         -> [Id]
912         -> InteractiveContext
913 extendInteractiveContext ictxt ids
914   = ictxt { ic_tmp_ids =  snub ((ic_tmp_ids ictxt \\ ids) ++ ids)
915                           -- NB. must be this way around, because we want
916                           -- new ids to shadow existing bindings.
917           }
918     where snub = map head . group . sort
919
920 substInteractiveContext :: InteractiveContext -> TvSubst -> InteractiveContext
921 substInteractiveContext ictxt subst | isEmptyTvSubst subst = ictxt
922 substInteractiveContext ictxt@InteractiveContext{ic_tmp_ids=ids} subst 
923   = ictxt { ic_tmp_ids = map subst_ty ids }
924   where
925    subst_ty id = id `setIdType` substTy subst (idType id)
926 \end{code}
927
928 %************************************************************************
929 %*                                                                      *
930         Building a PrintUnqualified             
931 %*                                                                      *
932 %************************************************************************
933
934 Note [Printing original names]
935 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
936 Deciding how to print names is pretty tricky.  We are given a name
937 P:M.T, where P is the package name, M is the defining module, and T is
938 the occurrence name, and we have to decide in which form to display
939 the name given a GlobalRdrEnv describing the current scope.
940
941 Ideally we want to display the name in the form in which it is in
942 scope.  However, the name might not be in scope at all, and that's
943 where it gets tricky.  Here are the cases:
944
945  1. T uniquely maps to  P:M.T      --->  "T"      NameUnqual
946  2. There is an X for which X.T 
947        uniquely maps to  P:M.T     --->  "X.T"    NameQual X
948  3. There is no binding for "M.T"  --->  "M.T"    NameNotInScope1
949  4. Otherwise                      --->  "P:M.T"  NameNotInScope2
950
951 (3) and (4) apply when the entity P:M.T is not in the GlobalRdrEnv at
952 all. In these cases we still want to refer to the name as "M.T", *but*
953 "M.T" might mean something else in the current scope (e.g. if there's
954 an "import X as M"), so to avoid confusion we avoid using "M.T" if
955 there's already a binding for it.  Instead we write P:M.T.
956
957 There's one further subtlety: in case (3), what if there are two
958 things around, P1:M.T and P2:M.T?  Then we don't want to print both of
959 them as M.T!  However only one of the modules P1:M and P2:M can be
960 exposed (say P2), so we use M.T for that, and P1:M.T for the other one.
961 This is handled by the qual_mod component of PrintUnqualified, inside
962 the (ppr mod) of case (3), in Name.pprModulePrefix
963
964 \begin{code}
965 -- | Creates some functions that work out the best ways to format
966 -- names for the user according to a set of heuristics
967 mkPrintUnqualified :: DynFlags -> GlobalRdrEnv -> PrintUnqualified
968 mkPrintUnqualified dflags env = (qual_name, qual_mod)
969   where
970   qual_name mod occ     -- The (mod,occ) pair is the original name of the thing
971         | [gre] <- unqual_gres, right_name gre = NameUnqual
972                 -- If there's a unique entity that's in scope unqualified with 'occ'
973                 -- AND that entity is the right one, then we can use the unqualified name
974
975         | [gre] <- qual_gres = NameQual (get_qual_mod (gre_prov gre))
976
977         | null qual_gres = 
978               if null (lookupGRE_RdrName (mkRdrQual (moduleName mod) occ) env)
979                    then NameNotInScope1
980                    else NameNotInScope2
981
982         | otherwise = panic "mkPrintUnqualified"
983       where
984         right_name gre = nameModule_maybe (gre_name gre) == Just mod
985
986         unqual_gres = lookupGRE_RdrName (mkRdrUnqual occ) env
987         qual_gres   = filter right_name (lookupGlobalRdrEnv env occ)
988
989         get_qual_mod LocalDef      = moduleName mod
990         get_qual_mod (Imported is) = ASSERT( not (null is) ) is_as (is_decl (head is))
991
992     -- we can mention a module P:M without the P: qualifier iff
993     -- "import M" would resolve unambiguously to P:M.  (if P is the
994     -- current package we can just assume it is unqualified).
995
996   qual_mod mod
997      | modulePackageId mod == thisPackage dflags = False
998
999      | [pkgconfig] <- [pkg | (pkg,exposed_module) <- lookup, 
1000                              exposed pkg && exposed_module],
1001        packageConfigId pkgconfig == modulePackageId mod
1002         -- this says: we are given a module P:M, is there just one exposed package
1003         -- that exposes a module M, and is it package P?
1004      = False
1005
1006      | otherwise = True
1007      where lookup = lookupModuleInAllPackages dflags (moduleName mod)
1008 \end{code}
1009
1010
1011 %************************************************************************
1012 %*                                                                      *
1013                 TyThing
1014 %*                                                                      *
1015 %************************************************************************
1016
1017 \begin{code}
1018 -- | Determine the 'TyThing's brought into scope by another 'TyThing'
1019 -- /other/ than itself. For example, Id's don't have any implicit TyThings
1020 -- as they just bring themselves into scope, but classes bring their
1021 -- dictionary datatype, type constructor and some selector functions into
1022 -- scope, just for a start!
1023
1024 -- N.B. the set of TyThings returned here *must* match the set of
1025 -- names returned by LoadIface.ifaceDeclSubBndrs, in the sense that
1026 -- TyThing.getOccName should define a bijection between the two lists.
1027 -- This invariant is used in LoadIface.loadDecl (see note [Tricky iface loop])
1028 -- The order of the list does not matter.
1029 implicitTyThings :: TyThing -> [TyThing]
1030 implicitTyThings (AnId _)       = []
1031 implicitTyThings (ACoAxiom _cc) = []
1032 implicitTyThings (ATyCon tc)    = implicitTyConThings tc
1033 implicitTyThings (AClass cl)    = implicitClassThings cl
1034 implicitTyThings (ADataCon dc)  = map AnId (dataConImplicitIds dc)
1035     -- For data cons add the worker and (possibly) wrapper
1036     
1037 implicitClassThings :: Class -> [TyThing]
1038 implicitClassThings cl 
1039   = -- dictionary datatype:
1040     --    [extras_plus:]
1041     --      type constructor 
1042     --    [recursive call:]
1043     --      (possibly) newtype coercion; definitely no family coercion here
1044     --      data constructor
1045     --      worker
1046     --      (no wrapper by invariant)
1047     extras_plus (ATyCon (classTyCon cl)) ++
1048     -- associated types 
1049     --    No extras_plus (recursive call) for the classATs, because they
1050     --    are only the family decls; they have no implicit things
1051     map ATyCon (classATs cl) ++
1052     -- superclass and operation selectors
1053     map AnId (classAllSelIds cl)
1054
1055 implicitTyConThings :: TyCon -> [TyThing]
1056 implicitTyConThings tc 
1057   =   -- fields (names of selectors)
1058       -- (possibly) implicit coercion and family coercion
1059       --   depending on whether it's a newtype or a family instance or both
1060     implicitCoTyCon tc ++
1061       -- for each data constructor in order,
1062       --   the contructor, worker, and (possibly) wrapper
1063     concatMap (extras_plus . ADataCon) (tyConDataCons tc)
1064
1065
1066 -- add a thing and recursive call
1067 extras_plus :: TyThing -> [TyThing]
1068 extras_plus thing = thing : implicitTyThings thing
1069
1070 -- For newtypes and indexed data types (and both),
1071 -- add the implicit coercion tycon
1072 implicitCoTyCon :: TyCon -> [TyThing]
1073 implicitCoTyCon tc 
1074   = map ACoAxiom . catMaybes $ [-- Just if newtype, Nothing if not
1075                               newTyConCo_maybe tc,
1076                               -- Just if family instance, Nothing if not
1077                               tyConFamilyCoercion_maybe tc] 
1078
1079 -- sortByOcc = sortBy (\ x -> \ y -> getOccName x < getOccName y)
1080
1081
1082 -- | Returns @True@ if there should be no interface-file declaration
1083 -- for this thing on its own: either it is built-in, or it is part
1084 -- of some other declaration, or it is generated implicitly by some
1085 -- other declaration.
1086 isImplicitTyThing :: TyThing -> Bool
1087 isImplicitTyThing (ADataCon {}) = True
1088 isImplicitTyThing (AnId id)     = isImplicitId id
1089 isImplicitTyThing (AClass {})   = False
1090 isImplicitTyThing (ATyCon tc)   = isImplicitTyCon tc
1091 isImplicitTyThing (ACoAxiom {}) = True
1092
1093 extendTypeEnvWithIds :: TypeEnv -> [Id] -> TypeEnv
1094 extendTypeEnvWithIds env ids
1095   = extendNameEnvList env [(getName id, AnId id) | id <- ids]
1096 \end{code}
1097
1098 %************************************************************************
1099 %*                                                                      *
1100                 TypeEnv
1101 %*                                                                      *
1102 %************************************************************************
1103
1104 \begin{code}
1105 -- | A map from 'Name's to 'TyThing's, constructed by typechecking
1106 -- local declarations or interface files
1107 type TypeEnv = NameEnv TyThing
1108
1109 emptyTypeEnv    :: TypeEnv
1110 typeEnvElts     :: TypeEnv -> [TyThing]
1111 typeEnvClasses  :: TypeEnv -> [Class]
1112 typeEnvTyCons   :: TypeEnv -> [TyCon]
1113 typeEnvCoAxioms :: TypeEnv -> [CoAxiom]
1114 typeEnvIds      :: TypeEnv -> [Id]
1115 typeEnvDataCons :: TypeEnv -> [DataCon]
1116 lookupTypeEnv   :: TypeEnv -> Name -> Maybe TyThing
1117
1118 emptyTypeEnv        = emptyNameEnv
1119 typeEnvElts     env = nameEnvElts env
1120 typeEnvClasses  env = [cl | AClass cl   <- typeEnvElts env]
1121 typeEnvTyCons   env = [tc | ATyCon tc   <- typeEnvElts env] 
1122 typeEnvCoAxioms env = [ax | ACoAxiom ax <- typeEnvElts env] 
1123 typeEnvIds      env = [id | AnId id     <- typeEnvElts env] 
1124 typeEnvDataCons env = [dc | ADataCon dc <- typeEnvElts env] 
1125
1126 mkTypeEnv :: [TyThing] -> TypeEnv
1127 mkTypeEnv things = extendTypeEnvList emptyTypeEnv things
1128                 
1129 lookupTypeEnv = lookupNameEnv
1130
1131 -- Extend the type environment
1132 extendTypeEnv :: TypeEnv -> TyThing -> TypeEnv
1133 extendTypeEnv env thing = extendNameEnv env (getName thing) thing 
1134
1135 extendTypeEnvList :: TypeEnv -> [TyThing] -> TypeEnv
1136 extendTypeEnvList env things = foldl extendTypeEnv env things
1137 \end{code}
1138
1139 \begin{code}
1140 -- | Find the 'TyThing' for the given 'Name' by using all the resources
1141 -- at our disposal: the compiled modules in the 'HomePackageTable' and the
1142 -- compiled modules in other packages that live in 'PackageTypeEnv'. Note
1143 -- that this does NOT look up the 'TyThing' in the module being compiled: you
1144 -- have to do that yourself, if desired
1145 lookupType :: DynFlags
1146            -> HomePackageTable
1147            -> PackageTypeEnv
1148            -> Name
1149            -> Maybe TyThing
1150
1151 lookupType dflags hpt pte name
1152   -- in one-shot, we don't use the HPT
1153   | not (isOneShot (ghcMode dflags)) && modulePackageId mod == this_pkg 
1154   = do hm <- lookupUFM hpt (moduleName mod) -- Maybe monad
1155        lookupNameEnv (md_types (hm_details hm)) name
1156   | otherwise
1157   = lookupNameEnv pte name
1158   where mod = ASSERT( isExternalName name ) nameModule name
1159         this_pkg = thisPackage dflags
1160
1161 -- | As 'lookupType', but with a marginally easier-to-use interface
1162 -- if you have a 'HscEnv'
1163 lookupTypeHscEnv :: HscEnv -> Name -> IO (Maybe TyThing)
1164 lookupTypeHscEnv hsc_env name = do
1165     eps <- readIORef (hsc_EPS hsc_env)
1166     return $! lookupType dflags hpt (eps_PTE eps) name
1167   where 
1168     dflags = hsc_dflags hsc_env
1169     hpt = hsc_HPT hsc_env
1170 \end{code}
1171
1172 \begin{code}
1173 -- | Get the 'TyCon' from a 'TyThing' if it is a type constructor thing. Panics otherwise
1174 tyThingTyCon :: TyThing -> TyCon
1175 tyThingTyCon (ATyCon tc) = tc
1176 tyThingTyCon other       = pprPanic "tyThingTyCon" (pprTyThing other)
1177
1178 -- | Get the 'CoAxiom' from a 'TyThing' if it is a coercion axiom thing. Panics otherwise
1179 tyThingCoAxiom :: TyThing -> CoAxiom
1180 tyThingCoAxiom (ACoAxiom ax) = ax
1181 tyThingCoAxiom other         = pprPanic "tyThingCoAxiom" (pprTyThing other)
1182
1183 -- | Get the 'Class' from a 'TyThing' if it is a class thing. Panics otherwise
1184 tyThingClass :: TyThing -> Class
1185 tyThingClass (AClass cls) = cls
1186 tyThingClass other        = pprPanic "tyThingClass" (pprTyThing other)
1187
1188 -- | Get the 'DataCon' from a 'TyThing' if it is a data constructor thing. Panics otherwise
1189 tyThingDataCon :: TyThing -> DataCon
1190 tyThingDataCon (ADataCon dc) = dc
1191 tyThingDataCon other         = pprPanic "tyThingDataCon" (pprTyThing other)
1192
1193 -- | Get the 'Id' from a 'TyThing' if it is a id *or* data constructor thing. Panics otherwise
1194 tyThingId :: TyThing -> Id
1195 tyThingId (AnId id)     = id
1196 tyThingId (ADataCon dc) = dataConWrapId dc
1197 tyThingId other         = pprPanic "tyThingId" (pprTyThing other)
1198 \end{code}
1199
1200 %************************************************************************
1201 %*                                                                      *
1202 \subsection{MonadThings and friends}
1203 %*                                                                      *
1204 %************************************************************************
1205
1206 \begin{code}
1207 -- | Class that abstracts out the common ability of the monads in GHC
1208 -- to lookup a 'TyThing' in the monadic environment by 'Name'. Provides
1209 -- a number of related convenience functions for accessing particular
1210 -- kinds of 'TyThing'
1211 class Monad m => MonadThings m where
1212         lookupThing :: Name -> m TyThing
1213
1214         lookupId :: Name -> m Id
1215         lookupId = liftM tyThingId . lookupThing
1216
1217         lookupDataCon :: Name -> m DataCon
1218         lookupDataCon = liftM tyThingDataCon . lookupThing
1219
1220         lookupTyCon :: Name -> m TyCon
1221         lookupTyCon = liftM tyThingTyCon . lookupThing
1222
1223         lookupClass :: Name -> m Class
1224         lookupClass = liftM tyThingClass . lookupThing
1225 \end{code}
1226
1227 \begin{code}
1228 -- | Constructs cache for the 'mi_hash_fn' field of a 'ModIface'
1229 mkIfaceHashCache :: [(Fingerprint,IfaceDecl)]
1230                  -> (OccName -> Maybe (OccName, Fingerprint))
1231 mkIfaceHashCache pairs 
1232   = \occ -> lookupOccEnv env occ
1233   where
1234     env = foldr add_decl emptyOccEnv pairs
1235     add_decl (v,d) env0 = foldr add_imp env1 (ifaceDeclSubBndrs d)
1236       where
1237           decl_name = ifName d
1238           env1 = extendOccEnv env0 decl_name (decl_name, v)
1239           add_imp bndr env = extendOccEnv env bndr (decl_name, v)
1240
1241 emptyIfaceHashCache :: OccName -> Maybe (OccName, Fingerprint)
1242 emptyIfaceHashCache _occ = Nothing
1243 \end{code}
1244
1245 %************************************************************************
1246 %*                                                                      *
1247 \subsection{Auxiliary types}
1248 %*                                                                      *
1249 %************************************************************************
1250
1251 These types are defined here because they are mentioned in ModDetails,
1252 but they are mostly elaborated elsewhere
1253
1254 \begin{code}
1255 ------------------ Warnings -------------------------
1256 -- | Warning information for a module
1257 data Warnings
1258   = NoWarnings                          -- ^ Nothing deprecated
1259   | WarnAll WarningTxt                  -- ^ Whole module deprecated
1260   | WarnSome [(OccName,WarningTxt)]     -- ^ Some specific things deprecated
1261
1262      -- Only an OccName is needed because
1263      --    (1) a deprecation always applies to a binding
1264      --        defined in the module in which the deprecation appears.
1265      --    (2) deprecations are only reported outside the defining module.
1266      --        this is important because, otherwise, if we saw something like
1267      --
1268      --        {-# DEPRECATED f "" #-}
1269      --        f = ...
1270      --        h = f
1271      --        g = let f = undefined in f
1272      --
1273      --        we'd need more information than an OccName to know to say something
1274      --        about the use of f in h but not the use of the locally bound f in g
1275      --
1276      --        however, because we only report about deprecations from the outside,
1277      --        and a module can only export one value called f,
1278      --        an OccName suffices.
1279      --
1280      --        this is in contrast with fixity declarations, where we need to map
1281      --        a Name to its fixity declaration.
1282   deriving( Eq )
1283
1284 -- | Constructs the cache for the 'mi_warn_fn' field of a 'ModIface'
1285 mkIfaceWarnCache :: Warnings -> Name -> Maybe WarningTxt
1286 mkIfaceWarnCache NoWarnings  = \_ -> Nothing
1287 mkIfaceWarnCache (WarnAll t) = \_ -> Just t
1288 mkIfaceWarnCache (WarnSome pairs) = lookupOccEnv (mkOccEnv pairs) . nameOccName
1289
1290 emptyIfaceWarnCache :: Name -> Maybe WarningTxt
1291 emptyIfaceWarnCache _ = Nothing
1292
1293 plusWarns :: Warnings -> Warnings -> Warnings
1294 plusWarns d NoWarnings = d
1295 plusWarns NoWarnings d = d
1296 plusWarns _ (WarnAll t) = WarnAll t
1297 plusWarns (WarnAll t) _ = WarnAll t
1298 plusWarns (WarnSome v1) (WarnSome v2) = WarnSome (v1 ++ v2)
1299 \end{code}
1300 \begin{code}
1301 -- | A collection of 'AvailInfo' - several things that are \"available\"
1302 type Avails       = [AvailInfo]
1303 -- | 'Name'd things that are available
1304 type AvailInfo    = GenAvailInfo Name
1305 -- | 'RdrName'd things that are available
1306 type RdrAvailInfo = GenAvailInfo OccName
1307
1308 -- | Records what things are "available", i.e. in scope
1309 data GenAvailInfo name  = Avail name     -- ^ An ordinary identifier in scope
1310                         | AvailTC name
1311                                   [name] -- ^ A type or class in scope. Parameters:
1312                                          --
1313                                          --  1) The name of the type or class
1314                                          --
1315                                          --  2) The available pieces of type or class.
1316                                          --     NB: If the type or class is itself
1317                                          --     to be in scope, it must be in this list.
1318                                          --     Thus, typically: @AvailTC Eq [Eq, ==, \/=]@
1319                         deriving( Eq )
1320                         -- Equality used when deciding if the interface has changed
1321
1322 -- | The original names declared of a certain module that are exported
1323 type IfaceExport = (Module, [GenAvailInfo OccName])
1324
1325 availsToNameSet :: [AvailInfo] -> NameSet
1326 availsToNameSet avails = foldr add emptyNameSet avails
1327       where add avail set = addListToNameSet set (availNames avail)
1328
1329 availsToNameEnv :: [AvailInfo] -> NameEnv AvailInfo
1330 availsToNameEnv avails = foldr add emptyNameEnv avails
1331      where add avail env = extendNameEnvList env
1332                                 (zip (availNames avail) (repeat avail))
1333
1334 -- | Just the main name made available, i.e. not the available pieces
1335 -- of type or class brought into scope by the 'GenAvailInfo'
1336 availName :: GenAvailInfo name -> name
1337 availName (Avail n)     = n
1338 availName (AvailTC n _) = n
1339
1340 -- | All names made available by the availability information
1341 availNames :: GenAvailInfo name -> [name]
1342 availNames (Avail n)      = [n]
1343 availNames (AvailTC _ ns) = ns
1344
1345 instance Outputable n => Outputable (GenAvailInfo n) where
1346    ppr = pprAvail
1347
1348 pprAvail :: Outputable n => GenAvailInfo n -> SDoc
1349 pprAvail (Avail n)      = ppr n
1350 pprAvail (AvailTC n ns) = ppr n <> braces (hsep (punctuate comma (map ppr ns)))
1351 \end{code}
1352
1353 \begin{code}
1354 -- | Creates cached lookup for the 'mi_fix_fn' field of 'ModIface'
1355 mkIfaceFixCache :: [(OccName, Fixity)] -> OccName -> Fixity
1356 mkIfaceFixCache pairs 
1357   = \n -> lookupOccEnv env n `orElse` defaultFixity
1358   where
1359    env = mkOccEnv pairs
1360
1361 emptyIfaceFixCache :: OccName -> Fixity
1362 emptyIfaceFixCache _ = defaultFixity
1363
1364 -- | Fixity environment mapping names to their fixities
1365 type FixityEnv = NameEnv FixItem
1366
1367 -- | Fixity information for an 'Name'. We keep the OccName in the range 
1368 -- so that we can generate an interface from it
1369 data FixItem = FixItem OccName Fixity
1370
1371 instance Outputable FixItem where
1372   ppr (FixItem occ fix) = ppr fix <+> ppr occ
1373
1374 emptyFixityEnv :: FixityEnv
1375 emptyFixityEnv = emptyNameEnv
1376
1377 lookupFixity :: FixityEnv -> Name -> Fixity
1378 lookupFixity env n = case lookupNameEnv env n of
1379                         Just (FixItem _ fix) -> fix
1380                         Nothing         -> defaultFixity
1381 \end{code}
1382
1383
1384 %************************************************************************
1385 %*                                                                      *
1386 \subsection{WhatsImported}
1387 %*                                                                      *
1388 %************************************************************************
1389
1390 \begin{code}
1391 -- | Records whether a module has orphans. An \"orphan\" is one of:
1392 --
1393 -- * An instance declaration in a module other than the definition
1394 --   module for one of the type constructors or classes in the instance head
1395 --
1396 -- * A transformation rule in a module other than the one defining
1397 --   the function in the head of the rule
1398 type WhetherHasOrphans   = Bool
1399
1400 -- | Does this module define family instances?
1401 type WhetherHasFamInst = Bool
1402
1403 -- | Did this module originate from a *-boot file?
1404 type IsBootInterface = Bool
1405
1406 -- | Dependency information about modules and packages below this one
1407 -- in the import hierarchy.
1408 --
1409 -- Invariant: the dependencies of a module @M@ never includes @M@.
1410 --
1411 -- Invariant: none of the lists contain duplicates.
1412 data Dependencies
1413   = Deps { dep_mods   :: [(ModuleName, IsBootInterface)]
1414                         -- ^ Home-package module dependencies
1415          , dep_pkgs   :: [PackageId]
1416                         -- ^ External package dependencies
1417          , dep_orphs  :: [Module]           
1418                         -- ^ Orphan modules (whether home or external pkg),
1419                         -- *not* including family instance orphans as they
1420                         -- are anyway included in 'dep_finsts'
1421          , dep_finsts :: [Module]           
1422                         -- ^ Modules that contain family instances (whether the
1423                         -- instances are from the home or an external package)
1424          }
1425   deriving( Eq )
1426         -- Equality used only for old/new comparison in MkIface.addVersionInfo
1427
1428         -- See 'TcRnTypes.ImportAvails' for details on dependencies.
1429
1430 noDependencies :: Dependencies
1431 noDependencies = Deps [] [] [] []
1432
1433 -- | Records modules that we depend on by making a direct import from
1434 data Usage
1435   = UsagePackageModule {
1436         usg_mod      :: Module,
1437            -- ^ External package module depended on
1438         usg_mod_hash :: Fingerprint
1439     }                                           -- ^ Module from another package
1440   | UsageHomeModule {
1441         usg_mod_name :: ModuleName,
1442             -- ^ Name of the module
1443         usg_mod_hash :: Fingerprint,
1444             -- ^ Cached module fingerprint
1445         usg_entities :: [(OccName,Fingerprint)],
1446             -- ^ Entities we depend on, sorted by occurrence name and fingerprinted.
1447             -- NB: usages are for parent names only, e.g. type constructors 
1448             -- but not the associated data constructors.
1449         usg_exports  :: Maybe Fingerprint
1450             -- ^ Fingerprint for the export list we used to depend on this module,
1451             -- if we depend on the export list
1452     }                                           -- ^ Module from the current package
1453     deriving( Eq )
1454         -- The export list field is (Just v) if we depend on the export list:
1455         --      i.e. we imported the module directly, whether or not we
1456         --           enumerated the things we imported, or just imported 
1457         --           everything
1458         -- We need to recompile if M's exports change, because 
1459         -- if the import was    import M,       we might now have a name clash
1460         --                                      in the importing module.
1461         -- if the import was    import M(x)     M might no longer export x
1462         -- The only way we don't depend on the export list is if we have
1463         --                      import M()
1464         -- And of course, for modules that aren't imported directly we don't
1465         -- depend on their export lists
1466 \end{code}
1467
1468
1469 %************************************************************************
1470 %*                                                                      *
1471                 The External Package State
1472 %*                                                                      *
1473 %************************************************************************
1474
1475 \begin{code}
1476 type PackageTypeEnv    = TypeEnv
1477 type PackageRuleBase   = RuleBase
1478 type PackageInstEnv    = InstEnv
1479 type PackageFamInstEnv = FamInstEnv
1480 type PackageVectInfo   = VectInfo
1481 type PackageAnnEnv     = AnnEnv
1482
1483 -- | Information about other packages that we have slurped in by reading
1484 -- their interface files
1485 data ExternalPackageState
1486   = EPS {
1487         eps_is_boot :: !(ModuleNameEnv (ModuleName, IsBootInterface)),
1488                 -- ^ In OneShot mode (only), home-package modules
1489                 -- accumulate in the external package state, and are
1490                 -- sucked in lazily.  For these home-pkg modules
1491                 -- (only) we need to record which are boot modules.
1492                 -- We set this field after loading all the
1493                 -- explicitly-imported interfaces, but before doing
1494                 -- anything else
1495                 --
1496                 -- The 'ModuleName' part is not necessary, but it's useful for
1497                 -- debug prints, and it's convenient because this field comes
1498                 -- direct from 'TcRnTypes.imp_dep_mods'
1499
1500         eps_PIT :: !PackageIfaceTable,
1501                 -- ^ The 'ModIface's for modules in external packages
1502                 -- whose interfaces we have opened.
1503                 -- The declarations in these interface files are held in the
1504                 -- 'eps_decls', 'eps_inst_env', 'eps_fam_inst_env' and 'eps_rules'
1505                 -- fields of this record, not in the 'mi_decls' fields of the 
1506                 -- interface we have sucked in.
1507                 --
1508                 -- What /is/ in the PIT is:
1509                 --
1510                 -- * The Module
1511                 --
1512                 -- * Fingerprint info
1513                 --
1514                 -- * Its exports
1515                 --
1516                 -- * Fixities
1517                 --
1518                 -- * Deprecations and warnings
1519
1520         eps_PTE :: !PackageTypeEnv,        
1521                 -- ^ Result of typechecking all the external package
1522                 -- interface files we have sucked in. The domain of
1523                 -- the mapping is external-package modules
1524                 
1525         eps_inst_env     :: !PackageInstEnv,   -- ^ The total 'InstEnv' accumulated
1526                                                -- from all the external-package modules
1527         eps_fam_inst_env :: !PackageFamInstEnv,-- ^ The total 'FamInstEnv' accumulated
1528                                                -- from all the external-package modules
1529         eps_rule_base    :: !PackageRuleBase,  -- ^ The total 'RuleEnv' accumulated
1530                                                -- from all the external-package modules
1531         eps_vect_info    :: !PackageVectInfo,  -- ^ The total 'VectInfo' accumulated
1532                                                -- from all the external-package modules
1533         eps_ann_env      :: !PackageAnnEnv,    -- ^ The total 'AnnEnv' accumulated
1534                                                -- from all the external-package modules
1535
1536         eps_mod_fam_inst_env :: !(ModuleEnv FamInstEnv), -- ^ The family instances accumulated from external
1537                                                          -- packages, keyed off the module that declared them
1538
1539         eps_stats :: !EpsStats                 -- ^ Stastics about what was loaded from external packages
1540   }
1541
1542 -- | Accumulated statistics about what we are putting into the 'ExternalPackageState'.
1543 -- \"In\" means stuff that is just /read/ from interface files,
1544 -- \"Out\" means actually sucked in and type-checked
1545 data EpsStats = EpsStats { n_ifaces_in
1546                          , n_decls_in, n_decls_out 
1547                          , n_rules_in, n_rules_out
1548                          , n_insts_in, n_insts_out :: !Int }
1549
1550 addEpsInStats :: EpsStats -> Int -> Int -> Int -> EpsStats
1551 -- ^ Add stats for one newly-read interface
1552 addEpsInStats stats n_decls n_insts n_rules
1553   = stats { n_ifaces_in = n_ifaces_in stats + 1
1554           , n_decls_in  = n_decls_in stats + n_decls
1555           , n_insts_in  = n_insts_in stats + n_insts
1556           , n_rules_in  = n_rules_in stats + n_rules }
1557 \end{code}
1558
1559 Names in a NameCache are always stored as a Global, and have the SrcLoc 
1560 of their binding locations.
1561
1562 Actually that's not quite right.  When we first encounter the original
1563 name, we might not be at its binding site (e.g. we are reading an
1564 interface file); so we give it 'noSrcLoc' then.  Later, when we find
1565 its binding site, we fix it up.
1566
1567 \begin{code}
1568 -- | The NameCache makes sure that there is just one Unique assigned for
1569 -- each original name; i.e. (module-name, occ-name) pair and provides
1570 -- something of a lookup mechanism for those names.
1571 data NameCache
1572  = NameCache {  nsUniqs :: UniqSupply,
1573                 -- ^ Supply of uniques
1574                 nsNames :: OrigNameCache,
1575                 -- ^ Ensures that one original name gets one unique
1576                 nsIPs   :: OrigIParamCache
1577                 -- ^ Ensures that one implicit parameter name gets one unique
1578    }
1579
1580 -- | Per-module cache of original 'OccName's given 'Name's
1581 type OrigNameCache   = ModuleEnv (OccEnv Name)
1582
1583 -- | Module-local cache of implicit parameter 'OccName's given 'Name's
1584 type OrigIParamCache = Map (IPName OccName) (IPName Name)
1585 \end{code}
1586
1587
1588
1589 %************************************************************************
1590 %*                                                                      *
1591                 The module graph and ModSummary type
1592         A ModSummary is a node in the compilation manager's
1593         dependency graph, and it's also passed to hscMain
1594 %*                                                                      *
1595 %************************************************************************
1596
1597 \begin{code}
1598 -- | A ModuleGraph contains all the nodes from the home package (only).
1599 -- There will be a node for each source module, plus a node for each hi-boot
1600 -- module.
1601 --
1602 -- The graph is not necessarily stored in topologically-sorted order.  Use
1603 -- 'GHC.topSortModuleGraph' and 'Digraph.flattenSCC' to achieve this.
1604 type ModuleGraph = [ModSummary]
1605
1606 emptyMG :: ModuleGraph
1607 emptyMG = []
1608
1609 -- | A single node in a 'ModuleGraph. The nodes of the module graph are one of:
1610 --
1611 -- * A regular Haskell source module
1612 --
1613 -- * A hi-boot source module
1614 --
1615 -- * An external-core source module
1616 data ModSummary
1617    = ModSummary {
1618         ms_mod       :: Module,                 -- ^ Identity of the module
1619         ms_hsc_src   :: HscSource,              -- ^ The module source either plain Haskell, hs-boot or external core
1620         ms_location  :: ModLocation,            -- ^ Location of the various files belonging to the module
1621         ms_hs_date   :: ClockTime,              -- ^ Timestamp of source file
1622         ms_obj_date  :: Maybe ClockTime,        -- ^ Timestamp of object, if we have one
1623         ms_srcimps   :: [Located (ImportDecl RdrName)], -- ^ Source imports of the module
1624         ms_imps      :: [Located (ImportDecl RdrName)], -- ^ Non-source imports of the module
1625         ms_hspp_file :: FilePath,               -- ^ Filename of preprocessed source file
1626         ms_hspp_opts :: DynFlags,               -- ^ Cached flags from @OPTIONS@, @INCLUDE@
1627                                                 -- and @LANGUAGE@ pragmas in the modules source code
1628         ms_hspp_buf  :: Maybe StringBuffer      -- ^ The actual preprocessed source, if we have it
1629      }
1630
1631 ms_mod_name :: ModSummary -> ModuleName
1632 ms_mod_name = moduleName . ms_mod
1633
1634 -- The ModLocation contains both the original source filename and the
1635 -- filename of the cleaned-up source file after all preprocessing has been
1636 -- done.  The point is that the summariser will have to cpp/unlit/whatever
1637 -- all files anyway, and there's no point in doing this twice -- just 
1638 -- park the result in a temp file, put the name of it in the location,
1639 -- and let @compile@ read from that file on the way back up.
1640
1641 -- The ModLocation is stable over successive up-sweeps in GHCi, wheres
1642 -- the ms_hs_date and imports can, of course, change
1643
1644 msHsFilePath, msHiFilePath, msObjFilePath :: ModSummary -> FilePath
1645 msHsFilePath  ms = expectJust "msHsFilePath" (ml_hs_file  (ms_location ms))
1646 msHiFilePath  ms = ml_hi_file  (ms_location ms)
1647 msObjFilePath ms = ml_obj_file (ms_location ms)
1648
1649 -- | Did this 'ModSummary' originate from a hs-boot file?
1650 isBootSummary :: ModSummary -> Bool
1651 isBootSummary ms = isHsBoot (ms_hsc_src ms)
1652
1653 instance Outputable ModSummary where
1654    ppr ms
1655       = sep [text "ModSummary {",
1656              nest 3 (sep [text "ms_hs_date = " <> text (show (ms_hs_date ms)),
1657                           text "ms_mod =" <+> ppr (ms_mod ms) 
1658                                 <> text (hscSourceString (ms_hsc_src ms)) <> comma,
1659                           text "ms_imps =" <+> ppr (ms_imps ms),
1660                           text "ms_srcimps =" <+> ppr (ms_srcimps ms)]),
1661              char '}'
1662             ]
1663
1664 showModMsg :: HscTarget -> Bool -> ModSummary -> String
1665 showModMsg target recomp mod_summary
1666   = showSDoc $
1667         hsep [text (mod_str ++ replicate (max 0 (16 - length mod_str)) ' '),
1668               char '(', text (normalise $ msHsFilePath mod_summary) <> comma,
1669               case target of
1670                   HscInterpreted | recomp 
1671                              -> text "interpreted"
1672                   HscNothing -> text "nothing"
1673                   _          -> text (normalise $ msObjFilePath mod_summary),
1674               char ')']
1675  where 
1676     mod     = moduleName (ms_mod mod_summary)
1677     mod_str = showSDoc (ppr mod) ++ hscSourceString (ms_hsc_src mod_summary)
1678 \end{code}
1679
1680
1681 %************************************************************************
1682 %*                                                                      *
1683 \subsection{Hpc Support}
1684 %*                                                                      *
1685 %************************************************************************
1686
1687 \begin{code}
1688 -- | Information about a modules use of Haskell Program Coverage
1689 data HpcInfo
1690   = HpcInfo 
1691      { hpcInfoTickCount :: Int
1692      , hpcInfoHash      :: Int
1693      }
1694   | NoHpcInfo 
1695      { hpcUsed          :: AnyHpcUsage  -- ^ Is hpc used anywhere on the module \*tree\*?
1696      }
1697
1698 -- | This is used to signal if one of my imports used HPC instrumentation
1699 -- even if there is no module-local HPC usage
1700 type AnyHpcUsage = Bool
1701
1702 emptyHpcInfo :: AnyHpcUsage -> HpcInfo
1703 emptyHpcInfo = NoHpcInfo 
1704
1705 -- | Find out if HPC is used by this module or any of the modules
1706 -- it depends upon
1707 isHpcUsed :: HpcInfo -> AnyHpcUsage
1708 isHpcUsed (HpcInfo {})                   = True
1709 isHpcUsed (NoHpcInfo { hpcUsed = used }) = used
1710 \end{code}
1711
1712 %************************************************************************
1713 %*                                                                      *
1714 \subsection{Vectorisation Support}
1715 %*                                                                      *
1716 %************************************************************************
1717
1718 The following information is generated and consumed by the vectorisation
1719 subsystem.  It communicates the vectorisation status of declarations from one
1720 module to another.
1721
1722 Why do we need both f and f_v in the ModGuts/ModDetails/EPS version VectInfo
1723 below?  We need to know `f' when converting to IfaceVectInfo.  However, during
1724 vectorisation, we need to know `f_v', whose `Var' we cannot lookup based
1725 on just the OccName easily in a Core pass.
1726
1727 \begin{code}
1728 -- | Vectorisation information for 'ModGuts', 'ModDetails' and 'ExternalPackageState'.
1729 data VectInfo      
1730   = VectInfo {
1731       vectInfoVar     :: VarEnv  (Var    , Var  ),   -- ^ @(f, f_v)@ keyed on @f@
1732       vectInfoTyCon   :: NameEnv (TyCon  , TyCon),   -- ^ @(T, T_v)@ keyed on @T@
1733       vectInfoDataCon :: NameEnv (DataCon, DataCon), -- ^ @(C, C_v)@ keyed on @C@
1734       vectInfoPADFun  :: NameEnv (TyCon  , Var),     -- ^ @(T_v, paT)@ keyed on @T_v@
1735       vectInfoIso     :: NameEnv (TyCon  , Var)      -- ^ @(T, isoT)@ keyed on @T@
1736     }
1737
1738 -- | Vectorisation information for 'ModIface': a slightly less low-level view
1739 data IfaceVectInfo 
1740   = IfaceVectInfo {
1741       ifaceVectInfoVar        :: [Name],
1742         -- ^ All variables in here have a vectorised variant
1743       ifaceVectInfoTyCon      :: [Name],
1744         -- ^ All 'TyCon's in here have a vectorised variant;
1745         -- the name of the vectorised variant and those of its
1746         -- data constructors are determined by 'OccName.mkVectTyConOcc'
1747         -- and 'OccName.mkVectDataConOcc'; the names of
1748         -- the isomorphisms are determined by 'OccName.mkVectIsoOcc'
1749       ifaceVectInfoTyConReuse :: [Name]              
1750         -- ^ The vectorised form of all the 'TyCon's in here coincides with
1751         -- the unconverted form; the name of the isomorphisms is determined
1752         -- by 'OccName.mkVectIsoOcc'
1753     }
1754
1755 noVectInfo :: VectInfo
1756 noVectInfo = VectInfo emptyVarEnv emptyNameEnv emptyNameEnv emptyNameEnv emptyNameEnv
1757
1758 plusVectInfo :: VectInfo -> VectInfo -> VectInfo
1759 plusVectInfo vi1 vi2 = 
1760   VectInfo (vectInfoVar     vi1 `plusVarEnv`  vectInfoVar     vi2)
1761            (vectInfoTyCon   vi1 `plusNameEnv` vectInfoTyCon   vi2)
1762            (vectInfoDataCon vi1 `plusNameEnv` vectInfoDataCon vi2)
1763            (vectInfoPADFun  vi1 `plusNameEnv` vectInfoPADFun  vi2)
1764            (vectInfoIso     vi1 `plusNameEnv` vectInfoIso     vi2)
1765
1766 concatVectInfo :: [VectInfo] -> VectInfo
1767 concatVectInfo = foldr plusVectInfo noVectInfo
1768
1769 noIfaceVectInfo :: IfaceVectInfo
1770 noIfaceVectInfo = IfaceVectInfo [] [] []
1771 \end{code}
1772
1773 %************************************************************************
1774 %*                                                                      *
1775 \subsection{Linkable stuff}
1776 %*                                                                      *
1777 %************************************************************************
1778
1779 This stuff is in here, rather than (say) in Linker.lhs, because the Linker.lhs
1780 stuff is the *dynamic* linker, and isn't present in a stage-1 compiler
1781
1782 \begin{code}
1783 -- | Information we can use to dynamically link modules into the compiler
1784 data Linkable = LM {
1785   linkableTime     :: ClockTime,        -- ^ Time at which this linkable was built
1786                                         -- (i.e. when the bytecodes were produced,
1787                                         --       or the mod date on the files)
1788   linkableModule   :: Module,           -- ^ The linkable module itself
1789   linkableUnlinked :: [Unlinked]
1790     -- ^ Those files and chunks of code we have yet to link.
1791     --
1792     -- INVARIANT: A valid linkable always has at least one 'Unlinked' item.
1793     -- If this list is empty, the Linkable represents a fake linkable, which
1794     -- is generated in HscNothing mode to avoid recompiling modules.
1795     --
1796     -- XXX: Do items get removed from this list when they get linked?
1797  }
1798
1799 isObjectLinkable :: Linkable -> Bool
1800 isObjectLinkable l = not (null unlinked) && all isObject unlinked
1801   where unlinked = linkableUnlinked l
1802         -- A linkable with no Unlinked's is treated as a BCO.  We can
1803         -- generate a linkable with no Unlinked's as a result of
1804         -- compiling a module in HscNothing mode, and this choice
1805         -- happens to work well with checkStability in module GHC.
1806
1807 linkableObjs :: Linkable -> [FilePath]
1808 linkableObjs l = [ f | DotO f <- linkableUnlinked l ]
1809
1810 instance Outputable Linkable where
1811    ppr (LM when_made mod unlinkeds)
1812       = (text "LinkableM" <+> parens (text (show when_made)) <+> ppr mod)
1813         $$ nest 3 (ppr unlinkeds)
1814
1815 -------------------------------------------
1816
1817 -- | Objects which have yet to be linked by the compiler
1818 data Unlinked
1819    = DotO FilePath      -- ^ An object file (.o)
1820    | DotA FilePath      -- ^ Static archive file (.a)
1821    | DotDLL FilePath    -- ^ Dynamically linked library file (.so, .dll, .dylib)
1822    | BCOs CompiledByteCode ModBreaks    -- ^ A byte-code object, lives only in memory
1823
1824 #ifndef GHCI
1825 data CompiledByteCode = CompiledByteCodeUndefined
1826 _unused :: CompiledByteCode
1827 _unused = CompiledByteCodeUndefined
1828 #endif
1829
1830 instance Outputable Unlinked where
1831    ppr (DotO path)   = text "DotO" <+> text path
1832    ppr (DotA path)   = text "DotA" <+> text path
1833    ppr (DotDLL path) = text "DotDLL" <+> text path
1834 #ifdef GHCI
1835    ppr (BCOs bcos _) = text "BCOs" <+> ppr bcos
1836 #else
1837    ppr (BCOs _ _)    = text "No byte code"
1838 #endif
1839
1840 -- | Is this an actual file on disk we can link in somehow?
1841 isObject :: Unlinked -> Bool
1842 isObject (DotO _)   = True
1843 isObject (DotA _)   = True
1844 isObject (DotDLL _) = True
1845 isObject _          = False
1846
1847 -- | Is this a bytecode linkable with no file on disk?
1848 isInterpretable :: Unlinked -> Bool
1849 isInterpretable = not . isObject
1850
1851 -- | Retrieve the filename of the linkable if possible. Panic if it is a byte-code object
1852 nameOfObject :: Unlinked -> FilePath
1853 nameOfObject (DotO fn)   = fn
1854 nameOfObject (DotA fn)   = fn
1855 nameOfObject (DotDLL fn) = fn
1856 nameOfObject other       = pprPanic "nameOfObject" (ppr other)
1857
1858 -- | Retrieve the compiled byte-code if possible. Panic if it is a file-based linkable
1859 byteCodeOfObject :: Unlinked -> CompiledByteCode
1860 byteCodeOfObject (BCOs bc _) = bc
1861 byteCodeOfObject other       = pprPanic "byteCodeOfObject" (ppr other)
1862 \end{code}
1863
1864 %************************************************************************
1865 %*                                                                      *
1866 \subsection{Breakpoint Support}
1867 %*                                                                      *
1868 %************************************************************************
1869
1870 \begin{code}
1871 -- | Breakpoint index
1872 type BreakIndex = Int
1873
1874 -- | All the information about the breakpoints for a given module
1875 data ModBreaks
1876    = ModBreaks
1877    { modBreaks_flags :: BreakArray
1878         -- ^ The array of flags, one per breakpoint, 
1879         -- indicating which breakpoints are enabled.
1880    , modBreaks_locs :: !(Array BreakIndex SrcSpan)
1881         -- ^ An array giving the source span of each breakpoint.
1882    , modBreaks_vars :: !(Array BreakIndex [OccName])
1883         -- ^ An array giving the names of the free variables at each breakpoint.
1884    , modBreaks_decls :: !(Array BreakIndex [String])
1885         -- ^ An array giving the names of the declarations enclosing each breakpoint.
1886    }
1887
1888 emptyModBreaks :: ModBreaks
1889 emptyModBreaks = ModBreaks
1890    { modBreaks_flags = error "ModBreaks.modBreaks_array not initialised"
1891          -- Todo: can we avoid this? 
1892    , modBreaks_locs  = array (0,-1) []
1893    , modBreaks_vars  = array (0,-1) []
1894    , modBreaks_decls = array (0,-1) []
1895    }
1896 \end{code}