mirror of https://github.com/YosysHQ/yosys.git
abc_flop to also get topologically sorted
This commit is contained in:
parent
9f608d6be3
commit
375fcbe511
|
@ -312,19 +312,18 @@ struct XAigerWriter
|
||||||
undriven_bits.erase(O);
|
undriven_bits.erase(O);
|
||||||
ff_bits.emplace_back(q);
|
ff_bits.emplace_back(q);
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
for (const auto &conn : cell->connections()) {
|
|
||||||
if (cell->input(conn.first)) {
|
|
||||||
// Ignore inout for the sake of topographical ordering
|
|
||||||
if (cell->output(conn.first)) continue;
|
|
||||||
for (auto bit : sigmap(conn.second))
|
|
||||||
bit_users[bit].insert(cell->name);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cell->output(conn.first))
|
for (const auto &conn : cell->connections()) {
|
||||||
for (auto bit : sigmap(conn.second))
|
if (cell->input(conn.first)) {
|
||||||
bit_drivers[bit].insert(cell->name);
|
// Ignore inout for the sake of topographical ordering
|
||||||
|
if (cell->output(conn.first)) continue;
|
||||||
|
for (auto bit : sigmap(conn.second))
|
||||||
|
bit_users[bit].insert(cell->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cell->output(conn.first))
|
||||||
|
for (auto bit : sigmap(conn.second))
|
||||||
|
bit_drivers[bit].insert(cell->name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue