mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Add ExclusiveDatabase to check exclusive $eq/$logic_not cell results
This commit is contained in:
parent
1da12c5071
commit
9b408838f1
|
@ -24,6 +24,58 @@
|
||||||
USING_YOSYS_NAMESPACE
|
USING_YOSYS_NAMESPACE
|
||||||
PRIVATE_NAMESPACE_BEGIN
|
PRIVATE_NAMESPACE_BEGIN
|
||||||
|
|
||||||
|
struct ExclusiveDatabase
|
||||||
|
{
|
||||||
|
Module *module;
|
||||||
|
const SigMap &sigmap;
|
||||||
|
|
||||||
|
dict<SigSpec, SigSpec> sig_cmp_prev;
|
||||||
|
dict<SigSpec, pool<SigSpec>> sig_exclusive;
|
||||||
|
|
||||||
|
ExclusiveDatabase(Module *module, const SigMap &sigmap) : module(module), sigmap(sigmap)
|
||||||
|
{
|
||||||
|
SigSpec a_port, b_port, y_port;
|
||||||
|
for (auto cell : module->cells()) {
|
||||||
|
if (cell->type == "$eq") {
|
||||||
|
a_port = sigmap(cell->getPort("\\A"));
|
||||||
|
b_port = sigmap(cell->getPort("\\B"));
|
||||||
|
if (!b_port.is_fully_const()) {
|
||||||
|
if (!a_port.is_fully_const())
|
||||||
|
continue;
|
||||||
|
std::swap(a_port, b_port);
|
||||||
|
}
|
||||||
|
y_port = sigmap(cell->getPort("\\Y"));
|
||||||
|
}
|
||||||
|
else if (cell->type == "$logic_not") {
|
||||||
|
a_port = sigmap(cell->getPort("\\A"));
|
||||||
|
b_port = Const(RTLIL::S0, GetSize(a_port));
|
||||||
|
y_port = sigmap(cell->getPort("\\Y"));
|
||||||
|
}
|
||||||
|
else continue;
|
||||||
|
|
||||||
|
auto r = sig_exclusive[a_port].insert(b_port.as_const());
|
||||||
|
if (!r.second)
|
||||||
|
continue;
|
||||||
|
sig_cmp_prev[y_port] = a_port;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool query(const SigSpec& sig1, const SigSpec& sig2) const
|
||||||
|
{
|
||||||
|
auto it = sig_cmp_prev.find(sig1);
|
||||||
|
if (it == sig_cmp_prev.end())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
auto jt = sig_cmp_prev.find(sig2);
|
||||||
|
if (jt == sig_cmp_prev.end())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
log("query = %s %s\n", log_signal(it->second), log_signal(jt->second));
|
||||||
|
return it->second == jt->second;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
struct MuxpackWorker
|
struct MuxpackWorker
|
||||||
{
|
{
|
||||||
Module *module;
|
Module *module;
|
||||||
|
@ -39,6 +91,8 @@ struct MuxpackWorker
|
||||||
pool<Cell*> chain_start_cells;
|
pool<Cell*> chain_start_cells;
|
||||||
pool<Cell*> candidate_cells;
|
pool<Cell*> candidate_cells;
|
||||||
|
|
||||||
|
ExclusiveDatabase excl_db;
|
||||||
|
|
||||||
void make_sig_chain_next_prev()
|
void make_sig_chain_next_prev()
|
||||||
{
|
{
|
||||||
for (auto wire : module->wires())
|
for (auto wire : module->wires())
|
||||||
|
@ -90,6 +144,7 @@ struct MuxpackWorker
|
||||||
|
|
||||||
void find_chain_start_cells()
|
void find_chain_start_cells()
|
||||||
{
|
{
|
||||||
|
Cell* first_cell = nullptr;
|
||||||
for (auto cell : candidate_cells)
|
for (auto cell : candidate_cells)
|
||||||
{
|
{
|
||||||
log_debug("Considering %s (%s)\n", log_id(cell), log_id(cell->type));
|
log_debug("Considering %s (%s)\n", log_id(cell), log_id(cell->type));
|
||||||
|
@ -102,6 +157,13 @@ struct MuxpackWorker
|
||||||
|
|
||||||
if (!sig_chain_prev.count(a_sig))
|
if (!sig_chain_prev.count(a_sig))
|
||||||
a_sig = b_sig;
|
a_sig = b_sig;
|
||||||
|
|
||||||
|
if (first_cell) {
|
||||||
|
SigSpec s_sig = sigmap(cell->getPort("\\S"));
|
||||||
|
SigSpec prev_s_sig = sigmap(first_cell->getPort("\\S"));
|
||||||
|
if (!excl_db.query(prev_s_sig, s_sig))
|
||||||
|
goto start_cell;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (cell->type == "$pmux") {
|
else if (cell->type == "$pmux") {
|
||||||
if (!sig_chain_prev.count(a_sig))
|
if (!sig_chain_prev.count(a_sig))
|
||||||
|
@ -117,6 +179,7 @@ struct MuxpackWorker
|
||||||
|
|
||||||
start_cell:
|
start_cell:
|
||||||
chain_start_cells.insert(cell);
|
chain_start_cells.insert(cell);
|
||||||
|
first_cell = cell;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,7 +271,7 @@ struct MuxpackWorker
|
||||||
}
|
}
|
||||||
|
|
||||||
MuxpackWorker(Module *module) :
|
MuxpackWorker(Module *module) :
|
||||||
module(module), sigmap(module), mux_count(0), pmux_count(0)
|
module(module), sigmap(module), mux_count(0), pmux_count(0), excl_db(module, sigmap)
|
||||||
{
|
{
|
||||||
make_sig_chain_next_prev();
|
make_sig_chain_next_prev();
|
||||||
find_chain_start_cells();
|
find_chain_start_cells();
|
||||||
|
|
Loading…
Reference in a new issue