3
0
Fork 0
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:
Martin Povišer 2024-12-09 15:13:15 +01:00 committed by GitHub
commit 481162b848
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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++) {