clash-lib-1.4.3: src/Clash/Primitives/Sized/Vector.hs
{-|
Copyright : (C) 2020 QBayLogic
License : BSD2 (see the file LICENSE)
Maintainer : QBayLogic B.V. <devops@qbaylogic.com>
Blackbox implementations for functions in "Clash.Sized.Vector".
-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
module Clash.Primitives.Sized.Vector where
import Control.Monad (replicateM)
import Control.Monad.State (State, zipWithM)
import qualified Control.Lens as Lens
import Data.Either (rights)
import qualified Data.IntMap as IntMap
import Data.List.Extra (iterateNM)
import Data.Maybe (fromMaybe)
import Data.Semigroup.Monad (getMon)
import Data.Text.Lazy (pack)
import Data.Text.Prettyprint.Doc.Extra
(Doc, string, renderLazy, layoutPretty, LayoutOptions(..),
PageWidth(AvailablePerLine))
import Text.Trifecta.Result (Result(Success))
import qualified Data.String.Interpolate as I
import qualified Data.String.Interpolate.Util as I
import TextShow (showt)
import Clash.Backend
(Backend, hdlTypeErrValue, expr, blockDecl)
import Clash.Core.TermInfo (isVar)
import Clash.Core.Type
(Type(LitTy), LitTy(NumTy), coreView)
import Clash.Netlist.BlackBox (isLiteral)
import Clash.Netlist.BlackBox.Util (renderElem)
import Clash.Netlist.BlackBox.Parser (runParse)
import Clash.Netlist.BlackBox.Types
(BlackBoxFunction, BlackBoxMeta(..), TemplateKind(TExpr, TDecl),
Element(Component, Typ, TypElem, Text), Decl(Decl), emptyBlackBoxMeta)
import Clash.Netlist.Types
(Identifier, TemplateFunction, BlackBoxContext, HWType(Vector),
Declaration(..), Expr(BlackBoxE, Literal, Identifier), Literal(NumLit),
BlackBox(BBTemplate, BBFunction), TemplateFunction(..), WireOrReg(Wire),
Modifier(Indexed, Nested), bbInputs, bbResults, emptyBBContext, tcCache,
bbFunctions)
import qualified Clash.Netlist.Id as Id
import Clash.Netlist.Util (typeSize)
import qualified Clash.Primitives.DSL as Prim
import Clash.Primitives.DSL
(declarationReturn, instHO, tInputs, tExprToInteger)
import Clash.Util (HasCallStack, curLoc)
-- | Blackbox function for 'Clash.Sized.Vector.iterateI'
iterateBBF :: HasCallStack => BlackBoxFunction
iterateBBF _isD _primName args _resTy = do
tcm <- Lens.use tcCache
pure (Right (meta tcm, bb))
where
bb = BBFunction "Clash.Primitives.Sized.Vector.iterateBBF" 0 iterateTF
vecLength tcm =
case coreView tcm (head (rights args)) of
(LitTy (NumTy 0)) -> error "Unexpected empty vector in 'iterateBBF'"
(LitTy (NumTy n)) -> fromInteger (n - 1)
vl -> error $ "Unexpected vector length: " ++ show vl
meta tcm = emptyBlackBoxMeta {
bbKind=TDecl
, bbFunctionPlurality=[(1, vecLength tcm)]
}
-- | Type signature of function we're generating netlist for:
--
-- iterateI :: KnownNat n => (a -> a) -> a -> Vec n a
--
iterateTF :: TemplateFunction
iterateTF = TemplateFunction [] (const True) iterateTF'
iterateTF'
:: forall s
. (HasCallStack, Backend s)
=> BlackBoxContext
-> State s Doc
iterateTF' bbCtx
| [ (fromMaybe (error "n") . tExprToInteger -> n, _)
, _hoFunction
, (a, aType)
] <- tInputs bbCtx
, let aTemplateType = [TypElem (Typ (Just 2))]
, let inst arg = instHO bbCtx 1 (aType, aTemplateType) [(arg, aTemplateType)]
= declarationReturn bbCtx "iterateI" (fmap pure . Prim.vec =<< iterateNM (fromInteger n) inst a)
| otherwise
= error $ "Unexpected number of arguments: " ++ show (length (bbInputs bbCtx))
data FCall =
FCall
Identifier -- left
Identifier -- right
Identifier -- result
-- | Calculates the number of function calls needed for an evaluation of
-- 'Clash.Sized.Vector.fold', given the length of the vector given to fold.
foldFunctionPlurality :: HasCallStack => Int -> Int
foldFunctionPlurality 1 = 0
foldFunctionPlurality 2 = 1
foldFunctionPlurality n
| n <= 0 = error $ "functionPlurality: unexpected n: " ++ show n
| otherwise =
let (d, r) = n `divMod` 2 in
1 + foldFunctionPlurality d + foldFunctionPlurality (d+r)
-- | Blackbox function for 'Clash.Sized.Vector.fold'
foldBBF :: HasCallStack => BlackBoxFunction
foldBBF _isD _primName args _resTy = do
tcm <- Lens.use tcCache
pure (Right (meta tcm, bb))
where
bb = BBFunction "Clash.Primitives.Sized.Vector.foldTF" 0 foldTF
[vecLengthMinusOne, _] = rights args
vecLength tcm =
case coreView tcm vecLengthMinusOne of
(LitTy (NumTy n)) -> n + 1
vl -> error $ "Unexpected vector length: " ++ show vl
funcPlural tcm = foldFunctionPlurality (fromInteger (vecLength tcm))
meta tcm = emptyBlackBoxMeta {bbKind=TDecl, bbFunctionPlurality=[(0, funcPlural tcm)]}
-- | Type signature of function we're generating netlist for:
--
-- fold :: (a -> a -> a) -> Vec (n + 1) a -> a
--
-- The implementation promises to create a (balanced) tree structure.
foldTF :: TemplateFunction
foldTF = TemplateFunction [] (const True) foldTF'
foldTF' :: forall s . (HasCallStack, Backend s) => BlackBoxContext -> State s Doc
foldTF' bbCtx@(bbInputs -> [_f, (vec, vecType@(Vector n aTy), _isLiteral)]) = do
-- Create an id for every element in the vector
baseId <- Id.make "acc_0"
vecIds <- replicateM n (Id.next baseId)
vecId <- Id.make "vec"
let vecDecl = sigDecl vecType Wire vecId
vecAssign = Assignment vecId vec
elemAssigns = zipWith Assignment vecIds (map (iIndex vecId) [0..])
resultId =
case bbResults bbCtx of
[(Identifier t _, _)] -> t
_ -> error "Unexpected result identifier"
-- Create a list of function calls to be made (creates identifiers for
-- intermediate result signals)
(concat -> fCalls, result) <- mkTree 1 vecIds
let intermediateResultIds = concatMap (\(FCall l r _) -> [l, r]) fCalls
wr = case IntMap.lookup 0 (bbFunctions bbCtx) of
Just ((_,rw,_,_,_,_):_) -> rw
_ -> error "internal error"
sigDecls = zipWith (sigDecl aTy) (wr:replicate n Wire ++ repeat wr)
(result : intermediateResultIds)
resultAssign = Assignment resultId (Identifier result Nothing)
callDecls <- zipWithM callDecl [0..] fCalls
foldNm <- Id.make "fold"
getMon $ blockDecl foldNm $
resultAssign :
vecAssign :
vecDecl :
elemAssigns ++
sigDecls ++
callDecls
where
callDecl :: Int -> FCall -> State s Declaration
callDecl fSubPos (FCall a b r) = do
rendered0 <- string =<< (renderElem bbCtx call <*> pure 0)
let layout = LayoutOptions (AvailablePerLine 120 0.4)
rendered1 = renderLazy (layoutPretty layout rendered0)
pure (
BlackBoxD
"__FOLD_BB_INTERNAL__"
[] [] []
(BBTemplate [Text rendered1])
(emptyBBContext "__FOLD_BB_INTERNAL__")
)
where
call = Component (Decl fPos fSubPos (resEl:aEl:[bEl]))
elTyp = [TypElem (Typ (Just vecPos))]
resEl = ([Text (Id.toLazyText r)], elTyp)
aEl = ([Text (Id.toLazyText a)], elTyp)
bEl = ([Text (Id.toLazyText b)], elTyp)
-- Argument no. of function
fPos = 0
-- Argument no. of vector
vecPos = 1
-- Create the whole tree
mkTree
:: Int
-- ^ Current level
-> [Identifier]
-- ^ Elements left to process
-> State s ( [[FCall]] -- function calls to be rendered
, Identifier -- result signal
)
mkTree _lvl [] = error "Unreachable?"
mkTree _lvl [res] = pure ([], res)
mkTree lvl results0 = do
(calls0, results1) <- mkLevel (lvl, 0) results0
(calls1, result) <- mkTree (lvl+1) results1
pure (calls0 : calls1, result)
-- Create a single layer of a tree
mkLevel
:: (Int, Int)
-- ^ (level, offset)
-> [Identifier]
-> State s ([FCall], [Identifier])
mkLevel (!lvl, !offset) (a:b:rest) = do
c <- Id.makeBasic ("acc_" <> showt lvl <> "_" <> showt offset)
(calls, results) <- mkLevel (lvl, offset+1) rest
pure (FCall a b c:calls, c:results)
mkLevel _lvl rest =
pure ([], rest)
-- Simple wire without comment
sigDecl :: HWType -> WireOrReg -> Identifier -> Declaration
sigDecl typ rw nm = NetDecl' Nothing rw nm (Right typ) Nothing
-- Index the intermediate vector. This uses a hack in Clash: the 10th
-- constructor of Vec doesn't exist; using it will be interpreted by the
-- HDL backends as vector indexing.
iIndex :: Identifier -> Int -> Expr
iIndex vecId i = Identifier vecId (Just (Indexed (vecType, 10, i)))
foldTF' args =
error $ "Unexpected number of arguments: " ++ show (length (bbInputs args))
indexIntVerilog :: BlackBoxFunction
indexIntVerilog _isD _primName args _ty = return bb
where
meta bbKi = emptyBlackBoxMeta{bbKind=bbKi}
bb = case args of
[_nTy,_aTy,_kn,Left v,Left ix] | isLiteral ix && isVar v ->
Right (meta TExpr, BBFunction "Clash.Primitives.Sized.Vector.indexIntVerilogTF" 0 indexIntVerilogTF)
[_nTy,_aTy,_kn,_v,Left ix] | isLiteral ix ->
case runParse (pack (I.unindent bbTextLitIx)) of
Success t -> Right (meta TDecl, BBTemplate t)
_ -> Left "internal error: parse fail"
_ ->
case runParse (pack (I.unindent bbText)) of
Success t -> Right (meta TDecl, BBTemplate t)
_ -> Left "internal error: parse fail"
bbText = [I.i|
// index begin
~IF~SIZE[~TYP[1]]~THENwire ~TYPO ~GENSYM[vecArray][0] [0:~LIT[0]-1];
genvar ~GENSYM[i][2];
~GENERATE
for (~SYM[2]=0; ~SYM[2] < ~LIT[0]; ~SYM[2]=~SYM[2]+1) begin : ~GENSYM[mk_array][3]
assign ~SYM[0][(~LIT[0]-1)-~SYM[2]] = ~VAR[vecFlat][1][~SYM[2]*~SIZE[~TYPO]+:~SIZE[~TYPO]];
end
~ENDGENERATE
assign ~RESULT = ~SYM[0][~ARG[2]];~ELSEassign ~RESULT = ~ERRORO;~FI
// index end|]
bbTextLitIx = [I.i|
// index lit begin
~IF~SIZE[~TYP[1]]~THENassign ~RESULT = ~VAR[vec][1][~SIZE[~TYP[1]]-1-~LIT[2]*~SIZE[~TYPO] -: ~SIZE[~TYPO]];~ELSEassign ~RESULT = ~ERRORO;~FI
// index lit end|]
indexIntVerilogTF :: TemplateFunction
indexIntVerilogTF = TemplateFunction used valid indexIntVerilogTemplate
where
used = [1,2]
valid = const True
indexIntVerilogTemplate
:: Backend s
=> BlackBoxContext
-> State s Doc
indexIntVerilogTemplate bbCtx = getMon $ case typeSize vTy of
0 -> hdlTypeErrValue rTy
_ -> case vec of
Identifier i mM -> case mM of
Just m ->
expr False (Identifier i (Just (Nested m (Indexed (vTy,10,ixI ix)))))
_ -> expr False (Identifier i (Just (Indexed (vTy,10,ixI ix))))
_ -> error ($(curLoc) ++ "Expected Identifier: " ++ show vec)
where
[ _kn
, (vec, vTy, _)
, (ix, _, _)
] = bbInputs bbCtx
[(_,rTy)] = bbResults bbCtx
ixI :: Expr -> Int
ixI ix0 = case ix0 of
Literal _ (NumLit i) ->
fromInteger i
BlackBoxE "GHC.Types.I#" _ _ _ _ ixCtx _ ->
let (ix1,_,_) = head (bbInputs ixCtx)
in ixI ix1
_ ->
error ($(curLoc) ++ "Unexpected literal: " ++ show ix)