2014-07-19 13:54:32 -05:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2014-07-19 13:54:32 -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
|
|
|
*
|
2014-07-19 13:54:32 -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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-07-31 16:30:18 -05:00
|
|
|
#include "kernel/yosys.h"
|
2014-07-19 13:54:32 -05:00
|
|
|
#include "kernel/satgen.h"
|
|
|
|
#include "kernel/sigtools.h"
|
2014-07-31 16:30:18 -05:00
|
|
|
#include "kernel/modtools.h"
|
2014-09-21 05:57:33 -05:00
|
|
|
#include "kernel/utils.h"
|
2014-10-03 05:58:40 -05:00
|
|
|
#include "kernel/macc.h"
|
2014-07-31 16:30:18 -05:00
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
USING_YOSYS_NAMESPACE
|
2014-07-31 16:30:18 -05:00
|
|
|
PRIVATE_NAMESPACE_BEGIN
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-11-07 08:21:03 -06:00
|
|
|
typedef RTLIL::IdString::compare_ptr_by_name<RTLIL::Cell> cell_ptr_cmp;
|
2014-12-28 19:01:42 -06:00
|
|
|
typedef std::pair<RTLIL::SigSpec, RTLIL::Const> ssc_pair_t;
|
2014-11-07 08:21:03 -06:00
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
struct ShareWorkerConfig
|
|
|
|
{
|
2014-09-21 08:13:06 -05:00
|
|
|
int limit;
|
2014-07-19 20:03:04 -05:00
|
|
|
bool opt_force;
|
|
|
|
bool opt_aggressive;
|
|
|
|
bool opt_fast;
|
2014-12-28 19:01:42 -06:00
|
|
|
pool<RTLIL::IdString> generic_uni_ops, generic_bin_ops, generic_cbin_ops, generic_other_ops;
|
2014-07-19 13:54:32 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ShareWorker
|
|
|
|
{
|
|
|
|
ShareWorkerConfig config;
|
2014-12-28 17:42:48 -06:00
|
|
|
pool<RTLIL::IdString> generic_ops;
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
RTLIL::Design *design;
|
|
|
|
RTLIL::Module *module;
|
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
CellTypes fwd_ct, cone_ct;
|
2014-07-19 13:54:32 -05:00
|
|
|
ModWalker modwalker;
|
2014-09-21 12:36:56 -05:00
|
|
|
ModIndex mi;
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
pool<RTLIL::Cell*> cells_to_remove;
|
|
|
|
pool<RTLIL::Cell*> recursion_state;
|
2014-07-20 04:41:57 -05:00
|
|
|
|
2014-09-21 07:51:07 -05:00
|
|
|
SigMap topo_sigmap;
|
2014-11-07 08:21:03 -06:00
|
|
|
std::map<RTLIL::Cell*, std::set<RTLIL::Cell*, cell_ptr_cmp>, cell_ptr_cmp> topo_cell_drivers;
|
|
|
|
std::map<RTLIL::SigBit, std::set<RTLIL::Cell*, cell_ptr_cmp>> topo_bit_drivers;
|
2014-09-21 06:52:39 -05:00
|
|
|
|
2014-10-03 12:01:24 -05:00
|
|
|
std::vector<std::pair<RTLIL::SigBit, RTLIL::SigBit>> exclusive_ctrls;
|
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
// Find terminal bits -- i.e. bits that do not (exclusively) feed into a mux tree
|
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
pool<RTLIL::SigBit> terminal_bits;
|
2014-07-20 03:36:46 -05:00
|
|
|
|
|
|
|
void find_terminal_bits()
|
|
|
|
{
|
2014-12-28 19:01:42 -06:00
|
|
|
pool<RTLIL::SigBit> queue_bits;
|
2014-12-28 17:42:48 -06:00
|
|
|
pool<RTLIL::Cell*> visited_cells;
|
2014-07-20 03:36:46 -05:00
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
queue_bits.insert(modwalker.signal_outputs.begin(), modwalker.signal_outputs.end());
|
2014-07-20 03:36:46 -05:00
|
|
|
|
2014-07-26 18:51:45 -05:00
|
|
|
for (auto &it : module->cells_)
|
2014-07-20 13:44:14 -05:00
|
|
|
if (!fwd_ct.cell_known(it.second->type)) {
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<RTLIL::SigBit> &bits = modwalker.cell_inputs[it.second];
|
2014-07-20 13:44:14 -05:00
|
|
|
queue_bits.insert(bits.begin(), bits.end());
|
2014-07-20 03:36:46 -05:00
|
|
|
}
|
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
terminal_bits.insert(queue_bits.begin(), queue_bits.end());
|
2014-07-20 03:36:46 -05:00
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
while (!queue_bits.empty())
|
2014-07-20 03:36:46 -05:00
|
|
|
{
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<ModWalker::PortBit> portbits;
|
2014-07-20 13:44:14 -05:00
|
|
|
modwalker.get_drivers(portbits, queue_bits);
|
|
|
|
queue_bits.clear();
|
2014-07-20 03:36:46 -05:00
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
for (auto &pbit : portbits) {
|
|
|
|
if (pbit.cell->type == "$mux" || pbit.cell->type == "$pmux") {
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<RTLIL::SigBit> bits = modwalker.sigmap(pbit.cell->getPort("\\S")).to_sigbit_pool();
|
2014-07-20 03:36:46 -05:00
|
|
|
terminal_bits.insert(bits.begin(), bits.end());
|
2014-07-20 13:44:14 -05:00
|
|
|
queue_bits.insert(bits.begin(), bits.end());
|
2014-07-20 03:36:46 -05:00
|
|
|
visited_cells.insert(pbit.cell);
|
|
|
|
}
|
|
|
|
if (fwd_ct.cell_known(pbit.cell->type) && visited_cells.count(pbit.cell) == 0) {
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<RTLIL::SigBit> &bits = modwalker.cell_inputs[pbit.cell];
|
2014-07-20 03:36:46 -05:00
|
|
|
terminal_bits.insert(bits.begin(), bits.end());
|
2014-07-20 13:44:14 -05:00
|
|
|
queue_bits.insert(bits.begin(), bits.end());
|
2014-07-20 03:36:46 -05:00
|
|
|
visited_cells.insert(pbit.cell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-03 05:58:40 -05:00
|
|
|
// ---------------------------------------------------
|
|
|
|
// Code for sharing and comparing MACC cells
|
|
|
|
// ---------------------------------------------------
|
|
|
|
|
|
|
|
static int bits_macc_port(const Macc::port_t &p, int width)
|
|
|
|
{
|
2014-10-10 09:59:44 -05:00
|
|
|
if (GetSize(p.in_a) == 0 || GetSize(p.in_b) == 0)
|
|
|
|
return std::min(std::max(GetSize(p.in_a), GetSize(p.in_b)), width);
|
|
|
|
return std::min(GetSize(p.in_a), width) * std::min(GetSize(p.in_b), width) / 2;
|
2014-10-03 05:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int bits_macc(const Macc &m, int width)
|
|
|
|
{
|
2014-10-10 09:59:44 -05:00
|
|
|
int bits = GetSize(m.bit_ports);
|
2014-10-03 05:58:40 -05:00
|
|
|
for (auto &p : m.ports)
|
|
|
|
bits += bits_macc_port(p, width);
|
|
|
|
return bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int bits_macc(RTLIL::Cell *c)
|
|
|
|
{
|
|
|
|
Macc m(c);
|
2014-10-10 09:59:44 -05:00
|
|
|
int width = GetSize(c->getPort("\\Y"));
|
2014-10-03 05:58:40 -05:00
|
|
|
return bits_macc(m, width);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool cmp_macc_ports(const Macc::port_t &p1, const Macc::port_t &p2)
|
|
|
|
{
|
2014-10-10 09:59:44 -05:00
|
|
|
bool mul1 = GetSize(p1.in_a) && GetSize(p1.in_b);
|
|
|
|
bool mul2 = GetSize(p2.in_a) && GetSize(p2.in_b);
|
2014-10-03 05:58:40 -05:00
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
int w1 = mul1 ? GetSize(p1.in_a) * GetSize(p1.in_b) : GetSize(p1.in_a) + GetSize(p1.in_b);
|
|
|
|
int w2 = mul2 ? GetSize(p2.in_a) * GetSize(p2.in_b) : GetSize(p2.in_a) + GetSize(p2.in_b);
|
2014-10-03 05:58:40 -05:00
|
|
|
|
|
|
|
if (mul1 != mul2)
|
|
|
|
return mul1;
|
|
|
|
|
|
|
|
if (w1 != w2)
|
|
|
|
return w1 > w2;
|
|
|
|
|
|
|
|
if (p1.is_signed != p2.is_signed)
|
|
|
|
return p1.is_signed < p2.is_signed;
|
|
|
|
|
|
|
|
if (p1.do_subtract != p2.do_subtract)
|
|
|
|
return p1.do_subtract < p2.do_subtract;
|
|
|
|
|
|
|
|
if (p1.in_a != p2.in_a)
|
|
|
|
return p1.in_a < p2.in_a;
|
|
|
|
|
|
|
|
if (p1.in_b != p2.in_b)
|
|
|
|
return p1.in_b < p2.in_b;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int share_macc_ports(Macc::port_t &p1, Macc::port_t &p2, int w1, int w2,
|
2014-12-28 17:42:48 -06:00
|
|
|
RTLIL::SigSpec act = RTLIL::SigSpec(), Macc *supermacc = nullptr, pool<RTLIL::Cell*> *supercell_aux = nullptr)
|
2014-10-03 05:58:40 -05:00
|
|
|
{
|
|
|
|
if (p1.do_subtract != p2.do_subtract)
|
|
|
|
return -1;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
bool mul1 = GetSize(p1.in_a) && GetSize(p1.in_b);
|
|
|
|
bool mul2 = GetSize(p2.in_a) && GetSize(p2.in_b);
|
2014-10-03 05:58:40 -05:00
|
|
|
|
|
|
|
if (mul1 != mul2)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
bool force_signed = false, force_not_signed = false;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if ((GetSize(p1.in_a) && GetSize(p1.in_a) < w1) || (GetSize(p1.in_b) && GetSize(p1.in_b) < w1)) {
|
2014-10-03 05:58:40 -05:00
|
|
|
if (p1.is_signed)
|
|
|
|
force_signed = true;
|
|
|
|
else
|
|
|
|
force_not_signed = true;
|
|
|
|
}
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if ((GetSize(p2.in_a) && GetSize(p2.in_a) < w2) || (GetSize(p2.in_b) && GetSize(p2.in_b) < w2)) {
|
2014-10-03 05:58:40 -05:00
|
|
|
if (p2.is_signed)
|
|
|
|
force_signed = true;
|
|
|
|
else
|
|
|
|
force_not_signed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (force_signed && force_not_signed)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (supermacc)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig_a1 = p1.in_a, sig_b1 = p1.in_b;
|
|
|
|
RTLIL::SigSpec sig_a2 = p2.in_a, sig_b2 = p2.in_b;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
RTLIL::SigSpec sig_a = GetSize(sig_a1) > GetSize(sig_a2) ? sig_a1 : sig_a2;
|
|
|
|
RTLIL::SigSpec sig_b = GetSize(sig_b1) > GetSize(sig_b2) ? sig_b1 : sig_b2;
|
2014-10-03 05:58:40 -05:00
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
sig_a1.extend_u0(GetSize(sig_a), p1.is_signed);
|
|
|
|
sig_b1.extend_u0(GetSize(sig_b), p1.is_signed);
|
2014-10-03 05:58:40 -05:00
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
sig_a2.extend_u0(GetSize(sig_a), p2.is_signed);
|
|
|
|
sig_b2.extend_u0(GetSize(sig_b), p2.is_signed);
|
2014-10-03 05:58:40 -05:00
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if (supercell_aux && GetSize(sig_a)) {
|
|
|
|
sig_a = module->addWire(NEW_ID, GetSize(sig_a));
|
2014-10-03 05:58:40 -05:00
|
|
|
supercell_aux->insert(module->addMux(NEW_ID, sig_a2, sig_a1, act, sig_a));
|
|
|
|
}
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if (supercell_aux && GetSize(sig_b)) {
|
|
|
|
sig_b = module->addWire(NEW_ID, GetSize(sig_b));
|
2014-10-03 05:58:40 -05:00
|
|
|
supercell_aux->insert(module->addMux(NEW_ID, sig_b2, sig_b1, act, sig_b));
|
|
|
|
}
|
|
|
|
|
|
|
|
Macc::port_t p;
|
|
|
|
p.in_a = sig_a;
|
|
|
|
p.in_b = sig_b;
|
|
|
|
p.is_signed = force_signed;
|
|
|
|
p.do_subtract = p1.do_subtract;
|
|
|
|
supermacc->ports.push_back(p);
|
|
|
|
}
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
int score = 1000 + abs(GetSize(p1.in_a) - GetSize(p2.in_a)) * std::max(abs(GetSize(p1.in_b) - GetSize(p2.in_b)), 1);
|
2014-10-03 05:58:40 -05:00
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < std::min(GetSize(p1.in_a), GetSize(p2.in_a)); i++)
|
2014-10-03 05:58:40 -05:00
|
|
|
if (p1.in_a[i] == p2.in_a[i] && score > 0)
|
|
|
|
score--;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < std::min(GetSize(p1.in_b), GetSize(p2.in_b)); i++)
|
2014-10-03 05:58:40 -05:00
|
|
|
if (p1.in_b[i] == p2.in_b[i] && score > 0)
|
|
|
|
score--;
|
|
|
|
|
|
|
|
return score;
|
|
|
|
}
|
|
|
|
|
|
|
|
int share_macc(RTLIL::Cell *c1, RTLIL::Cell *c2,
|
2014-12-28 17:42:48 -06:00
|
|
|
RTLIL::SigSpec act = RTLIL::SigSpec(), RTLIL::Cell *supercell = nullptr, pool<RTLIL::Cell*> *supercell_aux = nullptr)
|
2014-10-03 05:58:40 -05:00
|
|
|
{
|
|
|
|
Macc m1(c1), m2(c2), supermacc;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
int w1 = GetSize(c1->getPort("\\Y")), w2 = GetSize(c2->getPort("\\Y"));
|
2014-10-03 05:58:40 -05:00
|
|
|
int width = std::max(w1, w2);
|
|
|
|
|
|
|
|
m1.optimize(w1);
|
|
|
|
m2.optimize(w2);
|
|
|
|
|
|
|
|
std::sort(m1.ports.begin(), m1.ports.end(), cmp_macc_ports);
|
|
|
|
std::sort(m2.ports.begin(), m2.ports.end(), cmp_macc_ports);
|
|
|
|
|
|
|
|
std::set<int> m1_unmapped, m2_unmapped;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(m1.ports); i++)
|
2014-10-03 05:58:40 -05:00
|
|
|
m1_unmapped.insert(i);
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(m2.ports); i++)
|
2014-10-03 05:58:40 -05:00
|
|
|
m2_unmapped.insert(i);
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
int best_i = -1, best_j = -1, best_score = 0;
|
|
|
|
|
|
|
|
for (int i : m1_unmapped)
|
|
|
|
for (int j : m2_unmapped) {
|
|
|
|
int score = share_macc_ports(m1.ports[i], m2.ports[j], w1, w2);
|
|
|
|
if (score >= 0 && (best_i < 0 || best_score > score))
|
|
|
|
best_i = i, best_j = j, best_score = score;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (best_i >= 0) {
|
|
|
|
m1_unmapped.erase(best_i);
|
|
|
|
m2_unmapped.erase(best_j);
|
|
|
|
share_macc_ports(m1.ports[best_i], m2.ports[best_j], w1, w2, act, &supermacc, supercell_aux);
|
|
|
|
} else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i : m1_unmapped)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig_a = m1.ports[i].in_a;
|
|
|
|
RTLIL::SigSpec sig_b = m1.ports[i].in_b;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if (supercell_aux && GetSize(sig_a)) {
|
|
|
|
sig_a = module->addWire(NEW_ID, GetSize(sig_a));
|
|
|
|
supercell_aux->insert(module->addMux(NEW_ID, RTLIL::SigSpec(0, GetSize(sig_a)), m1.ports[i].in_a, act, sig_a));
|
2014-10-03 05:58:40 -05:00
|
|
|
}
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if (supercell_aux && GetSize(sig_b)) {
|
|
|
|
sig_b = module->addWire(NEW_ID, GetSize(sig_b));
|
|
|
|
supercell_aux->insert(module->addMux(NEW_ID, RTLIL::SigSpec(0, GetSize(sig_b)), m1.ports[i].in_b, act, sig_b));
|
2014-10-03 05:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Macc::port_t p;
|
|
|
|
p.in_a = sig_a;
|
|
|
|
p.in_b = sig_b;
|
|
|
|
p.is_signed = m1.ports[i].is_signed;
|
|
|
|
p.do_subtract = m1.ports[i].do_subtract;
|
|
|
|
supermacc.ports.push_back(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i : m2_unmapped)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig_a = m2.ports[i].in_a;
|
|
|
|
RTLIL::SigSpec sig_b = m2.ports[i].in_b;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if (supercell_aux && GetSize(sig_a)) {
|
|
|
|
sig_a = module->addWire(NEW_ID, GetSize(sig_a));
|
|
|
|
supercell_aux->insert(module->addMux(NEW_ID, m2.ports[i].in_a, RTLIL::SigSpec(0, GetSize(sig_a)), act, sig_a));
|
2014-10-03 05:58:40 -05:00
|
|
|
}
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
if (supercell_aux && GetSize(sig_b)) {
|
|
|
|
sig_b = module->addWire(NEW_ID, GetSize(sig_b));
|
|
|
|
supercell_aux->insert(module->addMux(NEW_ID, m2.ports[i].in_b, RTLIL::SigSpec(0, GetSize(sig_b)), act, sig_b));
|
2014-10-03 05:58:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Macc::port_t p;
|
|
|
|
p.in_a = sig_a;
|
|
|
|
p.in_b = sig_b;
|
|
|
|
p.is_signed = m2.ports[i].is_signed;
|
|
|
|
p.do_subtract = m2.ports[i].do_subtract;
|
|
|
|
supermacc.ports.push_back(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (supercell)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig_y = module->addWire(NEW_ID, width);
|
|
|
|
|
|
|
|
supercell_aux->insert(module->addPos(NEW_ID, sig_y, c1->getPort("\\Y")));
|
|
|
|
supercell_aux->insert(module->addPos(NEW_ID, sig_y, c2->getPort("\\Y")));
|
|
|
|
|
|
|
|
supercell->setParam("\\Y_WIDTH", width);
|
|
|
|
supercell->setPort("\\Y", sig_y);
|
|
|
|
|
|
|
|
supermacc.optimize(width);
|
|
|
|
supermacc.to_cell(supercell);
|
|
|
|
}
|
|
|
|
|
|
|
|
return bits_macc(supermacc, width);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
// ---------------------------------------------------
|
|
|
|
// Find shareable cells and compatible groups of cells
|
|
|
|
// ---------------------------------------------------
|
|
|
|
|
2014-12-28 17:42:48 -06:00
|
|
|
pool<RTLIL::Cell*> shareable_cells;
|
2014-07-19 13:54:32 -05:00
|
|
|
|
|
|
|
void find_shareable_cells()
|
|
|
|
{
|
2014-10-03 12:01:24 -05:00
|
|
|
for (auto cell : module->cells())
|
2014-07-19 13:54:32 -05:00
|
|
|
{
|
|
|
|
if (!design->selected(module, cell) || !modwalker.ct.cell_known(cell->type))
|
|
|
|
continue;
|
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
for (auto &bit : modwalker.cell_outputs[cell])
|
|
|
|
if (terminal_bits.count(bit))
|
|
|
|
goto not_a_muxed_cell;
|
|
|
|
|
|
|
|
if (0)
|
|
|
|
not_a_muxed_cell:
|
|
|
|
continue;
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-07-19 20:03:04 -05:00
|
|
|
if (config.opt_force) {
|
2014-07-20 03:36:46 -05:00
|
|
|
shareable_cells.insert(cell);
|
2014-07-19 13:54:32 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$memrd") {
|
2015-02-10 13:51:37 -06:00
|
|
|
if (cell->parameters.at("\\CLK_ENABLE").as_bool())
|
|
|
|
continue;
|
|
|
|
if (config.opt_aggressive || !modwalker.sigmap(cell->getPort("\\ADDR")).is_fully_const())
|
2014-07-20 03:36:46 -05:00
|
|
|
shareable_cells.insert(cell);
|
2014-07-19 13:54:32 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$mul" || cell->type == "$div" || cell->type == "$mod") {
|
2014-07-21 05:04:56 -05:00
|
|
|
if (config.opt_aggressive || cell->parameters.at("\\Y_WIDTH").as_int() >= 4)
|
2014-07-20 03:36:46 -05:00
|
|
|
shareable_cells.insert(cell);
|
2014-07-19 13:54:32 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$shl" || cell->type == "$shr" || cell->type == "$sshl" || cell->type == "$sshr") {
|
2014-07-21 05:04:56 -05:00
|
|
|
if (config.opt_aggressive || cell->parameters.at("\\Y_WIDTH").as_int() >= 8)
|
2014-07-20 03:36:46 -05:00
|
|
|
shareable_cells.insert(cell);
|
2014-07-19 20:03:04 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
if (generic_ops.count(cell->type)) {
|
2015-02-10 13:51:37 -06:00
|
|
|
if (config.opt_aggressive)
|
2014-07-20 03:36:46 -05:00
|
|
|
shareable_cells.insert(cell);
|
2014-07-19 13:54:32 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_shareable_pair(RTLIL::Cell *c1, RTLIL::Cell *c2)
|
|
|
|
{
|
|
|
|
if (c1->type != c2->type)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (c1->type == "$memrd")
|
|
|
|
{
|
|
|
|
if (c1->parameters.at("\\MEMID").decode_string() != c2->parameters.at("\\MEMID").decode_string())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
if (config.generic_uni_ops.count(c1->type))
|
2014-07-19 13:54:32 -05:00
|
|
|
{
|
2014-07-21 05:04:56 -05:00
|
|
|
if (!config.opt_aggressive)
|
|
|
|
{
|
|
|
|
int a1_width = c1->parameters.at("\\A_WIDTH").as_int();
|
|
|
|
int y1_width = c1->parameters.at("\\Y_WIDTH").as_int();
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
int a2_width = c2->parameters.at("\\A_WIDTH").as_int();
|
|
|
|
int y2_width = c2->parameters.at("\\Y_WIDTH").as_int();
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
if (std::max(a1_width, a2_width) > 2 * std::min(a1_width, a2_width)) return false;
|
|
|
|
if (std::max(y1_width, y2_width) > 2 * std::min(y1_width, y2_width)) return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-03 02:55:50 -05:00
|
|
|
if (config.generic_bin_ops.count(c1->type) || c1->type == "$alu")
|
2014-07-21 05:04:56 -05:00
|
|
|
{
|
2014-07-19 20:03:04 -05:00
|
|
|
if (!config.opt_aggressive)
|
|
|
|
{
|
|
|
|
int a1_width = c1->parameters.at("\\A_WIDTH").as_int();
|
|
|
|
int b1_width = c1->parameters.at("\\B_WIDTH").as_int();
|
|
|
|
int y1_width = c1->parameters.at("\\Y_WIDTH").as_int();
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-19 20:03:04 -05:00
|
|
|
int a2_width = c2->parameters.at("\\A_WIDTH").as_int();
|
|
|
|
int b2_width = c2->parameters.at("\\B_WIDTH").as_int();
|
|
|
|
int y2_width = c2->parameters.at("\\Y_WIDTH").as_int();
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-19 20:03:04 -05:00
|
|
|
if (std::max(a1_width, a2_width) > 2 * std::min(a1_width, a2_width)) return false;
|
|
|
|
if (std::max(b1_width, b2_width) > 2 * std::min(b1_width, b2_width)) return false;
|
|
|
|
if (std::max(y1_width, y2_width) > 2 * std::min(y1_width, y2_width)) return false;
|
|
|
|
}
|
2014-07-19 13:54:32 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
if (config.generic_cbin_ops.count(c1->type))
|
|
|
|
{
|
|
|
|
if (!config.opt_aggressive)
|
|
|
|
{
|
|
|
|
int a1_width = c1->parameters.at("\\A_WIDTH").as_int();
|
|
|
|
int b1_width = c1->parameters.at("\\B_WIDTH").as_int();
|
|
|
|
int y1_width = c1->parameters.at("\\Y_WIDTH").as_int();
|
|
|
|
|
|
|
|
int a2_width = c2->parameters.at("\\A_WIDTH").as_int();
|
|
|
|
int b2_width = c2->parameters.at("\\B_WIDTH").as_int();
|
|
|
|
int y2_width = c2->parameters.at("\\Y_WIDTH").as_int();
|
|
|
|
|
|
|
|
int min1_width = std::min(a1_width, b1_width);
|
|
|
|
int max1_width = std::max(a1_width, b1_width);
|
|
|
|
|
|
|
|
int min2_width = std::min(a2_width, b2_width);
|
|
|
|
int max2_width = std::max(a2_width, b2_width);
|
|
|
|
|
|
|
|
if (std::max(min1_width, min2_width) > 2 * std::min(min1_width, min2_width)) return false;
|
|
|
|
if (std::max(max1_width, max2_width) > 2 * std::min(max1_width, max2_width)) return false;
|
|
|
|
if (std::max(y1_width, y2_width) > 2 * std::min(y1_width, y2_width)) return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-03 05:58:40 -05:00
|
|
|
if (c1->type == "$macc")
|
|
|
|
{
|
|
|
|
if (!config.opt_aggressive)
|
|
|
|
if (share_macc(c1, c2) > 2 * std::min(bits_macc(c1), bits_macc(c2))) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
for (auto &it : c1->parameters)
|
|
|
|
if (c2->parameters.count(it.first) == 0 || c2->parameters.at(it.first) != it.second)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (auto &it : c2->parameters)
|
|
|
|
if (c1->parameters.count(it.first) == 0 || c1->parameters.at(it.first) != it.second)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void find_shareable_partners(std::vector<RTLIL::Cell*> &results, RTLIL::Cell *cell)
|
|
|
|
{
|
|
|
|
results.clear();
|
|
|
|
for (auto c : shareable_cells)
|
|
|
|
if (c != cell && is_shareable_pair(c, cell))
|
|
|
|
results.push_back(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-20 08:00:18 -05:00
|
|
|
// -----------------------
|
|
|
|
// Create replacement cell
|
|
|
|
// -----------------------
|
|
|
|
|
2014-12-28 17:42:48 -06:00
|
|
|
RTLIL::Cell *make_supercell(RTLIL::Cell *c1, RTLIL::Cell *c2, RTLIL::SigSpec act, pool<RTLIL::Cell*> &supercell_aux)
|
2014-07-20 08:00:18 -05:00
|
|
|
{
|
2014-07-21 05:04:56 -05:00
|
|
|
log_assert(c1->type == c2->type);
|
|
|
|
|
|
|
|
if (config.generic_uni_ops.count(c1->type))
|
2014-07-20 08:00:18 -05:00
|
|
|
{
|
2014-07-21 05:04:56 -05:00
|
|
|
if (c1->parameters.at("\\A_SIGNED").as_bool() != c2->parameters.at("\\A_SIGNED").as_bool())
|
|
|
|
{
|
|
|
|
RTLIL::Cell *unsigned_cell = c1->parameters.at("\\A_SIGNED").as_bool() ? c2 : c1;
|
2014-07-31 09:38:54 -05:00
|
|
|
if (unsigned_cell->getPort("\\A").to_sigbit_vector().back() != RTLIL::State::S0) {
|
2014-07-21 05:04:56 -05:00
|
|
|
unsigned_cell->parameters.at("\\A_WIDTH") = unsigned_cell->parameters.at("\\A_WIDTH").as_int() + 1;
|
2014-07-31 09:38:54 -05:00
|
|
|
RTLIL::SigSpec new_a = unsigned_cell->getPort("\\A");
|
2014-07-26 08:57:57 -05:00
|
|
|
new_a.append_bit(RTLIL::State::S0);
|
2014-07-31 09:38:54 -05:00
|
|
|
unsigned_cell->setPort("\\A", new_a);
|
2014-07-21 05:04:56 -05:00
|
|
|
}
|
|
|
|
unsigned_cell->parameters.at("\\A_SIGNED") = true;
|
|
|
|
unsigned_cell->check();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool a_signed = c1->parameters.at("\\A_SIGNED").as_bool();
|
|
|
|
log_assert(a_signed == c2->parameters.at("\\A_SIGNED").as_bool());
|
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
RTLIL::SigSpec a1 = c1->getPort("\\A");
|
|
|
|
RTLIL::SigSpec y1 = c1->getPort("\\Y");
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
RTLIL::SigSpec a2 = c2->getPort("\\A");
|
|
|
|
RTLIL::SigSpec y2 = c2->getPort("\\Y");
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-07-22 13:15:14 -05:00
|
|
|
int a_width = std::max(a1.size(), a2.size());
|
|
|
|
int y_width = std::max(y1.size(), y2.size());
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
a1.extend_u0(a_width, a_signed);
|
|
|
|
a2.extend_u0(a_width, a_signed);
|
|
|
|
|
|
|
|
RTLIL::SigSpec a = module->addWire(NEW_ID, a_width);
|
|
|
|
supercell_aux.insert(module->addMux(NEW_ID, a2, a1, act, a));
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-07-21 05:35:06 -05:00
|
|
|
RTLIL::Wire *y = module->addWire(NEW_ID, y_width);
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-07-25 08:05:18 -05:00
|
|
|
RTLIL::Cell *supercell = module->addCell(NEW_ID, c1->type);
|
2014-07-21 05:04:56 -05:00
|
|
|
supercell->parameters["\\A_SIGNED"] = a_signed;
|
|
|
|
supercell->parameters["\\A_WIDTH"] = a_width;
|
|
|
|
supercell->parameters["\\Y_WIDTH"] = y_width;
|
2014-07-31 09:38:54 -05:00
|
|
|
supercell->setPort("\\A", a);
|
|
|
|
supercell->setPort("\\Y", y);
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, y, y1));
|
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, y, y2));
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
supercell_aux.insert(supercell);
|
2014-07-21 05:04:56 -05:00
|
|
|
return supercell;
|
|
|
|
}
|
|
|
|
|
2014-10-03 02:55:50 -05:00
|
|
|
if (config.generic_bin_ops.count(c1->type) || config.generic_cbin_ops.count(c1->type) || c1->type == "$alu")
|
2014-07-21 05:04:56 -05:00
|
|
|
{
|
|
|
|
bool modified_src_cells = false;
|
|
|
|
|
|
|
|
if (config.generic_cbin_ops.count(c1->type))
|
|
|
|
{
|
|
|
|
int score_unflipped = std::max(c1->parameters.at("\\A_WIDTH").as_int(), c2->parameters.at("\\A_WIDTH").as_int()) +
|
|
|
|
std::max(c1->parameters.at("\\B_WIDTH").as_int(), c2->parameters.at("\\B_WIDTH").as_int());
|
|
|
|
|
|
|
|
int score_flipped = std::max(c1->parameters.at("\\A_WIDTH").as_int(), c2->parameters.at("\\B_WIDTH").as_int()) +
|
|
|
|
std::max(c1->parameters.at("\\B_WIDTH").as_int(), c2->parameters.at("\\A_WIDTH").as_int());
|
|
|
|
|
|
|
|
if (score_flipped < score_unflipped)
|
|
|
|
{
|
2014-07-31 09:38:54 -05:00
|
|
|
RTLIL::SigSpec tmp = c2->getPort("\\A");
|
|
|
|
c2->setPort("\\A", c2->getPort("\\B"));
|
|
|
|
c2->setPort("\\B", tmp);
|
2014-07-26 08:57:57 -05:00
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
std::swap(c2->parameters.at("\\A_WIDTH"), c2->parameters.at("\\B_WIDTH"));
|
|
|
|
std::swap(c2->parameters.at("\\A_SIGNED"), c2->parameters.at("\\B_SIGNED"));
|
|
|
|
modified_src_cells = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c1->parameters.at("\\A_SIGNED").as_bool() != c2->parameters.at("\\A_SIGNED").as_bool())
|
|
|
|
|
|
|
|
{
|
|
|
|
RTLIL::Cell *unsigned_cell = c1->parameters.at("\\A_SIGNED").as_bool() ? c2 : c1;
|
2014-07-31 09:38:54 -05:00
|
|
|
if (unsigned_cell->getPort("\\A").to_sigbit_vector().back() != RTLIL::State::S0) {
|
2014-07-21 05:04:56 -05:00
|
|
|
unsigned_cell->parameters.at("\\A_WIDTH") = unsigned_cell->parameters.at("\\A_WIDTH").as_int() + 1;
|
2014-07-31 09:38:54 -05:00
|
|
|
RTLIL::SigSpec new_a = unsigned_cell->getPort("\\A");
|
2014-07-26 08:57:57 -05:00
|
|
|
new_a.append_bit(RTLIL::State::S0);
|
2014-07-31 09:38:54 -05:00
|
|
|
unsigned_cell->setPort("\\A", new_a);
|
2014-07-21 05:04:56 -05:00
|
|
|
}
|
|
|
|
unsigned_cell->parameters.at("\\A_SIGNED") = true;
|
|
|
|
modified_src_cells = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c1->parameters.at("\\B_SIGNED").as_bool() != c2->parameters.at("\\B_SIGNED").as_bool())
|
|
|
|
{
|
|
|
|
RTLIL::Cell *unsigned_cell = c1->parameters.at("\\B_SIGNED").as_bool() ? c2 : c1;
|
2014-07-31 09:38:54 -05:00
|
|
|
if (unsigned_cell->getPort("\\B").to_sigbit_vector().back() != RTLIL::State::S0) {
|
2014-07-21 05:04:56 -05:00
|
|
|
unsigned_cell->parameters.at("\\B_WIDTH") = unsigned_cell->parameters.at("\\B_WIDTH").as_int() + 1;
|
2014-07-31 09:38:54 -05:00
|
|
|
RTLIL::SigSpec new_b = unsigned_cell->getPort("\\B");
|
2014-07-26 08:57:57 -05:00
|
|
|
new_b.append_bit(RTLIL::State::S0);
|
2014-07-31 09:38:54 -05:00
|
|
|
unsigned_cell->setPort("\\B", new_b);
|
2014-07-21 05:04:56 -05:00
|
|
|
}
|
|
|
|
unsigned_cell->parameters.at("\\B_SIGNED") = true;
|
|
|
|
modified_src_cells = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (modified_src_cells) {
|
|
|
|
c1->check();
|
|
|
|
c2->check();
|
|
|
|
}
|
2014-07-20 08:00:18 -05:00
|
|
|
|
|
|
|
bool a_signed = c1->parameters.at("\\A_SIGNED").as_bool();
|
|
|
|
bool b_signed = c1->parameters.at("\\B_SIGNED").as_bool();
|
|
|
|
|
|
|
|
log_assert(a_signed == c2->parameters.at("\\A_SIGNED").as_bool());
|
|
|
|
log_assert(b_signed == c2->parameters.at("\\B_SIGNED").as_bool());
|
|
|
|
|
2014-07-20 10:06:36 -05:00
|
|
|
if (c1->type == "$shl" || c1->type == "$shr" || c1->type == "$sshl" || c1->type == "$sshr")
|
|
|
|
b_signed = false;
|
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
RTLIL::SigSpec a1 = c1->getPort("\\A");
|
|
|
|
RTLIL::SigSpec b1 = c1->getPort("\\B");
|
|
|
|
RTLIL::SigSpec y1 = c1->getPort("\\Y");
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
RTLIL::SigSpec a2 = c2->getPort("\\A");
|
|
|
|
RTLIL::SigSpec b2 = c2->getPort("\\B");
|
|
|
|
RTLIL::SigSpec y2 = c2->getPort("\\Y");
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-07-22 13:15:14 -05:00
|
|
|
int a_width = std::max(a1.size(), a2.size());
|
|
|
|
int b_width = std::max(b1.size(), b2.size());
|
|
|
|
int y_width = std::max(y1.size(), y2.size());
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-07-20 10:06:36 -05:00
|
|
|
if (c1->type == "$shr" && a_signed)
|
|
|
|
{
|
|
|
|
a_width = std::max(y_width, a_width);
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
if (a1.size() < y1.size()) a1.extend_u0(y1.size(), true);
|
|
|
|
if (a2.size() < y2.size()) a2.extend_u0(y2.size(), true);
|
2014-07-20 10:06:36 -05:00
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
a1.extend_u0(a_width, false);
|
|
|
|
a2.extend_u0(a_width, false);
|
2014-07-20 10:06:36 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-09-21 12:36:56 -05:00
|
|
|
a1.extend_u0(a_width, a_signed);
|
|
|
|
a2.extend_u0(a_width, a_signed);
|
2014-07-20 10:06:36 -05:00
|
|
|
}
|
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
b1.extend_u0(b_width, b_signed);
|
|
|
|
b2.extend_u0(b_width, b_signed);
|
|
|
|
|
|
|
|
RTLIL::SigSpec a = module->addWire(NEW_ID, a_width);
|
|
|
|
RTLIL::SigSpec b = module->addWire(NEW_ID, b_width);
|
|
|
|
|
|
|
|
supercell_aux.insert(module->addMux(NEW_ID, a2, a1, act, a));
|
|
|
|
supercell_aux.insert(module->addMux(NEW_ID, b2, b1, act, b));
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-07-21 05:35:06 -05:00
|
|
|
RTLIL::Wire *y = module->addWire(NEW_ID, y_width);
|
2014-10-03 02:55:50 -05:00
|
|
|
RTLIL::Wire *x = c1->type == "$alu" ? module->addWire(NEW_ID, y_width) : nullptr;
|
|
|
|
RTLIL::Wire *co = c1->type == "$alu" ? module->addWire(NEW_ID, y_width) : nullptr;
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
RTLIL::Cell *supercell = module->addCell(NEW_ID, c1->type);
|
2014-07-20 08:00:18 -05:00
|
|
|
supercell->parameters["\\A_SIGNED"] = a_signed;
|
|
|
|
supercell->parameters["\\B_SIGNED"] = b_signed;
|
|
|
|
supercell->parameters["\\A_WIDTH"] = a_width;
|
|
|
|
supercell->parameters["\\B_WIDTH"] = b_width;
|
|
|
|
supercell->parameters["\\Y_WIDTH"] = y_width;
|
2014-07-31 09:38:54 -05:00
|
|
|
supercell->setPort("\\A", a);
|
|
|
|
supercell->setPort("\\B", b);
|
|
|
|
supercell->setPort("\\Y", y);
|
2014-10-03 02:55:50 -05:00
|
|
|
if (c1->type == "$alu") {
|
2014-10-03 05:58:40 -05:00
|
|
|
RTLIL::Wire *ci = module->addWire(NEW_ID), *bi = module->addWire(NEW_ID);
|
|
|
|
supercell_aux.insert(module->addMux(NEW_ID, c2->getPort("\\CI"), c1->getPort("\\CI"), act, ci));
|
|
|
|
supercell_aux.insert(module->addMux(NEW_ID, c2->getPort("\\BI"), c1->getPort("\\BI"), act, bi));
|
|
|
|
supercell->setPort("\\CI", ci);
|
|
|
|
supercell->setPort("\\BI", bi);
|
2014-10-03 02:55:50 -05:00
|
|
|
supercell->setPort("\\CO", co);
|
|
|
|
supercell->setPort("\\X", x);
|
|
|
|
}
|
2014-07-21 05:04:56 -05:00
|
|
|
supercell->check();
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, y, y1));
|
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, y, y2));
|
2014-10-03 02:55:50 -05:00
|
|
|
if (c1->type == "$alu") {
|
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, co, c1->getPort("\\CO")));
|
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, co, c2->getPort("\\CO")));
|
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, x, c1->getPort("\\X")));
|
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, x, c2->getPort("\\X")));
|
|
|
|
}
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
supercell_aux.insert(supercell);
|
2014-07-20 08:00:18 -05:00
|
|
|
return supercell;
|
|
|
|
}
|
|
|
|
|
2014-10-03 05:58:40 -05:00
|
|
|
if (c1->type == "$macc")
|
|
|
|
{
|
|
|
|
RTLIL::Cell *supercell = module->addCell(NEW_ID, c1->type);
|
|
|
|
supercell_aux.insert(supercell);
|
|
|
|
share_macc(c1, c2, act, supercell, &supercell_aux);
|
|
|
|
supercell->check();
|
|
|
|
return supercell;
|
|
|
|
}
|
|
|
|
|
2014-08-03 13:19:50 -05:00
|
|
|
if (c1->type == "$memrd")
|
|
|
|
{
|
|
|
|
RTLIL::Cell *supercell = module->addCell(NEW_ID, c1);
|
2015-09-12 09:01:20 -05:00
|
|
|
RTLIL::SigSpec addr1 = c1->getPort("\\ADDR");
|
|
|
|
RTLIL::SigSpec addr2 = c2->getPort("\\ADDR");
|
|
|
|
if (addr1 != addr2)
|
|
|
|
supercell->setPort("\\ADDR", module->Mux(NEW_ID, addr2, addr1, act));
|
2014-09-21 12:36:56 -05:00
|
|
|
supercell_aux.insert(module->addPos(NEW_ID, supercell->getPort("\\DATA"), c2->getPort("\\DATA")));
|
|
|
|
supercell_aux.insert(supercell);
|
2014-08-03 13:19:50 -05:00
|
|
|
return supercell;
|
|
|
|
}
|
|
|
|
|
2014-07-20 08:00:18 -05:00
|
|
|
log_abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
// -------------------------------------------
|
|
|
|
// Finding forbidden control inputs for a cell
|
|
|
|
// -------------------------------------------
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
std::map<RTLIL::Cell*, pool<RTLIL::SigBit>, cell_ptr_cmp> forbidden_controls_cache;
|
2014-07-20 13:44:14 -05:00
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
const pool<RTLIL::SigBit> &find_forbidden_controls(RTLIL::Cell *cell)
|
2014-07-20 13:44:14 -05:00
|
|
|
{
|
|
|
|
if (recursion_state.count(cell)) {
|
2014-12-28 19:01:42 -06:00
|
|
|
static pool<RTLIL::SigBit> empty_controls_set;
|
2014-07-20 13:44:14 -05:00
|
|
|
return empty_controls_set;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (forbidden_controls_cache.count(cell))
|
|
|
|
return forbidden_controls_cache.at(cell);
|
|
|
|
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<ModWalker::PortBit> pbits;
|
2014-12-28 10:51:16 -06:00
|
|
|
pool<RTLIL::Cell*> consumer_cells;
|
2014-07-20 13:44:14 -05:00
|
|
|
|
|
|
|
modwalker.get_consumers(pbits, modwalker.cell_outputs[cell]);
|
|
|
|
|
|
|
|
for (auto &bit : pbits) {
|
|
|
|
if ((bit.cell->type == "$mux" || bit.cell->type == "$pmux") && bit.port == "\\S")
|
2014-07-31 09:38:54 -05:00
|
|
|
forbidden_controls_cache[cell].insert(bit.cell->getPort("\\S").extract(bit.offset, 1));
|
2014-07-20 13:44:14 -05:00
|
|
|
consumer_cells.insert(bit.cell);
|
|
|
|
}
|
|
|
|
|
|
|
|
recursion_state.insert(cell);
|
|
|
|
|
|
|
|
for (auto c : consumer_cells)
|
|
|
|
if (fwd_ct.cell_known(c->type)) {
|
2014-12-28 19:01:42 -06:00
|
|
|
const pool<RTLIL::SigBit> &bits = find_forbidden_controls(c);
|
2014-07-20 13:44:14 -05:00
|
|
|
forbidden_controls_cache[cell].insert(bits.begin(), bits.end());
|
|
|
|
}
|
|
|
|
|
2014-10-18 08:20:38 -05:00
|
|
|
log_assert(recursion_state.count(cell) != 0);
|
2014-07-20 13:44:14 -05:00
|
|
|
recursion_state.erase(cell);
|
|
|
|
|
|
|
|
return forbidden_controls_cache[cell];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
// --------------------------------------------------------
|
|
|
|
// Finding control inputs and activation pattern for a cell
|
|
|
|
// --------------------------------------------------------
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
std::map<RTLIL::Cell*, pool<ssc_pair_t>, cell_ptr_cmp> activation_patterns_cache;
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
bool sort_check_activation_pattern(ssc_pair_t &p)
|
2014-07-19 13:54:32 -05:00
|
|
|
{
|
2014-07-20 03:36:46 -05:00
|
|
|
std::map<RTLIL::SigBit, RTLIL::State> p_bits;
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
std::vector<RTLIL::SigBit> p_first_bits = p.first;
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(p_first_bits); i++) {
|
2014-07-20 03:36:46 -05:00
|
|
|
RTLIL::SigBit b = p_first_bits[i];
|
|
|
|
RTLIL::State v = p.second.bits[i];
|
|
|
|
if (p_bits.count(b) && p_bits.at(b) != v)
|
|
|
|
return false;
|
|
|
|
p_bits[b] = v;
|
2014-07-19 13:54:32 -05:00
|
|
|
}
|
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
p.first = RTLIL::SigSpec();
|
|
|
|
p.second.bits.clear();
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
for (auto &it : p_bits) {
|
|
|
|
p.first.append_bit(it.first);
|
|
|
|
p.second.bits.push_back(it.second);
|
2014-07-19 13:54:32 -05:00
|
|
|
}
|
2014-07-20 03:36:46 -05:00
|
|
|
|
|
|
|
return true;
|
2014-07-19 13:54:32 -05:00
|
|
|
}
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
void optimize_activation_patterns(pool<ssc_pair_t> & /* patterns */)
|
2014-07-20 04:41:57 -05:00
|
|
|
{
|
|
|
|
// TODO: Remove patterns that are contained in other patterns
|
|
|
|
// TODO: Consolidate pairs of patterns that only differ in the value for one signal bit
|
|
|
|
}
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
const pool<ssc_pair_t> &find_cell_activation_patterns(RTLIL::Cell *cell, const char *indent)
|
2014-07-19 13:54:32 -05:00
|
|
|
{
|
2014-07-20 13:44:14 -05:00
|
|
|
if (recursion_state.count(cell)) {
|
2014-12-28 19:01:42 -06:00
|
|
|
static pool<ssc_pair_t> empty_patterns_set;
|
2014-07-20 13:44:14 -05:00
|
|
|
return empty_patterns_set;
|
|
|
|
}
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
if (activation_patterns_cache.count(cell))
|
|
|
|
return activation_patterns_cache.at(cell);
|
|
|
|
|
2014-12-27 05:02:57 -06:00
|
|
|
const pool<RTLIL::SigBit> &cell_out_bits = modwalker.cell_outputs[cell];
|
2014-12-28 10:51:16 -06:00
|
|
|
pool<RTLIL::Cell*> driven_cells, driven_data_muxes;
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
for (auto &bit : cell_out_bits)
|
|
|
|
{
|
|
|
|
if (terminal_bits.count(bit)) {
|
|
|
|
// Terminal cells are always active: unconditional activation pattern
|
2014-12-28 19:01:42 -06:00
|
|
|
activation_patterns_cache[cell].insert(ssc_pair_t());
|
2014-07-20 03:36:46 -05:00
|
|
|
return activation_patterns_cache.at(cell);
|
|
|
|
}
|
|
|
|
for (auto &pbit : modwalker.signal_consumers[bit]) {
|
|
|
|
log_assert(fwd_ct.cell_known(pbit.cell->type));
|
2014-07-20 13:44:14 -05:00
|
|
|
if ((pbit.cell->type == "$mux" || pbit.cell->type == "$pmux") && (pbit.port == "\\A" || pbit.port == "\\B"))
|
|
|
|
driven_data_muxes.insert(pbit.cell);
|
|
|
|
else
|
|
|
|
driven_cells.insert(pbit.cell);
|
2014-07-20 03:36:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
recursion_state.insert(cell);
|
|
|
|
|
|
|
|
for (auto c : driven_data_muxes)
|
2014-07-20 03:36:46 -05:00
|
|
|
{
|
2014-12-28 19:01:42 -06:00
|
|
|
const pool<ssc_pair_t> &c_patterns = find_cell_activation_patterns(c, indent);
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
bool used_in_a = false;
|
|
|
|
std::set<int> used_in_b_parts;
|
|
|
|
|
|
|
|
int width = c->parameters.at("\\WIDTH").as_int();
|
2014-07-31 09:38:54 -05:00
|
|
|
std::vector<RTLIL::SigBit> sig_a = modwalker.sigmap(c->getPort("\\A"));
|
|
|
|
std::vector<RTLIL::SigBit> sig_b = modwalker.sigmap(c->getPort("\\B"));
|
|
|
|
std::vector<RTLIL::SigBit> sig_s = modwalker.sigmap(c->getPort("\\S"));
|
2014-07-20 13:44:14 -05:00
|
|
|
|
|
|
|
for (auto &bit : sig_a)
|
|
|
|
if (cell_out_bits.count(bit))
|
|
|
|
used_in_a = true;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(sig_b); i++)
|
2014-07-20 13:44:14 -05:00
|
|
|
if (cell_out_bits.count(sig_b[i]))
|
|
|
|
used_in_b_parts.insert(i / width);
|
|
|
|
|
|
|
|
if (used_in_a)
|
|
|
|
for (auto p : c_patterns) {
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(sig_s); i++)
|
2014-07-20 13:44:14 -05:00
|
|
|
p.first.append_bit(sig_s[i]), p.second.bits.push_back(RTLIL::State::S0);
|
|
|
|
if (sort_check_activation_pattern(p))
|
|
|
|
activation_patterns_cache[cell].insert(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int idx : used_in_b_parts)
|
|
|
|
for (auto p : c_patterns) {
|
|
|
|
p.first.append_bit(sig_s[idx]), p.second.bits.push_back(RTLIL::State::S1);
|
|
|
|
if (sort_check_activation_pattern(p))
|
|
|
|
activation_patterns_cache[cell].insert(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto c : driven_cells) {
|
2014-12-28 19:01:42 -06:00
|
|
|
const pool<ssc_pair_t> &c_patterns = find_cell_activation_patterns(c, indent);
|
2014-07-20 13:44:14 -05:00
|
|
|
activation_patterns_cache[cell].insert(c_patterns.begin(), c_patterns.end());
|
2014-07-20 03:36:46 -05:00
|
|
|
}
|
|
|
|
|
2014-10-18 08:20:38 -05:00
|
|
|
log_assert(recursion_state.count(cell) != 0);
|
2014-07-20 13:44:14 -05:00
|
|
|
recursion_state.erase(cell);
|
|
|
|
|
2014-07-20 04:41:57 -05:00
|
|
|
optimize_activation_patterns(activation_patterns_cache[cell]);
|
|
|
|
if (activation_patterns_cache[cell].empty()) {
|
|
|
|
log("%sFound cell that is never activated: %s\n", indent, log_id(cell));
|
2014-07-20 08:00:18 -05:00
|
|
|
RTLIL::SigSpec cell_outputs = modwalker.cell_outputs[cell];
|
2014-07-26 07:32:50 -05:00
|
|
|
module->connect(RTLIL::SigSig(cell_outputs, RTLIL::SigSpec(RTLIL::State::Sx, cell_outputs.size())));
|
2014-07-20 04:41:57 -05:00
|
|
|
cells_to_remove.insert(cell);
|
|
|
|
}
|
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
return activation_patterns_cache[cell];
|
2014-07-19 13:54:32 -05:00
|
|
|
}
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
RTLIL::SigSpec bits_from_activation_patterns(const pool<ssc_pair_t> &activation_patterns)
|
2014-07-19 13:54:32 -05:00
|
|
|
{
|
|
|
|
std::set<RTLIL::SigBit> all_bits;
|
|
|
|
for (auto &it : activation_patterns) {
|
|
|
|
std::vector<RTLIL::SigBit> bits = it.first;
|
|
|
|
all_bits.insert(bits.begin(), bits.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec signal;
|
|
|
|
for (auto &bit : all_bits)
|
|
|
|
signal.append_bit(bit);
|
|
|
|
|
|
|
|
return signal;
|
|
|
|
}
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
void filter_activation_patterns(pool<ssc_pair_t> &out,
|
|
|
|
const pool<ssc_pair_t> &in, const std::set<RTLIL::SigBit> &filter_bits)
|
2014-07-20 13:44:14 -05:00
|
|
|
{
|
|
|
|
for (auto &p : in)
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::SigBit> p_first = p.first;
|
2014-12-28 19:01:42 -06:00
|
|
|
ssc_pair_t new_p;
|
2014-07-20 13:44:14 -05:00
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(p_first); i++)
|
2014-07-20 13:44:14 -05:00
|
|
|
if (filter_bits.count(p_first[i]) == 0) {
|
|
|
|
new_p.first.append_bit(p_first[i]);
|
|
|
|
new_p.second.bits.push_back(p.second.bits.at(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
out.insert(new_p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
RTLIL::SigSpec make_cell_activation_logic(const pool<ssc_pair_t> &activation_patterns, pool<RTLIL::Cell*> &supercell_aux)
|
2014-07-20 08:00:18 -05:00
|
|
|
{
|
2014-07-21 05:35:06 -05:00
|
|
|
RTLIL::Wire *all_cases_wire = module->addWire(NEW_ID, 0);
|
2014-09-21 12:36:56 -05:00
|
|
|
|
2014-07-20 08:00:18 -05:00
|
|
|
for (auto &p : activation_patterns) {
|
|
|
|
all_cases_wire->width++;
|
2014-09-21 12:36:56 -05:00
|
|
|
supercell_aux.insert(module->addEq(NEW_ID, p.first, p.second, RTLIL::SigSpec(all_cases_wire, all_cases_wire->width - 1)));
|
2014-07-20 08:00:18 -05:00
|
|
|
}
|
2014-09-21 12:36:56 -05:00
|
|
|
|
2014-07-20 08:00:18 -05:00
|
|
|
if (all_cases_wire->width == 1)
|
|
|
|
return all_cases_wire;
|
2014-09-21 12:36:56 -05:00
|
|
|
|
|
|
|
RTLIL::Wire *result_wire = module->addWire(NEW_ID);
|
|
|
|
supercell_aux.insert(module->addReduceOr(NEW_ID, all_cases_wire, result_wire));
|
|
|
|
return result_wire;
|
2014-07-20 08:00:18 -05:00
|
|
|
}
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-09-21 06:52:39 -05:00
|
|
|
// -------------------------------------------------------------------------------------
|
|
|
|
// Helper functions used to make sure that this pass does not introduce new logic loops.
|
|
|
|
// -------------------------------------------------------------------------------------
|
2014-09-21 05:57:33 -05:00
|
|
|
|
2014-09-21 07:51:07 -05:00
|
|
|
bool module_has_scc()
|
2014-09-21 05:57:33 -05:00
|
|
|
{
|
|
|
|
CellTypes ct;
|
|
|
|
ct.setup_internals();
|
|
|
|
ct.setup_stdcells();
|
|
|
|
|
2014-11-07 08:21:03 -06:00
|
|
|
TopoSort<RTLIL::Cell*, cell_ptr_cmp> toposort;
|
2014-09-21 05:57:33 -05:00
|
|
|
toposort.analyze_loops = false;
|
|
|
|
|
2014-09-21 07:51:07 -05:00
|
|
|
topo_sigmap.set(module);
|
|
|
|
topo_bit_drivers.clear();
|
|
|
|
|
2014-12-28 17:42:48 -06:00
|
|
|
dict<RTLIL::Cell*, pool<RTLIL::SigBit>> cell_to_bits;
|
|
|
|
dict<RTLIL::SigBit, pool<RTLIL::Cell*>> bit_to_cells;
|
2014-09-21 05:57:33 -05:00
|
|
|
|
|
|
|
for (auto cell : module->cells())
|
|
|
|
if (ct.cell_known(cell->type))
|
|
|
|
for (auto &conn : cell->connections()) {
|
|
|
|
if (ct.cell_output(cell->type, conn.first))
|
2014-09-21 07:51:07 -05:00
|
|
|
for (auto bit : topo_sigmap(conn.second)) {
|
2014-09-21 05:57:33 -05:00
|
|
|
cell_to_bits[cell].insert(bit);
|
2014-09-21 07:51:07 -05:00
|
|
|
topo_bit_drivers[bit].insert(cell);
|
|
|
|
}
|
2014-09-21 05:57:33 -05:00
|
|
|
else
|
2014-09-21 07:51:07 -05:00
|
|
|
for (auto bit : topo_sigmap(conn.second))
|
2014-09-21 05:57:33 -05:00
|
|
|
bit_to_cells[bit].insert(cell);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto &it : cell_to_bits)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *c1 = it.first;
|
|
|
|
|
|
|
|
for (auto bit : it.second)
|
|
|
|
for (auto c2 : bit_to_cells[bit])
|
|
|
|
toposort.edge(c1, c2);
|
|
|
|
}
|
|
|
|
|
2014-09-21 06:52:39 -05:00
|
|
|
bool found_scc = !toposort.sort();
|
2014-09-21 07:51:07 -05:00
|
|
|
topo_cell_drivers = std::move(toposort.database);
|
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
if (found_scc && toposort.analyze_loops)
|
|
|
|
for (auto &loop : toposort.loops) {
|
|
|
|
log("### loop ###\n");
|
|
|
|
for (auto &c : loop)
|
|
|
|
log("%s (%s)\n", log_id(c), log_id(c->type));
|
|
|
|
}
|
|
|
|
|
2014-09-21 06:52:39 -05:00
|
|
|
return found_scc;
|
|
|
|
}
|
|
|
|
|
2014-12-28 17:42:48 -06:00
|
|
|
bool find_in_input_cone_worker(RTLIL::Cell *root, RTLIL::Cell *needle, pool<RTLIL::Cell*> &stop)
|
2014-09-21 06:52:39 -05:00
|
|
|
{
|
|
|
|
if (root == needle)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (stop.count(root))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
stop.insert(root);
|
|
|
|
|
2014-09-21 07:51:07 -05:00
|
|
|
for (auto c : topo_cell_drivers[root])
|
2014-09-21 06:52:39 -05:00
|
|
|
if (find_in_input_cone_worker(c, needle, stop))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool find_in_input_cone(RTLIL::Cell *root, RTLIL::Cell *needle)
|
|
|
|
{
|
2014-12-28 17:42:48 -06:00
|
|
|
pool<RTLIL::Cell*> stop;
|
2014-09-21 06:52:39 -05:00
|
|
|
return find_in_input_cone_worker(root, needle, stop);
|
2014-09-21 05:57:33 -05:00
|
|
|
}
|
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
bool is_part_of_scc(RTLIL::Cell *cell)
|
|
|
|
{
|
|
|
|
CellTypes ct;
|
|
|
|
ct.setup_internals();
|
|
|
|
ct.setup_stdcells();
|
|
|
|
|
2014-12-28 17:42:48 -06:00
|
|
|
pool<RTLIL::Cell*> queue, covered;
|
2014-09-21 12:36:56 -05:00
|
|
|
queue.insert(cell);
|
|
|
|
|
|
|
|
while (!queue.empty())
|
|
|
|
{
|
2014-12-28 17:42:48 -06:00
|
|
|
pool<RTLIL::Cell*> new_queue;
|
2014-09-21 12:36:56 -05:00
|
|
|
|
|
|
|
for (auto c : queue) {
|
|
|
|
if (!ct.cell_known(c->type))
|
|
|
|
continue;
|
|
|
|
for (auto &conn : c->connections())
|
|
|
|
if (ct.cell_input(c->type, conn.first))
|
|
|
|
for (auto bit : conn.second)
|
|
|
|
for (auto &pi : mi.query_ports(bit))
|
|
|
|
if (ct.cell_known(pi.cell->type) && ct.cell_output(pi.cell->type, pi.port))
|
|
|
|
new_queue.insert(pi.cell);
|
|
|
|
covered.insert(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
queue.clear();
|
|
|
|
for (auto c : new_queue) {
|
|
|
|
if (cells_to_remove.count(c))
|
|
|
|
continue;
|
|
|
|
if (c == cell)
|
|
|
|
return true;
|
|
|
|
if (!covered.count(c))
|
|
|
|
queue.insert(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-09-21 05:57:33 -05:00
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
// -------------
|
|
|
|
// Setup and run
|
|
|
|
// -------------
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
void remove_cell(Cell *cell)
|
|
|
|
{
|
|
|
|
shareable_cells.erase(cell);
|
|
|
|
forbidden_controls_cache.erase(cell);
|
|
|
|
activation_patterns_cache.erase(cell);
|
|
|
|
module->remove(cell);
|
|
|
|
}
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
ShareWorker(ShareWorkerConfig config, RTLIL::Design *design, RTLIL::Module *module) :
|
2014-09-21 12:36:56 -05:00
|
|
|
config(config), design(design), module(module), mi(module)
|
2014-07-19 13:54:32 -05:00
|
|
|
{
|
2015-01-24 05:16:46 -06:00
|
|
|
#ifndef NDEBUG
|
2014-09-21 07:51:07 -05:00
|
|
|
bool before_scc = module_has_scc();
|
2015-01-24 05:16:46 -06:00
|
|
|
#endif
|
2014-09-21 05:57:33 -05:00
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
generic_ops.insert(config.generic_uni_ops.begin(), config.generic_uni_ops.end());
|
|
|
|
generic_ops.insert(config.generic_bin_ops.begin(), config.generic_bin_ops.end());
|
|
|
|
generic_ops.insert(config.generic_cbin_ops.begin(), config.generic_cbin_ops.end());
|
2014-10-03 02:55:50 -05:00
|
|
|
generic_ops.insert(config.generic_other_ops.begin(), config.generic_other_ops.end());
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-07-20 03:36:46 -05:00
|
|
|
fwd_ct.setup_internals();
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
cone_ct.setup_internals();
|
|
|
|
cone_ct.cell_types.erase("$mul");
|
|
|
|
cone_ct.cell_types.erase("$mod");
|
|
|
|
cone_ct.cell_types.erase("$div");
|
|
|
|
cone_ct.cell_types.erase("$pow");
|
|
|
|
cone_ct.cell_types.erase("$shl");
|
|
|
|
cone_ct.cell_types.erase("$shr");
|
|
|
|
cone_ct.cell_types.erase("$sshl");
|
|
|
|
cone_ct.cell_types.erase("$sshr");
|
|
|
|
|
|
|
|
modwalker.setup(design, module);
|
2014-07-20 03:36:46 -05:00
|
|
|
|
|
|
|
find_terminal_bits();
|
2014-07-19 13:54:32 -05:00
|
|
|
find_shareable_cells();
|
|
|
|
|
|
|
|
if (shareable_cells.size() < 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
log("Found %d cells in module %s that may be considered for resource sharing.\n",
|
2014-10-10 09:59:44 -05:00
|
|
|
GetSize(shareable_cells), log_id(module));
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-10-03 12:01:24 -05:00
|
|
|
for (auto cell : module->cells())
|
|
|
|
if (cell->type == "$pmux")
|
|
|
|
for (auto bit : cell->getPort("\\S"))
|
|
|
|
for (auto other_bit : cell->getPort("\\S"))
|
|
|
|
if (bit < other_bit)
|
|
|
|
exclusive_ctrls.push_back(std::pair<RTLIL::SigBit, RTLIL::SigBit>(bit, other_bit));
|
|
|
|
|
2014-09-21 08:13:06 -05:00
|
|
|
while (!shareable_cells.empty() && config.limit != 0)
|
2014-07-19 13:54:32 -05:00
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = *shareable_cells.begin();
|
|
|
|
shareable_cells.erase(cell);
|
|
|
|
|
2015-02-10 13:51:37 -06:00
|
|
|
log(" Analyzing resource sharing options for %s (%s):\n", log_id(cell), log_id(cell->type));
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
const pool<ssc_pair_t> &cell_activation_patterns = find_cell_activation_patterns(cell, " ");
|
2014-07-20 03:36:46 -05:00
|
|
|
RTLIL::SigSpec cell_activation_signals = bits_from_activation_patterns(cell_activation_patterns);
|
|
|
|
|
2014-07-20 04:41:57 -05:00
|
|
|
if (cell_activation_patterns.empty()) {
|
2014-08-09 10:07:20 -05:00
|
|
|
log(" Cell is never active. Sharing is pointless, we simply remove it.\n");
|
|
|
|
cells_to_remove.insert(cell);
|
2014-07-20 04:41:57 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
if (cell_activation_patterns.count(ssc_pair_t())) {
|
2014-08-09 10:07:20 -05:00
|
|
|
log(" Cell is always active. Therefore no sharing is possible.\n");
|
2014-07-20 03:36:46 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
log(" Found %d activation_patterns using ctrl signal %s.\n", GetSize(cell_activation_patterns), log_signal(cell_activation_signals));
|
2014-07-20 03:36:46 -05:00
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
std::vector<RTLIL::Cell*> candidates;
|
|
|
|
find_shareable_partners(candidates, cell);
|
|
|
|
|
|
|
|
if (candidates.empty()) {
|
|
|
|
log(" No candidates found.\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
log(" Found %d candidates:", GetSize(candidates));
|
2014-07-19 13:54:32 -05:00
|
|
|
for (auto c : candidates)
|
|
|
|
log(" %s", log_id(c));
|
|
|
|
log("\n");
|
|
|
|
|
|
|
|
for (auto other_cell : candidates)
|
|
|
|
{
|
2015-02-10 13:51:37 -06:00
|
|
|
log(" Analyzing resource sharing with %s (%s):\n", log_id(other_cell), log_id(other_cell->type));
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
const pool<ssc_pair_t> &other_cell_activation_patterns = find_cell_activation_patterns(other_cell, " ");
|
2014-07-19 13:54:32 -05:00
|
|
|
RTLIL::SigSpec other_cell_activation_signals = bits_from_activation_patterns(other_cell_activation_patterns);
|
|
|
|
|
2014-07-20 04:41:57 -05:00
|
|
|
if (other_cell_activation_patterns.empty()) {
|
2014-08-09 10:07:20 -05:00
|
|
|
log(" Cell is never active. Sharing is pointless, we simply remove it.\n");
|
2014-07-20 04:41:57 -05:00
|
|
|
shareable_cells.erase(other_cell);
|
2014-08-09 10:07:20 -05:00
|
|
|
cells_to_remove.insert(other_cell);
|
2014-07-20 04:41:57 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
if (other_cell_activation_patterns.count(ssc_pair_t())) {
|
2014-08-09 10:07:20 -05:00
|
|
|
log(" Cell is always active. Therefore no sharing is possible.\n");
|
|
|
|
shareable_cells.erase(other_cell);
|
2014-07-19 13:54:32 -05:00
|
|
|
continue;
|
2014-07-20 03:36:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
log(" Found %d activation_patterns using ctrl signal %s.\n",
|
2014-10-10 09:59:44 -05:00
|
|
|
GetSize(other_cell_activation_patterns), log_signal(other_cell_activation_signals));
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
const pool<RTLIL::SigBit> &cell_forbidden_controls = find_forbidden_controls(cell);
|
|
|
|
const pool<RTLIL::SigBit> &other_cell_forbidden_controls = find_forbidden_controls(other_cell);
|
2014-07-20 13:44:14 -05:00
|
|
|
|
|
|
|
std::set<RTLIL::SigBit> union_forbidden_controls;
|
|
|
|
union_forbidden_controls.insert(cell_forbidden_controls.begin(), cell_forbidden_controls.end());
|
|
|
|
union_forbidden_controls.insert(other_cell_forbidden_controls.begin(), other_cell_forbidden_controls.end());
|
|
|
|
|
|
|
|
if (!union_forbidden_controls.empty())
|
|
|
|
log(" Forbidden control signals for this pair of cells: %s\n", log_signal(union_forbidden_controls));
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
pool<ssc_pair_t> filtered_cell_activation_patterns;
|
|
|
|
pool<ssc_pair_t> filtered_other_cell_activation_patterns;
|
2014-07-20 13:44:14 -05:00
|
|
|
|
|
|
|
filter_activation_patterns(filtered_cell_activation_patterns, cell_activation_patterns, union_forbidden_controls);
|
|
|
|
filter_activation_patterns(filtered_other_cell_activation_patterns, other_cell_activation_patterns, union_forbidden_controls);
|
|
|
|
|
|
|
|
optimize_activation_patterns(filtered_cell_activation_patterns);
|
|
|
|
optimize_activation_patterns(filtered_other_cell_activation_patterns);
|
|
|
|
|
2015-02-21 05:15:41 -06:00
|
|
|
ezSatPtr ez;
|
|
|
|
SatGen satgen(ez.get(), &modwalker.sigmap);
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-12-28 17:42:48 -06:00
|
|
|
pool<RTLIL::Cell*> sat_cells;
|
2014-07-19 13:54:32 -05:00
|
|
|
std::set<RTLIL::SigBit> bits_queue;
|
|
|
|
|
|
|
|
std::vector<int> cell_active, other_cell_active;
|
|
|
|
RTLIL::SigSpec all_ctrl_signals;
|
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
for (auto &p : filtered_cell_activation_patterns) {
|
2014-07-19 13:54:32 -05:00
|
|
|
log(" Activation pattern for cell %s: %s = %s\n", log_id(cell), log_signal(p.first), log_signal(p.second));
|
2015-02-21 05:15:41 -06:00
|
|
|
cell_active.push_back(ez->vec_eq(satgen.importSigSpec(p.first), satgen.importSigSpec(p.second)));
|
2014-07-19 13:54:32 -05:00
|
|
|
all_ctrl_signals.append(p.first);
|
|
|
|
}
|
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
for (auto &p : filtered_other_cell_activation_patterns) {
|
2014-07-19 13:54:32 -05:00
|
|
|
log(" Activation pattern for cell %s: %s = %s\n", log_id(other_cell), log_signal(p.first), log_signal(p.second));
|
2015-02-21 05:15:41 -06:00
|
|
|
other_cell_active.push_back(ez->vec_eq(satgen.importSigSpec(p.first), satgen.importSigSpec(p.second)));
|
2014-07-19 13:54:32 -05:00
|
|
|
all_ctrl_signals.append(p.first);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto &bit : cell_activation_signals.to_sigbit_vector())
|
|
|
|
bits_queue.insert(bit);
|
|
|
|
|
|
|
|
for (auto &bit : other_cell_activation_signals.to_sigbit_vector())
|
|
|
|
bits_queue.insert(bit);
|
|
|
|
|
|
|
|
while (!bits_queue.empty())
|
|
|
|
{
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<ModWalker::PortBit> portbits;
|
2014-07-19 13:54:32 -05:00
|
|
|
modwalker.get_drivers(portbits, bits_queue);
|
|
|
|
bits_queue.clear();
|
|
|
|
|
|
|
|
for (auto &pbit : portbits)
|
|
|
|
if (sat_cells.count(pbit.cell) == 0 && cone_ct.cell_known(pbit.cell->type)) {
|
2014-07-19 20:03:04 -05:00
|
|
|
if (config.opt_fast && modwalker.cell_outputs[pbit.cell].size() >= 4)
|
|
|
|
continue;
|
2014-07-19 13:54:32 -05:00
|
|
|
// log(" Adding cell %s (%s) to SAT problem.\n", log_id(pbit.cell), log_id(pbit.cell->type));
|
2014-07-20 03:36:46 -05:00
|
|
|
bits_queue.insert(modwalker.cell_inputs[pbit.cell].begin(), modwalker.cell_inputs[pbit.cell].end());
|
2014-07-19 13:54:32 -05:00
|
|
|
satgen.importCell(pbit.cell);
|
|
|
|
sat_cells.insert(pbit.cell);
|
|
|
|
}
|
2014-07-19 20:03:04 -05:00
|
|
|
|
|
|
|
if (config.opt_fast && sat_cells.size() > 100)
|
|
|
|
break;
|
2014-07-19 13:54:32 -05:00
|
|
|
}
|
|
|
|
|
2014-10-03 12:01:24 -05:00
|
|
|
for (auto it : exclusive_ctrls)
|
|
|
|
if (satgen.importedSigBit(it.first) && satgen.importedSigBit(it.second)) {
|
|
|
|
log(" Adding exclusive control bits: %s vs. %s\n", log_signal(it.first), log_signal(it.second));
|
2014-12-29 10:10:37 -06:00
|
|
|
int sub1 = satgen.importSigBit(it.first);
|
|
|
|
int sub2 = satgen.importSigBit(it.second);
|
2015-02-21 05:15:41 -06:00
|
|
|
ez->assume(ez->NOT(ez->AND(sub1, sub2)));
|
2014-10-03 12:01:24 -05:00
|
|
|
}
|
|
|
|
|
2015-02-21 05:15:41 -06:00
|
|
|
if (!ez->solve(ez->expression(ez->OpOr, cell_active))) {
|
2014-08-09 10:07:20 -05:00
|
|
|
log(" According to the SAT solver the cell %s is never active. Sharing is pointless, we simply remove it.\n", log_id(cell));
|
|
|
|
cells_to_remove.insert(cell);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-02-21 05:15:41 -06:00
|
|
|
if (!ez->solve(ez->expression(ez->OpOr, other_cell_active))) {
|
2014-08-09 10:07:20 -05:00
|
|
|
log(" According to the SAT solver the cell %s is never active. Sharing is pointless, we simply remove it.\n", log_id(other_cell));
|
|
|
|
cells_to_remove.insert(other_cell);
|
|
|
|
shareable_cells.erase(other_cell);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-02-21 05:15:41 -06:00
|
|
|
ez->non_incremental();
|
2014-08-09 10:07:20 -05:00
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
all_ctrl_signals.sort_and_unify();
|
|
|
|
std::vector<int> sat_model = satgen.importSigSpec(all_ctrl_signals);
|
|
|
|
std::vector<bool> sat_model_values;
|
|
|
|
|
2015-02-21 05:15:41 -06:00
|
|
|
int sub1 = ez->expression(ez->OpOr, cell_active);
|
|
|
|
int sub2 = ez->expression(ez->OpOr, other_cell_active);
|
|
|
|
ez->assume(ez->AND(sub1, sub2));
|
2014-07-19 13:54:32 -05:00
|
|
|
|
|
|
|
log(" Size of SAT problem: %d cells, %d variables, %d clauses\n",
|
2015-02-21 05:15:41 -06:00
|
|
|
GetSize(sat_cells), ez->numCnfVariables(), ez->numCnfClauses());
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2015-02-21 05:15:41 -06:00
|
|
|
if (ez->solve(sat_model, sat_model_values)) {
|
2014-07-19 13:54:32 -05:00
|
|
|
log(" According to the SAT solver this pair of cells can not be shared.\n");
|
2014-10-10 09:59:44 -05:00
|
|
|
log(" Model from SAT solver: %s = %d'", log_signal(all_ctrl_signals), GetSize(sat_model_values));
|
|
|
|
for (int i = GetSize(sat_model_values)-1; i >= 0; i--)
|
2014-07-19 13:54:32 -05:00
|
|
|
log("%c", sat_model_values[i] ? '1' : '0');
|
|
|
|
log("\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
log(" According to the SAT solver this pair of cells can be shared.\n");
|
2014-09-21 06:52:39 -05:00
|
|
|
|
|
|
|
if (find_in_input_cone(cell, other_cell)) {
|
|
|
|
log(" Sharing not possible: %s is in input cone of %s.\n", log_id(other_cell), log_id(cell));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (find_in_input_cone(other_cell, cell)) {
|
|
|
|
log(" Sharing not possible: %s is in input cone of %s.\n", log_id(cell), log_id(other_cell));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
shareable_cells.erase(other_cell);
|
2014-07-20 08:00:18 -05:00
|
|
|
|
|
|
|
int cell_select_score = 0;
|
|
|
|
int other_cell_select_score = 0;
|
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
for (auto &p : filtered_cell_activation_patterns)
|
2014-07-22 13:15:14 -05:00
|
|
|
cell_select_score += p.first.size();
|
2014-07-20 08:00:18 -05:00
|
|
|
|
2014-07-20 13:44:14 -05:00
|
|
|
for (auto &p : filtered_other_cell_activation_patterns)
|
2014-07-22 13:15:14 -05:00
|
|
|
other_cell_select_score += p.first.size();
|
2014-07-20 08:00:18 -05:00
|
|
|
|
|
|
|
RTLIL::Cell *supercell;
|
2014-12-28 17:42:48 -06:00
|
|
|
pool<RTLIL::Cell*> supercell_aux;
|
2014-07-20 08:00:18 -05:00
|
|
|
if (cell_select_score <= other_cell_select_score) {
|
2014-09-21 12:36:56 -05:00
|
|
|
RTLIL::SigSpec act = make_cell_activation_logic(filtered_cell_activation_patterns, supercell_aux);
|
|
|
|
supercell = make_supercell(cell, other_cell, act, supercell_aux);
|
2014-07-20 08:00:18 -05:00
|
|
|
log(" Activation signal for %s: %s\n", log_id(cell), log_signal(act));
|
|
|
|
} else {
|
2014-09-21 12:36:56 -05:00
|
|
|
RTLIL::SigSpec act = make_cell_activation_logic(filtered_other_cell_activation_patterns, supercell_aux);
|
|
|
|
supercell = make_supercell(other_cell, cell, act, supercell_aux);
|
2014-07-20 08:00:18 -05:00
|
|
|
log(" Activation signal for %s: %s\n", log_id(other_cell), log_signal(act));
|
|
|
|
}
|
|
|
|
|
|
|
|
log(" New cell: %s (%s)\n", log_id(supercell), log_id(supercell->type));
|
|
|
|
|
2014-09-21 12:36:56 -05:00
|
|
|
cells_to_remove.insert(cell);
|
|
|
|
cells_to_remove.insert(other_cell);
|
|
|
|
|
|
|
|
for (auto c : supercell_aux)
|
|
|
|
if (is_part_of_scc(c))
|
|
|
|
goto do_rollback;
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
do_rollback:
|
|
|
|
log(" New topology contains loops! Rolling back..\n");
|
|
|
|
cells_to_remove.erase(cell);
|
|
|
|
cells_to_remove.erase(other_cell);
|
|
|
|
shareable_cells.insert(other_cell);
|
|
|
|
for (auto cc : supercell_aux)
|
2014-12-28 19:01:42 -06:00
|
|
|
remove_cell(cc);
|
2014-09-21 12:36:56 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-12-28 19:01:42 -06:00
|
|
|
pool<ssc_pair_t> supercell_activation_patterns;
|
2014-07-20 13:44:14 -05:00
|
|
|
supercell_activation_patterns.insert(filtered_cell_activation_patterns.begin(), filtered_cell_activation_patterns.end());
|
|
|
|
supercell_activation_patterns.insert(filtered_other_cell_activation_patterns.begin(), filtered_other_cell_activation_patterns.end());
|
2014-07-20 08:00:18 -05:00
|
|
|
optimize_activation_patterns(supercell_activation_patterns);
|
|
|
|
activation_patterns_cache[supercell] = supercell_activation_patterns;
|
|
|
|
shareable_cells.insert(supercell);
|
|
|
|
|
2014-09-21 07:51:07 -05:00
|
|
|
for (auto bit : topo_sigmap(all_ctrl_signals))
|
|
|
|
for (auto c : topo_bit_drivers[bit])
|
2014-09-21 08:13:44 -05:00
|
|
|
topo_cell_drivers[supercell].insert(c);
|
|
|
|
|
|
|
|
topo_cell_drivers[supercell].insert(topo_cell_drivers[cell].begin(), topo_cell_drivers[cell].end());
|
|
|
|
topo_cell_drivers[supercell].insert(topo_cell_drivers[other_cell].begin(), topo_cell_drivers[other_cell].end());
|
|
|
|
|
|
|
|
topo_cell_drivers[cell] = { supercell };
|
|
|
|
topo_cell_drivers[other_cell] = { supercell };
|
2014-09-21 07:51:07 -05:00
|
|
|
|
2014-09-21 08:13:06 -05:00
|
|
|
if (config.limit > 0)
|
|
|
|
config.limit--;
|
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-07-20 04:41:57 -05:00
|
|
|
|
|
|
|
if (!cells_to_remove.empty()) {
|
2014-10-10 09:59:44 -05:00
|
|
|
log("Removing %d cells in module %s:\n", GetSize(cells_to_remove), log_id(module));
|
2014-07-20 04:41:57 -05:00
|
|
|
for (auto c : cells_to_remove) {
|
|
|
|
log(" Removing cell %s (%s).\n", log_id(c), log_id(c->type));
|
2014-12-28 19:01:42 -06:00
|
|
|
remove_cell(c);
|
2014-07-20 04:41:57 -05:00
|
|
|
}
|
|
|
|
}
|
2014-07-20 13:44:14 -05:00
|
|
|
|
|
|
|
log_assert(recursion_state.empty());
|
2014-09-21 05:57:33 -05:00
|
|
|
|
2015-01-24 05:16:46 -06:00
|
|
|
#ifndef NDEBUG
|
2014-09-21 05:57:33 -05:00
|
|
|
bool after_scc = before_scc || module_has_scc();
|
2014-09-21 12:44:08 -05:00
|
|
|
log_assert(before_scc == after_scc);
|
2015-01-24 05:16:46 -06:00
|
|
|
#endif
|
2014-07-19 13:54:32 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SharePass : public Pass {
|
|
|
|
SharePass() : Pass("share", "perform sat-based resource sharing") { }
|
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
|
|
|
log(" share [options] [selection]\n");
|
|
|
|
log("\n");
|
|
|
|
log("This pass merges shareable resources into a single resource. A SAT solver\n");
|
|
|
|
log("is used to determine if two resources are share-able.\n");
|
|
|
|
log("\n");
|
2014-07-19 20:03:04 -05:00
|
|
|
log(" -force\n");
|
2014-07-19 13:54:32 -05:00
|
|
|
log(" Per default the selection of cells that is considered for sharing is\n");
|
2014-07-19 20:03:04 -05:00
|
|
|
log(" narrowed using a list of cell types. With this option all selected\n");
|
2014-07-19 13:54:32 -05:00
|
|
|
log(" cells are considered for resource sharing.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" IMPORTANT NOTE: If the -all option is used then no cells with internal\n");
|
|
|
|
log(" state must be selected!\n");
|
|
|
|
log("\n");
|
2014-07-19 20:03:04 -05:00
|
|
|
log(" -aggressive\n");
|
|
|
|
log(" Per default some heuristics are used to reduce the number of cells\n");
|
|
|
|
log(" considered for resource sharing to only large resources. This options\n");
|
|
|
|
log(" turns this heuristics off, resulting in much more cells being considered\n");
|
|
|
|
log(" for resource sharing.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -fast\n");
|
2014-07-20 03:36:46 -05:00
|
|
|
log(" Only consider the simple part of the control logic in SAT solving, resulting\n");
|
2015-08-14 03:56:05 -05:00
|
|
|
log(" in much easier SAT problems at the cost of maybe missing some opportunities\n");
|
2014-07-19 20:03:04 -05:00
|
|
|
log(" for resource sharing.\n");
|
|
|
|
log("\n");
|
2014-09-21 08:13:06 -05:00
|
|
|
log(" -limit N\n");
|
|
|
|
log(" Only perform the first N merges, then stop. This is useful for debugging.\n");
|
|
|
|
log("\n");
|
2014-07-19 13:54:32 -05:00
|
|
|
}
|
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
ShareWorkerConfig config;
|
2014-07-21 05:04:56 -05:00
|
|
|
|
2014-09-21 08:13:06 -05:00
|
|
|
config.limit = -1;
|
2014-07-19 20:03:04 -05:00
|
|
|
config.opt_force = false;
|
|
|
|
config.opt_aggressive = false;
|
|
|
|
config.opt_fast = false;
|
2014-07-19 13:54:32 -05:00
|
|
|
|
2014-07-21 05:04:56 -05:00
|
|
|
config.generic_uni_ops.insert("$not");
|
|
|
|
// config.generic_uni_ops.insert("$pos");
|
|
|
|
config.generic_uni_ops.insert("$neg");
|
|
|
|
|
|
|
|
config.generic_cbin_ops.insert("$and");
|
|
|
|
config.generic_cbin_ops.insert("$or");
|
|
|
|
config.generic_cbin_ops.insert("$xor");
|
|
|
|
config.generic_cbin_ops.insert("$xnor");
|
|
|
|
|
|
|
|
config.generic_bin_ops.insert("$shl");
|
|
|
|
config.generic_bin_ops.insert("$shr");
|
|
|
|
config.generic_bin_ops.insert("$sshl");
|
|
|
|
config.generic_bin_ops.insert("$sshr");
|
|
|
|
|
|
|
|
config.generic_bin_ops.insert("$lt");
|
|
|
|
config.generic_bin_ops.insert("$le");
|
|
|
|
config.generic_bin_ops.insert("$eq");
|
|
|
|
config.generic_bin_ops.insert("$ne");
|
|
|
|
config.generic_bin_ops.insert("$eqx");
|
|
|
|
config.generic_bin_ops.insert("$nex");
|
|
|
|
config.generic_bin_ops.insert("$ge");
|
|
|
|
config.generic_bin_ops.insert("$gt");
|
|
|
|
|
|
|
|
config.generic_cbin_ops.insert("$add");
|
|
|
|
config.generic_cbin_ops.insert("$mul");
|
|
|
|
|
|
|
|
config.generic_bin_ops.insert("$sub");
|
|
|
|
config.generic_bin_ops.insert("$div");
|
|
|
|
config.generic_bin_ops.insert("$mod");
|
|
|
|
// config.generic_bin_ops.insert("$pow");
|
|
|
|
|
|
|
|
config.generic_uni_ops.insert("$logic_not");
|
|
|
|
config.generic_cbin_ops.insert("$logic_and");
|
|
|
|
config.generic_cbin_ops.insert("$logic_or");
|
|
|
|
|
2014-10-03 02:55:50 -05:00
|
|
|
config.generic_other_ops.insert("$alu");
|
2014-10-03 05:58:40 -05:00
|
|
|
config.generic_other_ops.insert("$macc");
|
2014-10-03 02:55:50 -05:00
|
|
|
|
2014-07-19 13:54:32 -05:00
|
|
|
log_header("Executing SHARE pass (SAT-based resource sharing).\n");
|
|
|
|
|
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
2014-07-19 20:03:04 -05:00
|
|
|
if (args[argidx] == "-force") {
|
|
|
|
config.opt_force = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-aggressive") {
|
|
|
|
config.opt_aggressive = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-fast") {
|
|
|
|
config.opt_fast = true;
|
2014-07-19 13:54:32 -05:00
|
|
|
continue;
|
|
|
|
}
|
2014-09-21 08:13:06 -05:00
|
|
|
if (args[argidx] == "-limit" && argidx+1 < args.size()) {
|
|
|
|
config.limit = atoi(args[++argidx].c_str());
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-19 13:54:32 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra_args(args, argidx, design);
|
|
|
|
|
2014-07-27 03:18:00 -05:00
|
|
|
for (auto &mod_it : design->modules_)
|
2014-07-19 13:54:32 -05:00
|
|
|
if (design->selected(mod_it.second))
|
|
|
|
ShareWorker(config, design, mod_it.second);
|
|
|
|
}
|
|
|
|
} SharePass;
|
|
|
|
|
2014-07-31 16:30:18 -05:00
|
|
|
PRIVATE_NAMESPACE_END
|