clash-prelude-1.2.2: src/Clash/Clocks/Deriving.hs
{-|
Copyright : (C) 2018, Google Inc
2019, Myrtle Software Ltd
License : BSD2 (see the file LICENSE)
Maintainer : Christiaan Baaij <christiaan.baaij@gmail.com>
-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
module Clash.Clocks.Deriving (deriveClocksInstances) where
import Control.Monad (foldM)
import Clash.Signal.Internal
import Language.Haskell.TH.Compat
import Language.Haskell.TH.Syntax
import Language.Haskell.TH.Lib
import Unsafe.Coerce (unsafeCoerce)
-- Derive instance for /n/ clocks
derive' :: Int -> Q Dec
derive' n = do
-- (Clock d0, Clock d1, )
instType0 <- foldM (\a n' -> AppT a <$> clkType n') (TupleT $ n + 1) [1..n]
instType1 <- AppT instType0 <$> lockType
let instHead = AppT (ConT $ mkName "Clocks") instType1
cxtRHS <- foldM (\a n' -> AppT a <$> knownDomainCxt n') (TupleT n) [1..n]
#if MIN_VERSION_template_haskell(2,15,0)
let cxtLHS = AppT (ConT $ mkName "ClocksCxt") instType1
let cxtTy = TySynInstD (TySynEqn Nothing cxtLHS cxtRHS)
#else
let cxtTy = TySynInstD (mkName "ClocksCxt") (TySynEqn [instType1] cxtRHS)
#endif
-- Function definition of 'clocks'
let clk = mkName "clk"
let rst = mkName "rst"
-- Implementation of 'clocks'
let noInline = PragmaD $ InlineP (mkName "clocks") NoInline FunLike AllPhases
let clkImpls = replicate n (clkImpl clk)
let instTuple = mkTupE $ clkImpls ++ [AppE (VarE 'unsafeCoerce) (VarE rst)]
let funcBody = NormalB instTuple
let instFunc = FunD (mkName "clocks") [Clause [VarP clk, VarP rst] funcBody []]
return $ InstanceD Nothing [] instHead [cxtTy, instFunc, noInline]
where
-- | Generate type @Clock dom@ with fresh @dom@ variable
clkType n' =
let c = varT $ mkName ("c" ++ show n') in
[t| Clock $c |]
knownDomainCxt n' =
let c = varT $ mkName ("c" ++ show n') in
[t| KnownDomain $c |]
-- | Generate type @Signal dom 'Bool@ with fresh @dom@ variable
lockType =
let c = varT $ mkName "pllLock" in
[t| Signal $c Bool |]
clkImpl clk = AppE (VarE 'unsafeCoerce) (VarE clk)
-- Derive instances for up to and including to /n/ clocks
deriveClocksInstances :: Int -> Q [Dec]
deriveClocksInstances n = mapM derive' [1..n]