2013-06-18 10:11:36 -05: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/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) {
|
2014-07-26 13:12:50 -05:00
|
|
|
new_wire_name += stringf("%d", 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
|
|
|
}
|
|
|
|
|
2014-07-26 13:12:50 -05:00
|
|
|
new_wire_name += stringf("%d", 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);
|
2014-07-26 13:12:50 -05:00
|
|
|
new_wire->port_id = wire->port_id;
|
|
|
|
new_wire->port_input = wire->port_input;
|
|
|
|
new_wire->port_output = wire->port_output;
|
2014-01-03 07:01:06 -06:00
|
|
|
|
2015-04-29 00:44:57 -05:00
|
|
|
if (wire->attributes.count("\\src"))
|
|
|
|
new_wire->attributes["\\src"] = wire->attributes.at("\\src");
|
|
|
|
|
|
|
|
if (wire->attributes.count("\\keep"))
|
|
|
|
new_wire->attributes["\\keep"] = wire->attributes.at("\\keep");
|
|
|
|
|
|
|
|
if (wire->attributes.count("\\init")) {
|
|
|
|
Const old_init = wire->attributes.at("\\init"), new_init;
|
|
|
|
for (int i = offset; i < offset+width; i++)
|
|
|
|
new_init.bits.push_back(i < GetSize(old_init) ? old_init.bits.at(i) : State::Sx);
|
|
|
|
new_wire->attributes["\\init"] = new_init;
|
|
|
|
}
|
|
|
|
|
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") { }
|
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---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
|
|
|
}
|
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2014-02-07 12:51:15 -06:00
|
|
|
log_header("Executing SPLITNETS pass (splitting up multi-bit signals).\n");
|
|
|
|
|
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);
|
|
|
|
|
2014-07-27 03:18:00 -05:00
|
|
|
for (auto &mod_it : design->modules_)
|
2013-06-18 10:11:36 -05:00
|
|
|
{
|
|
|
|
RTLIL::Module *module = mod_it.second;
|
|
|
|
if (!design->selected(module))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
SplitnetsWorker worker;
|
|
|
|
|
2014-01-03 07:01:06 -06:00
|
|
|
if (flag_driver)
|
|
|
|
{
|
|
|
|
CellTypes ct(design);
|
|
|
|
|
|
|
|
std::map<RTLIL::Wire*, std::set<int>> split_wires_at;
|
|
|
|
|
2014-07-26 18:51:45 -05:00
|
|
|
for (auto &c : module->cells_)
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &p : c.second->connections())
|
2014-01-03 07:01:06 -06:00
|
|
|
{
|
|
|
|
if (!ct.cell_known(c.second->type))
|
|
|
|
continue;
|
|
|
|
if (!ct.cell_output(c.second->type, p.first))
|
|
|
|
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
|
|
|
|
{
|
2014-07-26 18:49:51 -05:00
|
|
|
for (auto &w : module->wires_) {
|
2014-01-03 07:01:06 -06:00
|
|
|
RTLIL::Wire *wire = w.second;
|
2014-02-16 10:39:50 -06:00
|
|
|
if (wire->width > 1 && (wire->port_id == 0 || flag_ports) && design->selected(module, w.second))
|
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);
|
|
|
|
|
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
|
|
|
|
|
|
|
module->fixup_ports();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} SplitnetsPass;
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
PRIVATE_NAMESPACE_END
|