2014-09-14 03:02:00 -05:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "kernel/yosys.h"
|
2014-09-14 03:45:28 -05:00
|
|
|
#include "kernel/sigtools.h"
|
2014-09-14 03:02:00 -05:00
|
|
|
#include "kernel/macc.h"
|
|
|
|
|
|
|
|
struct AlumaccWorker
|
|
|
|
{
|
|
|
|
RTLIL::Module *module;
|
2014-09-14 03:45:28 -05:00
|
|
|
SigMap sigmap;
|
2014-09-14 03:02:00 -05:00
|
|
|
|
2014-09-14 03:45:28 -05:00
|
|
|
struct maccnode_t {
|
|
|
|
Macc macc;
|
|
|
|
RTLIL::Cell *cell;
|
|
|
|
RTLIL::SigSpec y;
|
|
|
|
int users;
|
|
|
|
};
|
|
|
|
|
2014-09-14 06:23:44 -05:00
|
|
|
struct alunode_t
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::Cell*> cells;
|
|
|
|
RTLIL::SigSpec a, b, c, y;
|
|
|
|
std::vector<std::tuple<bool, bool, bool, bool, RTLIL::SigSpec>> cmp;
|
|
|
|
bool is_signed, invert_b;
|
|
|
|
|
|
|
|
RTLIL::Cell *alu_cell;
|
|
|
|
RTLIL::SigSpec cached_lt, cached_gt, cached_eq, cached_ne;
|
|
|
|
RTLIL::SigSpec cached_cf, cached_of, cached_sf;
|
|
|
|
|
|
|
|
RTLIL::SigSpec get_lt() {
|
|
|
|
if (SIZE(cached_lt) == 0)
|
|
|
|
cached_lt = is_signed ? alu_cell->module->Xor(NEW_ID, get_of(), get_sf()) : get_cf();
|
|
|
|
return cached_lt;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec get_gt() {
|
|
|
|
if (SIZE(cached_gt) == 0)
|
|
|
|
cached_gt = alu_cell->module->Not(NEW_ID, alu_cell->module->Or(NEW_ID, get_lt(), get_eq()));
|
|
|
|
return cached_gt;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec get_eq() {
|
|
|
|
if (SIZE(cached_eq) == 0)
|
|
|
|
cached_eq = alu_cell->module->ReduceAnd(NEW_ID, alu_cell->getPort("\\X"));
|
|
|
|
return cached_eq;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec get_ne() {
|
|
|
|
if (SIZE(cached_ne) == 0)
|
|
|
|
cached_ne = alu_cell->module->Not(NEW_ID, get_eq());
|
|
|
|
return cached_ne;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec get_cf() {
|
|
|
|
if (SIZE(cached_cf) == 0) {
|
|
|
|
cached_cf = alu_cell->getPort("\\CO");
|
|
|
|
log_assert(SIZE(cached_cf) >= 1);
|
|
|
|
cached_cf = alu_cell->module->Not(NEW_ID, cached_cf[SIZE(cached_cf)-1]);
|
|
|
|
}
|
|
|
|
return cached_cf;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec get_of() {
|
|
|
|
if (SIZE(cached_of) == 0) {
|
|
|
|
cached_of = {alu_cell->getPort("\\CO"), alu_cell->getPort("\\CI")};
|
|
|
|
log_assert(SIZE(cached_of) >= 2);
|
|
|
|
cached_of = alu_cell->module->Xor(NEW_ID, cached_of[SIZE(cached_of)-1], cached_of[SIZE(cached_of)-2]);
|
|
|
|
}
|
|
|
|
return cached_of;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec get_sf() {
|
|
|
|
if (SIZE(cached_sf) == 0) {
|
|
|
|
cached_sf = alu_cell->getPort("\\Y");
|
|
|
|
cached_sf = cached_sf[SIZE(cached_sf)-1];
|
|
|
|
}
|
|
|
|
return cached_sf;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-09-14 03:45:28 -05:00
|
|
|
std::map<RTLIL::SigBit, int> bit_users;
|
|
|
|
std::map<RTLIL::SigSpec, maccnode_t*> sig_macc;
|
2014-09-14 06:23:44 -05:00
|
|
|
std::map<RTLIL::SigSig, std::set<alunode_t*>> sig_alu;
|
|
|
|
int macc_counter, alu_counter;
|
2014-09-14 03:45:28 -05:00
|
|
|
|
2014-09-14 06:23:44 -05:00
|
|
|
AlumaccWorker(RTLIL::Module *module) : module(module), sigmap(module)
|
|
|
|
{
|
|
|
|
macc_counter = 0;
|
|
|
|
alu_counter = 0;
|
|
|
|
}
|
2014-09-14 03:45:28 -05:00
|
|
|
|
|
|
|
void count_bit_users()
|
|
|
|
{
|
|
|
|
for (auto port : module->ports)
|
|
|
|
for (auto bit : sigmap(module->wire(port)))
|
|
|
|
bit_users[bit]++;
|
|
|
|
|
|
|
|
for (auto cell : module->cells())
|
|
|
|
for (auto &conn : cell->connections())
|
|
|
|
for (auto bit : sigmap(conn.second))
|
|
|
|
bit_users[bit]++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void extract_macc()
|
|
|
|
{
|
|
|
|
for (auto cell : module->selected_cells())
|
|
|
|
{
|
|
|
|
if (!cell->type.in("$pos", "$neg", "$add", "$sub", "$mul"))
|
|
|
|
continue;
|
|
|
|
|
2014-09-14 04:21:37 -05:00
|
|
|
log(" creating $macc model for %s (%s).\n", log_id(cell), log_id(cell->type));
|
|
|
|
|
2014-09-14 03:45:28 -05:00
|
|
|
maccnode_t *n = new maccnode_t;
|
|
|
|
Macc::port_t new_port;
|
|
|
|
|
|
|
|
n->cell = cell;
|
|
|
|
n->y = sigmap(cell->getPort("\\Y"));
|
|
|
|
n->users = 0;
|
|
|
|
|
|
|
|
for (auto bit : n->y)
|
|
|
|
n->users = std::max(n->users, bit_users.at(bit) - 1);
|
|
|
|
|
|
|
|
if (cell->type.in("$pos", "$neg"))
|
|
|
|
{
|
|
|
|
new_port.in_a = sigmap(cell->getPort("\\A"));
|
|
|
|
new_port.is_signed = cell->getParam("\\A_SIGNED").as_bool();
|
|
|
|
new_port.do_subtract = cell->type == "$neg";
|
|
|
|
n->macc.ports.push_back(new_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type.in("$add", "$sub"))
|
|
|
|
{
|
|
|
|
new_port.in_a = sigmap(cell->getPort("\\A"));
|
|
|
|
new_port.is_signed = cell->getParam("\\A_SIGNED").as_bool();
|
|
|
|
new_port.do_subtract = false;
|
|
|
|
n->macc.ports.push_back(new_port);
|
|
|
|
|
|
|
|
new_port.in_a = sigmap(cell->getPort("\\B"));
|
|
|
|
new_port.is_signed = cell->getParam("\\B_SIGNED").as_bool();
|
|
|
|
new_port.do_subtract = cell->type == "$sub";
|
|
|
|
n->macc.ports.push_back(new_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type.in("$mul"))
|
|
|
|
{
|
|
|
|
new_port.in_a = sigmap(cell->getPort("\\A"));
|
|
|
|
new_port.in_b = sigmap(cell->getPort("\\B"));
|
|
|
|
new_port.is_signed = cell->getParam("\\A_SIGNED").as_bool();
|
|
|
|
new_port.do_subtract = false;
|
|
|
|
n->macc.ports.push_back(new_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
log_assert(sig_macc.count(n->y) == 0);
|
|
|
|
sig_macc[n->y] = n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-14 04:21:37 -05:00
|
|
|
void merge_macc()
|
|
|
|
{
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
std::set<maccnode_t*> delete_nodes;
|
|
|
|
|
|
|
|
for (auto &it : sig_macc)
|
|
|
|
{
|
|
|
|
auto n = it.second;
|
|
|
|
|
|
|
|
if (delete_nodes.count(n))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (int i = 0; i < SIZE(n->macc.ports); i++)
|
|
|
|
{
|
|
|
|
auto &port = n->macc.ports[i];
|
|
|
|
|
|
|
|
if (SIZE(port.in_b) > 0 || sig_macc.count(port.in_a) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto other_n = sig_macc.at(port.in_a);
|
|
|
|
|
|
|
|
if (other_n->users > 1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (SIZE(other_n->y) != SIZE(n->y))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
log(" merging $macc model for %s into %s.\n", log_id(other_n->cell), log_id(n->cell));
|
|
|
|
|
|
|
|
bool do_subtract = port.do_subtract;
|
|
|
|
for (int j = 0; j < SIZE(other_n->macc.ports); j++) {
|
|
|
|
if (do_subtract)
|
|
|
|
other_n->macc.ports[j].do_subtract = !other_n->macc.ports[j].do_subtract;
|
|
|
|
if (j == 0)
|
|
|
|
n->macc.ports[i--] = other_n->macc.ports[j];
|
|
|
|
else
|
|
|
|
n->macc.ports.push_back(other_n->macc.ports[j]);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete_nodes.insert(other_n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (delete_nodes.empty())
|
|
|
|
break;
|
|
|
|
|
|
|
|
for (auto n : delete_nodes) {
|
|
|
|
sig_macc.erase(n->y);
|
|
|
|
delete n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-14 06:23:44 -05:00
|
|
|
void macc_to_alu()
|
|
|
|
{
|
|
|
|
std::set<maccnode_t*> delete_nodes;
|
|
|
|
|
|
|
|
for (auto &it : sig_macc)
|
|
|
|
{
|
|
|
|
auto n = it.second;
|
|
|
|
RTLIL::SigSpec A, B, C = n->macc.bit_ports;
|
|
|
|
bool a_signed = false, b_signed = false;
|
|
|
|
bool subtract_b = false;
|
|
|
|
alunode_t *alunode;
|
|
|
|
|
|
|
|
for (auto &port : n->macc.ports)
|
|
|
|
if (SIZE(port.in_b) > 0) {
|
|
|
|
goto next_macc;
|
|
|
|
} else if (SIZE(port.in_a) == 1 && !port.is_signed && !port.do_subtract) {
|
|
|
|
C.append(port.in_a);
|
|
|
|
} else if (SIZE(A) || port.do_subtract) {
|
|
|
|
if (SIZE(B))
|
|
|
|
goto next_macc;
|
|
|
|
B = port.in_a;
|
|
|
|
b_signed = port.is_signed;
|
|
|
|
subtract_b = port.do_subtract;
|
|
|
|
} else {
|
|
|
|
if (SIZE(A))
|
|
|
|
goto next_macc;
|
|
|
|
A = port.in_a;
|
|
|
|
a_signed = port.is_signed;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!a_signed || !b_signed) {
|
|
|
|
if (SIZE(A) == SIZE(n->y))
|
|
|
|
a_signed = false;
|
|
|
|
if (SIZE(B) == SIZE(n->y))
|
|
|
|
b_signed = false;
|
|
|
|
if (a_signed != b_signed)
|
|
|
|
goto next_macc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SIZE(A) == 0 && SIZE(C) > 0) {
|
|
|
|
A = C[0];
|
|
|
|
C.remove(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SIZE(B) == 0 && SIZE(C) > 0) {
|
|
|
|
B = C[0];
|
|
|
|
C.remove(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subtract_b)
|
|
|
|
C.append(RTLIL::S1);
|
|
|
|
|
|
|
|
if (SIZE(C) > 1)
|
|
|
|
goto next_macc;
|
|
|
|
|
2014-09-14 07:00:14 -05:00
|
|
|
if (!subtract_b && B < A && SIZE(B))
|
2014-09-14 06:23:44 -05:00
|
|
|
std::swap(A, B);
|
|
|
|
|
|
|
|
log(" creating $alu model for $macc %s.\n", log_id(n->cell));
|
|
|
|
|
|
|
|
alunode = new alunode_t;
|
|
|
|
alunode->cells.push_back(n->cell);
|
|
|
|
alunode->is_signed = a_signed;
|
|
|
|
alunode->invert_b = subtract_b;
|
|
|
|
|
|
|
|
alunode->a = A;
|
|
|
|
alunode->b = B;
|
|
|
|
alunode->c = C;
|
|
|
|
alunode->y = n->y;
|
|
|
|
|
|
|
|
sig_alu[RTLIL::SigSig(A, B)].insert(alunode);
|
|
|
|
delete_nodes.insert(n);
|
|
|
|
next_macc:;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto n : delete_nodes) {
|
|
|
|
sig_macc.erase(n->y);
|
|
|
|
delete n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-14 03:45:28 -05:00
|
|
|
void replace_macc()
|
2014-09-14 03:02:00 -05:00
|
|
|
{
|
2014-09-14 03:45:28 -05:00
|
|
|
for (auto &it : sig_macc)
|
|
|
|
{
|
|
|
|
auto n = it.second;
|
|
|
|
auto cell = module->addCell(NEW_ID, "$macc");
|
2014-09-14 07:00:14 -05:00
|
|
|
macc_counter++;
|
|
|
|
|
2014-09-14 06:23:44 -05:00
|
|
|
log(" creating $macc cell for %s: %s\n", log_id(n->cell), log_id(cell));
|
2014-09-14 07:00:14 -05:00
|
|
|
|
2014-09-15 05:22:03 -05:00
|
|
|
n->macc.optimize(SIZE(n->y));
|
2014-09-14 03:45:28 -05:00
|
|
|
n->macc.to_cell(cell);
|
|
|
|
cell->setPort("\\Y", n->y);
|
|
|
|
cell->fixup_parameters();
|
|
|
|
module->remove(n->cell);
|
|
|
|
delete n;
|
|
|
|
}
|
|
|
|
|
|
|
|
sig_macc.clear();
|
|
|
|
}
|
|
|
|
|
2014-09-14 06:23:44 -05:00
|
|
|
void extract_cmp_alu()
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::Cell*> lge_cells, eq_cells;
|
|
|
|
|
|
|
|
for (auto cell : module->selected_cells())
|
|
|
|
{
|
|
|
|
if (cell->type.in("$lt", "$le", "$ge", "$gt"))
|
|
|
|
lge_cells.push_back(cell);
|
|
|
|
if (cell->type.in("$eq", "$eqx", "$ne", "$nex"))
|
|
|
|
eq_cells.push_back(cell);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto cell : lge_cells)
|
|
|
|
{
|
|
|
|
log(" creating $alu model for %s (%s):", log_id(cell), log_id(cell->type));
|
|
|
|
|
|
|
|
bool cmp_less = cell->type.in("$lt", "$le");
|
|
|
|
bool cmp_equal = cell->type.in("$le", "$ge");
|
|
|
|
bool is_signed = cell->getParam("\\A_SIGNED").as_bool();
|
|
|
|
|
|
|
|
RTLIL::SigSpec A = sigmap(cell->getPort("\\A"));
|
|
|
|
RTLIL::SigSpec B = sigmap(cell->getPort("\\B"));
|
|
|
|
RTLIL::SigSpec Y = sigmap(cell->getPort("\\Y"));
|
|
|
|
|
2014-09-14 07:00:14 -05:00
|
|
|
if (B < A && SIZE(B)) {
|
2014-09-14 06:23:44 -05:00
|
|
|
cmp_less = !cmp_less;
|
|
|
|
std::swap(A, B);
|
|
|
|
}
|
|
|
|
|
|
|
|
alunode_t *n = nullptr;
|
|
|
|
|
|
|
|
for (auto node : sig_alu[RTLIL::SigSig(A, B)])
|
|
|
|
if (node->is_signed == is_signed && node->invert_b && node->c == RTLIL::S1) {
|
|
|
|
n = node;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n == nullptr) {
|
|
|
|
n = new alunode_t;
|
|
|
|
n->a = A;
|
|
|
|
n->b = B;
|
|
|
|
n->c = RTLIL::S1;
|
|
|
|
n->y = module->addWire(NEW_ID, std::max(SIZE(A), SIZE(B)));
|
|
|
|
n->is_signed = is_signed;
|
|
|
|
n->invert_b = true;
|
|
|
|
sig_alu[RTLIL::SigSig(A, B)].insert(n);
|
|
|
|
log(" new $alu\n");
|
|
|
|
} else {
|
|
|
|
log(" merged with %s.\n", log_id(n->cells.front()));
|
|
|
|
}
|
|
|
|
|
|
|
|
n->cells.push_back(cell);
|
|
|
|
n->cmp.push_back(std::make_tuple(cmp_less, !cmp_less, cmp_equal, false, Y));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto cell : eq_cells)
|
|
|
|
{
|
|
|
|
bool cmp_equal = cell->type.in("$eq", "$eqx");
|
|
|
|
bool is_signed = cell->getParam("\\A_SIGNED").as_bool();
|
|
|
|
|
|
|
|
RTLIL::SigSpec A = sigmap(cell->getPort("\\A"));
|
|
|
|
RTLIL::SigSpec B = sigmap(cell->getPort("\\B"));
|
|
|
|
RTLIL::SigSpec Y = sigmap(cell->getPort("\\Y"));
|
|
|
|
|
2014-09-14 07:00:14 -05:00
|
|
|
if (B < A && SIZE(B))
|
2014-09-14 06:23:44 -05:00
|
|
|
std::swap(A, B);
|
|
|
|
|
|
|
|
alunode_t *n = nullptr;
|
|
|
|
|
|
|
|
for (auto node : sig_alu[RTLIL::SigSig(A, B)])
|
|
|
|
if (node->is_signed == is_signed && node->invert_b && node->c == RTLIL::S1) {
|
|
|
|
n = node;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n != nullptr) {
|
|
|
|
log(" creating $alu model for %s (%s): merged with %s.\n", log_id(cell), log_id(cell->type), log_id(n->cells.front()));
|
|
|
|
n->cells.push_back(cell);
|
|
|
|
n->cmp.push_back(std::make_tuple(false, false, cmp_equal, !cmp_equal, Y));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void replace_alu()
|
|
|
|
{
|
|
|
|
for (auto &it1 : sig_alu)
|
|
|
|
for (auto n : it1.second)
|
|
|
|
{
|
2014-09-14 07:00:14 -05:00
|
|
|
if (SIZE(n->b) == 0 && SIZE(n->c) == 0 && SIZE(n->cmp) == 0)
|
|
|
|
{
|
|
|
|
n->alu_cell = module->addPos(NEW_ID, n->a, n->y, n->is_signed);
|
|
|
|
|
|
|
|
log(" creating $pos cell for ");
|
|
|
|
for (int i = 0; i < SIZE(n->cells); i++)
|
|
|
|
log("%s%s", i ? ", ": "", log_id(n->cells[i]));
|
|
|
|
log(": %s\n", log_id(n->alu_cell));
|
|
|
|
|
|
|
|
goto delete_node;
|
|
|
|
}
|
|
|
|
|
2014-09-14 06:23:44 -05:00
|
|
|
n->alu_cell = module->addCell(NEW_ID, "$alu");
|
2014-09-14 07:00:14 -05:00
|
|
|
alu_counter++;
|
2014-09-14 06:23:44 -05:00
|
|
|
|
|
|
|
log(" creating $alu cell for ");
|
|
|
|
for (int i = 0; i < SIZE(n->cells); i++)
|
|
|
|
log("%s%s", i ? ", ": "", log_id(n->cells[i]));
|
|
|
|
log(": %s\n", log_id(n->alu_cell));
|
|
|
|
|
|
|
|
n->alu_cell->setPort("\\A", n->a);
|
|
|
|
n->alu_cell->setPort("\\B", n->b);
|
|
|
|
n->alu_cell->setPort("\\CI", SIZE(n->c) ? n->c : RTLIL::S0);
|
|
|
|
n->alu_cell->setPort("\\BI", n->invert_b ? RTLIL::S1 : RTLIL::S0);
|
|
|
|
n->alu_cell->setPort("\\Y", n->y);
|
2014-09-14 07:00:14 -05:00
|
|
|
n->alu_cell->setPort("\\X", module->addWire(NEW_ID, SIZE(n->y)));
|
|
|
|
n->alu_cell->setPort("\\CO", module->addWire(NEW_ID, SIZE(n->y)));
|
|
|
|
n->alu_cell->fixup_parameters(n->is_signed, n->is_signed);
|
2014-09-14 06:23:44 -05:00
|
|
|
|
|
|
|
for (auto &it : n->cmp)
|
|
|
|
{
|
|
|
|
bool cmp_lt = std::get<0>(it);
|
|
|
|
bool cmp_gt = std::get<1>(it);
|
|
|
|
bool cmp_eq = std::get<2>(it);
|
|
|
|
bool cmp_ne = std::get<3>(it);
|
|
|
|
RTLIL::SigSpec cmp_y = std::get<4>(it);
|
|
|
|
|
|
|
|
RTLIL::SigSpec sig;
|
|
|
|
if (cmp_lt) sig.append(n->get_lt());
|
|
|
|
if (cmp_gt) sig.append(n->get_gt());
|
|
|
|
if (cmp_eq) sig.append(n->get_eq());
|
|
|
|
if (cmp_ne) sig.append(n->get_ne());
|
|
|
|
|
|
|
|
if (SIZE(sig) > 1)
|
|
|
|
sig = module->ReduceOr(NEW_ID, sig);
|
|
|
|
|
|
|
|
sig.extend(SIZE(cmp_y));
|
|
|
|
module->connect(cmp_y, sig);
|
|
|
|
}
|
|
|
|
|
2014-09-14 07:00:14 -05:00
|
|
|
delete_node:
|
2014-09-14 06:23:44 -05:00
|
|
|
for (auto c : n->cells)
|
|
|
|
module->remove(c);
|
|
|
|
delete n;
|
|
|
|
}
|
|
|
|
|
|
|
|
sig_alu.clear();
|
|
|
|
}
|
|
|
|
|
2014-09-14 03:45:28 -05:00
|
|
|
void run()
|
|
|
|
{
|
2014-09-14 04:21:37 -05:00
|
|
|
log("Extracting $alu and $macc cells in module %s:\n", log_id(module));
|
|
|
|
|
2014-09-14 03:45:28 -05:00
|
|
|
count_bit_users();
|
|
|
|
extract_macc();
|
2014-09-14 04:21:37 -05:00
|
|
|
merge_macc();
|
2014-09-14 06:23:44 -05:00
|
|
|
macc_to_alu();
|
2014-09-14 03:45:28 -05:00
|
|
|
replace_macc();
|
2014-09-14 06:23:44 -05:00
|
|
|
extract_cmp_alu();
|
|
|
|
replace_alu();
|
|
|
|
|
|
|
|
log(" created %d $alu and %d $macc cells.\n", alu_counter, macc_counter);
|
2014-09-14 03:02:00 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AlumaccPass : public Pass {
|
|
|
|
AlumaccPass() : Pass("alumacc", "extract ALU and MACC cells") { }
|
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
|
|
|
log(" alumacc [selection]\n");
|
|
|
|
log("\n");
|
|
|
|
log("This pass translates arithmetic operations $add, $mul, $lt, etc. to $alu and\n");
|
|
|
|
log("$macc cells.\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
log_header("Executing ALUMACC pass (create $alu and $macc cells).\n");
|
|
|
|
|
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
|
|
|
// if (args[argidx] == "-foobar") {
|
|
|
|
// foobar_mode = true;
|
|
|
|
// continue;
|
|
|
|
// }
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra_args(args, argidx, design);
|
|
|
|
|
2014-09-14 03:45:28 -05:00
|
|
|
for (auto mod : design->selected_modules())
|
|
|
|
if (!mod->has_processes_warn()) {
|
|
|
|
AlumaccWorker worker(mod);
|
|
|
|
worker.run();
|
|
|
|
}
|
2014-09-14 03:02:00 -05:00
|
|
|
}
|
|
|
|
} AlumaccPass;
|
|
|
|
|