{-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE Rank2Types #-} {-# LANGUAGE ScopedTypeVariables #-} -- only for DB.Binary instances on Module {-# OPTIONS_GHC -fno-warn-orphans #-} ----------------------------------------------------------------------------- -- | -- Module : GHC.StgToJS.Object -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file LICENSE) -- -- Maintainer : Sylvain Henry -- Jeffrey Young -- Luite Stegeman -- Josh Meredith -- Stability : experimental -- -- Serialization/deserialization of binary .o files for the JavaScript backend -- The .o files contain dependency information and generated code. -- All strings are mapped to a central string table, which helps reduce -- file size and gives us efficient hash consing on read -- -- Binary intermediate JavaScript object files: -- serialized [Text] -> ([ClosureInfo], JStat) blocks -- -- file layout: -- - magic "GHCJSOBJ" -- - compiler version tag -- - module name -- - offsets of string table -- - dependencies -- - offset of the index -- - unit infos -- - index -- - string table -- ----------------------------------------------------------------------------- module GHC.StgToJS.Object ( putObject , getObjectHeader , getObjectBody , getObject , readObject , getObjectBlocks , readObjectBlocks , readObjectBlockInfo , isGlobalBlock , isJsObjectFile , Object(..) , IndexEntry(..) , LocatedBlockInfo (..) , BlockInfo (..) , BlockDeps (..) , BlockLocation (..) , BlockId , BlockIds , BlockRef (..) , ExportedFun (..) ) where import GHC.Prelude import Control.Monad import Data.Array import Data.Int import Data.IntSet (IntSet) import qualified Data.IntSet as IS import Data.List (sortOn) import Data.Map (Map) import qualified Data.Map as M import Data.Word import Data.Char import Foreign.Storable import Foreign.Marshal.Array import System.IO import GHC.Settings.Constants (hiVersion) import GHC.JS.Unsat.Syntax import qualified GHC.JS.Syntax as Sat import GHC.StgToJS.Types import GHC.Unit.Module import GHC.Data.FastString import GHC.Types.Unique.Map import GHC.Utils.Binary hiding (SymbolTable) import GHC.Utils.Outputable (ppr, Outputable, hcat, vcat, text, hsep) import GHC.Utils.Monad (mapMaybeM) -- | An object file data Object = Object { objModuleName :: !ModuleName -- ^ name of the module , objHandle :: !BinHandle -- ^ BinHandle that can be used to read the ObjBlocks , objPayloadOffset :: !(Bin ObjBlock) -- ^ Offset of the payload (units) , objBlockInfo :: !BlockInfo -- ^ Information about blocks , objIndex :: !Index -- ^ Block index: symbols per block and block offset in the object file } type BlockId = Int type BlockIds = IntSet -- | Information about blocks (linkable units) data BlockInfo = BlockInfo { bi_module :: !Module -- ^ Module they were generated from , bi_must_link :: !BlockIds -- ^ blocks that always need to be linked when this object is loaded (e.g. -- everything that contains initializer code or foreign exports) , bi_exports :: !(Map ExportedFun BlockId) -- ^ exported Haskell functions -> block , bi_block_deps :: !(Array BlockId BlockDeps) -- ^ dependencies of each block } data LocatedBlockInfo = LocatedBlockInfo { lbi_loc :: !BlockLocation -- ^ Where to find the blocks , lbi_info :: !BlockInfo -- ^ Block information } instance Outputable BlockInfo where ppr d = vcat [ hcat [ text "module: ", pprModule (bi_module d) ] , hcat [ text "exports: ", ppr (M.keys (bi_exports d)) ] ] -- | Where are the blocks data BlockLocation = ObjectFile FilePath -- ^ In an object file at path | ArchiveFile FilePath -- ^ In a Ar file at path | InMemory String Object -- ^ In memory instance Outputable BlockLocation where ppr = \case ObjectFile fp -> hsep [text "ObjectFile", text fp] ArchiveFile fp -> hsep [text "ArchiveFile", text fp] InMemory s o -> hsep [text "InMemory", text s, ppr (objModuleName o)] -- | A @BlockRef@ is a pair of a module and the index of the block in the -- object file data BlockRef = BlockRef { block_ref_mod :: !Module -- ^ Module , block_ref_idx :: !BlockId -- ^ Block index in the object file } deriving (Eq,Ord) data BlockDeps = BlockDeps { blockBlockDeps :: [BlockId] -- ^ dependencies on blocks in this object , blockFunDeps :: [ExportedFun] -- ^ dependencies on exported symbols in other objects -- , blockForeignExported :: [ExpFun] -- , blockForeignImported :: [ForeignRef] } -- | we use the convention that the first block (0) is a module-global block -- that's always included when something from the module is loaded. everything -- in a module implicitly depends on the global block. The global block itself -- can't have dependencies isGlobalBlock :: BlockId -> Bool isGlobalBlock n = n == 0 -- | Exported Functions data ExportedFun = ExportedFun { funModule :: !Module -- ^ The module containing the function , funSymbol :: !LexicalFastString -- ^ The function } deriving (Eq, Ord) instance Outputable ExportedFun where ppr (ExportedFun m f) = vcat [ hcat [ text "module: ", pprModule m ] , hcat [ text "symbol: ", ppr f ] ] -- | Write an ObjBlock, except for the top level symbols which are stored in the -- index putObjBlock :: BinHandle -> ObjBlock -> IO () putObjBlock bh (ObjBlock _syms b c d e f g) = do put_ bh b put_ bh c lazyPut bh d put_ bh e put_ bh f put_ bh g -- | Read an ObjBlock and associate it to the given symbols (that must have been -- read from the index) getObjBlock :: [FastString] -> BinHandle -> IO ObjBlock getObjBlock syms bh = do b <- get bh c <- get bh d <- lazyGet bh e <- get bh f <- get bh g <- get bh pure $ ObjBlock { oiSymbols = syms , oiClInfo = b , oiStatic = c , oiStat = d , oiRaw = e , oiFExports = f , oiFImports = g } -- | A tag that determines the kind of payload in the .o file. See -- @StgToJS.Linker.Arhive.magic@ for another kind of magic magic :: String magic = "GHCJSOBJ" -- | Serialized block indexes and their exported symbols -- (the first block is module-global) type Index = [IndexEntry] data IndexEntry = IndexEntry { idxSymbols :: ![FastString] -- ^ Symbols exported by a block , idxOffset :: !(Bin ObjBlock) -- ^ Offset of the block in the object file } -------------------------------------------------------------------------------- -- Essential oeprations on Objects -------------------------------------------------------------------------------- -- | Given a handle to a Binary payload, add the module, 'mod_name', its -- dependencies, 'deps', and its linkable units to the payload. putObject :: BinHandle -> ModuleName -- ^ module -> BlockInfo -- ^ block infos -> [ObjBlock] -- ^ linkable units and their symbols -> IO () putObject bh mod_name deps os = do forM_ magic (putByte bh . fromIntegral . ord) put_ bh (show hiVersion) -- we store the module name as a String because we don't want to have to -- decode the FastString table just to decode it when we're looking for an -- object in an archive. put_ bh (moduleNameString mod_name) (bh_fs, _bin_dict, put_dict) <- initFSTable bh forwardPut_ bh (const put_dict) $ do put_ bh_fs deps -- forward put the index forwardPut_ bh_fs (put_ bh_fs) $ do idx <- forM os $ \o -> do p <- tellBin bh_fs -- write units without their symbols putObjBlock bh_fs o -- return symbols and offset to store in the index pure (oiSymbols o,p) pure idx -- | Test if the object file is a JS object isJsObjectFile :: FilePath -> IO Bool isJsObjectFile fp = do let !n = length magic withBinaryFile fp ReadMode $ \hdl -> do allocaArray n $ \ptr -> do n' <- hGetBuf hdl ptr n if (n' /= n) then pure False else checkMagic (peekElemOff ptr) -- | Check magic checkMagic :: (Int -> IO Word8) -> IO Bool checkMagic get_byte = do let go_magic !i = \case [] -> pure True (e:es) -> get_byte i >>= \case c | fromIntegral (ord e) == c -> go_magic (i+1) es | otherwise -> pure False go_magic 0 magic -- | Parse object magic getCheckMagic :: BinHandle -> IO Bool getCheckMagic bh = checkMagic (const (getByte bh)) -- | Parse object header getObjectHeader :: BinHandle -> IO (Either String ModuleName) getObjectHeader bh = do is_magic <- getCheckMagic bh case is_magic of False -> pure (Left "invalid magic header") True -> do is_correct_version <- ((== hiVersion) . read) <$> get bh case is_correct_version of False -> pure (Left "invalid header version") True -> do mod_name <- get bh pure (Right (mkModuleName (mod_name))) -- | Parse object body. Must be called after a sucessful getObjectHeader getObjectBody :: BinHandle -> ModuleName -> IO Object getObjectBody bh0 mod_name = do -- Read the string table dict <- forwardGet bh0 (getDictionary bh0) let bh = setUserData bh0 $ noUserData { ud_get_fs = getDictFastString dict } block_info <- get bh idx <- forwardGet bh (get bh) payload_pos <- tellBin bh pure $ Object { objModuleName = mod_name , objHandle = bh , objPayloadOffset = payload_pos , objBlockInfo = block_info , objIndex = idx } -- | Parse object getObject :: BinHandle -> IO (Maybe Object) getObject bh = do getObjectHeader bh >>= \case Left _err -> pure Nothing Right mod_name -> Just <$> getObjectBody bh mod_name -- | Read object from file -- -- The object is still in memory after this (see objHandle). readObject :: FilePath -> IO (Maybe Object) readObject file = do bh <- readBinMem file getObject bh -- | Reads only the part necessary to get the block info readObjectBlockInfo :: FilePath -> IO (Maybe BlockInfo) readObjectBlockInfo file = do bh <- readBinMem file getObject bh >>= \case Just obj -> pure $! Just $! objBlockInfo obj Nothing -> pure Nothing -- | Get blocks in the object file, using the given filtering function getObjectBlocks :: Object -> BlockIds -> IO [ObjBlock] getObjectBlocks obj bids = mapMaybeM read_entry (zip (objIndex obj) [0..]) where bh = objHandle obj read_entry (IndexEntry syms offset,i) | IS.member i bids = do seekBin bh offset Just <$> getObjBlock syms bh | otherwise = pure Nothing -- | Read blocks in the object file, using the given filtering function readObjectBlocks :: FilePath -> BlockIds -> IO [ObjBlock] readObjectBlocks file bids = do readObject file >>= \case Nothing -> pure [] Just obj -> getObjectBlocks obj bids -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- putEnum :: Enum a => BinHandle -> a -> IO () putEnum bh x | n > 65535 = error ("putEnum: out of range: " ++ show n) | otherwise = put_ bh n where n = fromIntegral $ fromEnum x :: Word16 getEnum :: Enum a => BinHandle -> IO a getEnum bh = toEnum . fromIntegral <$> (get bh :: IO Word16) -- | Helper to convert Int to Int32 toI32 :: Int -> Int32 toI32 = fromIntegral -- | Helper to convert Int32 to Int fromI32 :: Int32 -> Int fromI32 = fromIntegral -------------------------------------------------------------------------------- -- Binary Instances -------------------------------------------------------------------------------- instance Binary IndexEntry where put_ bh (IndexEntry a b) = put_ bh a >> put_ bh b get bh = IndexEntry <$> get bh <*> get bh instance Binary BlockInfo where put_ bh (BlockInfo m r e b) = do put_ bh m put_ bh (map toI32 $ IS.toList r) put_ bh (map (\(x,y) -> (x, toI32 y)) $ M.toList e) put_ bh (elems b) get bh = BlockInfo <$> get bh <*> (IS.fromList . map fromI32 <$> get bh) <*> (M.fromList . map (\(x,y) -> (x, fromI32 y)) <$> get bh) <*> ((\xs -> listArray (0, length xs - 1) xs) <$> get bh) instance Binary BlockDeps where put_ bh (BlockDeps bbd bfd) = put_ bh bbd >> put_ bh bfd get bh = BlockDeps <$> get bh <*> get bh instance Binary ForeignJSRef where put_ bh (ForeignJSRef span pat safety cconv arg_tys res_ty) = put_ bh span >> put_ bh pat >> putEnum bh safety >> putEnum bh cconv >> put_ bh arg_tys >> put_ bh res_ty get bh = ForeignJSRef <$> get bh <*> get bh <*> getEnum bh <*> getEnum bh <*> get bh <*> get bh instance Binary ExpFun where put_ bh (ExpFun isIO args res) = put_ bh isIO >> put_ bh args >> put_ bh res get bh = ExpFun <$> get bh <*> get bh <*> get bh instance Binary Sat.JStat where put_ bh (Sat.DeclStat i e) = putByte bh 1 >> put_ bh i >> put_ bh e put_ bh (Sat.ReturnStat e) = putByte bh 2 >> put_ bh e put_ bh (Sat.IfStat e s1 s2) = putByte bh 3 >> put_ bh e >> put_ bh s1 >> put_ bh s2 put_ bh (Sat.WhileStat b e s) = putByte bh 4 >> put_ bh b >> put_ bh e >> put_ bh s put_ bh (Sat.ForStat is c s bd) = putByte bh 5 >> put_ bh is >> put_ bh c >> put_ bh s >> put_ bh bd put_ bh (Sat.ForInStat b i e s) = putByte bh 6 >> put_ bh b >> put_ bh i >> put_ bh e >> put_ bh s put_ bh (Sat.SwitchStat e ss s) = putByte bh 7 >> put_ bh e >> put_ bh ss >> put_ bh s put_ bh (Sat.TryStat s1 i s2 s3) = putByte bh 8 >> put_ bh s1 >> put_ bh i >> put_ bh s2 >> put_ bh s3 put_ bh (Sat.BlockStat xs) = putByte bh 9 >> put_ bh xs put_ bh (Sat.ApplStat e es) = putByte bh 10 >> put_ bh e >> put_ bh es put_ bh (Sat.UOpStat o e) = putByte bh 11 >> put_ bh o >> put_ bh e put_ bh (Sat.AssignStat e1 op e2) = putByte bh 12 >> put_ bh e1 >> put_ bh op >> put_ bh e2 put_ bh (Sat.LabelStat l s) = putByte bh 13 >> put_ bh l >> put_ bh s put_ bh (Sat.BreakStat ml) = putByte bh 14 >> put_ bh ml put_ bh (Sat.ContinueStat ml) = putByte bh 15 >> put_ bh ml put_ bh (Sat.FuncStat i is b) = putByte bh 16 >> put_ bh i >> put_ bh is >> put_ bh b get bh = getByte bh >>= \case 1 -> Sat.DeclStat <$> get bh <*> get bh 2 -> Sat.ReturnStat <$> get bh 3 -> Sat.IfStat <$> get bh <*> get bh <*> get bh 4 -> Sat.WhileStat <$> get bh <*> get bh <*> get bh 5 -> Sat.ForStat <$> get bh <*> get bh <*> get bh <*> get bh 6 -> Sat.ForInStat <$> get bh <*> get bh <*> get bh <*> get bh 7 -> Sat.SwitchStat <$> get bh <*> get bh <*> get bh 8 -> Sat.TryStat <$> get bh <*> get bh <*> get bh <*> get bh 9 -> Sat.BlockStat <$> get bh 10 -> Sat.ApplStat <$> get bh <*> get bh 11 -> Sat.UOpStat <$> get bh <*> get bh 12 -> Sat.AssignStat <$> get bh <*> get bh <*> get bh 13 -> Sat.LabelStat <$> get bh <*> get bh 14 -> Sat.BreakStat <$> get bh 15 -> Sat.ContinueStat <$> get bh 16 -> Sat.FuncStat <$> get bh <*> get bh <*> get bh n -> error ("Binary get bh JStat: invalid tag: " ++ show n) instance Binary Sat.JExpr where put_ bh (Sat.ValExpr v) = putByte bh 1 >> put_ bh v put_ bh (Sat.SelExpr e i) = putByte bh 2 >> put_ bh e >> put_ bh i put_ bh (Sat.IdxExpr e1 e2) = putByte bh 3 >> put_ bh e1 >> put_ bh e2 put_ bh (Sat.InfixExpr o e1 e2) = putByte bh 4 >> put_ bh o >> put_ bh e1 >> put_ bh e2 put_ bh (Sat.UOpExpr o e) = putByte bh 5 >> put_ bh o >> put_ bh e put_ bh (Sat.IfExpr e1 e2 e3) = putByte bh 6 >> put_ bh e1 >> put_ bh e2 >> put_ bh e3 put_ bh (Sat.ApplExpr e es) = putByte bh 7 >> put_ bh e >> put_ bh es get bh = getByte bh >>= \case 1 -> Sat.ValExpr <$> get bh 2 -> Sat.SelExpr <$> get bh <*> get bh 3 -> Sat.IdxExpr <$> get bh <*> get bh 4 -> Sat.InfixExpr <$> get bh <*> get bh <*> get bh 5 -> Sat.UOpExpr <$> get bh <*> get bh 6 -> Sat.IfExpr <$> get bh <*> get bh <*> get bh 7 -> Sat.ApplExpr <$> get bh <*> get bh n -> error ("Binary get bh UnsatExpr: invalid tag: " ++ show n) instance Binary Sat.JVal where put_ bh (Sat.JVar i) = putByte bh 1 >> put_ bh i put_ bh (Sat.JList es) = putByte bh 2 >> put_ bh es put_ bh (Sat.JDouble d) = putByte bh 3 >> put_ bh d put_ bh (Sat.JInt i) = putByte bh 4 >> put_ bh i put_ bh (Sat.JStr xs) = putByte bh 5 >> put_ bh xs put_ bh (Sat.JRegEx xs) = putByte bh 6 >> put_ bh xs put_ bh (Sat.JHash m) = putByte bh 7 >> put_ bh (sortOn (LexicalFastString . fst) $ nonDetUniqMapToList m) put_ bh (Sat.JFunc is s) = putByte bh 8 >> put_ bh is >> put_ bh s get bh = getByte bh >>= \case 1 -> Sat.JVar <$> get bh 2 -> Sat.JList <$> get bh 3 -> Sat.JDouble <$> get bh 4 -> Sat.JInt <$> get bh 5 -> Sat.JStr <$> get bh 6 -> Sat.JRegEx <$> get bh 7 -> Sat.JHash . listToUniqMap <$> get bh 8 -> Sat.JFunc <$> get bh <*> get bh n -> error ("Binary get bh Sat.JVal: invalid tag: " ++ show n) instance Binary Ident where put_ bh (TxtI xs) = put_ bh xs get bh = TxtI <$> get bh instance Binary ClosureInfo where put_ bh (ClosureInfo v regs name layo typ static) = do put_ bh v >> put_ bh regs >> put_ bh name >> put_ bh layo >> put_ bh typ >> put_ bh static get bh = ClosureInfo <$> get bh <*> get bh <*> get bh <*> get bh <*> get bh <*> get bh instance Binary JSFFIType where put_ bh = putEnum bh get bh = getEnum bh instance Binary VarType where put_ bh = putEnum bh get bh = getEnum bh instance Binary CIRegs where put_ bh CIRegsUnknown = putByte bh 1 put_ bh (CIRegs skip types) = putByte bh 2 >> put_ bh skip >> put_ bh types get bh = getByte bh >>= \case 1 -> pure CIRegsUnknown 2 -> CIRegs <$> get bh <*> get bh n -> error ("Binary get bh CIRegs: invalid tag: " ++ show n) instance Binary Sat.Op where put_ bh = putEnum bh get bh = getEnum bh instance Binary Sat.UOp where put_ bh = putEnum bh get bh = getEnum bh instance Binary Sat.AOp where put_ bh = putEnum bh get bh = getEnum bh -- 16 bit sizes should be enough... instance Binary CILayout where put_ bh CILayoutVariable = putByte bh 1 put_ bh (CILayoutUnknown size) = putByte bh 2 >> put_ bh size put_ bh (CILayoutFixed size types) = putByte bh 3 >> put_ bh size >> put_ bh types get bh = getByte bh >>= \case 1 -> pure CILayoutVariable 2 -> CILayoutUnknown <$> get bh 3 -> CILayoutFixed <$> get bh <*> get bh n -> error ("Binary get bh CILayout: invalid tag: " ++ show n) instance Binary CIStatic where put_ bh (CIStaticRefs refs) = putByte bh 1 >> put_ bh refs get bh = getByte bh >>= \case 1 -> CIStaticRefs <$> get bh n -> error ("Binary get bh CIStatic: invalid tag: " ++ show n) instance Binary CIType where put_ bh (CIFun arity regs) = putByte bh 1 >> put_ bh arity >> put_ bh regs put_ bh CIThunk = putByte bh 2 put_ bh (CICon conTag) = putByte bh 3 >> put_ bh conTag put_ bh CIPap = putByte bh 4 put_ bh CIBlackhole = putByte bh 5 put_ bh CIStackFrame = putByte bh 6 get bh = getByte bh >>= \case 1 -> CIFun <$> get bh <*> get bh 2 -> pure CIThunk 3 -> CICon <$> get bh 4 -> pure CIPap 5 -> pure CIBlackhole 6 -> pure CIStackFrame n -> error ("Binary get bh CIType: invalid tag: " ++ show n) instance Binary ExportedFun where put_ bh (ExportedFun modu symb) = put_ bh modu >> put_ bh symb get bh = ExportedFun <$> get bh <*> get bh instance Binary StaticInfo where put_ bh (StaticInfo ident val cc) = put_ bh ident >> put_ bh val >> put_ bh cc get bh = StaticInfo <$> get bh <*> get bh <*> get bh instance Binary StaticVal where put_ bh (StaticFun f args) = putByte bh 1 >> put_ bh f >> put_ bh args put_ bh (StaticThunk t) = putByte bh 2 >> put_ bh t put_ bh (StaticUnboxed u) = putByte bh 3 >> put_ bh u put_ bh (StaticData dc args) = putByte bh 4 >> put_ bh dc >> put_ bh args put_ bh (StaticList xs t) = putByte bh 5 >> put_ bh xs >> put_ bh t get bh = getByte bh >>= \case 1 -> StaticFun <$> get bh <*> get bh 2 -> StaticThunk <$> get bh 3 -> StaticUnboxed <$> get bh 4 -> StaticData <$> get bh <*> get bh 5 -> StaticList <$> get bh <*> get bh n -> error ("Binary get bh StaticVal: invalid tag " ++ show n) instance Binary StaticUnboxed where put_ bh (StaticUnboxedBool b) = putByte bh 1 >> put_ bh b put_ bh (StaticUnboxedInt i) = putByte bh 2 >> put_ bh i put_ bh (StaticUnboxedDouble d) = putByte bh 3 >> put_ bh d put_ bh (StaticUnboxedString str) = putByte bh 4 >> put_ bh str put_ bh (StaticUnboxedStringOffset str) = putByte bh 5 >> put_ bh str get bh = getByte bh >>= \case 1 -> StaticUnboxedBool <$> get bh 2 -> StaticUnboxedInt <$> get bh 3 -> StaticUnboxedDouble <$> get bh 4 -> StaticUnboxedString <$> get bh 5 -> StaticUnboxedStringOffset <$> get bh n -> error ("Binary get bh StaticUnboxed: invalid tag " ++ show n) instance Binary StaticArg where put_ bh (StaticObjArg i) = putByte bh 1 >> put_ bh i put_ bh (StaticLitArg p) = putByte bh 2 >> put_ bh p put_ bh (StaticConArg c args) = putByte bh 3 >> put_ bh c >> put_ bh args get bh = getByte bh >>= \case 1 -> StaticObjArg <$> get bh 2 -> StaticLitArg <$> get bh 3 -> StaticConArg <$> get bh <*> get bh n -> error ("Binary get bh StaticArg: invalid tag " ++ show n) instance Binary StaticLit where put_ bh (BoolLit b) = putByte bh 1 >> put_ bh b put_ bh (IntLit i) = putByte bh 2 >> put_ bh i put_ bh NullLit = putByte bh 3 put_ bh (DoubleLit d) = putByte bh 4 >> put_ bh d put_ bh (StringLit t) = putByte bh 5 >> put_ bh t put_ bh (BinLit b) = putByte bh 6 >> put_ bh b put_ bh (LabelLit b t) = putByte bh 7 >> put_ bh b >> put_ bh t get bh = getByte bh >>= \case 1 -> BoolLit <$> get bh 2 -> IntLit <$> get bh 3 -> pure NullLit 4 -> DoubleLit <$> get bh 5 -> StringLit <$> get bh 6 -> BinLit <$> get bh 7 -> LabelLit <$> get bh <*> get bh n -> error ("Binary get bh StaticLit: invalid tag " ++ show n)