yosys/passes/opt/opt_clean.cc

614 lines
17 KiB
C++
Raw Normal View History

2013-01-05 04:13:26 -06:00
/*
* yosys -- Yosys Open SYnthesis Suite
*
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
2015-07-02 04:14:30 -05:00
*
2013-01-05 04:13:26 -06:00
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
2015-07-02 04:14:30 -05:00
*
2013-01-05 04:13:26 -06:00
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
#include "kernel/register.h"
#include "kernel/sigtools.h"
#include "kernel/log.h"
#include "kernel/celltypes.h"
#include <stdlib.h>
#include <stdio.h>
#include <set>
2014-09-27 09:17:53 -05:00
USING_YOSYS_NAMESPACE
PRIVATE_NAMESPACE_BEGIN
using RTLIL::id2cstr;
struct keep_cache_t
{
Design *design;
dict<Module*, bool> cache;
void reset(Design *design = nullptr)
{
this->design = design;
cache.clear();
}
bool query(Module *module)
{
log_assert(design != nullptr);
if (module == nullptr)
return false;
if (cache.count(module))
return cache.at(module);
cache[module] = true;
if (!module->get_bool_attribute("\\keep")) {
bool found_keep = false;
for (auto cell : module->cells())
if (query(cell)) found_keep = true;
cache[module] = found_keep;
}
return cache[module];
}
bool query(Cell *cell)
{
if (cell->type.in("$memwr", "$meminit", "$assert", "$assume", "$live", "$fair", "$cover"))
return true;
if (cell->has_keep_attr())
return true;
if (cell->module && cell->module->design)
return query(cell->module->design->module(cell->type));
return false;
}
};
keep_cache_t keep_cache;
CellTypes ct_reg, ct_all;
2014-09-27 09:17:53 -05:00
int count_rm_cells, count_rm_wires;
2013-01-05 04:13:26 -06:00
2015-02-04 09:34:06 -06:00
void rmunused_module_cells(Module *module, bool verbose)
2013-01-05 04:13:26 -06:00
{
2014-10-16 04:46:57 -05:00
SigMap sigmap(module);
2015-02-04 09:34:06 -06:00
pool<Cell*> queue, unused;
dict<SigBit, pool<Cell*>> wire2driver;
2013-01-05 04:13:26 -06:00
for (auto &it : module->cells_) {
2015-02-04 09:34:06 -06:00
Cell *cell = it.second;
for (auto &it2 : cell->connections()) {
if (!ct_all.cell_known(cell->type) || ct_all.cell_output(cell->type, it2.first))
for (auto raw_bit : it2.second) {
if (raw_bit.wire == nullptr)
continue;
auto bit = sigmap(raw_bit);
if (bit.wire == nullptr)
log_warning("Driver-driver conflict for %s between cell %s.%s and constant %s in %s: Resolved using constant.\n",
log_signal(raw_bit), log_id(cell), log_id(it2.first), log_signal(bit), log_id(module));
2015-02-04 09:34:06 -06:00
if (bit.wire != nullptr)
wire2driver[bit].insert(cell);
}
2013-01-05 04:13:26 -06:00
}
if (keep_cache.query(cell))
2013-01-05 04:13:26 -06:00
queue.insert(cell);
2015-02-04 09:34:06 -06:00
else
unused.insert(cell);
2013-01-05 04:13:26 -06:00
}
for (auto &it : module->wires_) {
2015-02-04 09:34:06 -06:00
Wire *wire = it.second;
if (wire->port_output || wire->get_bool_attribute("\\keep")) {
2015-02-04 09:34:06 -06:00
for (auto bit : sigmap(wire))
for (auto c : wire2driver[bit])
queue.insert(c), unused.erase(c);
2013-01-05 04:13:26 -06:00
}
}
2014-10-16 04:46:57 -05:00
while (!queue.empty())
2013-01-05 04:13:26 -06:00
{
2015-02-04 09:34:06 -06:00
pool<SigBit> bits;
2013-01-05 04:13:26 -06:00
for (auto cell : queue)
2015-02-04 09:34:06 -06:00
for (auto &it : cell->connections())
if (!ct_all.cell_known(cell->type) || ct_all.cell_input(cell->type, it.first))
2015-02-04 09:34:06 -06:00
for (auto bit : sigmap(it.second))
bits.insert(bit);
queue.clear();
for (auto bit : bits)
for (auto c : wire2driver[bit])
if (unused.count(c))
queue.insert(c), unused.erase(c);
2013-01-05 04:13:26 -06:00
}
2015-02-04 09:34:06 -06:00
unused.sort(RTLIL::sort_by_name_id<RTLIL::Cell>());
2013-01-05 04:13:26 -06:00
for (auto cell : unused) {
if (verbose)
log_debug(" removing unused `%s' cell `%s'.\n", cell->type.c_str(), cell->name.c_str());
2014-08-30 12:37:12 -05:00
module->design->scratchpad_set_bool("opt.did_something", true);
module->remove(cell);
count_rm_cells++;
2013-01-05 04:13:26 -06:00
}
}
2014-09-27 09:17:53 -05:00
int count_nontrivial_wire_attrs(RTLIL::Wire *w)
{
int count = w->attributes.size();
count -= w->attributes.count("\\src");
count -= w->attributes.count("\\unused_bits");
return count;
}
2014-12-28 21:06:52 -06:00
bool compare_signals(RTLIL::SigBit &s1, RTLIL::SigBit &s2, SigPool &regs, SigPool &conns, pool<RTLIL::Wire*> &direct_wires)
2013-01-05 04:13:26 -06:00
{
RTLIL::Wire *w1 = s1.wire;
RTLIL::Wire *w2 = s2.wire;
2013-01-05 04:13:26 -06:00
if (w1 == NULL || w2 == NULL)
return w2 == NULL;
if (w1->port_input != w2->port_input)
return w2->port_input;
if ((w1->port_input && w1->port_output) != (w2->port_input && w2->port_output))
return !(w2->port_input && w2->port_output);
if (w1->name[0] == '\\' && w2->name[0] == '\\') {
if (regs.check_any(s1) != regs.check_any(s2))
return regs.check_any(s2);
if (direct_wires.count(w1) != direct_wires.count(w2))
2014-10-18 08:20:38 -05:00
return direct_wires.count(w2) != 0;
if (conns.check_any(s1) != conns.check_any(s2))
return conns.check_any(s2);
}
if (w1->port_output != w2->port_output)
return w2->port_output;
2013-01-05 04:13:26 -06:00
if (w1->name[0] != w2->name[0])
return w2->name[0] == '\\';
int attrs1 = count_nontrivial_wire_attrs(w1);
int attrs2 = count_nontrivial_wire_attrs(w2);
if (attrs1 != attrs2)
return attrs2 > attrs1;
2013-01-05 04:13:26 -06:00
return strcmp(w2->name.c_str(), w1->name.c_str()) < 0;
2013-01-05 04:13:26 -06:00
}
2014-09-27 09:17:53 -05:00
bool check_public_name(RTLIL::IdString id)
{
const std::string &id_str = id.str();
if (id_str[0] == '$')
return false;
if (id_str.substr(0, 2) == "\\_" && (id_str[id_str.size()-1] == '_' || id_str.find("_[") != std::string::npos))
return false;
if (id_str.find(".$") != std::string::npos)
return false;
return true;
}
2014-09-27 09:17:53 -05:00
void rmunused_module_signals(RTLIL::Module *module, bool purge_mode, bool verbose)
2013-01-05 04:13:26 -06:00
{
SigPool register_signals;
SigPool connected_signals;
if (!purge_mode)
for (auto &it : module->cells_) {
RTLIL::Cell *cell = it.second;
if (ct_reg.cell_known(cell->type))
for (auto &it2 : cell->connections())
if (ct_reg.cell_output(cell->type, it2.first))
register_signals.add(it2.second);
for (auto &it2 : cell->connections())
connected_signals.add(it2.second);
}
2015-07-02 04:14:30 -05:00
2013-01-05 04:13:26 -06:00
SigMap assign_map(module);
2014-12-28 21:06:52 -06:00
pool<RTLIL::SigSpec> direct_sigs;
pool<RTLIL::Wire*> direct_wires;
for (auto &it : module->cells_) {
RTLIL::Cell *cell = it.second;
if (ct_all.cell_known(cell->type))
for (auto &it2 : cell->connections())
if (ct_all.cell_output(cell->type, it2.first))
direct_sigs.insert(assign_map(it2.second));
}
for (auto &it : module->wires_) {
if (direct_sigs.count(assign_map(it.second)) || it.second->port_input)
direct_wires.insert(it.second);
}
for (auto &it : module->wires_) {
2013-01-05 04:13:26 -06:00
RTLIL::Wire *wire = it.second;
for (int i = 0; i < wire->width; i++) {
RTLIL::SigBit s1 = RTLIL::SigBit(wire, i), s2 = assign_map(s1);
if (!compare_signals(s1, s2, register_signals, connected_signals, direct_wires))
2013-01-05 04:13:26 -06:00
assign_map.add(s1);
}
}
module->connections_.clear();
2013-01-05 04:13:26 -06:00
SigPool used_signals;
SigPool used_signals_nodrivers;
for (auto &it : module->cells_) {
2013-01-05 04:13:26 -06:00
RTLIL::Cell *cell = it.second;
for (auto &it2 : cell->connections_) {
2013-01-05 04:13:26 -06:00
assign_map.apply(it2.second);
used_signals.add(it2.second);
if (!ct_all.cell_output(cell->type, it2.first))
2013-01-05 04:13:26 -06:00
used_signals_nodrivers.add(it2.second);
}
}
for (auto &it : module->wires_) {
RTLIL::Wire *wire = it.second;
if (wire->port_id > 0) {
RTLIL::SigSpec sig = RTLIL::SigSpec(wire);
assign_map.apply(sig);
used_signals.add(sig);
if (!wire->port_input)
used_signals_nodrivers.add(sig);
}
if (wire->get_bool_attribute("\\keep")) {
RTLIL::SigSpec sig = RTLIL::SigSpec(wire);
assign_map.apply(sig);
used_signals.add(sig);
}
}
2013-01-05 04:13:26 -06:00
std::vector<RTLIL::Wire*> maybe_del_wires;
for (auto wire : module->wires())
{
SigSpec s1 = SigSpec(wire), s2 = assign_map(s1);
log_assert(GetSize(s1) == GetSize(s2));
bool maybe_del = false;
if ((!purge_mode && check_public_name(wire->name)) || wire->port_id != 0 || wire->get_bool_attribute("\\keep") || wire->attributes.count("\\init")) {
if (!used_signals.check_any(s2) && wire->port_id == 0 && !wire->get_bool_attribute("\\keep"))
maybe_del = true;
} else {
if (!used_signals.check_any(s2))
maybe_del = true;
}
if (maybe_del) {
maybe_del_wires.push_back(wire);
} else {
Const initval;
if (wire->attributes.count("\\init"))
initval = wire->attributes.at("\\init");
if (GetSize(initval) != GetSize(wire))
initval.bits.resize(GetSize(wire), State::Sx);
RTLIL::SigSig new_conn;
for (int i = 0; i < GetSize(s1); i++)
if (s1[i] != s2[i]) {
if (s2[i] == State::Sx && (initval[i] == State::S0 || initval[i] == State::S1)) {
s2[i] = initval[i];
initval[i] = State::Sx;
2013-01-05 04:13:26 -06:00
}
new_conn.first.append_bit(s1[i]);
new_conn.second.append_bit(s2[i]);
2013-01-05 04:13:26 -06:00
}
if (new_conn.first.size() > 0) {
if (initval.is_fully_undef())
wire->attributes.erase("\\init");
else
wire->attributes.at("\\init") = initval;
used_signals.add(new_conn.first);
used_signals.add(new_conn.second);
module->connect(new_conn);
2013-01-05 04:13:26 -06:00
}
}
if (!used_signals_nodrivers.check_all(s2)) {
2013-01-05 04:13:26 -06:00
std::string unused_bits;
for (int i = 0; i < GetSize(s2); i++) {
if (s2[i].wire == NULL)
2013-01-05 04:13:26 -06:00
continue;
if (!used_signals_nodrivers.check(s2[i])) {
2013-01-05 04:13:26 -06:00
if (!unused_bits.empty())
unused_bits += " ";
2014-07-27 08:38:02 -05:00
unused_bits += stringf("%d", i);
2013-01-05 04:13:26 -06:00
}
}
if (unused_bits.empty() || wire->port_id != 0)
wire->attributes.erase("\\unused_bits");
else
wire->attributes["\\unused_bits"] = RTLIL::Const(unused_bits);
} else {
wire->attributes.erase("\\unused_bits");
}
}
pool<RTLIL::Wire*> del_wires;
int del_wires_count = 0;
for (auto wire : maybe_del_wires) {
SigSpec s1 = SigSpec(wire);
if (used_signals.check_any(s1)) {
SigSpec s2 = assign_map(s1);
Const initval;
if (wire->attributes.count("\\init"))
initval = wire->attributes.at("\\init");
if (GetSize(initval) != GetSize(wire))
initval.bits.resize(GetSize(wire), State::Sx);
RTLIL::SigSig new_conn;
for (int i = 0; i < GetSize(s1); i++)
if (s1[i] != s2[i]) {
if (s2[i] == State::Sx && (initval[i] == State::S0 || initval[i] == State::S1)) {
s2[i] = initval[i];
initval[i] = State::Sx;
}
new_conn.first.append_bit(s1[i]);
new_conn.second.append_bit(s2[i]);
}
if (new_conn.first.size() > 0) {
if (initval.is_fully_undef())
wire->attributes.erase("\\init");
else
wire->attributes.at("\\init") = initval;
module->connect(new_conn);
}
} else {
if (ys_debug() || (check_public_name(wire->name) && verbose)) {
log_debug(" removing unused non-port wire %s.\n", wire->name.c_str());
}
del_wires.insert(wire);
del_wires_count++;
}
}
2013-01-05 04:13:26 -06:00
module->remove(del_wires);
count_rm_wires += del_wires.size();
if (verbose && del_wires_count > 0)
log_debug(" removed %d unused temporary wires.\n", del_wires_count);
2013-01-05 04:13:26 -06:00
}
bool rmunused_module_init(RTLIL::Module *module, bool purge_mode, bool verbose)
{
bool did_something = false;
CellTypes fftypes;
fftypes.setup_internals_mem();
SigMap sigmap(module);
dict<SigBit, State> qbits;
for (auto cell : module->cells())
if (fftypes.cell_known(cell->type) && cell->hasPort("\\Q"))
{
SigSpec sig = cell->getPort("\\Q");
for (int i = 0; i < GetSize(sig); i++)
{
SigBit bit = sig[i];
if (bit.wire == nullptr || bit.wire->attributes.count("\\init") == 0)
continue;
Const init = bit.wire->attributes.at("\\init");
if (i >= GetSize(init) || init[i] == State::Sx || init[i] == State::Sz)
continue;
sigmap.add(bit);
qbits[bit] = init[i];
}
}
for (auto wire : module->wires())
{
if (!purge_mode && wire->name[0] == '\\')
continue;
if (wire->attributes.count("\\init") == 0)
continue;
Const init = wire->attributes.at("\\init");
for (int i = 0; i < GetSize(wire) && i < GetSize(init); i++)
{
if (init[i] == State::Sx || init[i] == State::Sz)
continue;
SigBit wire_bit = SigBit(wire, i);
SigBit mapped_wire_bit = sigmap(wire_bit);
if (wire_bit == mapped_wire_bit)
goto next_wire;
if (qbits.count(sigmap(SigBit(wire, i))) == 0)
goto next_wire;
if (qbits.at(sigmap(SigBit(wire, i))) != init[i])
goto next_wire;
}
if (verbose)
log_debug(" removing redundant init attribute on %s.\n", log_id(wire));
wire->attributes.erase("\\init");
did_something = true;
next_wire:;
}
return did_something;
}
void rmunused_module(RTLIL::Module *module, bool purge_mode, bool verbose, bool rminit)
2013-01-05 04:13:26 -06:00
{
if (verbose)
log("Finding unused cells or wires in module %s..\n", module->name.c_str());
2013-01-05 04:13:26 -06:00
2014-10-03 03:04:15 -05:00
std::vector<RTLIL::Cell*> delcells;
for (auto cell : module->cells())
2014-10-03 03:12:28 -05:00
if (cell->type.in("$pos", "$_BUF_")) {
bool is_signed = cell->type == "$pos" && cell->getParam("\\A_SIGNED").as_bool();
2014-10-03 03:04:15 -05:00
RTLIL::SigSpec a = cell->getPort("\\A");
RTLIL::SigSpec y = cell->getPort("\\Y");
a.extend_u0(GetSize(y), is_signed);
2014-10-03 03:04:15 -05:00
module->connect(y, a);
delcells.push_back(cell);
}
2015-02-24 15:31:30 -06:00
for (auto cell : delcells) {
if (verbose)
log_debug(" removing buffer cell `%s': %s = %s\n", cell->name.c_str(),
2015-02-24 15:31:30 -06:00
log_signal(cell->getPort("\\Y")), log_signal(cell->getPort("\\A")));
2014-10-03 03:04:15 -05:00
module->remove(cell);
2015-02-24 15:31:30 -06:00
}
if (!delcells.empty())
module->design->scratchpad_set_bool("opt.did_something", true);
2014-10-03 03:04:15 -05:00
rmunused_module_cells(module, verbose);
rmunused_module_signals(module, purge_mode, verbose);
if (rminit && rmunused_module_init(module, purge_mode, verbose))
rmunused_module_signals(module, purge_mode, verbose);
2013-01-05 04:13:26 -06:00
}
2013-06-05 00:07:31 -05:00
struct OptCleanPass : public Pass {
OptCleanPass() : Pass("opt_clean", "remove unused cells and wires") { }
void help() YS_OVERRIDE
2013-03-01 01:58:55 -06:00
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
2013-07-07 05:59:30 -05:00
log(" opt_clean [options] [selection]\n");
2013-03-01 01:58:55 -06:00
log("\n");
log("This pass identifies wires and cells that are unused and removes them. Other\n");
2013-03-17 16:02:30 -05:00
log("passes often remove cells but leave the wires in the design or reconnect the\n");
log("wires but leave the old cells in the design. This pass can be used to clean up\n");
log("after the passes that do the actual work.\n");
2013-03-01 01:58:55 -06:00
log("\n");
log("This pass only operates on completely selected modules without processes.\n");
log("\n");
2013-07-07 05:59:30 -05:00
log(" -purge\n");
log(" also remove internal nets if they have a public name\n");
log("\n");
2013-03-01 01:58:55 -06:00
}
void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
2013-01-05 04:13:26 -06:00
{
2013-07-07 05:59:30 -05:00
bool purge_mode = false;
2016-04-21 16:28:37 -05:00
log_header(design, "Executing OPT_CLEAN pass (remove unused cells and wires).\n");
2013-01-05 04:13:26 -06:00
log_push();
2013-07-07 05:59:30 -05:00
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
if (args[argidx] == "-purge") {
purge_mode = true;
continue;
}
2013-08-11 06:59:14 -05:00
break;
2013-07-07 05:59:30 -05:00
}
extra_args(args, argidx, design);
2013-01-05 04:13:26 -06:00
keep_cache.reset(design);
ct_reg.setup_internals_mem();
ct_reg.setup_stdcells_mem();
ct_all.setup(design);
count_rm_cells = 0;
count_rm_wires = 0;
for (auto module : design->selected_whole_modules_warn()) {
if (module->has_processes_warn())
2013-03-01 01:58:55 -06:00
continue;
rmunused_module(module, purge_mode, true, true);
2013-01-05 04:13:26 -06:00
}
if (count_rm_cells > 0 || count_rm_wires > 0)
log("Removed %d unused cells and %d unused wires.\n", count_rm_cells, count_rm_wires);
2015-02-24 15:31:30 -06:00
design->optimize();
design->sort();
design->check();
keep_cache.reset();
ct_reg.clear();
ct_all.clear();
2013-01-05 04:13:26 -06:00
log_pop();
}
2013-06-05 00:07:31 -05:00
} OptCleanPass;
2015-07-02 04:14:30 -05:00
struct CleanPass : public Pass {
CleanPass() : Pass("clean", "remove unused cells and wires") { }
void help() YS_OVERRIDE
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
2013-08-11 06:59:14 -05:00
log(" clean [options] [selection]\n");
log("\n");
2013-08-11 06:59:14 -05:00
log("This is identical to 'opt_clean', but less verbose.\n");
log("\n");
log("When commands are separated using the ';;' token, this command will be executed\n");
2013-08-11 06:33:38 -05:00
log("between the commands.\n");
log("\n");
log("When commands are separated using the ';;;' token, this command will be executed\n");
2013-08-11 06:59:14 -05:00
log("in -purge mode between the commands.\n");
log("\n");
}
void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
{
2013-08-11 06:59:14 -05:00
bool purge_mode = false;
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
if (args[argidx] == "-purge") {
purge_mode = true;
continue;
}
break;
}
if (argidx < args.size())
extra_args(args, argidx, design);
keep_cache.reset(design);
ct_reg.setup_internals_mem();
ct_reg.setup_stdcells_mem();
ct_all.setup(design);
count_rm_cells = 0;
count_rm_wires = 0;
2015-02-24 15:31:30 -06:00
for (auto module : design->selected_whole_modules()) {
if (module->has_processes())
continue;
rmunused_module(module, purge_mode, ys_debug(), false);
}
log_suppressed();
if (count_rm_cells > 0 || count_rm_wires > 0)
log("Removed %d unused cells and %d unused wires.\n", count_rm_cells, count_rm_wires);
2015-01-23 17:13:27 -06:00
design->optimize();
design->sort();
design->check();
keep_cache.reset();
ct_reg.clear();
ct_all.clear();
}
} CleanPass;
2015-07-02 04:14:30 -05:00
2014-09-27 09:17:53 -05:00
PRIVATE_NAMESPACE_END