mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Do not require changes to cells_sim.v; try and work out comb model
This commit is contained in:
parent
3c6e5d82a6
commit
3879ca1398
|
@ -481,16 +481,11 @@ struct XAigerWriter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Connect $currQ as an input to the flop box
|
// Connect <cell>.$currQ (inserted by abc9_map.v) as an input to the flop box
|
||||||
if (box_module->get_bool_attribute("\\abc9_flop")) {
|
if (box_module->get_bool_attribute("\\abc9_flop")) {
|
||||||
IdString port_name = "\\$currQ";
|
|
||||||
Wire *w = box_module->wire(port_name);
|
|
||||||
if (!w)
|
|
||||||
log_error("'$currQ' is not a wire present in module '%s'.\n", log_id(box_module));
|
|
||||||
SigSpec rhs = module->wire(stringf("%s.$currQ", cell->name.c_str()));
|
SigSpec rhs = module->wire(stringf("%s.$currQ", cell->name.c_str()));
|
||||||
if (rhs.empty())
|
if (rhs.empty())
|
||||||
log_error("'%s.$currQ' is not a wire present in module '%s'.\n", log_id(cell), log_id(module));
|
log_error("'%s.$currQ' is not a wire present in module '%s'.\n", log_id(cell), log_id(module));
|
||||||
log_assert(GetSize(w) == GetSize(rhs));
|
|
||||||
|
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
for (auto b : rhs) {
|
for (auto b : rhs) {
|
||||||
|
@ -503,7 +498,7 @@ struct XAigerWriter
|
||||||
else
|
else
|
||||||
alias_map[b] = I;
|
alias_map[b] = I;
|
||||||
}
|
}
|
||||||
co_bits.emplace_back(b, cell, port_name, offset++, 0);
|
co_bits.emplace_back(b, cell, "\\$currQ", offset++, 0);
|
||||||
unused_bits.erase(b);
|
unused_bits.erase(b);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -737,6 +732,8 @@ struct XAigerWriter
|
||||||
log_assert(box_module);
|
log_assert(box_module);
|
||||||
IdString derived_name = box_module->derive(module->design, cell->parameters);
|
IdString derived_name = box_module->derive(module->design, cell->parameters);
|
||||||
box_module = module->design->module(derived_name);
|
box_module = module->design->module(derived_name);
|
||||||
|
if (box_module->has_processes())
|
||||||
|
Pass::call_on_module(module->design, box_module, "proc");
|
||||||
|
|
||||||
int box_inputs = 0, box_outputs = 0;
|
int box_inputs = 0, box_outputs = 0;
|
||||||
auto r = cell_cache.insert(std::make_pair(derived_name, nullptr));
|
auto r = cell_cache.insert(std::make_pair(derived_name, nullptr));
|
||||||
|
@ -753,7 +750,7 @@ struct XAigerWriter
|
||||||
RTLIL::Wire *w = box_module->wire(port_name);
|
RTLIL::Wire *w = box_module->wire(port_name);
|
||||||
log_assert(w);
|
log_assert(w);
|
||||||
RTLIL::Wire *holes_wire;
|
RTLIL::Wire *holes_wire;
|
||||||
RTLIL::SigSpec port_wire;
|
RTLIL::SigSpec port_sig;
|
||||||
if (w->port_input)
|
if (w->port_input)
|
||||||
for (int i = 0; i < GetSize(w); i++) {
|
for (int i = 0; i < GetSize(w); i++) {
|
||||||
box_inputs++;
|
box_inputs++;
|
||||||
|
@ -765,7 +762,7 @@ struct XAigerWriter
|
||||||
holes_module->ports.push_back(holes_wire->name);
|
holes_module->ports.push_back(holes_wire->name);
|
||||||
}
|
}
|
||||||
if (holes_cell)
|
if (holes_cell)
|
||||||
port_wire.append(holes_wire);
|
port_sig.append(holes_wire);
|
||||||
}
|
}
|
||||||
if (w->port_output) {
|
if (w->port_output) {
|
||||||
box_outputs += GetSize(w);
|
box_outputs += GetSize(w);
|
||||||
|
@ -777,41 +774,36 @@ struct XAigerWriter
|
||||||
holes_wire->port_output = true;
|
holes_wire->port_output = true;
|
||||||
holes_wire->port_id = port_id++;
|
holes_wire->port_id = port_id++;
|
||||||
holes_module->ports.push_back(holes_wire->name);
|
holes_module->ports.push_back(holes_wire->name);
|
||||||
if (holes_cell)
|
if (holes_cell) {
|
||||||
port_wire.append(holes_wire);
|
port_sig.append(holes_wire);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
holes_module->connect(holes_wire, State::S0);
|
holes_module->connect(holes_wire, State::S0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!port_wire.empty()) {
|
if (!port_sig.empty()) {
|
||||||
if (r.second)
|
if (r.second)
|
||||||
holes_cell->setPort(w->name, port_wire);
|
holes_cell->setPort(w->name, port_sig);
|
||||||
else
|
else
|
||||||
holes_module->connect(port_wire, holes_cell->getPort(w->name));
|
holes_module->connect(holes_cell->getPort(w->name), port_sig);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// For flops only, create an extra input for $currQ
|
// For flops only, create an extra 1-bit input that drives a new wire
|
||||||
|
// called "<cell>.$currQ" that is used below
|
||||||
if (box_module->get_bool_attribute("\\abc9_flop")) {
|
if (box_module->get_bool_attribute("\\abc9_flop")) {
|
||||||
log_assert(holes_cell);
|
log_assert(holes_cell);
|
||||||
|
|
||||||
Wire *w = box_module->wire("\\$currQ");
|
box_inputs++;
|
||||||
Wire *holes_wire;
|
Wire *holes_wire = holes_module->wire(stringf("\\i%d", box_inputs));
|
||||||
RTLIL::SigSpec port_wire;
|
if (!holes_wire) {
|
||||||
for (int i = 0; i < GetSize(w); i++) {
|
holes_wire = holes_module->addWire(stringf("\\i%d", box_inputs));
|
||||||
box_inputs++;
|
holes_wire->port_input = true;
|
||||||
holes_wire = holes_module->wire(stringf("\\i%d", box_inputs));
|
holes_wire->port_id = port_id++;
|
||||||
if (!holes_wire) {
|
holes_module->ports.push_back(holes_wire->name);
|
||||||
holes_wire = holes_module->addWire(stringf("\\i%d", box_inputs));
|
|
||||||
holes_wire->port_input = true;
|
|
||||||
holes_wire->port_id = port_id++;
|
|
||||||
holes_module->ports.push_back(holes_wire->name);
|
|
||||||
}
|
|
||||||
port_wire.append(holes_wire);
|
|
||||||
}
|
}
|
||||||
w = holes_module->addWire(stringf("%s.$currQ", cell->name.c_str()), GetSize(w));
|
Wire *w = holes_module->addWire(stringf("%s.$currQ", cell->name.c_str()));
|
||||||
w->set_bool_attribute("\\hierconn");
|
holes_module->connect(w, holes_wire);
|
||||||
holes_module->connect(w, port_wire);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
write_h_buffer(box_inputs);
|
write_h_buffer(box_inputs);
|
||||||
|
@ -866,37 +858,67 @@ struct XAigerWriter
|
||||||
//holes_module->fixup_ports();
|
//holes_module->fixup_ports();
|
||||||
holes_module->check();
|
holes_module->check();
|
||||||
|
|
||||||
Design *design = holes_module->design;
|
|
||||||
design->selection_stack.emplace_back(false);
|
|
||||||
RTLIL::Selection& sel = design->selection_stack.back();
|
|
||||||
log_assert(design->selected_active_module == module->name.c_str());
|
|
||||||
design->selected_active_module = holes_module->name.str();
|
|
||||||
sel.select(holes_module);
|
|
||||||
|
|
||||||
Pass::call(design, "flatten -wb");
|
|
||||||
|
|
||||||
// TODO: Should techmap/aigmap/check all lib_whitebox-es just once,
|
// TODO: Should techmap/aigmap/check all lib_whitebox-es just once,
|
||||||
// instead of per write_xaiger call
|
// instead of per write_xaiger call
|
||||||
Pass::call(design, "techmap");
|
Pass::call_on_module(holes_module->design, holes_module, "flatten -wb; techmap; aigmap");
|
||||||
Pass::call(design, "aigmap");
|
|
||||||
for (auto cell : holes_module->cells())
|
|
||||||
if (!cell->type.in("$_NOT_", "$_AND_"))
|
|
||||||
log_error("Whitebox contents cannot be represented as AIG. Please verify whiteboxes are synthesisable.\n");
|
|
||||||
|
|
||||||
design->selection_stack.pop_back();
|
dict<SigBit, Wire*> output_port;
|
||||||
design->selected_active_module = module->name.str();
|
SigMap holes_sigmap(holes_module);
|
||||||
|
for (auto port_name : holes_module->ports) {
|
||||||
|
Wire *port = holes_module->wire(port_name);
|
||||||
|
if (port->port_input)
|
||||||
|
continue;
|
||||||
|
output_port.insert(std::make_pair(holes_sigmap(port), port));
|
||||||
|
}
|
||||||
|
|
||||||
|
dict<SigSig, SigSig> replace;
|
||||||
|
for (auto it = holes_module->cells_.begin(); it != holes_module->cells_.end(); ) {
|
||||||
|
auto cell = it->second;
|
||||||
|
if (cell->type.in("$_DFF_N_", "$_DFF_P_")) {
|
||||||
|
SigBit D = cell->getPort("\\D");
|
||||||
|
SigBit Q = cell->getPort("\\Q");
|
||||||
|
// Remove the DFF cell from what needs to be a combinatorial box
|
||||||
|
it = holes_module->cells_.erase(it);
|
||||||
|
Wire *port = output_port.at(Q);
|
||||||
|
log_assert(port);
|
||||||
|
// Prepare to replace "assign <port> = DFF.Q;" with "assign <port> = DFF.D;"
|
||||||
|
// in order to extract the combinatorial control logic that feeds the box
|
||||||
|
// (i.e. clock enable, synchronous reset, etc.)
|
||||||
|
replace.insert(std::make_pair(SigSig(port,Q), SigSig(port,D)));
|
||||||
|
// Since `flatten` above would have created wires named "<cell>.Q",
|
||||||
|
// extract the pre-techmap cell name
|
||||||
|
auto pos = Q.wire->name.str().rfind(".");
|
||||||
|
log_assert(pos != std::string::npos);
|
||||||
|
IdString driver = Q.wire->name.substr(0, pos);
|
||||||
|
// And drive the signal that was previously driven by "DFF.Q" (typically
|
||||||
|
// used to implement clock-enable functionality) with the "<cell>.$currQ"
|
||||||
|
// wire (which itself is driven an input port) we inserted above
|
||||||
|
Wire *currQ = holes_module->wire(stringf("%s.$currQ", driver.c_str()));
|
||||||
|
log_assert(currQ);
|
||||||
|
holes_module->connect(Q, currQ);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
else if (!cell->type.in("$_NOT_", "$_AND_"))
|
||||||
|
log_error("Whitebox contents cannot be represented as AIG. Please verify whiteboxes are synthesisable.\n");
|
||||||
|
++it;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto &conn : holes_module->connections_) {
|
||||||
|
auto it = replace.find(conn);
|
||||||
|
if (it != replace.end())
|
||||||
|
conn = it->second;
|
||||||
|
}
|
||||||
|
|
||||||
// Move into a new (temporary) design so that "clean" will only
|
// Move into a new (temporary) design so that "clean" will only
|
||||||
// operate (and run checks on) this one module
|
// operate (and run checks on) this one module
|
||||||
RTLIL::Design *holes_design = new RTLIL::Design;
|
RTLIL::Design *holes_design = new RTLIL::Design;
|
||||||
design->modules_.erase(holes_module->name);
|
module->design->modules_.erase(holes_module->name);
|
||||||
holes_design->add(holes_module);
|
holes_design->add(holes_module);
|
||||||
Pass::call(holes_design, "clean -purge");
|
Pass::call(holes_design, "clean -purge");
|
||||||
|
|
||||||
std::stringstream a_buffer;
|
std::stringstream a_buffer;
|
||||||
XAigerWriter writer(holes_module, false /*zinit_mode*/, true /* holes_mode */);
|
XAigerWriter writer(holes_module, false /*zinit_mode*/, true /* holes_mode */);
|
||||||
writer.write_aiger(a_buffer, false /*ascii_mode*/);
|
writer.write_aiger(a_buffer, false /*ascii_mode*/);
|
||||||
|
|
||||||
delete holes_design;
|
delete holes_design;
|
||||||
|
|
||||||
f << "a";
|
f << "a";
|
||||||
|
|
|
@ -1122,39 +1122,15 @@ struct Abc9Pass : public Pass {
|
||||||
if (!inst_module || !inst_module->attributes.count("\\abc9_flop"))
|
if (!inst_module || !inst_module->attributes.count("\\abc9_flop"))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
auto derived_name = inst_module->derive(design, cell->parameters);
|
Wire *abc9_clock_wire = module->wire(stringf("%s.$abc9_clock", cell->name.c_str()));
|
||||||
auto derived_module = design->module(derived_name);
|
|
||||||
log_assert(derived_module);
|
|
||||||
if (derived_module->has_processes())
|
|
||||||
Pass::call_on_module(design, derived_module, "proc");
|
|
||||||
SigMap derived_sigmap(derived_module);
|
|
||||||
|
|
||||||
SigSpec pattern;
|
|
||||||
SigSpec with;
|
|
||||||
for (auto &conn : cell->connections()) {
|
|
||||||
Wire *first = derived_module->wire(conn.first);
|
|
||||||
log_assert(first);
|
|
||||||
SigSpec second = assign_map(conn.second);
|
|
||||||
log_assert(GetSize(first) == GetSize(second));
|
|
||||||
pattern.append(first);
|
|
||||||
with.append(second);
|
|
||||||
}
|
|
||||||
|
|
||||||
Wire *abc9_clock_wire = derived_module->wire("\\$abc9_clock");
|
|
||||||
if (abc9_clock_wire == NULL)
|
if (abc9_clock_wire == NULL)
|
||||||
log_error("'\\$abc9_clock' is not a wire present in module '%s'.\n", log_id(cell->type));
|
log_error("'%s$abc9_clock' is not a wire present in module '%s'.\n", cell->name.c_str(), log_id(module));
|
||||||
SigSpec abc9_clock = derived_sigmap(abc9_clock_wire);
|
SigSpec abc9_clock = assign_map(abc9_clock_wire);
|
||||||
abc9_clock.replace(pattern, with);
|
|
||||||
for (const auto &c : abc9_clock.chunks())
|
|
||||||
log_assert(!c.wire || c.wire->module == module);
|
|
||||||
|
|
||||||
Wire *abc9_control_wire = derived_module->wire("\\$abc9_control");
|
Wire *abc9_control_wire = module->wire(stringf("%s.$abc9_control", cell->name.c_str()));
|
||||||
if (abc9_control_wire == NULL)
|
if (abc9_control_wire == NULL)
|
||||||
log_error("'\\$abc9_control' is not a wire present in module '%s'.\n", log_id(cell->type));
|
log_error("'%s$abc9_control' is not a wire present in module '%s'.\n", cell->name.c_str(), log_id(module));
|
||||||
SigSpec abc9_control = derived_sigmap(abc9_control_wire);
|
SigSpec abc9_control = assign_map(abc9_control_wire);
|
||||||
abc9_control.replace(pattern, with);
|
|
||||||
for (const auto &c : abc9_control.chunks())
|
|
||||||
log_assert(!c.wire || c.wire->module == module);
|
|
||||||
|
|
||||||
unassigned_cells.erase(cell);
|
unassigned_cells.erase(cell);
|
||||||
expand_queue.insert(cell);
|
expand_queue.insert(cell);
|
||||||
|
|
|
@ -49,8 +49,57 @@ module FDRE (output reg Q, input C, CE, D, R);
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .R(R)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .R(R)
|
||||||
);
|
);
|
||||||
wire _TECHMAP_REPLACE_.$currQ = Q;
|
// `abc9' requires that complex flops be split into a combinatorial box
|
||||||
|
// feeding a simple flop ($_ABC9_FF_).
|
||||||
|
// Yosys will automatically analyse the simulation model (described in
|
||||||
|
// cells_sim.v) and detach any $_DFF_P_ or $_DFF_N_ cells present in
|
||||||
|
// order to extract the combinatorial control logic left behind.
|
||||||
|
// Specifically, a simulation model similar to the one below:
|
||||||
|
//
|
||||||
|
// ++===================================++
|
||||||
|
// || Sim model ||
|
||||||
|
// || /\/\/\/\ ||
|
||||||
|
// D -->>-----< > +------+ ||
|
||||||
|
// R -->>-----< Comb. > |$_DFF_| ||
|
||||||
|
// CE -->>-----< logic >-----| [NP]_|---+---->>-- Q
|
||||||
|
// || +--< > +------+ | ||
|
||||||
|
// || | \/\/\/\/ | ||
|
||||||
|
// || | | ||
|
||||||
|
// || +----------------------------+ ||
|
||||||
|
// || ||
|
||||||
|
// ++===================================++
|
||||||
|
//
|
||||||
|
// is transformed into:
|
||||||
|
//
|
||||||
|
// ++==================++
|
||||||
|
// || Comb box ||
|
||||||
|
// || ||
|
||||||
|
// || /\/\/\/\ ||
|
||||||
|
// D -->>-----< > || +------+
|
||||||
|
// R -->>-----< Comb. > || |$_ABC_|
|
||||||
|
// CE -->>-----< logic >--->>-- $nextQ --| FF_ |--+-->> Q
|
||||||
|
// $currQ +-->>-----< > || +------+ |
|
||||||
|
// | || \/\/\/\/ || |
|
||||||
|
// | || || |
|
||||||
|
// | ++==================++ |
|
||||||
|
// | |
|
||||||
|
// +----------------------------------------------+
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(Q));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(Q));
|
||||||
|
|
||||||
|
// Special signal indicating clock domain
|
||||||
|
// (used to partition the module so that `abc9' only performs
|
||||||
|
// sequential synthesis (reachability analysis) correctly on
|
||||||
|
// one domain at a time)
|
||||||
|
wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, IS_C_INVERTED};
|
||||||
|
// Special signal indicating control domain
|
||||||
|
// (which, combined with this cell type, encodes to `abc9'
|
||||||
|
// which flops may be merged together)
|
||||||
|
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, IS_D_INVERTED, R, IS_R_INVERTED};
|
||||||
|
// Special signal indicating the current value of the flip-flop
|
||||||
|
// In order to achieve clock-enable behaviour, the current value
|
||||||
|
// of the sequential output is required which Yosys will
|
||||||
|
// connect to the special `$currQ' wire.
|
||||||
|
wire _TECHMAP_REPLACE_.$currQ = Q;
|
||||||
endmodule
|
endmodule
|
||||||
module FDRE_1 (output reg Q, input C, CE, D, R);
|
module FDRE_1 (output reg Q, input C, CE, D, R);
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
|
@ -60,8 +109,22 @@ module FDRE_1 (output reg Q, input C, CE, D, R);
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .R(R)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .R(R)
|
||||||
);
|
);
|
||||||
wire _TECHMAP_REPLACE_.$currQ = Q;
|
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(Q));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(Q));
|
||||||
|
|
||||||
|
// Special signal indicating clock domain
|
||||||
|
// (used to partition the module so that `abc9' only performs
|
||||||
|
// sequential synthesis (reachability analysis) correctly on
|
||||||
|
// one domain at a time)
|
||||||
|
wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
|
||||||
|
// Special signal indicating control domain
|
||||||
|
// (which, combined with this spell type, encodes to `abc9'
|
||||||
|
// which flops may be merged together)
|
||||||
|
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, R, 1'b0 /* IS_R_INVERTED */};
|
||||||
|
// Special signal indicating the current value of the flip-flop
|
||||||
|
// In order to achieve clock-enable behaviour, the current value
|
||||||
|
// of the sequential output is required which Yosys will
|
||||||
|
// connect to the special `$currQ' wire.
|
||||||
|
wire _TECHMAP_REPLACE_.$currQ = Q;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module FDCE (output reg Q, input C, CE, D, CLR);
|
module FDCE (output reg Q, input C, CE, D, CLR);
|
||||||
|
@ -69,18 +132,38 @@ module FDCE (output reg Q, input C, CE, D, CLR);
|
||||||
parameter [0:0] IS_C_INVERTED = 1'b0;
|
parameter [0:0] IS_C_INVERTED = 1'b0;
|
||||||
parameter [0:0] IS_D_INVERTED = 1'b0;
|
parameter [0:0] IS_D_INVERTED = 1'b0;
|
||||||
parameter [0:0] IS_CLR_INVERTED = 1'b0;
|
parameter [0:0] IS_CLR_INVERTED = 1'b0;
|
||||||
wire $currQ, $nextQ;
|
wire $nextQ, $currQ;
|
||||||
FDCE #(
|
FDCE #(
|
||||||
.INIT(INIT),
|
.INIT(INIT),
|
||||||
.IS_C_INVERTED(IS_C_INVERTED),
|
.IS_C_INVERTED(IS_C_INVERTED),
|
||||||
.IS_D_INVERTED(IS_D_INVERTED),
|
.IS_D_INVERTED(IS_D_INVERTED),
|
||||||
.IS_CLR_INVERTED(IS_CLR_INVERTED)
|
.IS_CLR_INVERTED(IS_CLR_INVERTED)
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .CLR(CLR)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .CLR(IS_CLR_INVERTED)
|
||||||
|
// ^^^ Note that async
|
||||||
|
// control is disabled
|
||||||
|
// and captured by
|
||||||
|
// $__ABC9_ASYNC below
|
||||||
);
|
);
|
||||||
wire _TECHMAP_REPLACE_.$currQ = Q;
|
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($currQ));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($currQ));
|
||||||
\$__ABC_ASYNC abc_async (.A($currQ), .S(CLR ^ IS_CLR_INVERTED), .Y(Q));
|
// Since this is an async flop, async behaviour is also dealt with
|
||||||
|
// using the $_ABC9_ASYNC box by abc9_map.v
|
||||||
|
\$__ABC9_ASYNC abc_async (.A($currQ), .S(CLR ^ IS_CLR_INVERTED), .Y(Q));
|
||||||
|
|
||||||
|
// Special signal indicating clock domain
|
||||||
|
// (used to partition the module so that `abc9' only performs
|
||||||
|
// sequential synthesis (reachability analysis) correctly on
|
||||||
|
// one domain at a time)
|
||||||
|
wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, IS_C_INVERTED};
|
||||||
|
// Special signal indicating control domain
|
||||||
|
// (which, combined with this spell type, encodes to `abc9'
|
||||||
|
// which flops may be merged together)
|
||||||
|
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, IS_D_INVERTED, CLR, IS_CLR_INVERTED};
|
||||||
|
// Special signal indicating the current value of the flip-flop
|
||||||
|
// In order to achieve clock-enable behaviour, the current value
|
||||||
|
// of the sequential output is required which Yosys will
|
||||||
|
// connect to the special `$currQ' wire.
|
||||||
|
wire _TECHMAP_REPLACE_.$currQ = $currQ;
|
||||||
endmodule
|
endmodule
|
||||||
module FDCE_1 (output reg Q, input C, CE, D, CLR);
|
module FDCE_1 (output reg Q, input C, CE, D, CLR);
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
|
@ -88,11 +171,29 @@ module FDCE_1 (output reg Q, input C, CE, D, CLR);
|
||||||
FDCE_1 #(
|
FDCE_1 #(
|
||||||
.INIT(INIT)
|
.INIT(INIT)
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .CLR(CLR)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .CLR(1'b0)
|
||||||
|
// ^^^ Note that async
|
||||||
|
// control is disabled
|
||||||
|
// and captured by
|
||||||
|
// $__ABC9_ASYNC below
|
||||||
);
|
);
|
||||||
wire _TECHMAP_REPLACE_.$currQ = Q;
|
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($currQ));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($currQ));
|
||||||
\$__ABC_ASYNC abc_async (.A($currQ), .S(CLR), .Y(Q));
|
\$__ABC9_ASYNC abc_async (.A($currQ), .S(CLR), .Y(Q));
|
||||||
|
|
||||||
|
// Special signal indicating clock domain
|
||||||
|
// (used to partition the module so that `abc9' only performs
|
||||||
|
// sequential synthesis (reachability analysis) correctly on
|
||||||
|
// one domain at a time)
|
||||||
|
wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
|
||||||
|
// Special signal indicating control domain
|
||||||
|
// (which, combined with this spell type, encodes to `abc9'
|
||||||
|
// which flops may be merged together)
|
||||||
|
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, CLR, 1'b0 /* IS_CLR_INVERTED */};
|
||||||
|
// Special signal indicating the current value of the flip-flop
|
||||||
|
// In order to achieve clock-enable behaviour, the current value
|
||||||
|
// of the sequential output is required which Yosys will
|
||||||
|
// connect to the special `$currQ' wire.
|
||||||
|
wire _TECHMAP_REPLACE_.$currQ = $currQ;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module FDPE (output reg Q, input C, CE, D, PRE);
|
module FDPE (output reg Q, input C, CE, D, PRE);
|
||||||
|
@ -107,11 +208,29 @@ module FDPE (output reg Q, input C, CE, D, PRE);
|
||||||
.IS_D_INVERTED(IS_D_INVERTED),
|
.IS_D_INVERTED(IS_D_INVERTED),
|
||||||
.IS_PRE_INVERTED(IS_PRE_INVERTED),
|
.IS_PRE_INVERTED(IS_PRE_INVERTED),
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .PRE(PRE)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .PRE(IS_PRE_INVERTED)
|
||||||
|
// ^^^ Note that async
|
||||||
|
// control is disabled
|
||||||
|
// and captured by
|
||||||
|
// $__ABC9_ASYNC below
|
||||||
);
|
);
|
||||||
wire _TECHMAP_REPLACE_.$currQ = Q;
|
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($currQ));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($currQ));
|
||||||
\$__ABC_ASYNC abc_async (.A($currQ), .S(PRE ^ IS_PRE_INVERTED), .Y(Q));
|
\$__ABC9_ASYNC abc_async (.A($currQ), .S(PRE ^ IS_PRE_INVERTED), .Y(Q));
|
||||||
|
|
||||||
|
// Special signal indicating clock domain
|
||||||
|
// (used to partition the module so that `abc9' only performs
|
||||||
|
// sequential synthesis (reachability analysis) correctly on
|
||||||
|
// one domain at a time)
|
||||||
|
wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, IS_C_INVERTED};
|
||||||
|
// Special signal indicating control domain
|
||||||
|
// (which, combined with this spell type, encodes to `abc9'
|
||||||
|
// which flops may be merged together)
|
||||||
|
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, IS_D_INVERTED, PRE, IS_PRE_INVERTED};
|
||||||
|
// Special signal indicating the current value of the flip-flop
|
||||||
|
// In order to achieve clock-enable behaviour, the current value
|
||||||
|
// of the sequential output is required which Yosys will
|
||||||
|
// connect to the special `$currQ' wire.
|
||||||
|
wire _TECHMAP_REPLACE_.$currQ = $currQ;
|
||||||
endmodule
|
endmodule
|
||||||
module FDPE_1 (output reg Q, input C, CE, D, PRE);
|
module FDPE_1 (output reg Q, input C, CE, D, PRE);
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
|
@ -119,11 +238,29 @@ module FDPE_1 (output reg Q, input C, CE, D, PRE);
|
||||||
FDPE_1 #(
|
FDPE_1 #(
|
||||||
.INIT(INIT)
|
.INIT(INIT)
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .PRE(PRE)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .PRE(1'b0)
|
||||||
|
// ^^^ Note that async
|
||||||
|
// control is disabled
|
||||||
|
// and captured by
|
||||||
|
// $__ABC9_ASYNC below
|
||||||
);
|
);
|
||||||
wire _TECHMAP_REPLACE_.$currQ = Q;
|
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($currQ));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q($currQ));
|
||||||
\$__ABC_ASYNC abc_async (.A($currQ), .S(PRE), .Y(Q));
|
\$__ABC9_ASYNC abc_async (.A($currQ), .S(PRE), .Y(Q));
|
||||||
|
|
||||||
|
// Special signal indicating clock domain
|
||||||
|
// (used to partition the module so that `abc9' only performs
|
||||||
|
// sequential synthesis (reachability analysis) correctly on
|
||||||
|
// one domain at a time)
|
||||||
|
wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
|
||||||
|
// Special signal indicating control domain
|
||||||
|
// (which, combined with this spell type, encodes to `abc9'
|
||||||
|
// which flops may be merged together)
|
||||||
|
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, PRE, 1'b0 /* IS_PRE_INVERTED */};
|
||||||
|
// Special signal indicating the current value of the flip-flop
|
||||||
|
// In order to achieve clock-enable behaviour, the current value
|
||||||
|
// of the sequential output is required which Yosys will
|
||||||
|
// connect to the special `$currQ' wire.
|
||||||
|
wire _TECHMAP_REPLACE_.$currQ = $currQ;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module FDSE (output reg Q, input C, CE, D, S);
|
module FDSE (output reg Q, input C, CE, D, S);
|
||||||
|
@ -140,8 +277,22 @@ module FDSE (output reg Q, input C, CE, D, S);
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .S(S)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .S(S)
|
||||||
);
|
);
|
||||||
wire _TECHMAP_REPLACE_.$currQ = Q;
|
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(Q));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(Q));
|
||||||
|
|
||||||
|
// Special signal indicating clock domain
|
||||||
|
// (used to partition the module so that `abc9' only performs
|
||||||
|
// sequential synthesis (reachability analysis) correctly on
|
||||||
|
// one domain at a time)
|
||||||
|
wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, IS_C_INVERTED};
|
||||||
|
// Special signal indicating control domain
|
||||||
|
// (which, combined with this spell type, encodes to `abc9'
|
||||||
|
// which flops may be merged together)
|
||||||
|
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, IS_D_INVERTED, S, IS_S_INVERTED};
|
||||||
|
// Special signal indicating the current value of the flip-flop
|
||||||
|
// In order to achieve clock-enable behaviour, the current value
|
||||||
|
// of the sequential output is required which Yosys will
|
||||||
|
// connect to the special `$currQ' wire.
|
||||||
|
wire _TECHMAP_REPLACE_.$currQ = Q;
|
||||||
endmodule
|
endmodule
|
||||||
module FDSE_1 (output reg Q, input C, CE, D, S);
|
module FDSE_1 (output reg Q, input C, CE, D, S);
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
|
@ -151,8 +302,22 @@ module FDSE_1 (output reg Q, input C, CE, D, S);
|
||||||
) _TECHMAP_REPLACE_ (
|
) _TECHMAP_REPLACE_ (
|
||||||
.D(D), .Q($nextQ), .C(C), .CE(CE), .S(S)
|
.D(D), .Q($nextQ), .C(C), .CE(CE), .S(S)
|
||||||
);
|
);
|
||||||
wire _TECHMAP_REPLACE_.$currQ = Q;
|
|
||||||
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(Q));
|
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(Q));
|
||||||
|
|
||||||
|
// Special signal indicating clock domain
|
||||||
|
// (used to partition the module so that `abc9' only performs
|
||||||
|
// sequential synthesis (reachability analysis) correctly on
|
||||||
|
// one domain at a time)
|
||||||
|
wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
|
||||||
|
// Special signal indicating control domain
|
||||||
|
// (which, combined with this spell type, encodes to `abc9'
|
||||||
|
// which flops may be merged together)
|
||||||
|
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, S, 1'b0 /* IS_S_INVERTED */};
|
||||||
|
// Special signal indicating the current value of the flip-flop
|
||||||
|
// In order to achieve clock-enable behaviour, the current value
|
||||||
|
// of the sequential output is required which Yosys will
|
||||||
|
// connect to the special `$currQ' wire.
|
||||||
|
wire _TECHMAP_REPLACE_.$currQ = Q;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module RAM32X1D (
|
module RAM32X1D (
|
||||||
|
|
|
@ -30,11 +30,8 @@ module \$__XILINX_MUXF78 (output O, input I0, I1, I2, I3, S0, S1);
|
||||||
: (S0 ? I1 : I0);
|
: (S0 ? I1 : I0);
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module \$__ABC_FF_ (input D, output Q);
|
|
||||||
endmodule
|
|
||||||
|
|
||||||
(* abc_box_id = 1000 *)
|
(* abc_box_id = 1000 *)
|
||||||
module \$__ABC_ASYNC (input A, S, output Y);
|
module \$__ABC9_ASYNC (input A, S, output Y);
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
// Box to emulate comb/seq behaviour of RAMD{32,64} and SRL{16,32}
|
// Box to emulate comb/seq behaviour of RAMD{32,64} and SRL{16,32}
|
||||||
|
|
|
@ -44,7 +44,7 @@ CARRY4 4 1 10 8
|
||||||
# Box to emulate async behaviour of FD[CP]*
|
# Box to emulate async behaviour of FD[CP]*
|
||||||
# Inputs: A S
|
# Inputs: A S
|
||||||
# Outputs: Y
|
# Outputs: Y
|
||||||
$__ABC_ASYNC 1000 0 2 1
|
$__ABC9_ASYNC 1000 0 2 1
|
||||||
0 764
|
0 764
|
||||||
|
|
||||||
# The following FD*.{CE,R,CLR,PRE) are offset by 46ps to
|
# The following FD*.{CE,R,CLR,PRE) are offset by 46ps to
|
||||||
|
|
|
@ -258,33 +258,10 @@ module FDRE (
|
||||||
parameter [0:0] IS_D_INVERTED = 1'b0;
|
parameter [0:0] IS_D_INVERTED = 1'b0;
|
||||||
parameter [0:0] IS_R_INVERTED = 1'b0;
|
parameter [0:0] IS_R_INVERTED = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
wire \$currQ ;
|
|
||||||
reg \$nextQ ;
|
|
||||||
always @* if (R == !IS_R_INVERTED) \$nextQ = 1'b0; else if (CE) \$nextQ = D ^ IS_D_INVERTED; else \$nextQ = \$currQ ;
|
|
||||||
`ifdef _ABC9
|
|
||||||
// `abc9' requires that complex flops be split into a combinatorial
|
|
||||||
// box (this module) feeding a simple flop ($_ABC9_FF_ in abc9_map.v)
|
|
||||||
// In order to achieve clock-enable behaviour, the current value
|
|
||||||
// of the sequential output is required which Yosys will
|
|
||||||
// connect to the special `$currQ' wire.
|
|
||||||
|
|
||||||
// Special signal indicating clock domain
|
|
||||||
// (used to partition the module so that `abc9' only performs
|
|
||||||
// sequential synthesis (reachability analysis) correctly on
|
|
||||||
// one domain at a time)
|
|
||||||
wire [1:0] $abc9_clock = {C, IS_C_INVERTED};
|
|
||||||
// Special signal indicating control domain
|
|
||||||
// (which, combined with this spell type, encodes to `abc9'
|
|
||||||
// which flops may be merged together)
|
|
||||||
wire [3:0] $abc9_control = {CE, IS_D_INVERTED, R, IS_R_INVERTED};
|
|
||||||
always @* Q = \$nextQ ;
|
|
||||||
`else
|
|
||||||
assign \$currQ = Q;
|
|
||||||
generate case (|IS_C_INVERTED)
|
generate case (|IS_C_INVERTED)
|
||||||
1'b0: always @(posedge C) Q <= \$nextQ ;
|
1'b0: always @(posedge C) if (R == !IS_R_INVERTED) Q <= 1'b0; else if (CE) Q <= D ^ IS_D_INVERTED;
|
||||||
1'b1: always @(negedge C) Q <= \$nextQ ;
|
1'b1: always @(negedge C) if (R == !IS_R_INVERTED) Q <= 1'b0; else if (CE) Q <= D ^ IS_D_INVERTED;
|
||||||
endcase endgenerate
|
endcase endgenerate
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_box_id=1002, lib_whitebox, abc9_flop *)
|
(* abc9_box_id=1002, lib_whitebox, abc9_flop *)
|
||||||
|
@ -297,30 +274,7 @@ module FDRE_1 (
|
||||||
);
|
);
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
wire \$currQ ;
|
always @(negedge C) if (R) Q <= 1'b0; else if (CE) Q <= D;
|
||||||
reg \$nextQ ;
|
|
||||||
always @* if (R) Q <= 1'b0; else if (CE) Q <= D; else \$nextQ = \$currQ ;
|
|
||||||
`ifdef _ABC9
|
|
||||||
// `abc9' requires that complex flops be split into a combinatorial
|
|
||||||
// box (this module) feeding a simple flop ($_ABC9_FF_ in abc9_map.v)
|
|
||||||
// In order to achieve clock-enable behaviour, the current value
|
|
||||||
// of the sequential output is required which Yosys will
|
|
||||||
// connect to the special `$currQ' wire.
|
|
||||||
|
|
||||||
// Special signal indicating clock domain
|
|
||||||
// (used to partition the module so that `abc9' only performs
|
|
||||||
// sequential synthesis (reachability analysis) correctly on
|
|
||||||
// one domain at a time)
|
|
||||||
wire [1:0] $abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
|
|
||||||
// Special signal indicating control domain
|
|
||||||
// (which, combined with this spell type, encodes to `abc9'
|
|
||||||
// which flops may be merged together)
|
|
||||||
wire [3:0] $abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, R, 1'b0 /* IS_R_INVERTED */};
|
|
||||||
always @* Q = \$nextQ ;
|
|
||||||
`else
|
|
||||||
assign \$currQ = Q;
|
|
||||||
always @(negedge C) Q <= \$nextQ ;
|
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_box_id=1003, lib_whitebox, abc9_flop *)
|
(* abc9_box_id=1003, lib_whitebox, abc9_flop *)
|
||||||
|
@ -341,37 +295,12 @@ module FDCE (
|
||||||
parameter [0:0] IS_D_INVERTED = 1'b0;
|
parameter [0:0] IS_D_INVERTED = 1'b0;
|
||||||
parameter [0:0] IS_CLR_INVERTED = 1'b0;
|
parameter [0:0] IS_CLR_INVERTED = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
wire \$currQ ;
|
|
||||||
reg \$nextQ ;
|
|
||||||
always @* if (CE) Q <= D ^ IS_D_INVERTED; else \$nextQ = \$currQ ;
|
|
||||||
`ifdef _ABC9
|
|
||||||
// `abc9' requires that complex flops be split into a combinatorial
|
|
||||||
// box (this module) feeding a simple flop ($_ABC9_FF_ in abc9_map.v)
|
|
||||||
// In order to achieve clock-enable behaviour, the current value
|
|
||||||
// of the sequential output is required which Yosys will
|
|
||||||
// connect to the special `$currQ' wire.
|
|
||||||
// Since this is an async flop, async behaviour is also dealt with
|
|
||||||
// using the $_ABC9_ASYNC box by abc9_map.v
|
|
||||||
|
|
||||||
// Special signal indicating clock domain
|
|
||||||
// (used to partition the module so that `abc9' only performs
|
|
||||||
// sequential synthesis (reachability analysis) correctly on
|
|
||||||
// one domain at a time)
|
|
||||||
wire [1:0] $abc9_clock = {C, IS_C_INVERTED};
|
|
||||||
// Special signal indicating control domain
|
|
||||||
// (which, combined with this spell type, encodes to `abc9'
|
|
||||||
// which flops may be merged together)
|
|
||||||
wire [3:0] $abc9_control = {CE, IS_D_INVERTED, CLR, IS_CLR_INVERTED};
|
|
||||||
always @* Q = \$nextQ ;
|
|
||||||
`else
|
|
||||||
assign \$currQ = Q;
|
|
||||||
generate case ({|IS_C_INVERTED, |IS_CLR_INVERTED})
|
generate case ({|IS_C_INVERTED, |IS_CLR_INVERTED})
|
||||||
2'b00: always @(posedge C, posedge CLR) if ( CLR) Q <= 1'b0; else Q <= \$nextQ ;
|
2'b00: always @(posedge C, posedge CLR) if ( CLR) Q <= 1'b0; else if (CE) Q <= D ^ IS_D_INVERTED;
|
||||||
2'b01: always @(posedge C, negedge CLR) if (!CLR) Q <= 1'b0; else Q <= \$nextQ ;
|
2'b01: always @(posedge C, negedge CLR) if (!CLR) Q <= 1'b0; else if (CE) Q <= D ^ IS_D_INVERTED;
|
||||||
2'b10: always @(negedge C, posedge CLR) if ( CLR) Q <= 1'b0; else Q <= \$nextQ ;
|
2'b10: always @(negedge C, posedge CLR) if ( CLR) Q <= 1'b0; else if (CE) Q <= D ^ IS_D_INVERTED;
|
||||||
2'b11: always @(negedge C, negedge CLR) if (!CLR) Q <= 1'b0; else Q <= \$nextQ ;
|
2'b11: always @(negedge C, negedge CLR) if (!CLR) Q <= 1'b0; else if (CE) Q <= D ^ IS_D_INVERTED;
|
||||||
endcase endgenerate
|
endcase endgenerate
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_box_id=1004, lib_whitebox, abc9_flop *)
|
(* abc9_box_id=1004, lib_whitebox, abc9_flop *)
|
||||||
|
@ -384,32 +313,7 @@ module FDCE_1 (
|
||||||
);
|
);
|
||||||
parameter [0:0] INIT = 1'b0;
|
parameter [0:0] INIT = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
wire \$currQ ;
|
always @(negedge C, posedge CLR) if (CLR) Q <= 1'b0; else if (CE) Q <= D;
|
||||||
reg \$nextQ ;
|
|
||||||
always @* if (CE) Q <= D; else \$nextQ = \$currQ ;
|
|
||||||
`ifdef _ABC9
|
|
||||||
// `abc9' requires that complex flops be split into a combinatorial
|
|
||||||
// box (this module) feeding a simple flop ($_ABC9_FF_ in abc9_map.v)
|
|
||||||
// In order to achieve clock-enable behaviour, the current value
|
|
||||||
// of the sequential output is required which Yosys will
|
|
||||||
// connect to the special `$currQ' wire.
|
|
||||||
// Since this is an async flop, async behaviour is also dealt with
|
|
||||||
// using the $_ABC9_ASYNC box by abc9_map.v
|
|
||||||
|
|
||||||
// Special signal indicating clock domain
|
|
||||||
// (used to partition the module so that `abc9' only performs
|
|
||||||
// sequential synthesis (reachability analysis) correctly on
|
|
||||||
// one domain at a time)
|
|
||||||
wire [1:0] $abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
|
|
||||||
// Special signal indicating control domain
|
|
||||||
// (which, combined with this spell type, encodes to `abc9'
|
|
||||||
// which flops may be merged together)
|
|
||||||
wire [3:0] $abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, CLR, 1'b0 /* IS_CLR_INVERTED */};
|
|
||||||
always @* Q = \$nextQ ;
|
|
||||||
`else
|
|
||||||
assign \$currQ = Q;
|
|
||||||
always @(negedge C, posedge CLR) if (CLR) Q <= 1'b0; else Q <= \$nextQ ;
|
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_box_id=1005, lib_whitebox, abc9_flop *)
|
(* abc9_box_id=1005, lib_whitebox, abc9_flop *)
|
||||||
|
@ -430,37 +334,12 @@ module FDPE (
|
||||||
parameter [0:0] IS_D_INVERTED = 1'b0;
|
parameter [0:0] IS_D_INVERTED = 1'b0;
|
||||||
parameter [0:0] IS_PRE_INVERTED = 1'b0;
|
parameter [0:0] IS_PRE_INVERTED = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
wire \$currQ ;
|
|
||||||
reg \$nextQ ;
|
|
||||||
always @* if (CE) Q <= D ^ IS_D_INVERTED; else \$nextQ = \$currQ ;
|
|
||||||
`ifdef _ABC9
|
|
||||||
// `abc9' requires that complex flops be split into a combinatorial
|
|
||||||
// box (this module) feeding a simple flop ($_ABC9_FF_ in abc9_map.v)
|
|
||||||
// In order to achieve clock-enable behaviour, the current value
|
|
||||||
// of the sequential output is required which Yosys will
|
|
||||||
// connect to the special `$currQ' wire.
|
|
||||||
// Since this is an async flop, async behaviour is also dealt with
|
|
||||||
// using the $_ABC9_ASYNC box by abc9_map.v
|
|
||||||
|
|
||||||
// Special signal indicating clock domain
|
|
||||||
// (used to partition the module so that `abc9' only performs
|
|
||||||
// sequential synthesis (reachability analysis) correctly on
|
|
||||||
// one domain at a time)
|
|
||||||
wire [1:0] $abc9_clock = {C, IS_C_INVERTED};
|
|
||||||
// Special signal indicating control domain
|
|
||||||
// (which, combined with this spell type, encodes to `abc9'
|
|
||||||
// which flops may be merged together)
|
|
||||||
wire [3:0] $abc9_control = {CE, IS_D_INVERTED, PRE, IS_PRE_INVERTED};
|
|
||||||
always @* Q = \$nextQ ;
|
|
||||||
`else
|
|
||||||
assign \$currQ = Q;
|
|
||||||
generate case ({|IS_C_INVERTED, |IS_PRE_INVERTED})
|
generate case ({|IS_C_INVERTED, |IS_PRE_INVERTED})
|
||||||
2'b00: always @(posedge C, posedge PRE) if ( PRE) Q <= 1'b1; else Q <= \$nextQ ;
|
2'b00: always @(posedge C, posedge PRE) if ( PRE) Q <= 1'b1; else Q <= Q ;
|
||||||
2'b01: always @(posedge C, negedge PRE) if (!PRE) Q <= 1'b1; else Q <= \$nextQ ;
|
2'b01: always @(posedge C, negedge PRE) if (!PRE) Q <= 1'b1; else Q <= Q ;
|
||||||
2'b10: always @(negedge C, posedge PRE) if ( PRE) Q <= 1'b1; else Q <= \$nextQ ;
|
2'b10: always @(negedge C, posedge PRE) if ( PRE) Q <= 1'b1; else Q <= Q ;
|
||||||
2'b11: always @(negedge C, negedge PRE) if (!PRE) Q <= 1'b1; else Q <= \$nextQ ;
|
2'b11: always @(negedge C, negedge PRE) if (!PRE) Q <= 1'b1; else Q <= Q ;
|
||||||
endcase endgenerate
|
endcase endgenerate
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_box_id=1006, lib_whitebox, abc9_flop *)
|
(* abc9_box_id=1006, lib_whitebox, abc9_flop *)
|
||||||
|
@ -473,32 +352,7 @@ module FDPE_1 (
|
||||||
);
|
);
|
||||||
parameter [0:0] INIT = 1'b1;
|
parameter [0:0] INIT = 1'b1;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
wire \$currQ ;
|
always @(negedge C, posedge PRE) if (PRE) Q <= 1'b1; else if (CE) Q <= D;
|
||||||
reg \$nextQ ;
|
|
||||||
always @* if (CE) Q <= D; else \$nextQ = \$currQ ;
|
|
||||||
`ifdef _ABC9
|
|
||||||
// `abc9' requires that complex flops be split into a combinatorial
|
|
||||||
// box (this module) feeding a simple flop ($_ABC9_FF_ in abc9_map.v)
|
|
||||||
// In order to achieve clock-enable behaviour, the current value
|
|
||||||
// of the sequential output is required which Yosys will
|
|
||||||
// connect to the special `$currQ' wire.
|
|
||||||
// Since this is an async flop, async behaviour is also dealt with
|
|
||||||
// using the $_ABC9_ASYNC box by abc9_map.v
|
|
||||||
|
|
||||||
// Special signal indicating clock domain
|
|
||||||
// (used to partition the module so that `abc9' only performs
|
|
||||||
// sequential synthesis (reachability analysis) correctly on
|
|
||||||
// one domain at a time)
|
|
||||||
wire [1:0] $abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
|
|
||||||
// Special signal indicating control domain
|
|
||||||
// (which, combined with this spell type, encodes to `abc9'
|
|
||||||
// which flops may be merged together)
|
|
||||||
wire [3:0] $abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, PRE, 1'b0 /* IS_PRE_INVERTED */};
|
|
||||||
always @* Q = \$nextQ ;
|
|
||||||
`else
|
|
||||||
assign \$currQ = Q;
|
|
||||||
always @(negedge C, posedge PRE) if (PRE) Q <= 1'b1; else Q <= \$nextQ ;
|
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_box_id=1007, lib_whitebox, abc9_flop *)
|
(* abc9_box_id=1007, lib_whitebox, abc9_flop *)
|
||||||
|
@ -519,33 +373,10 @@ module FDSE (
|
||||||
parameter [0:0] IS_D_INVERTED = 1'b0;
|
parameter [0:0] IS_D_INVERTED = 1'b0;
|
||||||
parameter [0:0] IS_S_INVERTED = 1'b0;
|
parameter [0:0] IS_S_INVERTED = 1'b0;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
wire \$currQ ;
|
|
||||||
reg \$nextQ ;
|
|
||||||
always @* if (S == !IS_S_INVERTED) \$nextQ = 1'b1; else if (CE) \$nextQ = D ^ IS_D_INVERTED; else \$nextQ = \$currQ ;
|
|
||||||
`ifdef _ABC9
|
|
||||||
// `abc9' requires that complex flops be split into a combinatorial
|
|
||||||
// box (this module) feeding a simple flop ($_ABC9_FF_ in abc9_map.v)
|
|
||||||
// In order to achieve clock-enable behaviour, the current value
|
|
||||||
// of the sequential output is required which Yosys will
|
|
||||||
// connect to the special `$currQ' wire.
|
|
||||||
|
|
||||||
// Special signal indicating clock domain
|
|
||||||
// (used to partition the module so that `abc9' only performs
|
|
||||||
// sequential synthesis (reachability analysis) correctly on
|
|
||||||
// one domain at a time)
|
|
||||||
wire [1:0] $abc9_clock = {C, IS_C_INVERTED};
|
|
||||||
// Special signal indicating control domain
|
|
||||||
// (which, combined with this spell type, encodes to `abc9'
|
|
||||||
// which flops may be merged together)
|
|
||||||
wire [3:0] $abc9_control = {CE, IS_D_INVERTED, S, IS_S_INVERTED};
|
|
||||||
always @* Q = \$nextQ ;
|
|
||||||
`else
|
|
||||||
assign \$currQ = Q;
|
|
||||||
generate case (|IS_C_INVERTED)
|
generate case (|IS_C_INVERTED)
|
||||||
1'b0: always @(posedge C) Q <= \$nextQ ;
|
1'b0: always @(posedge C) if (S == !IS_S_INVERTED) Q <= 1'b1; else if (CE) Q <= D ^ IS_D_INVERTED;
|
||||||
1'b1: always @(negedge C) Q <= \$nextQ ;
|
1'b1: always @(negedge C) if (S == !IS_S_INVERTED) Q <= 1'b1; else if (CE) Q <= D ^ IS_D_INVERTED;
|
||||||
endcase endgenerate
|
endcase endgenerate
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_box_id=1008, lib_whitebox, abc9_flop *)
|
(* abc9_box_id=1008, lib_whitebox, abc9_flop *)
|
||||||
|
@ -558,30 +389,7 @@ module FDSE_1 (
|
||||||
);
|
);
|
||||||
parameter [0:0] INIT = 1'b1;
|
parameter [0:0] INIT = 1'b1;
|
||||||
initial Q <= INIT;
|
initial Q <= INIT;
|
||||||
wire \$currQ ;
|
always @(negedge C) if (S) Q <= 1'b1; else if (CE) Q <= D;
|
||||||
reg \$nextQ ;
|
|
||||||
always @* if (S) \$nextQ = 1'b1; else if (CE) \$nextQ = D; else \$nextQ = \$currQ ;
|
|
||||||
`ifdef _ABC9
|
|
||||||
// `abc9' requires that complex flops be split into a combinatorial
|
|
||||||
// box (this module) feeding a simple flop ($_ABC9_FF_ in abc9_map.v)
|
|
||||||
// In order to achieve clock-enable behaviour, the current value
|
|
||||||
// of the sequential output is required which Yosys will
|
|
||||||
// connect to the special `$currQ' wire.
|
|
||||||
|
|
||||||
// Special signal indicating clock domain
|
|
||||||
// (used to partition the module so that `abc9' only performs
|
|
||||||
// sequential synthesis (reachability analysis) correctly on
|
|
||||||
// one domain at a time)
|
|
||||||
wire [1:0] $abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
|
|
||||||
// Special signal indicating control domain
|
|
||||||
// (which, combined with this spell type, encodes to `abc9'
|
|
||||||
// which flops may be merged together)
|
|
||||||
wire [3:0] $abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, S, 1'b0 /* IS_S_INVERTED */};
|
|
||||||
always @* Q = \$nextQ ;
|
|
||||||
`else
|
|
||||||
assign \$currQ = Q;
|
|
||||||
always @(negedge C) Q <= \$nextQ ;
|
|
||||||
`endif
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module LDCE (
|
module LDCE (
|
||||||
|
|
Loading…
Reference in a new issue