[project @ 2000-10-31 12:07:43 by simonpj]
[ghc-hetmet.git] / ghc / compiler / main / MkIface.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1993-1998
3 %
4 \section[MkIface]{Print an interface for a module}
5
6 \begin{code}
7 module MkIface ( 
8         mkModDetails, mkModDetailsFromIface, completeIface, 
9         writeIface, pprIface
10   ) where
11
12 #include "HsVersions.h"
13
14 import HsSyn
15 import HsCore           ( HsIdInfo(..), UfExpr(..), toUfExpr, toUfBndr )
16 import HsTypes          ( toHsTyVars )
17 import BasicTypes       ( Fixity(..), NewOrData(..),
18                           Version, initialVersion, bumpVersion, isLoopBreaker
19                         )
20 import RnMonad
21 import RnHsSyn          ( RenamedInstDecl, RenamedTyClDecl )
22 import TcHsSyn          ( TypecheckedRuleDecl )
23 import HscTypes         ( VersionInfo(..), IfaceDecls(..), ModIface(..), ModDetails(..),
24                           TyThing(..), DFunId, TypeEnv, isTyClThing, Avails,
25                           WhatsImported(..), GenAvailInfo(..), 
26                           ImportVersion, AvailInfo, Deprecations(..), 
27                           ModuleLocation(..)
28                         )
29
30 import CmdLineOpts
31 import Id               ( Id, idType, idInfo, omitIfaceSigForId, isUserExportedId, hasNoBinding,
32                           idSpecialisation, idName, setIdInfo
33                         )
34 import Var              ( isId )
35 import VarSet
36 import DataCon          ( StrictnessMark(..), dataConSig, dataConFieldLabels, dataConStrictMarks )
37 import IdInfo           -- Lots
38 import CoreSyn          ( CoreExpr, CoreBind, Bind(..), CoreRule(..), IdCoreRule, 
39                           isBuiltinRule, rulesRules, rulesRhsFreeVars, emptyCoreRules,
40                           bindersOfBinds
41                         )
42 import CoreFVs          ( exprSomeFreeVars, ruleSomeLhsFreeVars, ruleSomeFreeVars )
43 import CoreUnfold       ( okToUnfoldInHiFile, mkTopUnfolding, neverUnfold, unfoldingTemplate, noUnfolding )
44 import Name             ( isLocallyDefined, getName, 
45                           Name, NamedThing(..)
46                         )
47 import Name     -- Env
48 import OccName          ( pprOccName )
49 import TyCon            ( TyCon, getSynTyConDefn, isSynTyCon, isNewTyCon, isAlgTyCon,
50                           tyConTheta, tyConTyVars, tyConDataCons, tyConFamilySize
51                         )
52 import Class            ( classExtraBigSig, DefMeth(..) )
53 import FieldLabel       ( fieldLabelType )
54 import Type             ( splitSigmaTy, tidyTopType, deNoteType )
55 import SrcLoc           ( noSrcLoc )
56 import Outputable
57 import Module           ( ModuleName, moduleName )
58 import Finder           ( findModule )
59
60 import List             ( partition )
61 import IO               ( IOMode(..), openFile, hClose )
62 \end{code}
63
64
65 %************************************************************************
66 %*                                                                      *
67 \subsection{Write a new interface file}
68 %*                                                                      *
69 %************************************************************************
70
71 \begin{code}
72 mkModDetails :: TypeEnv -> [DFunId]     -- From typechecker
73              -> [CoreBind] -> [Id]      -- Final bindings, plus the top-level Ids from the
74                                         -- code generator; they have authoritative arity info
75              -> [IdCoreRule]            -- Tidy orphan rules
76              -> ModDetails
77 mkModDetails type_env dfun_ids tidy_binds stg_ids orphan_rules
78   = ModDetails { md_types = new_type_env,
79                  md_rules = rule_dcls,
80                  md_insts = dfun_ids }
81   where
82         -- The competed type environment is gotten from
83         --      a) keeping the types and classes
84         --      b) removing all Ids, and Ids with correct IdInfo
85         --              gotten from the bindings
86         -- From (b) we keep only those Ids with Global names, plus Ids
87         --          accessible from them (notably via unfoldings)
88         -- This truncates the type environment to include only the 
89         -- exported Ids and things needed from them, which saves space
90         --
91         -- However, we do keep things like constructors, which should not appear 
92         -- in interface files, because they are needed by importing modules when
93         -- using the compilation manager
94     new_type_env = mkNameEnv [(getName tycl, tycl) | tycl <- orig_type_env, isTyClThing tycl]
95                         `plusNameEnv`
96                    mkNameEnv [(idName id, AnId id) | id <- final_ids]
97
98     orig_type_env = nameEnvElts type_env
99
100     final_ids = bindsToIds (mkVarSet dfun_ids `unionVarSet` orphan_rule_ids)
101                            (mkVarSet stg_ids)
102                            tidy_binds
103
104         -- The complete rules are gotten by combining
105         --      a) the orphan rules
106         --      b) rules embedded in the top-level Ids
107     rule_dcls | opt_OmitInterfacePragmas = []
108               | otherwise                 = getRules orphan_rules tidy_binds (mkVarSet final_ids)
109
110     orphan_rule_ids = unionVarSets [ ruleSomeFreeVars interestingId rule 
111                                    | (_, rule) <- orphan_rules]
112
113
114 -- This version is used when we are re-linking a module
115 -- so we've only run the type checker on its previous interface 
116 mkModDetailsFromIface :: TypeEnv -> [DFunId]    -- From typechecker
117                       -> [TypecheckedRuleDecl]
118                       -> ModDetails
119 mkModDetailsFromIface type_env dfun_ids rules
120   = ModDetails { md_types = type_env,
121                  md_rules = rule_dcls,
122                  md_insts = dfun_ids }
123   where
124     rule_dcls = [(id,rule) | IfaceRuleOut id rule <- rules]
125         -- All the rules from an interface are of the IfaceRuleOut form
126
127
128 completeIface :: Maybe ModIface         -- The old interface, if we have it
129               -> ModIface               -- The new one, minus the decls and versions
130               -> ModDetails             -- The ModDetails for this module
131               -> Maybe (ModIface, SDoc) -- The new one, complete with decls and versions
132                                         -- The SDoc is a debug document giving differences
133                                         -- Nothing => no change
134
135         -- NB: 'Nothing' means that even the usages havn't changed, so there's no
136         --     need to write a new interface file.  But even if the usages have
137         --     changed, the module version may not have.
138 completeIface maybe_old_iface new_iface mod_details 
139   = addVersionInfo maybe_old_iface (new_iface { mi_decls = new_decls })
140   where
141      new_decls = IfaceDecls { dcl_tycl  = ty_cls_dcls,
142                               dcl_insts = inst_dcls,
143                               dcl_rules = rule_dcls }
144
145      inst_dcls   = map ifaceInstance (md_insts mod_details)
146      ty_cls_dcls = foldNameEnv ifaceTyCls [] (md_types mod_details)
147      rule_dcls   = map ifaceRule (md_rules mod_details)
148 \end{code}
149
150
151 %************************************************************************
152 %*                                                                      *
153 \subsection{Types and classes}
154 %*                                                                      *
155 %************************************************************************
156
157 \begin{code}
158 ifaceTyCls :: TyThing -> [RenamedTyClDecl] -> [RenamedTyClDecl]
159 ifaceTyCls (AClass clas) so_far
160   = cls_decl : so_far
161   where
162     cls_decl = ClassDecl (toHsContext sc_theta)
163                          (getName clas)          
164                          (toHsTyVars clas_tyvars)
165                          (toHsFDs clas_fds)
166                          (map toClassOpSig op_stuff)
167                          EmptyMonoBinds
168                          [] noSrcLoc
169
170     (clas_tyvars, clas_fds, sc_theta, _, op_stuff) = classExtraBigSig clas
171
172     toClassOpSig (sel_id, def_meth)
173         = ASSERT(sel_tyvars == clas_tyvars)
174           ClassOpSig (getName sel_id) (Just def_meth') (toHsType op_ty) noSrcLoc
175         where
176           (sel_tyvars, _, op_ty) = splitSigmaTy (idType sel_id)
177           def_meth' = case def_meth of
178                          NoDefMeth  -> NoDefMeth
179                          GenDefMeth -> GenDefMeth
180                          DefMeth id -> DefMeth (getName id)
181
182 ifaceTyCls (ATyCon tycon) so_far
183   = ty_decl : so_far
184   
185   where
186     ty_decl | isSynTyCon tycon
187             = TySynonym (getName tycon)(toHsTyVars tyvars) 
188                         (toHsType syn_ty) noSrcLoc
189
190             | isAlgTyCon tycon
191             = TyData new_or_data (toHsContext (tyConTheta tycon))
192                      (getName tycon)      
193                      (toHsTyVars tyvars)
194                      (map ifaceConDecl (tyConDataCons tycon))
195                      (tyConFamilySize tycon)
196                      Nothing noSrcLoc (panic "gen1") (panic "gen2")
197
198             | otherwise = pprPanic "ifaceTyCls" (ppr tycon)
199
200     tyvars      = tyConTyVars tycon
201     (_, syn_ty) = getSynTyConDefn tycon
202     new_or_data | isNewTyCon tycon = NewType
203                 | otherwise        = DataType
204
205     ifaceConDecl data_con 
206         = ConDecl (getName data_con) (error "ifaceConDecl")
207                   (toHsTyVars ex_tyvars)
208                   (toHsContext ex_theta)
209                   details noSrcLoc
210         where
211           (tyvars1, _, ex_tyvars, ex_theta, arg_tys, tycon1) = dataConSig data_con
212           field_labels   = dataConFieldLabels data_con
213           strict_marks   = dataConStrictMarks data_con
214           details | null field_labels
215                   = ASSERT( tycon == tycon1 && tyvars == tyvars1 )
216                     VanillaCon (zipWith mk_bang_ty strict_marks arg_tys)
217
218                   | otherwise
219                   = RecCon (zipWith mk_field strict_marks field_labels)
220
221     mk_bang_ty NotMarkedStrict     ty = Unbanged (toHsType ty)
222     mk_bang_ty (MarkedUnboxed _ _) ty = Unpacked (toHsType ty)
223     mk_bang_ty MarkedStrict        ty = Banged   (toHsType ty)
224
225     mk_field strict_mark field_label
226         = ([getName field_label], mk_bang_ty strict_mark (fieldLabelType field_label))
227
228 ifaceTyCls (AnId id) so_far
229   | omitIfaceSigForId id = so_far
230   | otherwise            = iface_sig : so_far
231   where
232     iface_sig = IfaceSig (getName id) (toHsType id_type) hs_idinfo noSrcLoc
233
234     id_type = idType id
235     id_info = idInfo id
236
237     hs_idinfo | opt_OmitInterfacePragmas = []
238               | otherwise                = arity_hsinfo  ++ caf_hsinfo  ++ cpr_hsinfo ++ 
239                                            strict_hsinfo ++ wrkr_hsinfo ++ unfold_hsinfo
240
241     ------------  Arity  --------------
242     arity_hsinfo = case arityInfo id_info of
243                         a@(ArityExactly n) -> [HsArity a]
244                         other              -> []
245
246     ------------ Caf Info --------------
247     caf_hsinfo = case cafInfo id_info of
248                    NoCafRefs -> [HsNoCafRefs]
249                    otherwise -> []
250
251     ------------ CPR Info --------------
252     cpr_hsinfo = case cprInfo id_info of
253                    ReturnsCPR -> [HsCprInfo]
254                    NoCPRInfo  -> []
255
256     ------------  Strictness  --------------
257     strict_hsinfo = case strictnessInfo id_info of
258                         NoStrictnessInfo -> []
259                         info             -> [HsStrictness info]
260
261
262     ------------  Worker  --------------
263     wrkr_hsinfo = case workerInfo id_info of
264                     HasWorker work_id wrap_arity -> [HsWorker (getName work_id)]
265                     NoWorker                     -> []
266
267     ------------  Unfolding  --------------
268     unfold_info = unfoldingInfo id_info
269     inline_prag = inlinePragInfo id_info
270     rhs         = unfoldingTemplate unfold_info
271     unfold_hsinfo | neverUnfold unfold_info = []
272                   | otherwise               = [HsUnfold inline_prag (toUfExpr rhs)]
273 \end{code}
274
275
276 %************************************************************************
277 %*                                                                      *
278 \subsection{Instances and rules}
279 %*                                                                      *
280 %************************************************************************
281
282 \begin{code}
283 ifaceInstance :: DFunId -> RenamedInstDecl
284 ifaceInstance dfun_id
285   = InstDecl (toHsType tidy_ty) EmptyMonoBinds [] (Just (getName dfun_id)) noSrcLoc                      
286   where
287     tidy_ty = tidyTopType (deNoteType (idType dfun_id))
288                 -- The deNoteType is very important.   It removes all type
289                 -- synonyms from the instance type in interface files.
290                 -- That in turn makes sure that when reading in instance decls
291                 -- from interface files that the 'gating' mechanism works properly.
292                 -- Otherwise you could have
293                 --      type Tibble = T Int
294                 --      instance Foo Tibble where ...
295                 -- and this instance decl wouldn't get imported into a module
296                 -- that mentioned T but not Tibble.
297
298 ifaceRule (id, BuiltinRule _)
299   = pprTrace "toHsRule: builtin" (ppr id) (bogusIfaceRule id)
300
301 ifaceRule (id, Rule name bndrs args rhs)
302   = IfaceRule name (map toUfBndr bndrs) (getName id)
303               (map toUfExpr args) (toUfExpr rhs) noSrcLoc
304
305 bogusIfaceRule id
306   = IfaceRule SLIT("bogus") [] (getName id) [] (UfVar (getName id)) noSrcLoc
307 \end{code}
308
309
310 %************************************************************************
311 %*                                                                      *
312 \subsection{Compute final Ids}
313 %*                                                                      * 
314 %************************************************************************
315
316 A "final Id" has exactly the IdInfo for going into an interface file, or
317 exporting to another module.
318
319 \begin{code}
320 bindsToIds :: IdSet             -- These Ids are needed already
321            -> IdSet             -- Ids used at code-gen time; they have better pragma info!
322            -> [CoreBind]        -- In dependency order, later depend on earlier
323            -> [Id]              -- Set of Ids actually spat out, complete with exactly the IdInfo
324                                 -- they need for exporting to another module
325
326 bindsToIds needed_ids codegen_ids binds
327   = go needed_ids (reverse binds) []
328                 -- Reverse so that later things will 
329                 -- provoke earlier ones to be emitted
330   where
331         -- The 'needed' set contains the Ids that are needed by earlier
332         -- interface file emissions.  If the Id isn't in this set, and isn't
333         -- exported, there's no need to emit anything
334     need_id needed_set id = id `elemVarSet` needed_set || isUserExportedId id 
335
336     go needed [] emitted
337         | not (isEmptyVarSet needed) = pprTrace "ifaceBinds: free vars:" 
338                                           (sep (map ppr (varSetElems needed)))
339                                        emitted
340         | otherwise                  = emitted
341
342     go needed (NonRec id rhs : binds) emitted
343         | need_id needed id = go new_needed binds (new_id:emitted)
344         | otherwise         = go needed     binds emitted
345         where
346           (new_id, extras) = mkFinalId codegen_ids False id rhs
347           new_needed       = (needed `unionVarSet` extras) `delVarSet` id
348
349         -- Recursive groups are a bit more of a pain.  We may only need one to
350         -- start with, but it may call out the next one, and so on.  So we
351         -- have to look for a fixed point.  We don't want necessarily them all, 
352         -- because without -O we may only need the first one (if we don't emit
353         -- its unfolding)
354     go needed (Rec pairs : binds) emitted
355         = go needed' binds emitted' 
356         where
357           (new_emitted, extras) = go_rec needed pairs
358           needed'  = (needed `unionVarSet` extras) `minusVarSet` mkVarSet (map fst pairs) 
359           emitted' = new_emitted ++ emitted 
360
361     go_rec :: IdSet -> [(Id,CoreExpr)] -> ([Id], IdSet)
362     go_rec needed pairs
363         | null needed_prs = ([], emptyVarSet)
364         | otherwise       = (emitted ++           more_emitted,
365                              extras `unionVarSet` more_extras)
366         where
367           (needed_prs,leftover_prs)   = partition is_needed pairs
368           (emitted, extras_s)         = unzip [ mkFinalId codegen_ids True id rhs 
369                                               | (id,rhs) <- needed_prs, not (omitIfaceSigForId id)]
370           extras                      = unionVarSets extras_s
371           (more_emitted, more_extras) = go_rec extras leftover_prs
372
373           is_needed (id,_) = need_id needed id
374 \end{code}
375
376
377
378 \begin{code}
379 mkFinalId :: IdSet              -- The Ids with arity info from the code generator
380           -> Bool               -- True <=> recursive, so don't include unfolding
381           -> Id
382           -> CoreExpr           -- The Id's right hand side
383           -> (Id, IdSet)        -- The emitted id, plus any *extra* needed Ids
384
385 mkFinalId codegen_ids is_rec id rhs
386   | omitIfaceSigForId id 
387   = (id, emptyVarSet)           -- An optimisation for top-level constructors and suchlike
388   | otherwise
389   = (id `setIdInfo` new_idinfo, new_needed_ids)
390   where
391     core_idinfo = idInfo id
392     stg_idinfo  = case lookupVarSet codegen_ids id of
393                         Just id' -> idInfo id'
394                         Nothing  -> pprTrace "ifaceBinds not found:" (ppr id) $
395                                     idInfo id
396
397     new_idinfo | opt_OmitInterfacePragmas
398                = vanillaIdInfo
399                | otherwise                
400                = core_idinfo `setArityInfo`      arity_info
401                              `setCafInfo`        cafInfo stg_idinfo
402                              `setUnfoldingInfo`  unfold_info
403                              `setWorkerInfo`     worker_info
404                              `setSpecInfo`       emptyCoreRules
405         -- We zap the specialisations because they are
406         -- passed on separately through the modules IdCoreRules
407
408     ------------  Arity  --------------
409     arity_info = arityInfo stg_idinfo
410     stg_arity  = arityLowerBound arity_info
411
412     ------------  Worker  --------------
413         -- We only treat a function as having a worker if
414         -- the exported arity (which is now the number of visible lambdas)
415         -- is the same as the arity at the moment of the w/w split
416         -- If so, we can safely omit the unfolding inside the wrapper, and
417         -- instead re-generate it from the type/arity/strictness info
418         -- But if the arity has changed, we just take the simple path and
419         -- put the unfolding into the interface file, forgetting the fact
420         -- that it's a wrapper.  
421         --
422         -- How can this happen?  Sometimes we get
423         --      f = coerce t (\x y -> $wf x y)
424         -- at the moment of w/w split; but the eta reducer turns it into
425         --      f = coerce t $wf
426         -- which is perfectly fine except that the exposed arity so far as
427         -- the code generator is concerned (zero) differs from the arity
428         -- when we did the split (2).  
429         --
430         -- All this arises because we use 'arity' to mean "exactly how many
431         -- top level lambdas are there" in interface files; but during the
432         -- compilation of this module it means "how many things can I apply
433         -- this to".
434     worker_info = case workerInfo core_idinfo of
435                      info@(HasWorker work_id wrap_arity)
436                         | wrap_arity == stg_arity -> info
437                         | otherwise               -> pprTrace "ifaceId: arity change:" (ppr id) 
438                                                      NoWorker
439                      NoWorker                     -> NoWorker
440
441     has_worker = case worker_info of
442                    HasWorker _ _ -> True
443                    other         -> False
444
445     HasWorker work_id _ = worker_info
446
447     ------------  Unfolding  --------------
448     inline_pragma  = inlinePragInfo core_idinfo
449     dont_inline    = isNeverInlinePrag inline_pragma
450     loop_breaker   = isLoopBreaker (occInfo core_idinfo)
451     bottoming_fn   = isBottomingStrictness (strictnessInfo core_idinfo)
452
453     unfolding    = mkTopUnfolding rhs
454     rhs_is_small = neverUnfold unfolding
455
456     unfold_info | show_unfold = unfolding
457                 | otherwise   = noUnfolding
458
459     show_unfold = not has_worker         &&     -- Not unnecessary
460                   not bottoming_fn       &&     -- Not necessary
461                   not dont_inline        &&
462                   not loop_breaker       &&
463                   rhs_is_small           &&     -- Small enough
464                   okToUnfoldInHiFile rhs        -- No casms etc
465
466
467     ------------  Extra free Ids  --------------
468     new_needed_ids | opt_OmitInterfacePragmas = emptyVarSet
469                    | otherwise                = worker_ids      `unionVarSet`
470                                                 unfold_ids      `unionVarSet`
471                                                 spec_ids
472
473     spec_ids = filterVarSet interestingId (rulesRhsFreeVars (specInfo core_idinfo))
474
475     worker_ids | has_worker && interestingId work_id = unitVarSet work_id
476                         -- Conceivably, the worker might come from
477                         -- another module
478                | otherwise = emptyVarSet
479
480     unfold_ids | show_unfold = find_fvs rhs
481                | otherwise   = emptyVarSet
482
483     find_fvs expr = exprSomeFreeVars interestingId expr
484
485 interestingId id = isId id && isLocallyDefined id && not (hasNoBinding id)
486 \end{code}
487
488
489 \begin{code}
490 getRules :: [IdCoreRule]        -- Orphan rules
491          -> [CoreBind]          -- Bindings, with rules in the top-level Ids
492          -> IdSet               -- Ids that are exported, so we need their rules
493          -> [IdCoreRule]
494 getRules orphan_rules binds emitted
495   = orphan_rules ++ local_rules
496   where
497     local_rules  = [ (fn, rule)
498                    | fn <- bindersOfBinds binds,
499                      fn `elemVarSet` emitted,
500                      rule <- rulesRules (idSpecialisation fn),
501                      not (isBuiltinRule rule),
502                                 -- We can't print builtin rules in interface files
503                                 -- Since they are built in, an importing module
504                                 -- will have access to them anyway
505
506                         -- Sept 00: I've disabled this test.  It doesn't stop many, if any, rules
507                         -- from coming out, and to make it work properly we need to add ????
508                         --      (put it back in for now)
509                      all (`elemVarSet` emitted) (varSetElems (ruleSomeLhsFreeVars interestingId rule))
510                                 -- Spit out a rule only if all its lhs free vars are emitted
511                                 -- This is a good reason not to do it when we emit the Id itself
512                    ]
513 \end{code}
514
515
516 %************************************************************************
517 %*                                                                      *
518 \subsection{Checking if the new interface is up to date
519 %*                                                                      *
520 %************************************************************************
521
522 \begin{code}
523 addVersionInfo :: Maybe ModIface                -- The old interface, read from M.hi
524                -> ModIface                      -- The new interface decls
525                -> Maybe (ModIface, SDoc)        -- Nothing => no change; no need to write new Iface
526                                                 -- Just mi => Here is the new interface to write
527                                                 --            with correct version numbers
528
529 -- NB: the fixities, declarations, rules are all assumed
530 -- to be sorted by increasing order of hsDeclName, so that 
531 -- we can compare for equality
532
533 addVersionInfo Nothing new_iface
534 -- No old interface, so definitely write a new one!
535   = Just (new_iface, text "No old interface available")
536
537 addVersionInfo (Just old_iface@(ModIface { mi_version = old_version, 
538                                            mi_decls   = old_decls,
539                                            mi_fixities = old_fixities }))
540                new_iface@(ModIface { mi_decls = new_decls,
541                                      mi_fixities = new_fixities })
542
543   | no_output_change && no_usage_change
544   = Nothing
545
546   | otherwise           -- Add updated version numbers
547   = Just (final_iface, pp_tc_diffs)
548         
549   where
550     final_iface = new_iface { mi_version = new_version }
551     new_version = VersionInfo { vers_module  = bumpVersion no_output_change (vers_module  old_version),
552                                 vers_exports = bumpVersion no_export_change (vers_exports old_version),
553                                 vers_rules   = bumpVersion no_rule_change   (vers_rules   old_version),
554                                 vers_decls   = tc_vers }
555
556     no_output_change = no_tc_change && no_rule_change && no_export_change
557     no_usage_change  = mi_usages old_iface == mi_usages new_iface
558
559     no_export_change = mi_exports old_iface == mi_exports new_iface             -- Kept sorted
560     no_rule_change   = dcl_rules old_decls  == dcl_rules  new_decls             -- Ditto
561
562         -- Fill in the version number on the new declarations by looking at the old declarations.
563         -- Set the flag if anything changes. 
564         -- Assumes that the decls are sorted by hsDeclName.
565     old_vers_decls = vers_decls old_version
566     (no_tc_change,  pp_tc_diffs,  tc_vers) = diffDecls old_vers_decls old_fixities new_fixities
567                                                        (dcl_tycl old_decls) (dcl_tycl new_decls)
568
569
570
571 diffDecls :: NameEnv Version                            -- Old version map
572           -> NameEnv Fixity -> NameEnv Fixity           -- Old and new fixities
573           -> [RenamedTyClDecl] -> [RenamedTyClDecl]     -- Old and new decls
574           -> (Bool,             -- True <=> no change
575               SDoc,             -- Record of differences
576               NameEnv Version)  -- New version
577
578 diffDecls old_vers old_fixities new_fixities old new
579   = diff True empty emptyNameEnv old new
580   where
581         -- When seeing if two decls are the same, 
582         -- remember to check whether any relevant fixity has changed
583     eq_tc  d1 d2 = d1 == d2 && all (same_fixity . fst) (tyClDeclNames d1)
584     same_fixity n = lookupNameEnv old_fixities n == lookupNameEnv new_fixities n
585
586     diff ok_so_far pp new_vers []  []      = (ok_so_far, pp, new_vers)
587     diff ok_so_far pp new_vers old []      = (False,     pp, new_vers)
588     diff ok_so_far pp new_vers [] (nd:nds) = diff False (pp $$ only_new nd) new_vers [] nds
589     diff ok_so_far pp new_vers (od:ods) (nd:nds)
590         = case od_name `compare` nd_name of
591                 LT -> diff False (pp $$ only_old od) new_vers ods      (nd:nds)
592                 GT -> diff False (pp $$ only_new nd) new_vers (od:ods) nds
593                 EQ | od `eq_tc` nd -> diff ok_so_far pp                    new_vers  ods nds
594                    | otherwise     -> diff False     (pp $$ changed od nd) new_vers' ods nds
595         where
596           od_name = tyClDeclName od
597           nd_name = tyClDeclName nd
598           new_vers' = extendNameEnv new_vers nd_name 
599                                     (bumpVersion True (lookupNameEnv_NF old_vers od_name))
600
601     only_old d   = ptext SLIT("Only in old iface:") <+> ppr d
602     only_new d   = ptext SLIT("Only in new iface:") <+> ppr d
603     changed d nd = ptext SLIT("Changed in iface: ") <+> ((ptext SLIT("Old:") <+> ppr d) $$ 
604                                                          (ptext SLIT("New:") <+> ppr nd))
605 \end{code}
606
607
608
609 %************************************************************************
610 %*                                                                      *
611 \subsection{Writing an interface file}
612 %*                                                                      *
613 %************************************************************************
614
615 \begin{code}
616 writeIface :: FilePath -> Maybe ModIface -> IO ()
617 writeIface hi_path Nothing
618   = return ()
619
620 writeIface hi_path (Just mod_iface)
621   = do  { if_hdl <- openFile hi_path WriteMode
622         ; printForIface if_hdl (pprIface mod_iface)
623         ; hClose if_hdl
624         }
625          
626 pprIface :: ModIface -> SDoc
627 pprIface iface
628  = vcat [ ptext SLIT("__interface")
629                 <+> doubleQuotes (ptext opt_InPackage)
630                 <+> ppr (mi_module iface) <+> ppr (vers_module version_info)
631                 <+> pp_sub_vers
632                 <+> (if mi_orphan iface then char '!' else empty)
633                 <+> int opt_HiVersion
634                 <+> ptext SLIT("where")
635
636         , vcat (map pprExport (mi_exports iface))
637         , vcat (map pprUsage (mi_usages iface))
638
639         , pprFixities (mi_fixities iface) (dcl_tycl decls)
640         , pprIfaceDecls (vers_decls version_info) decls
641         , pprDeprecs (mi_deprecs iface)
642         ]
643   where
644     version_info = mi_version iface
645     decls        = mi_decls iface
646     exp_vers     = vers_exports version_info
647     rule_vers    = vers_rules version_info
648
649     pp_sub_vers | exp_vers == initialVersion && rule_vers == initialVersion = empty
650                 | otherwise = brackets (ppr exp_vers <+> ppr rule_vers)
651 \end{code}
652
653 When printing export lists, we print like this:
654         Avail   f               f
655         AvailTC C [C, x, y]     C(x,y)
656         AvailTC C [x, y]        C!(x,y)         -- Exporting x, y but not C
657
658 \begin{code}
659 pprExport :: (ModuleName, Avails) -> SDoc
660 pprExport (mod, items)
661  = hsep [ ptext SLIT("__export "), ppr mod, hsep (map pp_avail items) ] <> semi
662   where
663     ppr_name :: Name -> SDoc    -- Print the occurrence name only
664     ppr_name n = ppr (nameOccName n)
665
666     pp_avail :: AvailInfo -> SDoc
667     pp_avail (Avail name)      = ppr_name name
668     pp_avail (AvailTC name []) = empty
669     pp_avail (AvailTC name ns) = hcat [ppr_name name, bang, pp_export ns']
670                                 where
671                                   bang | name `elem` ns = empty
672                                        | otherwise      = char '|'
673                                   ns' = filter (/= name) ns
674     
675     pp_export []    = empty
676     pp_export names = braces (hsep (map ppr_name names))
677 \end{code}
678
679
680 \begin{code}
681 pprUsage :: ImportVersion Name -> SDoc
682 pprUsage (m, has_orphans, is_boot, whats_imported)
683   = hsep [ptext SLIT("import"), ppr m, 
684           pp_orphan, pp_boot,
685           pp_versions whats_imported
686     ] <> semi
687   where
688     pp_orphan | has_orphans = char '!'
689               | otherwise   = empty
690     pp_boot   | is_boot     = char '@'
691               | otherwise   = empty
692
693         -- Importing the whole module is indicated by an empty list
694     pp_versions NothingAtAll                = empty
695     pp_versions (Everything v)              = dcolon <+> int v
696     pp_versions (Specifically vm ve nvs vr) = dcolon <+> int vm <+> pp_export_version ve <+> int vr 
697                                               <+> hsep [ ppr n <+> int v | (n,v) <- nvs ]
698
699         -- HACK for the moment: print the export-list version even if
700         -- we don't use it, so that syntax of interface files doesn't change
701     pp_export_version Nothing  = int 1
702     pp_export_version (Just v) = int v
703 \end{code}
704
705 \begin{code}
706 pprIfaceDecls version_map decls
707   = vcat [ vcat [ppr i <+> semi | i <- dcl_insts decls]
708          , vcat (map ppr_decl (dcl_tycl decls))
709          , pprRules (dcl_rules decls)
710          ]
711   where
712     ppr_decl d  = ppr_vers d <+> ppr d <> semi
713
714         -- Print the version for the decl
715     ppr_vers d = case lookupNameEnv version_map (tyClDeclName d) of
716                    Nothing -> empty
717                    Just v  -> int v
718 \end{code}
719
720 \begin{code}
721 pprFixities fixity_map decls
722   = hsep [ ppr fix <+> ppr n 
723          | d <- decls, 
724            (n,_) <- tyClDeclNames d, 
725            Just fix <- [lookupNameEnv fixity_map n]] <> semi
726
727 pprRules []    = empty
728 pprRules rules = hsep [ptext SLIT("{-## __R"), vcat (map ppr rules), ptext SLIT("##-}")]
729
730 pprDeprecs NoDeprecs = empty
731 pprDeprecs deprecs   = ptext SLIT("{-## __D") <+> guts <+> ptext SLIT("##-}")
732                      where
733                        guts = case deprecs of
734                                 DeprecAll txt  -> ptext txt
735                                 DeprecSome env -> pp_deprecs env
736
737 pp_deprecs env = vcat (punctuate semi (map pp_deprec (nameEnvElts env)))
738                where
739                  pp_deprec (name, txt) = pprOccName (nameOccName name) <+> ptext txt
740 \end{code}