mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Merge pull request #4802 from povik/abc9-box-repeat
Adjust `abc9_ops -prep_box` to allow repeated invocation
This commit is contained in:
commit
f7ad003a6f
|
@ -969,13 +969,10 @@ void prep_box(RTLIL::Design *design)
|
||||||
if (it == module->attributes.end())
|
if (it == module->attributes.end())
|
||||||
continue;
|
continue;
|
||||||
bool box = it->second.as_bool();
|
bool box = it->second.as_bool();
|
||||||
module->attributes.erase(it);
|
|
||||||
if (!box)
|
if (!box)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
auto r = module->attributes.insert(ID::abc9_box_id);
|
auto r = module->attributes.insert(ID::abc9_box_id);
|
||||||
if (!r.second)
|
|
||||||
continue;
|
|
||||||
r.first->second = abc9_box_id++;
|
r.first->second = abc9_box_id++;
|
||||||
|
|
||||||
if (module->get_bool_attribute(ID::abc9_flop)) {
|
if (module->get_bool_attribute(ID::abc9_flop)) {
|
||||||
|
@ -1097,8 +1094,9 @@ void prep_box(RTLIL::Design *design)
|
||||||
ss << std::endl;
|
ss << std::endl;
|
||||||
|
|
||||||
auto &t = timing.setup_module(module);
|
auto &t = timing.setup_module(module);
|
||||||
if (t.comb.empty())
|
if (t.comb.empty() && !outputs.empty() && !inputs.empty()) {
|
||||||
log_error("Module '%s' with (* abc9_box *) has no timing (and thus no connectivity) information.\n", log_id(module));
|
log_error("Module '%s' with (* abc9_box *) has no timing (and thus no connectivity) information.\n", log_id(module));
|
||||||
|
}
|
||||||
|
|
||||||
for (const auto &o : outputs) {
|
for (const auto &o : outputs) {
|
||||||
first = true;
|
first = true;
|
||||||
|
|
Loading…
Reference in a new issue