X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Fmain%2FConstants.lhs;h=97d6a3a12ae03492985872c1f47f234ef209fba6;hb=fc5cd5a56a47cfed705e0358193e5245a7805b83;hp=771b5132c830c615093da142380f6514e832ad86;hpb=1773a3e1dd9f724eee5b9678d14f50329707dbcb;p=ghc-hetmet.git diff --git a/ghc/compiler/main/Constants.lhs b/ghc/compiler/main/Constants.lhs index 771b513..97d6a3a 100644 --- a/ghc/compiler/main/Constants.lhs +++ b/ghc/compiler/main/Constants.lhs @@ -64,7 +64,10 @@ module Constants ( iNT64_SIZE, wORD64_SIZE, + wORD_SIZE, + bLOCK_SIZE, + bLOCK_SIZE_W, interfaceFileFormatVersion @@ -223,8 +226,15 @@ area is has available. rESERVED_C_STACK_BYTES = (RESERVED_C_STACK_BYTES :: Int) \end{code} +Size of a word, in bytes + +\begin{code} +wORD_SIZE = (WORD_SIZE :: Int) +\end{code} + Size of a storage manager block (in bytes). \begin{code} bLOCK_SIZE = (BLOCK_SIZE :: Int) +bLOCK_SIZE_W = (bLOCK_SIZE `div` wORD_SIZE :: Int) \end{code}