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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-07-30 15:04:30 -05:00
|
|
|
#include "kernel/yosys.h"
|
2014-08-16 17:55:35 -05:00
|
|
|
#include "kernel/utils.h"
|
2014-07-30 15:04:30 -05:00
|
|
|
#include "kernel/sigtools.h"
|
|
|
|
#include "libs/sha1/sha1.h"
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2014-12-24 03:49:24 -06:00
|
|
|
#include "simplemap.h"
|
2014-07-30 19:32:00 -05:00
|
|
|
#include "passes/techmap/techmap.inc"
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
YOSYS_NAMESPACE_BEGIN
|
|
|
|
|
2014-09-07 11:23:37 -05:00
|
|
|
// see maccmap.cc
|
|
|
|
extern void maccmap(RTLIL::Module *module, RTLIL::Cell *cell, bool unmap = false);
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
YOSYS_NAMESPACE_END
|
|
|
|
|
|
|
|
USING_YOSYS_NAMESPACE
|
|
|
|
PRIVATE_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
void apply_prefix(std::string prefix, std::string &id)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
if (id[0] == '\\')
|
|
|
|
id = prefix + "." + id.substr(1);
|
|
|
|
else
|
2013-04-26 07:40:45 -05:00
|
|
|
id = "$techmap" + prefix + "." + id;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
void apply_prefix(std::string prefix, RTLIL::SigSpec &sig, RTLIL::Module *module)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2014-07-23 08:36:09 -05:00
|
|
|
std::vector<RTLIL::SigChunk> chunks = sig;
|
|
|
|
for (auto &chunk : chunks)
|
|
|
|
if (chunk.wire != NULL) {
|
2014-08-02 06:11:01 -05:00
|
|
|
std::string wire_name = chunk.wire->name.str();
|
2014-07-23 08:36:09 -05:00
|
|
|
apply_prefix(prefix, wire_name);
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(module->wires_.count(wire_name) > 0);
|
2014-07-26 18:49:51 -05:00
|
|
|
chunk.wire = module->wires_[wire_name];
|
2014-07-23 08:36:09 -05:00
|
|
|
}
|
|
|
|
sig = chunks;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
struct TechmapWorker
|
|
|
|
{
|
2014-08-02 06:11:01 -05:00
|
|
|
std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> simplemap_mappers;
|
2014-02-16 10:16:44 -06:00
|
|
|
std::map<std::pair<RTLIL::IdString, std::map<RTLIL::IdString, RTLIL::Const>>, RTLIL::Module*> techmap_cache;
|
|
|
|
std::map<RTLIL::Module*, bool> techmap_do_cache;
|
2014-08-02 09:03:18 -05:00
|
|
|
std::set<RTLIL::Module*, RTLIL::IdString::compare_ptr_by_name<RTLIL::Module>> module_queue;
|
2015-02-21 04:21:28 -06:00
|
|
|
dict<Module*, SigMap> sigmaps;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
struct TechmapWireData {
|
|
|
|
RTLIL::Wire *wire;
|
|
|
|
RTLIL::SigSpec value;
|
|
|
|
};
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
typedef std::map<std::string, std::vector<TechmapWireData>> TechmapWires;
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-07-30 19:21:41 -05:00
|
|
|
bool extern_mode;
|
|
|
|
bool assert_mode;
|
|
|
|
bool flatten_mode;
|
2014-08-03 05:40:43 -05:00
|
|
|
bool recursive_mode;
|
2014-09-01 08:36:29 -05:00
|
|
|
bool autoproc_mode;
|
2014-07-30 19:21:41 -05:00
|
|
|
|
|
|
|
TechmapWorker()
|
|
|
|
{
|
|
|
|
extern_mode = false;
|
|
|
|
assert_mode = false;
|
|
|
|
flatten_mode = false;
|
2014-08-03 05:40:43 -05:00
|
|
|
recursive_mode = false;
|
2014-09-01 08:36:29 -05:00
|
|
|
autoproc_mode = false;
|
2014-07-30 19:21:41 -05:00
|
|
|
}
|
|
|
|
|
2014-07-30 15:04:30 -05:00
|
|
|
std::string constmap_tpl_name(SigMap &sigmap, RTLIL::Module *tpl, RTLIL::Cell *cell, bool verbose)
|
|
|
|
{
|
|
|
|
std::string constmap_info;
|
2014-08-02 06:11:01 -05:00
|
|
|
std::map<RTLIL::SigBit, std::pair<RTLIL::IdString, int>> connbits_map;
|
2014-07-30 15:04:30 -05:00
|
|
|
|
|
|
|
for (auto conn : cell->connections())
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(conn.second); i++) {
|
2014-07-30 15:04:30 -05:00
|
|
|
RTLIL::SigBit bit = sigmap(conn.second[i]);
|
|
|
|
if (bit.wire == nullptr) {
|
|
|
|
if (verbose)
|
|
|
|
log(" Constant input on bit %d of port %s: %s\n", i, log_id(conn.first), log_signal(bit));
|
|
|
|
constmap_info += stringf("|%s %d %d", log_id(conn.first), i, bit.data);
|
|
|
|
} else if (connbits_map.count(bit)) {
|
|
|
|
if (verbose)
|
|
|
|
log(" Bit %d of port %s and bit %d of port %s are connected.\n", i, log_id(conn.first),
|
|
|
|
connbits_map.at(bit).second, log_id(connbits_map.at(bit).first));
|
|
|
|
constmap_info += stringf("|%s %d %s %d", log_id(conn.first), i,
|
|
|
|
log_id(connbits_map.at(bit).first), connbits_map.at(bit).second);
|
2014-10-10 10:22:08 -05:00
|
|
|
} else {
|
|
|
|
connbits_map[bit] = std::pair<RTLIL::IdString, int>(conn.first, i);
|
|
|
|
constmap_info += stringf("|%s %d", log_id(conn.first), i);
|
|
|
|
}
|
2014-07-30 15:04:30 -05:00
|
|
|
}
|
|
|
|
|
2014-08-01 12:01:10 -05:00
|
|
|
return stringf("$paramod$constmap:%s%s", sha1(constmap_info).c_str(), tpl->name.c_str());
|
2014-07-30 15:04:30 -05:00
|
|
|
}
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
TechmapWires techmap_find_special_wires(RTLIL::Module *module)
|
|
|
|
{
|
|
|
|
TechmapWires result;
|
2013-03-28 04:12:50 -05:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (module == NULL)
|
|
|
|
return result;
|
2013-03-28 04:12:50 -05:00
|
|
|
|
2014-07-26 18:49:51 -05:00
|
|
|
for (auto &it : module->wires_) {
|
2014-02-16 10:16:44 -06:00
|
|
|
const char *p = it.first.c_str();
|
|
|
|
if (*p == '$')
|
|
|
|
continue;
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
const char *q = strrchr(p+1, '.');
|
2015-01-15 06:36:57 -06:00
|
|
|
p = q ? q+1 : p+1;
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (!strncmp(p, "_TECHMAP_", 9)) {
|
|
|
|
TechmapWireData record;
|
|
|
|
record.wire = it.second;
|
|
|
|
record.value = it.second;
|
|
|
|
result[p].push_back(record);
|
|
|
|
it.second->attributes["\\keep"] = RTLIL::Const(1);
|
|
|
|
it.second->attributes["\\_techmap_special_"] = RTLIL::Const(1);
|
|
|
|
}
|
2013-11-23 08:58:06 -06:00
|
|
|
}
|
2013-03-28 04:12:50 -05:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (!result.empty()) {
|
|
|
|
SigMap sigmap(module);
|
|
|
|
for (auto &it1 : result)
|
|
|
|
for (auto &it2 : it1.second)
|
|
|
|
sigmap.apply(it2.value);
|
|
|
|
}
|
2013-03-28 04:12:50 -05:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
return result;
|
2013-03-28 04:12:50 -05:00
|
|
|
}
|
|
|
|
|
2014-07-30 19:21:41 -05:00
|
|
|
void techmap_module_worker(RTLIL::Design *design, RTLIL::Module *module, RTLIL::Cell *cell, RTLIL::Module *tpl)
|
2014-02-16 10:16:44 -06:00
|
|
|
{
|
2014-05-26 10:13:41 -05:00
|
|
|
if (tpl->processes.size() != 0) {
|
|
|
|
log("Technology map yielded processes:\n");
|
|
|
|
for (auto &it : tpl->processes)
|
|
|
|
log(" %s",RTLIL::id2cstr(it.first));
|
2014-09-01 08:36:29 -05:00
|
|
|
if (autoproc_mode) {
|
|
|
|
Pass::call_on_module(tpl->design, tpl, "proc");
|
2014-10-10 09:59:44 -05:00
|
|
|
log_assert(GetSize(tpl->processes) == 0);
|
2014-09-01 08:36:29 -05:00
|
|
|
} else
|
|
|
|
log_error("Technology map yielded processes -> this is not supported (use -autoproc to run 'proc' automatically).\n");
|
2014-05-26 10:13:41 -05:00
|
|
|
}
|
2014-02-16 10:16:44 -06:00
|
|
|
|
2014-02-20 16:42:07 -06:00
|
|
|
std::string orig_cell_name;
|
|
|
|
if (!flatten_mode)
|
2014-07-26 18:51:45 -05:00
|
|
|
for (auto &it : tpl->cells_)
|
2014-02-20 16:42:07 -06:00
|
|
|
if (it.first == "\\_TECHMAP_REPLACE_") {
|
2014-08-02 11:58:40 -05:00
|
|
|
orig_cell_name = cell->name.str();
|
2014-08-02 06:11:01 -05:00
|
|
|
module->rename(cell, stringf("$techmap%d", autoidx++) + cell->name.str());
|
2014-02-20 16:42:07 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-01-17 13:46:52 -06:00
|
|
|
dict<IdString, IdString> memory_renames;
|
|
|
|
|
|
|
|
for (auto &it : tpl->memories) {
|
|
|
|
std::string m_name = it.first.str();
|
|
|
|
apply_prefix(cell->name.str(), m_name);
|
|
|
|
RTLIL::Memory *m = new RTLIL::Memory;
|
|
|
|
m->name = m_name;
|
|
|
|
m->width = it.second->width;
|
|
|
|
m->start_offset = it.second->start_offset;
|
|
|
|
m->size = it.second->size;
|
|
|
|
m->attributes = it.second->attributes;
|
|
|
|
module->memories[m->name] = m;
|
|
|
|
memory_renames[it.first] = m->name;
|
|
|
|
design->select(module, m);
|
|
|
|
}
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
std::map<RTLIL::IdString, RTLIL::IdString> positional_ports;
|
|
|
|
|
2014-07-26 18:49:51 -05:00
|
|
|
for (auto &it : tpl->wires_) {
|
2014-02-16 10:16:44 -06:00
|
|
|
if (it.second->port_id > 0)
|
|
|
|
positional_ports[stringf("$%d", it.second->port_id)] = it.first;
|
2014-08-02 06:11:01 -05:00
|
|
|
std::string w_name = it.second->name.str();
|
|
|
|
apply_prefix(cell->name.str(), w_name);
|
2014-07-26 14:16:05 -05:00
|
|
|
RTLIL::Wire *w = module->addWire(w_name, it.second);
|
2014-02-16 10:16:44 -06:00
|
|
|
w->port_input = false;
|
|
|
|
w->port_output = false;
|
|
|
|
w->port_id = 0;
|
|
|
|
if (it.second->get_bool_attribute("\\_techmap_special_"))
|
|
|
|
w->attributes.clear();
|
|
|
|
design->select(module, w);
|
2013-03-28 04:12:50 -05:00
|
|
|
}
|
2014-02-16 10:16:44 -06:00
|
|
|
|
|
|
|
SigMap port_signal_map;
|
|
|
|
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &it : cell->connections()) {
|
2014-02-16 10:16:44 -06:00
|
|
|
RTLIL::IdString portname = it.first;
|
|
|
|
if (positional_ports.count(portname) > 0)
|
|
|
|
portname = positional_ports.at(portname);
|
2014-07-26 18:49:51 -05:00
|
|
|
if (tpl->wires_.count(portname) == 0 || tpl->wires_.at(portname)->port_id == 0) {
|
2014-02-16 10:16:44 -06:00
|
|
|
if (portname.substr(0, 1) == "$")
|
|
|
|
log_error("Can't map port `%s' of cell `%s' to template `%s'!\n", portname.c_str(), cell->name.c_str(), tpl->name.c_str());
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-26 18:49:51 -05:00
|
|
|
RTLIL::Wire *w = tpl->wires_.at(portname);
|
2014-02-16 10:16:44 -06:00
|
|
|
RTLIL::SigSig c;
|
|
|
|
if (w->port_output) {
|
|
|
|
c.first = it.second;
|
|
|
|
c.second = RTLIL::SigSpec(w);
|
2014-08-02 06:11:01 -05:00
|
|
|
apply_prefix(cell->name.str(), c.second, module);
|
2014-02-16 10:16:44 -06:00
|
|
|
} else {
|
|
|
|
c.first = RTLIL::SigSpec(w);
|
|
|
|
c.second = it.second;
|
2014-08-02 06:11:01 -05:00
|
|
|
apply_prefix(cell->name.str(), c.first, module);
|
2014-02-16 10:16:44 -06:00
|
|
|
}
|
2014-07-22 13:15:14 -05:00
|
|
|
if (c.second.size() > c.first.size())
|
|
|
|
c.second.remove(c.first.size(), c.second.size() - c.first.size());
|
|
|
|
if (c.second.size() < c.first.size())
|
|
|
|
c.second.append(RTLIL::SigSpec(RTLIL::State::S0, c.first.size() - c.second.size()));
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(c.first.size() == c.second.size());
|
2014-02-17 02:44:39 -06:00
|
|
|
if (flatten_mode) {
|
|
|
|
// more conservative approach:
|
|
|
|
// connect internal and external wires
|
2015-02-21 04:21:28 -06:00
|
|
|
if (sigmaps.count(module) == 0)
|
|
|
|
sigmaps[module].set(module);
|
|
|
|
if (sigmaps.at(module)(c.first).has_const())
|
|
|
|
log_error("Mismatch in directionality for cell port %s.%s.%s: %s <= %s\n",
|
|
|
|
log_id(module), log_id(cell), log_id(it.first), log_signal(c.first), log_signal(c.second));
|
2014-07-26 07:32:50 -05:00
|
|
|
module->connect(c);
|
2014-02-17 02:44:39 -06:00
|
|
|
} else {
|
|
|
|
// approach that yields nicer outputs:
|
|
|
|
// replace internal wires that are connected to external wires
|
|
|
|
if (w->port_output)
|
|
|
|
port_signal_map.add(c.second, c.first);
|
|
|
|
else
|
|
|
|
port_signal_map.add(c.first, c.second);
|
|
|
|
}
|
2014-02-16 10:16:44 -06:00
|
|
|
}
|
|
|
|
|
2014-07-26 18:51:45 -05:00
|
|
|
for (auto &it : tpl->cells_)
|
2014-07-25 08:05:18 -05:00
|
|
|
{
|
2014-08-02 06:11:01 -05:00
|
|
|
std::string c_name = it.second->name.str();
|
2014-07-25 08:05:18 -05:00
|
|
|
|
|
|
|
if (!flatten_mode && c_name == "\\_TECHMAP_REPLACE_")
|
|
|
|
c_name = orig_cell_name;
|
2014-02-20 16:42:07 -06:00
|
|
|
else
|
2014-08-02 06:11:01 -05:00
|
|
|
apply_prefix(cell->name.str(), c_name);
|
2014-07-25 08:05:18 -05:00
|
|
|
|
2014-07-25 17:38:44 -05:00
|
|
|
RTLIL::Cell *c = module->addCell(c_name, it.second);
|
2014-07-25 08:05:18 -05:00
|
|
|
design->select(module, c);
|
|
|
|
|
2014-07-25 17:38:44 -05:00
|
|
|
if (!flatten_mode && c->type.substr(0, 2) == "\\$")
|
|
|
|
c->type = c->type.substr(1);
|
|
|
|
|
2014-07-26 08:57:57 -05:00
|
|
|
for (auto &it2 : c->connections_) {
|
2014-08-02 06:11:01 -05:00
|
|
|
apply_prefix(cell->name.str(), it2.second, module);
|
2014-02-16 10:16:44 -06:00
|
|
|
port_signal_map.apply(it2.second);
|
|
|
|
}
|
2015-01-17 13:46:52 -06:00
|
|
|
|
|
|
|
if (c->type == "$memrd" || c->type == "$memwr") {
|
|
|
|
IdString memid = c->getParam("\\MEMID").decode_string();
|
|
|
|
log_assert(memory_renames.count(memid));
|
|
|
|
c->setParam("\\MEMID", Const(memory_renames[memid].str()));
|
|
|
|
}
|
2014-02-16 10:16:44 -06:00
|
|
|
}
|
2013-10-17 15:19:38 -05:00
|
|
|
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &it : tpl->connections()) {
|
2014-02-16 10:16:44 -06:00
|
|
|
RTLIL::SigSig c = it;
|
2014-08-02 06:11:01 -05:00
|
|
|
apply_prefix(cell->name.str(), c.first, module);
|
|
|
|
apply_prefix(cell->name.str(), c.second, module);
|
2014-02-16 10:16:44 -06:00
|
|
|
port_signal_map.apply(c.first);
|
|
|
|
port_signal_map.apply(c.second);
|
2014-07-26 07:32:50 -05:00
|
|
|
module->connect(c);
|
2013-10-17 15:19:38 -05:00
|
|
|
}
|
|
|
|
|
2014-07-25 08:05:18 -05:00
|
|
|
module->remove(cell);
|
2013-03-28 04:12:50 -05:00
|
|
|
}
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
bool techmap_module(RTLIL::Design *design, RTLIL::Module *module, RTLIL::Design *map, std::set<RTLIL::Cell*> &handled_cells,
|
2014-08-14 19:40:46 -05:00
|
|
|
const std::map<RTLIL::IdString, std::set<RTLIL::IdString, RTLIL::sort_by_id_str>> &celltypeMap, bool in_recursion)
|
2014-02-16 10:16:44 -06:00
|
|
|
{
|
2014-08-03 05:40:43 -05:00
|
|
|
std::string mapmsg_prefix = in_recursion ? "Recursively mapping" : "Mapping";
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (!design->selected(module))
|
|
|
|
return false;
|
2013-03-28 04:12:50 -05:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
bool log_continue = false;
|
|
|
|
bool did_something = false;
|
2013-02-28 17:36:19 -06:00
|
|
|
|
2014-02-16 14:58:59 -06:00
|
|
|
SigMap sigmap(module);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-11-07 08:21:03 -06:00
|
|
|
TopoSort<RTLIL::Cell*, RTLIL::IdString::compare_ptr_by_name<RTLIL::Cell>> cells;
|
2014-07-27 09:19:24 -05:00
|
|
|
std::map<RTLIL::Cell*, std::set<RTLIL::SigBit>> cell_to_inbit;
|
|
|
|
std::map<RTLIL::SigBit, std::set<RTLIL::Cell*>> outbit_to_cell;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-27 09:19:24 -05:00
|
|
|
for (auto cell : module->cells())
|
|
|
|
{
|
2014-02-16 10:16:44 -06:00
|
|
|
if (!design->selected(module, cell) || handled_cells.count(cell) > 0)
|
|
|
|
continue;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-08-03 05:40:43 -05:00
|
|
|
std::string cell_type = cell->type.str();
|
|
|
|
if (in_recursion && cell_type.substr(0, 2) == "\\$")
|
|
|
|
cell_type = cell_type.substr(1);
|
|
|
|
|
|
|
|
if (celltypeMap.count(cell_type) == 0) {
|
|
|
|
if (assert_mode && cell_type.back() != '_')
|
|
|
|
log_error("(ASSERT MODE) No matching template cell for type %s found.\n", log_id(cell_type));
|
2014-02-16 10:16:44 -06:00
|
|
|
continue;
|
2014-07-30 19:21:41 -05:00
|
|
|
}
|
2013-02-28 17:36:19 -06:00
|
|
|
|
2014-07-27 09:19:24 -05:00
|
|
|
for (auto &conn : cell->connections())
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig = sigmap(conn.second);
|
|
|
|
sig.remove_const();
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if (GetSize(sig) == 0)
|
2014-07-27 09:19:24 -05:00
|
|
|
continue;
|
|
|
|
|
2014-08-03 05:40:43 -05:00
|
|
|
for (auto &tpl_name : celltypeMap.at(cell_type)) {
|
2014-07-27 09:19:24 -05:00
|
|
|
RTLIL::Module *tpl = map->modules_[tpl_name];
|
|
|
|
RTLIL::Wire *port = tpl->wire(conn.first);
|
|
|
|
if (port && port->port_input)
|
|
|
|
cell_to_inbit[cell].insert(sig.begin(), sig.end());
|
|
|
|
if (port && port->port_output)
|
|
|
|
for (auto &bit : sig)
|
|
|
|
outbit_to_cell[bit].insert(cell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cells.node(cell);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto &it_right : cell_to_inbit)
|
|
|
|
for (auto &it_sigbit : it_right.second)
|
|
|
|
for (auto &it_left : outbit_to_cell[it_sigbit])
|
|
|
|
cells.edge(it_left, it_right.first);
|
|
|
|
|
|
|
|
cells.sort();
|
|
|
|
|
|
|
|
for (auto cell : cells.sorted)
|
|
|
|
{
|
|
|
|
log_assert(handled_cells.count(cell) == 0);
|
|
|
|
log_assert(cell == module->cell(cell->name));
|
2014-07-30 19:21:41 -05:00
|
|
|
bool mapped_cell = false;
|
2014-07-27 09:19:24 -05:00
|
|
|
|
2014-08-03 05:40:43 -05:00
|
|
|
std::string cell_type = cell->type.str();
|
|
|
|
if (in_recursion && cell_type.substr(0, 2) == "\\$")
|
|
|
|
cell_type = cell_type.substr(1);
|
|
|
|
|
|
|
|
for (auto &tpl_name : celltypeMap.at(cell_type))
|
2014-02-16 10:16:44 -06:00
|
|
|
{
|
2014-08-02 06:11:01 -05:00
|
|
|
RTLIL::IdString derived_name = tpl_name;
|
2014-07-27 03:18:00 -05:00
|
|
|
RTLIL::Module *tpl = map->modules_[tpl_name];
|
2014-12-26 03:53:21 -06:00
|
|
|
std::map<RTLIL::IdString, RTLIL::Const> parameters(cell->parameters.begin(), cell->parameters.end());
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-17 01:58:51 -05:00
|
|
|
if (tpl->get_bool_attribute("\\blackbox"))
|
|
|
|
continue;
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (!flatten_mode)
|
|
|
|
{
|
2014-09-07 11:23:37 -05:00
|
|
|
std::string extmapper_name;
|
|
|
|
|
2014-07-27 14:13:23 -05:00
|
|
|
if (tpl->get_bool_attribute("\\techmap_simplemap"))
|
2014-09-07 11:23:37 -05:00
|
|
|
extmapper_name = "simplemap";
|
|
|
|
|
|
|
|
if (tpl->get_bool_attribute("\\techmap_maccmap"))
|
|
|
|
extmapper_name = "maccmap";
|
|
|
|
|
2014-09-14 07:49:26 -05:00
|
|
|
if (tpl->attributes.count("\\techmap_wrap"))
|
|
|
|
extmapper_name = "wrap";
|
|
|
|
|
2014-09-07 11:23:37 -05:00
|
|
|
if (!extmapper_name.empty())
|
2014-07-27 14:13:23 -05:00
|
|
|
{
|
2014-08-03 05:40:43 -05:00
|
|
|
cell->type = cell_type;
|
|
|
|
|
2014-09-14 07:49:26 -05:00
|
|
|
if ((extern_mode && !in_recursion) || extmapper_name == "wrap")
|
2014-07-27 14:13:23 -05:00
|
|
|
{
|
2014-09-07 11:23:37 -05:00
|
|
|
std::string m_name = stringf("$extern:%s:%s", extmapper_name.c_str(), log_id(cell->type));
|
2014-08-02 14:55:13 -05:00
|
|
|
|
|
|
|
for (auto &c : cell->parameters)
|
|
|
|
m_name += stringf(":%s=%s", log_id(c.first), log_signal(c.second));
|
|
|
|
|
2014-09-14 08:34:36 -05:00
|
|
|
if (extmapper_name == "wrap")
|
|
|
|
m_name += ":" + sha1(tpl->attributes.at("\\techmap_wrap").decode_string());
|
|
|
|
|
2014-09-14 07:49:26 -05:00
|
|
|
RTLIL::Design *extmapper_design = extern_mode && !in_recursion ? design : tpl->design;
|
|
|
|
RTLIL::Module *extmapper_module = extmapper_design->module(m_name);
|
2014-08-02 14:55:13 -05:00
|
|
|
|
2014-09-07 11:23:37 -05:00
|
|
|
if (extmapper_module == nullptr)
|
2014-08-02 14:55:13 -05:00
|
|
|
{
|
2014-09-14 07:49:26 -05:00
|
|
|
extmapper_module = extmapper_design->addModule(m_name);
|
2014-09-07 11:23:37 -05:00
|
|
|
RTLIL::Cell *extmapper_cell = extmapper_module->addCell(cell->type, cell);
|
2014-08-02 14:55:13 -05:00
|
|
|
|
|
|
|
int port_counter = 1;
|
2014-09-07 11:23:37 -05:00
|
|
|
for (auto &c : extmapper_cell->connections_) {
|
2014-10-10 09:59:44 -05:00
|
|
|
RTLIL::Wire *w = extmapper_module->addWire(c.first, GetSize(c.second));
|
2014-08-02 14:55:13 -05:00
|
|
|
if (w->name == "\\Y" || w->name == "\\Q")
|
|
|
|
w->port_output = true;
|
|
|
|
else
|
|
|
|
w->port_input = true;
|
|
|
|
w->port_id = port_counter++;
|
|
|
|
c.second = w;
|
|
|
|
}
|
|
|
|
|
2014-09-14 07:49:26 -05:00
|
|
|
extmapper_module->fixup_ports();
|
2014-09-07 11:23:37 -05:00
|
|
|
extmapper_module->check();
|
|
|
|
|
|
|
|
if (extmapper_name == "simplemap") {
|
|
|
|
log("Creating %s with simplemap.\n", log_id(extmapper_module));
|
|
|
|
if (simplemap_mappers.count(extmapper_cell->type) == 0)
|
|
|
|
log_error("No simplemap mapper for cell type %s found!\n", log_id(extmapper_cell->type));
|
|
|
|
simplemap_mappers.at(extmapper_cell->type)(extmapper_module, extmapper_cell);
|
2014-09-14 07:49:26 -05:00
|
|
|
extmapper_module->remove(extmapper_cell);
|
2014-09-07 11:23:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (extmapper_name == "maccmap") {
|
|
|
|
log("Creating %s with maccmap.\n", log_id(extmapper_module));
|
|
|
|
if (extmapper_cell->type != "$macc")
|
|
|
|
log_error("The maccmap mapper can only map $macc (not %s) cells!\n", log_id(extmapper_cell->type));
|
|
|
|
maccmap(extmapper_module, extmapper_cell);
|
2014-09-14 07:49:26 -05:00
|
|
|
extmapper_module->remove(extmapper_cell);
|
2014-09-07 11:23:37 -05:00
|
|
|
}
|
2014-08-02 14:55:13 -05:00
|
|
|
|
2014-09-14 07:49:26 -05:00
|
|
|
if (extmapper_name == "wrap") {
|
|
|
|
std::string cmd_string = tpl->attributes.at("\\techmap_wrap").decode_string();
|
|
|
|
log("Running \"%s\" on wrapper %s.\n", cmd_string.c_str(), log_id(extmapper_module));
|
|
|
|
Pass::call_on_module(extmapper_design, extmapper_module, cmd_string);
|
|
|
|
log_continue = true;
|
|
|
|
}
|
2014-08-02 14:55:13 -05:00
|
|
|
}
|
|
|
|
|
2014-09-07 11:23:37 -05:00
|
|
|
cell->type = extmapper_module->name;
|
2014-08-02 14:55:13 -05:00
|
|
|
cell->parameters.clear();
|
2014-09-14 07:49:26 -05:00
|
|
|
|
|
|
|
if (!extern_mode || in_recursion) {
|
|
|
|
tpl = extmapper_module;
|
|
|
|
goto use_wrapper_tpl;
|
|
|
|
}
|
|
|
|
|
|
|
|
log("%s %s.%s (%s) to %s.\n", mapmsg_prefix.c_str(), log_id(module), log_id(cell), log_id(cell->type), log_id(extmapper_module));
|
2014-07-27 14:13:23 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-09-07 11:23:37 -05:00
|
|
|
log("%s %s.%s (%s) with %s.\n", mapmsg_prefix.c_str(), log_id(module), log_id(cell), log_id(cell->type), extmapper_name.c_str());
|
|
|
|
|
|
|
|
if (extmapper_name == "simplemap") {
|
|
|
|
if (simplemap_mappers.count(cell->type) == 0)
|
|
|
|
log_error("No simplemap mapper for cell type %s found!\n", RTLIL::id2cstr(cell->type));
|
|
|
|
simplemap_mappers.at(cell->type)(module, cell);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extmapper_name == "maccmap") {
|
|
|
|
if (cell->type != "$macc")
|
|
|
|
log_error("The maccmap mapper can only map $macc (not %s) cells!\n", log_id(cell->type));
|
|
|
|
maccmap(module, cell);
|
|
|
|
}
|
|
|
|
|
2014-07-27 14:13:23 -05:00
|
|
|
module->remove(cell);
|
|
|
|
cell = NULL;
|
|
|
|
}
|
2014-08-02 14:55:13 -05:00
|
|
|
|
|
|
|
did_something = true;
|
|
|
|
mapped_cell = true;
|
|
|
|
break;
|
2014-02-16 10:16:44 -06:00
|
|
|
}
|
2013-04-27 11:30:29 -05:00
|
|
|
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto conn : cell->connections()) {
|
2014-02-16 10:16:44 -06:00
|
|
|
if (conn.first.substr(0, 1) == "$")
|
|
|
|
continue;
|
2014-07-26 18:49:51 -05:00
|
|
|
if (tpl->wires_.count(conn.first) > 0 && tpl->wires_.at(conn.first)->port_id > 0)
|
2014-02-16 10:16:44 -06:00
|
|
|
continue;
|
|
|
|
if (!conn.second.is_fully_const() || parameters.count(conn.first) > 0 || tpl->avail_parameters.count(conn.first) == 0)
|
|
|
|
goto next_tpl;
|
|
|
|
parameters[conn.first] = conn.second.as_const();
|
|
|
|
}
|
2013-11-24 16:31:14 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (0) {
|
|
|
|
next_tpl:
|
2013-11-23 08:58:06 -06:00
|
|
|
continue;
|
2014-02-16 10:16:44 -06:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (tpl->avail_parameters.count("\\_TECHMAP_CELLTYPE_") != 0)
|
|
|
|
parameters["\\_TECHMAP_CELLTYPE_"] = RTLIL::unescape_id(cell->type);
|
2014-02-16 14:58:59 -06:00
|
|
|
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto conn : cell->connections()) {
|
2014-02-16 14:58:59 -06:00
|
|
|
if (tpl->avail_parameters.count(stringf("\\_TECHMAP_CONSTMSK_%s_", RTLIL::id2cstr(conn.first))) != 0) {
|
|
|
|
std::vector<RTLIL::SigBit> v = sigmap(conn.second).to_sigbit_vector();
|
|
|
|
for (auto &bit : v)
|
|
|
|
bit = RTLIL::SigBit(bit.wire == NULL ? RTLIL::State::S1 : RTLIL::State::S0);
|
|
|
|
parameters[stringf("\\_TECHMAP_CONSTMSK_%s_", RTLIL::id2cstr(conn.first))] = RTLIL::SigSpec(v).as_const();
|
|
|
|
}
|
|
|
|
if (tpl->avail_parameters.count(stringf("\\_TECHMAP_CONSTVAL_%s_", RTLIL::id2cstr(conn.first))) != 0) {
|
|
|
|
std::vector<RTLIL::SigBit> v = sigmap(conn.second).to_sigbit_vector();
|
|
|
|
for (auto &bit : v)
|
|
|
|
if (bit.wire != NULL)
|
|
|
|
bit = RTLIL::SigBit(RTLIL::State::Sx);
|
|
|
|
parameters[stringf("\\_TECHMAP_CONSTVAL_%s_", RTLIL::id2cstr(conn.first))] = RTLIL::SigSpec(v).as_const();
|
|
|
|
}
|
|
|
|
}
|
2014-02-18 12:23:32 -06:00
|
|
|
|
|
|
|
int unique_bit_id_counter = 0;
|
|
|
|
std::map<RTLIL::SigBit, int> unique_bit_id;
|
|
|
|
unique_bit_id[RTLIL::State::S0] = unique_bit_id_counter++;
|
|
|
|
unique_bit_id[RTLIL::State::S1] = unique_bit_id_counter++;
|
|
|
|
unique_bit_id[RTLIL::State::Sx] = unique_bit_id_counter++;
|
|
|
|
unique_bit_id[RTLIL::State::Sz] = unique_bit_id_counter++;
|
|
|
|
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto conn : cell->connections())
|
2014-02-18 12:23:32 -06:00
|
|
|
if (tpl->avail_parameters.count(stringf("\\_TECHMAP_CONNMAP_%s_", RTLIL::id2cstr(conn.first))) != 0) {
|
|
|
|
for (auto &bit : sigmap(conn.second).to_sigbit_vector())
|
|
|
|
if (unique_bit_id.count(bit) == 0)
|
|
|
|
unique_bit_id[bit] = unique_bit_id_counter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bits = 0;
|
|
|
|
for (int i = 0; i < 32; i++)
|
|
|
|
if (((unique_bit_id_counter-1) & (1 << i)) != 0)
|
|
|
|
bits = i;
|
|
|
|
if (tpl->avail_parameters.count("\\_TECHMAP_BITS_CONNMAP_"))
|
|
|
|
parameters["\\_TECHMAP_BITS_CONNMAP_"] = bits;
|
|
|
|
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto conn : cell->connections())
|
2014-02-18 12:23:32 -06:00
|
|
|
if (tpl->avail_parameters.count(stringf("\\_TECHMAP_CONNMAP_%s_", RTLIL::id2cstr(conn.first))) != 0) {
|
|
|
|
RTLIL::Const value;
|
|
|
|
for (auto &bit : sigmap(conn.second).to_sigbit_vector()) {
|
|
|
|
RTLIL::Const chunk(unique_bit_id.at(bit), bits);
|
|
|
|
value.bits.insert(value.bits.end(), chunk.bits.begin(), chunk.bits.end());
|
|
|
|
}
|
|
|
|
parameters[stringf("\\_TECHMAP_CONNMAP_%s_", RTLIL::id2cstr(conn.first))] = value;
|
|
|
|
}
|
2013-11-23 08:58:06 -06:00
|
|
|
}
|
2013-11-24 13:29:07 -06:00
|
|
|
|
2014-09-14 08:34:36 -05:00
|
|
|
if (0) {
|
|
|
|
use_wrapper_tpl:;
|
|
|
|
// do not register techmap_wrap modules with techmap_cache
|
2014-02-16 10:16:44 -06:00
|
|
|
} else {
|
2014-09-14 08:34:36 -05:00
|
|
|
std::pair<RTLIL::IdString, std::map<RTLIL::IdString, RTLIL::Const>> key(tpl_name, parameters);
|
|
|
|
if (techmap_cache.count(key) > 0) {
|
|
|
|
tpl = techmap_cache[key];
|
|
|
|
} else {
|
|
|
|
if (cell->parameters.size() != 0) {
|
2014-12-26 03:53:21 -06:00
|
|
|
derived_name = tpl->derive(map, dict<RTLIL::IdString, RTLIL::Const>(parameters.begin(), parameters.end()));
|
2014-09-14 08:34:36 -05:00
|
|
|
tpl = map->module(derived_name);
|
|
|
|
log_continue = true;
|
|
|
|
}
|
|
|
|
techmap_cache[key] = tpl;
|
2014-02-16 10:16:44 -06:00
|
|
|
}
|
2013-03-28 04:12:50 -05:00
|
|
|
}
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-07-30 15:04:30 -05:00
|
|
|
if (flatten_mode) {
|
2014-02-16 10:16:44 -06:00
|
|
|
techmap_do_cache[tpl] = true;
|
2014-07-30 15:04:30 -05:00
|
|
|
} else {
|
|
|
|
RTLIL::Module *constmapped_tpl = map->module(constmap_tpl_name(sigmap, tpl, cell, false));
|
|
|
|
if (constmapped_tpl != nullptr)
|
|
|
|
tpl = constmapped_tpl;
|
|
|
|
}
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (techmap_do_cache.count(tpl) == 0)
|
2013-11-23 08:58:06 -06:00
|
|
|
{
|
2014-02-16 10:16:44 -06:00
|
|
|
bool keep_running = true;
|
|
|
|
techmap_do_cache[tpl] = true;
|
|
|
|
|
2014-02-16 15:18:06 -06:00
|
|
|
std::set<std::string> techmap_wire_names;
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
while (keep_running)
|
|
|
|
{
|
|
|
|
TechmapWires twd = techmap_find_special_wires(tpl);
|
|
|
|
keep_running = false;
|
|
|
|
|
2014-02-16 15:18:06 -06:00
|
|
|
for (auto &it : twd)
|
|
|
|
techmap_wire_names.insert(it.first);
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
for (auto &it : twd["_TECHMAP_FAIL_"]) {
|
|
|
|
RTLIL::SigSpec value = it.value;
|
|
|
|
if (value.is_fully_const() && value.as_bool()) {
|
|
|
|
log("Not using module `%s' from techmap as it contains a %s marker wire with non-zero value %s.\n",
|
|
|
|
derived_name.c_str(), RTLIL::id2cstr(it.wire->name), log_signal(value));
|
|
|
|
techmap_do_cache[tpl] = false;
|
|
|
|
}
|
2013-11-23 08:58:06 -06:00
|
|
|
}
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (!techmap_do_cache[tpl])
|
|
|
|
break;
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
for (auto &it : twd)
|
|
|
|
{
|
|
|
|
if (it.first.substr(0, 12) != "_TECHMAP_DO_" || it.second.empty())
|
|
|
|
continue;
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
auto &data = it.second.front();
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (!data.value.is_fully_const())
|
|
|
|
log_error("Techmap yielded config wire %s with non-const value %s.\n", RTLIL::id2cstr(data.wire->name), log_signal(data.value));
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 15:18:06 -06:00
|
|
|
techmap_wire_names.erase(it.first);
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
const char *p = data.wire->name.c_str();
|
|
|
|
const char *q = strrchr(p+1, '.');
|
|
|
|
q = q ? q : p+1;
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-07-30 15:04:30 -05:00
|
|
|
std::string cmd_string = data.value.as_const().decode_string();
|
|
|
|
|
2014-08-03 05:40:43 -05:00
|
|
|
restart_eval_cmd_string:
|
2014-07-30 15:04:30 -05:00
|
|
|
if (cmd_string.rfind("CONSTMAP; ", 0) == 0)
|
|
|
|
{
|
|
|
|
cmd_string = cmd_string.substr(strlen("CONSTMAP; "));
|
|
|
|
|
|
|
|
log("Analyzing pattern of constant bits for this cell:\n");
|
2014-08-02 09:03:18 -05:00
|
|
|
RTLIL::IdString new_tpl_name = constmap_tpl_name(sigmap, tpl, cell, true);
|
2014-07-30 15:04:30 -05:00
|
|
|
log("Creating constmapped module `%s'.\n", log_id(new_tpl_name));
|
|
|
|
log_assert(map->module(new_tpl_name) == nullptr);
|
|
|
|
|
|
|
|
RTLIL::Module *new_tpl = map->addModule(new_tpl_name);
|
|
|
|
tpl->cloneInto(new_tpl);
|
|
|
|
|
|
|
|
techmap_do_cache.erase(tpl);
|
|
|
|
techmap_do_cache[new_tpl] = true;
|
|
|
|
tpl = new_tpl;
|
|
|
|
|
|
|
|
std::map<RTLIL::SigBit, RTLIL::SigBit> port_new2old_map;
|
|
|
|
std::map<RTLIL::SigBit, RTLIL::SigBit> port_connmap;
|
|
|
|
std::map<RTLIL::SigBit, RTLIL::SigBit> cellbits_to_tplbits;
|
|
|
|
|
|
|
|
for (auto wire : tpl->wires().to_vector())
|
|
|
|
{
|
|
|
|
if (!wire->port_input || wire->port_output)
|
|
|
|
continue;
|
|
|
|
|
2014-08-02 06:11:01 -05:00
|
|
|
RTLIL::IdString port_name = wire->name;
|
2014-07-30 15:04:30 -05:00
|
|
|
tpl->rename(wire, NEW_ID);
|
|
|
|
|
|
|
|
RTLIL::Wire *new_wire = tpl->addWire(port_name, wire);
|
|
|
|
wire->port_input = false;
|
2014-08-02 13:54:30 -05:00
|
|
|
wire->port_id = 0;
|
2014-07-30 15:04:30 -05:00
|
|
|
|
|
|
|
for (int i = 0; i < wire->width; i++) {
|
|
|
|
port_new2old_map[RTLIL::SigBit(new_wire, i)] = RTLIL::SigBit(wire, i);
|
|
|
|
port_connmap[RTLIL::SigBit(wire, i)] = RTLIL::SigBit(new_wire, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto conn : cell->connections())
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(conn.second); i++)
|
2014-07-30 15:04:30 -05:00
|
|
|
{
|
|
|
|
RTLIL::SigBit bit = sigmap(conn.second[i]);
|
|
|
|
RTLIL::SigBit tplbit(tpl->wire(conn.first), i);
|
|
|
|
|
|
|
|
if (bit.wire == nullptr)
|
|
|
|
{
|
|
|
|
RTLIL::SigBit oldbit = port_new2old_map.at(tplbit);
|
|
|
|
port_connmap.at(oldbit) = bit;
|
|
|
|
}
|
|
|
|
else if (cellbits_to_tplbits.count(bit))
|
|
|
|
{
|
|
|
|
RTLIL::SigBit oldbit = port_new2old_map.at(tplbit);
|
|
|
|
port_connmap.at(oldbit) = cellbits_to_tplbits[bit];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cellbits_to_tplbits[bit] = tplbit;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSig port_conn;
|
|
|
|
for (auto &it : port_connmap) {
|
|
|
|
port_conn.first.append_bit(it.first);
|
|
|
|
port_conn.second.append_bit(it.second);
|
|
|
|
}
|
|
|
|
tpl->connect(port_conn);
|
2014-08-02 14:55:13 -05:00
|
|
|
|
|
|
|
tpl->check();
|
2014-08-03 05:40:43 -05:00
|
|
|
goto restart_eval_cmd_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cmd_string.rfind("RECURSION; ", 0) == 0)
|
|
|
|
{
|
|
|
|
cmd_string = cmd_string.substr(strlen("RECURSION; "));
|
|
|
|
while (techmap_module(map, tpl, map, handled_cells, celltypeMap, true)) { }
|
|
|
|
goto restart_eval_cmd_string;
|
2014-07-30 15:04:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Pass::call_on_module(map, tpl, cmd_string);
|
|
|
|
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(!strncmp(q, "_TECHMAP_DO_", 12));
|
2014-02-16 10:16:44 -06:00
|
|
|
std::string new_name = data.wire->name.substr(0, q-p) + "_TECHMAP_DONE_" + data.wire->name.substr(q-p+12);
|
2014-07-26 18:49:51 -05:00
|
|
|
while (tpl->wires_.count(new_name))
|
2014-02-16 10:16:44 -06:00
|
|
|
new_name += "_";
|
2014-07-30 15:04:30 -05:00
|
|
|
tpl->rename(data.wire->name, new_name);
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
keep_running = true;
|
|
|
|
break;
|
|
|
|
}
|
2013-11-23 08:58:06 -06:00
|
|
|
}
|
2013-03-28 04:12:50 -05:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
TechmapWires twd = techmap_find_special_wires(tpl);
|
|
|
|
for (auto &it : twd) {
|
|
|
|
if (it.first != "_TECHMAP_FAIL_" && it.first.substr(0, 12) != "_TECHMAP_DO_" && it.first.substr(0, 14) != "_TECHMAP_DONE_")
|
|
|
|
log_error("Techmap yielded unknown config wire %s.\n", it.first.c_str());
|
|
|
|
if (techmap_do_cache[tpl])
|
|
|
|
for (auto &it2 : it.second)
|
|
|
|
if (!it2.value.is_fully_const())
|
|
|
|
log_error("Techmap yielded config wire %s with non-const value %s.\n", RTLIL::id2cstr(it2.wire->name), log_signal(it2.value));
|
2014-02-16 15:18:06 -06:00
|
|
|
techmap_wire_names.erase(it.first);
|
2014-02-16 10:16:44 -06:00
|
|
|
}
|
2014-02-16 15:18:06 -06:00
|
|
|
|
|
|
|
for (auto &it : techmap_wire_names)
|
|
|
|
log_error("Techmap special wire %s disappeared. This is considered a fatal error.\n", RTLIL::id2cstr(it));
|
2014-08-03 05:40:43 -05:00
|
|
|
|
|
|
|
if (recursive_mode) {
|
|
|
|
if (log_continue) {
|
|
|
|
log_header("Continuing TECHMAP pass.\n");
|
|
|
|
log_continue = false;
|
|
|
|
}
|
|
|
|
while (techmap_module(map, tpl, map, handled_cells, celltypeMap, true)) { }
|
|
|
|
}
|
2013-11-23 08:58:06 -06:00
|
|
|
}
|
2013-08-09 08:20:22 -05:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (techmap_do_cache.at(tpl) == false)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (log_continue) {
|
|
|
|
log_header("Continuing TECHMAP pass.\n");
|
|
|
|
log_continue = false;
|
|
|
|
}
|
2013-11-23 08:58:06 -06:00
|
|
|
|
2014-08-03 05:40:43 -05:00
|
|
|
if (extern_mode && !in_recursion)
|
2014-07-27 14:13:23 -05:00
|
|
|
{
|
|
|
|
std::string m_name = stringf("$extern:%s", log_id(tpl));
|
|
|
|
|
|
|
|
if (!design->module(m_name))
|
|
|
|
{
|
|
|
|
RTLIL::Module *m = design->addModule(m_name);
|
|
|
|
tpl->cloneInto(m);
|
|
|
|
|
|
|
|
for (auto cell : m->cells()) {
|
|
|
|
if (cell->type.substr(0, 2) == "\\$")
|
|
|
|
cell->type = cell->type.substr(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_queue.insert(m);
|
|
|
|
}
|
|
|
|
|
2014-08-03 05:40:43 -05:00
|
|
|
log("%s %s.%s to imported %s.\n", mapmsg_prefix.c_str(), log_id(module), log_id(cell), log_id(m_name));
|
2014-07-27 14:13:23 -05:00
|
|
|
cell->type = m_name;
|
|
|
|
cell->parameters.clear();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-03 05:40:43 -05:00
|
|
|
log("%s %s.%s using %s.\n", mapmsg_prefix.c_str(), log_id(module), log_id(cell), log_id(tpl));
|
2014-07-30 19:21:41 -05:00
|
|
|
techmap_module_worker(design, module, cell, tpl);
|
2014-07-27 14:13:23 -05:00
|
|
|
cell = NULL;
|
|
|
|
}
|
2014-02-16 10:16:44 -06:00
|
|
|
did_something = true;
|
2014-07-30 19:21:41 -05:00
|
|
|
mapped_cell = true;
|
2014-02-16 10:16:44 -06:00
|
|
|
break;
|
2013-11-23 08:58:06 -06:00
|
|
|
}
|
|
|
|
|
2014-07-30 19:21:41 -05:00
|
|
|
if (assert_mode && !mapped_cell)
|
|
|
|
log_error("(ASSERT MODE) Failed to map cell %s.%s (%s).\n", log_id(module), log_id(cell), log_id(cell->type));
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
handled_cells.insert(cell);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
if (log_continue) {
|
|
|
|
log_header("Continuing TECHMAP pass.\n");
|
|
|
|
log_continue = false;
|
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
return did_something;
|
2013-08-09 08:20:22 -05:00
|
|
|
}
|
2014-02-16 10:16:44 -06:00
|
|
|
};
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
struct TechmapPass : public Pass {
|
2014-02-06 06:10:06 -06:00
|
|
|
TechmapPass() : Pass("techmap", "generic technology mapper") { }
|
2013-02-28 17:36:19 -06:00
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
|
|
|
log(" techmap [-map filename] [selection]\n");
|
|
|
|
log("\n");
|
2013-03-17 16:02:30 -05:00
|
|
|
log("This pass implements a very simple technology mapper that replaces cells in\n");
|
2013-02-28 17:36:19 -06:00
|
|
|
log("the design with implementations given in form of a verilog or ilang source\n");
|
|
|
|
log("file.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -map filename\n");
|
|
|
|
log(" the library of cell implementations to be used.\n");
|
|
|
|
log(" without this parameter a builtin library is used that\n");
|
2013-03-17 16:02:30 -05:00
|
|
|
log(" transforms the internal RTL cells to the internal gate\n");
|
2013-02-28 17:36:19 -06:00
|
|
|
log(" library.\n");
|
|
|
|
log("\n");
|
2014-08-14 19:00:53 -05:00
|
|
|
log(" -map %%<design-name>\n");
|
|
|
|
log(" like -map above, but with an in-memory design instead of a file.\n");
|
|
|
|
log("\n");
|
2013-11-24 12:50:25 -06:00
|
|
|
log(" -share_map filename\n");
|
|
|
|
log(" like -map, but look for the file in the share directory (where the\n");
|
|
|
|
log(" yosys data files are). this is mainly used internally when techmap\n");
|
|
|
|
log(" is called from other commands.\n");
|
|
|
|
log("\n");
|
2014-07-27 14:13:23 -05:00
|
|
|
log(" -extern\n");
|
|
|
|
log(" load the cell implementations as separate modules into the design\n");
|
|
|
|
log(" instead of inlining them.\n");
|
|
|
|
log("\n");
|
2014-03-06 05:15:17 -06:00
|
|
|
log(" -max_iter <number>\n");
|
|
|
|
log(" only run the specified number of iterations.\n");
|
|
|
|
log("\n");
|
2014-08-03 05:40:43 -05:00
|
|
|
log(" -recursive\n");
|
|
|
|
log(" instead of the iterative breadth-first algorithm use a recursive\n");
|
|
|
|
log(" depth-first algorithm. both methods should yield equivialent results,\n");
|
|
|
|
log(" but may differ in performance.\n");
|
|
|
|
log("\n");
|
2014-09-01 08:36:29 -05:00
|
|
|
log(" -autoproc\n");
|
|
|
|
log(" Automatically call \"proc\" on implementations that contain processes.\n");
|
|
|
|
log("\n");
|
2014-07-30 19:21:41 -05:00
|
|
|
log(" -assert\n");
|
|
|
|
log(" this option will cause techmap to exit with an error if it can't map\n");
|
|
|
|
log(" a selected cell. only cell types that end on an underscore are accepted\n");
|
|
|
|
log(" as final cell types by this mode.\n");
|
|
|
|
log("\n");
|
2013-11-24 13:04:48 -06:00
|
|
|
log(" -D <define>, -I <incdir>\n");
|
|
|
|
log(" this options are passed as-is to the verilog frontend for loading the\n");
|
|
|
|
log(" map file. Note that the verilog frontend is also called with the\n");
|
|
|
|
log(" '-ignore_redef' option set.\n");
|
|
|
|
log("\n");
|
2013-11-23 08:58:06 -06:00
|
|
|
log("When a module in the map file has the 'techmap_celltype' attribute set, it will\n");
|
2013-11-24 16:31:14 -06:00
|
|
|
log("match cells with a type that match the text value of this attribute. Otherwise\n");
|
|
|
|
log("the module name will be used to match the cell.\n");
|
|
|
|
log("\n");
|
|
|
|
log("When a module in the map file has the 'techmap_simplemap' attribute set, techmap\n");
|
|
|
|
log("will use 'simplemap' (see 'help simplemap') to map cells matching the module.\n");
|
2013-08-09 08:20:22 -05:00
|
|
|
log("\n");
|
2014-09-07 11:23:37 -05:00
|
|
|
log("When a module in the map file has the 'techmap_maccmap' attribute set, techmap\n");
|
|
|
|
log("will use 'maccmap' (see 'help maccmap') to map cells matching the module.\n");
|
|
|
|
log("\n");
|
2014-09-14 07:49:26 -05:00
|
|
|
log("When a module in the map file has the 'techmap_wrap' attribute set, techmap\n");
|
|
|
|
log("will create a wrapper for the cell and then run the command string that the\n");
|
|
|
|
log("attribute is set to on the wrapper module.\n");
|
|
|
|
log("\n");
|
2013-11-23 08:58:06 -06:00
|
|
|
log("All wires in the modules from the map file matching the pattern _TECHMAP_*\n");
|
|
|
|
log("or *._TECHMAP_* are special wires that are used to pass instructions from\n");
|
2013-11-24 16:31:14 -06:00
|
|
|
log("the mapping module to the techmap command. At the moment the following special\n");
|
2013-11-23 08:58:06 -06:00
|
|
|
log("wires are supported:\n");
|
2013-03-28 04:12:50 -05:00
|
|
|
log("\n");
|
2013-11-23 08:58:06 -06:00
|
|
|
log(" _TECHMAP_FAIL_\n");
|
|
|
|
log(" When this wire is set to a non-zero constant value, techmap will not\n");
|
|
|
|
log(" use this module and instead try the next module with a matching\n");
|
|
|
|
log(" 'techmap_celltype' attribute.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" When such a wire exists but does not have a constant value after all\n");
|
|
|
|
log(" _TECHMAP_DO_* commands have been executed, an error is generated.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" _TECHMAP_DO_*\n");
|
|
|
|
log(" This wires are evaluated in alphabetical order. The constant text value\n");
|
|
|
|
log(" of this wire is a yosys command (or sequence of commands) that is run\n");
|
|
|
|
log(" by techmap on the module. A common use case is to run 'proc' on modules\n");
|
|
|
|
log(" that are written using always-statements.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" When such a wire has a non-constant value at the time it is to be\n");
|
|
|
|
log(" evaluated, an error is produced. That means it is possible for such a\n");
|
|
|
|
log(" wire to start out as non-constant and evaluate to a constant value\n");
|
|
|
|
log(" during processing of other _TECHMAP_DO_* commands.\n");
|
2013-04-27 11:30:29 -05:00
|
|
|
log("\n");
|
2014-07-30 15:04:30 -05:00
|
|
|
log(" A _TECHMAP_DO_* command may start with the special token 'CONSTMAP; '.\n");
|
|
|
|
log(" in this case techmap will create a copy for each distinct configuration\n");
|
|
|
|
log(" of constant inputs and shorted inputs at this point and import the\n");
|
|
|
|
log(" constant and connected bits into the map module. All further commands\n");
|
|
|
|
log(" are executed in this copy. This is a very convenient way of creating\n");
|
|
|
|
log(" optimizied specializations of techmap modules without using the special\n");
|
|
|
|
log(" parameters described below.\n");
|
|
|
|
log("\n");
|
2014-08-03 05:40:43 -05:00
|
|
|
log(" A _TECHMAP_DO_* command may start with the special token 'RECURSION; '.\n");
|
|
|
|
log(" then techmap will recursively replace the cells in the module with their\n");
|
|
|
|
log(" implementation. This is not affected by the -max_iter option.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" It is possible to combine both prefixes to 'RECURSION; CONSTMAP; '.\n");
|
|
|
|
log("\n");
|
2013-11-24 16:31:14 -06:00
|
|
|
log("In addition to this special wires, techmap also supports special parameters in\n");
|
|
|
|
log("modules in the map file:\n");
|
|
|
|
log("\n");
|
|
|
|
log(" _TECHMAP_CELLTYPE_\n");
|
|
|
|
log(" When a parameter with this name exists, it will be set to the type name\n");
|
|
|
|
log(" of the cell that matches the module.\n");
|
|
|
|
log("\n");
|
2014-02-16 14:58:59 -06:00
|
|
|
log(" _TECHMAP_CONSTMSK_<port-name>_\n");
|
|
|
|
log(" _TECHMAP_CONSTVAL_<port-name>_\n");
|
|
|
|
log(" When this pair of parameters is available in a module for a port, then\n");
|
|
|
|
log(" former has a 1-bit for each constant input bit and the latter has the\n");
|
|
|
|
log(" value for this bit. The unused bits of the latter are set to undef (x).\n");
|
|
|
|
log("\n");
|
2014-02-18 12:23:32 -06:00
|
|
|
log(" _TECHMAP_BITS_CONNMAP_\n");
|
|
|
|
log(" _TECHMAP_CONNMAP_<port-name>_\n");
|
|
|
|
log(" For an N-bit port, the _TECHMAP_CONNMAP_<port-name>_ parameter, if it\n");
|
|
|
|
log(" exists, will be set to an N*_TECHMAP_BITS_CONNMAP_ bit vector containing\n");
|
|
|
|
log(" N words (of _TECHMAP_BITS_CONNMAP_ bits each) that assign each single\n");
|
|
|
|
log(" bit driver a unique id. The values 0-3 are reserved for 0, 1, x, and z.\n");
|
|
|
|
log(" This can be used to detect shorted inputs.\n");
|
|
|
|
log("\n");
|
2013-04-27 11:30:29 -05:00
|
|
|
log("When a module in the map file has a parameter where the according cell in the\n");
|
|
|
|
log("design has a port, the module from the map file is only used if the port in\n");
|
|
|
|
log("the design is connected to a constant value. The parameter is then set to the\n");
|
|
|
|
log("constant value.\n");
|
2013-03-28 04:12:50 -05:00
|
|
|
log("\n");
|
2014-02-20 16:42:07 -06:00
|
|
|
log("A cell with the name _TECHMAP_REPLACE_ in the map file will inherit the name\n");
|
|
|
|
log("of the cell that is beeing replaced.\n");
|
|
|
|
log("\n");
|
2013-02-28 17:36:19 -06:00
|
|
|
log("See 'help extract' for a pass that does the opposite thing.\n");
|
|
|
|
log("\n");
|
2013-04-27 11:30:29 -05:00
|
|
|
log("See 'help flatten' for a pass that does flatten the design (which is\n");
|
|
|
|
log("esentially techmap but using the design itself as map library).\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)
|
|
|
|
{
|
|
|
|
log_header("Executing TECHMAP pass (map to technology primitives).\n");
|
|
|
|
log_push();
|
|
|
|
|
2014-07-30 19:21:41 -05:00
|
|
|
TechmapWorker worker;
|
|
|
|
simplemap_get_mappers(worker.simplemap_mappers);
|
|
|
|
|
2013-11-23 08:58:06 -06:00
|
|
|
std::vector<std::string> map_files;
|
2013-11-24 13:04:48 -06:00
|
|
|
std::string verilog_frontend = "verilog -ignore_redef";
|
2014-03-06 05:15:17 -06:00
|
|
|
int max_iter = -1;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
|
|
|
if (args[argidx] == "-map" && argidx+1 < args.size()) {
|
2014-09-01 08:36:29 -05:00
|
|
|
if (args[argidx+1].substr(0, 2) == "+/")
|
|
|
|
map_files.push_back(proc_share_dirname() + args[++argidx].substr(2));
|
|
|
|
else
|
|
|
|
map_files.push_back(args[++argidx]);
|
2013-08-09 08:20:22 -05:00
|
|
|
continue;
|
|
|
|
}
|
2013-11-24 12:50:25 -06:00
|
|
|
if (args[argidx] == "-share_map" && argidx+1 < args.size()) {
|
2014-08-23 08:32:00 -05:00
|
|
|
map_files.push_back(proc_share_dirname() + args[++argidx]);
|
2013-11-24 12:50:25 -06:00
|
|
|
continue;
|
|
|
|
}
|
2014-03-06 05:15:17 -06:00
|
|
|
if (args[argidx] == "-max_iter" && argidx+1 < args.size()) {
|
|
|
|
max_iter = atoi(args[++argidx].c_str());
|
|
|
|
continue;
|
|
|
|
}
|
2013-11-24 13:04:48 -06:00
|
|
|
if (args[argidx] == "-D" && argidx+1 < args.size()) {
|
|
|
|
verilog_frontend += " -D " + args[++argidx];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-I" && argidx+1 < args.size()) {
|
|
|
|
verilog_frontend += " -I " + args[++argidx];
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-30 19:21:41 -05:00
|
|
|
if (args[argidx] == "-assert") {
|
|
|
|
worker.assert_mode = true;
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-27 14:13:23 -05:00
|
|
|
if (args[argidx] == "-extern") {
|
2014-07-30 19:21:41 -05:00
|
|
|
worker.extern_mode = true;
|
2014-07-27 14:13:23 -05:00
|
|
|
continue;
|
|
|
|
}
|
2014-08-03 05:40:43 -05:00
|
|
|
if (args[argidx] == "-recursive") {
|
|
|
|
worker.recursive_mode = true;
|
|
|
|
continue;
|
|
|
|
}
|
2014-09-01 08:36:29 -05:00
|
|
|
if (args[argidx] == "-autoproc") {
|
|
|
|
worker.autoproc_mode = true;
|
|
|
|
continue;
|
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra_args(args, argidx, design);
|
|
|
|
|
2013-02-28 17:36:19 -06:00
|
|
|
RTLIL::Design *map = new RTLIL::Design;
|
2013-11-23 08:58:06 -06:00
|
|
|
if (map_files.empty()) {
|
2014-08-23 08:03:55 -05:00
|
|
|
std::istringstream f(stdcells_code);
|
|
|
|
Frontend::frontend_call(map, &f, "<techmap.v>", verilog_frontend);
|
2013-11-23 08:58:06 -06:00
|
|
|
} else
|
2014-07-29 09:06:27 -05:00
|
|
|
for (auto &fn : map_files)
|
|
|
|
if (fn.substr(0, 1) == "%") {
|
|
|
|
if (!saved_designs.count(fn.substr(1))) {
|
|
|
|
delete map;
|
|
|
|
log_cmd_error("Can't saved design `%s'.\n", fn.c_str()+1);
|
|
|
|
}
|
|
|
|
for (auto mod : saved_designs.at(fn.substr(1))->modules())
|
|
|
|
if (!map->has(mod->name))
|
|
|
|
map->add(mod->clone());
|
|
|
|
} else {
|
2014-08-23 08:03:55 -05:00
|
|
|
std::ifstream f;
|
|
|
|
f.open(fn.c_str());
|
|
|
|
if (f.fail())
|
2014-07-29 09:06:27 -05:00
|
|
|
log_cmd_error("Can't open map file `%s'\n", fn.c_str());
|
2014-08-23 08:03:55 -05:00
|
|
|
Frontend::frontend_call(map, &f, fn, (fn.size() > 3 && fn.substr(fn.size()-3) == ".il") ? "ilang" : verilog_frontend);
|
2014-07-29 09:06:27 -05:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-12-26 03:53:21 -06:00
|
|
|
dict<RTLIL::IdString, RTLIL::Module*> modules_new;
|
2014-07-27 03:18:00 -05:00
|
|
|
for (auto &it : map->modules_) {
|
2013-01-05 04:13:26 -06:00
|
|
|
if (it.first.substr(0, 2) == "\\$")
|
|
|
|
it.second->name = it.first.substr(1);
|
|
|
|
modules_new[it.second->name] = it.second;
|
|
|
|
}
|
2014-07-27 03:18:00 -05:00
|
|
|
map->modules_.swap(modules_new);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-08-14 19:40:46 -05:00
|
|
|
std::map<RTLIL::IdString, std::set<RTLIL::IdString, RTLIL::sort_by_id_str>> celltypeMap;
|
2014-07-27 03:18:00 -05:00
|
|
|
for (auto &it : map->modules_) {
|
2013-12-04 07:14:05 -06:00
|
|
|
if (it.second->attributes.count("\\techmap_celltype") && !it.second->attributes.at("\\techmap_celltype").bits.empty()) {
|
|
|
|
char *p = strdup(it.second->attributes.at("\\techmap_celltype").decode_string().c_str());
|
2013-11-24 13:29:07 -06:00
|
|
|
for (char *q = strtok(p, " \t\r\n"); q; q = strtok(NULL, " \t\r\n"))
|
|
|
|
celltypeMap[RTLIL::escape_id(q)].insert(it.first);
|
|
|
|
free(p);
|
2013-03-28 04:12:50 -05:00
|
|
|
} else
|
|
|
|
celltypeMap[it.first].insert(it.first);
|
|
|
|
}
|
|
|
|
|
2014-08-02 09:03:18 -05:00
|
|
|
for (auto module : design->modules())
|
|
|
|
worker.module_queue.insert(module);
|
|
|
|
|
2014-07-27 14:13:23 -05:00
|
|
|
while (!worker.module_queue.empty())
|
|
|
|
{
|
|
|
|
RTLIL::Module *module = *worker.module_queue.begin();
|
|
|
|
worker.module_queue.erase(module);
|
|
|
|
|
2014-07-27 09:19:24 -05:00
|
|
|
bool did_something = true;
|
|
|
|
std::set<RTLIL::Cell*> handled_cells;
|
|
|
|
while (did_something) {
|
|
|
|
did_something = false;
|
2014-08-03 05:40:43 -05:00
|
|
|
if (worker.techmap_module(design, module, map, handled_cells, celltypeMap, false))
|
2014-07-27 09:19:24 -05:00
|
|
|
did_something = true;
|
|
|
|
if (did_something)
|
|
|
|
module->check();
|
|
|
|
if (max_iter > 0 && --max_iter == 0)
|
|
|
|
break;
|
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
log("No more expansions possible.\n");
|
|
|
|
delete map;
|
2014-02-16 10:16:44 -06:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
log_pop();
|
|
|
|
}
|
|
|
|
} TechmapPass;
|
|
|
|
|
2013-04-26 07:40:45 -05:00
|
|
|
struct FlattenPass : public Pass {
|
|
|
|
FlattenPass() : Pass("flatten", "flatten design") { }
|
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
|
|
|
log(" flatten [selection]\n");
|
|
|
|
log("\n");
|
|
|
|
log("This pass flattens the design by replacing cells by their implementation. This\n");
|
|
|
|
log("pass is very simmilar to the 'techmap' pass. The only difference is that this\n");
|
|
|
|
log("pass is using the current design as mapping library.\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
log_header("Executing FLATTEN pass (flatten design).\n");
|
|
|
|
log_push();
|
|
|
|
|
|
|
|
extra_args(args, 1, design);
|
|
|
|
|
2014-02-16 10:16:44 -06:00
|
|
|
TechmapWorker worker;
|
2014-07-30 19:21:41 -05:00
|
|
|
worker.flatten_mode = true;
|
2014-02-16 10:16:44 -06:00
|
|
|
|
2014-08-14 19:40:46 -05:00
|
|
|
std::map<RTLIL::IdString, std::set<RTLIL::IdString, RTLIL::sort_by_id_str>> celltypeMap;
|
2014-07-27 03:18:00 -05:00
|
|
|
for (auto &it : design->modules_)
|
2013-04-26 07:40:45 -05:00
|
|
|
celltypeMap[it.first].insert(it.first);
|
|
|
|
|
2013-11-23 22:03:43 -06:00
|
|
|
RTLIL::Module *top_mod = NULL;
|
2013-11-24 07:10:46 -06:00
|
|
|
if (design->full_selection())
|
2014-07-27 03:41:42 -05:00
|
|
|
for (auto mod : design->modules())
|
|
|
|
if (mod->get_bool_attribute("\\top"))
|
|
|
|
top_mod = mod;
|
2013-11-23 22:03:43 -06:00
|
|
|
|
2013-04-26 07:40:45 -05:00
|
|
|
bool did_something = true;
|
|
|
|
std::set<RTLIL::Cell*> handled_cells;
|
|
|
|
while (did_something) {
|
|
|
|
did_something = false;
|
2013-11-23 22:03:43 -06:00
|
|
|
if (top_mod != NULL) {
|
2014-08-03 05:40:43 -05:00
|
|
|
if (worker.techmap_module(design, top_mod, design, handled_cells, celltypeMap, false))
|
2013-04-26 07:40:45 -05:00
|
|
|
did_something = true;
|
2013-11-23 22:03:43 -06:00
|
|
|
} else {
|
2015-02-21 08:01:13 -06:00
|
|
|
for (auto mod : vector<Module*>(design->modules()))
|
2014-08-03 05:40:43 -05:00
|
|
|
if (worker.techmap_module(design, mod, design, handled_cells, celltypeMap, false))
|
2013-11-23 22:03:43 -06:00
|
|
|
did_something = true;
|
|
|
|
}
|
2013-04-26 07:40:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
log("No more expansions possible.\n");
|
2013-11-23 22:03:43 -06:00
|
|
|
|
|
|
|
if (top_mod != NULL) {
|
2014-12-26 03:53:21 -06:00
|
|
|
dict<RTLIL::IdString, RTLIL::Module*> new_modules;
|
2015-02-21 08:01:13 -06:00
|
|
|
for (auto mod : vector<Module*>(design->modules()))
|
2014-07-27 03:41:42 -05:00
|
|
|
if (mod == top_mod || mod->get_bool_attribute("\\blackbox")) {
|
|
|
|
new_modules[mod->name] = mod;
|
2013-11-23 22:03:43 -06:00
|
|
|
} else {
|
2014-07-27 03:41:42 -05:00
|
|
|
log("Deleting now unused module %s.\n", log_id(mod));
|
|
|
|
delete mod;
|
2013-11-23 22:03:43 -06:00
|
|
|
}
|
2014-07-27 03:18:00 -05:00
|
|
|
design->modules_.swap(new_modules);
|
2013-11-23 22:03:43 -06:00
|
|
|
}
|
|
|
|
|
2013-04-26 07:40:45 -05:00
|
|
|
log_pop();
|
|
|
|
}
|
|
|
|
} FlattenPass;
|
2013-11-23 22:03:43 -06:00
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
PRIVATE_NAMESPACE_END
|