mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Merge pull request #1242 from jfng/fix-proc_prune-partial
proc_prune: Promote partially redundant assignments.
This commit is contained in:
commit
44a9dcbbbf
|
@ -82,14 +82,23 @@ struct PruneWorker
|
||||||
if (root) {
|
if (root) {
|
||||||
bool promotable = true;
|
bool promotable = true;
|
||||||
for (auto &bit : lhs) {
|
for (auto &bit : lhs) {
|
||||||
if (bit.wire && affected[bit]) {
|
if (bit.wire && affected[bit] && !assigned[bit]) {
|
||||||
promotable = false;
|
promotable = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (promotable) {
|
if (promotable) {
|
||||||
|
RTLIL::SigSpec rhs = sigmap(it->second);
|
||||||
|
RTLIL::SigSig conn;
|
||||||
|
for (int i = 0; i < GetSize(lhs); i++) {
|
||||||
|
RTLIL::SigBit lhs_bit = lhs[i];
|
||||||
|
if (lhs_bit.wire && !assigned[lhs_bit]) {
|
||||||
|
conn.first.append_bit(lhs_bit);
|
||||||
|
conn.second.append(rhs.extract(i));
|
||||||
|
}
|
||||||
|
}
|
||||||
promoted_count++;
|
promoted_count++;
|
||||||
module->connect(*it);
|
module->connect(conn);
|
||||||
remove.insert(*it);
|
remove.insert(*it);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue