3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-17 20:55:45 +00:00
This commit is contained in:
Emil J. Tywoniak 2026-06-12 00:18:53 +02:00
parent afdae7b87e
commit c3ffbf6fae
229 changed files with 3902 additions and 3835 deletions

View file

@ -77,10 +77,10 @@ struct AigmapPass : public Pass {
{
Aig aig(cell);
if (cell->type.in(ID($_AND_), ID($_NOT_)))
if (cell->type.in(TW($_AND_), TW($_NOT_)))
aig.name.clear();
if (nand_mode && cell->type == ID($_NAND_))
if (nand_mode && cell->type == TW($_NAND_))
aig.name.clear();
if (aig.name.empty()) {
@ -157,14 +157,14 @@ struct AigmapPass : public Pass {
stat_replaced.sort();
log(" replaced %d cell types:\n", GetSize(stat_replaced));
for (auto &it : stat_replaced)
log("%8d %s\n", it.second, it.first.unescape());
log("%8d %s\n", it.second, design->twines.unescaped_str(it.first));
}
if (!stat_not_replaced.empty()) {
stat_not_replaced.sort();
log(" not replaced %d cell types:\n", GetSize(stat_not_replaced));
for (auto &it : stat_not_replaced)
log("%8d %s\n", it.second, it.first.unescape());
log("%8d %s\n", it.second, design->twines.unescaped_str(it.first));
}
for (auto cell : replaced_cells)