update submodule pointer
[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   = -- Does not include default methods, because those Ids may have
1040     --    their own pragmas, unfoldings etc, not derived from the Class object
1041     -- Dictionary datatype:
1042     --    [extras_plus:]
1043     --      type constructor 
1044     --    [recursive call:]
1045     --      (possibly) newtype coercion; definitely no family coercion here
1046     --      data constructor
1047     --      worker
1048     --      (no wrapper by invariant)
1049     extras_plus (ATyCon (classTyCon cl)) ++
1050     -- associated types 
1051     --    No extras_plus (recursive call) for the classATs, because they
1052     --    are only the family decls; they have no implicit things
1053     map ATyCon (classATs cl) ++
1054     -- superclass and operation selectors
1055     map AnId (classAllSelIds cl)
1056
1057 implicitTyConThings :: TyCon -> [TyThing]
1058 implicitTyConThings tc 
1059   =   -- fields (names of selectors)
1060       -- (possibly) implicit coercion and family coercion
1061       --   depending on whether it's a newtype or a family instance or both
1062     implicitCoTyCon tc ++
1063       -- for each data constructor in order,
1064       --   the contructor, worker, and (possibly) wrapper
1065     concatMap (extras_plus . ADataCon) (tyConDataCons tc)
1066
1067
1068 -- add a thing and recursive call
1069 extras_plus :: TyThing -> [TyThing]
1070 extras_plus thing = thing : implicitTyThings thing
1071
1072 -- For newtypes and indexed data types (and both),
1073 -- add the implicit coercion tycon
1074 implicitCoTyCon :: TyCon -> [TyThing]
1075 implicitCoTyCon tc 
1076   = map ACoAxiom . catMaybes $ [-- Just if newtype, Nothing if not
1077                               newTyConCo_maybe tc,
1078                               -- Just if family instance, Nothing if not
1079                               tyConFamilyCoercion_maybe tc] 
1080
1081 -- sortByOcc = sortBy (\ x -> \ y -> getOccName x < getOccName y)
1082
1083
1084 -- | Returns @True@ if there should be no interface-file declaration
1085 -- for this thing on its own: either it is built-in, or it is part
1086 -- of some other declaration, or it is generated implicitly by some
1087 -- other declaration.
1088 isImplicitTyThing :: TyThing -> Bool
1089 isImplicitTyThing (ADataCon {}) = True
1090 isImplicitTyThing (AnId id)     = isImplicitId id
1091 isImplicitTyThing (AClass {})   = False
1092 isImplicitTyThing (ATyCon tc)   = isImplicitTyCon tc
1093 isImplicitTyThing (ACoAxiom {}) = True
1094
1095 extendTypeEnvWithIds :: TypeEnv -> [Id] -> TypeEnv
1096 extendTypeEnvWithIds env ids
1097   = extendNameEnvList env [(getName id, AnId id) | id <- ids]
1098 \end{code}
1099
1100 %************************************************************************
1101 %*                                                                      *
1102                 TypeEnv
1103 %*                                                                      *
1104 %************************************************************************
1105
1106 \begin{code}
1107 -- | A map from 'Name's to 'TyThing's, constructed by typechecking
1108 -- local declarations or interface files
1109 type TypeEnv = NameEnv TyThing
1110
1111 emptyTypeEnv    :: TypeEnv
1112 typeEnvElts     :: TypeEnv -> [TyThing]
1113 typeEnvClasses  :: TypeEnv -> [Class]
1114 typeEnvTyCons   :: TypeEnv -> [TyCon]
1115 typeEnvCoAxioms :: TypeEnv -> [CoAxiom]
1116 typeEnvIds      :: TypeEnv -> [Id]
1117 typeEnvDataCons :: TypeEnv -> [DataCon]
1118 lookupTypeEnv   :: TypeEnv -> Name -> Maybe TyThing
1119
1120 emptyTypeEnv        = emptyNameEnv
1121 typeEnvElts     env = nameEnvElts env
1122 typeEnvClasses  env = [cl | AClass cl   <- typeEnvElts env]
1123 typeEnvTyCons   env = [tc | ATyCon tc   <- typeEnvElts env] 
1124 typeEnvCoAxioms env = [ax | ACoAxiom ax <- typeEnvElts env] 
1125 typeEnvIds      env = [id | AnId id     <- typeEnvElts env] 
1126 typeEnvDataCons env = [dc | ADataCon dc <- typeEnvElts env] 
1127
1128 mkTypeEnv :: [TyThing] -> TypeEnv
1129 mkTypeEnv things = extendTypeEnvList emptyTypeEnv things
1130                 
1131 lookupTypeEnv = lookupNameEnv
1132
1133 -- Extend the type environment
1134 extendTypeEnv :: TypeEnv -> TyThing -> TypeEnv
1135 extendTypeEnv env thing = extendNameEnv env (getName thing) thing 
1136
1137 extendTypeEnvList :: TypeEnv -> [TyThing] -> TypeEnv
1138 extendTypeEnvList env things = foldl extendTypeEnv env things
1139 \end{code}
1140
1141 \begin{code}
1142 -- | Find the 'TyThing' for the given 'Name' by using all the resources
1143 -- at our disposal: the compiled modules in the 'HomePackageTable' and the
1144 -- compiled modules in other packages that live in 'PackageTypeEnv'. Note
1145 -- that this does NOT look up the 'TyThing' in the module being compiled: you
1146 -- have to do that yourself, if desired
1147 lookupType :: DynFlags
1148            -> HomePackageTable
1149            -> PackageTypeEnv
1150            -> Name
1151            -> Maybe TyThing
1152
1153 lookupType dflags hpt pte name
1154   -- in one-shot, we don't use the HPT
1155   | not (isOneShot (ghcMode dflags)) && modulePackageId mod == this_pkg 
1156   = do hm <- lookupUFM hpt (moduleName mod) -- Maybe monad
1157        lookupNameEnv (md_types (hm_details hm)) name
1158   | otherwise
1159   = lookupNameEnv pte name
1160   where mod = ASSERT( isExternalName name ) nameModule name
1161         this_pkg = thisPackage dflags
1162
1163 -- | As 'lookupType', but with a marginally easier-to-use interface
1164 -- if you have a 'HscEnv'
1165 lookupTypeHscEnv :: HscEnv -> Name -> IO (Maybe TyThing)
1166 lookupTypeHscEnv hsc_env name = do
1167     eps <- readIORef (hsc_EPS hsc_env)
1168     return $! lookupType dflags hpt (eps_PTE eps) name
1169   where 
1170     dflags = hsc_dflags hsc_env
1171     hpt = hsc_HPT hsc_env
1172 \end{code}
1173
1174 \begin{code}
1175 -- | Get the 'TyCon' from a 'TyThing' if it is a type constructor thing. Panics otherwise
1176 tyThingTyCon :: TyThing -> TyCon
1177 tyThingTyCon (ATyCon tc) = tc
1178 tyThingTyCon other       = pprPanic "tyThingTyCon" (pprTyThing other)
1179
1180 -- | Get the 'CoAxiom' from a 'TyThing' if it is a coercion axiom thing. Panics otherwise
1181 tyThingCoAxiom :: TyThing -> CoAxiom
1182 tyThingCoAxiom (ACoAxiom ax) = ax
1183 tyThingCoAxiom other         = pprPanic "tyThingCoAxiom" (pprTyThing other)
1184
1185 -- | Get the 'Class' from a 'TyThing' if it is a class thing. Panics otherwise
1186 tyThingClass :: TyThing -> Class
1187 tyThingClass (AClass cls) = cls
1188 tyThingClass other        = pprPanic "tyThingClass" (pprTyThing other)
1189
1190 -- | Get the 'DataCon' from a 'TyThing' if it is a data constructor thing. Panics otherwise
1191 tyThingDataCon :: TyThing -> DataCon
1192 tyThingDataCon (ADataCon dc) = dc
1193 tyThingDataCon other         = pprPanic "tyThingDataCon" (pprTyThing other)
1194
1195 -- | Get the 'Id' from a 'TyThing' if it is a id *or* data constructor thing. Panics otherwise
1196 tyThingId :: TyThing -> Id
1197 tyThingId (AnId id)     = id
1198 tyThingId (ADataCon dc) = dataConWrapId dc
1199 tyThingId other         = pprPanic "tyThingId" (pprTyThing other)
1200 \end{code}
1201
1202 %************************************************************************
1203 %*                                                                      *
1204 \subsection{MonadThings and friends}
1205 %*                                                                      *
1206 %************************************************************************
1207
1208 \begin{code}
1209 -- | Class that abstracts out the common ability of the monads in GHC
1210 -- to lookup a 'TyThing' in the monadic environment by 'Name'. Provides
1211 -- a number of related convenience functions for accessing particular
1212 -- kinds of 'TyThing'
1213 class Monad m => MonadThings m where
1214         lookupThing :: Name -> m TyThing
1215
1216         lookupId :: Name -> m Id
1217         lookupId = liftM tyThingId . lookupThing
1218
1219         lookupDataCon :: Name -> m DataCon
1220         lookupDataCon = liftM tyThingDataCon . lookupThing
1221
1222         lookupTyCon :: Name -> m TyCon
1223         lookupTyCon = liftM tyThingTyCon . lookupThing
1224
1225         lookupClass :: Name -> m Class
1226         lookupClass = liftM tyThingClass . lookupThing
1227 \end{code}
1228
1229 \begin{code}
1230 -- | Constructs cache for the 'mi_hash_fn' field of a 'ModIface'
1231 mkIfaceHashCache :: [(Fingerprint,IfaceDecl)]
1232                  -> (OccName -> Maybe (OccName, Fingerprint))
1233 mkIfaceHashCache pairs 
1234   = \occ -> lookupOccEnv env occ
1235   where
1236     env = foldr add_decl emptyOccEnv pairs
1237     add_decl (v,d) env0 = foldr add_imp env1 (ifaceDeclSubBndrs d)
1238       where
1239           decl_name = ifName d
1240           env1 = extendOccEnv env0 decl_name (decl_name, v)
1241           add_imp bndr env = extendOccEnv env bndr (decl_name, v)
1242
1243 emptyIfaceHashCache :: OccName -> Maybe (OccName, Fingerprint)
1244 emptyIfaceHashCache _occ = Nothing
1245 \end{code}
1246
1247 %************************************************************************
1248 %*                                                                      *
1249 \subsection{Auxiliary types}
1250 %*                                                                      *
1251 %************************************************************************
1252
1253 These types are defined here because they are mentioned in ModDetails,
1254 but they are mostly elaborated elsewhere
1255
1256 \begin{code}
1257 ------------------ Warnings -------------------------
1258 -- | Warning information for a module
1259 data Warnings
1260   = NoWarnings                          -- ^ Nothing deprecated
1261   | WarnAll WarningTxt                  -- ^ Whole module deprecated
1262   | WarnSome [(OccName,WarningTxt)]     -- ^ Some specific things deprecated
1263
1264      -- Only an OccName is needed because
1265      --    (1) a deprecation always applies to a binding
1266      --        defined in the module in which the deprecation appears.
1267      --    (2) deprecations are only reported outside the defining module.
1268      --        this is important because, otherwise, if we saw something like
1269      --
1270      --        {-# DEPRECATED f "" #-}
1271      --        f = ...
1272      --        h = f
1273      --        g = let f = undefined in f
1274      --
1275      --        we'd need more information than an OccName to know to say something
1276      --        about the use of f in h but not the use of the locally bound f in g
1277      --
1278      --        however, because we only report about deprecations from the outside,
1279      --        and a module can only export one value called f,
1280      --        an OccName suffices.
1281      --
1282      --        this is in contrast with fixity declarations, where we need to map
1283      --        a Name to its fixity declaration.
1284   deriving( Eq )
1285
1286 -- | Constructs the cache for the 'mi_warn_fn' field of a 'ModIface'
1287 mkIfaceWarnCache :: Warnings -> Name -> Maybe WarningTxt
1288 mkIfaceWarnCache NoWarnings  = \_ -> Nothing
1289 mkIfaceWarnCache (WarnAll t) = \_ -> Just t
1290 mkIfaceWarnCache (WarnSome pairs) = lookupOccEnv (mkOccEnv pairs) . nameOccName
1291
1292 emptyIfaceWarnCache :: Name -> Maybe WarningTxt
1293 emptyIfaceWarnCache _ = Nothing
1294
1295 plusWarns :: Warnings -> Warnings -> Warnings
1296 plusWarns d NoWarnings = d
1297 plusWarns NoWarnings d = d
1298 plusWarns _ (WarnAll t) = WarnAll t
1299 plusWarns (WarnAll t) _ = WarnAll t
1300 plusWarns (WarnSome v1) (WarnSome v2) = WarnSome (v1 ++ v2)
1301 \end{code}
1302 \begin{code}
1303 -- | A collection of 'AvailInfo' - several things that are \"available\"
1304 type Avails       = [AvailInfo]
1305 -- | 'Name'd things that are available
1306 type AvailInfo    = GenAvailInfo Name
1307 -- | 'RdrName'd things that are available
1308 type RdrAvailInfo = GenAvailInfo OccName
1309
1310 -- | Records what things are "available", i.e. in scope
1311 data GenAvailInfo name  = Avail name     -- ^ An ordinary identifier in scope
1312                         | AvailTC name
1313                                   [name] -- ^ A type or class in scope. Parameters:
1314                                          --
1315                                          --  1) The name of the type or class
1316                                          --
1317                                          --  2) The available pieces of type or class.
1318                                          --     NB: If the type or class is itself
1319                                          --     to be in scope, it must be in this list.
1320                                          --     Thus, typically: @AvailTC Eq [Eq, ==, \/=]@
1321                         deriving( Eq )
1322                         -- Equality used when deciding if the interface has changed
1323
1324 -- | The original names declared of a certain module that are exported
1325 type IfaceExport = (Module, [GenAvailInfo OccName])
1326
1327 availsToNameSet :: [AvailInfo] -> NameSet
1328 availsToNameSet avails = foldr add emptyNameSet avails
1329       where add avail set = addListToNameSet set (availNames avail)
1330
1331 availsToNameEnv :: [AvailInfo] -> NameEnv AvailInfo
1332 availsToNameEnv avails = foldr add emptyNameEnv avails
1333      where add avail env = extendNameEnvList env
1334                                 (zip (availNames avail) (repeat avail))
1335
1336 -- | Just the main name made available, i.e. not the available pieces
1337 -- of type or class brought into scope by the 'GenAvailInfo'
1338 availName :: GenAvailInfo name -> name
1339 availName (Avail n)     = n
1340 availName (AvailTC n _) = n
1341
1342 -- | All names made available by the availability information
1343 availNames :: GenAvailInfo name -> [name]
1344 availNames (Avail n)      = [n]
1345 availNames (AvailTC _ ns) = ns
1346
1347 instance Outputable n => Outputable (GenAvailInfo n) where
1348    ppr = pprAvail
1349
1350 pprAvail :: Outputable n => GenAvailInfo n -> SDoc
1351 pprAvail (Avail n)      = ppr n
1352 pprAvail (AvailTC n ns) = ppr n <> braces (hsep (punctuate comma (map ppr ns)))
1353 \end{code}
1354
1355 \begin{code}
1356 -- | Creates cached lookup for the 'mi_fix_fn' field of 'ModIface'
1357 mkIfaceFixCache :: [(OccName, Fixity)] -> OccName -> Fixity
1358 mkIfaceFixCache pairs 
1359   = \n -> lookupOccEnv env n `orElse` defaultFixity
1360   where
1361    env = mkOccEnv pairs
1362
1363 emptyIfaceFixCache :: OccName -> Fixity
1364 emptyIfaceFixCache _ = defaultFixity
1365
1366 -- | Fixity environment mapping names to their fixities
1367 type FixityEnv = NameEnv FixItem
1368
1369 -- | Fixity information for an 'Name'. We keep the OccName in the range 
1370 -- so that we can generate an interface from it
1371 data FixItem = FixItem OccName Fixity
1372
1373 instance Outputable FixItem where
1374   ppr (FixItem occ fix) = ppr fix <+> ppr occ
1375
1376 emptyFixityEnv :: FixityEnv
1377 emptyFixityEnv = emptyNameEnv
1378
1379 lookupFixity :: FixityEnv -> Name -> Fixity
1380 lookupFixity env n = case lookupNameEnv env n of
1381                         Just (FixItem _ fix) -> fix
1382                         Nothing         -> defaultFixity
1383 \end{code}
1384
1385
1386 %************************************************************************
1387 %*                                                                      *
1388 \subsection{WhatsImported}
1389 %*                                                                      *
1390 %************************************************************************
1391
1392 \begin{code}
1393 -- | Records whether a module has orphans. An \"orphan\" is one of:
1394 --
1395 -- * An instance declaration in a module other than the definition
1396 --   module for one of the type constructors or classes in the instance head
1397 --
1398 -- * A transformation rule in a module other than the one defining
1399 --   the function in the head of the rule
1400 type WhetherHasOrphans   = Bool
1401
1402 -- | Does this module define family instances?
1403 type WhetherHasFamInst = Bool
1404
1405 -- | Did this module originate from a *-boot file?
1406 type IsBootInterface = Bool
1407
1408 -- | Dependency information about modules and packages below this one
1409 -- in the import hierarchy.
1410 --
1411 -- Invariant: the dependencies of a module @M@ never includes @M@.
1412 --
1413 -- Invariant: none of the lists contain duplicates.
1414 data Dependencies
1415   = Deps { dep_mods   :: [(ModuleName, IsBootInterface)]
1416                         -- ^ Home-package module dependencies
1417          , dep_pkgs   :: [PackageId]
1418                         -- ^ External package dependencies
1419          , dep_orphs  :: [Module]           
1420                         -- ^ Orphan modules (whether home or external pkg),
1421                         -- *not* including family instance orphans as they
1422                         -- are anyway included in 'dep_finsts'
1423          , dep_finsts :: [Module]           
1424                         -- ^ Modules that contain family instances (whether the
1425                         -- instances are from the home or an external package)
1426          }
1427   deriving( Eq )
1428         -- Equality used only for old/new comparison in MkIface.addVersionInfo
1429
1430         -- See 'TcRnTypes.ImportAvails' for details on dependencies.
1431
1432 noDependencies :: Dependencies
1433 noDependencies = Deps [] [] [] []
1434
1435 -- | Records modules that we depend on by making a direct import from
1436 data Usage
1437   = UsagePackageModule {
1438         usg_mod      :: Module,
1439            -- ^ External package module depended on
1440         usg_mod_hash :: Fingerprint
1441     }                                           -- ^ Module from another package
1442   | UsageHomeModule {
1443         usg_mod_name :: ModuleName,
1444             -- ^ Name of the module
1445         usg_mod_hash :: Fingerprint,
1446             -- ^ Cached module fingerprint
1447         usg_entities :: [(OccName,Fingerprint)],
1448             -- ^ Entities we depend on, sorted by occurrence name and fingerprinted.
1449             -- NB: usages are for parent names only, e.g. type constructors 
1450             -- but not the associated data constructors.
1451         usg_exports  :: Maybe Fingerprint
1452             -- ^ Fingerprint for the export list we used to depend on this module,
1453             -- if we depend on the export list
1454     }                                           -- ^ Module from the current package
1455     deriving( Eq )
1456         -- The export list field is (Just v) if we depend on the export list:
1457         --      i.e. we imported the module directly, whether or not we
1458         --           enumerated the things we imported, or just imported 
1459         --           everything
1460         -- We need to recompile if M's exports change, because 
1461         -- if the import was    import M,       we might now have a name clash
1462         --                                      in the importing module.
1463         -- if the import was    import M(x)     M might no longer export x
1464         -- The only way we don't depend on the export list is if we have
1465         --                      import M()
1466         -- And of course, for modules that aren't imported directly we don't
1467         -- depend on their export lists
1468 \end{code}
1469
1470
1471 %************************************************************************
1472 %*                                                                      *
1473                 The External Package State
1474 %*                                                                      *
1475 %************************************************************************
1476
1477 \begin{code}
1478 type PackageTypeEnv    = TypeEnv
1479 type PackageRuleBase   = RuleBase
1480 type PackageInstEnv    = InstEnv
1481 type PackageFamInstEnv = FamInstEnv
1482 type PackageVectInfo   = VectInfo
1483 type PackageAnnEnv     = AnnEnv
1484
1485 -- | Information about other packages that we have slurped in by reading
1486 -- their interface files
1487 data ExternalPackageState
1488   = EPS {
1489         eps_is_boot :: !(ModuleNameEnv (ModuleName, IsBootInterface)),
1490                 -- ^ In OneShot mode (only), home-package modules
1491                 -- accumulate in the external package state, and are
1492                 -- sucked in lazily.  For these home-pkg modules
1493                 -- (only) we need to record which are boot modules.
1494                 -- We set this field after loading all the
1495                 -- explicitly-imported interfaces, but before doing
1496                 -- anything else
1497                 --
1498                 -- The 'ModuleName' part is not necessary, but it's useful for
1499                 -- debug prints, and it's convenient because this field comes
1500                 -- direct from 'TcRnTypes.imp_dep_mods'
1501
1502         eps_PIT :: !PackageIfaceTable,
1503                 -- ^ The 'ModIface's for modules in external packages
1504                 -- whose interfaces we have opened.
1505                 -- The declarations in these interface files are held in the
1506                 -- 'eps_decls', 'eps_inst_env', 'eps_fam_inst_env' and 'eps_rules'
1507                 -- fields of this record, not in the 'mi_decls' fields of the 
1508                 -- interface we have sucked in.
1509                 --
1510                 -- What /is/ in the PIT is:
1511                 --
1512                 -- * The Module
1513                 --
1514                 -- * Fingerprint info
1515                 --
1516                 -- * Its exports
1517                 --
1518                 -- * Fixities
1519                 --
1520                 -- * Deprecations and warnings
1521
1522         eps_PTE :: !PackageTypeEnv,        
1523                 -- ^ Result of typechecking all the external package
1524                 -- interface files we have sucked in. The domain of
1525                 -- the mapping is external-package modules
1526                 
1527         eps_inst_env     :: !PackageInstEnv,   -- ^ The total 'InstEnv' accumulated
1528                                                -- from all the external-package modules
1529         eps_fam_inst_env :: !PackageFamInstEnv,-- ^ The total 'FamInstEnv' accumulated
1530                                                -- from all the external-package modules
1531         eps_rule_base    :: !PackageRuleBase,  -- ^ The total 'RuleEnv' accumulated
1532                                                -- from all the external-package modules
1533         eps_vect_info    :: !PackageVectInfo,  -- ^ The total 'VectInfo' accumulated
1534                                                -- from all the external-package modules
1535         eps_ann_env      :: !PackageAnnEnv,    -- ^ The total 'AnnEnv' accumulated
1536                                                -- from all the external-package modules
1537
1538         eps_mod_fam_inst_env :: !(ModuleEnv FamInstEnv), -- ^ The family instances accumulated from external
1539                                                          -- packages, keyed off the module that declared them
1540
1541         eps_stats :: !EpsStats                 -- ^ Stastics about what was loaded from external packages
1542   }
1543
1544 -- | Accumulated statistics about what we are putting into the 'ExternalPackageState'.
1545 -- \"In\" means stuff that is just /read/ from interface files,
1546 -- \"Out\" means actually sucked in and type-checked
1547 data EpsStats = EpsStats { n_ifaces_in
1548                          , n_decls_in, n_decls_out 
1549                          , n_rules_in, n_rules_out
1550                          , n_insts_in, n_insts_out :: !Int }
1551
1552 addEpsInStats :: EpsStats -> Int -> Int -> Int -> EpsStats
1553 -- ^ Add stats for one newly-read interface
1554 addEpsInStats stats n_decls n_insts n_rules
1555   = stats { n_ifaces_in = n_ifaces_in stats + 1
1556           , n_decls_in  = n_decls_in stats + n_decls
1557           , n_insts_in  = n_insts_in stats + n_insts
1558           , n_rules_in  = n_rules_in stats + n_rules }
1559 \end{code}
1560
1561 Names in a NameCache are always stored as a Global, and have the SrcLoc 
1562 of their binding locations.
1563
1564 Actually that's not quite right.  When we first encounter the original
1565 name, we might not be at its binding site (e.g. we are reading an
1566 interface file); so we give it 'noSrcLoc' then.  Later, when we find
1567 its binding site, we fix it up.
1568
1569 \begin{code}
1570 -- | The NameCache makes sure that there is just one Unique assigned for
1571 -- each original name; i.e. (module-name, occ-name) pair and provides
1572 -- something of a lookup mechanism for those names.
1573 data NameCache
1574  = NameCache {  nsUniqs :: UniqSupply,
1575                 -- ^ Supply of uniques
1576                 nsNames :: OrigNameCache,
1577                 -- ^ Ensures that one original name gets one unique
1578                 nsIPs   :: OrigIParamCache
1579                 -- ^ Ensures that one implicit parameter name gets one unique
1580    }
1581
1582 -- | Per-module cache of original 'OccName's given 'Name's
1583 type OrigNameCache   = ModuleEnv (OccEnv Name)
1584
1585 -- | Module-local cache of implicit parameter 'OccName's given 'Name's
1586 type OrigIParamCache = Map (IPName OccName) (IPName Name)
1587 \end{code}
1588
1589
1590
1591 %************************************************************************
1592 %*                                                                      *
1593                 The module graph and ModSummary type
1594         A ModSummary is a node in the compilation manager's
1595         dependency graph, and it's also passed to hscMain
1596 %*                                                                      *
1597 %************************************************************************
1598
1599 \begin{code}
1600 -- | A ModuleGraph contains all the nodes from the home package (only).
1601 -- There will be a node for each source module, plus a node for each hi-boot
1602 -- module.
1603 --
1604 -- The graph is not necessarily stored in topologically-sorted order.  Use
1605 -- 'GHC.topSortModuleGraph' and 'Digraph.flattenSCC' to achieve this.
1606 type ModuleGraph = [ModSummary]
1607
1608 emptyMG :: ModuleGraph
1609 emptyMG = []
1610
1611 -- | A single node in a 'ModuleGraph. The nodes of the module graph are one of:
1612 --
1613 -- * A regular Haskell source module
1614 --
1615 -- * A hi-boot source module
1616 --
1617 -- * An external-core source module
1618 data ModSummary
1619    = ModSummary {
1620         ms_mod       :: Module,                 -- ^ Identity of the module
1621         ms_hsc_src   :: HscSource,              -- ^ The module source either plain Haskell, hs-boot or external core
1622         ms_location  :: ModLocation,            -- ^ Location of the various files belonging to the module
1623         ms_hs_date   :: ClockTime,              -- ^ Timestamp of source file
1624         ms_obj_date  :: Maybe ClockTime,        -- ^ Timestamp of object, if we have one
1625         ms_srcimps   :: [Located (ImportDecl RdrName)], -- ^ Source imports of the module
1626         ms_imps      :: [Located (ImportDecl RdrName)], -- ^ Non-source imports of the module
1627         ms_hspp_file :: FilePath,               -- ^ Filename of preprocessed source file
1628         ms_hspp_opts :: DynFlags,               -- ^ Cached flags from @OPTIONS@, @INCLUDE@
1629                                                 -- and @LANGUAGE@ pragmas in the modules source code
1630         ms_hspp_buf  :: Maybe StringBuffer      -- ^ The actual preprocessed source, if we have it
1631      }
1632
1633 ms_mod_name :: ModSummary -> ModuleName
1634 ms_mod_name = moduleName . ms_mod
1635
1636 -- The ModLocation contains both the original source filename and the
1637 -- filename of the cleaned-up source file after all preprocessing has been
1638 -- done.  The point is that the summariser will have to cpp/unlit/whatever
1639 -- all files anyway, and there's no point in doing this twice -- just 
1640 -- park the result in a temp file, put the name of it in the location,
1641 -- and let @compile@ read from that file on the way back up.
1642
1643 -- The ModLocation is stable over successive up-sweeps in GHCi, wheres
1644 -- the ms_hs_date and imports can, of course, change
1645
1646 msHsFilePath, msHiFilePath, msObjFilePath :: ModSummary -> FilePath
1647 msHsFilePath  ms = expectJust "msHsFilePath" (ml_hs_file  (ms_location ms))
1648 msHiFilePath  ms = ml_hi_file  (ms_location ms)
1649 msObjFilePath ms = ml_obj_file (ms_location ms)
1650
1651 -- | Did this 'ModSummary' originate from a hs-boot file?
1652 isBootSummary :: ModSummary -> Bool
1653 isBootSummary ms = isHsBoot (ms_hsc_src ms)
1654
1655 instance Outputable ModSummary where
1656    ppr ms
1657       = sep [text "ModSummary {",
1658              nest 3 (sep [text "ms_hs_date = " <> text (show (ms_hs_date ms)),
1659                           text "ms_mod =" <+> ppr (ms_mod ms) 
1660                                 <> text (hscSourceString (ms_hsc_src ms)) <> comma,
1661                           text "ms_imps =" <+> ppr (ms_imps ms),
1662                           text "ms_srcimps =" <+> ppr (ms_srcimps ms)]),
1663              char '}'
1664             ]
1665
1666 showModMsg :: HscTarget -> Bool -> ModSummary -> String
1667 showModMsg target recomp mod_summary
1668   = showSDoc $
1669         hsep [text (mod_str ++ replicate (max 0 (16 - length mod_str)) ' '),
1670               char '(', text (normalise $ msHsFilePath mod_summary) <> comma,
1671               case target of
1672                   HscInterpreted | recomp 
1673                              -> text "interpreted"
1674                   HscNothing -> text "nothing"
1675                   _          -> text (normalise $ msObjFilePath mod_summary),
1676               char ')']
1677  where 
1678     mod     = moduleName (ms_mod mod_summary)
1679     mod_str = showSDoc (ppr mod) ++ hscSourceString (ms_hsc_src mod_summary)
1680 \end{code}
1681
1682
1683 %************************************************************************
1684 %*                                                                      *
1685 \subsection{Hpc Support}
1686 %*                                                                      *
1687 %************************************************************************
1688
1689 \begin{code}
1690 -- | Information about a modules use of Haskell Program Coverage
1691 data HpcInfo
1692   = HpcInfo 
1693      { hpcInfoTickCount :: Int
1694      , hpcInfoHash      :: Int
1695      }
1696   | NoHpcInfo 
1697      { hpcUsed          :: AnyHpcUsage  -- ^ Is hpc used anywhere on the module \*tree\*?
1698      }
1699
1700 -- | This is used to signal if one of my imports used HPC instrumentation
1701 -- even if there is no module-local HPC usage
1702 type AnyHpcUsage = Bool
1703
1704 emptyHpcInfo :: AnyHpcUsage -> HpcInfo
1705 emptyHpcInfo = NoHpcInfo 
1706
1707 -- | Find out if HPC is used by this module or any of the modules
1708 -- it depends upon
1709 isHpcUsed :: HpcInfo -> AnyHpcUsage
1710 isHpcUsed (HpcInfo {})                   = True
1711 isHpcUsed (NoHpcInfo { hpcUsed = used }) = used
1712 \end{code}
1713
1714 %************************************************************************
1715 %*                                                                      *
1716 \subsection{Vectorisation Support}
1717 %*                                                                      *
1718 %************************************************************************
1719
1720 The following information is generated and consumed by the vectorisation
1721 subsystem.  It communicates the vectorisation status of declarations from one
1722 module to another.
1723
1724 Why do we need both f and f_v in the ModGuts/ModDetails/EPS version VectInfo
1725 below?  We need to know `f' when converting to IfaceVectInfo.  However, during
1726 vectorisation, we need to know `f_v', whose `Var' we cannot lookup based
1727 on just the OccName easily in a Core pass.
1728
1729 \begin{code}
1730 -- | Vectorisation information for 'ModGuts', 'ModDetails' and 'ExternalPackageState'.
1731 data VectInfo      
1732   = VectInfo {
1733       vectInfoVar     :: VarEnv  (Var    , Var  ),   -- ^ @(f, f_v)@ keyed on @f@
1734       vectInfoTyCon   :: NameEnv (TyCon  , TyCon),   -- ^ @(T, T_v)@ keyed on @T@
1735       vectInfoDataCon :: NameEnv (DataCon, DataCon), -- ^ @(C, C_v)@ keyed on @C@
1736       vectInfoPADFun  :: NameEnv (TyCon  , Var),     -- ^ @(T_v, paT)@ keyed on @T_v@
1737       vectInfoIso     :: NameEnv (TyCon  , Var)      -- ^ @(T, isoT)@ keyed on @T@
1738     }
1739
1740 -- | Vectorisation information for 'ModIface': a slightly less low-level view
1741 data IfaceVectInfo 
1742   = IfaceVectInfo {
1743       ifaceVectInfoVar        :: [Name],
1744         -- ^ All variables in here have a vectorised variant
1745       ifaceVectInfoTyCon      :: [Name],
1746         -- ^ All 'TyCon's in here have a vectorised variant;
1747         -- the name of the vectorised variant and those of its
1748         -- data constructors are determined by 'OccName.mkVectTyConOcc'
1749         -- and 'OccName.mkVectDataConOcc'; the names of
1750         -- the isomorphisms are determined by 'OccName.mkVectIsoOcc'
1751       ifaceVectInfoTyConReuse :: [Name]              
1752         -- ^ The vectorised form of all the 'TyCon's in here coincides with
1753         -- the unconverted form; the name of the isomorphisms is determined
1754         -- by 'OccName.mkVectIsoOcc'
1755     }
1756
1757 noVectInfo :: VectInfo
1758 noVectInfo = VectInfo emptyVarEnv emptyNameEnv emptyNameEnv emptyNameEnv emptyNameEnv
1759
1760 plusVectInfo :: VectInfo -> VectInfo -> VectInfo
1761 plusVectInfo vi1 vi2 = 
1762   VectInfo (vectInfoVar     vi1 `plusVarEnv`  vectInfoVar     vi2)
1763            (vectInfoTyCon   vi1 `plusNameEnv` vectInfoTyCon   vi2)
1764            (vectInfoDataCon vi1 `plusNameEnv` vectInfoDataCon vi2)
1765            (vectInfoPADFun  vi1 `plusNameEnv` vectInfoPADFun  vi2)
1766            (vectInfoIso     vi1 `plusNameEnv` vectInfoIso     vi2)
1767
1768 concatVectInfo :: [VectInfo] -> VectInfo
1769 concatVectInfo = foldr plusVectInfo noVectInfo
1770
1771 noIfaceVectInfo :: IfaceVectInfo
1772 noIfaceVectInfo = IfaceVectInfo [] [] []
1773 \end{code}
1774
1775 %************************************************************************
1776 %*                                                                      *
1777 \subsection{Linkable stuff}
1778 %*                                                                      *
1779 %************************************************************************
1780
1781 This stuff is in here, rather than (say) in Linker.lhs, because the Linker.lhs
1782 stuff is the *dynamic* linker, and isn't present in a stage-1 compiler
1783
1784 \begin{code}
1785 -- | Information we can use to dynamically link modules into the compiler
1786 data Linkable = LM {
1787   linkableTime     :: ClockTime,        -- ^ Time at which this linkable was built
1788                                         -- (i.e. when the bytecodes were produced,
1789                                         --       or the mod date on the files)
1790   linkableModule   :: Module,           -- ^ The linkable module itself
1791   linkableUnlinked :: [Unlinked]
1792     -- ^ Those files and chunks of code we have yet to link.
1793     --
1794     -- INVARIANT: A valid linkable always has at least one 'Unlinked' item.
1795     -- If this list is empty, the Linkable represents a fake linkable, which
1796     -- is generated in HscNothing mode to avoid recompiling modules.
1797     --
1798     -- XXX: Do items get removed from this list when they get linked?
1799  }
1800
1801 isObjectLinkable :: Linkable -> Bool
1802 isObjectLinkable l = not (null unlinked) && all isObject unlinked
1803   where unlinked = linkableUnlinked l
1804         -- A linkable with no Unlinked's is treated as a BCO.  We can
1805         -- generate a linkable with no Unlinked's as a result of
1806         -- compiling a module in HscNothing mode, and this choice
1807         -- happens to work well with checkStability in module GHC.
1808
1809 linkableObjs :: Linkable -> [FilePath]
1810 linkableObjs l = [ f | DotO f <- linkableUnlinked l ]
1811
1812 instance Outputable Linkable where
1813    ppr (LM when_made mod unlinkeds)
1814       = (text "LinkableM" <+> parens (text (show when_made)) <+> ppr mod)
1815         $$ nest 3 (ppr unlinkeds)
1816
1817 -------------------------------------------
1818
1819 -- | Objects which have yet to be linked by the compiler
1820 data Unlinked
1821    = DotO FilePath      -- ^ An object file (.o)
1822    | DotA FilePath      -- ^ Static archive file (.a)
1823    | DotDLL FilePath    -- ^ Dynamically linked library file (.so, .dll, .dylib)
1824    | BCOs CompiledByteCode ModBreaks    -- ^ A byte-code object, lives only in memory
1825
1826 #ifndef GHCI
1827 data CompiledByteCode = CompiledByteCodeUndefined
1828 _unused :: CompiledByteCode
1829 _unused = CompiledByteCodeUndefined
1830 #endif
1831
1832 instance Outputable Unlinked where
1833    ppr (DotO path)   = text "DotO" <+> text path
1834    ppr (DotA path)   = text "DotA" <+> text path
1835    ppr (DotDLL path) = text "DotDLL" <+> text path
1836 #ifdef GHCI
1837    ppr (BCOs bcos _) = text "BCOs" <+> ppr bcos
1838 #else
1839    ppr (BCOs _ _)    = text "No byte code"
1840 #endif
1841
1842 -- | Is this an actual file on disk we can link in somehow?
1843 isObject :: Unlinked -> Bool
1844 isObject (DotO _)   = True
1845 isObject (DotA _)   = True
1846 isObject (DotDLL _) = True
1847 isObject _          = False
1848
1849 -- | Is this a bytecode linkable with no file on disk?
1850 isInterpretable :: Unlinked -> Bool
1851 isInterpretable = not . isObject
1852
1853 -- | Retrieve the filename of the linkable if possible. Panic if it is a byte-code object
1854 nameOfObject :: Unlinked -> FilePath
1855 nameOfObject (DotO fn)   = fn
1856 nameOfObject (DotA fn)   = fn
1857 nameOfObject (DotDLL fn) = fn
1858 nameOfObject other       = pprPanic "nameOfObject" (ppr other)
1859
1860 -- | Retrieve the compiled byte-code if possible. Panic if it is a file-based linkable
1861 byteCodeOfObject :: Unlinked -> CompiledByteCode
1862 byteCodeOfObject (BCOs bc _) = bc
1863 byteCodeOfObject other       = pprPanic "byteCodeOfObject" (ppr other)
1864 \end{code}
1865
1866 %************************************************************************
1867 %*                                                                      *
1868 \subsection{Breakpoint Support}
1869 %*                                                                      *
1870 %************************************************************************
1871
1872 \begin{code}
1873 -- | Breakpoint index
1874 type BreakIndex = Int
1875
1876 -- | All the information about the breakpoints for a given module
1877 data ModBreaks
1878    = ModBreaks
1879    { modBreaks_flags :: BreakArray
1880         -- ^ The array of flags, one per breakpoint, 
1881         -- indicating which breakpoints are enabled.
1882    , modBreaks_locs :: !(Array BreakIndex SrcSpan)
1883         -- ^ An array giving the source span of each breakpoint.
1884    , modBreaks_vars :: !(Array BreakIndex [OccName])
1885         -- ^ An array giving the names of the free variables at each breakpoint.
1886    , modBreaks_decls :: !(Array BreakIndex [String])
1887         -- ^ An array giving the names of the declarations enclosing each breakpoint.
1888    }
1889
1890 emptyModBreaks :: ModBreaks
1891 emptyModBreaks = ModBreaks
1892    { modBreaks_flags = error "ModBreaks.modBreaks_array not initialised"
1893          -- Todo: can we avoid this? 
1894    , modBreaks_locs  = array (0,-1) []
1895    , modBreaks_vars  = array (0,-1) []
1896    , modBreaks_decls = array (0,-1) []
1897    }
1898 \end{code}