Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- type WordOff = Int
- type ByteOff = Int
- wordsToBytes :: Num a => DynFlags -> a -> a
- bytesToWordsRoundUp :: DynFlags -> ByteOff -> WordOff
- roundUpToWords :: DynFlags -> ByteOff -> ByteOff
- roundUpTo :: ByteOff -> ByteOff -> ByteOff
- data StgWord
- fromStgWord :: StgWord -> Integer
- toStgWord :: DynFlags -> Integer -> StgWord
- data StgHalfWord
- fromStgHalfWord :: StgHalfWord -> Integer
- toStgHalfWord :: DynFlags -> Integer -> StgHalfWord
- hALF_WORD_SIZE :: DynFlags -> ByteOff
- hALF_WORD_SIZE_IN_BITS :: DynFlags -> Int
- data SMRep
- type IsStatic = Bool
- data ClosureTypeInfo
- = Constr ConTagZ ConstrDescription
- | Fun FunArity ArgDescr
- | Thunk
- | ThunkSelector SelectorOffset
- | BlackHole
- | IndStatic
- data ArgDescr
- type Liveness = [Bool]
- type ConstrDescription = [Word8]
- mkHeapRep :: DynFlags -> IsStatic -> WordOff -> WordOff -> ClosureTypeInfo -> SMRep
- blackHoleRep :: SMRep
- indStaticRep :: SMRep
- mkStackRep :: [Bool] -> SMRep
- mkRTSRep :: Int -> SMRep -> SMRep
- arrPtrsRep :: DynFlags -> WordOff -> SMRep
- smallArrPtrsRep :: WordOff -> SMRep
- arrWordsRep :: DynFlags -> ByteOff -> SMRep
- isStaticRep :: SMRep -> IsStatic
- isConRep :: SMRep -> Bool
- isThunkRep :: SMRep -> Bool
- isFunRep :: SMRep -> Bool
- isStaticNoCafCon :: SMRep -> Bool
- isStackRep :: SMRep -> Bool
- heapClosureSizeW :: DynFlags -> SMRep -> WordOff
- fixedHdrSizeW :: DynFlags -> WordOff
- arrWordsHdrSize :: DynFlags -> ByteOff
- arrWordsHdrSizeW :: DynFlags -> WordOff
- arrPtrsHdrSize :: DynFlags -> ByteOff
- arrPtrsHdrSizeW :: DynFlags -> WordOff
- profHdrSize :: DynFlags -> WordOff
- thunkHdrSize :: DynFlags -> WordOff
- nonHdrSize :: DynFlags -> SMRep -> ByteOff
- nonHdrSizeW :: SMRep -> WordOff
- smallArrPtrsHdrSize :: DynFlags -> ByteOff
- smallArrPtrsHdrSizeW :: DynFlags -> WordOff
- hdrSize :: DynFlags -> SMRep -> ByteOff
- hdrSizeW :: DynFlags -> SMRep -> WordOff
- fixedHdrSize :: DynFlags -> ByteOff
- rtsClosureType :: SMRep -> Int
- rET_SMALL :: Int
- rET_BIG :: Int
- aRG_GEN :: Int
- aRG_GEN_BIG :: Int
- card :: DynFlags -> Int -> Int
- cardRoundUp :: DynFlags -> Int -> Int
- cardTableSizeB :: DynFlags -> Int -> ByteOff
- cardTableSizeW :: DynFlags -> Int -> WordOff
- pprWord8String :: [Word8] -> SDoc
- stringToWord8s :: String -> [Word8]
Words and bytes
wordsToBytes :: Num a => DynFlags -> a -> a Source #
Convert the given number of words to a number of bytes.
This function morally has type WordOff -> ByteOff
, but uses Num
a
to allow for overloading.
bytesToWordsRoundUp :: DynFlags -> ByteOff -> WordOff Source #
First round the given byte count up to a multiple of the machine's word size and then convert the result to words.
roundUpToWords :: DynFlags -> ByteOff -> ByteOff Source #
Round up the given byte count to the next byte count that's a multiple of the machine's word size.
Instances
Eq StgWord # | |
Bits StgWord # | |
Defined in SMRep (.&.) :: StgWord -> StgWord -> StgWord Source # (.|.) :: StgWord -> StgWord -> StgWord Source # xor :: StgWord -> StgWord -> StgWord Source # complement :: StgWord -> StgWord Source # shift :: StgWord -> Int -> StgWord Source # rotate :: StgWord -> Int -> StgWord Source # bit :: Int -> StgWord Source # setBit :: StgWord -> Int -> StgWord Source # clearBit :: StgWord -> Int -> StgWord Source # complementBit :: StgWord -> Int -> StgWord Source # testBit :: StgWord -> Int -> Bool Source # bitSizeMaybe :: StgWord -> Maybe Int Source # bitSize :: StgWord -> Int Source # isSigned :: StgWord -> Bool Source # shiftL :: StgWord -> Int -> StgWord Source # unsafeShiftL :: StgWord -> Int -> StgWord Source # shiftR :: StgWord -> Int -> StgWord Source # unsafeShiftR :: StgWord -> Int -> StgWord Source # rotateL :: StgWord -> Int -> StgWord Source # | |
Outputable StgWord # | |
fromStgWord :: StgWord -> Integer Source #
data StgHalfWord Source #
Instances
Eq StgHalfWord # | |
Defined in SMRep (==) :: StgHalfWord -> StgHalfWord -> Bool # (/=) :: StgHalfWord -> StgHalfWord -> Bool # | |
Outputable StgHalfWord # | |
fromStgHalfWord :: StgHalfWord -> Integer Source #
toStgHalfWord :: DynFlags -> Integer -> StgHalfWord Source #
hALF_WORD_SIZE :: DynFlags -> ByteOff Source #
hALF_WORD_SIZE_IN_BITS :: DynFlags -> Int Source #
Closure repesentation
A description of the layout of a closure. Corresponds directly to the closure types in includesrtsstorage/ClosureTypes.h.
True = This is a static closure. Affects how we garbage-collect it. Static closure have an extra static link field at the end. Constructors do not have a static variant; see Note [static constructors]
data ClosureTypeInfo Source #
Constr ConTagZ ConstrDescription | |
Fun FunArity ArgDescr | |
Thunk | |
ThunkSelector SelectorOffset | |
BlackHole | |
IndStatic |
Instances
Outputable ClosureTypeInfo # | |
type ConstrDescription = [Word8] Source #
Construction
blackHoleRep :: SMRep Source #
indStaticRep :: SMRep Source #
mkStackRep :: [Bool] -> SMRep Source #
smallArrPtrsRep :: WordOff -> SMRep Source #
Predicates
isStaticRep :: SMRep -> IsStatic Source #
isThunkRep :: SMRep -> Bool Source #
isStaticNoCafCon :: SMRep -> Bool Source #
isStackRep :: SMRep -> Bool Source #
Size-related things
fixedHdrSizeW :: DynFlags -> WordOff Source #
Size of a closure header (StgHeader in includesrtsstorage/Closures.h)
arrWordsHdrSize :: DynFlags -> ByteOff Source #
arrWordsHdrSizeW :: DynFlags -> WordOff Source #
arrPtrsHdrSize :: DynFlags -> ByteOff Source #
arrPtrsHdrSizeW :: DynFlags -> WordOff Source #
profHdrSize :: DynFlags -> WordOff Source #
Size of the profiling part of a closure header (StgProfHeader in includesrtsstorage/Closures.h)
thunkHdrSize :: DynFlags -> WordOff Source #
nonHdrSizeW :: SMRep -> WordOff Source #
fixedHdrSize :: DynFlags -> ByteOff Source #
RTS closure types
aRG_GEN_BIG :: Int Source #
Arrays
card :: DynFlags -> Int -> Int Source #
The byte offset into the card table of the card for a given element
cardRoundUp :: DynFlags -> Int -> Int Source #
Convert a number of elements to a number of cards, rounding up
Operations over [Word8] strings that don't belong here
pprWord8String :: [Word8] -> SDoc Source #
stringToWord8s :: String -> [Word8] Source #