yosys/passes/pmgen/xilinx_dsp.pmg

719 lines
21 KiB
Plaintext
Raw Normal View History

2019-10-04 14:40:34 -05:00
// This file describes the main pattern matcher setup (of three total) that
// forms the `xilinx_dsp` pass described in xilinx_dsp.cc
// At a high level, it works as follows:
// ( 1) Starting from a DSP48E1 cell
// ( 2) Match the driver of the 'A' input to a possible $dff cell (ADREG)
// (attached to at most two $mux cells that implement clock-enable or
// reset functionality, using a subpattern discussed below)
// If ADREG matched, treat 'A' input as input of ADREG
// ( 3) Match the driver of the 'A' and 'D' inputs for a possible $add cell
// (pre-adder)
// ( 4) If pre-adder was present, find match 'A' input for A2REG
// If pre-adder was not present, move ADREG to A2REG
// If A2REG, then match 'A' input for A1REG
// ( 5) Match 'B' input for B2REG
// If B2REG, then match 'B' input for B1REG
// ( 6) Match 'D' input for DREG
// ( 7) Match 'P' output that exclusively drives an MREG
// ( 8) Match 'P' output that exclusively drives one of two inputs to an $add
// cell (post-adder).
// The other input to the adder is assumed to come in from the 'C' input
// (note: 'P' -> 'C' connections that exist for accumulators are
// recognised in xilinx_dsp.cc).
// ( 9) Match 'P' output that exclusively drives a PREG
// (10) If post-adder and PREG both present, match for a $mux cell driving
// the 'C' input, where one of the $mux's inputs is the PREG output.
// This indicates an accumulator situation, and one where a $mux exists
// to override the accumulated value:
// +--------------------------------+
// | ____ |
// +--| \ |
// |$mux|-+ |
// 'C' ---|____/ | |
// | /-------\ +----+ |
// +----+ +-| post- |___|PREG|---+ 'P'
// |MREG|------ | adder | +----+
// +----+ \-------/
// (11) If PREG present, match for a greater-than-or-equal $ge cell attached
// to the 'P' output where it is compared to a constant that is a
// power-of-2: e.g. `assign overflow = (PREG >= 2**40);`
// In this scenario, the pattern detector functionality of a DSP48E1 can
// to implement this function
// Notes:
// - The intention of this pattern matcher is for it to be compatible with
// DSP48E1 cells inferred from multiply operations by Yosys, as well as for
// user instantiations that may already contain the cells being packed...
// (though the latter is currently untested)
// - Since the $dff-with-clock-enable-or-reset-mux pattern is used for each
// *REG match, it has been factored out into two subpatterns: in_dffe
// out_dffe located at the bottom of this file
pattern xilinx_dsp_pack
2019-07-15 16:46:31 -05:00
state <SigBit> clock
2019-09-20 14:03:25 -05:00
state <SigSpec> sigA sigB sigC sigD sigM sigP
2019-09-05 23:38:35 -05:00
state <IdString> postAddAB postAddMuxAB
state <bool> ffA1cepol ffA2cepol ffADcepol ffB1cepol ffB2cepol ffDcepol ffMcepol ffPcepol
state <bool> ffArstpol ffADrstpol ffBrstpol ffDrstpol ffMrstpol ffPrstpol
2019-09-11 18:21:24 -05:00
state <Cell*> ffAD ffADcemux ffADrstmux ffA1 ffA1cemux ffA1rstmux ffA2 ffA2cemux ffA2rstmux
state <Cell*> ffB1 ffB1cemux ffB1rstmux ffB2 ffB2cemux ffB2rstmux
2019-09-11 12:15:19 -05:00
state <Cell*> ffD ffDcemux ffDrstmux ffM ffMcemux ffMrstmux ffP ffPcemux ffPrstmux
2019-09-09 17:51:14 -05:00
2019-10-04 14:40:34 -05:00
// Variables used for subpatterns
state <SigSpec> argQ argD
2019-09-10 22:51:48 -05:00
state <bool> ffcepol ffrstpol
2019-09-11 09:34:14 -05:00
state <int> ffoffset
udata <SigSpec> dffD dffQ
2019-09-09 17:51:14 -05:00
udata <SigBit> dffclock
2019-09-10 22:51:48 -05:00
udata <Cell*> dff dffcemux dffrstmux
udata <bool> dffcepol dffrstpol
2019-09-09 17:51:14 -05:00
2019-10-04 14:40:34 -05:00
// (1) Starting from a DSP48E1 cell
2019-07-16 16:06:32 -05:00
match dsp
select dsp->type.in(\DSP48E1)
2019-07-15 16:46:31 -05:00
endmatch
code sigA sigB sigC sigD sigM clock
auto unextend = [](const SigSpec &sig) {
2019-09-06 20:40:11 -05:00
int i;
for (i = GetSize(sig)-1; i > 0; i--)
if (sig[i] != sig[i-1])
break;
// Do not remove non-const sign bit
2019-09-06 23:01:36 -05:00
if (sig[i].wire)
2019-09-06 20:40:11 -05:00
++i;
return sig.extract(0, i);
};
2019-09-06 23:01:36 -05:00
sigA = unextend(port(dsp, \A));
sigB = unextend(port(dsp, \B));
2019-09-23 15:00:44 -05:00
sigC = port(dsp, \C, SigSpec());
sigD = port(dsp, \D, SigSpec());
2019-09-04 19:06:17 -05:00
SigSpec P = port(dsp, \P);
2019-09-20 16:21:22 -05:00
if (param(dsp, \USE_MULT, Const("MULTIPLY")).decode_string() == "MULTIPLY") {
// Only care about those bits that are used
int i;
for (i = 0; i < GetSize(P); i++) {
if (nusers(P[i]) <= 1)
break;
sigM.append(P[i]);
}
log_assert(nusers(P.extract_end(i)) <= 1);
2019-10-04 23:42:46 -05:00
// This sigM could have no users if downstream sinks (e.g. $add) is
// narrower than $mul result, for example
if (sigM.empty())
reject;
2019-09-04 19:06:17 -05:00
}
else
sigM = P;
clock = port(dsp, \CLK, SigBit());
2019-08-30 17:00:56 -05:00
endcode
2019-10-04 14:40:34 -05:00
// (2) Match the driver of the 'A' input to a possible $dff cell (ADREG)
// (attached to at most two $mux cells that implement clock-enable or
// reset functionality, using a subpattern discussed above)
// If matched, treat 'A' input as input of ADREG
2019-09-11 12:15:19 -05:00
code argQ ffAD ffADcemux ffADrstmux ffADcepol ffADrstpol sigA clock
2019-09-09 17:51:14 -05:00
if (param(dsp, \ADREG).as_int() == 0) {
2019-09-09 18:45:38 -05:00
argQ = sigA;
2019-09-09 17:51:14 -05:00
subpattern(in_dffe);
if (dff) {
ffAD = dff;
clock = dffclock;
if (dffrstmux) {
ffADrstmux = dffrstmux;
ffADrstpol = dffrstpol;
}
2019-09-10 20:52:54 -05:00
if (dffcemux) {
2019-09-11 12:15:19 -05:00
ffADcemux = dffcemux;
2019-09-10 20:59:03 -05:00
ffADcepol = dffcepol;
2019-09-09 17:51:14 -05:00
}
sigA = dffD;
}
}
endcode
2019-10-04 14:40:34 -05:00
// (3) Match the driver of the 'A' and 'D' inputs for a possible $add cell
// (pre-adder)
match preAdd
if sigD.empty() || sigD.is_fully_zero()
// Ensure that preAdder not already used
2019-09-20 16:21:22 -05:00
if param(dsp, \USE_DPORT, Const("FALSE")).decode_string() == "FALSE"
if port(dsp, \INMODE, Const(0, 5)).is_fully_zero()
select preAdd->type.in($add)
// Output has to be 25 bits or less
select GetSize(port(preAdd, \Y)) <= 25
select nusers(port(preAdd, \Y)) == 2
choice <IdString> AB {\A, \B}
// A port has to be 30 bits or less
select GetSize(port(preAdd, AB)) <= 30
define <IdString> BA (AB == \A ? \B : \A)
// D port has to be 25 bits or less
select GetSize(port(preAdd, BA)) <= 25
index <SigSpec> port(preAdd, \Y) === sigA
optional
endmatch
code sigA sigD
if (preAdd) {
sigA = port(preAdd, \A);
sigD = port(preAdd, \B);
}
endcode
2019-10-04 14:40:34 -05:00
// (4) If pre-adder was present, find match 'A' input for A2REG
// If pre-adder was not present, move ADREG to A2REG
// Then match 'A' input for A1REG
2019-09-11 19:16:46 -05:00
code argQ ffAD ffADcemux ffADrstmux ffADcepol ffADrstpol sigA clock ffA2 ffA2cemux ffA2rstmux ffA2cepol ffArstpol ffA1 ffA1cemux ffA1rstmux ffA1cepol
2019-09-11 18:21:24 -05:00
// Only search for ffA2 if there was a pre-adder
2019-09-11 19:16:46 -05:00
// (otherwise ffA2 would have been matched as ffAD)
2019-09-09 17:51:14 -05:00
if (preAdd) {
if (param(dsp, \AREG).as_int() == 0) {
2019-09-09 18:45:38 -05:00
argQ = sigA;
2019-09-09 17:51:14 -05:00
subpattern(in_dffe);
if (dff) {
2019-09-11 18:21:24 -05:00
ffA2 = dff;
2019-09-09 17:51:14 -05:00
clock = dffclock;
2019-09-11 19:16:46 -05:00
if (dffrstmux) {
ffA2rstmux = dffrstmux;
2019-09-11 19:16:46 -05:00
ffArstpol = dffrstpol;
}
2019-09-10 20:52:54 -05:00
if (dffcemux) {
ffA2cepol = dffcepol;
2019-09-11 18:21:24 -05:00
ffA2cemux = dffcemux;
2019-09-09 17:51:14 -05:00
}
sigA = dffD;
}
}
}
2019-09-09 17:51:14 -05:00
// And if there wasn't a pre-adder,
// move AD register to A
else if (ffAD) {
2019-09-11 18:21:24 -05:00
log_assert(!ffA2 && !ffA2cemux && !ffA2rstmux);
std::swap(ffA2, ffAD);
std::swap(ffA2cemux, ffADcemux);
std::swap(ffA2rstmux, ffADrstmux);
ffA2cepol = ffADcepol;
2019-09-11 12:15:19 -05:00
ffArstpol = ffADrstpol;
}
2019-09-11 19:16:46 -05:00
// Now attempt to match A1
if (ffA2) {
argQ = sigA;
subpattern(in_dffe);
if (dff) {
if ((ffA2rstmux != nullptr) ^ (dffrstmux != nullptr))
goto ffA1_end;
if (dffrstmux) {
if (ffArstpol != dffrstpol)
goto ffA1_end;
if (port(ffA2rstmux, \S) != port(dffrstmux, \S))
goto ffA1_end;
ffA1rstmux = dffrstmux;
}
ffA1 = dff;
clock = dffclock;
if (dffcemux) {
ffA1cemux = dffcemux;
ffA1cepol = dffcepol;
}
sigA = dffD;
ffA1_end: ;
}
}
endcode
2019-10-04 14:40:34 -05:00
// (5) Match 'B' input for B2REG
// If B2REG, then match 'B' input for B1REG
2019-09-11 19:16:46 -05:00
code argQ ffB2 ffB2cemux ffB2rstmux ffB2cepol ffBrstpol sigB clock ffB1 ffB1cemux ffB1rstmux ffB1cepol
2019-09-09 17:51:14 -05:00
if (param(dsp, \BREG).as_int() == 0) {
2019-09-09 18:45:38 -05:00
argQ = sigB;
2019-09-09 17:51:14 -05:00
subpattern(in_dffe);
if (dff) {
2019-09-11 18:21:24 -05:00
ffB2 = dff;
2019-09-09 17:51:14 -05:00
clock = dffclock;
if (dffrstmux) {
ffB2rstmux = dffrstmux;
ffBrstpol = dffrstpol;
}
2019-09-10 20:52:54 -05:00
if (dffcemux) {
2019-09-11 18:21:24 -05:00
ffB2cemux = dffcemux;
ffB2cepol = dffcepol;
2019-09-09 17:51:14 -05:00
}
sigB = dffD;
2019-09-11 19:16:46 -05:00
// Now attempt to match B1
if (ffB2) {
argQ = sigB;
subpattern(in_dffe);
if (dff) {
if ((ffB2rstmux != nullptr) ^ (dffrstmux != nullptr))
goto ffB1_end;
if (dffrstmux) {
if (ffBrstpol != dffrstpol)
goto ffB1_end;
if (port(ffB2rstmux, \S) != port(dffrstmux, \S))
goto ffB1_end;
ffB1rstmux = dffrstmux;
}
ffB1 = dff;
clock = dffclock;
if (dffcemux) {
ffB1cemux = dffcemux;
ffB1cepol = dffcepol;
}
sigB = dffD;
ffB1_end: ;
}
}
2019-09-09 17:51:14 -05:00
}
2019-07-15 16:46:31 -05:00
}
endcode
2019-10-04 14:40:34 -05:00
// (6) Match 'D' input for DREG
2019-09-11 12:15:19 -05:00
code argQ ffD ffDcemux ffDrstmux ffDcepol ffDrstpol sigD clock
2019-09-09 17:51:14 -05:00
if (param(dsp, \DREG).as_int() == 0) {
2019-09-09 18:45:38 -05:00
argQ = sigD;
2019-09-09 17:51:14 -05:00
subpattern(in_dffe);
if (dff) {
ffD = dff;
clock = dffclock;
if (dffrstmux) {
ffDrstmux = dffrstmux;
ffDrstpol = dffrstpol;
}
2019-09-10 20:52:54 -05:00
if (dffcemux) {
2019-09-11 12:15:19 -05:00
ffDcemux = dffcemux;
2019-09-10 20:59:03 -05:00
ffDcepol = dffcepol;
2019-09-09 17:51:14 -05:00
}
sigD = dffD;
}
2019-09-06 17:32:26 -05:00
}
endcode
2019-10-04 14:40:34 -05:00
// (7) Match 'P' output that exclusively drives an MREG
2019-09-11 09:34:14 -05:00
code argD ffM ffMcemux ffMrstmux ffMcepol ffMrstpol sigM sigP clock
if (param(dsp, \MREG).as_int() == 0 && nusers(sigM) == 2) {
argD = sigM;
subpattern(out_dffe);
if (dff) {
ffM = dff;
clock = dffclock;
if (dffrstmux) {
ffMrstmux = dffrstmux;
ffMrstpol = dffrstpol;
}
2019-09-10 20:52:54 -05:00
if (dffcemux) {
2019-09-11 09:34:14 -05:00
ffMcemux = dffcemux;
2019-09-10 20:59:03 -05:00
ffMcepol = dffcepol;
}
sigM = dffQ;
}
2019-08-30 17:00:56 -05:00
}
sigP = sigM;
endcode
2019-10-04 14:40:34 -05:00
// (8) Match 'P' output that exclusively drives one of two inputs to an $add
// cell (post-adder).
// The other input to the adder is assumed to come in from the 'C' input
// (note: 'P' -> 'C' connections that exist for accumulators are
// recognised in xilinx_dsp.cc).
match postAdd
// Ensure that Z mux is not already used
if port(dsp, \OPMODE, SigSpec()).extract(4,3).is_fully_zero()
2019-09-03 18:24:59 -05:00
select postAdd->type.in($add)
select GetSize(port(postAdd, \Y)) <= 48
choice <IdString> AB {\A, \B}
2019-09-04 12:52:51 -05:00
select nusers(port(postAdd, AB)) <= 3
2019-09-11 09:34:14 -05:00
filter ffMcemux || nusers(port(postAdd, AB)) == 2
filter !ffMcemux || nusers(port(postAdd, AB)) == 3
2019-09-19 22:04:44 -05:00
index <SigBit> port(postAdd, AB)[0] === sigP[0]
filter GetSize(port(postAdd, AB)) >= GetSize(sigP)
filter port(postAdd, AB).extract(0, GetSize(sigP)) == sigP
2019-10-04 18:46:15 -05:00
// Check that remainder of AB is a sign-extension
define <bool> AB_SIGNED (param(postAdd, AB == \A ? \A_SIGNED : \B_SIGNED).as_bool())
filter port(postAdd, AB).extract_end(GetSize(sigP)) == SigSpec(AB_SIGNED ? sigP[GetSize(sigP)-1] : State::S0, GetSize(port(postAdd, AB))-GetSize(sigP))
set postAddAB AB
optional
endmatch
code sigC sigP
if (postAdd) {
sigC = port(postAdd, postAddAB == \A ? \B : \A);
sigP = port(postAdd, \Y);
}
endcode
2019-10-04 14:40:34 -05:00
// (9) Match 'P' output that exclusively drives a PREG
2019-09-10 22:51:48 -05:00
code argD ffP ffPcemux ffPrstmux ffPcepol ffPrstpol sigP clock
if (param(dsp, \PREG).as_int() == 0) {
int users = 2;
// If ffMcemux and no postAdd new-value net must have three users: ffMcemux, ffM and ffPcemux
if (ffMcemux && !postAdd) users++;
if (nusers(sigP) == users) {
argD = sigP;
subpattern(out_dffe);
if (dff) {
ffP = dff;
clock = dffclock;
if (dffrstmux) {
ffPrstmux = dffrstmux;
ffPrstpol = dffrstpol;
}
2019-09-10 20:52:54 -05:00
if (dffcemux) {
2019-09-10 22:51:48 -05:00
ffPcemux = dffcemux;
2019-09-10 20:59:03 -05:00
ffPcepol = dffcepol;
}
sigP = dffQ;
}
}
}
endcode
2019-10-04 14:40:34 -05:00
// (10) If post-adder and PREG both present, match for a $mux cell driving
// the 'C' input, where one of the $mux's inputs is the PREG output.
// This indicates an accumulator situation, and one where a $mux exists
// to override the accumulated value:
// +--------------------------------+
// | ____ |
// +--| \ |
// |$mux|-+ |
// 'C' ---|____/ | |
// | /-------\ +----+ |
// +----+ +-| post- |___|PREG|---+ 'P'
// |MREG|------ | adder | +----+
// +----+ \-------/
2019-09-03 18:24:59 -05:00
match postAddMux
if postAdd
2019-09-03 18:24:59 -05:00
if ffP
select postAddMux->type.in($mux)
select nusers(port(postAddMux, \Y)) == 2
choice <IdString> AB {\A, \B}
index <SigSpec> port(postAddMux, AB) === sigP
index <SigSpec> port(postAddMux, \Y) === sigC
set postAddMuxAB AB
optional
endmatch
2019-09-03 18:24:59 -05:00
code sigC
if (postAddMux)
sigC = port(postAddMux, postAddMuxAB == \A ? \B : \A);
endcode
2019-08-30 13:02:10 -05:00
2019-10-04 14:40:34 -05:00
// (11) If PREG present, match for a greater-than-or-equal $ge cell attached to
// the 'P' output where it is compared to a constant that is a power-of-2:
// e.g. `assign overflow = (PREG >= 2**40);`
// In this scenario, the pattern detector functionality of a DSP48E1 can
// to implement this function
match overflow
if ffP
2019-09-20 16:21:22 -05:00
if param(dsp, \USE_PATTERN_DETECT, Const("NO_PATDET")).decode_string() == "NO_PATDET"
select overflow->type.in($ge)
select GetSize(port(overflow, \Y)) <= 48
select port(overflow, \B).is_fully_const()
define <Const> B port(overflow, \B).as_const()
select std::count(B.bits.begin(), B.bits.end(), State::S1) == 1
index <SigSpec> port(overflow, \A) === sigP
optional
endmatch
2019-09-09 17:51:14 -05:00
code
accept;
endcode
// #######################
2019-10-04 15:31:44 -05:00
// Subpattern for matching against input registers, based on knowledge of the
// 'Q' input.
// At a high level:
// (1) Starting from a $dff cell that (partially or fully) drives the given
// 'Q' argument
// (2) Match for a $mux cell implementing synchronous reset semantics ---
// one that exclusively drives the 'D' input of the $dff, with one of its
// $mux inputs being fully zero
// (3) Match for a $mux cell implement clock enable semantics --- one that
// exclusively drives the 'D' input of the $dff (or the other input of
// the reset $mux) and where one of this $mux's inputs is connected to
// the 'Q' output of the $dff
2019-09-09 17:51:14 -05:00
subpattern in_dffe
2019-09-11 12:15:19 -05:00
arg argD argQ clock
code
dff = nullptr;
2019-10-04 15:31:44 -05:00
for (const auto &c : argQ.chunks()) {
// Abandon matches when 'Q' is a constant
2019-09-11 12:15:19 -05:00
if (!c.wire)
reject;
2019-10-04 15:31:44 -05:00
// Abandon matches when 'Q' has the keep attribute set
2019-09-11 12:15:19 -05:00
if (c.wire->get_bool_attribute(\keep))
reject;
2019-10-04 15:31:44 -05:00
// Abandon matches when 'Q' has a non-zero init attribute set
// (not supported by DSP48E1)
Const init = c.wire->attributes.at(\init, Const());
if (!init.empty())
for (auto b : init.extract(c.offset, c.width))
if (b != State::Sx && b != State::S0)
reject;
2019-09-11 12:15:19 -05:00
}
endcode
2019-09-09 17:51:14 -05:00
2019-10-04 15:31:44 -05:00
// (1) Starting from a $dff cell that (partially or fully) drives the given
// 'Q' argument
2019-09-09 17:51:14 -05:00
match ff
select ff->type.in($dff)
2019-09-06 23:01:36 -05:00
// DSP48E1 does not support clock inversion
2019-09-09 17:51:14 -05:00
select param(ff, \CLK_POLARITY).as_bool()
2019-09-11 12:15:19 -05:00
slice offset GetSize(port(ff, \D))
index <SigBit> port(ff, \Q)[offset] === argQ[0]
2019-09-19 16:34:06 -05:00
// Check that the rest of argQ is present
filter GetSize(port(ff, \Q)) >= offset + GetSize(argQ)
filter port(ff, \Q).extract(offset, GetSize(argQ)) == argQ
2019-10-04 15:31:44 -05:00
filter clock == SigBit() || port(ff, \CLK) == clock
2019-09-11 12:15:19 -05:00
set ffoffset offset
2019-09-06 23:01:36 -05:00
endmatch
2019-09-11 12:15:19 -05:00
code argQ argD
SigSpec Q = port(ff, \Q);
dff = ff;
dffclock = port(ff, \CLK);
dffD = argQ;
argD = port(ff, \D);
argQ = Q;
dffD.replace(argQ, argD);
// Only search for ffrstmux if dffD only
// has two (ff, ffrstmux) users
if (nusers(dffD) > 2)
argD = SigSpec();
endcode
2019-10-04 15:31:44 -05:00
// (2) Match for a $mux cell implementing synchronous reset semantics ---
// exclusively drives the 'D' input of the $dff, with one of the $mux
// inputs being fully zero
2019-09-11 12:15:19 -05:00
match ffrstmux
if !argD.empty()
select ffrstmux->type.in($mux)
index <SigSpec> port(ffrstmux, \Y) === argD
choice <IdString> BA {\B, \A}
// DSP48E1 only supports reset to zero
select port(ffrstmux, BA).is_fully_zero()
define <bool> pol (BA == \B)
set ffrstpol pol
semioptional
endmatch
code argD
if (ffrstmux) {
dffrstmux = ffrstmux;
dffrstpol = ffrstpol;
argD = port(ffrstmux, ffrstpol ? \A : \B);
dffD.replace(port(ffrstmux, \Y), argD);
// Only search for ffcemux if argQ has at
2019-09-11 12:15:19 -05:00
// least 3 users (ff, <upstream>, ffrstmux) and
// dffD only has two (ff, ffrstmux)
2019-09-09 18:45:38 -05:00
if (!(nusers(argQ) >= 3 && nusers(dffD) == 2))
2019-09-11 12:15:19 -05:00
argD = SigSpec();
2019-09-09 17:59:10 -05:00
}
2019-09-11 12:15:19 -05:00
else
dffrstmux = nullptr;
2019-09-06 23:01:36 -05:00
endcode
2019-10-04 15:31:44 -05:00
// (3) Match for a $mux cell implement clock enable semantics --- one that
// exclusively drives the 'D' input of the $dff (or the other input of
// the reset $mux) and where one of this $mux's inputs is connected to
// the 'Q' output of the $dff
2019-09-10 20:52:54 -05:00
match ffcemux
2019-09-11 12:15:19 -05:00
if !argD.empty()
2019-09-10 20:52:54 -05:00
select ffcemux->type.in($mux)
2019-09-11 12:15:19 -05:00
index <SigSpec> port(ffcemux, \Y) === argD
2019-09-06 23:01:36 -05:00
choice <IdString> AB {\A, \B}
2019-09-11 12:15:19 -05:00
index <SigSpec> port(ffcemux, AB) === argQ
2019-09-06 23:01:36 -05:00
define <bool> pol (AB == \A)
2019-09-10 20:59:03 -05:00
set ffcepol pol
2019-09-09 17:51:14 -05:00
semioptional
2019-09-06 23:01:36 -05:00
endmatch
2019-09-11 12:15:19 -05:00
code argD
2019-09-10 20:52:54 -05:00
if (ffcemux) {
dffcemux = ffcemux;
2019-09-10 20:59:03 -05:00
dffcepol = ffcepol;
2019-09-11 19:16:46 -05:00
argD = port(ffcemux, ffcepol ? \B : \A);
2019-09-11 12:15:19 -05:00
dffD.replace(port(ffcemux, \Y), argD);
2019-09-09 17:51:14 -05:00
}
2019-09-09 17:59:10 -05:00
else
2019-09-10 20:52:54 -05:00
dffcemux = nullptr;
2019-07-15 16:46:31 -05:00
endcode
// #######################
2019-10-04 15:31:44 -05:00
// Subpattern for matching against output registers, based on knowledge of the
// 'D' input.
// At a high level:
// (1) Starting from an optional $mux cell that implements clock enable
// semantics --- one where the given 'D' argument (partially or fully)
// drives one of its two inputs
// (2) Starting from, or continuing onto, another optional $mux cell that
// implements synchronous reset semantics --- one where the given 'D'
// argument (or the clock enable $mux output) drives one of its two inputs
// and where the other input is fully zero
// (3) Match for a $dff cell (whose 'D' input is the 'D' argument, or the
// output of the previous clock enable or reset $mux cells)
subpattern out_dffe
2019-09-10 22:51:48 -05:00
arg argD argQ clock
2019-09-11 09:34:14 -05:00
code
dff = nullptr;
2019-09-19 16:34:06 -05:00
for (auto c : argD.chunks())
2019-10-04 15:31:44 -05:00
// Abandon matches when 'D' has the keep attribute set
2019-09-19 16:34:06 -05:00
if (c.wire->get_bool_attribute(\keep))
reject;
2019-09-11 09:34:14 -05:00
endcode
2019-10-04 15:31:44 -05:00
// (1) Starting from an optional $mux cell that implements clock enable
// semantics --- one where the given 'D' argument (partially or fully)
// drives one of its two inputs
2019-09-10 20:59:03 -05:00
match ffcemux
select ffcemux->type.in($mux)
// ffcemux output must have two users: ffcemux and ff.D
select nusers(port(ffcemux, \Y)) == 2
2019-09-11 09:34:14 -05:00
choice <IdString> AB {\A, \B}
2019-09-10 20:59:03 -05:00
// keep-last-value net must have at least three users: ffcemux, ff, downstream sink(s)
select nusers(port(ffcemux, AB)) >= 3
2019-09-10 22:51:48 -05:00
slice offset GetSize(port(ffcemux, \Y))
2019-09-11 09:34:14 -05:00
define <IdString> BA (AB == \A ? \B : \A)
index <SigBit> port(ffcemux, BA)[offset] === argD[0]
2019-09-19 16:34:06 -05:00
// Check that the rest of argD is present
filter GetSize(port(ffcemux, BA)) >= offset + GetSize(argD)
filter port(ffcemux, BA).extract(offset, GetSize(argD)) == argD
2019-09-11 09:34:14 -05:00
set ffoffset offset
2019-09-19 16:34:06 -05:00
define <bool> pol (AB == \A)
2019-09-10 20:59:03 -05:00
set ffcepol pol
2019-09-11 09:34:14 -05:00
semioptional
endmatch
2019-09-10 22:51:48 -05:00
code argD argQ
2019-09-11 09:34:14 -05:00
dffcemux = ffcemux;
2019-09-10 20:59:03 -05:00
if (ffcemux) {
2019-09-11 09:34:14 -05:00
SigSpec BA = port(ffcemux, ffcepol ? \B : \A);
SigSpec Y = port(ffcemux, \Y);
argQ = argD;
argD.replace(BA, Y);
argQ.replace(BA, port(ffcemux, ffcepol ? \A : \B));
2019-09-10 20:59:03 -05:00
dffcemux = ffcemux;
dffcepol = ffcepol;
}
endcode
2019-10-04 15:31:44 -05:00
// (2) Starting from, or continuing onto, another optional $mux cell that
// implements synchronous reset semantics --- one where the given 'D'
// argument (or the clock enable $mux output) drives one of its two inputs
// and where the other input is fully zero
2019-09-10 22:51:48 -05:00
match ffrstmux
select ffrstmux->type.in($mux)
// ffrstmux output must have two users: ffrstmux and ff.D
select nusers(port(ffrstmux, \Y)) == 2
choice <IdString> BA {\B, \A}
// DSP48E1 only supports reset to zero
select port(ffrstmux, BA).is_fully_zero()
slice offset GetSize(port(ffrstmux, \Y))
2019-09-11 09:34:14 -05:00
define <IdString> AB (BA == \B ? \A : \B)
index <SigBit> port(ffrstmux, AB)[offset] === argD[0]
2019-09-10 22:51:48 -05:00
2019-09-19 16:34:06 -05:00
// Check that offset is consistent
2019-09-11 09:34:14 -05:00
filter !ffcemux || ffoffset == offset
2019-09-19 16:34:06 -05:00
// Check that the rest of argD is present
filter GetSize(port(ffrstmux, AB)) >= offset + GetSize(argD)
filter port(ffrstmux, AB).extract(offset, GetSize(argD)) == argD
2019-09-11 09:34:14 -05:00
set ffoffset offset
2019-09-10 22:51:48 -05:00
define <bool> pol (AB == \A)
set ffrstpol pol
2019-09-11 09:34:14 -05:00
2019-09-10 22:51:48 -05:00
semioptional
endmatch
code argD argQ
2019-09-11 09:34:14 -05:00
dffrstmux = ffrstmux;
2019-09-10 22:51:48 -05:00
if (ffrstmux) {
SigSpec AB = port(ffrstmux, ffrstpol ? \A : \B);
2019-09-11 09:34:14 -05:00
SigSpec Y = port(ffrstmux, \Y);
argD.replace(AB, Y);
2019-09-10 22:51:48 -05:00
dffrstmux = ffrstmux;
dffrstpol = ffrstpol;
}
endcode
2019-10-04 15:31:44 -05:00
// (3) Match for a $dff cell (whose 'D' input is the 'D' argument, or the
// output of the previous clock enable or reset $mux cells)
match ff
select ff->type.in($dff)
// DSP48E1 does not support clock inversion
select param(ff, \CLK_POLARITY).as_bool()
2019-09-11 09:34:14 -05:00
slice offset GetSize(port(ff, \D))
2019-09-11 12:15:19 -05:00
index <SigBit> port(ff, \D)[offset] === argD[0]
2019-09-11 09:34:14 -05:00
2019-09-19 16:34:06 -05:00
// Check that offset is consistent
2019-09-11 09:34:14 -05:00
filter (!ffcemux && !ffrstmux) || ffoffset == offset
2019-09-19 16:34:06 -05:00
// Check that the rest of argD is present
filter GetSize(port(ff, \D)) >= offset + GetSize(argD)
filter port(ff, \D).extract(offset, GetSize(argD)) == argD
// Check that FF.Q is connected to CE-mux
filter !ffcemux || port(ff, \Q).extract(offset, GetSize(argQ)) == argQ
2019-09-11 09:34:14 -05:00
2019-10-04 15:31:44 -05:00
filter clock == SigBit() || port(ff, \CLK) == clock
2019-09-19 16:34:06 -05:00
set ffoffset offset
endmatch
2019-09-11 09:34:14 -05:00
code argQ
2019-10-04 15:31:44 -05:00
SigSpec D = port(ff, \D);
SigSpec Q = port(ff, \Q);
if (!ffcemux) {
argQ = argD;
argQ.replace(D, Q);
}
2019-10-04 15:31:44 -05:00
// Abandon matches when 'Q' has a non-zero init attribute set
// (not supported by DSP48E1)
for (auto c : argQ.chunks()) {
Const init = c.wire->attributes.at(\init, Const());
if (!init.empty())
for (auto b : init.extract(c.offset, c.width))
if (b != State::Sx && b != State::S0)
reject;
}
2019-10-04 15:31:44 -05:00
dff = ff;
dffQ = argQ;
dffclock = port(ff, \CLK);
endcode