Make record selectors into ordinary functions
[ghc-hetmet.git] / compiler / iface / BinIface.hs
1
2 {-# OPTIONS_GHC -O #-}
3 -- We always optimise this, otherwise performance of a non-optimised
4 -- compiler is severely affected
5
6 --
7 --  (c) The University of Glasgow 2002-2006
8 --
9 -- Binary interface file support.
10
11 module BinIface ( writeBinIface, readBinIface,
12                   CheckHiWay(..), TraceBinIFaceReading(..) ) where
13
14 #include "HsVersions.h"
15
16 import TcRnMonad
17 import IfaceEnv
18 import HscTypes
19 import BasicTypes
20 import NewDemand
21 import Annotations
22 import IfaceSyn
23 import Module
24 import Name
25 import OccName
26 import VarEnv
27 import InstEnv
28 import Class
29 import DynFlags
30 import UniqFM
31 import UniqSupply
32 import CostCentre
33 import StaticFlags
34 import Panic
35 import Binary
36 import SrcLoc
37 import ErrUtils
38 import Config
39 import FastMutInt
40 import Unique
41 import Outputable
42 import FastString
43
44 import Data.List
45 import Data.Word
46 import Data.Array
47 import Data.IORef
48 import Control.Monad
49
50 data CheckHiWay = CheckHiWay | IgnoreHiWay
51     deriving Eq
52
53 data TraceBinIFaceReading = TraceBinIFaceReading | QuietBinIFaceReading
54     deriving Eq
55
56 -- ---------------------------------------------------------------------------
57 -- Reading and writing binary interface files
58
59 readBinIface :: CheckHiWay -> TraceBinIFaceReading -> FilePath
60              -> TcRnIf a b ModIface
61 readBinIface checkHiWay traceBinIFaceReading hi_path = do
62   nc <- getNameCache
63   (new_nc, iface) <- liftIO $
64     readBinIface_ checkHiWay traceBinIFaceReading hi_path nc
65   setNameCache new_nc
66   return iface
67
68 readBinIface_ :: CheckHiWay -> TraceBinIFaceReading -> FilePath -> NameCache
69               -> IO (NameCache, ModIface)
70 readBinIface_ checkHiWay traceBinIFaceReading hi_path nc = do
71   let printer :: SDoc -> IO ()
72       printer = case traceBinIFaceReading of
73                 TraceBinIFaceReading -> \sd -> printSDoc sd defaultDumpStyle
74                 QuietBinIFaceReading -> \_ -> return ()
75       wantedGot :: Outputable a => String -> a -> a -> IO ()
76       wantedGot what wanted got
77           = printer (text what <> text ": " <>
78                      vcat [text "Wanted " <> ppr wanted <> text ",",
79                            text "got    " <> ppr got])
80
81       errorOnMismatch :: (Eq a, Show a) => String -> a -> a -> IO ()
82       errorOnMismatch what wanted got
83             -- This will be caught by readIface which will emit an error
84             -- msg containing the iface module name.
85           = when (wanted /= got) $ ghcError $ ProgramError
86                         (what ++ " (wanted " ++ show wanted
87                               ++ ", got "    ++ show got ++ ")")
88   bh <- Binary.readBinMem hi_path
89
90         -- Read the magic number to check that this really is a GHC .hi file
91         -- (This magic number does not change when we change
92         --  GHC interface file format)
93   magic <- get bh
94   wantedGot "Magic" binaryInterfaceMagic magic
95   errorOnMismatch "magic number mismatch: old/corrupt interface file?"
96       binaryInterfaceMagic magic
97
98         -- Get the dictionary pointer.  We won't attempt to actually
99         -- read the dictionary until we've done the version checks below,
100         -- just in case this isn't a valid interface.  In retrospect the
101         -- version should have come before the dictionary pointer, but this
102         -- is the way it was done originally, and we can't change it now.
103   dict_p <- Binary.get bh       -- Get the dictionary ptr
104
105         -- Check the interface file version and ways.
106   check_ver  <- get bh
107   let our_ver = show opt_HiVersion
108   wantedGot "Version" our_ver check_ver
109   errorOnMismatch "mismatched interface file versions" our_ver check_ver
110
111   check_way <- get bh
112   way_descr <- getWayDescr
113   wantedGot "Way" way_descr check_way
114   when (checkHiWay == CheckHiWay) $
115        errorOnMismatch "mismatched interface file ways" way_descr check_way
116
117         -- Read the dictionary
118         -- The next word in the file is a pointer to where the dictionary is
119         -- (probably at the end of the file)
120   data_p <- tellBin bh          -- Remember where we are now
121   seekBin bh dict_p
122   dict <- getDictionary bh
123   seekBin bh data_p             -- Back to where we were before
124
125         -- Initialise the user-data field of bh
126   ud <- newReadState dict
127   bh <- return (setUserData bh ud)
128         
129   symtab_p <- Binary.get bh     -- Get the symtab ptr
130   data_p <- tellBin bh          -- Remember where we are now
131   seekBin bh symtab_p
132   (nc', symtab) <- getSymbolTable bh nc
133   seekBin bh data_p             -- Back to where we were before
134   let ud = getUserData bh
135   bh <- return $! setUserData bh ud{ud_symtab = symtab}
136   iface <- get bh
137   return (nc', iface)
138
139
140 writeBinIface :: DynFlags -> FilePath -> ModIface -> IO ()
141 writeBinIface dflags hi_path mod_iface = do
142   bh <- openBinMem initBinMemSize
143   put_ bh binaryInterfaceMagic
144
145         -- Remember where the dictionary pointer will go
146   dict_p_p <- tellBin bh
147   put_ bh dict_p_p      -- Placeholder for ptr to dictionary
148
149         -- The version and way descriptor go next
150   put_ bh (show opt_HiVersion)
151   way_descr <- getWayDescr
152   put  bh way_descr
153
154         -- Remember where the symbol table pointer will go
155   symtab_p_p <- tellBin bh
156   put_ bh symtab_p_p
157
158         -- Make some intial state
159   symtab_next <- newFastMutInt
160   writeFastMutInt symtab_next 0
161   symtab_map <- newIORef emptyUFM
162   let bin_symtab = BinSymbolTable {
163                       bin_symtab_next = symtab_next,
164                       bin_symtab_map  = symtab_map }
165   dict_next_ref <- newFastMutInt
166   writeFastMutInt dict_next_ref 0
167   dict_map_ref <- newIORef emptyUFM
168   let bin_dict = BinDictionary {
169                       bin_dict_next = dict_next_ref,
170                       bin_dict_map  = dict_map_ref }
171   ud <- newWriteState (putName bin_symtab) (putFastString bin_dict)
172
173         -- Put the main thing, 
174   bh <- return $ setUserData bh ud
175   put_ bh mod_iface
176
177         -- Write the symtab pointer at the fornt of the file
178   symtab_p <- tellBin bh                -- This is where the symtab will start
179   putAt bh symtab_p_p symtab_p  -- Fill in the placeholder
180   seekBin bh symtab_p           -- Seek back to the end of the file
181
182         -- Write the symbol table itself
183   symtab_next <- readFastMutInt symtab_next
184   symtab_map  <- readIORef symtab_map
185   putSymbolTable bh symtab_next symtab_map
186   debugTraceMsg dflags 3 (text "writeBinIface:" <+> int symtab_next 
187                                 <+> text "Names")
188
189         -- NB. write the dictionary after the symbol table, because
190         -- writing the symbol table may create more dictionary entries.
191
192         -- Write the dictionary pointer at the fornt of the file
193   dict_p <- tellBin bh          -- This is where the dictionary will start
194   putAt bh dict_p_p dict_p      -- Fill in the placeholder
195   seekBin bh dict_p             -- Seek back to the end of the file
196
197         -- Write the dictionary itself
198   dict_next <- readFastMutInt dict_next_ref
199   dict_map  <- readIORef dict_map_ref
200   putDictionary bh dict_next dict_map
201   debugTraceMsg dflags 3 (text "writeBinIface:" <+> int dict_next
202                                  <+> text "dict entries")
203
204         -- And send the result to the file
205   writeBinMem bh hi_path
206
207 initBinMemSize :: Int
208 initBinMemSize = 1024 * 1024
209
210 -- The *host* architecture version:
211 #include "MachDeps.h"
212
213 binaryInterfaceMagic :: Word32
214 #if   WORD_SIZE_IN_BITS == 32
215 binaryInterfaceMagic = 0x1face
216 #elif WORD_SIZE_IN_BITS == 64
217 binaryInterfaceMagic = 0x1face64
218 #endif
219   
220 -- -----------------------------------------------------------------------------
221 -- The symbol table
222
223 putSymbolTable :: BinHandle -> Int -> UniqFM (Int,Name) -> IO ()
224 putSymbolTable bh next_off symtab = do
225   put_ bh next_off
226   let names = elems (array (0,next_off-1) (eltsUFM symtab))
227   mapM_ (\n -> serialiseName bh n symtab) names
228
229 getSymbolTable :: BinHandle -> NameCache -> IO (NameCache, Array Int Name)
230 getSymbolTable bh namecache = do
231   sz <- get bh
232   od_names <- sequence (replicate sz (get bh))
233   let 
234         arr = listArray (0,sz-1) names
235         (namecache', names) =    
236                 mapAccumR (fromOnDiskName arr) namecache od_names
237   --
238   return (namecache', arr)
239
240 type OnDiskName = (PackageId, ModuleName, OccName)
241
242 fromOnDiskName
243    :: Array Int Name
244    -> NameCache
245    -> OnDiskName
246    -> (NameCache, Name)
247 fromOnDiskName _ nc (pid, mod_name, occ) =
248   let 
249         mod   = mkModule pid mod_name
250         cache = nsNames nc
251   in
252   case lookupOrigNameCache cache  mod occ of
253      Just name -> (nc, name)
254      Nothing   -> 
255         let 
256                 us        = nsUniqs nc
257                 uniq      = uniqFromSupply us
258                 name      = mkExternalName uniq mod occ noSrcSpan
259                 new_cache = extendNameCache cache mod occ name
260         in        
261         case splitUniqSupply us of { (us',_) -> 
262         ( nc{ nsUniqs = us', nsNames = new_cache }, name )
263         }
264
265 serialiseName :: BinHandle -> Name -> UniqFM (Int,Name) -> IO ()
266 serialiseName bh name _ = do
267   let mod = ASSERT2( isExternalName name, ppr name ) nameModule name
268   put_ bh (modulePackageId mod, moduleName mod, nameOccName name)
269
270
271 putName :: BinSymbolTable -> BinHandle -> Name -> IO ()
272 putName BinSymbolTable{ 
273             bin_symtab_map = symtab_map_ref,
274             bin_symtab_next = symtab_next }    bh name
275   = do
276     symtab_map <- readIORef symtab_map_ref
277     case lookupUFM symtab_map name of
278       Just (off,_) -> put_ bh off
279       Nothing -> do
280          off <- readFastMutInt symtab_next
281          writeFastMutInt symtab_next (off+1)
282          writeIORef symtab_map_ref
283              $! addToUFM symtab_map name (off,name)
284          put_ bh off          
285
286
287 data BinSymbolTable = BinSymbolTable {
288         bin_symtab_next :: !FastMutInt, -- The next index to use
289         bin_symtab_map  :: !(IORef (UniqFM (Int,Name)))
290                                 -- indexed by Name
291   }
292
293
294 putFastString :: BinDictionary -> BinHandle -> FastString -> IO ()
295 putFastString BinDictionary { bin_dict_next = j_r,
296                               bin_dict_map  = out_r}  bh f
297   = do
298     out <- readIORef out_r
299     let uniq = getUnique f
300     case lookupUFM out uniq of
301         Just (j, _)  -> put_ bh j
302         Nothing -> do
303            j <- readFastMutInt j_r
304            put_ bh j
305            writeFastMutInt j_r (j + 1)
306            writeIORef out_r $! addToUFM out uniq (j, f)
307
308
309 data BinDictionary = BinDictionary {
310         bin_dict_next :: !FastMutInt, -- The next index to use
311         bin_dict_map  :: !(IORef (UniqFM (Int,FastString)))
312                                 -- indexed by FastString
313   }
314
315 -- -----------------------------------------------------------------------------
316 -- All the binary instances
317
318 -- BasicTypes
319 {-! for IPName derive: Binary !-}
320 {-! for Fixity derive: Binary !-}
321 {-! for FixityDirection derive: Binary !-}
322 {-! for Boxity derive: Binary !-}
323 {-! for StrictnessMark derive: Binary !-}
324 {-! for Activation derive: Binary !-}
325
326 -- NewDemand
327 {-! for Demand derive: Binary !-}
328 {-! for Demands derive: Binary !-}
329 {-! for DmdResult derive: Binary !-}
330 {-! for StrictSig derive: Binary !-}
331
332 -- Class
333 {-! for DefMeth derive: Binary !-}
334
335 -- HsTypes
336 {-! for HsPred derive: Binary !-}
337 {-! for HsType derive: Binary !-}
338 {-! for TupCon derive: Binary !-}
339 {-! for HsTyVarBndr derive: Binary !-}
340
341 -- HsCore
342 {-! for UfExpr derive: Binary !-}
343 {-! for UfConAlt derive: Binary !-}
344 {-! for UfBinding derive: Binary !-}
345 {-! for UfBinder derive: Binary !-}
346 {-! for HsIdInfo derive: Binary !-}
347 {-! for UfNote derive: Binary !-}
348
349 -- HsDecls
350 {-! for ConDetails derive: Binary !-}
351 {-! for BangType derive: Binary !-}
352
353 -- CostCentre
354 {-! for IsCafCC derive: Binary !-}
355 {-! for IsDupdCC derive: Binary !-}
356 {-! for CostCentre derive: Binary !-}
357
358
359
360 -- ---------------------------------------------------------------------------
361 -- Reading a binary interface into ParsedIface
362
363 instance Binary ModIface where
364    put_ bh (ModIface {
365                  mi_module    = mod,
366                  mi_boot      = is_boot,
367                  mi_iface_hash= iface_hash,
368                  mi_mod_hash  = mod_hash,
369                  mi_orphan    = orphan,
370                  mi_finsts    = hasFamInsts,
371                  mi_deps      = deps,
372                  mi_usages    = usages,
373                  mi_exports   = exports,
374                  mi_exp_hash  = exp_hash,
375                  mi_fixities  = fixities,
376                  mi_warns     = warns,
377                  mi_anns      = anns,
378                  mi_decls     = decls,
379                  mi_insts     = insts,
380                  mi_fam_insts = fam_insts,
381                  mi_rules     = rules,
382                  mi_orphan_hash = orphan_hash,
383                  mi_vect_info = vect_info,
384                  mi_hpc       = hpc_info }) = do
385         put_ bh mod
386         put_ bh is_boot
387         put_ bh iface_hash
388         put_ bh mod_hash
389         put_ bh orphan
390         put_ bh hasFamInsts
391         lazyPut bh deps
392         lazyPut bh usages
393         put_ bh exports
394         put_ bh exp_hash
395         put_ bh fixities
396         lazyPut bh warns
397         lazyPut bh anns
398         put_ bh decls
399         put_ bh insts
400         put_ bh fam_insts
401         lazyPut bh rules
402         put_ bh orphan_hash
403         put_ bh vect_info
404         put_ bh hpc_info
405
406    get bh = do
407         mod_name  <- get bh
408         is_boot   <- get bh
409         iface_hash <- get bh
410         mod_hash  <- get bh
411         orphan    <- get bh
412         hasFamInsts <- get bh
413         deps      <- lazyGet bh
414         usages    <- {-# SCC "bin_usages" #-} lazyGet bh
415         exports   <- {-# SCC "bin_exports" #-} get bh
416         exp_hash  <- get bh
417         fixities  <- {-# SCC "bin_fixities" #-} get bh
418         warns     <- {-# SCC "bin_warns" #-} lazyGet bh
419         anns      <- {-# SCC "bin_anns" #-} lazyGet bh
420         decls     <- {-# SCC "bin_tycldecls" #-} get bh
421         insts     <- {-# SCC "bin_insts" #-} get bh
422         fam_insts <- {-# SCC "bin_fam_insts" #-} get bh
423         rules     <- {-# SCC "bin_rules" #-} lazyGet bh
424         orphan_hash <- get bh
425         vect_info <- get bh
426         hpc_info  <- get bh
427         return (ModIface {
428                  mi_module    = mod_name,
429                  mi_boot      = is_boot,
430                  mi_iface_hash = iface_hash,
431                  mi_mod_hash  = mod_hash,
432                  mi_orphan    = orphan,
433                  mi_finsts    = hasFamInsts,
434                  mi_deps      = deps,
435                  mi_usages    = usages,
436                  mi_exports   = exports,
437                  mi_exp_hash  = exp_hash,
438                  mi_anns      = anns,
439                  mi_fixities  = fixities,
440                  mi_warns     = warns,
441                  mi_decls     = decls,
442                  mi_globals   = Nothing,
443                  mi_insts     = insts,
444                  mi_fam_insts = fam_insts,
445                  mi_rules     = rules,
446                  mi_orphan_hash = orphan_hash,
447                  mi_vect_info = vect_info,
448                  mi_hpc       = hpc_info,
449                         -- And build the cached values
450                  mi_warn_fn   = mkIfaceWarnCache warns,
451                  mi_fix_fn    = mkIfaceFixCache fixities,
452                  mi_hash_fn   = mkIfaceHashCache decls })
453
454 getWayDescr :: IO String
455 getWayDescr = do
456   tag <- readIORef v_Build_tag
457   if cGhcUnregisterised == "YES" then return ('u':tag) else return tag
458         -- if this is an unregisterised build, make sure our interfaces
459         -- can't be used by a registerised build.
460
461 -------------------------------------------------------------------------
462 --              Types from: HscTypes
463 -------------------------------------------------------------------------
464
465 instance Binary Dependencies where
466     put_ bh deps = do put_ bh (dep_mods deps)
467                       put_ bh (dep_pkgs deps)
468                       put_ bh (dep_orphs deps)
469                       put_ bh (dep_finsts deps)
470
471     get bh = do ms <- get bh 
472                 ps <- get bh
473                 os <- get bh
474                 fis <- get bh
475                 return (Deps { dep_mods = ms, dep_pkgs = ps, dep_orphs = os,
476                                dep_finsts = fis })
477
478 instance (Binary name) => Binary (GenAvailInfo name) where
479     put_ bh (Avail aa) = do
480             putByte bh 0
481             put_ bh aa
482     put_ bh (AvailTC ab ac) = do
483             putByte bh 1
484             put_ bh ab
485             put_ bh ac
486     get bh = do
487             h <- getByte bh
488             case h of
489               0 -> do aa <- get bh
490                       return (Avail aa)
491               _ -> do ab <- get bh
492                       ac <- get bh
493                       return (AvailTC ab ac)
494
495 instance Binary Usage where
496     put_ bh usg@UsagePackageModule{} = do 
497         putByte bh 0
498         put_ bh (usg_mod usg)
499         put_ bh (usg_mod_hash usg)
500     put_ bh usg@UsageHomeModule{} = do 
501         putByte bh 1
502         put_ bh (usg_mod_name usg)
503         put_ bh (usg_mod_hash usg)
504         put_ bh (usg_exports  usg)
505         put_ bh (usg_entities usg)
506
507     get bh = do
508         h <- getByte bh
509         case h of
510           0 -> do
511             nm    <- get bh
512             mod   <- get bh
513             return UsagePackageModule { usg_mod = nm, usg_mod_hash = mod }
514           _ -> do
515             nm    <- get bh
516             mod   <- get bh
517             exps  <- get bh
518             ents  <- get bh
519             return UsageHomeModule { usg_mod_name = nm, usg_mod_hash = mod,
520                             usg_exports = exps, usg_entities = ents }
521
522 instance Binary Warnings where
523     put_ bh NoWarnings     = putByte bh 0
524     put_ bh (WarnAll t) = do
525             putByte bh 1
526             put_ bh t
527     put_ bh (WarnSome ts) = do
528             putByte bh 2
529             put_ bh ts
530
531     get bh = do
532             h <- getByte bh
533             case h of
534               0 -> return NoWarnings
535               1 -> do aa <- get bh
536                       return (WarnAll aa)
537               _ -> do aa <- get bh
538                       return (WarnSome aa)
539
540 instance Binary WarningTxt where
541     put_ bh (WarningTxt w) = do
542             putByte bh 0
543             put_ bh w
544     put_ bh (DeprecatedTxt d) = do
545             putByte bh 1
546             put_ bh d
547
548     get bh = do
549             h <- getByte bh
550             case h of
551               0 -> do w <- get bh
552                       return (WarningTxt w)
553               _ -> do d <- get bh
554                       return (DeprecatedTxt d)
555
556 -------------------------------------------------------------------------
557 --              Types from: BasicTypes
558 -------------------------------------------------------------------------
559
560 instance Binary Activation where
561     put_ bh NeverActive = do
562             putByte bh 0
563     put_ bh AlwaysActive = do
564             putByte bh 1
565     put_ bh (ActiveBefore aa) = do
566             putByte bh 2
567             put_ bh aa
568     put_ bh (ActiveAfter ab) = do
569             putByte bh 3
570             put_ bh ab
571     get bh = do
572             h <- getByte bh
573             case h of
574               0 -> do return NeverActive
575               1 -> do return AlwaysActive
576               2 -> do aa <- get bh
577                       return (ActiveBefore aa)
578               _ -> do ab <- get bh
579                       return (ActiveAfter ab)
580
581 instance Binary StrictnessMark where
582     put_ bh MarkedStrict    = putByte bh 0
583     put_ bh MarkedUnboxed   = putByte bh 1
584     put_ bh NotMarkedStrict = putByte bh 2
585     get bh = do
586             h <- getByte bh
587             case h of
588               0 -> do return MarkedStrict
589               1 -> do return MarkedUnboxed
590               _ -> do return NotMarkedStrict
591
592 instance Binary Boxity where
593     put_ bh Boxed   = putByte bh 0
594     put_ bh Unboxed = putByte bh 1
595     get bh = do
596             h <- getByte bh
597             case h of
598               0 -> do return Boxed
599               _ -> do return Unboxed
600
601 instance Binary TupCon where
602     put_ bh (TupCon ab ac) = do
603             put_ bh ab
604             put_ bh ac
605     get bh = do
606           ab <- get bh
607           ac <- get bh
608           return (TupCon ab ac)
609
610 instance Binary RecFlag where
611     put_ bh Recursive = do
612             putByte bh 0
613     put_ bh NonRecursive = do
614             putByte bh 1
615     get bh = do
616             h <- getByte bh
617             case h of
618               0 -> do return Recursive
619               _ -> do return NonRecursive
620
621 instance Binary DefMeth where
622     put_ bh NoDefMeth  = putByte bh 0
623     put_ bh DefMeth    = putByte bh 1
624     put_ bh GenDefMeth = putByte bh 2
625     get bh = do
626             h <- getByte bh
627             case h of
628               0 -> return NoDefMeth
629               1 -> return DefMeth
630               _ -> return GenDefMeth
631
632 instance Binary FixityDirection where
633     put_ bh InfixL = do
634             putByte bh 0
635     put_ bh InfixR = do
636             putByte bh 1
637     put_ bh InfixN = do
638             putByte bh 2
639     get bh = do
640             h <- getByte bh
641             case h of
642               0 -> do return InfixL
643               1 -> do return InfixR
644               _ -> do return InfixN
645
646 instance Binary Fixity where
647     put_ bh (Fixity aa ab) = do
648             put_ bh aa
649             put_ bh ab
650     get bh = do
651           aa <- get bh
652           ab <- get bh
653           return (Fixity aa ab)
654
655 instance (Binary name) => Binary (IPName name) where
656     put_ bh (IPName aa) = put_ bh aa
657     get bh = do aa <- get bh
658                 return (IPName aa)
659
660 -------------------------------------------------------------------------
661 --              Types from: Demand
662 -------------------------------------------------------------------------
663
664 instance Binary DmdType where
665         -- Ignore DmdEnv when spitting out the DmdType
666   put bh (DmdType _ ds dr) = do p <- put bh ds; put bh dr; return (castBin p)
667   get bh = do ds <- get bh; dr <- get bh; return (DmdType emptyVarEnv ds dr)
668
669 instance Binary Demand where
670     put_ bh Top = do
671             putByte bh 0
672     put_ bh Abs = do
673             putByte bh 1
674     put_ bh (Call aa) = do
675             putByte bh 2
676             put_ bh aa
677     put_ bh (Eval ab) = do
678             putByte bh 3
679             put_ bh ab
680     put_ bh (Defer ac) = do
681             putByte bh 4
682             put_ bh ac
683     put_ bh (Box ad) = do
684             putByte bh 5
685             put_ bh ad
686     put_ bh Bot = do
687             putByte bh 6
688     get bh = do
689             h <- getByte bh
690             case h of
691               0 -> do return Top
692               1 -> do return Abs
693               2 -> do aa <- get bh
694                       return (Call aa)
695               3 -> do ab <- get bh
696                       return (Eval ab)
697               4 -> do ac <- get bh
698                       return (Defer ac)
699               5 -> do ad <- get bh
700                       return (Box ad)
701               _ -> do return Bot
702
703 instance Binary Demands where
704     put_ bh (Poly aa) = do
705             putByte bh 0
706             put_ bh aa
707     put_ bh (Prod ab) = do
708             putByte bh 1
709             put_ bh ab
710     get bh = do
711             h <- getByte bh
712             case h of
713               0 -> do aa <- get bh
714                       return (Poly aa)
715               _ -> do ab <- get bh
716                       return (Prod ab)
717
718 instance Binary DmdResult where
719     put_ bh TopRes = do
720             putByte bh 0
721     put_ bh RetCPR = do
722             putByte bh 1
723     put_ bh BotRes = do
724             putByte bh 2
725     get bh = do
726             h <- getByte bh
727             case h of
728               0 -> do return TopRes
729               1 -> do return RetCPR     -- Really use RetCPR even if -fcpr-off
730                                         -- The wrapper was generated for CPR in 
731                                         -- the imported module!
732               _ -> do return BotRes
733
734 instance Binary StrictSig where
735     put_ bh (StrictSig aa) = do
736             put_ bh aa
737     get bh = do
738           aa <- get bh
739           return (StrictSig aa)
740
741
742 -------------------------------------------------------------------------
743 --              Types from: CostCentre
744 -------------------------------------------------------------------------
745
746 instance Binary IsCafCC where
747     put_ bh CafCC = do
748             putByte bh 0
749     put_ bh NotCafCC = do
750             putByte bh 1
751     get bh = do
752             h <- getByte bh
753             case h of
754               0 -> do return CafCC
755               _ -> do return NotCafCC
756
757 instance Binary IsDupdCC where
758     put_ bh OriginalCC = do
759             putByte bh 0
760     put_ bh DupdCC = do
761             putByte bh 1
762     get bh = do
763             h <- getByte bh
764             case h of
765               0 -> do return OriginalCC
766               _ -> do return DupdCC
767
768 instance Binary CostCentre where
769     put_ bh NoCostCentre = do
770             putByte bh 0
771     put_ bh (NormalCC aa ab ac ad) = do
772             putByte bh 1
773             put_ bh aa
774             put_ bh ab
775             put_ bh ac
776             put_ bh ad
777     put_ bh (AllCafsCC ae) = do
778             putByte bh 2
779             put_ bh ae
780     get bh = do
781             h <- getByte bh
782             case h of
783               0 -> do return NoCostCentre
784               1 -> do aa <- get bh
785                       ab <- get bh
786                       ac <- get bh
787                       ad <- get bh
788                       return (NormalCC aa ab ac ad)
789               _ -> do ae <- get bh
790                       return (AllCafsCC ae)
791
792 -------------------------------------------------------------------------
793 --              IfaceTypes and friends
794 -------------------------------------------------------------------------
795
796 instance Binary IfaceBndr where
797     put_ bh (IfaceIdBndr aa) = do
798             putByte bh 0
799             put_ bh aa
800     put_ bh (IfaceTvBndr ab) = do
801             putByte bh 1
802             put_ bh ab
803     get bh = do
804             h <- getByte bh
805             case h of
806               0 -> do aa <- get bh
807                       return (IfaceIdBndr aa)
808               _ -> do ab <- get bh
809                       return (IfaceTvBndr ab)
810
811 instance Binary IfaceLetBndr where
812     put_ bh (IfLetBndr a b c) = do
813             put_ bh a
814             put_ bh b
815             put_ bh c
816     get bh = do a <- get bh
817                 b <- get bh
818                 c <- get bh
819                 return (IfLetBndr a b c)           
820
821 instance Binary IfaceType where
822     put_ bh (IfaceForAllTy aa ab) = do
823             putByte bh 0
824             put_ bh aa
825             put_ bh ab
826     put_ bh (IfaceTyVar ad) = do
827             putByte bh 1
828             put_ bh ad
829     put_ bh (IfaceAppTy ae af) = do
830             putByte bh 2
831             put_ bh ae
832             put_ bh af
833     put_ bh (IfaceFunTy ag ah) = do
834             putByte bh 3
835             put_ bh ag
836             put_ bh ah
837     put_ bh (IfacePredTy aq) = do
838             putByte bh 5
839             put_ bh aq
840
841         -- Simple compression for common cases of TyConApp
842     put_ bh (IfaceTyConApp IfaceIntTc  [])   = putByte bh 6
843     put_ bh (IfaceTyConApp IfaceCharTc [])   = putByte bh 7
844     put_ bh (IfaceTyConApp IfaceBoolTc [])   = putByte bh 8
845     put_ bh (IfaceTyConApp IfaceListTc [ty]) = do { putByte bh 9; put_ bh ty }
846         -- Unit tuple and pairs
847     put_ bh (IfaceTyConApp (IfaceTupTc Boxed 0) [])      = putByte bh 10
848     put_ bh (IfaceTyConApp (IfaceTupTc Boxed 2) [t1,t2]) = do { putByte bh 11; put_ bh t1; put_ bh t2 }
849         -- Kind cases
850     put_ bh (IfaceTyConApp IfaceLiftedTypeKindTc [])   = putByte bh 12
851     put_ bh (IfaceTyConApp IfaceOpenTypeKindTc [])     = putByte bh 13
852     put_ bh (IfaceTyConApp IfaceUnliftedTypeKindTc []) = putByte bh 14
853     put_ bh (IfaceTyConApp IfaceUbxTupleKindTc [])     = putByte bh 15
854     put_ bh (IfaceTyConApp IfaceArgTypeKindTc [])      = putByte bh 16
855
856         -- Generic cases
857
858     put_ bh (IfaceTyConApp (IfaceTc tc) tys) = do { putByte bh 18; put_ bh tc; put_ bh tys }
859     put_ bh (IfaceTyConApp tc tys)           = do { putByte bh 19; put_ bh tc; put_ bh tys }
860
861     get bh = do
862             h <- getByte bh
863             case h of
864               0 -> do aa <- get bh
865                       ab <- get bh
866                       return (IfaceForAllTy aa ab)
867               1 -> do ad <- get bh
868                       return (IfaceTyVar ad)
869               2 -> do ae <- get bh
870                       af <- get bh
871                       return (IfaceAppTy ae af)
872               3 -> do ag <- get bh
873                       ah <- get bh
874                       return (IfaceFunTy ag ah)
875               5 -> do ap <- get bh
876                       return (IfacePredTy ap)
877
878                 -- Now the special cases for TyConApp
879               6 -> return (IfaceTyConApp IfaceIntTc [])
880               7 -> return (IfaceTyConApp IfaceCharTc [])
881               8 -> return (IfaceTyConApp IfaceBoolTc [])
882               9 -> do { ty <- get bh; return (IfaceTyConApp IfaceListTc [ty]) }
883               10 -> return (IfaceTyConApp (IfaceTupTc Boxed 0) [])
884               11 -> do { t1 <- get bh; t2 <- get bh; return (IfaceTyConApp (IfaceTupTc Boxed 2) [t1,t2]) }
885               12 -> return (IfaceTyConApp IfaceLiftedTypeKindTc [])
886               13 -> return (IfaceTyConApp IfaceOpenTypeKindTc [])
887               14 -> return (IfaceTyConApp IfaceUnliftedTypeKindTc [])
888               15 -> return (IfaceTyConApp IfaceUbxTupleKindTc [])
889               16 -> return (IfaceTyConApp IfaceArgTypeKindTc [])
890
891               18 -> do { tc <- get bh; tys <- get bh; return (IfaceTyConApp (IfaceTc tc) tys) }
892               _  -> do { tc <- get bh; tys <- get bh; return (IfaceTyConApp tc tys) }
893
894 instance Binary IfaceTyCon where
895         -- Int,Char,Bool can't show up here because they can't not be saturated
896
897    put_ bh IfaceIntTc         = putByte bh 1
898    put_ bh IfaceBoolTc        = putByte bh 2
899    put_ bh IfaceCharTc        = putByte bh 3
900    put_ bh IfaceListTc        = putByte bh 4
901    put_ bh IfacePArrTc        = putByte bh 5
902    put_ bh IfaceLiftedTypeKindTc   = putByte bh 6
903    put_ bh IfaceOpenTypeKindTc     = putByte bh 7
904    put_ bh IfaceUnliftedTypeKindTc = putByte bh 8
905    put_ bh IfaceUbxTupleKindTc     = putByte bh 9
906    put_ bh IfaceArgTypeKindTc      = putByte bh 10
907    put_ bh (IfaceTupTc bx ar) = do { putByte bh 11; put_ bh bx; put_ bh ar }
908    put_ bh (IfaceTc ext)      = do { putByte bh 12; put_ bh ext }
909
910    get bh = do
911         h <- getByte bh
912         case h of
913           1 -> return IfaceIntTc
914           2 -> return IfaceBoolTc
915           3 -> return IfaceCharTc
916           4 -> return IfaceListTc
917           5 -> return IfacePArrTc
918           6 -> return IfaceLiftedTypeKindTc 
919           7 -> return IfaceOpenTypeKindTc 
920           8 -> return IfaceUnliftedTypeKindTc
921           9 -> return IfaceUbxTupleKindTc
922           10 -> return IfaceArgTypeKindTc
923           11 -> do { bx <- get bh; ar <- get bh; return (IfaceTupTc bx ar) }
924           _ -> do { ext <- get bh; return (IfaceTc ext) }
925
926 instance Binary IfacePredType where
927     put_ bh (IfaceClassP aa ab) = do
928             putByte bh 0
929             put_ bh aa
930             put_ bh ab
931     put_ bh (IfaceIParam ac ad) = do
932             putByte bh 1
933             put_ bh ac
934             put_ bh ad
935     put_ bh (IfaceEqPred ac ad) = do
936             putByte bh 2
937             put_ bh ac
938             put_ bh ad
939     get bh = do
940             h <- getByte bh
941             case h of
942               0 -> do aa <- get bh
943                       ab <- get bh
944                       return (IfaceClassP aa ab)
945               1 -> do ac <- get bh
946                       ad <- get bh
947                       return (IfaceIParam ac ad)
948               2 -> do ac <- get bh
949                       ad <- get bh
950                       return (IfaceEqPred ac ad)
951               _ -> panic ("get IfacePredType " ++ show h)
952
953 -------------------------------------------------------------------------
954 --              IfaceExpr and friends
955 -------------------------------------------------------------------------
956
957 instance Binary IfaceExpr where
958     put_ bh (IfaceLcl aa) = do
959             putByte bh 0
960             put_ bh aa
961     put_ bh (IfaceType ab) = do
962             putByte bh 1
963             put_ bh ab
964     put_ bh (IfaceTuple ac ad) = do
965             putByte bh 2
966             put_ bh ac
967             put_ bh ad
968     put_ bh (IfaceLam ae af) = do
969             putByte bh 3
970             put_ bh ae
971             put_ bh af
972     put_ bh (IfaceApp ag ah) = do
973             putByte bh 4
974             put_ bh ag
975             put_ bh ah
976 -- gaw 2004
977     put_ bh (IfaceCase ai aj al ak) = do
978             putByte bh 5
979             put_ bh ai
980             put_ bh aj
981 -- gaw 2004
982             put_ bh al
983             put_ bh ak
984     put_ bh (IfaceLet al am) = do
985             putByte bh 6
986             put_ bh al
987             put_ bh am
988     put_ bh (IfaceNote an ao) = do
989             putByte bh 7
990             put_ bh an
991             put_ bh ao
992     put_ bh (IfaceLit ap) = do
993             putByte bh 8
994             put_ bh ap
995     put_ bh (IfaceFCall as at) = do
996             putByte bh 9
997             put_ bh as
998             put_ bh at
999     put_ bh (IfaceExt aa) = do
1000             putByte bh 10
1001             put_ bh aa
1002     put_ bh (IfaceCast ie ico) = do
1003             putByte bh 11
1004             put_ bh ie
1005             put_ bh ico
1006     put_ bh (IfaceTick m ix) = do
1007             putByte bh 12
1008             put_ bh m
1009             put_ bh ix
1010     get bh = do
1011             h <- getByte bh
1012             case h of
1013               0 -> do aa <- get bh
1014                       return (IfaceLcl aa)
1015               1 -> do ab <- get bh
1016                       return (IfaceType ab)
1017               2 -> do ac <- get bh
1018                       ad <- get bh
1019                       return (IfaceTuple ac ad)
1020               3 -> do ae <- get bh
1021                       af <- get bh
1022                       return (IfaceLam ae af)
1023               4 -> do ag <- get bh
1024                       ah <- get bh
1025                       return (IfaceApp ag ah)
1026               5 -> do ai <- get bh
1027                       aj <- get bh
1028 -- gaw 2004
1029                       al <- get bh                   
1030                       ak <- get bh
1031 -- gaw 2004
1032                       return (IfaceCase ai aj al ak)
1033               6 -> do al <- get bh
1034                       am <- get bh
1035                       return (IfaceLet al am)
1036               7 -> do an <- get bh
1037                       ao <- get bh
1038                       return (IfaceNote an ao)
1039               8 -> do ap <- get bh
1040                       return (IfaceLit ap)
1041               9 -> do as <- get bh
1042                       at <- get bh
1043                       return (IfaceFCall as at)
1044               10 -> do aa <- get bh
1045                        return (IfaceExt aa)
1046               11 -> do ie <- get bh
1047                        ico <- get bh
1048                        return (IfaceCast ie ico)
1049               12 -> do m <- get bh
1050                        ix <- get bh
1051                        return (IfaceTick m ix)
1052               _ -> panic ("get IfaceExpr " ++ show h)
1053
1054 instance Binary IfaceConAlt where
1055     put_ bh IfaceDefault = do
1056             putByte bh 0
1057     put_ bh (IfaceDataAlt aa) = do
1058             putByte bh 1
1059             put_ bh aa
1060     put_ bh (IfaceTupleAlt ab) = do
1061             putByte bh 2
1062             put_ bh ab
1063     put_ bh (IfaceLitAlt ac) = do
1064             putByte bh 3
1065             put_ bh ac
1066     get bh = do
1067             h <- getByte bh
1068             case h of
1069               0 -> do return IfaceDefault
1070               1 -> do aa <- get bh
1071                       return (IfaceDataAlt aa)
1072               2 -> do ab <- get bh
1073                       return (IfaceTupleAlt ab)
1074               _ -> do ac <- get bh
1075                       return (IfaceLitAlt ac)
1076
1077 instance Binary IfaceBinding where
1078     put_ bh (IfaceNonRec aa ab) = do
1079             putByte bh 0
1080             put_ bh aa
1081             put_ bh ab
1082     put_ bh (IfaceRec ac) = do
1083             putByte bh 1
1084             put_ bh ac
1085     get bh = do
1086             h <- getByte bh
1087             case h of
1088               0 -> do aa <- get bh
1089                       ab <- get bh
1090                       return (IfaceNonRec aa ab)
1091               _ -> do ac <- get bh
1092                       return (IfaceRec ac)
1093
1094 instance Binary IfaceIdDetails where
1095     put_ bh IfVanillaId    = putByte bh 0
1096     put_ bh (IfRecSelId b) = do { putByte bh 1; put_ bh b }
1097     put_ bh IfDFunId       = putByte bh 2
1098     get bh = do
1099             h <- getByte bh
1100             case h of
1101               0 -> return IfVanillaId
1102               1 -> do a <- get bh
1103                       return (IfRecSelId a)
1104               _ -> return IfDFunId
1105
1106 instance Binary IfaceIdInfo where
1107     put_ bh NoInfo = putByte bh 0
1108     put_ bh (HasInfo i) = do
1109             putByte bh 1
1110             lazyPut bh i                        -- NB lazyPut
1111
1112     get bh = do
1113             h <- getByte bh
1114             case h of
1115               0 -> return NoInfo
1116               _ -> do info <- lazyGet bh        -- NB lazyGet
1117                       return (HasInfo info)
1118
1119 instance Binary IfaceInfoItem where
1120     put_ bh (HsArity aa) = do
1121             putByte bh 0
1122             put_ bh aa
1123     put_ bh (HsStrictness ab) = do
1124             putByte bh 1
1125             put_ bh ab
1126     put_ bh (HsUnfold ad) = do
1127             putByte bh 2
1128             put_ bh ad
1129     put_ bh (HsInline ad) = do
1130             putByte bh 3
1131             put_ bh ad
1132     put_ bh HsNoCafRefs = do
1133             putByte bh 4
1134     put_ bh (HsWorker ae af) = do
1135             putByte bh 5
1136             put_ bh ae
1137             put_ bh af
1138     get bh = do
1139             h <- getByte bh
1140             case h of
1141               0 -> do aa <- get bh
1142                       return (HsArity aa)
1143               1 -> do ab <- get bh
1144                       return (HsStrictness ab)
1145               2 -> do ad <- get bh
1146                       return (HsUnfold ad)
1147               3 -> do ad <- get bh
1148                       return (HsInline ad)
1149               4 -> do return HsNoCafRefs
1150               _ -> do ae <- get bh
1151                       af <- get bh
1152                       return (HsWorker ae af)
1153
1154 instance Binary IfaceNote where
1155     put_ bh (IfaceSCC aa) = do
1156             putByte bh 0
1157             put_ bh aa
1158     put_ bh IfaceInlineMe = do
1159             putByte bh 3
1160     put_ bh (IfaceCoreNote s) = do
1161             putByte bh 4
1162             put_ bh s
1163     get bh = do
1164             h <- getByte bh
1165             case h of
1166               0 -> do aa <- get bh
1167                       return (IfaceSCC aa)
1168               3 -> do return IfaceInlineMe
1169               4 -> do ac <- get bh
1170                       return (IfaceCoreNote ac)
1171               _ -> panic ("get IfaceNote " ++ show h)
1172
1173 -------------------------------------------------------------------------
1174 --              IfaceDecl and friends
1175 -------------------------------------------------------------------------
1176
1177 -- A bit of magic going on here: there's no need to store the OccName
1178 -- for a decl on the disk, since we can infer the namespace from the
1179 -- context; however it is useful to have the OccName in the IfaceDecl
1180 -- to avoid re-building it in various places.  So we build the OccName
1181 -- when de-serialising.
1182
1183 instance Binary IfaceDecl where
1184     put_ bh (IfaceId name ty details idinfo) = do
1185             putByte bh 0
1186             put_ bh (occNameFS name)
1187             put_ bh ty
1188             put_ bh details
1189             put_ bh idinfo
1190     put_ _ (IfaceForeign _ _) = 
1191         error "Binary.put_(IfaceDecl): IfaceForeign"
1192     put_ bh (IfaceData a1 a2 a3 a4 a5 a6 a7 a8) = do
1193             putByte bh 2
1194             put_ bh (occNameFS a1)
1195             put_ bh a2
1196             put_ bh a3
1197             put_ bh a4
1198             put_ bh a5
1199             put_ bh a6
1200             put_ bh a7
1201             put_ bh a8
1202     put_ bh (IfaceSyn a1 a2 a3 a4 a5) = do
1203             putByte bh 3
1204             put_ bh (occNameFS a1)
1205             put_ bh a2
1206             put_ bh a3
1207             put_ bh a4
1208             put_ bh a5
1209     put_ bh (IfaceClass a1 a2 a3 a4 a5 a6 a7) = do
1210             putByte bh 4
1211             put_ bh a1
1212             put_ bh (occNameFS a2)
1213             put_ bh a3
1214             put_ bh a4
1215             put_ bh a5
1216             put_ bh a6
1217             put_ bh a7
1218     get bh = do
1219             h <- getByte bh
1220             case h of
1221               0 -> do name    <- get bh
1222                       ty      <- get bh
1223                       details <- get bh
1224                       idinfo  <- get bh
1225                       occ <- return $! mkOccNameFS varName name
1226                       return (IfaceId occ ty details idinfo)
1227               1 -> error "Binary.get(TyClDecl): ForeignType"
1228               2 -> do
1229                     a1 <- get bh
1230                     a2 <- get bh
1231                     a3 <- get bh
1232                     a4 <- get bh
1233                     a5 <- get bh
1234                     a6 <- get bh
1235                     a7 <- get bh
1236                     a8 <- get bh
1237                     occ <- return $! mkOccNameFS tcName a1
1238                     return (IfaceData occ a2 a3 a4 a5 a6 a7 a8)
1239               3 -> do
1240                     a1 <- get bh
1241                     a2 <- get bh
1242                     a3 <- get bh
1243                     a4 <- get bh
1244                     a5 <- get bh
1245                     occ <- return $! mkOccNameFS tcName a1
1246                     return (IfaceSyn occ a2 a3 a4 a5)
1247               _ -> do
1248                     a1 <- get bh
1249                     a2 <- get bh
1250                     a3 <- get bh
1251                     a4 <- get bh
1252                     a5 <- get bh
1253                     a6 <- get bh
1254                     a7 <- get bh
1255                     occ <- return $! mkOccNameFS clsName a2
1256                     return (IfaceClass a1 occ a3 a4 a5 a6 a7)
1257
1258 instance Binary IfaceInst where
1259     put_ bh (IfaceInst cls tys dfun flag orph) = do
1260             put_ bh cls
1261             put_ bh tys
1262             put_ bh dfun
1263             put_ bh flag
1264             put_ bh orph
1265     get bh = do cls  <- get bh
1266                 tys  <- get bh
1267                 dfun <- get bh
1268                 flag <- get bh
1269                 orph <- get bh
1270                 return (IfaceInst cls tys dfun flag orph)
1271
1272 instance Binary IfaceFamInst where
1273     put_ bh (IfaceFamInst fam tys tycon) = do
1274             put_ bh fam
1275             put_ bh tys
1276             put_ bh tycon
1277     get bh = do fam   <- get bh
1278                 tys   <- get bh
1279                 tycon <- get bh
1280                 return (IfaceFamInst fam tys tycon)
1281
1282 instance Binary OverlapFlag where
1283     put_ bh NoOverlap  = putByte bh 0
1284     put_ bh OverlapOk  = putByte bh 1
1285     put_ bh Incoherent = putByte bh 2
1286     get bh = do h <- getByte bh
1287                 case h of
1288                   0 -> return NoOverlap
1289                   1 -> return OverlapOk
1290                   2 -> return Incoherent
1291                   _ -> panic ("get OverlapFlag " ++ show h)
1292
1293 instance Binary IfaceConDecls where
1294     put_ bh IfAbstractTyCon = putByte bh 0
1295     put_ bh IfOpenDataTyCon = putByte bh 1
1296     put_ bh (IfDataTyCon cs) = do { putByte bh 2
1297                                   ; put_ bh cs }
1298     put_ bh (IfNewTyCon c)  = do { putByte bh 3
1299                                   ; put_ bh c }
1300     get bh = do
1301             h <- getByte bh
1302             case h of
1303               0 -> return IfAbstractTyCon
1304               1 -> return IfOpenDataTyCon
1305               2 -> do cs <- get bh
1306                       return (IfDataTyCon cs)
1307               _ -> do aa <- get bh
1308                       return (IfNewTyCon aa)
1309
1310 instance Binary IfaceConDecl where
1311     put_ bh (IfCon a1 a2 a3 a4 a5 a6 a7 a8 a9 a10) = do
1312             put_ bh a1
1313             put_ bh a2
1314             put_ bh a3
1315             put_ bh a4
1316             put_ bh a5
1317             put_ bh a6
1318             put_ bh a7
1319             put_ bh a8
1320             put_ bh a9
1321             put_ bh a10
1322     get bh = do a1 <- get bh
1323                 a2 <- get bh
1324                 a3 <- get bh          
1325                 a4 <- get bh
1326                 a5 <- get bh
1327                 a6 <- get bh
1328                 a7 <- get bh
1329                 a8 <- get bh
1330                 a9 <- get bh
1331                 a10 <- get bh
1332                 return (IfCon a1 a2 a3 a4 a5 a6 a7 a8 a9 a10)
1333
1334 instance Binary IfaceClassOp where
1335    put_ bh (IfaceClassOp n def ty) = do 
1336         put_ bh (occNameFS n)
1337         put_ bh def     
1338         put_ bh ty
1339    get bh = do
1340         n <- get bh
1341         def <- get bh
1342         ty <- get bh
1343         occ <- return $! mkOccNameFS varName n
1344         return (IfaceClassOp occ def ty)
1345
1346 instance Binary IfaceRule where
1347     put_ bh (IfaceRule a1 a2 a3 a4 a5 a6 a7) = do
1348             put_ bh a1
1349             put_ bh a2
1350             put_ bh a3
1351             put_ bh a4
1352             put_ bh a5
1353             put_ bh a6
1354             put_ bh a7
1355     get bh = do
1356             a1 <- get bh
1357             a2 <- get bh
1358             a3 <- get bh
1359             a4 <- get bh
1360             a5 <- get bh
1361             a6 <- get bh
1362             a7 <- get bh
1363             return (IfaceRule a1 a2 a3 a4 a5 a6 a7)
1364
1365 instance Binary IfaceAnnotation where
1366     put_ bh (IfaceAnnotation a1 a2) = do
1367         put_ bh a1
1368         put_ bh a2
1369     get bh = do
1370         a1 <- get bh
1371         a2 <- get bh
1372         return (IfaceAnnotation a1 a2)
1373
1374 instance Binary name => Binary (AnnTarget name) where
1375     put_ bh (NamedTarget a) = do
1376         putByte bh 0
1377         put_ bh a
1378     put_ bh (ModuleTarget a) = do
1379         putByte bh 1
1380         put_ bh a
1381     get bh = do
1382         h <- getByte bh
1383         case h of
1384           0 -> do a <- get bh
1385                   return (NamedTarget a)
1386           _ -> do a <- get bh
1387                   return (ModuleTarget a)
1388
1389 instance Binary IfaceVectInfo where
1390     put_ bh (IfaceVectInfo a1 a2 a3) = do
1391             put_ bh a1
1392             put_ bh a2
1393             put_ bh a3
1394     get bh = do
1395             a1 <- get bh
1396             a2 <- get bh
1397             a3 <- get bh
1398             return (IfaceVectInfo a1 a2 a3)
1399
1400