#if MIN_VERSION_base(4,5,0)
#endif
module Data.Text.Internal.Unsafe.Shift
(
UnsafeShift(..)
) where
#if MIN_VERSION_base(4,5,0)
import qualified Data.Bits as Bits
import Data.Word
#else
import GHC.Base
import GHC.Word
#endif
class UnsafeShift a where
shiftL :: a -> Int -> a
#if MIN_VERSION_base(4,5,0)
default shiftL :: Bits.Bits a => a -> Int -> a
shiftL = Bits.unsafeShiftL
#endif
shiftR :: a -> Int -> a
#if MIN_VERSION_base(4,5,0)
default shiftR :: Bits.Bits a => a -> Int -> a
shiftR = Bits.unsafeShiftR
#endif
instance UnsafeShift Word16 where
#if !MIN_VERSION_base(4,5,0)
shiftL (W16# x#) (I# i#) = W16# (narrow16Word# (x# `uncheckedShiftL#` i#))
shiftR (W16# x#) (I# i#) = W16# (x# `uncheckedShiftRL#` i#)
#endif
instance UnsafeShift Word32 where
#if !MIN_VERSION_base(4,5,0)
shiftL (W32# x#) (I# i#) = W32# (narrow32Word# (x# `uncheckedShiftL#` i#))
shiftR (W32# x#) (I# i#) = W32# (x# `uncheckedShiftRL#` i#)
#endif
instance UnsafeShift Word64 where
#if !MIN_VERSION_base(4,5,0)
shiftL (W64# x#) (I# i#) = W64# (x# `uncheckedShiftL64#` i#)
shiftR (W64# x#) (I# i#) = W64# (x# `uncheckedShiftRL64#` i#)
#endif
instance UnsafeShift Int where
#if !MIN_VERSION_base(4,5,0)
shiftL (I# x#) (I# i#) = I# (x# `iShiftL#` i#)
shiftR (I# x#) (I# i#) = I# (x# `iShiftRA#` i#)
#endif