2013-01-05 04:13:26 -06:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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/celltypes.h"
|
|
|
|
#include "kernel/log.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
struct SubmodWorker
|
|
|
|
{
|
|
|
|
CellTypes ct;
|
|
|
|
RTLIL::Design *design;
|
|
|
|
RTLIL::Module *module;
|
2013-04-15 04:58:24 -05:00
|
|
|
std::string opt_name;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
struct SubModule
|
|
|
|
{
|
|
|
|
std::string name, full_name;
|
|
|
|
std::set<RTLIL::Cell*> cells;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::map<std::string, SubModule> submodules;
|
|
|
|
|
|
|
|
struct wire_flags_t {
|
|
|
|
RTLIL::Wire *new_wire;
|
|
|
|
bool is_int_driven, is_int_used, is_ext_driven, is_ext_used;
|
|
|
|
wire_flags_t() : new_wire(NULL), is_int_driven(false), is_int_used(false), is_ext_driven(false), is_ext_used(false) { }
|
|
|
|
};
|
|
|
|
std::map<RTLIL::Wire*, wire_flags_t> wire_flags;
|
|
|
|
bool flag_found_something;
|
|
|
|
|
|
|
|
void flag_wire(RTLIL::Wire *wire, bool create, bool set_int_driven, bool set_int_used, bool set_ext_driven, bool set_ext_used)
|
|
|
|
{
|
|
|
|
if (wire_flags.count(wire) == 0) {
|
|
|
|
if (!create)
|
|
|
|
return;
|
|
|
|
wire_flags[wire] = wire_flags_t();
|
|
|
|
}
|
|
|
|
if (set_int_driven)
|
|
|
|
wire_flags[wire].is_int_driven = true;
|
|
|
|
if (set_int_used)
|
|
|
|
wire_flags[wire].is_int_used = true;
|
|
|
|
if (set_ext_driven)
|
|
|
|
wire_flags[wire].is_ext_driven = true;
|
|
|
|
if (set_ext_used)
|
|
|
|
wire_flags[wire].is_ext_used = true;
|
|
|
|
flag_found_something = true;
|
|
|
|
}
|
|
|
|
|
2014-07-26 08:57:57 -05:00
|
|
|
void flag_signal(const RTLIL::SigSpec &sig, bool create, bool set_int_driven, bool set_int_used, bool set_ext_driven, bool set_ext_used)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2014-07-22 13:15:14 -05:00
|
|
|
for (auto &c : sig.chunks())
|
2013-01-05 04:13:26 -06:00
|
|
|
if (c.wire != NULL)
|
|
|
|
flag_wire(c.wire, create, set_int_driven, set_int_used, set_ext_driven, set_ext_used);
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle_submodule(SubModule &submod)
|
|
|
|
{
|
|
|
|
log("Creating submodule %s (%s) of module %s.\n", submod.name.c_str(), submod.full_name.c_str(), module->name.c_str());
|
|
|
|
|
|
|
|
wire_flags.clear();
|
|
|
|
for (RTLIL::Cell *cell : submod.cells) {
|
|
|
|
if (ct.cell_known(cell->type)) {
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &conn : cell->connections())
|
2013-01-05 04:13:26 -06:00
|
|
|
flag_signal(conn.second, true, ct.cell_output(cell->type, conn.first), ct.cell_input(cell->type, conn.first), false, false);
|
|
|
|
} else {
|
|
|
|
log("WARNING: Port directions for cell %s (%s) are unknown. Assuming inout for all ports.\n", cell->name.c_str(), cell->type.c_str());
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &conn : cell->connections())
|
2013-01-05 04:13:26 -06:00
|
|
|
flag_signal(conn.second, true, true, true, false, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto &it : module->cells) {
|
|
|
|
RTLIL::Cell *cell = it.second;
|
|
|
|
if (submod.cells.count(cell) > 0)
|
|
|
|
continue;
|
|
|
|
if (ct.cell_known(cell->type)) {
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &conn : cell->connections())
|
2013-01-05 04:13:26 -06:00
|
|
|
flag_signal(conn.second, false, false, false, ct.cell_output(cell->type, conn.first), ct.cell_input(cell->type, conn.first));
|
|
|
|
} else {
|
|
|
|
flag_found_something = false;
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &conn : cell->connections())
|
2013-01-05 04:13:26 -06:00
|
|
|
flag_signal(conn.second, false, false, false, true, true);
|
|
|
|
if (flag_found_something)
|
|
|
|
log("WARNING: Port directions for cell %s (%s) are unknown. Assuming inout for all ports.\n", cell->name.c_str(), cell->type.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Module *new_mod = new RTLIL::Module;
|
|
|
|
new_mod->name = submod.full_name;
|
|
|
|
design->modules[new_mod->name] = new_mod;
|
|
|
|
int port_counter = 1, auto_name_counter = 1;
|
|
|
|
|
|
|
|
std::set<std::string> all_wire_names;
|
|
|
|
for (auto &it : wire_flags) {
|
|
|
|
all_wire_names.insert(it.first->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto &it : wire_flags)
|
|
|
|
{
|
|
|
|
RTLIL::Wire *wire = it.first;
|
|
|
|
wire_flags_t &flags = it.second;
|
|
|
|
|
|
|
|
if (wire->port_input)
|
|
|
|
flags.is_ext_driven = true;
|
|
|
|
if (wire->port_output)
|
|
|
|
flags.is_ext_used = true;
|
|
|
|
|
|
|
|
RTLIL::Wire *new_wire = new RTLIL::Wire;
|
|
|
|
new_wire->name = wire->name;
|
|
|
|
new_wire->width = wire->width;
|
|
|
|
new_wire->start_offset = wire->start_offset;
|
|
|
|
new_wire->attributes = wire->attributes;
|
|
|
|
|
|
|
|
if (flags.is_int_driven && flags.is_ext_used)
|
|
|
|
new_wire->port_output = true;
|
|
|
|
if (flags.is_ext_driven && flags.is_int_used)
|
|
|
|
new_wire->port_input = true;
|
|
|
|
|
|
|
|
if (flags.is_int_driven && flags.is_ext_driven)
|
|
|
|
new_wire->port_input = true, new_wire->port_output = true;
|
|
|
|
|
|
|
|
if (new_wire->port_input || new_wire->port_output) {
|
|
|
|
new_wire->port_id = port_counter++;
|
|
|
|
while (new_wire->name[0] == '$') {
|
|
|
|
std::string new_wire_name = stringf("\\n%d", auto_name_counter++);
|
|
|
|
if (all_wire_names.count(new_wire_name) == 0) {
|
|
|
|
all_wire_names.insert(new_wire_name);
|
|
|
|
new_wire->name = new_wire_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_wire->port_input && new_wire->port_output)
|
|
|
|
log(" signal %s: inout %s\n", wire->name.c_str(), new_wire->name.c_str());
|
|
|
|
else if (new_wire->port_input)
|
|
|
|
log(" signal %s: input %s\n", wire->name.c_str(), new_wire->name.c_str());
|
|
|
|
else if (new_wire->port_output)
|
|
|
|
log(" signal %s: output %s\n", wire->name.c_str(), new_wire->name.c_str());
|
|
|
|
else
|
|
|
|
log(" signal %s: internal\n", wire->name.c_str());
|
|
|
|
|
|
|
|
new_mod->wires[new_wire->name] = new_wire;
|
|
|
|
flags.new_wire = new_wire;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (RTLIL::Cell *cell : submod.cells) {
|
2014-07-25 17:38:44 -05:00
|
|
|
RTLIL::Cell *new_cell = new_mod->addCell(cell->name, cell);
|
2014-07-26 08:57:57 -05:00
|
|
|
for (auto &conn : new_cell->connections_)
|
2014-07-23 08:36:09 -05:00
|
|
|
for (auto &bit : conn.second)
|
|
|
|
if (bit.wire != NULL) {
|
|
|
|
assert(wire_flags.count(bit.wire) > 0);
|
|
|
|
bit.wire = wire_flags[bit.wire].new_wire;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
log(" cell %s (%s)\n", new_cell->name.c_str(), new_cell->type.c_str());
|
2014-07-25 08:05:18 -05:00
|
|
|
module->remove(cell);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
submod.cells.clear();
|
|
|
|
|
2014-07-25 08:05:18 -05:00
|
|
|
RTLIL::Cell *new_cell = module->addCell(submod.full_name, submod.full_name);
|
2013-01-05 04:13:26 -06:00
|
|
|
for (auto &it : wire_flags)
|
|
|
|
{
|
|
|
|
RTLIL::Wire *old_wire = it.first;
|
|
|
|
RTLIL::Wire *new_wire = it.second.new_wire;
|
|
|
|
if (new_wire->port_id > 0)
|
2014-07-26 08:57:57 -05:00
|
|
|
new_cell->set(new_wire->name, RTLIL::SigSpec(old_wire));
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-15 04:58:24 -05:00
|
|
|
SubmodWorker(RTLIL::Design *design, RTLIL::Module *module, std::string opt_name = std::string()) : design(design), module(module), opt_name(opt_name)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2013-04-15 04:58:24 -05:00
|
|
|
if (!design->selected_whole_module(module->name) && opt_name.empty())
|
2013-01-05 04:13:26 -06:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (module->processes.size() > 0) {
|
|
|
|
log("Skipping module %s as it contains processes (run 'proc' pass first).\n", module->name.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (module->memories.size() > 0) {
|
|
|
|
log("Skipping module %s as it contains memories (run 'memory' pass first).\n", module->name.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ct.setup_internals();
|
|
|
|
ct.setup_internals_mem();
|
|
|
|
ct.setup_stdcells();
|
|
|
|
ct.setup_stdcells_mem();
|
2013-12-02 05:53:55 -06:00
|
|
|
ct.setup_design(design);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-04-15 04:58:24 -05:00
|
|
|
if (opt_name.empty())
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2013-04-15 04:58:24 -05:00
|
|
|
for (auto &it : module->wires)
|
|
|
|
it.second->attributes.erase("\\submod");
|
|
|
|
|
|
|
|
for (auto &it : module->cells)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = it.second;
|
2013-12-04 07:14:05 -06:00
|
|
|
if (cell->attributes.count("\\submod") == 0 || cell->attributes["\\submod"].bits.size() == 0) {
|
2013-04-15 04:58:24 -05:00
|
|
|
cell->attributes.erase("\\submod");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-12-04 07:14:05 -06:00
|
|
|
std::string submod_str = cell->attributes["\\submod"].decode_string();
|
2013-01-05 04:13:26 -06:00
|
|
|
cell->attributes.erase("\\submod");
|
|
|
|
|
2013-04-15 04:58:24 -05:00
|
|
|
if (submodules.count(submod_str) == 0) {
|
|
|
|
submodules[submod_str].name = submod_str;
|
|
|
|
submodules[submod_str].full_name = module->name + "_" + submod_str;
|
|
|
|
while (design->modules.count(submodules[submod_str].full_name) != 0 ||
|
|
|
|
module->count_id(submodules[submod_str].full_name) != 0)
|
|
|
|
submodules[submod_str].full_name += "_";
|
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-04-15 04:58:24 -05:00
|
|
|
submodules[submod_str].cells.insert(cell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto &it : module->cells)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = it.second;
|
|
|
|
if (!design->selected(module, cell))
|
|
|
|
continue;
|
|
|
|
submodules[opt_name].name = opt_name;
|
|
|
|
submodules[opt_name].full_name = RTLIL::escape_id(opt_name);
|
|
|
|
submodules[opt_name].cells.insert(cell);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2013-04-15 04:58:24 -05:00
|
|
|
if (submodules.size() == 0)
|
|
|
|
log("Nothing selected -> do nothing.\n");
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto &it : submodules)
|
|
|
|
handle_submodule(it.second);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SubmodPass : public Pass {
|
2013-03-17 16:02:30 -05:00
|
|
|
SubmodPass() : Pass("submod", "moving part of a module to a new submodule") { }
|
2013-02-28 17:36:19 -06:00
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
|
|
|
log(" submod [selection]\n");
|
|
|
|
log("\n");
|
|
|
|
log("This pass identifies all cells with the 'submod' attribute and moves them to\n");
|
|
|
|
log("a newly created module. The value of the attribute is used as name for the\n");
|
|
|
|
log("cell that replaces the group of cells with the same attribute value.\n");
|
|
|
|
log("\n");
|
|
|
|
log("This pass can be used to create a design hierarchy in flat design. This can\n");
|
|
|
|
log("be useful for analyzing or reverse-engineering a design.\n");
|
|
|
|
log("\n");
|
|
|
|
log("This pass only operates on completely selected modules with no processes\n");
|
|
|
|
log("or memories.\n");
|
|
|
|
log("\n");
|
2013-04-15 04:58:24 -05:00
|
|
|
log("\n");
|
|
|
|
log(" submod -name <name> [selection]\n");
|
|
|
|
log("\n");
|
|
|
|
log("As above, but don't use the 'submod' attribute but instead use the selection.\n");
|
|
|
|
log("Only objects from one module might be selected. The value of the -name option\n");
|
|
|
|
log("is used as the value of the 'submod' attribute above.\n");
|
|
|
|
log("\n");
|
2013-02-28 17:36:19 -06:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
|
|
|
{
|
2013-03-17 16:02:30 -05:00
|
|
|
log_header("Executing SUBMOD pass (moving cells to submodules as requested).\n");
|
2013-01-05 04:13:26 -06:00
|
|
|
log_push();
|
|
|
|
|
2013-04-15 04:58:24 -05:00
|
|
|
std::string opt_name;
|
|
|
|
|
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
|
|
|
if (args[argidx] == "-name" && argidx+1 < args.size()) {
|
|
|
|
opt_name = args[++argidx];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra_args(args, argidx, design);
|
|
|
|
|
|
|
|
if (opt_name.empty())
|
|
|
|
{
|
2013-06-05 00:07:31 -05:00
|
|
|
Pass::call(design, "opt_clean");
|
2013-04-15 04:58:24 -05:00
|
|
|
log_header("Continuing SUBMOD pass.\n");
|
|
|
|
|
|
|
|
std::set<std::string> handled_modules;
|
|
|
|
|
|
|
|
bool did_something = true;
|
|
|
|
while (did_something) {
|
|
|
|
did_something = false;
|
|
|
|
std::vector<std::string> queued_modules;
|
|
|
|
for (auto &mod_it : design->modules)
|
|
|
|
if (handled_modules.count(mod_it.first) == 0 && design->selected_whole_module(mod_it.first))
|
|
|
|
queued_modules.push_back(mod_it.first);
|
|
|
|
for (auto &modname : queued_modules)
|
|
|
|
if (design->modules.count(modname) != 0) {
|
|
|
|
SubmodWorker worker(design, design->modules[modname]);
|
|
|
|
handled_modules.insert(modname);
|
|
|
|
did_something = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-05 00:07:31 -05:00
|
|
|
Pass::call(design, "opt_clean");
|
2013-04-15 04:58:24 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RTLIL::Module *module = NULL;
|
|
|
|
for (auto &mod_it : design->modules) {
|
|
|
|
if (!design->selected_module(mod_it.first))
|
|
|
|
continue;
|
|
|
|
if (module != NULL)
|
|
|
|
log_cmd_error("More than one module selected: %s %s\n", module->name.c_str(), mod_it.first.c_str());
|
|
|
|
module = mod_it.second;
|
|
|
|
}
|
|
|
|
if (module == NULL)
|
|
|
|
log("Nothing selected -> do nothing.\n");
|
2013-12-02 05:18:07 -06:00
|
|
|
else {
|
2014-07-20 08:16:10 -05:00
|
|
|
Pass::call_on_module(design, module, "opt_clean");
|
2013-12-02 05:18:07 -06:00
|
|
|
log_header("Continuing SUBMOD pass.\n");
|
2013-04-15 04:58:24 -05:00
|
|
|
SubmodWorker worker(design, module, opt_name);
|
2013-12-02 05:18:07 -06:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2013-04-15 04:58:24 -05:00
|
|
|
log_pop();
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
} SubmodPass;
|
|
|
|
|