mirror of https://github.com/YosysHQ/yosys.git
87 lines
2.9 KiB
C++
87 lines
2.9 KiB
C++
|
|
/*
|
||
|
|
* yosys -- Yosys Open SYnthesis Suite
|
||
|
|
*
|
||
|
|
* Copyright (C) 2012 Claire Xenia Wolf <claire@yosyshq.com>
|
||
|
|
* 2026 Stan Lee <stan@silimate.com>
|
||
|
|
*
|
||
|
|
* 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/yosys.h"
|
||
|
|
|
||
|
|
USING_YOSYS_NAMESPACE
|
||
|
|
PRIVATE_NAMESPACE_BEGIN
|
||
|
|
|
||
|
|
struct RegRenamePass : public Pass {
|
||
|
|
RegRenamePass() : Pass("reg_rename", "renames register output wires to the correct register name") { }
|
||
|
|
void help() override
|
||
|
|
{
|
||
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
||
|
|
log("\n");
|
||
|
|
log(" reg_rename\n");
|
||
|
|
log("\n");
|
||
|
|
}
|
||
|
|
void execute(std::vector<std::string> args, RTLIL::Design *design) override
|
||
|
|
{
|
||
|
|
log_header(design, "Executing reg_rename pass\n");
|
||
|
|
|
||
|
|
size_t argidx;
|
||
|
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
||
|
|
// No options currently. When adding in the future make sure to update docstring with [options]
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
extra_args(args, argidx, design);
|
||
|
|
|
||
|
|
uint32_t count = 0;
|
||
|
|
uint32_t moduleCount = design->selected_modules().size();
|
||
|
|
for (auto module : design->selected_modules()) {
|
||
|
|
for (auto cell : module->selected_cells()) {
|
||
|
|
|
||
|
|
// Rename the register output wire to the register name with
|
||
|
|
// "_reg" suffix removed.
|
||
|
|
if (cell->name.ends_with("_reg")) {
|
||
|
|
IdString registerName = cell->name.substr(0, cell->name.size() - 4);
|
||
|
|
for (auto conn : cell->connections()) {
|
||
|
|
if (conn.first == ID::Q && conn.second.is_wire()) {
|
||
|
|
Wire *wire = conn.second.as_wire();
|
||
|
|
|
||
|
|
// Skip if this wire is a module port (input/output)
|
||
|
|
if (wire->port_input || wire->port_output) {
|
||
|
|
log("Skipping port wire %s in register renaming for cell %s in module %s\n",
|
||
|
|
wire->name.c_str(), log_id(cell), log_id(module));
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Skip if we already renamed the wire
|
||
|
|
if (wire->name == registerName) {
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Rename register
|
||
|
|
log("Renaming register wire %s to %s for cell %s in module %s\n",
|
||
|
|
wire->name.c_str(), registerName.c_str(), log_id(cell), log_id(module));
|
||
|
|
module->rename(wire, registerName);
|
||
|
|
count++;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
log("Renamed %d registers in %d modules\n", count, moduleCount);
|
||
|
|
log_flush();
|
||
|
|
}
|
||
|
|
} RegRenamePass;
|
||
|
|
|
||
|
|
PRIVATE_NAMESPACE_END
|