[project @ 2001-08-04 06:11:24 by ken]
[ghc-hetmet.git] / ghc / lib / std / PrelWord.lhs
index a09a0d1..0a8bc1d 100644 (file)
 %
-% (c) The University of Glasgow, 1997-2000
+% (c) The University of Glasgow, 1997-2001
 %
 \section[PrelWord]{Module @PrelWord@}
 
 \begin{code}
-{-# OPTIONS -monly-3-regs #-}
+{-# OPTIONS -fno-implicit-prelude #-}
 
 #include "MachDeps.h"
 
 module PrelWord (
-       Word(..), Word8(..), Word16(..), Word32(..), Word64(..),
-
-        -- SUP: deprecated in the new FFI, subsumed by fromIntegral
-       , intToWord8      -- :: Int     -> Word8
-       , intToWord16     -- :: Int     -> Word16
-       , intToWord32     -- :: Int     -> Word32
-       , intToWord64     -- :: Int     -> Word64
-
-       , integerToWord8  -- :: Integer -> Word8
-       , integerToWord16 -- :: Integer -> Word16
-       , integerToWord32 -- :: Integer -> Word32
-       , integerToWord64 -- :: Integer -> Word64
-
-       , word8ToInt      -- :: Word8   -> Int
-        , word8ToInteger  -- :: Word8   -> Integer
-       , word8ToWord16   -- :: Word8   -> Word16
-       , word8ToWord32   -- :: Word8   -> Word32
-       , word8ToWord64   -- :: Word8   -> Word64
-
-       , word16ToInt     -- :: Word16  -> Int
-        , word16ToInteger -- :: Word16  -> Integer
-       , word16ToWord8   -- :: Word16  -> Word8
-       , word16ToWord32  -- :: Word16  -> Word32
-       , word16ToWord64  -- :: Word16  -> Word64
-
-       , word32ToInt     -- :: Word32  -> Int
-        , word32ToInteger -- :: Word32  -> Integer
-       , word32ToWord8   -- :: Word32  -> Word8
-       , word32ToWord16  -- :: Word32  -> Word16
-       , word32ToWord64  -- :: Word32  -> Word64
-
-       , word64ToInt     -- :: Word64  -> Int
-        , word64ToInteger -- :: Word64  -> Integer
-       , word64ToWord8   -- :: Word64  -> Word8
-       , word64ToWord16  -- :: Word64  -> Word16
-       , word64ToWord32  -- :: Word64  -> Word32
-
-       -- internal stuff
-       , wordToWord8#, wordToWord16#, wordToWord32#, wordToWord64#
-
-       , word64ToInt64#, int64ToWord64#
-       , wordToWord64#, word64ToWord#
-
-       , toEnumError, fromEnumError, succError, predError, divZeroError
-  ) where
+    Word(..), Word8(..), Word16(..), Word32(..), Word64(..),
+    divZeroError, toEnumError, fromEnumError, succError, predError)
+    where
 
-import PrelArr
-import PrelBits
-import PrelRead
+import PrelBase
 import PrelEnum
-import PrelReal
 import PrelNum
-import PrelBase
+import PrelReal
+import PrelRead
+import PrelArr
+import PrelBits
+import PrelShow
+
+------------------------------------------------------------------------
+-- Helper functions
+------------------------------------------------------------------------
 
--- ---------------------------------------------------------------------------
--- The Word Type
--- ---------------------------------------------------------------------------
+{-# NOINLINE divZeroError #-}
+divZeroError :: (Show a) => String -> a -> b
+divZeroError meth x =
+    error $ "Integral." ++ meth ++ ": divide by 0 (" ++ show x ++ " / 0)"
+
+{-# NOINLINE toEnumError #-}
+toEnumError :: (Show a) => String -> Int -> (a,a) -> b
+toEnumError inst_ty i bnds =
+    error $ "Enum.toEnum{" ++ inst_ty ++ "}: tag (" ++
+            show i ++
+            ") is outside of bounds " ++
+            show bnds
+
+{-# NOINLINE fromEnumError #-}
+fromEnumError :: (Show a) => String -> a -> b
+fromEnumError inst_ty x =
+    error $ "Enum.fromEnum{" ++ inst_ty ++ "}: value (" ++
+            show x ++
+            ") is outside of Int's bounds " ++
+            show (minBound::Int, maxBound::Int)
+
+{-# NOINLINE succError #-}
+succError :: String -> a
+succError inst_ty =
+    error $ "Enum.succ{" ++ inst_ty ++ "}: tried to take `succ' of maxBound"
+
+{-# NOINLINE predError #-}
+predError :: String -> a
+predError inst_ty =
+    error $ "Enum.pred{" ++ inst_ty ++ "}: tried to take `pred' of minBound"
+
+------------------------------------------------------------------------
+-- type Word
+------------------------------------------------------------------------
+
+-- A Word is an unsigned integral type, with the same size as Int.
 
--- A Word is an unsigned integral type, with the same number of bits as Int.
 data Word = W# Word# deriving (Eq, Ord)
 
 instance CCallable Word
 instance CReturnable Word
 
--- ---------------------------------------------------------------------------
--- Coercion functions (DEPRECATED)
--- ---------------------------------------------------------------------------
-
-intToWord8      :: Int     -> Word8
-intToWord16     :: Int     -> Word16
-intToWord32     :: Int     -> Word32
-intToWord64     :: Int     -> Word64
-
-integerToWord8  :: Integer -> Word8
-integerToWord16 :: Integer -> Word16
-integerToWord32 :: Integer -> Word32
-integerToWord64 :: Integer -> Word64
-
-word8ToInt      :: Word8   -> Int
-word8ToInteger  :: Word8   -> Integer
-word8ToWord16   :: Word8   -> Word16
-word8ToWord32   :: Word8   -> Word32
-word8ToWord64   :: Word8   -> Word64
-
-word16ToInt     :: Word16  -> Int
-word16ToInteger :: Word16  -> Integer
-word16ToWord8   :: Word16  -> Word8
-word16ToWord32  :: Word16  -> Word32
-word16ToWord64  :: Word16  -> Word64
-
-word32ToInt     :: Word32  -> Int
-word32ToInteger :: Word32  -> Integer
-word32ToWord8   :: Word32  -> Word8
-word32ToWord16  :: Word32  -> Word16
-word32ToWord64  :: Word32  -> Word64
-
-word64ToInt     :: Word64  -> Int
-word64ToInteger :: Word64  -> Integer
-word64ToWord8   :: Word64  -> Word8
-word64ToWord16  :: Word64  -> Word16
-word64ToWord32  :: Word64  -> Word32
-
-intToWord8      = word32ToWord8   . intToWord32
-intToWord16     = word32ToWord16  . intToWord32
-
-integerToWord8  = fromInteger
-integerToWord16 = fromInteger
-
-word8ToInt      = word32ToInt     . word8ToWord32
-word8ToInteger  = word32ToInteger . word8ToWord32
-
-word16ToInt     = word32ToInt     . word16ToWord32
-word16ToInteger = word32ToInteger . word16ToWord32
-
-#if WORD_SIZE_IN_BYTES > 4
-intToWord32 (I# x)   = W32# ((int2Word# x) `and#` (case (maxBound::Word32) of W32# x# -> x#))
+instance Show Word where
+    showsPrec p x = showsPrec p (toInteger x)
+
+instance Num Word where
+    (W# x#) + (W# y#)      = W# (x# `plusWord#` y#)
+    (W# x#) - (W# y#)      = W# (x# `minusWord#` y#)
+    (W# x#) * (W# y#)      = W# (x# `timesWord#` y#)
+    negate (W# x#)         = W# (int2Word# (negateInt# (word2Int# x#)))
+    abs x                  = x
+    signum 0               = 0
+    signum _               = 1
+    fromInteger (S# i#)    = W# (int2Word# i#)
+    fromInteger (J# s# d#) = W# (integer2Word# s# d#)
+
+instance Real Word where
+    toRational x = toInteger x % 1
+
+instance Enum Word where
+    succ x
+        | x /= maxBound = x + 1
+        | otherwise     = succError "Word"
+    pred x
+        | x /= minBound = x - 1
+        | otherwise     = predError "Word"
+    toEnum i@(I# i#)
+        | i >= 0        = W# (int2Word# i#)
+        | otherwise     = toEnumError "Word" i (minBound::Word, maxBound::Word)
+    fromEnum x@(W# x#)
+        | x <= fromIntegral (maxBound::Int)
+                        = I# (word2Int# x#)
+        | otherwise     = fromEnumError "Word" x
+    enumFrom            = integralEnumFrom
+    enumFromThen        = integralEnumFromThen
+    enumFromTo          = integralEnumFromTo
+    enumFromThenTo      = integralEnumFromThenTo
+
+instance Integral Word where
+    quot    x@(W# x#) y@(W# y#)
+        | y /= 0                = W# (x# `quotWord#` y#)
+        | otherwise             = divZeroError "quot{Word}" x
+    rem     x@(W# x#) y@(W# y#)
+        | y /= 0                = W# (x# `remWord#` y#)
+        | otherwise             = divZeroError "rem{Word}" x
+    div     x@(W# x#) y@(W# y#)
+        | y /= 0                = W# (x# `quotWord#` y#)
+        | otherwise             = divZeroError "div{Word}" x
+    mod     x@(W# x#) y@(W# y#)
+        | y /= 0                = W# (x# `remWord#` y#)
+        | otherwise             = divZeroError "mod{Word}" x
+    quotRem x@(W# x#) y@(W# y#)
+        | y /= 0                = (W# (x# `quotWord#` y#), W# (x# `remWord#` y#))
+        | otherwise             = divZeroError "quotRem{Word}" x
+    divMod  x@(W# x#) y@(W# y#)
+        | y /= 0                = (W# (x# `quotWord#` y#), W# (x# `remWord#` y#))
+        | otherwise             = divZeroError "divMod{Word}" x
+    toInteger (W# x#)
+        | i# >=# 0#             = S# i#
+        | otherwise             = case word2Integer# x# of (# s, d #) -> J# s d
+        where
+        i# = word2Int# x#
+
+instance Bounded Word where
+    minBound = 0
+#if WORD_SIZE_IN_BYTES == 4
+    maxBound = 0xFFFFFFFF
 #else
-intToWord32 (I# x)   = W32# (int2Word# x)
+    maxBound = 0xFFFFFFFFFFFFFFFF
 #endif
 
-word32ToInt (W32# x) = I#   (word2Int# x)
-
-word2Integer :: Word# -> Integer
-word2Integer w | i >=# 0#   = S# i
-               | otherwise = case word2Integer# w of
-                                (# s, d #) -> J# s d
-   where i = word2Int# w
-
-word32ToInteger (W32# x) = word2Integer x
-integerToWord32 = fromInteger
-
------------------------------------------------------------------------------
--- The following rules for fromIntegral remove the need to export specialized
--- conversion functions.
------------------------------------------------------------------------------
+instance Ix Word where
+    range (m,n)       = [m..n]
+    index b@(m,_) i
+        | inRange b i = fromIntegral (i - m)
+        | otherwise   = indexError b i "Word"
+    inRange (m,n) i   = m <= i && i <= n
+
+instance Read Word where
+    readsPrec p s = [(fromInteger x, r) | (x, r) <- readsPrec p s]
+
+instance Bits Word where
+    (W# x#) .&.   (W# y#)    = W# (x# `and#` y#)
+    (W# x#) .|.   (W# y#)    = W# (x# `or#`  y#)
+    (W# x#) `xor` (W# y#)    = W# (x# `xor#` y#)
+    complement (W# x#)       = W# (x# `xor#` mb#) where W# mb# = maxBound
+    (W# x#) `shift` (I# i#)
+        | i# >=# 0#          = W# (x# `shiftL#` i#)
+        | otherwise          = W# (x# `shiftRL#` negateInt# i#)
+#if WORD_SIZE_IN_BYTES == 4
+    (W# x#) `rotate` (I# i#) = W# ((x# `shiftL#` i'#) `or#` (x# `shiftRL#` (32# -# i'#)))
+        where
+        i'# = word2Int# (int2Word# i# `and#` int2Word# 31#)
+#else
+    (W# x#) `rotate` (I# i#) = W# ((x# `shiftL#` i'#) `or#` (x# `shiftRL#` (64# -# i'#)))
+        where
+        i'# = word2Int# (int2Word# i# `and#` int2Word# 63#)
+#endif
+    bitSize  _               = WORD_SIZE_IN_BYTES * 8
+    isSigned _               = False
 
 {-# RULES
-   "fromIntegral/Int->Word8"        fromIntegral = intToWord8;
-   "fromIntegral/Int->Word16"       fromIntegral = intToWord16;
-   "fromIntegral/Int->Word32"       fromIntegral = intToWord32;
-   "fromIntegral/Int->Word64"       fromIntegral = intToWord64;
-
-   "fromIntegral/Integer->Word8"    fromIntegral = integerToWord8;
-   "fromIntegral/Integer->Word16"   fromIntegral = integerToWord16;
-   "fromIntegral/Integer->Word32"   fromIntegral = integerToWord32;
-   "fromIntegral/Integer->Word64"   fromIntegral = integerToWord64;
-
-   "fromIntegral/Word8->Int"        fromIntegral = word8ToInt;
-   "fromIntegral/Word8->Integer"    fromIntegral = word8ToInteger;
-   "fromIntegral/Word8->Word16"     fromIntegral = word8ToWord16;
-   "fromIntegral/Word8->Word32"     fromIntegral = word8ToWord32;
-   "fromIntegral/Word8->Word64"     fromIntegral = word8ToWord64;
-
-   "fromIntegral/Word16->Int"       fromIntegral = word16ToInt;
-   "fromIntegral/Word16->Integer"   fromIntegral = word16ToInteger;
-   "fromIntegral/Word16->Word8"     fromIntegral = word16ToWord8;
-   "fromIntegral/Word16->Word32"    fromIntegral = word16ToWord32;
-   "fromIntegral/Word16->Word64"    fromIntegral = word16ToWord64;
-
-   "fromIntegral/Word32->Int"       fromIntegral = word32ToInt;
-   "fromIntegral/Word32->Integer"   fromIntegral = word32ToInteger;
-   "fromIntegral/Word32->Word8"     fromIntegral = word32ToWord8;
-   "fromIntegral/Word32->Word16"    fromIntegral = word32ToWord16;
-   "fromIntegral/Word32->Word64"    fromIntegral = word32ToWord64;
-
-   "fromIntegral/Word64->Int"       fromIntegral = word64ToInt;
-   "fromIntegral/Word64->Integer"   fromIntegral = word64ToInteger;
-   "fromIntegral/Word64->Word8"     fromIntegral = word64ToWord8;
-   "fromIntegral/Word64->Word16"    fromIntegral = word64ToWord16;
-   "fromIntegral/Word64->Word32"    fromIntegral = word64ToWord32
- #-}
-
-\end{code}
+"fromIntegral/Int->Word"  fromIntegral = \(I# x#) -> W# (int2Word# x#)
+"fromIntegral/Word->Int"  fromIntegral = \(W# x#) -> I# (word2Int# x#)
+"fromIntegral/Word->Word" fromIntegral = id :: Word -> Word
+  #-}
 
-\subsection[Word8]{The @Word8@ interface}
+------------------------------------------------------------------------
+-- type Word8
+------------------------------------------------------------------------
 
+-- Word8 is represented in the same way as Word. Operations may assume
+-- and must ensure that it holds only values from its logical range.
 
-The byte type @Word8@ is represented in the Haskell
-heap by boxing up a 32-bit quantity, @Word#@. An invariant
-for this representation is that the higher 24 bits are
-*always* zeroed out. A consequence of this is that
-operations that could possibly overflow have to mask
-out the top three bytes before building the resulting @Word8@.
-
-\begin{code}
-data Word8  = W8# Word#
+data Word8 = W8# Word# deriving (Eq, Ord)
 
 instance CCallable Word8
 instance CReturnable Word8
 
-word8ToWord32 (W8#  x) = W32# x
-word8ToWord16 (W8#  x) = W16# x
-word32ToWord8 (W32# x) = W8# (wordToWord8# x)
-
--- mask out upper three bytes.
-intToWord8# :: Int# -> Word#
-intToWord8# i# = (int2Word# i#) `and#` (int2Word# 0xff#)
-
-wordToWord8# :: Word# -> Word#
-wordToWord8# w# = w# `and#` (int2Word# 0xff#)
-
-instance Eq  Word8     where 
-  (W8# x) == (W8# y) = x `eqWord#` y
-  (W8# x) /= (W8# y) = x `neWord#` y
-
-instance Ord Word8     where 
-  compare (W8# x#) (W8# y#) = compareWord# x# y#
-  (<)  (W8# x) (W8# y)      = x `ltWord#` y
-  (<=) (W8# x) (W8# y)      = x `leWord#` y
-  (>=) (W8# x) (W8# y)      = x `geWord#` y
-  (>)  (W8# x) (W8# y)      = x `gtWord#` y
-  max x@(W8# x#) y@(W8# y#) = 
-     case (compareWord# x# y#) of { LT -> y ; EQ -> x ; GT -> x }
-  min x@(W8# x#) y@(W8# y#) =
-     case (compareWord# x# y#) of { LT -> x ; EQ -> x ; GT -> y }
-
--- Helper function, used by Ord Word* instances.
-compareWord# :: Word# -> Word# -> Ordering
-compareWord# x# y# 
- | x# `ltWord#` y# = LT
- | x# `eqWord#` y# = EQ
- | otherwise       = GT
+instance Show Word8 where
+    showsPrec p x = showsPrec p (fromIntegral x :: Int)
 
 instance Num Word8 where
-  (W8# x) + (W8# y) = 
-      W8# (intToWord8# (word2Int# x +# word2Int# y))
-  (W8# x) - (W8# y) = 
-      W8# (intToWord8# (word2Int# x -# word2Int# y))
-  (W8# x) * (W8# y) = 
-      W8# (intToWord8# (word2Int# x *# word2Int# y))
-  negate w@(W8# x)  = 
-     if x' ==# 0# 
-      then w
-      else W8# (int2Word# (0x100# -# x'))
-     where
-      x' = word2Int# x
-  abs x         = x
-  signum        = signumReal
-  fromInteger (S# i#)    = W8# (wordToWord8# (int2Word# i#))
-  fromInteger (J# s# d#) = W8# (wordToWord8# (integer2Word# s# d#))
-  fromInt       = intToWord8
-
-instance Bounded Word8 where
-  minBound = 0
-  maxBound = 0xff
+    (W8# x#) + (W8# y#)    = W8# (wordToWord8# (x# `plusWord#` y#))
+    (W8# x#) - (W8# y#)    = W8# (wordToWord8# (x# `minusWord#` y#))
+    (W8# x#) * (W8# y#)    = W8# (wordToWord8# (x# `timesWord#` y#))
+    negate (W8# x#)        = W8# (wordToWord8# (int2Word# (negateInt# (word2Int# x#))))
+    abs x                  = x
+    signum 0               = 0
+    signum _               = 1
+    fromInteger (S# i#)    = W8# (wordToWord8# (int2Word# i#))
+    fromInteger (J# s# d#) = W8# (wordToWord8# (integer2Word# s# d#))
 
 instance Real Word8 where
-  toRational x = toInteger x % 1
-
--- Note: no need to mask results here 
--- as they cannot overflow.
-instance Integral Word8 where
-  div  x@(W8# x#)  (W8# y#) 
-    | y# `neWord#` (int2Word# 0#) = W8# (x# `quotWord#` y#)
-    | otherwise                   = divZeroError "div{Word8}" x
-
-  quot x@(W8# x#)  (W8# y#)   
-    | y# `neWord#` (int2Word# 0#) = W8# (x# `quotWord#` y#)
-    | otherwise                   = divZeroError "quot{Word8}" x
-
-  rem  x@(W8# x#)  (W8# y#)
-    | y# `neWord#` (int2Word# 0#) = W8# (x# `remWord#` y#)
-    | otherwise                   = divZeroError "rem{Word8}" x
+    toRational x = toInteger x % 1
 
-  mod  x@(W8# x#)  (W8# y#)
-    | y# `neWord#` (int2Word# 0#) = W8# (x# `remWord#` y#)
-    | otherwise                   = divZeroError "mod{Word8}" x
+instance Enum Word8 where
+    succ x
+        | x /= maxBound = x + 1
+        | otherwise     = succError "Word8"
+    pred x
+        | x /= minBound = x - 1
+        | otherwise     = predError "Word8"
+    toEnum i@(I# i#)
+        | i >= 0 && i <= fromIntegral (maxBound::Word8)
+                        = W8# (int2Word# i#)
+        | otherwise     = toEnumError "Word8" i (minBound::Word8, maxBound::Word8)
+    fromEnum (W8# x#)   = I# (word2Int# x#)
+    enumFrom            = boundedEnumFrom
+    enumFromThen        = boundedEnumFromThen
 
-  quotRem (W8# x) (W8# y) = (W8# (x `quotWord#` y), W8# (x `remWord#` y))
-  divMod  (W8# x) (W8# y) = (W8# (x `quotWord#` y), W8# (x `remWord#` y))
+instance Integral Word8 where
+    quot    x@(W8# x#) y@(W8# y#)
+        | y /= 0                  = W8# (x# `quotWord#` y#)
+        | otherwise               = divZeroError "quot{Word8}" x
+    rem     x@(W8# x#) y@(W8# y#)
+        | y /= 0                  = W8# (x# `remWord#` y#)
+        | otherwise               = divZeroError "rem{Word8}" x
+    div     x@(W8# x#) y@(W8# y#)
+        | y /= 0                  = W8# (x# `quotWord#` y#)
+        | otherwise               = divZeroError "div{Word8}" x
+    mod     x@(W8# x#) y@(W8# y#)
+        | y /= 0                  = W8# (x# `remWord#` y#)
+        | otherwise               = divZeroError "mod{Word8}" x
+    quotRem x@(W8# x#) y@(W8# y#)
+        | y /= 0                  = (W8# (x# `quotWord#` y#), W8# (x# `remWord#` y#))
+        | otherwise               = divZeroError "quotRem{Word8}" x
+    divMod  x@(W8# x#) y@(W8# y#)
+        | y /= 0                  = (W8# (x# `quotWord#` y#), W8# (x# `remWord#` y#))
+        | otherwise               = divZeroError "quotRem{Word8}" x
+    toInteger (W8# x#)            = S# (word2Int# x#)
 
-  toInteger = toInteger . toInt
-  toInt     = word8ToInt
+instance Bounded Word8 where
+    minBound = 0
+    maxBound = 0xFF
 
 instance Ix Word8 where
-    range (m,n)          = [m..n]
+    range (m,n)       = [m..n]
     index b@(m,_) i
-          | inRange b i = word8ToInt (i-m)
-          | otherwise   = indexError b i "Word8"
-    inRange (m,n) i      = m <= i && i <= n
-
-instance Enum Word8 where
-    succ w         
-      | w == maxBound = succError "Word8"
-      | otherwise     = w+1
-    pred w         
-      | w == minBound = predError "Word8"
-      | otherwise     = w-1
-
-    toEnum   i@(I# i#)  
-      | i >= toInt (minBound::Word8) && i <= toInt (maxBound::Word8) 
-      = W8# (intToWord8# i#)
-      | otherwise
-      = toEnumError "Word8" i (minBound::Word8,maxBound::Word8)
-
-    fromEnum  (W8# w) = I# (word2Int# w)
-
-    enumFrom          = boundedEnumFrom
-    enumFromThen      = boundedEnumFromThen
+        | inRange b i = fromIntegral (i - m)
+        | otherwise   = indexError b i "Word8"
+    inRange (m,n) i   = m <= i && i <= n
 
 instance Read Word8 where
-    readsPrec _ = readDec
-
-instance Show Word8 where
-    showsPrec p w8 = showsPrec p (word8ToInt w8)
+    readsPrec p s = [(fromIntegral (x::Int), r) | (x, r) <- readsPrec p s]
 
 instance Bits Word8 where
-  (W8# x)  .&.  (W8# y)    = W8# (x `and#` y)
-  (W8# x)  .|.  (W8# y)    = W8# (x `or#` y)
-  (W8# x) `xor` (W8# y)    = W8# (x `xor#` y)
-  complement (W8# x)       = W8# (x `xor#` int2Word# 0xff#)
-  shift (W8# x#) i@(I# i#)
-       | i > 0     = W8# (wordToWord8# (shiftL# x# i#))
-       | otherwise = W8# (wordToWord8# (shiftRL# x# (negateInt# i#)))
-  w@(W8# x)  `rotate` (I# i)
-        | i ==# 0#    = w
-       | i ># 0#     = W8# ((wordToWord8# (shiftL# x i')) `or#`
-                            (shiftRL# (x `and#` 
-                                       (int2Word# (0x100# -# pow2# i2)))
-                                      i2))
-       | otherwise = rotate w (I# (8# +# i))
-          where
-           i' = word2Int# (int2Word# i `and#` int2Word# 7#)
-           i2 = 8# -# i'
-
-  bit (I# i#)
-       | i# >=# 0# && i# <=# 7# = W8# (wordToWord8# (shiftL# (int2Word# 1#) i#))
-       | otherwise = 0 -- We'll be overbearing, for now..
-
-  testBit (W8# x#) (I# i#)
-    | i# <# 8# && i# >=# 0# = (word2Int# (x# `and#` (shiftL# (int2Word# 1#) i#))) /=# 0#
-    | otherwise             = False -- for now, this is really an error.
-
-  bitSize  _    = 8
-  isSigned _    = False
-
-pow2# :: Int# -> Int#
-pow2# x# = word2Int# (shiftL# (int2Word# 1#) x#)
-
-pow2_64# :: Int# -> Int64#
-pow2_64# x# = word64ToInt64# (shiftL64# (wordToWord64# (int2Word# 1#)) x#)
-
--- ---------------------------------------------------------------------------
--- Word16
--- ---------------------------------------------------------------------------
-
--- The double byte type @Word16@ is represented in the Haskell
--- heap by boxing up a machine word, @Word#@. An invariant
--- for this representation is that only the lower 16 bits are
--- `active', any bits above are {\em always} zeroed out.
--- A consequence of this is that operations that could possibly
--- overflow have to mask out anything above the lower two bytes
--- before putting together the resulting @Word16@.
-
-data Word16 = W16# Word#
+    (W8# x#) .&.   (W8# y#)   = W8# (x# `and#` y#)
+    (W8# x#) .|.   (W8# y#)   = W8# (x# `or#`  y#)
+    (W8# x#) `xor` (W8# y#)   = W8# (x# `xor#` y#)
+    complement (W8# x#)       = W8# (x# `xor#` mb#) where W8# mb# = maxBound
+    (W8# x#) `shift` (I# i#)
+        | i# >=# 0#           = W8# (wordToWord8# (x# `shiftL#` i#))
+        | otherwise           = W8# (x# `shiftRL#` negateInt# i#)
+    (W8# x#) `rotate` (I# i#) = W8# (wordToWord8# ((x# `shiftL#` i'#) `or#`
+                                                   (x# `shiftRL#` (8# -# i'#))))
+        where
+        i'# = word2Int# (int2Word# i# `and#` int2Word# 7#)
+    bitSize  _                = 8
+    isSigned _                = False
 
-instance CCallable Word16
-instance CReturnable Word16
-
-word16ToWord8  (W16# x) = W8#  (wordToWord8#  x)
-word16ToWord32 (W16# x) = W32# x
-
-word32ToWord16 (W32# x) = W16# (wordToWord16# x)
-
--- mask out upper 16 bits.
-intToWord16# :: Int# -> Word#
-intToWord16# i# = ((int2Word# i#) `and#` (int2Word# 0xffff#))
+{-# RULES
+"fromIntegral/Word8->Word8"   fromIntegral = id :: Word8 -> Word8
+"fromIntegral/Word8->Integer" fromIntegral = toInteger :: Word8 -> Integer
+"fromIntegral/a->Word8"       fromIntegral = \x -> case fromIntegral x of W# x# -> W8# (wordToWord8# x#)
+"fromIntegral/Word8->a"       fromIntegral = \(W8# x#) -> fromIntegral (W# x#)
+  #-}
 
-wordToWord16# :: Word# -> Word#
-wordToWord16# w# = w# `and#` (int2Word# 0xffff#)
+------------------------------------------------------------------------
+-- type Word16
+------------------------------------------------------------------------
 
-instance Eq  Word16    where 
-  (W16# x) == (W16# y) = x `eqWord#` y
-  (W16# x) /= (W16# y) = x `neWord#` y
+-- Word16 is represented in the same way as Word. Operations may assume
+-- and must ensure that it holds only values from its logical range.
 
-instance Ord Word16     where
-  compare (W16# x#) (W16# y#) = compareWord# x# y#
-  (<)  (W16# x) (W16# y)      = x `ltWord#` y
-  (<=) (W16# x) (W16# y)      = x `leWord#` y
-  (>=) (W16# x) (W16# y)      = x `geWord#` y
-  (>)  (W16# x) (W16# y)      = x `gtWord#` y
-  max x@(W16# x#) y@(W16# y#) = 
-     case (compareWord# x# y#) of { LT -> y ; EQ -> x ; GT -> x }
-  min x@(W16# x#) y@(W16# y#) =
-     case (compareWord# x# y#) of { LT -> x ; EQ -> x ; GT -> y }
+data Word16 = W16# Word# deriving (Eq, Ord)
 
+instance CCallable Word16
+instance CReturnable Word16
 
+instance Show Word16 where
+    showsPrec p x = showsPrec p (fromIntegral x :: Int)
 
 instance Num Word16 where
-  (W16# x) + (W16# y) = 
-       W16# (intToWord16# (word2Int# x +# word2Int# y))
-  (W16# x) - (W16# y) = 
-       W16# (intToWord16# (word2Int# x -# word2Int# y))
-  (W16# x) * (W16# y) = 
-       W16# (intToWord16# (word2Int# x *# word2Int# y))
-  negate w@(W16# x)  = 
-       if x' ==# 0# 
-        then w
-        else W16# (int2Word# (0x10000# -# x'))
-       where
-        x' = word2Int# x
-  abs x         = x
-  signum        = signumReal
-  fromInteger (S# i#)    = W16# (wordToWord16# (int2Word# i#))
-  fromInteger (J# s# d#) = W16# (wordToWord16# (integer2Word# s# d#))
-  fromInt       = intToWord16
-
-instance Bounded Word16 where
-  minBound = 0
-  maxBound = 0xffff
+    (W16# x#) + (W16# y#)  = W16# (wordToWord16# (x# `plusWord#` y#))
+    (W16# x#) - (W16# y#)  = W16# (wordToWord16# (x# `minusWord#` y#))
+    (W16# x#) * (W16# y#)  = W16# (wordToWord16# (x# `timesWord#` y#))
+    negate (W16# x#)       = W16# (wordToWord16# (int2Word# (negateInt# (word2Int# x#))))
+    abs x                  = x
+    signum 0               = 0
+    signum _               = 1
+    fromInteger (S# i#)    = W16# (wordToWord16# (int2Word# i#))
+    fromInteger (J# s# d#) = W16# (wordToWord16# (integer2Word# s# d#))
 
 instance Real Word16 where
-  toRational x = toInteger x % 1
-
-instance Integral Word16 where
-  div  x@(W16# x#)  (W16# y#)
-   | y# `neWord#` (int2Word# 0#) = W16# (x# `quotWord#` y#)
-   | otherwise                   = divZeroError "div{Word16}" x
-
-  quot x@(W16# x#) (W16# y#)
-   | y# `neWord#`(int2Word# 0#)  = W16# (x# `quotWord#` y#)
-   | otherwise                   = divZeroError "quot{Word16}" x
-
-  rem  x@(W16# x#) (W16# y#)
-   | y# `neWord#` (int2Word# 0#) = W16# (x# `remWord#` y#)
-   | otherwise                   = divZeroError "rem{Word16}" x
+    toRational x = toInteger x % 1
 
-  mod  x@(W16# x#)  (W16# y#)
-   | y# `neWord#` (int2Word# 0#) = W16# (x# `remWord#` y#)
-   | otherwise                  = divZeroError "mod{Word16}" x
+instance Enum Word16 where
+    succ x
+        | x /= maxBound = x + 1
+        | otherwise     = succError "Word16"
+    pred x
+        | x /= minBound = x - 1
+        | otherwise     = predError "Word16"
+    toEnum i@(I# i#)
+        | i >= 0 && i <= fromIntegral (maxBound::Word16)
+                        = W16# (int2Word# i#)
+        | otherwise     = toEnumError "Word16" i (minBound::Word16, maxBound::Word16)
+    fromEnum (W16# x#)  = I# (word2Int# x#)
+    enumFrom            = boundedEnumFrom
+    enumFromThen        = boundedEnumFromThen
 
-  quotRem (W16# x) (W16# y) = (W16# (x `quotWord#` y), W16# (x `remWord#` y))
-  divMod  (W16# x) (W16# y) = (W16# (x `quotWord#` y), W16# (x `remWord#` y))
+instance Integral Word16 where
+    quot    x@(W16# x#) y@(W16# y#)
+        | y /= 0                    = W16# (x# `quotWord#` y#)
+        | otherwise                 = divZeroError "quot{Word16}" x
+    rem     x@(W16# x#) y@(W16# y#)
+        | y /= 0                    = W16# (x# `remWord#` y#)
+        | otherwise                 = divZeroError "rem{Word16}" x
+    div     x@(W16# x#) y@(W16# y#)
+        | y /= 0                    = W16# (x# `quotWord#` y#)
+        | otherwise                 = divZeroError "div{Word16}" x
+    mod     x@(W16# x#) y@(W16# y#)
+        | y /= 0                    = W16# (x# `remWord#` y#)
+        | otherwise                 = divZeroError "mod{Word16}" x
+    quotRem x@(W16# x#) y@(W16# y#)
+        | y /= 0                    = (W16# (x# `quotWord#` y#), W16# (x# `remWord#` y#))
+        | otherwise                 = divZeroError "quotRem{Word16}" x
+    divMod  x@(W16# x#) y@(W16# y#)
+        | y /= 0                    = (W16# (x# `quotWord#` y#), W16# (x# `remWord#` y#))
+        | otherwise                 = divZeroError "quotRem{Word16}" x
+    toInteger (W16# x#)             = S# (word2Int# x#)
 
-  toInteger = toInteger . toInt
-  toInt     = word16ToInt
+instance Bounded Word16 where
+    minBound = 0
+    maxBound = 0xFFFF
 
 instance Ix Word16 where
-  range (m,n)          = [m..n]
-  index b@(m,_) i
-         | inRange b i = word16ToInt (i - m)
-         | otherwise   = indexError b i "Word16"
-  inRange (m,n) i      = m <= i && i <= n
-
-instance Enum Word16 where
-    succ w         
-      | w == maxBound = succError "Word16"
-      | otherwise     = w+1
-    pred w         
-      | w == minBound = predError "Word16"
-      | otherwise     = w-1
-
-    toEnum   i@(I# i#)  
-      | i >= toInt (minBound::Word16) && i <= toInt (maxBound::Word16)
-      = W16# (intToWord16# i#)
-      | otherwise
-      = toEnumError "Word16" i (minBound::Word16,maxBound::Word16)
-
-    fromEnum  (W16# w) = I# (word2Int# w)
-    enumFrom     = boundedEnumFrom
-    enumFromThen = boundedEnumFromThen
+    range (m,n)       = [m..n]
+    index b@(m,_) i
+        | inRange b i = fromIntegral (i - m)
+        | otherwise   = indexError b i "Word16"
+    inRange (m,n) i   = m <= i && i <= n
 
 instance Read Word16 where
-  readsPrec _ = readDec
-
-instance Show Word16 where
-  showsPrec p w16 = showsPrec p (word16ToInt w16)
+    readsPrec p s = [(fromIntegral (x::Int), r) | (x, r) <- readsPrec p s]
 
 instance Bits Word16 where
-  (W16# x)  .&.  (W16# y)  = W16# (x `and#` y)
-  (W16# x)  .|.  (W16# y)  = W16# (x `or#` y)
-  (W16# x) `xor` (W16# y)  = W16# (x `xor#` y)
-  complement (W16# x)      = W16# (x `xor#` int2Word# 0xffff#)
-  shift (W16# x#) i@(I# i#)
-       | i > 0     = W16# (wordToWord16# (shiftL# x# i#))
-       | otherwise = W16# (shiftRL# x# (negateInt# i#))
-  w@(W16# x)  `rotate` (I# i)
-        | i ==# 0#    = w
-       | i ># 0#     = W16# ((wordToWord16# (shiftL# x i')) `or#`
-                             (shiftRL# (x `and#` 
-                                        (int2Word# (0x10000# -# pow2# i2)))
-                                       i2))
-       | otherwise = rotate w (I# (16# +# i'))
-          where
-           i' = word2Int# (int2Word# i `and#` int2Word# 15#)
-           i2 = 16# -# i'
-  bit (I# i#)
-       | i# >=# 0# && i# <=# 15# = W16# (shiftL# (int2Word# 1#) i#)
-       | otherwise = 0 -- We'll be overbearing, for now..
-
-  testBit (W16# x#) (I# i#)
-    | i# <# 16# && i# >=# 0# = (word2Int# (x# `and#` (shiftL# (int2Word# 1#) i#))) /=# 0#
-    | otherwise             = False -- for now, this is really an error.
-
-  bitSize  _    = 16
-  isSigned _    = False
-
--- ---------------------------------------------------------------------------
--- Word32
--- ---------------------------------------------------------------------------
-
--- The quad byte type @Word32@ is represented in the Haskell
--- heap by boxing up a machine word, @Word#@. An invariant
--- for this representation is that any bits above the lower
--- 32 are {\em always} zeroed out. A consequence of this is that
--- operations that could possibly overflow have to mask
--- the result before building the resulting @Word16@.
-
-data Word32 = W32# Word#
+    (W16# x#) .&.   (W16# y#)  = W16# (x# `and#` y#)
+    (W16# x#) .|.   (W16# y#)  = W16# (x# `or#`  y#)
+    (W16# x#) `xor` (W16# y#)  = W16# (x# `xor#` y#)
+    complement (W16# x#)       = W16# (x# `xor#` mb#) where W16# mb# = maxBound
+    (W16# x#) `shift` (I# i#)
+        | i# >=# 0#            = W16# (wordToWord16# (x# `shiftL#` i#))
+        | otherwise            = W16# (x# `shiftRL#` negateInt# i#)
+    (W16# x#) `rotate` (I# i#) = W16# (wordToWord16# ((x# `shiftL#` i'#) `or#`
+                                                      (x# `shiftRL#` (16# -# i'#))))
+        where
+        i'# = word2Int# (int2Word# i# `and#` int2Word# 15#)
+    bitSize  _                = 16
+    isSigned _                = False
+
+{-# RULES
+"fromIntegral/Word8->Word16"   fromIntegral = \(W8# x#) -> W16# x#
+"fromIntegral/Word16->Word16"  fromIntegral = id :: Word16 -> Word16
+"fromIntegral/Word16->Integer" fromIntegral = toInteger :: Word16 -> Integer
+"fromIntegral/a->Word16"       fromIntegral = \x -> case fromIntegral x of W# x# -> W16# (wordToWord16# x#)
+"fromIntegral/Word16->a"       fromIntegral = \(W16# x#) -> fromIntegral (W# x#)
+  #-}
+
+------------------------------------------------------------------------
+-- type Word32
+------------------------------------------------------------------------
+
+-- Word32 is represented in the same way as Word.
+#if WORD_SIZE_IN_BYTES == 8
+-- Operations may assume and must ensure that it holds only values
+-- from its logical range.
+#endif
+
+data Word32 = W32# Word# deriving (Eq, Ord)
 
 instance CCallable Word32
 instance CReturnable Word32
 
-instance Eq  Word32    where 
-  (W32# x) == (W32# y) = x `eqWord#` y
-  (W32# x) /= (W32# y) = x `neWord#` y
-
-instance Ord Word32    where
-  compare (W32# x#) (W32# y#) = compareWord# x# y#
-  (<)  (W32# x) (W32# y)      = x `ltWord#` y
-  (<=) (W32# x) (W32# y)      = x `leWord#` y
-  (>=) (W32# x) (W32# y)      = x `geWord#` y
-  (>)  (W32# x) (W32# y)      = x `gtWord#` y
-  max x@(W32# x#) y@(W32# y#) = 
-     case (compareWord# x# y#) of { LT -> y ; EQ -> x ; GT -> x }
-  min x@(W32# x#) y@(W32# y#) =
-     case (compareWord# x# y#) of { LT -> x ; EQ -> x ; GT -> y }
-
-instance Num Word32 where
-  (W32# x) + (W32# y) = 
-       W32# (intToWord32# (word2Int# x +# word2Int# y))
-  (W32# x) - (W32# y) =
-       W32# (intToWord32# (word2Int# x -# word2Int# y))
-  (W32# x) * (W32# y) = 
-       W32# (intToWord32# (word2Int# x *# word2Int# y))
-#if WORD_SIZE_IN_BYTES == 8
-  negate w@(W32# x)  = 
-      if x' ==# 0#
-       then w
-       else W32# (intToWord32# (0x100000000# -# x'))
-       where
-        x' = word2Int# x
+instance Show Word32 where
+#if WORD_SIZE_IN_BYTES == 4
+    showsPrec p x = showsPrec p (toInteger x)
 #else
-  negate (W32# x)  = W32# (intToWord32# (negateInt# (word2Int# x)))
+    showsPrec p x = showsPrec p (fromIntegral x :: Int)
 #endif
-  abs x           = x
-  signum          = signumReal
-  fromInteger (S# i#)    = W32# (intToWord32# i#)
-  fromInteger (J# s# d#) = W32# (wordToWord32# (integer2Word# s# d#))
-  fromInt (I# x)  = W32# (intToWord32# x)
-    -- ToDo: restrict fromInt{eger} range.
 
-intToWord32#  :: Int#  -> Word#
-wordToWord32# :: Word# -> Word#
+instance Num Word32 where
+    (W32# x#) + (W32# y#)  = W32# (wordToWord32# (x# `plusWord#` y#))
+    (W32# x#) - (W32# y#)  = W32# (wordToWord32# (x# `minusWord#` y#))
+    (W32# x#) * (W32# y#)  = W32# (wordToWord32# (x# `timesWord#` y#))
+    negate (W32# x#)       = W32# (wordToWord32# (int2Word# (negateInt# (word2Int# x#))))
+    abs x                  = x
+    signum 0               = 0
+    signum _               = 1
+    fromInteger (S# i#)    = W32# (wordToWord32# (int2Word# i#))
+    fromInteger (J# s# d#) = W32# (wordToWord32# (integer2Word# s# d#))
 
-#if WORD_SIZE_IN_BYTES == 8
-intToWord32#  i#  = (int2Word# i#) `and#` (int2Word# 0xffffffff#)
-wordToWord32# w#  = w# `and#` (int2Word# 0xffffffff#)
-wordToWord64# w#  = w#
-#else
-intToWord32#  i# = int2Word# i#
-wordToWord32# w# = w#
-#endif
+instance Real Word32 where
+    toRational x = toInteger x % 1
 
-instance Bounded Word32 where
-    minBound = 0
+instance Enum Word32 where
+    succ x
+        | x /= maxBound = x + 1
+        | otherwise     = succError "Word32"
+    pred x
+        | x /= minBound = x - 1
+        | otherwise     = predError "Word32"
+    toEnum i@(I# i#)
+        | i >= 0
 #if WORD_SIZE_IN_BYTES == 8
-    maxBound = 0xffffffff
+          && i <= fromIntegral (maxBound::Word32)
+#endif
+                        = W32# (int2Word# i#)
+        | otherwise     = toEnumError "Word32" i (minBound::Word32, maxBound::Word32)
+#if WORD_SIZE_IN_BYTES == 4
+    fromEnum x@(W32# x#)
+        | x <= fromIntegral (maxBound::Int)
+                        = I# (word2Int# x#)
+        | otherwise     = fromEnumError "Word32" x
+    enumFrom            = integralEnumFrom
+    enumFromThen        = integralEnumFromThen
+    enumFromTo          = integralEnumFromTo
+    enumFromThenTo      = integralEnumFromThenTo
 #else
-    maxBound = minBound - 1
+    fromEnum (W32# x#)  = I# (word2Int# x#)
+    enumFrom            = boundedEnumFrom
+    enumFromThen        = boundedEnumFromThen
 #endif
 
-instance Real Word32 where
-    toRational x = toInteger x % 1
-
 instance Integral Word32 where
-    div  x y 
-      | y /= 0         = quotWord32 x y
-      | otherwise      = divZeroError "div{Word32}" x
-
-    quot x y
-      | y /= 0         = quotWord32 x y
-      | otherwise      = divZeroError "quot{Word32}" x
-
-    rem         x y
-      | y /= 0         = remWord32 x y
-      | otherwise      = divZeroError "rem{Word32}" x
-
-    mod  x y
-      | y /= 0         = remWord32 x y
-      | otherwise      = divZeroError "mod{Word32}" x
-
-    quotRem a b        = (a `quot` b, a `rem` b)
-    divMod x y         = quotRem x y
-
-    toInteger          = word32ToInteger 
-    toInt              = word32ToInt
-
-
-{-# INLINE quotWord32 #-}
-{-# INLINE remWord32  #-}
-remWord32, quotWord32 :: Word32 -> Word32 -> Word32
-(W32# x) `quotWord32` (W32# y) = W32# (x `quotWord#` y)
-(W32# x) `remWord32`  (W32# y) = W32# (x `remWord#`  y)
+    quot    x@(W32# x#) y@(W32# y#)
+        | y /= 0                    = W32# (x# `quotWord#` y#)
+        | otherwise                 = divZeroError "quot{Word32}" x
+    rem     x@(W32# x#) y@(W32# y#)
+        | y /= 0                    = W32# (x# `remWord#` y#)
+        | otherwise                 = divZeroError "rem{Word32}" x
+    div     x@(W32# x#) y@(W32# y#)
+        | y /= 0                    = W32# (x# `quotWord#` y#)
+        | otherwise                 = divZeroError "div{Word32}" x
+    mod     x@(W32# x#) y@(W32# y#)
+        | y /= 0                    = W32# (x# `remWord#` y#)
+        | otherwise                 = divZeroError "mod{Word32}" x
+    quotRem x@(W32# x#) y@(W32# y#)
+        | y /= 0                    = (W32# (x# `quotWord#` y#), W32# (x# `remWord#` y#))
+        | otherwise                 = divZeroError "quotRem{Word32}" x
+    divMod  x@(W32# x#) y@(W32# y#)
+        | y /= 0                    = (W32# (x# `quotWord#` y#), W32# (x# `remWord#` y#))
+        | otherwise                 = divZeroError "quotRem{Word32}" x
+    toInteger (W32# x#)
+#if WORD_SIZE_IN_BYTES == 4
+        | i# >=# 0#                 = S# i#
+        | otherwise                 = case word2Integer# x# of (# s, d #) -> J# s d
+        where
+        i# = word2Int# x#
+#else
+                                    = S# (word2Int# x#)
+#endif
 
+instance Bounded Word32 where
+    minBound = 0
+    maxBound = 0xFFFFFFFF
 
 instance Ix Word32 where
-    range (m,n)          = [m..n]
+    range (m,n)       = [m..n]
     index b@(m,_) i
-          | inRange b i = word32ToInt (i - m)
-          | otherwise   = indexError b i "Word32"
-    inRange (m,n) i      = m <= i && i <= n
-
-instance Enum Word32 where
-    succ w         
-      | w == maxBound = succError "Word32"
-      | otherwise     = w+1
-    pred w         
-      | w == minBound = predError "Word32"
-      | otherwise     = w-1
-
-     -- the toEnum/fromEnum will fail if the mapping isn't legal,
-     -- use the intTo* & *ToInt coercion functions to 'bypass' these range checks.
-    toEnum   x
-      | x >= 0    = intToWord32 x
-      | otherwise
-      = toEnumError "Word32" x (minBound::Word32,maxBound::Word32)
-
-    fromEnum   x
-      | x <= intToWord32 (maxBound::Int)
-      = word32ToInt x
-      | otherwise
-      = fromEnumError "Word32" x 
-
-    enumFrom w           = [w .. maxBound]
-    enumFromTo   w1 w2
-       | w1 <= w2        = eftt32 True{-increasing-} w1 diff_f last
-       | otherwise      = []
-       where
-         last = (> w2)
-        diff_f x = x + 1 
-         
-    enumFromThen w1 w2   = [w1,w2 .. last]
-       where
-        last :: Word32
-        last
-         | w1 <=w2   = maxBound
-         | otherwise = minBound
-
-    enumFromThenTo w1 w2 wend  = eftt32 increasing w1 step_f last
-     where
-       increasing = w1 <= w2
-       diff1 = w2 - w1
-       diff2 = w1 - w2
-       
-       last
-        | increasing = (> wend)
-       | otherwise  = (< wend)
-
-       step_f 
-        | increasing = \ x -> x + diff1
-        | otherwise  = \ x -> x - diff2
-
-eftt32 :: Bool -> Word32 -> (Word32 -> Word32) -> (Word32-> Bool) -> [Word32]
-eftt32 increasing init stepper done = go init
-  where
-    go now
-     | done now                    = []
-     | increasing     && now > nxt = [now] -- oflow
-     | not increasing && now < nxt = [now] -- uflow
-     | otherwise                   = now : go nxt
-     where
-      nxt = stepper now 
+        | inRange b i = fromIntegral (i - m)
+        | otherwise   = indexError b i "Word32"
+    inRange (m,n) i   = m <= i && i <= n
 
 instance Read Word32 where
-    readsPrec _ = readDec
-
-instance Show Word32 where
-    showsPrec p w = showsPrec p (word32ToInteger w)
+#if WORD_SIZE_IN_BYTES == 4
+    readsPrec p s = [(fromInteger x, r) | (x, r) <- readsPrec p s]
+#else
+    readsPrec p s = [(fromIntegral (x::Int), r) | (x, r) <- readsPrec p s]
+#endif
 
 instance Bits Word32 where
-  (W32# x)  .&.  (W32# y)  = W32# (x `and#` y)
-  (W32# x)  .|.  (W32# y)  = W32# (x `or#` y)
-  (W32# x) `xor` (W32# y)  = W32# (x `xor#` y)
-  complement (W32# x)      = W32# (x `xor#` mb#) where (W32# mb#) = maxBound
-  shift (W32# x) i@(I# i#)
-       | i > 0     = W32# (wordToWord32# (shiftL# x i#))
-       | otherwise = W32# (shiftRL# x (negateInt# i#))
-  w@(W32# x)  `rotate` (I# i)
-        | i ==# 0#    = w
-       | i ># 0#     = W32# ((wordToWord32# (shiftL# x i')) `or#`
-                             (shiftRL# (x `and#` 
-                                       (int2Word# (word2Int# maxBound# -# pow2# i2 +# 1#)))
-                                    i2))
-       | otherwise = rotate w (I# (32# +# i))
-          where
-           i' = word2Int# (int2Word# i `and#` int2Word# 31#)
-           i2 = 32# -# i'
-           (W32# maxBound#) = maxBound
-
-  bit (I# i#)
-       | i# >=# 0# && i# <=# 31# = W32# (shiftL# (int2Word# 1#) i#)
-       | otherwise = 0 -- We'll be overbearing, for now..
-
-  testBit (W32# x#) (I# i#)
-    | i# <# 32# && i# >=# 0# = (word2Int# (x# `and#` (shiftL# (int2Word# 1#) i#))) /=# 0#
-    | otherwise             = False -- for now, this is really an error.
-  bitSize  _        = 32
-  isSigned _        = False
-
--- -----------------------------------------------------------------------------
--- Word64
--- -----------------------------------------------------------------------------
-
-#if WORD_SIZE_IN_BYTES == 8
-data Word64 = W64# Word#
-
-word32ToWord64 (W32 w#) = W64# w#
+    (W32# x#) .&.   (W32# y#)  = W32# (x# `and#` y#)
+    (W32# x#) .|.   (W32# y#)  = W32# (x# `or#`  y#)
+    (W32# x#) `xor` (W32# y#)  = W32# (x# `xor#` y#)
+    complement (W32# x#)       = W32# (x# `xor#` mb#) where W32# mb# = maxBound
+    (W32# x#) `shift` (I# i#)
+        | i# >=# 0#            = W32# (wordToWord32# (x# `shiftL#` i#))
+        | otherwise            = W32# (x# `shiftRL#` negateInt# i#)
+    (W32# x#) `rotate` (I# i#) = W32# (wordToWord32# ((x# `shiftL#` i'#) `or#`
+                                                      (x# `shiftRL#` (32# -# i'#))))
+        where
+        i'# = word2Int# (int2Word# i# `and#` int2Word# 31#)
+    bitSize  _                = 32
+    isSigned _                = False
 
-word8ToWord64 (W8# w#) = W64# w#
-word64ToWord8 (W64# w#) = W8# (w# `and#` (int2Word# 0xff#))
-
-word16ToWord64 (W16# w#) = W64# w#
-word64ToWord16 (W64# w#) = W16# (w# `and#` (int2Word# 0xffff#))
+{-# RULES
+"fromIntegral/Word8->Word32"   fromIntegral = \(W8# x#) -> W32# x#
+"fromIntegral/Word16->Word32"  fromIntegral = \(W16# x#) -> W32# x#
+"fromIntegral/Word32->Word32"  fromIntegral = id :: Word32 -> Word32
+"fromIntegral/Word32->Integer" fromIntegral = toInteger :: Word32 -> Integer
+"fromIntegral/a->Word32"       fromIntegral = \x -> case fromIntegral x of W# x# -> W32# (wordToWord32# x#)
+"fromIntegral/Word32->a"       fromIntegral = \(W32# x#) -> fromIntegral (W# x#)
+  #-}
 
-wordToWord32# :: Word# -> Word#
-wordToWord32# w# = w# `and#` (case (maxBound::Word32) of W# x# -> x#)
+------------------------------------------------------------------------
+-- type Word64
+------------------------------------------------------------------------
 
-word64ToWord32 :: Word64 -> Word32
-word64ToWord32 (W64# w#) = W32# (wordToWord32# w#)
+#if WORD_SIZE_IN_BYTES == 4
 
-wordToWord64# w# = w#
-word64ToWord# w# = w#
+data Word64 = W64# Word64#
 
-instance Eq  Word64     where 
-  (W64# x) == (W64# y) = x `eqWord#` y
-  (W64# x) /= (W64# y) = x `neWord#` y
+instance Eq Word64 where
+    (W64# x#) == (W64# y#) = x# `eqWord64#` y#
+    (W64# x#) /= (W64# y#) = x# `neWord64#` y#
 
-instance Ord Word64     where 
-  compare (W64# x#) (W64# y#) = compareWord# x# y#
-  (<)  (W64# x) (W64# y)      = x `ltWord#` y
-  (<=) (W64# x) (W64# y)      = x `leWord#` y
-  (>=) (W64# x) (W64# y)      = x `geWord#` y
-  (>)  (W64# x) (W64# y)      = x `gtWord#` y
-  max x@(W64# x#) y@(W64# y#) = 
-     case (compareWord# x# y#) of { LT -> y ; EQ -> x ; GT -> x }
-  min x@(W64# x#) y@(W64# y#) =
-     case (compareWord# x# y#) of { LT -> x ; EQ -> x ; GT -> y }
+instance Ord Word64 where
+    (W64# x#) <  (W64# y#) = x# `ltWord64#` y#
+    (W64# x#) <= (W64# y#) = x# `leWord64#` y#
+    (W64# x#) >  (W64# y#) = x# `gtWord64#` y#
+    (W64# x#) >= (W64# y#) = x# `geWord64#` y#
 
 instance Num Word64 where
-  (W64# x) + (W64# y) = 
-      W64# (intToWord64# (word2Int# x +# word2Int# y))
-  (W64# x) - (W64# y) = 
-      W64# (intToWord64# (word2Int# x -# word2Int# y))
-  (W64# x) * (W64# y) = 
-      W64# (intToWord64# (word2Int# x *# word2Int# y))
-  negate w@(W64# x)  = 
-     if x' ==# 0# 
-      then w
-      else W64# (int2Word# (0x100# -# x'))
-     where
-      x' = word2Int# x
-  abs x         = x
-  signum        = signumReal
-  fromInteger (S# i#)    = W64# (int2Word# i#)
-  fromInteger (J# s# d#) = W64# (integer2Word# s# d#)
-  fromInt       = intToWord64
-
--- Note: no need to mask results here 
--- as they cannot overflow.
-instance Integral Word64 where
-  div  x@(W64# x#)  (W64# y#)
-    | y# `neWord#` (int2Word# 0#)  = W64# (x# `quotWord#` y#)
-    | otherwise                    = divZeroError "div{Word64}" x
-
-  quot x@(W64# x#)  (W64# y#)
-    | y# `neWord#` (int2Word# 0#)  = W64# (x# `quotWord#` y#)
-    | otherwise                    = divZeroError "quot{Word64}" x
+    (W64# x#) + (W64# y#)  = W64# (int64ToWord64# (word64ToInt64# x# `plusInt64#` word64ToInt64# y#))
+    (W64# x#) - (W64# y#)  = W64# (int64ToWord64# (word64ToInt64# x# `minusInt64#` word64ToInt64# y#))
+    (W64# x#) * (W64# y#)  = W64# (int64ToWord64# (word64ToInt64# x# `timesInt64#` word64ToInt64# y#))
+    negate (W64# x#)       = W64# (int64ToWord64# (negateInt64# (word64ToInt64# x#)))
+    abs x                  = x
+    signum 0               = 0
+    signum _               = 1
+    fromInteger (S# i#)    = W64# (int64ToWord64# (intToInt64# i#))
+    fromInteger (J# s# d#) = W64# (integerToWord64# s# d#)
 
-  rem  x@(W64# x#)  (W64# y#)
-    | y# `neWord#` (int2Word# 0#)  = W64# (x# `remWord#` y#)
-    | otherwise                    = divZeroError "rem{Word64}" x
-
-  mod  (W64# x)  (W64# y)   
-    | y# `neWord#` (int2Word# 0#)  = W64# (x `remWord#` y)
-    | otherwise                    = divZeroError "mod{Word64}" x
-
-  quotRem (W64# x) (W64# y) = (W64# (x `quotWord#` y), W64# (x `remWord#` y))
-  divMod  (W64# x) (W64# y) = (W64# (x `quotWord#` y), W64# (x `remWord#` y))
-
-  toInteger (W64# x)        = word2Integer# x
-  toInt x                   = word64ToInt x
-
-#else /* WORD_SIZE_IN_BYTES < 8 */
-
-data Word64 = W64# Word64#
+instance Enum Word64 where
+    succ x
+        | x /= maxBound = x + 1
+        | otherwise     = succError "Word64"
+    pred x
+        | x /= minBound = x - 1
+        | otherwise     = predError "Word64"
+    toEnum i@(I# i#)
+        | i >= 0        = W64# (wordToWord64# (int2Word# i#))
+        | otherwise     = toEnumError "Word64" i (minBound::Word64, maxBound::Word64)
+    fromEnum x@(W64# x#)
+        | x <= fromIntegral (maxBound::Int)
+                        = I# (word2Int# (word64ToWord# x#))
+        | otherwise     = fromEnumError "Word64" x
+    enumFrom            = integralEnumFrom
+    enumFromThen        = integralEnumFromThen
+    enumFromTo          = integralEnumFromTo
+    enumFromThenTo      = integralEnumFromThenTo
 
--- for completeness sake
-word32ToWord64 (W32# w#) = W64# (wordToWord64# w#)
-word64ToWord32 (W64# w#) = W32# (word64ToWord# w#)
+instance Integral Word64 where
+    quot    x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = W64# (x# `quotWord64#` y#)
+        | otherwise                 = divZeroError "quot{Word64}" x
+    rem     x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = W64# (x# `remWord64#` y#)
+        | otherwise                 = divZeroError "rem{Word64}" x
+    div     x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = W64# (x# `quotWord64#` y#)
+        | otherwise                 = divZeroError "div{Word64}" x
+    mod     x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = W64# (x# `remWord64#` y#)
+        | otherwise                 = divZeroError "mod{Word64}" x
+    quotRem x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = (W64# (x# `quotWord64#` y#), W64# (x# `remWord64#` y#))
+        | otherwise                 = divZeroError "quotRem{Word64}" x
+    divMod  x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = (W64# (x# `quotWord64#` y#), W64# (x# `remWord64#` y#))
+        | otherwise                 = divZeroError "quotRem{Word64}" x
+    toInteger x@(W64# x#)
+        | x <= 0x7FFFFFFF           = S# (word2Int# (word64ToWord# x#))
+        | otherwise                 = case word64ToInteger# x# of (# s, d #) -> J# s d
 
-word8ToWord64 (W8# w#) = W64# (wordToWord64# w#)
-word64ToWord8 (W64# w#) = W8# ((word64ToWord# w#) `and#` (int2Word# 0xff#))
+instance Bits Word64 where
+    (W64# x#) .&.   (W64# y#)  = W64# (x# `and64#` y#)
+    (W64# x#) .|.   (W64# y#)  = W64# (x# `or64#`  y#)
+    (W64# x#) `xor` (W64# y#)  = W64# (x# `xor64#` y#)
+    complement (W64# x#)       = W64# (not64# x#)
+    (W64# x#) `shift` (I# i#)
+        | i# >=# 0#            = W64# (x# `shiftL64#` i#)
+        | otherwise            = W64# (x# `shiftRL64#` negateInt# i#)
+    (W64# x#) `rotate` (I# i#) = W64# ((x# `shiftL64#` i'#) `or64#`
+                                       (x# `shiftRL64#` (64# -# i'#)))
+        where
+        i'# = word2Int# (int2Word# i# `and#` int2Word# 63#)
+    bitSize  _                = 64
+    isSigned _                = False
+
+foreign import "stg_eqWord64"      unsafe eqWord64#      :: Word64# -> Word64# -> Bool
+foreign import "stg_neWord64"      unsafe neWord64#      :: Word64# -> Word64# -> Bool
+foreign import "stg_ltWord64"      unsafe ltWord64#      :: Word64# -> Word64# -> Bool
+foreign import "stg_leWord64"      unsafe leWord64#      :: Word64# -> Word64# -> Bool
+foreign import "stg_gtWord64"      unsafe gtWord64#      :: Word64# -> Word64# -> Bool
+foreign import "stg_geWord64"      unsafe geWord64#      :: Word64# -> Word64# -> Bool
+foreign import "stg_int64ToWord64" unsafe int64ToWord64# :: Int64# -> Word64#
+foreign import "stg_word64ToInt64" unsafe word64ToInt64# :: Word64# -> Int64#
+foreign import "stg_plusInt64"     unsafe plusInt64#     :: Int64# -> Int64# -> Int64#
+foreign import "stg_minusInt64"    unsafe minusInt64#    :: Int64# -> Int64# -> Int64#
+foreign import "stg_timesInt64"    unsafe timesInt64#    :: Int64# -> Int64# -> Int64#
+foreign import "stg_negateInt64"   unsafe negateInt64#   :: Int64# -> Int64#
+foreign import "stg_intToInt64"    unsafe intToInt64#    :: Int# -> Int64#
+foreign import "stg_wordToWord64"  unsafe wordToWord64#  :: Word# -> Word64#
+foreign import "stg_word64ToWord"  unsafe word64ToWord#  :: Word64# -> Word#
+foreign import "stg_quotWord64"    unsafe quotWord64#    :: Word64# -> Word64# -> Word64#
+foreign import "stg_remWord64"     unsafe remWord64#     :: Word64# -> Word64# -> Word64#
+foreign import "stg_and64"         unsafe and64#         :: Word64# -> Word64# -> Word64#
+foreign import "stg_or64"          unsafe or64#          :: Word64# -> Word64# -> Word64#
+foreign import "stg_xor64"         unsafe xor64#         :: Word64# -> Word64# -> Word64#
+foreign import "stg_not64"         unsafe not64#         :: Word64# -> Word64#
+foreign import "stg_shiftL64"      unsafe shiftL64#      :: Word64# -> Int# -> Word64#
+foreign import "stg_shiftRL64"     unsafe shiftRL64#     :: Word64# -> Int# -> Word64#
 
-word16ToWord64 (W16# w#) = W64# (wordToWord64# w#)
-word64ToWord16 (W64# w#) = W16# ((word64ToWord# w#) `and#` (int2Word# 0xffff#))
+{-# RULES
+"fromIntegral/Int->Word64"    fromIntegral = \(I#   x#) -> W64# (int64ToWord64# (intToInt64# x#))
+"fromIntegral/Word->Word64"   fromIntegral = \(W#   x#) -> W64# (wordToWord64# x#)
+"fromIntegral/Word64->Int"    fromIntegral = \(W64# x#) -> I#   (word2Int# (word64ToWord# x#))
+"fromIntegral/Word64->Word"   fromIntegral = \(W64# x#) -> W#   (word64ToWord# x#)
+"fromIntegral/Word64->Word64" fromIntegral = id :: Word64 -> Word64
+  #-}
 
-word64ToInteger (W64# w#) = 
-  case word64ToInteger# w# of
-    (# s#, p# #) -> J# s# p#
-word64ToInt w = 
-   case w `quotRem` 0x100000000 of 
-     (_,l) -> toInt (word64ToWord32 l)
+#else
 
-intToWord64# :: Int# -> Word64#
-intToWord64# i# = wordToWord64# (int2Word# i#)
+data Word64 = W64# Word# deriving (Eq, Ord)
 
-intToWord64 (I# i#) = W64# (intToWord64# i#)
+instance Num Word64 where
+    (W64# x#) + (W64# y#)  = W64# (x# `plusWord#` y#)
+    (W64# x#) - (W64# y#)  = W64# (x# `minusWord#` y#)
+    (W64# x#) * (W64# y#)  = W64# (x# `timesWord#` y#)
+    negate (W64# x#)       = W64# (int2Word# (negateInt# (word2Int# x#)))
+    abs x                  = x
+    signum 0               = 0
+    signum _               = 1
+    fromInteger (S# i#)    = W64# (int2Word# i#)
+    fromInteger (J# s# d#) = W64# (integer2Word# s# d#)
 
-integerToWord64 (S# i#)    = W64# (intToWord64# i#)
-integerToWord64 (J# s# d#) = W64# (integerToWord64# s# d#)
+instance Enum Word64 where
+    succ x
+        | x /= maxBound = x + 1
+        | otherwise     = succError "Word64"
+    pred x
+        | x /= minBound = x - 1
+        | otherwise     = predError "Word64"
+    toEnum i@(I# i#)
+        | i >= 0        = W64# (int2Word# i#)
+        | otherwise     = toEnumError "Word64" i (minBound::Word64, maxBound::Word64)
+    fromEnum x@(W64# x#)
+        | x <= fromIntegral (maxBound::Int)
+                        = I# (word2Int# x#)
+        | otherwise     = fromEnumError "Word64" x
+    enumFrom            = integralEnumFrom
+    enumFromThen        = integralEnumFromThen
+    enumFromTo          = integralEnumFromTo
+    enumFromThenTo      = integralEnumFromThenTo
 
-instance Eq  Word64     where 
-  (W64# x) == (W64# y) = x `eqWord64#` y
-  (W64# x) /= (W64# y) = not (x `eqWord64#` y)
+instance Integral Word64 where
+    quot    x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = W64# (x# `quotWord#` y#)
+        | otherwise                 = divZeroError "quot{Word64}" x
+    rem     x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = W64# (x# `remWord#` y#)
+        | otherwise                 = divZeroError "rem{Word64}" x
+    div     x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = W64# (x# `quotWord#` y#)
+        | otherwise                 = divZeroError "div{Word64}" x
+    mod     x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = W64# (x# `remWord#` y#)
+        | otherwise                 = divZeroError "mod{Word64}" x
+    quotRem x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = (W64# (x# `quotWord#` y#), W64# (x# `remWord#` y#))
+        | otherwise                 = divZeroError "quotRem{Word64}" x
+    divMod  x@(W64# x#) y@(W64# y#)
+        | y /= 0                    = (W64# (x# `quotWord#` y#), W64# (x# `remWord#` y#))
+        | otherwise                 = divZeroError "quotRem{Word64}" x
+    toInteger (W64# x#)
+        | i# >=# 0#                 = S# i#
+        | otherwise                 = case word2Integer# x# of (# s, d #) -> J# s d
+        where
+        i# = word2Int# x#
 
-instance Ord Word64     where 
-  compare (W64# x#) (W64# y#) = compareWord64# x# y#
-  (<)  (W64# x) (W64# y)      = x `ltWord64#` y
-  (<=) (W64# x) (W64# y)      = x `leWord64#` y
-  (>=) (W64# x) (W64# y)      = x `geWord64#` y
-  (>)  (W64# x) (W64# y)      = x `gtWord64#` y
-  max x@(W64# x#) y@(W64# y#) = 
-     case (compareWord64# x# y#) of { LT -> y ; EQ -> x ; GT -> x }
-  min x@(W64# x#) y@(W64# y#) =
-     case (compareWord64# x# y#) of { LT -> x ; EQ -> x ; GT -> y }
+instance Bits Word64 where
+    (W64# x#) .&.   (W64# y#)  = W64# (x# `and#` y#)
+    (W64# x#) .|.   (W64# y#)  = W64# (x# `or#`  y#)
+    (W64# x#) `xor` (W64# y#)  = W64# (x# `xor#` y#)
+    complement (W64# x#)       = W64# (x# `xor#` mb#) where W64# mb# = maxBound
+    (W64# x#) `shift` (I# i#)
+        | i# >=# 0#            = W64# (x# `shiftL#` i#)
+        | otherwise            = W64# (x# `shiftRL#` negateInt# i#)
+    (W64# x#) `rotate` (I# i#) = W64# ((x# `shiftL#` i'#) `or#`
+                                       (x# `shiftRL#` (64# -# i'#)))
+        where
+        i'# = word2Int# (int2Word# i# `and#` int2Word# 63#)
+    bitSize  _                = 64
+    isSigned _                = False
 
-instance Num Word64 where
-  (W64# x) + (W64# y) = 
-      W64# (int64ToWord64# (word64ToInt64# x `plusInt64#` word64ToInt64# y))
-  (W64# x) - (W64# y) = 
-      W64# (int64ToWord64# (word64ToInt64# x `minusInt64#` word64ToInt64# y))
-  (W64# x) * (W64# y) = 
-      W64# (int64ToWord64# (word64ToInt64# x `timesInt64#` word64ToInt64# y))
-  negate w
-     | w == 0     = w
-     | otherwise  = maxBound - w
-
-  abs x         = x
-  signum        = signumReal
-  fromInteger i = integerToWord64 i
-  fromInt       = intToWord64
-
--- Note: no need to mask results here  as they cannot overflow.
--- ToDo: protect against div by zero.
-instance Integral Word64 where
-  div  (W64# x)  (W64# y)   = W64# (x `quotWord64#` y)
-  quot (W64# x)  (W64# y)   = W64# (x `quotWord64#` y)
-  rem  (W64# x)  (W64# y)   = W64# (x `remWord64#` y)
-  mod  (W64# x)  (W64# y)   = W64# (x `remWord64#` y)
-  quotRem (W64# x) (W64# y) = (W64# (x `quotWord64#` y), W64# (x `remWord64#` y))
-  divMod  (W64# x) (W64# y) = (W64# (x `quotWord64#` y), W64# (x `remWord64#` y))
-  toInteger w64             = word64ToInteger w64
-  toInt x                   = word64ToInt x
-
-compareWord64# :: Word64# -> Word64# -> Ordering
-compareWord64# i# j# 
- | i# `ltWord64#` j# = LT
- | i# `eqWord64#` j# = EQ
- | otherwise        = GT
-
--- Word64# primop wrappers:
-
-ltWord64# :: Word64# -> Word64# -> Bool
-ltWord64# x# y# = stg_ltWord64 x# y# /=# 0#
-
-leWord64# :: Word64# -> Word64# -> Bool
-leWord64# x# y# = stg_leWord64 x# y# /=# 0#
-
-eqWord64# :: Word64# -> Word64# -> Bool
-eqWord64# x# y# = stg_eqWord64 x# y# /=# 0#
-      
-neWord64# :: Word64# -> Word64# -> Bool
-neWord64# x# y# = stg_neWord64 x# y# /=# 0#
-      
-geWord64# :: Word64# -> Word64# -> Bool
-geWord64# x# y# = stg_geWord64 x# y# /=# 0#
-      
-gtWord64# :: Word64# -> Word64# -> Bool
-gtWord64# x# y# = stg_gtWord64 x# y# /=# 0#
-
-foreign import "stg_intToInt64" unsafe intToInt64# :: Int# -> Int64#
-foreign import "stg_int64ToWord64" unsafe int64ToWord64# :: Int64# -> Word64#
-foreign import "stg_word64ToInt64" unsafe word64ToInt64# :: Word64# -> Int64#
-foreign import "stg_wordToWord64" unsafe wordToWord64# :: Word# -> Word64#
-foreign import "stg_word64ToWord" unsafe word64ToWord# :: Word64# -> Word#
-foreign import "stg_negateInt64" unsafe negateInt64# :: Int64# -> Int64#
-foreign import "stg_remWord64" unsafe remWord64# :: Word64# -> Word64# -> Word64#
-foreign import "stg_quotWord64" unsafe quotWord64# :: Word64# -> Word64# -> Word64#
-foreign import "stg_timesInt64" unsafe timesInt64# :: Int64# -> Int64# -> Int64#
-foreign import "stg_minusInt64" unsafe minusInt64# :: Int64# -> Int64# -> Int64#
-foreign import "stg_plusInt64" unsafe plusInt64# :: Int64# -> Int64# -> Int64#
-foreign import "stg_gtWord64" unsafe stg_gtWord64 :: Word64# -> Word64# -> Int#
-foreign import "stg_geWord64" unsafe stg_geWord64 :: Word64# -> Word64# -> Int#
-foreign import "stg_neWord64" unsafe stg_neWord64 :: Word64# -> Word64# -> Int#
-foreign import "stg_eqWord64" unsafe stg_eqWord64 :: Word64# -> Word64# -> Int#
-foreign import "stg_leWord64" unsafe stg_leWord64 :: Word64# -> Word64# -> Int#
-foreign import "stg_ltWord64" unsafe stg_ltWord64 :: Word64# -> Word64# -> Int#
+{-# RULES
+"fromIntegral/a->Word64" fromIntegral = \x -> case fromIntegral x of W# x# -> W64# x#
+"fromIntegral/Word64->a" fromIntegral = \(W64# x#) -> fromIntegral (W# x#)
+  #-}
 
 #endif
 
-instance CCallable   Word64
+instance CCallable Word64
 instance CReturnable Word64
 
-instance Enum Word64 where
-    succ w         
-      | w == maxBound = succError "Word64"
-      | otherwise     = w+1
-    pred w         
-      | w == minBound = predError "Word64"
-      | otherwise     = w-1
-
-    toEnum i
-      | i >= 0    = intToWord64 i
-      | otherwise 
-      = toEnumError "Word64" i (minBound::Word64,maxBound::Word64)
-
-    fromEnum w
-      | w <= intToWord64 (maxBound::Int)
-      = word64ToInt w
-      | otherwise
-      = fromEnumError "Word64" w
-
-    enumFrom e1        = map integerToWord64 [word64ToInteger e1 .. word64ToInteger maxBound]
-    enumFromTo e1 e2   = map integerToWord64 [word64ToInteger e1 .. word64ToInteger e2]
-    enumFromThen e1 e2 = map integerToWord64 [word64ToInteger e1, word64ToInteger e2 .. word64ToInteger last]
-                      where 
-                         last :: Word64
-                         last 
-                          | e2 < e1   = minBound
-                          | otherwise = maxBound
-
-    enumFromThenTo e1 e2 e3 = map integerToWord64 [word64ToInteger e1, word64ToInteger e2 .. word64ToInteger e3]
-
 instance Show Word64 where
-  showsPrec p x = showsPrec p (word64ToInteger x)
-
-instance Read Word64 where
-  readsPrec _ s = [ (integerToWord64 x,r) | (x,r) <- readDec s ]
-
-instance Ix Word64 where
-    range (m,n)          = [m..n]
-    index b@(m,_) i
-          | inRange b i = word64ToInt (i-m)
-          | otherwise   = indexError b i "Word64"
-    inRange (m,n) i      = m <= i && i <= n
-
-instance Bounded Word64 where
-  minBound = 0
-  maxBound = minBound - 1
+    showsPrec p x = showsPrec p (toInteger x)
 
 instance Real Word64 where
-  toRational x = toInteger x % 1
-
-#if WORD_SIZE_IN_BYTES == 8
-
-instance Bits Word64 where
-  (W64# x)  .&.  (W64# y)    = W64# (x `and#` y)
-  (W64# x)  .|.  (W64# y)    = W64# (x `or#` y)
-  (W64# x) `xor` (W64# y)    = W64# (x `xor#` y)
-  complement (W64# x)        = W64# (x `xor#` (case (maxBound::Word64) of W64# x# -> x#))
-  shift (W64# x#) i@(I# i#)
-       | i > 0     = W64# (shiftL# x# i#)
-       | otherwise = W64# (shiftRL# x# (negateInt# i#))
-
-  w@(W64# x)  `rotate` (I# i)
-        | i ==# 0#    = w
-       | i ># 0#     = W64# (shiftL# x i') `or#`
-                             (shiftRL# (x `and#` 
-                                       (int2Word# (word2Int# maxBound# -# pow2# i2 +# 1#)))
-                                    i2))
-       | otherwise = rotate w (I# (64# +# i))
-          where
-           i' = word2Int# (int2Word# i `and#` int2Word# 63#)
-           i2 = 64# -# i'
-           (W64# maxBound#) = maxBound
-
-  bit (I# i#)
-       | i# >=# 0# && i# <=# 63# = W64# (shiftL# (int2Word# 1#) i#)
-       | otherwise = 0 -- We'll be overbearing, for now..
-
-  testBit (W64# x#) (I# i#)
-    | i# <# 64# && i# >=# 0# = (word2Int# (x# `and#` (shiftL# (int2Word# 1#) i#))) /=# 0#
-    | otherwise              = False -- for now, this is really an error.
-
-  bitSize  _    = 64
-  isSigned _    = False
-
-#else /* WORD_SIZE_IN_BYTES < 8 */
-
-instance Bits Word64 where
-  (W64# x)  .&.  (W64# y)    = W64# (x `and64#` y)
-  (W64# x)  .|.  (W64# y)    = W64# (x `or64#` y)
-  (W64# x) `xor` (W64# y)    = W64# (x `xor64#` y)
-  complement (W64# x)        = W64# (x `xor64#` (case (maxBound::Word64) of W64# x# -> x#))
-  shift (W64# x#) i@(I# i#)
-       | i > 0     = W64# (shiftL64# x# i#)
-       | otherwise = W64# (shiftRL64# x# (negateInt# i#))
-
-  w@(W64# x)  `rotate` (I# i)
-        | i ==# 0#    = w
-       | i ># 0#     = W64# ((shiftL64# x i') `or64#`
-                             (shiftRL64# (x `and64#` 
-                                          (int64ToWord64# ((word64ToInt64# maxBound#) `minusInt64#` 
-                                                          (pow2_64# i2 `plusInt64#` (intToInt64# 1#))))))
-                                    i2)
-       | otherwise = rotate w (I# (64# +# i))
-          where
-           i' = word2Int# (int2Word# i `and#` int2Word# 63#)
-           i2 = 64# -# i'
-           (W64# maxBound#) = maxBound
-
-  bit (I# i#)
-       | i# >=# 0# && i# <=# 63# = W64# (shiftL64# (wordToWord64# (int2Word# 1#)) i#)
-       | otherwise = 0 -- We'll be overbearing, for now..
-
-  testBit (W64# x#) (I# i#)
-    | i# <# 64# && i# >=# 0# = (word2Int# (word64ToWord# (x# `and64#` (shiftL64# (wordToWord64# (int2Word# 1#)) i#)))) /=# 0#
-    | otherwise              = False -- for now, this is really an error.
-
-  bitSize  _    = 64
-  isSigned _    = False
-
-foreign import "stg_not64"     unsafe not64#    :: Word64# -> Word64#
-foreign import "stg_xor64"     unsafe xor64#    :: Word64# -> Word64# -> Word64#
-foreign import "stg_or64"      unsafe or64#     :: Word64# -> Word64# -> Word64#
-foreign import "stg_and64"     unsafe and64#    :: Word64# -> Word64# -> Word64#
-foreign import "stg_shiftRL64" unsafe shiftRL64# :: Word64# -> Int# -> Word64#
-foreign import "stg_shiftL64"  unsafe shiftL64#  :: Word64# -> Int# -> Word64#
-
-#endif /* WORD_SIZE_IN_BYTES < 8 */
-\end{code}
-
-Misc utils.
-
-\begin{code}
-signumReal :: (Ord a, Num a) => a -> a
-signumReal x | x == 0    =  0
-            | x > 0     =  1
-            | otherwise = -1
-\end{code}
-
-Utils for generating friendly error messages.
-
-\begin{code}
-toEnumError :: (Show a,Show b) => String -> a -> (b,b) -> c
-toEnumError inst_ty tag bnds
-  = error ("Enum.toEnum{" ++ inst_ty ++ "}: tag " ++
-           (showParen True (showsPrec 0 tag) $
-            " is outside of bounds " ++
-            show bnds))
-
-fromEnumError :: (Show a,Show b) => String -> a -> b
-fromEnumError inst_ty tag
-  = error ("Enum.fromEnum{" ++ inst_ty ++ "}: value " ++
-           (showParen True (showsPrec 0 tag) $
-            " is outside of Int's bounds " ++
-            show (minBound::Int,maxBound::Int)))
+    toRational x = toInteger x % 1
 
-succError :: String -> a
-succError inst_ty
-  = error ("Enum.succ{" ++ inst_ty ++ "}: tried to take `succ' of maxBound")
+instance Bounded Word64 where
+    minBound = 0
+    maxBound = 0xFFFFFFFFFFFFFFFF
 
-predError :: String -> a
-predError inst_ty
-  = error ("Enum.pred{" ++ inst_ty ++ "}: tried to take `pred' of minBound")
+instance Ix Word64 where
+    range (m,n)       = [m..n]
+    index b@(m,_) i
+        | inRange b i = fromIntegral (i - m)
+        | otherwise   = indexError b i "Word64"
+    inRange (m,n) i   = m <= i && i <= n
 
-divZeroError :: (Show a) => String -> a -> b
-divZeroError meth v 
-  = error ("Integral." ++ meth ++ ": divide by 0 (" ++ show v ++ " / 0)")
+instance Read Word64 where
+    readsPrec p s = [(fromInteger x, r) | (x, r) <- readsPrec p s]
 \end{code}