techmap: disable signorm more

This commit is contained in:
Emil J. Tywoniak 2026-03-12 22:11:06 +01:00
parent 04311e3e53
commit e7a97360a8
1 changed files with 3 additions and 0 deletions

View File

@ -150,6 +150,7 @@ struct TechmapWorker
log("\n");
if (autoproc_mode) {
Pass::call_on_module(tpl->design, tpl, "proc");
tpl->design->sigNormalize(false);
log_assert(GetSize(tpl->processes) == 0);
} else
log_error("Technology map yielded processes -> this is not supported (use -autoproc to run 'proc' automatically).\n");
@ -565,6 +566,7 @@ struct TechmapWorker
log("Running \"%s\" on wrapper %s.\n", cmd_string, log_id(extmapper_module));
mkdebug.on();
Pass::call_on_module(extmapper_design, extmapper_module, cmd_string);
extmapper_design->sigNormalize(false);
log_continue = true;
}
}
@ -864,6 +866,7 @@ struct TechmapWorker
}
Pass::call_on_module(map, tpl, cmd_string);
map->sigNormalize(false);
log_assert(!strncmp(q, "_TECHMAP_DO_", 12));
std::string new_name = data.wire->name.substr(0, q-p) + "_TECHMAP_DONE_" + data.wire->name.substr(q-p+12);