1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/*
* yosys -- Yosys Open SYnthesis Suite
*
* Copyright (C) 2014 Clifford Wolf <clifford@clifford.at>
* Copyright (C) 2014 Johann Glaser <Johann.Glaser@gmx.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"
#include "kernel/satgen.h"
USING_YOSYS_NAMESPACE
PRIVATE_NAMESPACE_BEGIN
static uint32_t xorshift32_state = 123456789;
static uint32_t xorshift32(uint32_t limit) {
xorshift32_state ^= xorshift32_state << 13;
xorshift32_state ^= xorshift32_state >> 17;
xorshift32_state ^= xorshift32_state << 5;
return xorshift32_state % limit;
}
static RTLIL::Wire *getw(std::vector<RTLIL::Wire*> &wires, RTLIL::Wire *w)
{
while (1) {
int idx = xorshift32(GetSize(wires));
if (wires[idx] != w && !wires[idx]->port_output)
return wires[idx];
}
}
static void test_abcloop()
{
log("Rng seed value: %u\n", int(xorshift32_state));
RTLIL::Design *design = new RTLIL::Design;
RTLIL::Module *module = nullptr;
RTLIL::SigSpec in_sig, out_sig;
bool truthtab[16][4];
int create_cycles = 0;
while (1)
{
module = design->addModule("\\uut");
create_cycles++;
in_sig = {};
out_sig = {};
std::vector<RTLIL::Wire*> wires;
for (int i = 0; i < 4; i++) {
RTLIL::Wire *w = module->addWire(stringf("\\i%d", i));
w->port_input = true;
wires.push_back(w);
in_sig.append(w);
}
for (int i = 0; i < 4; i++) {
RTLIL::Wire *w = module->addWire(stringf("\\o%d", i));
w->port_output = true;
wires.push_back(w);
out_sig.append(w);
}
for (int i = 0; i < 16; i++) {
RTLIL::Wire *w = module->addWire(stringf("\\t%d", i));
wires.push_back(w);
}
for (auto w : wires)
if (!w->port_input)
switch (xorshift32(12))
{
case 0:
module->addNotGate(w->name.str() + "g", getw(wires, w), w);
break;
case 1:
module->addAndGate(w->name.str() + "g", getw(wires, w), getw(wires, w), w);
break;
case 2:
module->addNandGate(w->name.str() + "g", getw(wires, w), getw(wires, w), w);
break;
case 3:
module->addOrGate(w->name.str() + "g", getw(wires, w), getw(wires, w), w);
break;
case 4:
module->addNorGate(w->name.str() + "g", getw(wires, w), getw(wires, w), w);
break;
case 5:
module->addXorGate(w->name.str() + "g", getw(wires, w), getw(wires, w), w);
break;
case 6:
module->addXnorGate(w->name.str() + "g", getw(wires, w), getw(wires, w), w);
break;
case 7:
module->addMuxGate(w->name.str() + "g", getw(wires, w), getw(wires, w), getw(wires, w), w);
break;
case 8:
module->addAoi3Gate(w->name.str() + "g", getw(wires, w), getw(wires, w), getw(wires, w), w);
break;
case 9:
module->addOai3Gate(w->name.str() + "g", getw(wires, w), getw(wires, w), getw(wires, w), w);
break;
case 10:
module->addAoi4Gate(w->name.str() + "g", getw(wires, w), getw(wires, w), getw(wires, w), getw(wires, w), w);
break;
case 11:
module->addOai4Gate(w->name.str() + "g", getw(wires, w), getw(wires, w), getw(wires, w), getw(wires, w), w);
break;
}
module->fixup_ports();
Pass::call(design, "clean");
ezSatPtr ez;
SigMap sigmap(module);
SatGen satgen(ez.get(), &sigmap);
for (auto c : module->cells()) {
bool ok YS_ATTRIBUTE(unused) = satgen.importCell(c);
log_assert(ok);
}
std::vector<int> in_vec = satgen.importSigSpec(in_sig);
std::vector<int> inverse_in_vec = ez->vec_not(in_vec);
std::vector<int> out_vec = satgen.importSigSpec(out_sig);
for (int i = 0; i < 16; i++)
{
std::vector<int> assumptions;
for (int j = 0; j < GetSize(in_vec); j++)
assumptions.push_back((i & (1 << j)) ? in_vec.at(j) : inverse_in_vec.at(j));
std::vector<bool> results;
if (!ez->solve(out_vec, results, assumptions)) {
log("No stable solution for input %d found -> recreate module.\n", i);
goto recreate_module;
}
for (int j = 0; j < 4; j++)
truthtab[i][j] = results[j];
assumptions.push_back(ez->vec_ne(out_vec, ez->vec_const(results)));
std::vector<bool> results2;
if (ez->solve(out_vec, results2, assumptions)) {
log("Two stable solutions for input %d found -> recreate module.\n", i);
goto recreate_module;
}
}
break;
recreate_module:
design->remove(module);
}
log("Found viable UUT after %d cycles:\n", create_cycles);
Pass::call(design, "write_ilang");
Pass::call(design, "abc");
log("\n");
log("Pre- and post-abc truth table:\n");
ezSatPtr ez;
SigMap sigmap(module);
SatGen satgen(ez.get(), &sigmap);
for (auto c : module->cells()) {
bool ok YS_ATTRIBUTE(unused) = satgen.importCell(c);
log_assert(ok);
}
std::vector<int> in_vec = satgen.importSigSpec(in_sig);
std::vector<int> inverse_in_vec = ez->vec_not(in_vec);
std::vector<int> out_vec = satgen.importSigSpec(out_sig);
bool found_error = false;
bool truthtab2[16][4];
for (int i = 0; i < 16; i++)
{
std::vector<int> assumptions;
for (int j = 0; j < GetSize(in_vec); j++)
assumptions.push_back((i & (1 << j)) ? in_vec.at(j) : inverse_in_vec.at(j));
for (int j = 0; j < 4; j++)
truthtab2[i][j] = truthtab[i][j];
std::vector<bool> results;
if (!ez->solve(out_vec, results, assumptions)) {
log("No stable solution for input %d found.\n", i);
found_error = true;
continue;
}
for (int j = 0; j < 4; j++)
truthtab2[i][j] = results[j];
assumptions.push_back(ez->vec_ne(out_vec, ez->vec_const(results)));
std::vector<bool> results2;
if (ez->solve(out_vec, results2, assumptions)) {
log("Two stable solutions for input %d found -> recreate module.\n", i);
found_error = true;
}
}
for (int i = 0; i < 16; i++) {
log("%3d ", i);
for (int j = 0; j < 4; j++)
log("%c", truthtab[i][j] ? '1' : '0');
log(" ");
for (int j = 0; j < 4; j++)
log("%c", truthtab2[i][j] ? '1' : '0');
for (int j = 0; j < 4; j++)
if (truthtab[i][j] != truthtab2[i][j]) {
found_error = true;
log(" !");
break;
}
log("\n");
}
log_assert(found_error == false);
log("\n");
}
struct TestAbcloopPass : public Pass {
TestAbcloopPass() : Pass("test_abcloop", "automatically test handling of loops in abc command") { }
virtual void help()
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
log(" test_abcloop [options]\n");
log("\n");
log("Test handling of logic loops in ABC.\n");
log("\n");
log(" -n {integer}\n");
log(" create this number of circuits and test them (default = 100).\n");
log("\n");
log(" -s {positive_integer}\n");
log(" use this value as rng seed value (default = unix time).\n");
log("\n");
}
virtual void execute(std::vector<std::string> args, RTLIL::Design*)
{
int num_iter = 100;
xorshift32_state = 0;
int argidx;
for (argidx = 1; argidx < GetSize(args); argidx++)
{
if (args[argidx] == "-n" && argidx+1 < GetSize(args)) {
num_iter = atoi(args[++argidx].c_str());
continue;
}
if (args[argidx] == "-s" && argidx+1 < GetSize(args)) {
xorshift32_state = atoi(args[++argidx].c_str());
continue;
}
break;
}
if (xorshift32_state == 0)
xorshift32_state = time(NULL) & 0x7fffffff;
for (int i = 0; i < num_iter; i++)
test_abcloop();
}
} TestAbcloopPass;
PRIVATE_NAMESPACE_END
|