mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #1874 from boqwxp/cleanup_show
Clean up `passes/cmds/show.cc`.
This commit is contained in:
commit
b350398c04
|
@ -41,8 +41,6 @@
|
|||
USING_YOSYS_NAMESPACE
|
||||
PRIVATE_NAMESPACE_BEGIN
|
||||
|
||||
using RTLIL::id2cstr;
|
||||
|
||||
#undef CLUSTER_CELLS_AND_PORTBOXES
|
||||
|
||||
struct ShowWorker
|
||||
|
@ -101,7 +99,7 @@ struct ShowWorker
|
|||
{
|
||||
sig.sort_and_unify();
|
||||
for (auto &c : sig.chunks()) {
|
||||
if (c.wire != NULL)
|
||||
if (c.wire != nullptr)
|
||||
for (auto &s : color_selections)
|
||||
if (s.second.selected_members.count(module->name) > 0 && s.second.selected_members.at(module->name).count(c.wire->name) > 0)
|
||||
return stringf("color=\"%s\"", s.first.c_str());
|
||||
|
@ -218,7 +216,7 @@ struct ShowWorker
|
|||
|
||||
if (sig.is_chunk()) {
|
||||
const RTLIL::SigChunk &c = sig.as_chunk();
|
||||
if (c.wire != NULL && design->selected_member(module->name, c.wire->name)) {
|
||||
if (c.wire != nullptr && design->selected_member(module->name, c.wire->name)) {
|
||||
if (!range_check || c.wire->width == c.width)
|
||||
return stringf("n%d", id2num(c.wire->name));
|
||||
} else {
|
||||
|
@ -230,7 +228,7 @@ struct ShowWorker
|
|||
return std::string();
|
||||
}
|
||||
|
||||
std::string gen_portbox(std::string port, RTLIL::SigSpec sig, bool driver, std::string *node = NULL)
|
||||
std::string gen_portbox(std::string port, RTLIL::SigSpec sig, bool driver, std::string *node = nullptr)
|
||||
{
|
||||
std::string code;
|
||||
std::string net = gen_signode_simple(sig);
|
||||
|
@ -287,7 +285,7 @@ struct ShowWorker
|
|||
else
|
||||
code += stringf("x%d:e -> %s:w [arrowhead=odiamond, arrowtail=odiamond, dir=both, %s, %s];\n", idx, port.c_str(), nextColor(sig).c_str(), widthLabel(sig.size()).c_str());
|
||||
}
|
||||
if (node != NULL)
|
||||
if (node != nullptr)
|
||||
*node = stringf("x%d", idx);
|
||||
}
|
||||
else
|
||||
|
@ -300,7 +298,7 @@ struct ShowWorker
|
|||
net_conn_map[net].bits = sig.size();
|
||||
net_conn_map[net].color = nextColor(sig, net_conn_map[net].color);
|
||||
}
|
||||
if (node != NULL)
|
||||
if (node != nullptr)
|
||||
*node = net;
|
||||
}
|
||||
return code;
|
||||
|
@ -366,22 +364,20 @@ struct ShowWorker
|
|||
std::set<std::string> all_sources, all_sinks;
|
||||
|
||||
std::map<std::string, std::string> wires_on_demand;
|
||||
for (auto &it : module->wires_) {
|
||||
if (!design->selected_member(module->name, it.first))
|
||||
continue;
|
||||
for (auto wire : module->selected_wires()) {
|
||||
const char *shape = "diamond";
|
||||
if (it.second->port_input || it.second->port_output)
|
||||
if (wire->port_input || wire->port_output)
|
||||
shape = "octagon";
|
||||
if (it.first[0] == '\\') {
|
||||
if (wire->name[0] == '\\') {
|
||||
fprintf(f, "n%d [ shape=%s, label=\"%s\", %s, fontcolor=\"black\" ];\n",
|
||||
id2num(it.first), shape, findLabel(it.first.str()),
|
||||
nextColor(RTLIL::SigSpec(it.second), "color=\"black\"").c_str());
|
||||
if (it.second->port_input)
|
||||
all_sources.insert(stringf("n%d", id2num(it.first)));
|
||||
else if (it.second->port_output)
|
||||
all_sinks.insert(stringf("n%d", id2num(it.first)));
|
||||
id2num(wire->name), shape, findLabel(wire->name.str()),
|
||||
nextColor(RTLIL::SigSpec(wire), "color=\"black\"").c_str());
|
||||
if (wire->port_input)
|
||||
all_sources.insert(stringf("n%d", id2num(wire->name)));
|
||||
else if (wire->port_output)
|
||||
all_sinks.insert(stringf("n%d", id2num(wire->name)));
|
||||
} else {
|
||||
wires_on_demand[stringf("n%d", id2num(it.first))] = it.first.str();
|
||||
wires_on_demand[stringf("n%d", id2num(wire->name))] = wire->name.str();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -398,15 +394,12 @@ struct ShowWorker
|
|||
fprintf(f, "}\n");
|
||||
}
|
||||
|
||||
for (auto &it : module->cells_)
|
||||
for (auto cell : module->selected_cells())
|
||||
{
|
||||
if (!design->selected_member(module->name, it.first))
|
||||
continue;
|
||||
|
||||
std::vector<RTLIL::IdString> in_ports, out_ports;
|
||||
|
||||
for (auto &conn : it.second->connections()) {
|
||||
if (!ct.cell_output(it.second->type, conn.first))
|
||||
for (auto &conn : cell->connections()) {
|
||||
if (!ct.cell_output(cell->type, conn.first))
|
||||
in_ports.push_back(conn.first);
|
||||
else
|
||||
out_ports.push_back(conn.first);
|
||||
|
@ -419,12 +412,12 @@ struct ShowWorker
|
|||
|
||||
for (auto &p : in_ports)
|
||||
label_string += stringf("<p%d> %s%s|", id2num(p), escape(p.str()),
|
||||
genSignedLabels && it.second->hasParam(p.str() + "_SIGNED") &&
|
||||
it.second->getParam(p.str() + "_SIGNED").as_bool() ? "*" : "");
|
||||
genSignedLabels && cell->hasParam(p.str() + "_SIGNED") &&
|
||||
cell->getParam(p.str() + "_SIGNED").as_bool() ? "*" : "");
|
||||
if (label_string[label_string.size()-1] == '|')
|
||||
label_string = label_string.substr(0, label_string.size()-1);
|
||||
|
||||
label_string += stringf("}|%s\\n%s|{", findLabel(it.first.str()), escape(it.second->type.str()));
|
||||
label_string += stringf("}|%s\\n%s|{", findLabel(cell->name.str()), escape(cell->type.str()));
|
||||
|
||||
for (auto &p : out_ports)
|
||||
label_string += stringf("<p%d> %s|", id2num(p), escape(p.str()));
|
||||
|
@ -434,19 +427,19 @@ struct ShowWorker
|
|||
label_string += "}}";
|
||||
|
||||
std::string code;
|
||||
for (auto &conn : it.second->connections()) {
|
||||
code += gen_portbox(stringf("c%d:p%d", id2num(it.first), id2num(conn.first)),
|
||||
conn.second, ct.cell_output(it.second->type, conn.first));
|
||||
for (auto &conn : cell->connections()) {
|
||||
code += gen_portbox(stringf("c%d:p%d", id2num(cell->name), id2num(conn.first)),
|
||||
conn.second, ct.cell_output(cell->type, conn.first));
|
||||
}
|
||||
|
||||
#ifdef CLUSTER_CELLS_AND_PORTBOXES
|
||||
if (!code.empty())
|
||||
fprintf(f, "subgraph cluster_c%d {\nc%d [ shape=record, label=\"%s\"%s ];\n%s}\n",
|
||||
id2num(it.first), id2num(it.first), label_string.c_str(), findColor(it.first), code.c_str());
|
||||
id2num(cell->name), id2num(cell->name), label_string.c_str(), findColor(cell->name), code.c_str());
|
||||
else
|
||||
#endif
|
||||
fprintf(f, "c%d [ shape=record, label=\"%s\"%s ];\n%s",
|
||||
id2num(it.first), label_string.c_str(), findColor(it.first.str()), code.c_str());
|
||||
id2num(cell->name), label_string.c_str(), findColor(cell->name.str()), code.c_str());
|
||||
}
|
||||
|
||||
for (auto &it : module->processes)
|
||||
|
@ -491,12 +484,12 @@ struct ShowWorker
|
|||
{
|
||||
bool found_lhs_wire = false;
|
||||
for (auto &c : conn.first.chunks()) {
|
||||
if (c.wire == NULL || design->selected_member(module->name, c.wire->name))
|
||||
if (c.wire == nullptr || design->selected_member(module->name, c.wire->name))
|
||||
found_lhs_wire = true;
|
||||
}
|
||||
bool found_rhs_wire = false;
|
||||
for (auto &c : conn.second.chunks()) {
|
||||
if (c.wire == NULL || design->selected_member(module->name, c.wire->name))
|
||||
if (c.wire == nullptr || design->selected_member(module->name, c.wire->name))
|
||||
found_rhs_wire = true;
|
||||
}
|
||||
if (!found_lhs_wire || !found_rhs_wire)
|
||||
|
@ -572,23 +565,21 @@ struct ShowWorker
|
|||
|
||||
design->optimize();
|
||||
page_counter = 0;
|
||||
for (auto &mod_it : design->modules_)
|
||||
for (auto mod : design->selected_modules())
|
||||
{
|
||||
module = mod_it.second;
|
||||
if (!design->selected_module(module->name))
|
||||
continue;
|
||||
module = mod;
|
||||
if (design->selected_whole_module(module->name)) {
|
||||
if (module->get_blackbox_attribute()) {
|
||||
// log("Skipping blackbox module %s.\n", id2cstr(module->name));
|
||||
// log("Skipping blackbox module %s.\n", log_id(module->name));
|
||||
continue;
|
||||
} else
|
||||
if (module->cells_.empty() && module->connections().empty() && module->processes.empty()) {
|
||||
log("Skipping empty module %s.\n", id2cstr(module->name));
|
||||
if (module->cells().size() == 0 && module->connections().empty() && module->processes.empty()) {
|
||||
log("Skipping empty module %s.\n", log_id(module->name));
|
||||
continue;
|
||||
} else
|
||||
log("Dumping module %s to page %d.\n", id2cstr(module->name), ++page_counter);
|
||||
log("Dumping module %s to page %d.\n", log_id(module->name), ++page_counter);
|
||||
} else
|
||||
log("Dumping selected parts of module %s to page %d.\n", id2cstr(module->name), ++page_counter);
|
||||
log("Dumping selected parts of module %s to page %d.\n", log_id(module->name), ++page_counter);
|
||||
handle_module();
|
||||
}
|
||||
}
|
||||
|
@ -802,12 +793,11 @@ struct ShowPass : public Pass {
|
|||
|
||||
if (format != "ps" && format != "dot") {
|
||||
int modcount = 0;
|
||||
for (auto &mod_it : design->modules_) {
|
||||
if (mod_it.second->get_blackbox_attribute())
|
||||
for (auto module : design->selected_modules()) {
|
||||
if (module->get_blackbox_attribute())
|
||||
continue;
|
||||
if (mod_it.second->cells_.empty() && mod_it.second->connections().empty())
|
||||
if (module->cells().size() == 0 && module->connections().empty())
|
||||
continue;
|
||||
if (design->selected_module(mod_it.first))
|
||||
modcount++;
|
||||
}
|
||||
if (modcount > 1)
|
||||
|
@ -835,7 +825,7 @@ struct ShowPass : public Pass {
|
|||
FILE *f = fopen(dot_file.c_str(), "w");
|
||||
if (custom_prefix)
|
||||
yosys_output_files.insert(dot_file);
|
||||
if (f == NULL) {
|
||||
if (f == nullptr) {
|
||||
for (auto lib : libs)
|
||||
delete lib;
|
||||
log_cmd_error("Can't open dot file `%s' for writing.\n", dot_file.c_str());
|
||||
|
@ -889,8 +879,8 @@ struct ShowPass : public Pass {
|
|||
|
||||
if (flag_pause) {
|
||||
#ifdef YOSYS_ENABLE_READLINE
|
||||
char *input = NULL;
|
||||
while ((input = readline("Press ENTER to continue (or type 'shell' to open a shell)> ")) != NULL) {
|
||||
char *input = nullptr;
|
||||
while ((input = readline("Press ENTER to continue (or type 'shell' to open a shell)> ")) != nullptr) {
|
||||
if (input[strspn(input, " \t\r\n")] == 0)
|
||||
break;
|
||||
char *p = input + strspn(input, " \t\r\n");
|
||||
|
|
Loading…
Reference in New Issue