Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
GHC.Exts.Heap.InfoTable.Types
Synopsis
- data StgInfoTable = StgInfoTable {}
- type EntryFunPtr = FunPtr (Ptr () -> IO (Ptr ()))
- type HalfWord = Word16
- type ItblCodes = Either [Word8] [Word32]
Documentation
data StgInfoTable Source #
This is a somewhat faithful representation of an info table. See http://ghc.haskell.org/trac/ghc/browser/includes/rts/storage/InfoTables.h for more details on this data structure.
Constructors
StgInfoTable | |
Instances
Show StgInfoTable Source # | |
Defined in GHC.Exts.Heap.InfoTable.Types Methods showsPrec :: Int -> StgInfoTable -> ShowS # show :: StgInfoTable -> String # showList :: [StgInfoTable] -> ShowS # | |
Generic StgInfoTable Source # | |
Defined in GHC.Exts.Heap.InfoTable.Types Associated Types type Rep StgInfoTable :: Type -> Type | |
Binary StgInfoTable | |
Defined in GHCi.Message | |
type Rep StgInfoTable Source # | |
Defined in GHC.Exts.Heap.InfoTable.Types type Rep StgInfoTable = D1 (MetaData "StgInfoTable" "GHC.Exts.Heap.InfoTable.Types" "ghc-lib-parser-8.8.0.20190424-GE9eVYN6Su0EmJadpPOubE" False) (C1 (MetaCons "StgInfoTable" PrefixI True) ((S1 (MetaSel (Just "entry") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe EntryFunPtr)) :*: (S1 (MetaSel (Just "ptrs") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 HalfWord) :*: S1 (MetaSel (Just "nptrs") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 HalfWord))) :*: (S1 (MetaSel (Just "tipe") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 ClosureType) :*: (S1 (MetaSel (Just "srtlen") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 HalfWord) :*: S1 (MetaSel (Just "code") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe ItblCodes)))))) |
type EntryFunPtr = FunPtr (Ptr () -> IO (Ptr ())) Source #