{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TemplateHaskell #-}
{-# OPTIONS_GHC -O0 #-}
module Clash.Annotations.BitRepresentation.Deriving
(
deriveAnnotation
, deriveBitPack
, deriveDefaultAnnotation
, derivePackedAnnotation
, derivePackedMaybeAnnotation
, deriveBlueSpecAnnotation
, defaultDerivator
, blueSpecDerivator
, packedDerivator
, packedMaybeDerivator
, simpleDerivator
, dontApplyInHDL
, ConstructorType(..)
, FieldsType(..)
, Derivator
, DataReprAnnExp
) where
import Clash.Annotations.BitRepresentation
(DataReprAnn(..), ConstrRepr(..), BitMask, Value, Size, liftQ)
import Clash.Annotations.BitRepresentation.Internal
(dataReprAnnToDataRepr', constrReprToConstrRepr', DataRepr'(..))
import Clash.Annotations.BitRepresentation.Util
(bitOrigins, bitOrigins', BitOrigin(..), bitRanges, Bit)
import qualified Clash.Annotations.BitRepresentation.Util
as Util
import Clash.Class.BitPack
(BitPack, BitSize, pack, packXWith, unpack)
import Clash.Class.Resize (resize)
import Language.Haskell.TH.Compat (mkTySynInstD)
import Clash.Sized.BitVector (BitVector, low, (++#))
import Clash.Sized.Internal.BitVector (undefined#)
import Control.DeepSeq (NFData)
import Control.Monad (forM)
import Data.Bits
(shiftL, shiftR, complement, (.&.), (.|.), zeroBits, popCount, bit, testBit,
Bits, setBit)
import Data.Data (Data)
import Data.List
(mapAccumL, zipWith4, sortOn, partition)
import Data.Typeable (Typeable)
import qualified Data.Map as Map
import Data.Maybe (fromMaybe)
import qualified Data.Set as Set
import Data.Proxy (Proxy(..))
import GHC.Exts (Int(I#))
import GHC.Generics (Generic)
import GHC.Integer.Logarithms (integerLog2#)
import GHC.TypeLits (natVal)
import Language.Haskell.TH
import Language.Haskell.TH.Syntax
data BitMaskOrigin
= External
| Embedded BitMask Value
deriving (Show, Data, Typeable, Lift)
isExternal :: BitMaskOrigin -> Bool
isExternal External = True
isExternal _ = False
type ReprAnnCache = Map.Map Type DataReprAnn
type NameMap = Map.Map Name Type
type DataReprAnnExp = Exp
type Derivator = Type -> Q DataReprAnnExp
data ConstructorType
= Binary
| OneHot
data FieldsType
= OverlapL
| OverlapR
| Wide
msb :: Integer -> Int
msb 0 = error $ "Most significant bit does not exist for zero."
msb 1 = 0
msb n = 1 + msb (shiftR n 1)
mkReprAnnCache :: [DataReprAnn] -> ReprAnnCache
mkReprAnnCache anns =
Map.fromList [(typ, rAnn) | rAnn@(DataReprAnn typ _ _) <- anns]
integerLog2Ceil :: Integer -> Int
integerLog2Ceil n =
let nlog2 = fromIntegral $ I# (integerLog2# n) in
if n > 2^nlog2 then nlog2 + 1 else nlog2
bitsNeeded :: Integer -> Int
bitsNeeded = integerLog2Ceil
tyVarBndrName :: TyVarBndr -> Name
tyVarBndrName (PlainTV n) = n
tyVarBndrName (KindedTV n _k) = n
resolve :: NameMap -> Type -> Type
resolve nmap (VarT n) = nmap Map.! n
resolve nmap (AppT t1 t2) = AppT (resolve nmap t1) (resolve nmap t2)
resolve _nmap t@(ConT _) = t
resolve _nmap t@(LitT _) = t
resolve _nmap t@(TupleT _) = t
resolve _nmap t = error $ "Unexpected type: " ++ show t
resolveCon :: NameMap -> Con -> Con
resolveCon nmap (NormalC t (unzip -> (bangs, fTypes))) =
NormalC t $ zip bangs $ map (resolve nmap) fTypes
resolveCon _name constr =
error $ "Unexpected constructor: " ++ show constr
collectTypeArgs :: Type -> (Type, [Type])
collectTypeArgs t@(ConT _name) = (t, [])
collectTypeArgs (AppT t1 t2) =
let (base, args) = collectTypeArgs t1 in
(base, args ++ [t2])
collectTypeArgs t =
error $ "Unexpected type: " ++ show t
typeSize :: Type -> Q Exp
typeSize typ = do
bitSizeInstances <- reifyInstances ''BitSize [typ]
case bitSizeInstances of
[] ->
fail $ unwords [
"Could not find custom bit representation nor BitSize instance"
, "for", show typ ++ "." ]
#if MIN_VERSION_template_haskell(2,15,0)
[TySynInstD (TySynEqn _ _ (LitT (NumTyLit n)))] ->
#else
[TySynInstD _ (TySynEqn _ (LitT (NumTyLit n)))] ->
#endif
[| n |]
[_impl] ->
[| fromIntegral $ natVal (Proxy :: Proxy (BitSize $(return typ))) |]
unexp ->
fail $ "Unexpected result from reifyInstances: " ++ show unexp
bitmask
:: Int
-> Int
-> Integer
bitmask _start 0 = 0
bitmask start size
| start < 0 = error $ "Start cannot be <0. Was: " ++ show start
| size < 0 = error $ "Size cannot be <0. Was: " ++ show size
| start + 1 < size = error $ "Start + 1 (" ++ show start ++ " - 1) cannot be smaller than size (" ++ show size ++ ")."
| otherwise = shiftL (2^(toInteger size) - 1) (start - (size - 1))
fieldTypes :: Con -> [Type]
fieldTypes (NormalC _nm bTys) =
[ty | (_, ty) <- bTys]
fieldTypes (RecC _nm bTys) =
[ty | (_, _, ty) <- bTys]
fieldTypes (InfixC (_, ty1) _nm (_, ty2)) =
[ty1, ty2]
fieldTypes con =
error $ "Unexpected constructor type: " ++ show con
conName :: Con -> Name
conName c = case c of
NormalC nm _ -> nm
RecC nm _ -> nm
InfixC _ nm _ -> nm
_ -> error $ "No GADT support"
constrFieldSizes
:: Con
-> (Name, [Q Exp])
constrFieldSizes con = do
(conName con, map typeSize $ fieldTypes con)
complementInteger :: Int -> Integer -> Integer
complementInteger 0 _i = 0
complementInteger size i =
let size' = size - 1 in
if testBit i size' then
complementInteger size' i
else
(.|.) (bit size') (complementInteger size' i)
deriveAnnotation :: Derivator -> Q Type -> Q [Dec]
deriveAnnotation deriv typ =
return <$> pragAnnD ModuleAnnotation (deriv =<< typ)
buildConstrRepr
:: Q Exp
-> Name
-> [Q Exp]
-> BitMask
-> Value
-> Q Exp
buildConstrRepr dataSize constrName fieldAnns constrMask constrValue = [|
ConstrRepr
constrName
$mask
$value
$(listE fieldAnns)
|]
where
mask = [| shiftL constrMask ($dataSize)|]
value = [| shiftL constrValue ($dataSize)|]
countConstructor :: [Int] -> [(BitMask, Value)]
countConstructor ns = zip (repeat mask) (map toInteger ns)
where
maskSize = bitsNeeded $ toInteger $ maximum ns + 1
mask = 2^maskSize - 1
oneHotConstructor :: [Int] -> [(BitMask, Value)]
oneHotConstructor ns = zip values values
where
values = [shiftL 1 n | n <- ns]
overlapFieldAnnsL :: [[Q Exp]] -> [[Q Exp]]
overlapFieldAnnsL fieldSizess = map go fieldSizess
where
fieldSizess' = listE $ map listE fieldSizess
constructorSizes = [| map sum $fieldSizess' |]
go fieldSizes =
snd $
mapAccumL
(\start size -> ([| $start - $size |], [| bitmask $start $size |]))
[| maximum $constructorSizes - 1 |]
fieldSizes
overlapFieldAnnsR :: [[Q Exp]] -> [[Q Exp]]
overlapFieldAnnsR fieldSizess = map go fieldSizess
where
fieldSizess' = listE $ map listE fieldSizess
constructorSizes = [| map sum $fieldSizess' |]
go fieldSizes =
snd $
mapAccumL
(\start size -> ([| $start - $size |], [| bitmask $start $size |]))
[| maximum $constructorSizes - (maximum $constructorSizes - sum $(listE fieldSizes)) - 1 |]
fieldSizes
wideFieldAnns :: [[Q Exp]] -> [[Q Exp]]
wideFieldAnns fieldSizess = zipWith id (map go constructorOffsets) fieldSizess
where
constructorSizes =
map (AppE (VarE 'sum) <$>) (map listE fieldSizess)
constructorOffsets :: [Q Exp]
constructorOffsets =
init $
scanl
(\offset size -> [| $offset + $size |])
[| 0 |]
constructorSizes
dataSize = [| sum $(listE constructorSizes) |]
go :: Q Exp -> [Q Exp] -> [Q Exp]
go offset fieldSizes =
snd $
mapAccumL
(\start size -> ([| $start - $size |], [| bitmask $start $size |]))
[| $dataSize - 1 - $offset |]
fieldSizes
deriveDataRepr
:: ([Int] -> [(BitMask, Value)])
-> ([[Q Exp]] -> [[Q Exp]])
-> Derivator
deriveDataRepr constrDerivator fieldsDerivator typ = do
info <- reify tyConstrName
case info of
(TyConI (DataD [] _constrName vars _kind dConstructors _clauses)) ->
let varMap = Map.fromList $ zip (map tyVarBndrName vars) typeArgs in
let resolvedConstructors = map (resolveCon varMap) dConstructors in do
let
(constrNames, fieldSizess) =
unzip $ map constrFieldSizes resolvedConstructors
let
(constrMasks, constrValues) =
unzip $ constrDerivator [0..length dConstructors - 1]
let constrSize = 1 + (msb $ maximum constrMasks)
let fieldAnns = fieldsDerivator fieldSizess
let fieldAnnsFlat = listE $ concat fieldAnns
let dataSize | null $ concat fieldAnns = [| 0 |]
| otherwise = [| 1 + (msb $ maximum $ $fieldAnnsFlat) |]
let constrReprs = zipWith4
(buildConstrRepr dataSize)
constrNames
fieldAnns
constrMasks
constrValues
[| DataReprAnn
$(liftQ $ return typ)
($dataSize + constrSize)
$(listE constrReprs) |]
_ ->
fail $ "Could not derive dataRepr for: " ++ show info
where
(ConT tyConstrName, typeArgs) = collectTypeArgs typ
simpleDerivator :: ConstructorType -> FieldsType -> Derivator
simpleDerivator ctype ftype = deriveDataRepr constrDerivator fieldsDerivator
where
constrDerivator =
case ctype of
Binary -> countConstructor
OneHot -> oneHotConstructor
fieldsDerivator =
case ftype of
OverlapL -> overlapFieldAnnsL
OverlapR -> overlapFieldAnnsR
Wide -> wideFieldAnns
defaultDerivator :: Derivator
defaultDerivator = simpleDerivator Binary OverlapL
blueSpecDerivator :: Derivator
blueSpecDerivator = simpleDerivator Binary OverlapR
deriveDefaultAnnotation :: Q Type -> Q [Dec]
deriveDefaultAnnotation = deriveAnnotation defaultDerivator
deriveBlueSpecAnnotation :: Q Type -> Q [Dec]
deriveBlueSpecAnnotation = deriveAnnotation blueSpecDerivator
toBits'
:: Bits a
=> Size
-> a
-> [Bit']
toBits' 0 _ = []
toBits' size bits = bit' : toBits' (size - 1) bits
where bit' = if testBit bits (size - 1) then H else L
bitsToInteger' :: (Bit' -> Bool) -> [Bit'] -> Integer
bitsToInteger' predFunc bits = foldl setBit 0 toSet
where
toSet = [n | (n, b) <- zip [0..] (reverse bits), predFunc b]
bitsToInteger :: [Bit'] -> Integer
bitsToInteger = bitsToInteger' (==H)
bitsToMask :: [Bit'] -> Integer
bitsToMask = bitsToInteger' (\b -> b == H || b == L)
data Bit'
= X
| L
| H
| U
deriving (Show, Eq, Generic, NFData)
complementValues
:: Size
-> [[Bit']]
-> [[Bit']]
complementValues 0 _ = []
complementValues 1 xs
| X `elem` xs' = []
| H `elem` xs' && L `elem` xs' = []
| H `elem` xs' = [[L]]
| otherwise = [[H]]
where
xs' = map head xs
complementValues size [] = [replicate size U]
complementValues size values =
if | all (==U) (map head values') -> map (U:) (recc (map tail values'))
| any (==X) (map head values') -> map (X:) (recc (map tail values'))
| otherwise ->
(map (L:) (recc (map tail lows))) ++
(map (H:) (recc (map tail highs')))
where
values' = filter (any (/= U)) values
recc = complementValues (size - 1)
(highs, lows) = partition ((== H) . head) values'
highs' = highs ++ filter ((`elem` [X, U]) . head) values'
possibleValues
:: ReprAnnCache
-> Type
-> Size
-> Q [[Bit']]
possibleValues typeMap typ size =
let (ConT typeName, _typeArgs) = collectTypeArgs typ in
case Map.lookup typ typeMap of
Nothing -> do
info <- reify typeName
case info of
(TyConI (DataD [] _constrName _vars _kind dConstructors _clauses)) ->
let nConstrBits = bitsNeeded (toInteger $ length dConstructors) in
let fieldBits = replicate (size - nConstrBits) X in
let constrBits = [toBits' nConstrBits n | n <- [0..length dConstructors - 1]] in
return $ zipWith (++) constrBits (repeat fieldBits)
_ ->
return [replicate size X]
Just (dataReprAnnToDataRepr' -> dataRepr) ->
let (DataRepr' _name _size constrs) = dataRepr in
forM constrs $ \constr -> do
return $
map
(\case { Lit [Util.H] -> H;
Lit [Util.L] -> L;
Lit [Util.U] -> U;
Field _ _ _ -> X;
c -> error $ "possibleValues (2): unexpected: " ++ show c; })
(bitOrigins' dataRepr constr)
packedMaybe :: Size -> Type -> Q (Maybe DataReprAnn)
packedMaybe size typ = do
cache <- mkReprAnnCache <$> collectDataReprs
values <- possibleValues cache typ size
return $ case complementValues size values of
(value:_) ->
Just $ DataReprAnn
(AppT (ConT ''Maybe) typ)
size
[ ConstrRepr
'Nothing
(bitsToMask value)
(bitsToInteger value)
[]
, ConstrRepr
'Just
0
0
[bitmask (size - 1) size] ]
[] ->
Nothing
packedMaybeDerivator :: DataReprAnn -> Derivator
packedMaybeDerivator (DataReprAnn _ size _) typ =
case maybeCon of
ConT nm ->
if nm == ''Maybe then do
let err = unwords [ "Could not derive packed maybe for:", show typ
, ";", "Does its subtype have any space left to store"
, "the constructor in?" ]
packedM <- packedMaybe (size - 1) maybeTyp
(fromMaybe (fail err) . fmap lift) packedM
else
fail $ unwords [ "You can only pass Maybe types to packedMaybeDerivator,"
, "not", show nm]
unexpected ->
fail $ "packedMaybeDerivator: unexpected constructor: " ++ show unexpected
where
(maybeCon, head -> maybeTyp) = collectTypeArgs typ
derivePackedMaybeAnnotation :: DataReprAnn -> Q [Dec]
derivePackedMaybeAnnotation defaultDataRepr@(DataReprAnn typ _ _) = do
deriveAnnotation (packedMaybeDerivator defaultDataRepr) (return typ)
packedConstrRepr
:: Int
-> Int
-> Int
-> [(BitMaskOrigin, ConstrRepr)]
-> [ConstrRepr]
packedConstrRepr _ _ _ [] = []
packedConstrRepr dataWidth constrWidth n ((External, ConstrRepr name _ _ anns) : constrs) =
constr : packedConstrRepr dataWidth constrWidth (n+1) constrs
where
constr =
ConstrRepr
name
(shiftL (2^constrWidth - 1) dataWidth)
(shiftL (toInteger n) dataWidth)
anns
packedConstrRepr dataWidth constrWidth n ((Embedded mask value, ConstrRepr name _ _ anns) : constrs) =
constr : packedConstrRepr dataWidth constrWidth n constrs
where
constr =
ConstrRepr
name
mask
value
anns
packedDataRepr
:: Type
-> Size
-> [(BitMaskOrigin, ConstrRepr)]
-> DataReprAnn
packedDataRepr typ dataWidth constrs =
DataReprAnn
typ
(dataWidth + constrWidth)
(packedConstrRepr dataWidth constrWidth 0 constrs)
where
external = filter isExternal (map fst constrs)
constrWidth = bitsNeeded $ toInteger $ min (length external + 1) (length constrs)
storeInFields
:: Int
-> BitMask
-> [BitMask]
-> [BitMaskOrigin]
storeInFields _dataWidth _additionalMask [] = []
storeInFields _dataWidth _additionalMask [_] =
[Embedded 0 0]
storeInFields dataWidth additionalMask constrs =
if commonMask == fullMask then
External : storeInFields dataWidth additionalMask (tail constrs)
else
maskOrigins ++ (storeInFields dataWidth additionalMask' (drop storeSize constrs))
where
headMask = head constrs
commonMask = (.|.) headMask additionalMask
storeMask = complementInteger dataWidth commonMask
additionalMask' = (.|.) additionalMask storeMask
storeSize = 2^(popCount storeMask) - 1
maskOrigins = [Embedded storeMask (toInteger n) | n <- [1..storeSize]]
fullMask = 2^dataWidth - 1
derivePackedAnnotation' :: DataReprAnn -> DataReprAnn
derivePackedAnnotation' (DataReprAnn typ size constrs) =
dataRepr
where
constrWidth = bitsNeeded $ toInteger $ length constrs
dataWidth = size - constrWidth
fieldMasks = [foldl (.|.) zeroBits anns | ConstrRepr _ _ _ anns <- constrs]
sortedMasks = reverse $ sortOn fst $ zip fieldMasks constrs
origins = storeInFields dataWidth zeroBits (map fst sortedMasks)
constrs' = zip origins $ map snd sortedMasks
dataRepr = packedDataRepr typ dataWidth constrs'
packedDerivator :: Derivator
packedDerivator typ =
[| derivePackedAnnotation' $(defaultDerivator typ ) |]
derivePackedAnnotation :: Q Type -> Q [Dec]
derivePackedAnnotation = deriveAnnotation packedDerivator
collectDataReprs :: Q [DataReprAnn]
collectDataReprs = do
thisMod <- thisModule
go [thisMod] Set.empty []
where
go [] _visited acc = return acc
go (x:xs) visited acc
| x `Set.member` visited = go xs visited acc
| otherwise = do
ModuleInfo newMods <- reifyModule x
newAnns <- reifyAnnotations $ AnnLookupModule x
go (newMods ++ xs) (x `Set.insert` visited) (newAnns ++ acc)
group :: [Bit] -> [(Int, Bit)]
group [] = []
group bs = (length head', head bs) : rest
where
tail' = dropWhile (==head bs) bs
head' = takeWhile (==head bs) bs
rest = group tail'
bitToExpr' :: (Int, Bit) -> Q Exp
bitToExpr' (0, _) = fail $ "Unexpected group length: 0"
bitToExpr' (numTyLit' -> n, Util.H) =
[| complement (resize (pack low) :: BitVector $n) |]
bitToExpr' (numTyLit' -> n, Util.L) =
[| resize (pack low) :: BitVector $n |]
bitToExpr' (numTyLit' -> n, _) =
[| undefined# :: BitVector $n |]
bitsToExpr :: [Bit] -> Q Exp
bitsToExpr [] = fail $ "Unexpected empty bit list"
bitsToExpr bits =
foldl1
(\v1 v2 -> [| $v1 ++# $v2 |])
(map bitToExpr' $ group bits)
numTyLit' :: Integral a => a -> Q Type
numTyLit' n = LitT <$> (numTyLit $ toInteger n)
select'
:: Exp
-> [(Int, Int)]
-> Q Exp
select' _vec [] =
fail $ "Unexpected empty list of intervals"
select' vec ranges =
foldl1 (\v1 v2 -> [| $v1 ++# $v2 |]) $ map (return . select'') ranges
where
select'' :: (Int, Int) -> Exp
select'' (from, downto) =
let size = from - downto + 1 in
let
shifted
| downto == 0 =
vec
| otherwise =
AppE
(AppE (VarE 'shiftR) vec)
(LitE $ IntegerL $ toInteger downto) in
SigE
(AppE (VarE 'resize) shifted)
(AppT (ConT ''BitVector) (LitT $ NumTyLit $ toInteger size))
select
:: [Exp]
-> BitOrigin
-> Q Exp
select _fields (Lit []) =
fail $ "Unexpected empty literal."
select _fields (Lit lits) = do
let size = length lits
vec <- bitsToExpr lits
return $ SigE
vec
(AppT (ConT ''BitVector) (LitT $ NumTyLit $ toInteger size))
select fields (Field fieldn from downto) =
select' (fields !! fieldn) [(from, downto)]
buildPackMatch
:: DataReprAnn
-> ConstrRepr
-> Q Match
buildPackMatch dataRepr cRepr@(ConstrRepr name _ _ fieldanns) = do
fieldNames <-
mapM (\n -> newName $ "field" ++ show n) [0..length fieldanns-1]
fieldPackedNames <-
mapM (\n -> newName $ "fieldPacked" ++ show n) [0..length fieldanns-1]
let packed fName = AppE (VarE 'pack) (VarE fName)
let pack' pName fName = ValD (VarP pName) (NormalB $ packed fName) []
let fieldPackedDecls = zipWith pack' fieldPackedNames fieldNames
let origins = bitOrigins
(dataReprAnnToDataRepr' dataRepr)
(constrReprToConstrRepr' undefined cRepr)
vec <- foldl1
(\v1 v2 -> [| $v1 ++# $v2 |])
(map (select $ map VarE fieldPackedNames) origins)
return $ Match (ConP name (VarP <$> fieldNames)) (NormalB vec) fieldPackedDecls
buildPack
:: DataReprAnn
-> Q [Dec]
buildPack dataRepr@(DataReprAnn _name _size constrs) = do
argNameIn <- newName "toBePackedIn"
argName <- newName "toBePacked"
constrs' <- mapM (buildPackMatch dataRepr) constrs
let packBody = CaseE (VarE argName) constrs'
let packLambda = LamE [VarP argName] packBody
let packApplied = (VarE 'dontApplyInHDL) `AppE` (VarE 'packXWith `AppE` packLambda) `AppE` (VarE argNameIn)
let func = FunD 'pack [Clause [VarP argNameIn] (NormalB packApplied) []]
return [func]
dontApplyInHDL :: (a -> b) -> a -> b
dontApplyInHDL f a = f a
{-# NOINLINE dontApplyInHDL #-}
buildUnpackField
:: Name
-> Integer
-> Q Exp
buildUnpackField valueName mask =
let ranges = bitRanges mask in
let vec = select' (VarE valueName) ranges in
[| unpack $vec |]
buildUnpackIfE
:: Name
-> ConstrRepr
-> Q (Guard, Exp)
buildUnpackIfE valueName (ConstrRepr name mask value fieldanns) = do
let valueName' = return $ VarE valueName
guard <- NormalG <$> [| ((.&.) $valueName' mask) == value |]
fields <- mapM (buildUnpackField valueName) fieldanns
return (guard, foldl AppE (ConE name) fields)
buildUnpack
:: DataReprAnn
-> Q [Dec]
buildUnpack (DataReprAnn _name _size constrs) = do
argNameIn <- newName "toBeUnpackedIn"
argName <- newName "toBeUnpacked"
matches <- mapM (buildUnpackIfE argName) constrs
let fallThroughLast [] = []
fallThroughLast [(_,e)] = [(NormalG (ConE 'True), e)]
fallThroughLast (x:xs) = x:fallThroughLast xs
let unpackBody = MultiIfE (fallThroughLast matches)
let unpackLambda = LamE [VarP argName] unpackBody
let unpackApplied = (VarE 'dontApplyInHDL) `AppE` unpackLambda `AppE` (VarE argNameIn)
let func = FunD 'unpack [Clause [VarP argNameIn] (NormalB unpackApplied) []]
return [func]
deriveBitPack :: Q Type -> Q [Dec]
deriveBitPack typQ = do
anns <- collectDataReprs
typ <- typQ
ann <- case filter (\(DataReprAnn t _ _) -> t == typ) anns of
[a] -> return a
[] -> fail "No custom bit annotation found."
_ -> fail "Overlapping bit annotations found."
packFunc <- buildPack ann
unpackFunc <- buildUnpack ann
let (DataReprAnn _name dataSize _constrs) = ann
let bitSizeInst = mkTySynInstD ''BitSize [typ] (LitT (NumTyLit $ toInteger dataSize))
let bpInst = [ InstanceD
(Just Overlapping)
[]
(AppT (ConT ''BitPack) typ)
(bitSizeInst : packFunc ++ unpackFunc)
]
alreadyIsInstance <- isInstance ''BitPack [typ]
if alreadyIsInstance then
fail $ show typ ++ " already has a BitPack instance."
else
return bpInst