2013-06-18 10:11:36 -05:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-06-18 10:11:36 -05: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-06-18 10:11:36 -05: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/celltypes.h"
|
|
|
|
#include "kernel/rtlil.h"
|
|
|
|
#include "kernel/log.h"
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
USING_YOSYS_NAMESPACE
|
|
|
|
PRIVATE_NAMESPACE_BEGIN
|
|
|
|
|
2013-06-18 10:11:36 -05:00
|
|
|
struct SplitnetsWorker
|
|
|
|
{
|
2014-01-03 07:01:06 -06:00
|
|
|
std::map<RTLIL::Wire*, std::vector<RTLIL::SigBit>> splitmap;
|
|
|
|
|
|
|
|
void append_wire(RTLIL::Module *module, RTLIL::Wire *wire, int offset, int width, std::string format)
|
|
|
|
{
|
2014-08-02 06:11:01 -05:00
|
|
|
std::string new_wire_name = wire->name.str();
|
2014-01-03 07:01:06 -06:00
|
|
|
|
|
|
|
if (format.size() > 0)
|
2014-07-26 13:12:50 -05:00
|
|
|
new_wire_name += format.substr(0, 1);
|
2014-01-03 07:01:06 -06:00
|
|
|
|
|
|
|
if (width > 1) {
|
2016-11-23 06:46:03 -06:00
|
|
|
if (wire->upto)
|
|
|
|
new_wire_name += stringf("%d", wire->start_offset+wire->width-(offset+width)-1);
|
|
|
|
else
|
|
|
|
new_wire_name += stringf("%d", wire->start_offset+offset+width-1);
|
2014-01-03 07:01:06 -06:00
|
|
|
if (format.size() > 2)
|
2014-07-26 13:12:50 -05:00
|
|
|
new_wire_name += format.substr(2, 1);
|
2014-01-03 07:01:06 -06:00
|
|
|
else
|
2014-07-26 13:12:50 -05:00
|
|
|
new_wire_name += ":";
|
2014-01-03 07:01:06 -06:00
|
|
|
}
|
|
|
|
|
2016-11-23 06:46:03 -06:00
|
|
|
if (wire->upto)
|
|
|
|
new_wire_name += stringf("%d", wire->start_offset+wire->width-offset-1);
|
|
|
|
else
|
|
|
|
new_wire_name += stringf("%d", wire->start_offset+offset);
|
2014-01-03 07:01:06 -06:00
|
|
|
|
|
|
|
if (format.size() > 1)
|
2014-07-26 13:12:50 -05:00
|
|
|
new_wire_name += format.substr(1, 1);
|
2014-01-03 07:01:06 -06:00
|
|
|
|
2014-08-16 16:50:36 -05:00
|
|
|
RTLIL::Wire *new_wire = module->addWire(module->uniquify(new_wire_name), width);
|
2015-09-01 06:10:36 -05:00
|
|
|
new_wire->port_id = wire->port_id ? wire->port_id + offset : 0;
|
2014-07-26 13:12:50 -05:00
|
|
|
new_wire->port_input = wire->port_input;
|
|
|
|
new_wire->port_output = wire->port_output;
|
2020-06-10 14:59:08 -05:00
|
|
|
new_wire->start_offset = wire->start_offset + offset;
|
2014-01-03 07:01:06 -06:00
|
|
|
|
2020-06-13 00:26:30 -05:00
|
|
|
auto it = wire->attributes.find(ID::src);
|
|
|
|
if (it != wire->attributes.end())
|
|
|
|
new_wire->attributes.emplace(ID::src, it->second);
|
2015-04-29 00:44:57 -05:00
|
|
|
|
2020-06-13 00:26:30 -05:00
|
|
|
it = wire->attributes.find(ID::hdlname);
|
|
|
|
if (it != wire->attributes.end())
|
|
|
|
new_wire->attributes.emplace(ID::hdlname, it->second);
|
2020-06-10 14:59:08 -05:00
|
|
|
|
2020-06-13 00:26:30 -05:00
|
|
|
it = wire->attributes.find(ID::keep);
|
|
|
|
if (it != wire->attributes.end())
|
|
|
|
new_wire->attributes.emplace(ID::keep, it->second);
|
2015-04-29 00:44:57 -05:00
|
|
|
|
2020-06-13 00:26:30 -05:00
|
|
|
it = wire->attributes.find(ID::init);
|
|
|
|
if (it != wire->attributes.end()) {
|
|
|
|
Const old_init = it->second, new_init;
|
2015-04-29 00:44:57 -05:00
|
|
|
for (int i = offset; i < offset+width; i++)
|
|
|
|
new_init.bits.push_back(i < GetSize(old_init) ? old_init.bits.at(i) : State::Sx);
|
2020-06-13 00:26:30 -05:00
|
|
|
new_wire->attributes.emplace(ID::init, new_init);
|
2015-04-29 00:44:57 -05:00
|
|
|
}
|
|
|
|
|
2014-01-03 07:01:06 -06:00
|
|
|
std::vector<RTLIL::SigBit> sigvec = RTLIL::SigSpec(new_wire).to_sigbit_vector();
|
|
|
|
splitmap[wire].insert(splitmap[wire].end(), sigvec.begin(), sigvec.end());
|
|
|
|
}
|
2013-06-18 10:11:36 -05:00
|
|
|
|
|
|
|
void operator()(RTLIL::SigSpec &sig)
|
|
|
|
{
|
2014-07-23 08:36:09 -05:00
|
|
|
for (auto &bit : sig)
|
|
|
|
if (splitmap.count(bit.wire) > 0)
|
|
|
|
bit = splitmap.at(bit.wire).at(bit.offset);
|
2013-06-18 10:11:36 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SplitnetsPass : public Pass {
|
|
|
|
SplitnetsPass() : Pass("splitnets", "split up multi-bit nets") { }
|
2020-06-18 18:34:52 -05:00
|
|
|
void help() override
|
2013-06-18 10:11:36 -05:00
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
|
|
|
log(" splitnets [options] [selection]\n");
|
|
|
|
log("\n");
|
|
|
|
log("This command splits multi-bit nets into single-bit nets.\n");
|
|
|
|
log("\n");
|
2014-01-03 07:01:06 -06:00
|
|
|
log(" -format char1[char2[char3]]\n");
|
2013-10-29 05:01:04 -05:00
|
|
|
log(" the first char is inserted between the net name and the bit index, the\n");
|
|
|
|
log(" second char is appended to the netname. e.g. -format () creates net\n");
|
2014-09-06 01:47:06 -05:00
|
|
|
log(" names like 'mysignal(42)'. the 3rd character is the range separation\n");
|
2014-01-03 07:01:06 -06:00
|
|
|
log(" character when creating multi-bit wires. the default is '[]:'.\n");
|
2013-10-29 05:01:04 -05:00
|
|
|
log("\n");
|
2013-06-18 10:11:36 -05:00
|
|
|
log(" -ports\n");
|
|
|
|
log(" also split module ports. per default only internal signals are split.\n");
|
|
|
|
log("\n");
|
2014-01-03 07:01:06 -06:00
|
|
|
log(" -driver\n");
|
|
|
|
log(" don't blindly split nets in individual bits. instead look at the driver\n");
|
|
|
|
log(" and split nets so that no driver drives only part of a net.\n");
|
|
|
|
log("\n");
|
2013-06-18 10:11:36 -05:00
|
|
|
}
|
2020-06-18 18:34:52 -05:00
|
|
|
void execute(std::vector<std::string> args, RTLIL::Design *design) override
|
2013-06-18 10:11:36 -05:00
|
|
|
{
|
|
|
|
bool flag_ports = false;
|
2014-01-03 07:01:06 -06:00
|
|
|
bool flag_driver = false;
|
|
|
|
std::string format = "[]:";
|
2013-06-18 10:11:36 -05:00
|
|
|
|
2016-04-21 16:28:37 -05:00
|
|
|
log_header(design, "Executing SPLITNETS pass (splitting up multi-bit signals).\n");
|
2014-02-07 12:51:15 -06:00
|
|
|
|
2013-06-18 10:11:36 -05:00
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++)
|
|
|
|
{
|
2013-10-29 05:01:04 -05:00
|
|
|
if (args[argidx] == "-format" && argidx+1 < args.size()) {
|
|
|
|
format = args[++argidx];
|
|
|
|
continue;
|
|
|
|
}
|
2013-06-18 10:11:36 -05:00
|
|
|
if (args[argidx] == "-ports") {
|
|
|
|
flag_ports = true;
|
|
|
|
continue;
|
|
|
|
}
|
2014-01-03 07:01:06 -06:00
|
|
|
if (args[argidx] == "-driver") {
|
|
|
|
flag_driver = true;
|
|
|
|
continue;
|
|
|
|
}
|
2013-06-18 10:11:36 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra_args(args, argidx, design);
|
|
|
|
|
2015-12-22 06:25:00 -06:00
|
|
|
// module_ports_db[module_name][old_port_name] = new_port_name_list
|
|
|
|
dict<IdString, dict<IdString, vector<IdString>>> module_ports_db;
|
|
|
|
|
2015-09-01 06:10:36 -05:00
|
|
|
for (auto module : design->selected_modules())
|
2013-06-18 10:11:36 -05:00
|
|
|
{
|
2019-12-10 20:14:23 -06:00
|
|
|
if (module->has_processes_warn())
|
|
|
|
continue;
|
|
|
|
|
2013-06-18 10:11:36 -05:00
|
|
|
SplitnetsWorker worker;
|
|
|
|
|
2015-09-01 06:10:36 -05:00
|
|
|
if (flag_ports)
|
|
|
|
{
|
|
|
|
int normalized_port_factor = 0;
|
|
|
|
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
if (wire->port_id != 0) {
|
2015-10-25 13:30:49 -05:00
|
|
|
normalized_port_factor = max(normalized_port_factor, wire->port_id+1);
|
|
|
|
normalized_port_factor = max(normalized_port_factor, GetSize(wire)+1);
|
2015-09-01 06:10:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
wire->port_id *= normalized_port_factor;
|
|
|
|
}
|
|
|
|
|
2014-01-03 07:01:06 -06:00
|
|
|
if (flag_driver)
|
|
|
|
{
|
|
|
|
CellTypes ct(design);
|
|
|
|
|
|
|
|
std::map<RTLIL::Wire*, std::set<int>> split_wires_at;
|
|
|
|
|
2020-06-13 00:47:55 -05:00
|
|
|
for (auto c : module->cells())
|
|
|
|
for (auto &p : c->connections())
|
2014-01-03 07:01:06 -06:00
|
|
|
{
|
2020-06-13 00:47:55 -05:00
|
|
|
if (!ct.cell_known(c->type))
|
2014-01-03 07:01:06 -06:00
|
|
|
continue;
|
2020-06-13 00:47:55 -05:00
|
|
|
if (!ct.cell_output(c->type, p.first))
|
2014-01-03 07:01:06 -06:00
|
|
|
continue;
|
2013-06-18 10:11:36 -05:00
|
|
|
|
2014-07-23 13:32:28 -05:00
|
|
|
RTLIL::SigSpec sig = p.second;
|
2014-07-22 13:15:14 -05:00
|
|
|
for (auto &chunk : sig.chunks()) {
|
2014-01-03 07:01:06 -06:00
|
|
|
if (chunk.wire == NULL)
|
|
|
|
continue;
|
|
|
|
if (chunk.wire->port_id == 0 || flag_ports) {
|
|
|
|
if (chunk.offset != 0)
|
|
|
|
split_wires_at[chunk.wire].insert(chunk.offset);
|
|
|
|
if (chunk.offset + chunk.width < chunk.wire->width)
|
|
|
|
split_wires_at[chunk.wire].insert(chunk.offset + chunk.width);
|
|
|
|
}
|
|
|
|
}
|
2013-06-18 10:11:36 -05:00
|
|
|
}
|
|
|
|
|
2014-01-03 07:01:06 -06:00
|
|
|
for (auto &it : split_wires_at) {
|
|
|
|
int cursor = 0;
|
|
|
|
for (int next_cursor : it.second) {
|
|
|
|
worker.append_wire(module, it.first, cursor, next_cursor - cursor, format);
|
|
|
|
cursor = next_cursor;
|
|
|
|
}
|
|
|
|
worker.append_wire(module, it.first, cursor, it.first->width - cursor, format);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-06-13 00:47:55 -05:00
|
|
|
for (auto wire : module->wires()) {
|
|
|
|
if (wire->width > 1 && (wire->port_id == 0 || flag_ports) && design->selected(module, wire))
|
2014-01-03 07:01:06 -06:00
|
|
|
worker.splitmap[wire] = std::vector<RTLIL::SigBit>();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto &it : worker.splitmap)
|
|
|
|
for (int i = 0; i < it.first->width; i++)
|
|
|
|
worker.append_wire(module, it.first, i, 1, format);
|
|
|
|
}
|
|
|
|
|
2013-06-18 10:11:36 -05:00
|
|
|
module->rewrite_sigspecs(worker);
|
|
|
|
|
2015-12-22 06:25:00 -06:00
|
|
|
if (flag_ports)
|
|
|
|
{
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
{
|
|
|
|
if (wire->port_id == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
SigSpec sig(wire);
|
|
|
|
worker(sig);
|
|
|
|
|
|
|
|
if (sig == wire)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
vector<IdString> &new_ports = module_ports_db[module->name][wire->name];
|
|
|
|
|
|
|
|
for (SigSpec c : sig.chunks())
|
|
|
|
new_ports.push_back(c.as_wire()->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-28 10:51:16 -06:00
|
|
|
pool<RTLIL::Wire*> delete_wires;
|
2014-07-26 13:12:50 -05:00
|
|
|
for (auto &it : worker.splitmap)
|
|
|
|
delete_wires.insert(it.first);
|
|
|
|
module->remove(delete_wires);
|
2013-06-18 10:11:36 -05:00
|
|
|
|
2015-09-01 06:10:36 -05:00
|
|
|
if (flag_ports)
|
|
|
|
module->fixup_ports();
|
2013-06-18 10:11:36 -05:00
|
|
|
}
|
2015-12-22 06:25:00 -06:00
|
|
|
|
|
|
|
if (!module_ports_db.empty())
|
|
|
|
{
|
|
|
|
for (auto module : design->modules())
|
|
|
|
for (auto cell : module->cells())
|
|
|
|
{
|
|
|
|
if (module_ports_db.count(cell->type) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (auto &it : module_ports_db.at(cell->type))
|
|
|
|
{
|
|
|
|
IdString port_id = it.first;
|
|
|
|
const auto &new_port_ids = it.second;
|
|
|
|
|
|
|
|
if (!cell->hasPort(port_id))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int offset = 0;
|
|
|
|
SigSpec sig = cell->getPort(port_id);
|
|
|
|
|
|
|
|
for (auto nid : new_port_ids)
|
|
|
|
{
|
|
|
|
int nlen = GetSize(design->module(cell->type)->wire(nid));
|
|
|
|
if (offset + nlen > GetSize(sig))
|
|
|
|
nlen = GetSize(sig) - offset;
|
|
|
|
if (nlen > 0)
|
|
|
|
cell->setPort(nid, sig.extract(offset, nlen));
|
|
|
|
offset += nlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
cell->unsetPort(port_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-18 10:11:36 -05:00
|
|
|
}
|
|
|
|
} SplitnetsPass;
|
2015-07-02 04:14:30 -05:00
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
PRIVATE_NAMESPACE_END
|