mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #1450 from YosysHQ/clifford/fixdffmux
Fix handling of init attributes in peepopt dffmux pattern
This commit is contained in:
commit
0d037bf9d8
|
@ -0,0 +1,140 @@
|
||||||
|
/*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef PMGEN_GENERATE
|
||||||
|
#define PMGEN_GENERATE
|
||||||
|
|
||||||
|
#define GENERATE_PATTERN(pmclass, pattern) \
|
||||||
|
generate_pattern<pmclass>([](pmclass &pm, std::function<void()> f){ return pm.run_ ## pattern(f); }, #pmclass, #pattern, design)
|
||||||
|
|
||||||
|
void pmtest_addports(Module *module)
|
||||||
|
{
|
||||||
|
pool<SigBit> driven_bits, used_bits;
|
||||||
|
SigMap sigmap(module);
|
||||||
|
int icnt = 0, ocnt = 0;
|
||||||
|
|
||||||
|
for (auto cell : module->cells())
|
||||||
|
for (auto conn : cell->connections())
|
||||||
|
{
|
||||||
|
if (cell->input(conn.first))
|
||||||
|
for (auto bit : sigmap(conn.second))
|
||||||
|
used_bits.insert(bit);
|
||||||
|
if (cell->output(conn.first))
|
||||||
|
for (auto bit : sigmap(conn.second))
|
||||||
|
driven_bits.insert(bit);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto wire : vector<Wire*>(module->wires()))
|
||||||
|
{
|
||||||
|
SigSpec ibits, obits;
|
||||||
|
for (auto bit : sigmap(wire)) {
|
||||||
|
if (!used_bits.count(bit))
|
||||||
|
obits.append(bit);
|
||||||
|
if (!driven_bits.count(bit))
|
||||||
|
ibits.append(bit);
|
||||||
|
}
|
||||||
|
if (!ibits.empty()) {
|
||||||
|
Wire *w = module->addWire(stringf("\\i%d", icnt++), GetSize(ibits));
|
||||||
|
w->port_input = true;
|
||||||
|
module->connect(ibits, w);
|
||||||
|
}
|
||||||
|
if (!obits.empty()) {
|
||||||
|
Wire *w = module->addWire(stringf("\\o%d", ocnt++), GetSize(obits));
|
||||||
|
w->port_output = true;
|
||||||
|
module->connect(w, obits);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module->fixup_ports();
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class pm>
|
||||||
|
void generate_pattern(std::function<void(pm&,std::function<void()>)> run, const char *pmclass, const char *pattern, Design *design)
|
||||||
|
{
|
||||||
|
log("Generating \"%s\" patterns for pattern matcher \"%s\".\n", pattern, pmclass);
|
||||||
|
|
||||||
|
int modcnt = 0;
|
||||||
|
int maxmodcnt = 100;
|
||||||
|
int maxsubcnt = 4;
|
||||||
|
int timeout = 0;
|
||||||
|
vector<Module*> mods;
|
||||||
|
|
||||||
|
while (modcnt < maxmodcnt)
|
||||||
|
{
|
||||||
|
int submodcnt = 0, itercnt = 0, cellcnt = 0;
|
||||||
|
Module *mod = design->addModule(NEW_ID);
|
||||||
|
|
||||||
|
while (modcnt < maxmodcnt && submodcnt < maxsubcnt && itercnt++ < 1000)
|
||||||
|
{
|
||||||
|
if (timeout++ > 10000)
|
||||||
|
log_error("pmgen generator is stuck: 10000 iterations with no matching module generated.\n");
|
||||||
|
|
||||||
|
pm matcher(mod, mod->cells());
|
||||||
|
|
||||||
|
matcher.rng(1);
|
||||||
|
matcher.rngseed += modcnt;
|
||||||
|
matcher.rng(1);
|
||||||
|
matcher.rngseed += submodcnt;
|
||||||
|
matcher.rng(1);
|
||||||
|
matcher.rngseed += itercnt;
|
||||||
|
matcher.rng(1);
|
||||||
|
matcher.rngseed += cellcnt;
|
||||||
|
matcher.rng(1);
|
||||||
|
|
||||||
|
if (GetSize(mod->cells()) != cellcnt)
|
||||||
|
{
|
||||||
|
bool found_match = false;
|
||||||
|
run(matcher, [&](){ found_match = true; });
|
||||||
|
cellcnt = GetSize(mod->cells());
|
||||||
|
|
||||||
|
if (found_match) {
|
||||||
|
Module *m = design->addModule(stringf("\\pmtest_%s_%s_%05d",
|
||||||
|
pmclass, pattern, modcnt++));
|
||||||
|
log("Creating module %s with %d cells.\n", log_id(m), cellcnt);
|
||||||
|
mod->cloneInto(m);
|
||||||
|
pmtest_addports(m);
|
||||||
|
mods.push_back(m);
|
||||||
|
submodcnt++;
|
||||||
|
timeout = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
matcher.generate_mode = true;
|
||||||
|
run(matcher, [](){});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (submodcnt && maxsubcnt < (1 << 16))
|
||||||
|
maxsubcnt *= 2;
|
||||||
|
|
||||||
|
design->remove(mod);
|
||||||
|
}
|
||||||
|
|
||||||
|
Module *m = design->addModule(stringf("\\pmtest_%s_%s", pmclass, pattern));
|
||||||
|
log("Creating module %s with %d cells.\n", log_id(m), GetSize(mods));
|
||||||
|
for (auto mod : mods) {
|
||||||
|
Cell *c = m->addCell(mod->name, mod->name);
|
||||||
|
for (auto port : mod->ports) {
|
||||||
|
Wire *w = m->addWire(NEW_ID, GetSize(mod->wire(port)));
|
||||||
|
c->setPort(port, w);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pmtest_addports(m);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
|
@ -24,8 +24,11 @@ USING_YOSYS_NAMESPACE
|
||||||
PRIVATE_NAMESPACE_BEGIN
|
PRIVATE_NAMESPACE_BEGIN
|
||||||
|
|
||||||
bool did_something;
|
bool did_something;
|
||||||
|
dict<SigBit, State> initbits;
|
||||||
|
pool<SigBit> rminitbits;
|
||||||
|
|
||||||
#include "passes/pmgen/peepopt_pm.h"
|
#include "passes/pmgen/peepopt_pm.h"
|
||||||
|
#include "generate.h"
|
||||||
|
|
||||||
struct PeepoptPass : public Pass {
|
struct PeepoptPass : public Pass {
|
||||||
PeepoptPass() : Pass("peepopt", "collection of peephole optimizers") { }
|
PeepoptPass() : Pass("peepopt", "collection of peephole optimizers") { }
|
||||||
|
@ -40,27 +43,86 @@ struct PeepoptPass : public Pass {
|
||||||
}
|
}
|
||||||
void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
|
void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
|
||||||
{
|
{
|
||||||
|
std::string genmode;
|
||||||
|
|
||||||
log_header(design, "Executing PEEPOPT pass (run peephole optimizers).\n");
|
log_header(design, "Executing PEEPOPT pass (run peephole optimizers).\n");
|
||||||
|
|
||||||
size_t argidx;
|
size_t argidx;
|
||||||
for (argidx = 1; argidx < args.size(); argidx++)
|
for (argidx = 1; argidx < args.size(); argidx++)
|
||||||
{
|
{
|
||||||
// if (args[argidx] == "-singleton") {
|
if (args[argidx] == "-generate" && argidx+1 < args.size()) {
|
||||||
// singleton_mode = true;
|
genmode = args[++argidx];
|
||||||
// continue;
|
continue;
|
||||||
// }
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
extra_args(args, argidx, design);
|
extra_args(args, argidx, design);
|
||||||
|
|
||||||
for (auto module : design->selected_modules()) {
|
if (!genmode.empty())
|
||||||
|
{
|
||||||
|
initbits.clear();
|
||||||
|
rminitbits.clear();
|
||||||
|
|
||||||
|
if (genmode == "shiftmul")
|
||||||
|
GENERATE_PATTERN(peepopt_pm, shiftmul);
|
||||||
|
else if (genmode == "muldiv")
|
||||||
|
GENERATE_PATTERN(peepopt_pm, muldiv);
|
||||||
|
else if (genmode == "dffmux")
|
||||||
|
GENERATE_PATTERN(peepopt_pm, dffmux);
|
||||||
|
else
|
||||||
|
log_abort();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto module : design->selected_modules())
|
||||||
|
{
|
||||||
did_something = true;
|
did_something = true;
|
||||||
while (did_something) {
|
|
||||||
|
while (did_something)
|
||||||
|
{
|
||||||
did_something = false;
|
did_something = false;
|
||||||
peepopt_pm pm(module, module->selected_cells());
|
initbits.clear();
|
||||||
|
rminitbits.clear();
|
||||||
|
|
||||||
|
peepopt_pm pm(module);
|
||||||
|
|
||||||
|
for (auto w : module->wires()) {
|
||||||
|
auto it = w->attributes.find(ID(init));
|
||||||
|
if (it != w->attributes.end()) {
|
||||||
|
SigSpec sig = pm.sigmap(w);
|
||||||
|
Const val = it->second;
|
||||||
|
int len = std::min(GetSize(sig), GetSize(val));
|
||||||
|
for (int i = 0; i < len; i++) {
|
||||||
|
if (sig[i].wire == nullptr)
|
||||||
|
continue;
|
||||||
|
if (val[i] != State::S0 && val[i] != State::S1)
|
||||||
|
continue;
|
||||||
|
initbits[sig[i]] = val[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pm.setup(module->selected_cells());
|
||||||
|
|
||||||
pm.run_shiftmul();
|
pm.run_shiftmul();
|
||||||
pm.run_muldiv();
|
pm.run_muldiv();
|
||||||
pm.run_dffmux();
|
pm.run_dffmux();
|
||||||
|
|
||||||
|
for (auto w : module->wires()) {
|
||||||
|
auto it = w->attributes.find(ID(init));
|
||||||
|
if (it != w->attributes.end()) {
|
||||||
|
SigSpec sig = pm.sigmap(w);
|
||||||
|
Const &val = it->second;
|
||||||
|
int len = std::min(GetSize(sig), GetSize(val));
|
||||||
|
for (int i = 0; i < len; i++) {
|
||||||
|
if (rminitbits.count(sig[i]))
|
||||||
|
val[i] = State::Sx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
initbits.clear();
|
||||||
|
rminitbits.clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,12 +60,13 @@ code
|
||||||
SigSpec Q = port(dff, \Q);
|
SigSpec Q = port(dff, \Q);
|
||||||
int width = GetSize(D);
|
int width = GetSize(D);
|
||||||
|
|
||||||
SigSpec &dffD = dff->connections_.at(\D);
|
SigSpec dffD = dff->getPort(\D);
|
||||||
SigSpec &dffQ = dff->connections_.at(\Q);
|
SigSpec dffQ = dff->getPort(\Q);
|
||||||
Const init;
|
|
||||||
for (const auto &b : Q) {
|
Const initval;
|
||||||
auto it = b.wire->attributes.find(\init);
|
for (auto b : Q) {
|
||||||
init.bits.push_back(it == b.wire->attributes.end() ? State::Sx : it->second[b.offset]);
|
auto it = initbits.find(b);
|
||||||
|
initval.bits.push_back(it == initbits.end() ? State::Sx : it->second);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto cmpx = [=](State lhs, State rhs) {
|
auto cmpx = [=](State lhs, State rhs) {
|
||||||
|
@ -76,56 +77,68 @@ code
|
||||||
|
|
||||||
int i = width-1;
|
int i = width-1;
|
||||||
while (i > 1) {
|
while (i > 1) {
|
||||||
// log_dump(i, D[i], D[i-1], rst[i], rst[i-1], init[i], init[i-1]);
|
|
||||||
if (D[i] != D[i-1])
|
if (D[i] != D[i-1])
|
||||||
break;
|
break;
|
||||||
if (!cmpx(rst[i], rst[i-1]))
|
if (!cmpx(rst[i], rst[i-1]))
|
||||||
break;
|
break;
|
||||||
if (!cmpx(init[i], init[i-1]))
|
if (!cmpx(initval[i], initval[i-1]))
|
||||||
break;
|
break;
|
||||||
if (!cmpx(rst[i], init[i]))
|
if (!cmpx(rst[i], initval[i]))
|
||||||
break;
|
break;
|
||||||
|
rminitbits.insert(Q[i]);
|
||||||
module->connect(Q[i], Q[i-1]);
|
module->connect(Q[i], Q[i-1]);
|
||||||
i--;
|
i--;
|
||||||
}
|
}
|
||||||
if (i < width-1) {
|
if (i < width-1) {
|
||||||
did_something = true;
|
did_something = true;
|
||||||
if (cemux) {
|
if (cemux) {
|
||||||
SigSpec &ceA = cemux->connections_.at(\A);
|
SigSpec ceA = cemux->getPort(\A);
|
||||||
SigSpec &ceB = cemux->connections_.at(\B);
|
SigSpec ceB = cemux->getPort(\B);
|
||||||
SigSpec &ceY = cemux->connections_.at(\Y);
|
SigSpec ceY = cemux->getPort(\Y);
|
||||||
ceA.remove(i, width-1-i);
|
ceA.remove(i, width-1-i);
|
||||||
ceB.remove(i, width-1-i);
|
ceB.remove(i, width-1-i);
|
||||||
ceY.remove(i, width-1-i);
|
ceY.remove(i, width-1-i);
|
||||||
|
cemux->setPort(\A, ceA);
|
||||||
|
cemux->setPort(\B, ceB);
|
||||||
|
cemux->setPort(\Y, ceY);
|
||||||
cemux->fixup_parameters();
|
cemux->fixup_parameters();
|
||||||
|
blacklist(cemux);
|
||||||
}
|
}
|
||||||
if (rstmux) {
|
if (rstmux) {
|
||||||
SigSpec &rstA = rstmux->connections_.at(\A);
|
SigSpec rstA = rstmux->getPort(\A);
|
||||||
SigSpec &rstB = rstmux->connections_.at(\B);
|
SigSpec rstB = rstmux->getPort(\B);
|
||||||
SigSpec &rstY = rstmux->connections_.at(\Y);
|
SigSpec rstY = rstmux->getPort(\Y);
|
||||||
rstA.remove(i, width-1-i);
|
rstA.remove(i, width-1-i);
|
||||||
rstB.remove(i, width-1-i);
|
rstB.remove(i, width-1-i);
|
||||||
rstY.remove(i, width-1-i);
|
rstY.remove(i, width-1-i);
|
||||||
|
rstmux->setPort(\A, rstA);
|
||||||
|
rstmux->setPort(\B, rstB);
|
||||||
|
rstmux->setPort(\Y, rstY);
|
||||||
rstmux->fixup_parameters();
|
rstmux->fixup_parameters();
|
||||||
|
blacklist(rstmux);
|
||||||
}
|
}
|
||||||
dffD.remove(i, width-1-i);
|
dffD.remove(i, width-1-i);
|
||||||
dffQ.remove(i, width-1-i);
|
dffQ.remove(i, width-1-i);
|
||||||
|
dff->setPort(\D, dffD);
|
||||||
|
dff->setPort(\Q, dffQ);
|
||||||
dff->fixup_parameters();
|
dff->fixup_parameters();
|
||||||
|
blacklist(dff);
|
||||||
|
|
||||||
log("dffcemux pattern in %s: dff=%s, cemux=%s, rstmux=%s; removed top %d bits.\n", log_id(module), log_id(dff), log_id(cemux, "n/a"), log_id(rstmux, "n/a"), width-1-i);
|
log("dffcemux pattern in %s: dff=%s, cemux=%s, rstmux=%s; removed top %d bits.\n", log_id(module), log_id(dff), log_id(cemux, "n/a"), log_id(rstmux, "n/a"), width-1-i);
|
||||||
width = i+1;
|
width = i+1;
|
||||||
}
|
}
|
||||||
if (cemux) {
|
if (cemux) {
|
||||||
SigSpec &ceA = cemux->connections_.at(\A);
|
SigSpec ceA = cemux->getPort(\A);
|
||||||
SigSpec &ceB = cemux->connections_.at(\B);
|
SigSpec ceB = cemux->getPort(\B);
|
||||||
SigSpec &ceY = cemux->connections_.at(\Y);
|
SigSpec ceY = cemux->getPort(\Y);
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
for (int i = width-1; i >= 0; i--) {
|
for (int i = width-1; i >= 0; i--) {
|
||||||
if (D[i].wire)
|
if (D[i].wire)
|
||||||
continue;
|
continue;
|
||||||
if (cmpx(rst[i], D[i].data) && cmpx(init[i], D[i].data)) {
|
if (cmpx(rst[i], D[i].data) && cmpx(initval[i], D[i].data)) {
|
||||||
count++;
|
count++;
|
||||||
|
rminitbits.insert(Q[i]);
|
||||||
module->connect(Q[i], D[i]);
|
module->connect(Q[i], D[i]);
|
||||||
ceA.remove(i);
|
ceA.remove(i);
|
||||||
ceB.remove(i);
|
ceB.remove(i);
|
||||||
|
@ -134,10 +147,21 @@ code
|
||||||
dffQ.remove(i);
|
dffQ.remove(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (count > 0) {
|
if (count > 0)
|
||||||
|
{
|
||||||
did_something = true;
|
did_something = true;
|
||||||
|
|
||||||
|
cemux->setPort(\A, ceA);
|
||||||
|
cemux->setPort(\B, ceB);
|
||||||
|
cemux->setPort(\Y, ceY);
|
||||||
cemux->fixup_parameters();
|
cemux->fixup_parameters();
|
||||||
|
blacklist(cemux);
|
||||||
|
|
||||||
|
dff->setPort(\D, dffD);
|
||||||
|
dff->setPort(\Q, dffQ);
|
||||||
dff->fixup_parameters();
|
dff->fixup_parameters();
|
||||||
|
blacklist(dff);
|
||||||
|
|
||||||
log("dffcemux pattern in %s: dff=%s, cemux=%s, rstmux=%s; removed %d constant bits.\n", log_id(module), log_id(dff), log_id(cemux), log_id(rstmux, "n/a"), count);
|
log("dffcemux pattern in %s: dff=%s, cemux=%s, rstmux=%s; removed %d constant bits.\n", log_id(module), log_id(dff), log_id(cemux), log_id(rstmux, "n/a"), count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -362,6 +362,7 @@ with open(outfile, "w") as f:
|
||||||
print(" Module *module;", file=f)
|
print(" Module *module;", file=f)
|
||||||
print(" SigMap sigmap;", file=f)
|
print(" SigMap sigmap;", file=f)
|
||||||
print(" std::function<void()> on_accept;", file=f)
|
print(" std::function<void()> on_accept;", file=f)
|
||||||
|
print(" bool setup_done;", file=f)
|
||||||
print(" bool generate_mode;", file=f)
|
print(" bool generate_mode;", file=f)
|
||||||
print(" int accept_cnt;", file=f)
|
print(" int accept_cnt;", file=f)
|
||||||
print("", file=f)
|
print("", file=f)
|
||||||
|
@ -477,7 +478,17 @@ with open(outfile, "w") as f:
|
||||||
print("", file=f)
|
print("", file=f)
|
||||||
|
|
||||||
print(" {}_pm(Module *module, const vector<Cell*> &cells) :".format(prefix), file=f)
|
print(" {}_pm(Module *module, const vector<Cell*> &cells) :".format(prefix), file=f)
|
||||||
print(" module(module), sigmap(module), generate_mode(false), rngseed(12345678) {", file=f)
|
print(" module(module), sigmap(module), setup_done(false), generate_mode(false), rngseed(12345678) {", file=f)
|
||||||
|
print(" setup(cells);", file=f)
|
||||||
|
print(" }", file=f)
|
||||||
|
print("", file=f)
|
||||||
|
|
||||||
|
print(" {}_pm(Module *module) :".format(prefix), file=f)
|
||||||
|
print(" module(module), sigmap(module), setup_done(false), generate_mode(false), rngseed(12345678) {", file=f)
|
||||||
|
print(" }", file=f)
|
||||||
|
print("", file=f)
|
||||||
|
|
||||||
|
print(" void setup(const vector<Cell*> &cells) {", file=f)
|
||||||
for current_pattern in sorted(patterns.keys()):
|
for current_pattern in sorted(patterns.keys()):
|
||||||
for s, t in sorted(udata_types[current_pattern].items()):
|
for s, t in sorted(udata_types[current_pattern].items()):
|
||||||
if t.endswith("*"):
|
if t.endswith("*"):
|
||||||
|
@ -485,6 +496,8 @@ with open(outfile, "w") as f:
|
||||||
else:
|
else:
|
||||||
print(" ud_{}.{} = {}();".format(current_pattern, s, t), file=f)
|
print(" ud_{}.{} = {}();".format(current_pattern, s, t), file=f)
|
||||||
current_pattern = None
|
current_pattern = None
|
||||||
|
print(" log_assert(!setup_done);", file=f)
|
||||||
|
print(" setup_done = true;", file=f)
|
||||||
print(" for (auto port : module->ports)", file=f)
|
print(" for (auto port : module->ports)", file=f)
|
||||||
print(" add_siguser(module->wire(port), nullptr);", file=f)
|
print(" add_siguser(module->wire(port), nullptr);", file=f)
|
||||||
print(" for (auto cell : module->cells())", file=f)
|
print(" for (auto cell : module->cells())", file=f)
|
||||||
|
@ -539,6 +552,7 @@ with open(outfile, "w") as f:
|
||||||
|
|
||||||
for current_pattern in sorted(patterns.keys()):
|
for current_pattern in sorted(patterns.keys()):
|
||||||
print(" int run_{}(std::function<void()> on_accept_f) {{".format(current_pattern), file=f)
|
print(" int run_{}(std::function<void()> on_accept_f) {{".format(current_pattern), file=f)
|
||||||
|
print(" log_assert(setup_done);", file=f)
|
||||||
print(" accept_cnt = 0;", file=f)
|
print(" accept_cnt = 0;", file=f)
|
||||||
print(" on_accept = on_accept_f;", file=f)
|
print(" on_accept = on_accept_f;", file=f)
|
||||||
print(" rollback = 0;", file=f)
|
print(" rollback = 0;", file=f)
|
||||||
|
|
|
@ -23,13 +23,11 @@
|
||||||
USING_YOSYS_NAMESPACE
|
USING_YOSYS_NAMESPACE
|
||||||
PRIVATE_NAMESPACE_BEGIN
|
PRIVATE_NAMESPACE_BEGIN
|
||||||
|
|
||||||
// for peepopt_pm
|
|
||||||
bool did_something;
|
|
||||||
|
|
||||||
#include "passes/pmgen/test_pmgen_pm.h"
|
#include "passes/pmgen/test_pmgen_pm.h"
|
||||||
#include "passes/pmgen/ice40_dsp_pm.h"
|
#include "passes/pmgen/ice40_dsp_pm.h"
|
||||||
#include "passes/pmgen/xilinx_srl_pm.h"
|
#include "passes/pmgen/xilinx_srl_pm.h"
|
||||||
#include "passes/pmgen/peepopt_pm.h"
|
|
||||||
|
#include "generate.h"
|
||||||
|
|
||||||
void reduce_chain(test_pmgen_pm &pm)
|
void reduce_chain(test_pmgen_pm &pm)
|
||||||
{
|
{
|
||||||
|
@ -118,123 +116,6 @@ void opt_eqpmux(test_pmgen_pm &pm)
|
||||||
log(" -> %s (%s)\n", log_id(c), log_id(c->type));
|
log(" -> %s (%s)\n", log_id(c), log_id(c->type));
|
||||||
}
|
}
|
||||||
|
|
||||||
#define GENERATE_PATTERN(pmclass, pattern) \
|
|
||||||
generate_pattern<pmclass>([](pmclass &pm, std::function<void()> f){ return pm.run_ ## pattern(f); }, #pmclass, #pattern, design)
|
|
||||||
|
|
||||||
void pmtest_addports(Module *module)
|
|
||||||
{
|
|
||||||
pool<SigBit> driven_bits, used_bits;
|
|
||||||
SigMap sigmap(module);
|
|
||||||
int icnt = 0, ocnt = 0;
|
|
||||||
|
|
||||||
for (auto cell : module->cells())
|
|
||||||
for (auto conn : cell->connections())
|
|
||||||
{
|
|
||||||
if (cell->input(conn.first))
|
|
||||||
for (auto bit : sigmap(conn.second))
|
|
||||||
used_bits.insert(bit);
|
|
||||||
if (cell->output(conn.first))
|
|
||||||
for (auto bit : sigmap(conn.second))
|
|
||||||
driven_bits.insert(bit);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (auto wire : vector<Wire*>(module->wires()))
|
|
||||||
{
|
|
||||||
SigSpec ibits, obits;
|
|
||||||
for (auto bit : sigmap(wire)) {
|
|
||||||
if (!used_bits.count(bit))
|
|
||||||
obits.append(bit);
|
|
||||||
if (!driven_bits.count(bit))
|
|
||||||
ibits.append(bit);
|
|
||||||
}
|
|
||||||
if (!ibits.empty()) {
|
|
||||||
Wire *w = module->addWire(stringf("\\i%d", icnt++), GetSize(ibits));
|
|
||||||
w->port_input = true;
|
|
||||||
module->connect(ibits, w);
|
|
||||||
}
|
|
||||||
if (!obits.empty()) {
|
|
||||||
Wire *w = module->addWire(stringf("\\o%d", ocnt++), GetSize(obits));
|
|
||||||
w->port_output = true;
|
|
||||||
module->connect(w, obits);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module->fixup_ports();
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class pm>
|
|
||||||
void generate_pattern(std::function<void(pm&,std::function<void()>)> run, const char *pmclass, const char *pattern, Design *design)
|
|
||||||
{
|
|
||||||
log("Generating \"%s\" patterns for pattern matcher \"%s\".\n", pattern, pmclass);
|
|
||||||
|
|
||||||
int modcnt = 0;
|
|
||||||
int maxmodcnt = 100;
|
|
||||||
int maxsubcnt = 4;
|
|
||||||
int timeout = 0;
|
|
||||||
vector<Module*> mods;
|
|
||||||
|
|
||||||
while (modcnt < maxmodcnt)
|
|
||||||
{
|
|
||||||
int submodcnt = 0, itercnt = 0, cellcnt = 0;
|
|
||||||
Module *mod = design->addModule(NEW_ID);
|
|
||||||
|
|
||||||
while (modcnt < maxmodcnt && submodcnt < maxsubcnt && itercnt++ < 1000)
|
|
||||||
{
|
|
||||||
if (timeout++ > 10000)
|
|
||||||
log_error("pmgen generator is stuck: 10000 iterations with no matching module generated.\n");
|
|
||||||
|
|
||||||
pm matcher(mod, mod->cells());
|
|
||||||
|
|
||||||
matcher.rng(1);
|
|
||||||
matcher.rngseed += modcnt;
|
|
||||||
matcher.rng(1);
|
|
||||||
matcher.rngseed += submodcnt;
|
|
||||||
matcher.rng(1);
|
|
||||||
matcher.rngseed += itercnt;
|
|
||||||
matcher.rng(1);
|
|
||||||
matcher.rngseed += cellcnt;
|
|
||||||
matcher.rng(1);
|
|
||||||
|
|
||||||
if (GetSize(mod->cells()) != cellcnt)
|
|
||||||
{
|
|
||||||
bool found_match = false;
|
|
||||||
run(matcher, [&](){ found_match = true; });
|
|
||||||
cellcnt = GetSize(mod->cells());
|
|
||||||
|
|
||||||
if (found_match) {
|
|
||||||
Module *m = design->addModule(stringf("\\pmtest_%s_%s_%05d",
|
|
||||||
pmclass, pattern, modcnt++));
|
|
||||||
log("Creating module %s with %d cells.\n", log_id(m), cellcnt);
|
|
||||||
mod->cloneInto(m);
|
|
||||||
pmtest_addports(m);
|
|
||||||
mods.push_back(m);
|
|
||||||
submodcnt++;
|
|
||||||
timeout = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
matcher.generate_mode = true;
|
|
||||||
run(matcher, [](){});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (submodcnt && maxsubcnt < (1 << 16))
|
|
||||||
maxsubcnt *= 2;
|
|
||||||
|
|
||||||
design->remove(mod);
|
|
||||||
}
|
|
||||||
|
|
||||||
Module *m = design->addModule(stringf("\\pmtest_%s_%s", pmclass, pattern));
|
|
||||||
log("Creating module %s with %d cells.\n", log_id(m), GetSize(mods));
|
|
||||||
for (auto mod : mods) {
|
|
||||||
Cell *c = m->addCell(mod->name, mod->name);
|
|
||||||
for (auto port : mod->ports) {
|
|
||||||
Wire *w = m->addWire(NEW_ID, GetSize(mod->wire(port)));
|
|
||||||
c->setPort(port, w);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pmtest_addports(m);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct TestPmgenPass : public Pass {
|
struct TestPmgenPass : public Pass {
|
||||||
TestPmgenPass() : Pass("test_pmgen", "test pass for pmgen") { }
|
TestPmgenPass() : Pass("test_pmgen", "test pass for pmgen") { }
|
||||||
void help() YS_OVERRIDE
|
void help() YS_OVERRIDE
|
||||||
|
@ -355,12 +236,6 @@ struct TestPmgenPass : public Pass {
|
||||||
if (pattern == "xilinx_srl.variable")
|
if (pattern == "xilinx_srl.variable")
|
||||||
return GENERATE_PATTERN(xilinx_srl_pm, variable);
|
return GENERATE_PATTERN(xilinx_srl_pm, variable);
|
||||||
|
|
||||||
if (pattern == "peepopt-muldiv")
|
|
||||||
return GENERATE_PATTERN(peepopt_pm, muldiv);
|
|
||||||
|
|
||||||
if (pattern == "peepopt-shiftmul")
|
|
||||||
return GENERATE_PATTERN(peepopt_pm, shiftmul);
|
|
||||||
|
|
||||||
log_cmd_error("Unknown pattern: %s\n", pattern.c_str());
|
log_cmd_error("Unknown pattern: %s\n", pattern.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue