mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Merge pull request #4800 from povik/portarcs-fix
Fix portarcs edge cases
This commit is contained in:
commit
481162b848
|
@ -192,16 +192,18 @@ struct PortarcsPass : Pass {
|
||||||
if (annotations.count(bit)) {
|
if (annotations.count(bit)) {
|
||||||
// consistency check
|
// consistency check
|
||||||
log_assert(annotations.at(bit)[0] == ((int) (intptr_t) bit.wire));
|
log_assert(annotations.at(bit)[0] == ((int) (intptr_t) bit.wire));
|
||||||
|
} else {
|
||||||
recycling.push_back(annotations.at(ordering[i]));
|
alloc_for_bit(bit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
recycling.push_back(annotations.at(ordering[i]));
|
||||||
}
|
}
|
||||||
log_debug("Allocated %lux%d\n", allocated.size(), inputs.size());
|
log_debug("Allocated %lux%d\n", allocated.size(), inputs.size());
|
||||||
|
|
||||||
for (auto bit : outputs) {
|
for (auto bit : outputs) {
|
||||||
int *p = annotations.at(canonical_bit(bit));
|
int *p = annotations.at(canonical_bit(bit));
|
||||||
for (int i = 0; i < inputs.size(); i++)
|
for (int i = 0; i < inputs.size(); i++)
|
||||||
p[i] = 0;
|
p[i] = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < ordering.size(); i++) {
|
for (int i = 0; i < ordering.size(); i++) {
|
||||||
|
|
Loading…
Reference in a new issue