{-# LANGUAGE CPP #-}
{-# LANGUAGE MagicHash #-}
module Pinch.Internal.Bits
( w16ShiftL
, w32ShiftL
, w64ShiftL
) where
#if defined(__GLASGOW_HASKELL__) && !defined(__HADDOCK__)
import GHC.Base (
Int (..),
#if MIN_VERSION_base(4,16,0)
uncheckedShiftLWord16#,
uncheckedShiftLWord32#,
#endif
uncheckedShiftL#,
)
import GHC.Word (Word16 (..), Word32 (..), Word64 (..))
#else
import Data.Bits (shiftL)
import Data.Word (Word16, Word32, Word64)
#endif
{-# INLINE w16ShiftL #-}
w16ShiftL :: Word16 -> Int -> Word16
{-# INLINE w32ShiftL #-}
w32ShiftL :: Word32 -> Int -> Word32
{-# INLINE w64ShiftL #-}
w64ShiftL :: Word64 -> Int -> Word64
#if defined(__GLASGOW_HASKELL__) && !defined(__HADDOCK__)
#if MIN_VERSION_base(4,16,0)
w16ShiftL (W16# w) (I# i) = W16# (w `uncheckedShiftLWord16#` i)
w32ShiftL (W32# w) (I# i) = W32# (w `uncheckedShiftLWord32#` i)
#else
w16ShiftL :: Word16 -> Int -> Word16
w16ShiftL (W16# Word#
w) (I# Int#
i) = Word# -> Word16
W16# (Word#
w Word# -> Int# -> Word#
`uncheckedShiftL#` Int#
i)
w32ShiftL :: Word32 -> Int -> Word32
w32ShiftL (W32# Word#
w) (I# Int#
i) = Word# -> Word32
W32# (Word#
w Word# -> Int# -> Word#
`uncheckedShiftL#` Int#
i)
#endif
w64ShiftL :: Word64 -> Int -> Word64
w64ShiftL (W64# Word#
w) (I# Int#
i) = Word# -> Word64
W64# (Word#
w Word# -> Int# -> Word#
`uncheckedShiftL#` Int#
i)
#else
w16ShiftL = shiftL
w32ShiftL = shiftL
w64ShiftL = shiftL
#endif