diff --git a/ghc/lib/exts/Addr.lhs b/ghc/lib/exts/Addr.lhs index b9b789cb29c523645e6ae6f70536c2cf5248552a..19636d73eca67315674a783f5659282ced250e5f 100644 --- a/ghc/lib/exts/Addr.lhs +++ b/ghc/lib/exts/Addr.lhs @@ -10,6 +10,10 @@ module Addr , module Word , module Int , module Addr + + -- (non-standard) coercions + , addrToInt -- :: Addr -> Int + , intToAddr -- :: Int -> Addr ) where @@ -34,6 +38,16 @@ import Int ( indexInt8OffAddr, indexInt16OffAddr \end{code} +Coercing between machine ints and words + +\begin{code} +addrToInt :: Addr -> Int +addrToInt (A# a#) = I# (addr2Int# a#) + +intToAddr :: Int -> Addr +intToAddr (I# i#) = A# (int2Addr# i#) +\end{code} + Indexing immutable memory: \begin{code}