[project @ 1999-06-18 13:06:33 by simonmar]
[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         startIface, endIface, ifaceDecls
9     ) where
10
11 #include "HsVersions.h"
12
13 import IO               ( Handle, hPutStr, openFile, 
14                           hClose, hPutStrLn, IOMode(..) )
15
16 import HsSyn
17 import BasicTypes       ( Fixity(..), FixityDirection(..), NewOrData(..) )
18 import RnMonad
19 import RnEnv            ( availName )
20
21 import TcInstUtil       ( InstInfo(..) )
22 import WorkWrap         ( getWorkerId )
23
24 import CmdLineOpts
25 import Id               ( Id, idType, idInfo, omitIfaceSigForId, isUserExportedId,
26                           getIdSpecialisation
27                         )
28 import Var              ( isId )
29 import VarSet
30 import DataCon          ( StrictnessMark(..), dataConSig, dataConFieldLabels, dataConStrictMarks )
31 import IdInfo           ( IdInfo, StrictnessInfo, ArityInfo, InlinePragInfo(..), inlinePragInfo,
32                           arityInfo, ppArityInfo, 
33                           strictnessInfo, ppStrictnessInfo, 
34                           cafInfo, ppCafInfo, specInfo,
35                           cprInfo, ppCprInfo,
36                           workerExists, workerInfo, isBottomingStrictness
37                         )
38 import CoreSyn          ( CoreExpr, CoreBind, Bind(..), rulesRules, rulesRhsFreeVars )
39 import CoreFVs          ( exprSomeFreeVars, ruleSomeLhsFreeVars, ruleSomeFreeVars )
40 import CoreUnfold       ( calcUnfoldingGuidance, okToUnfoldInHiFile, couldBeSmallEnoughToInline )
41 import Module           ( moduleString, pprModule, pprModuleName )
42 import Name             ( isLocallyDefined, isWiredInName, nameRdrName, nameModule,
43                           Name, NamedThing(..)
44                         )
45 import OccName          ( OccName, pprOccName )
46 import TyCon            ( TyCon, getSynTyConDefn, isSynTyCon, isNewTyCon, isAlgTyCon,
47                           tyConTheta, tyConTyVars, tyConDataCons
48                         )
49 import Class            ( Class, classBigSig )
50 import FieldLabel       ( fieldLabelName, fieldLabelType )
51 import Type             ( mkSigmaTy, splitSigmaTy, mkDictTy, tidyTopType, deNoteType,
52                           Type, ThetaType
53                         )
54
55 import PprType
56 import PprCore          ( pprIfaceUnfolding, pprCoreRule )
57 import Rules            ( pprProtoCoreRule, ProtoCoreRule(..) )
58
59 import Bag              ( bagToList, isEmptyBag )
60 import Maybes           ( catMaybes, maybeToBool )
61 import FiniteMap        ( emptyFM, addToFM, addToFM_C, fmToList, FiniteMap )
62 import UniqFM           ( lookupUFM, listToUFM )
63 import UniqSet          ( uniqSetToList )
64 import Util             ( sortLt, mapAccumL )
65 import Bag
66 import Outputable
67 \end{code}
68
69 We have a function @startIface@ to open the output file and put
70 (something like) ``interface Foo'' in it.  It gives back a handle
71 for subsequent additions to the interface file.
72
73 We then have one-function-per-block-of-interface-stuff, e.g.,
74 @ifaceExportList@ produces the @__exports__@ section; it appends
75 to the handle provided by @startIface@.
76
77 \begin{code}
78 startIface  :: Module -> InterfaceDetails
79             -> IO (Maybe Handle) -- Nothing <=> don't do an interface
80
81 ifaceDecls :: Maybe Handle
82            -> [TyCon] -> [Class]
83            -> Bag InstInfo 
84            -> [Id]              -- Ids used at code-gen time; they have better pragma info!
85            -> [CoreBind]        -- In dependency order, later depend on earlier
86            -> [ProtoCoreRule]   -- Rules
87            -> IO ()
88
89 endIface    :: Maybe Handle -> IO ()
90 \end{code}
91
92 \begin{code}
93 startIface mod (has_orphans, import_usages, ExportEnv avails fixities)
94   = case opt_ProduceHi of
95       Nothing -> return Nothing ; -- not producing any .hi file
96
97       Just fn -> do 
98         if_hdl <- openFile fn WriteMode
99         hPutStr         if_hdl ("__interface " ++ moduleString mod)
100         hPutStr         if_hdl (' ' : show (opt_HiVersion :: Int) ++ orphan_indicator)
101         hPutStrLn       if_hdl " where"
102         ifaceExports    if_hdl avails
103         ifaceImports    if_hdl import_usages
104         ifaceFixities   if_hdl fixities
105         return (Just if_hdl)
106   where
107     orphan_indicator | has_orphans = " !"
108                      | otherwise   = ""
109
110 endIface Nothing        = return ()
111 endIface (Just if_hdl)  = hPutStr if_hdl "\n" >> hClose if_hdl
112 \end{code}
113
114
115 \begin{code}
116 ifaceDecls Nothing tycons classes inst_info final_ids simplified rules = return ()
117 ifaceDecls (Just hdl)
118            tycons classes
119            inst_infos
120            final_ids binds
121            orphan_rules         -- Rules defined locally for an Id that is *not* defined locally
122   | null_decls = return ()               
123         --  You could have a module with just (re-)exports/instances in it
124   | otherwise
125   = ifaceClasses hdl classes                    >>
126     ifaceInstances hdl inst_infos               >>= \ inst_ids ->
127     ifaceTyCons hdl tycons                      >>
128     ifaceBinds hdl (inst_ids `unionVarSet` orphan_rule_ids)
129                final_ids binds                  >>= \ emitted_ids ->
130     ifaceRules hdl orphan_rules emitted_ids     >>
131     return ()
132   where
133      orphan_rule_ids = unionVarSets [ ruleSomeFreeVars interestingId rule 
134                                     | ProtoCoreRule _ _ rule <- orphan_rules]
135
136      null_decls = null binds      && 
137                   null tycons     &&
138                   null classes    && 
139                   isEmptyBag inst_infos &&
140                   null orphan_rules
141 \end{code}
142
143 \begin{code}
144 ifaceImports if_hdl import_usages
145   = hPutCol if_hdl upp_uses (sortLt lt_imp_vers import_usages)
146   where
147     upp_uses (m, mv, has_orphans, whats_imported)
148       = hsep [ptext SLIT("import"), pprModuleName m, 
149               int mv, pp_orphan,
150               upp_import_versions whats_imported
151         ] <> semi
152       where
153         pp_orphan | has_orphans = ptext SLIT("!")
154                   | otherwise   = empty
155
156         -- Importing the whole module is indicated by an empty list
157     upp_import_versions Everything = empty
158
159         -- For imported versions we do print the version number
160     upp_import_versions (Specifically nvs)
161       = dcolon <+> hsep [ hsep [ppr_unqual_name n, int v] | (n,v) <- sort_versions nvs ]
162
163 ifaceModuleDeps if_hdl [] = return ()
164 ifaceModuleDeps if_hdl mod_deps
165   = let 
166         lines = map ppr_mod_dep mod_deps
167         ppr_mod_dep (mod, contains_orphans) 
168            | contains_orphans = pprModuleName mod <+> ptext SLIT("!")
169            | otherwise        = pprModuleName mod
170     in 
171     printForIface if_hdl (ptext SLIT("__depends") <+> vcat lines <> ptext SLIT(" ;")) >>
172     hPutStr if_hdl "\n"
173
174 ifaceExports if_hdl [] = return ()
175 ifaceExports if_hdl avails
176   = hPutCol if_hdl do_one_module (fmToList export_fm)
177   where
178         -- Sort them into groups by module
179     export_fm :: FiniteMap Module [AvailInfo]
180     export_fm = foldr insert emptyFM avails
181
182     insert avail efm = addToFM_C (++) efm mod [avail] 
183                      where
184                        mod = nameModule (availName avail)
185
186         -- Print one module's worth of stuff
187     do_one_module :: (Module, [AvailInfo]) -> SDoc
188     do_one_module (mod_name, avails@(avail1:_))
189         = ptext SLIT("__export ") <>
190           hsep [pprModule mod_name,
191                 hsep (map upp_avail (sortLt lt_avail avails))
192           ] <> semi
193
194 ifaceFixities if_hdl [] = return ()
195 ifaceFixities if_hdl fixities 
196   = hPutCol if_hdl upp_fixity fixities
197
198 ifaceRules if_hdl rules emitted
199   | null orphan_rule_pretties && null local_id_pretties
200   = return ()
201   | otherwise
202   = do  printForIface if_hdl (vcat [
203                 ptext SLIT("{-## __R"),
204
205                 vcat orphan_rule_pretties,
206
207                 vcat local_id_pretties,
208
209                 ptext SLIT("##-}")
210           ])
211         
212         return ()
213   where
214     orphan_rule_pretties =  [ pprCoreRule (Just fn) rule <+> semi
215                             | ProtoCoreRule _ fn rule <- rules
216                             ]
217     local_id_pretties = [ pprCoreRule (Just fn) rule <+> semi
218                         | fn <- varSetElems emitted, 
219                           rule <- rulesRules (getIdSpecialisation fn),
220                           all (`elemVarSet` emitted) (varSetElems (ruleSomeLhsFreeVars interestingId rule))
221                                 -- Spit out a rule only if all its lhs free vars are eemitted
222                         ]
223 \end{code}
224
225 %************************************************************************
226 %*                                                                      *
227 \subsection{Instance declarations}
228 %*                                                                      *
229 %************************************************************************
230
231
232 \begin{code}                     
233 ifaceInstances :: Handle -> Bag InstInfo -> IO IdSet            -- The IdSet is the needed dfuns
234 ifaceInstances if_hdl inst_infos
235   | null togo_insts = return emptyVarSet                 
236   | otherwise       = hPutCol if_hdl pp_inst (sortLt lt_inst togo_insts) >>
237                       return needed_ids
238   where                          
239     togo_insts  = filter is_togo_inst (bagToList inst_infos)
240     needed_ids  = mkVarSet [dfun_id | InstInfo _ _ _ _ dfun_id _ _ _ <- togo_insts]
241     is_togo_inst (InstInfo _ _ _ _ dfun_id _ _ _) = isLocallyDefined dfun_id
242                                  
243     -------                      
244     lt_inst (InstInfo _ _ _ _ dfun_id1 _ _ _)
245             (InstInfo _ _ _ _ dfun_id2 _ _ _)
246       = getOccName dfun_id1 < getOccName dfun_id2
247         -- The dfuns are assigned names df1, df2, etc, in order of original textual
248         -- occurrence, and this makes as good a sort order as any
249
250     -------                      
251     pp_inst (InstInfo clas tvs tys theta dfun_id _ _ _)
252       = let                      
253                 -- The deNoteType is very important.   It removes all type
254                 -- synonyms from the instance type in interface files.
255                 -- That in turn makes sure that when reading in instance decls
256                 -- from interface files that the 'gating' mechanism works properly.
257                 -- Otherwise you could have
258                 --      type Tibble = T Int
259                 --      instance Foo Tibble where ...
260                 -- and this instance decl wouldn't get imported into a module
261                 -- that mentioned T but not Tibble.
262             forall_ty     = mkSigmaTy tvs theta (deNoteType (mkDictTy clas tys))
263             renumbered_ty = tidyTopType forall_ty
264         in                       
265         hcat [ptext SLIT("instance "), pprType renumbered_ty, 
266                     ptext SLIT(" = "), ppr_unqual_name dfun_id, semi]
267 \end{code}
268
269
270 %************************************************************************
271 %*                                                                      *
272 \subsection{Printing values}
273 %*                                                                      *
274 %************************************************************************
275
276 \begin{code}
277 ifaceId :: (Id -> IdInfo)               -- This function "knows" the extra info added
278                                         -- by the STG passes.  Sigh
279
280             -> IdSet                    -- Set of Ids that are needed by earlier interface
281                                         -- file emissions.  If the Id isn't in this set, and isn't
282                                         -- exported, there's no need to emit anything
283             -> Bool                     -- True <=> recursive, so don't print unfolding
284             -> Id
285             -> CoreExpr                 -- The Id's right hand side
286             -> Maybe (SDoc, IdSet)      -- The emitted stuff, plus any *extra* needed Ids
287
288 ifaceId get_idinfo needed_ids is_rec id rhs
289   | not (id `elemVarSet` needed_ids ||          -- Needed [no id in needed_ids has omitIfaceSigForId]
290          (isUserExportedId id && not (omitIfaceSigForId id)))   -- or exported and not to be omitted
291   = Nothing             -- Well, that was easy!
292
293 ifaceId get_idinfo needed_ids is_rec id rhs
294   = Just (hsep [sig_pretty, prag_pretty, char ';'], new_needed_ids)
295   where
296     idinfo         = get_idinfo id
297
298     ty_pretty  = pprType (idType id)
299     sig_pretty = hsep [ppr (getOccName id), dcolon, ty_pretty]
300
301     prag_pretty 
302      | opt_OmitInterfacePragmas = empty
303      | otherwise                = hsep [ptext SLIT("{-##"),
304                                         arity_pretty, 
305                                         caf_pretty,
306                                         cpr_pretty,
307                                         strict_pretty, 
308                                         unfold_pretty, 
309                                         ptext SLIT("##-}")]
310
311     ------------  Arity  --------------
312     arity_pretty  = ppArityInfo (arityInfo idinfo)
313
314     ------------ Caf Info --------------
315     caf_pretty = ppCafInfo (cafInfo idinfo)
316
317     ------------ CPR Info --------------
318     cpr_pretty = ppCprInfo (cprInfo idinfo)
319
320     ------------  Strictness and Worker  --------------
321     strict_info   = strictnessInfo idinfo
322     work_info     = workerInfo idinfo
323     has_worker    = workerExists work_info
324     bottoming_fn  = isBottomingStrictness strict_info
325     strict_pretty = ppStrictnessInfo strict_info <+> wrkr_pretty
326
327     wrkr_pretty | not has_worker = empty
328                 | otherwise      = ppr work_id
329
330 --    (Just work_id) = work_info
331 -- Temporary fix.  We can't use the worker id saved by the w/w
332 -- pass because later optimisations may have changed it.  So try
333 -- to snaffle from the wrapper code again ...
334     work_id    = getWorkerId id rhs
335
336     ------------  Unfolding  --------------
337     inline_pragma  = inlinePragInfo idinfo
338     dont_inline    = case inline_pragma of
339                         IMustNotBeINLINEd -> True
340                         IAmALoopBreaker   -> True
341                         other             -> False
342
343     unfold_pretty | show_unfold = ptext SLIT("__u") <+> pprIfaceUnfolding rhs
344                   | otherwise   = empty
345
346     show_unfold = not has_worker         &&     -- Not unnecessary
347                   not bottoming_fn       &&     -- Not necessary
348                   not dont_inline        &&
349                   rhs_is_small           &&     -- Small enough
350                   okToUnfoldInHiFile rhs        -- No casms etc
351
352     rhs_is_small = couldBeSmallEnoughToInline (calcUnfoldingGuidance opt_UF_HiFileThreshold rhs)
353
354     ------------  Specialisations --------------
355     spec_info   = specInfo idinfo
356     
357     ------------  Extra free Ids  --------------
358     new_needed_ids | opt_OmitInterfacePragmas = emptyVarSet
359                    | otherwise                = worker_ids      `unionVarSet`
360                                                 unfold_ids      `unionVarSet`
361                                                 spec_ids
362
363     worker_ids | has_worker && interestingId work_id = unitVarSet work_id
364                         -- Conceivably, the worker might come from
365                         -- another module
366                | otherwise                         = emptyVarSet
367
368     spec_ids = filterVarSet interestingId (rulesRhsFreeVars spec_info)
369
370     unfold_ids | show_unfold = find_fvs rhs
371                | otherwise   = emptyVarSet
372
373     find_fvs expr = exprSomeFreeVars interestingId expr
374
375 interestingId id = isId id && isLocallyDefined id &&
376                    not (omitIfaceSigForId id)
377 \end{code}
378
379 \begin{code}
380 ifaceBinds :: Handle
381            -> IdSet             -- These Ids are needed already
382            -> [Id]              -- Ids used at code-gen time; they have better pragma info!
383            -> [CoreBind]        -- In dependency order, later depend on earlier
384            -> IO IdSet          -- Set of Ids actually spat out
385
386 ifaceBinds hdl needed_ids final_ids binds
387   = mapIO (printForIface hdl) (bagToList pretties)      >>
388     hPutStr hdl "\n"                                    >>
389     return emitted
390   where
391     final_id_map  = listToUFM [(id,id) | id <- final_ids]
392     get_idinfo id = case lookupUFM final_id_map id of
393                         Just id' -> idInfo id'
394                         Nothing  -> pprTrace "ifaceBinds not found:" (ppr id) $
395                                     idInfo id
396
397     (pretties, emitted) = go needed_ids (reverse binds) emptyBag emptyVarSet 
398                         -- Reverse so that later things will 
399                         -- provoke earlier ones to be emitted
400     go needed [] pretties emitted
401         | not (isEmptyVarSet needed) = pprTrace "ifaceBinds: free vars:" 
402                                           (sep (map ppr (varSetElems needed)))
403                                        (pretties, emitted)
404         | otherwise                  = (pretties, emitted)
405
406     go needed (NonRec id rhs : binds) pretties emitted
407         = case ifaceId get_idinfo needed False id rhs of
408                 Nothing               -> go needed binds pretties emitted
409                 Just (pretty, extras) -> let
410                         needed' = (needed `unionVarSet` extras) `delVarSet` id
411                         -- 'extras' can include the Id itself via a rule
412                         emitted' = emitted `extendVarSet` id
413                         in
414                         go needed' binds (pretty `consBag` pretties) emitted'
415
416         -- Recursive groups are a bit more of a pain.  We may only need one to
417         -- start with, but it may call out the next one, and so on.  So we
418         -- have to look for a fixed point.
419     go needed (Rec pairs : binds) pretties emitted
420         = go needed' binds pretties' emitted' 
421         where
422           (new_pretties, new_emitted, extras) = go_rec needed pairs
423           pretties' = new_pretties `unionBags` pretties
424           needed'   = (needed `unionVarSet` extras) `minusVarSet` mkVarSet (map fst pairs) 
425           emitted'  = emitted `unionVarSet` new_emitted
426
427     go_rec :: IdSet -> [(Id,CoreExpr)] -> (Bag SDoc, IdSet, IdSet)
428     go_rec needed pairs
429         | null pretties = (emptyBag, emptyVarSet, emptyVarSet)
430         | otherwise     = (more_pretties `unionBags`   listToBag pretties, 
431                            more_emitted  `unionVarSet` mkVarSet emitted,
432                            more_extras   `unionVarSet` extras)
433         where
434           maybes               = map do_one pairs
435           emitted              = [id   | ((id,_), Just _)  <- pairs `zip` maybes]
436           reduced_pairs        = [pair | (pair,   Nothing) <- pairs `zip` maybes]
437           (pretties, extras_s) = unzip (catMaybes maybes)
438           extras               = unionVarSets extras_s
439           (more_pretties, more_emitted, more_extras) = go_rec extras reduced_pairs
440
441           do_one (id,rhs) = ifaceId get_idinfo needed True id rhs
442 \end{code}
443
444
445 %************************************************************************
446 %*                                                                      *
447 \subsection{Random small things}
448 %*                                                                      *
449 %************************************************************************
450
451 \begin{code}
452 ifaceTyCons hdl tycons   = hPutCol hdl upp_tycon (sortLt (<) (filter (for_iface_name . getName) tycons ))
453 ifaceClasses hdl classes = hPutCol hdl upp_class (sortLt (<) (filter (for_iface_name . getName) classes))
454
455 for_iface_name name = isLocallyDefined name && 
456                       not (isWiredInName name)
457
458 upp_tycon tycon = ifaceTyCon tycon
459 upp_class clas  = ifaceClass clas
460 \end{code}
461
462
463 \begin{code}
464 ifaceTyCon :: TyCon -> SDoc
465 ifaceTyCon tycon
466   | isSynTyCon tycon
467   = hsep [ ptext SLIT("type"),
468            ppr (getName tycon),
469            pprTyVarBndrs tyvars,
470            ptext SLIT("="),
471            ppr ty,
472            semi
473     ]
474   where
475     (tyvars, ty) = getSynTyConDefn tycon
476
477 ifaceTyCon tycon
478   | isAlgTyCon tycon
479   = hsep [ ptext keyword,
480            ppr_decl_context (tyConTheta tycon),
481            ppr (getName tycon),
482            pprTyVarBndrs (tyConTyVars tycon),
483            ptext SLIT("="),
484            hsep (punctuate (ptext SLIT(" | ")) (map ppr_con (tyConDataCons tycon))),
485            semi
486     ]
487   where
488     keyword | isNewTyCon tycon = SLIT("newtype")
489             | otherwise        = SLIT("data")
490
491     tyvars = tyConTyVars tycon
492
493     ppr_con data_con 
494         | null field_labels
495         = ASSERT( tycon == tycon1 && tyvars == tyvars1 )
496           hsep [  ppr_ex ex_tyvars ex_theta,
497                   ppr name,
498                   hsep (map ppr_arg_ty (strict_marks `zip` arg_tys))
499                 ]
500
501         | otherwise
502         = hsep [  ppr_ex ex_tyvars ex_theta,
503                   ppr name,
504                   braces $ hsep $ punctuate comma (map ppr_field (strict_marks `zip` field_labels))
505                 ]
506           where
507            (tyvars1, theta1, ex_tyvars, ex_theta, arg_tys, tycon1) = dataConSig data_con
508            field_labels   = dataConFieldLabels data_con
509            strict_marks   = dataConStrictMarks data_con
510            name           = getName            data_con
511
512     ppr_ex [] ex_theta = ASSERT( null ex_theta ) empty
513     ppr_ex ex_tvs ex_theta = ptext SLIT("__forall") <+> brackets (pprTyVarBndrs ex_tvs)
514                              <+> pprIfaceTheta ex_theta <+> ptext SLIT("=>")
515
516     ppr_arg_ty (strict_mark, ty) = ppr_strict_mark strict_mark <> pprParendType ty
517
518     ppr_strict_mark NotMarkedStrict        = empty
519     ppr_strict_mark (MarkedUnboxed _ _)    = ptext SLIT("! ! ")
520     ppr_strict_mark MarkedStrict           = ptext SLIT("! ")
521
522     ppr_field (strict_mark, field_label)
523         = hsep [ ppr (fieldLabelName field_label),
524                   dcolon,
525                   ppr_strict_mark strict_mark <> pprParendType (fieldLabelType field_label)
526                 ]
527
528 ifaceTyCon tycon
529   = pprPanic "pprIfaceTyDecl" (ppr tycon)
530
531 ifaceClass clas
532   = hsep [ptext SLIT("class"),
533            ppr_decl_context sc_theta,
534            ppr clas,                    -- Print the name
535            pprTyVarBndrs clas_tyvars,
536            pp_ops,
537            semi
538           ]
539    where
540      (clas_tyvars, sc_theta, _, sel_ids, defms) = classBigSig clas
541
542      pp_ops | null sel_ids  = empty
543             | otherwise = hsep [ptext SLIT("where"),
544                                  braces (hsep (punctuate semi (zipWith ppr_classop sel_ids defms)))
545                           ]
546
547      ppr_classop sel_id maybe_defm
548         = ASSERT( sel_tyvars == clas_tyvars)
549           hsep [ppr (getOccName sel_id),
550                 if maybeToBool maybe_defm then equals else empty,
551                 dcolon,
552                 ppr op_ty
553           ]
554         where
555           (sel_tyvars, _, op_ty) = splitSigmaTy (idType sel_id)
556
557 ppr_decl_context :: ThetaType -> SDoc
558 ppr_decl_context []    = empty
559 ppr_decl_context theta = pprIfaceTheta theta <+> ptext SLIT(" =>")
560
561 pprIfaceTheta :: ThetaType -> SDoc      -- Use braces rather than parens in interface files
562 pprIfaceTheta []    = empty
563 pprIfaceTheta theta = braces (hsep (punctuate comma [pprConstraint c tys | (c,tys) <- theta]))
564 \end{code}
565
566 %************************************************************************
567 %*                                                                      *
568 \subsection{Random small things}
569 %*                                                                      *
570 %************************************************************************
571
572 When printing export lists, we print like this:
573         Avail   f               f
574         AvailTC C [C, x, y]     C(x,y)
575         AvailTC C [x, y]        C!(x,y)         -- Exporting x, y but not C
576
577 \begin{code}
578 upp_avail :: AvailInfo -> SDoc
579 upp_avail (Avail name)      = pprOccName (getOccName name)
580 upp_avail (AvailTC name []) = empty
581 upp_avail (AvailTC name ns) = hcat [pprOccName (getOccName name), bang, upp_export ns']
582                             where
583                               bang | name `elem` ns = empty
584                                    | otherwise      = char '|'
585                               ns' = filter (/= name) ns
586
587 upp_export :: [Name] -> SDoc
588 upp_export []    = empty
589 upp_export names = braces (hsep (map (pprOccName . getOccName) names)) 
590
591 upp_fixity :: (Name, Fixity) -> SDoc
592 upp_fixity (name, fixity) = hsep [ptext SLIT("0"), ppr fixity, ppr name, semi]
593         -- Dummy version number!
594
595 ppr_unqual_name :: NamedThing a => a -> SDoc            -- Just its occurrence name
596 ppr_unqual_name name = pprOccName (getOccName name)
597 \end{code}
598
599
600 %************************************************************************
601 %*                                                                      *
602 \subsection{Comparisons}
603 %*                                                                      *
604 %************************************************************************
605                                  
606
607 The various sorts above simply prevent unnecessary "wobbling" when
608 things change that don't have to.  We therefore compare lexically, not
609 by unique
610
611 \begin{code}
612 lt_avail :: AvailInfo -> AvailInfo -> Bool
613
614 a1 `lt_avail` a2 = availName a1 `lt_name` availName a2
615
616 lt_name :: Name -> Name -> Bool
617 n1 `lt_name` n2 = nameRdrName n1 < nameRdrName n2
618
619 lt_lexical :: NamedThing a => a -> a -> Bool
620 lt_lexical a1 a2 = getName a1 `lt_name` getName a2
621
622 lt_imp_vers :: ImportVersion a -> ImportVersion a -> Bool
623 lt_imp_vers (m1,_,_,_) (m2,_,_,_) = m1 < m2
624
625 sort_versions vs = sortLt lt_vers vs
626
627 lt_vers :: LocalVersion Name -> LocalVersion Name -> Bool
628 lt_vers (n1,v1) (n2,v2) = n1 `lt_name` n2
629 \end{code}
630
631
632 \begin{code}
633 hPutCol :: Handle 
634         -> (a -> SDoc)
635         -> [a]
636         -> IO ()
637 hPutCol hdl fmt xs = mapIO (printForIface hdl . fmt) xs
638
639 mapIO :: (a -> IO b) -> [a] -> IO ()
640 mapIO f []     = return ()
641 mapIO f (x:xs) = f x >> mapIO f xs
642 \end{code}