2019-02-08 16:53:12 -06:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "kernel/yosys.h"
|
|
|
|
#include "kernel/sigtools.h"
|
|
|
|
|
|
|
|
USING_YOSYS_NAMESPACE
|
|
|
|
PRIVATE_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
void aiger_encode(std::ostream &f, int x)
|
|
|
|
{
|
|
|
|
log_assert(x >= 0);
|
|
|
|
|
|
|
|
while (x & ~0x7f) {
|
|
|
|
f.put((x & 0x7f) | 0x80);
|
|
|
|
x = x >> 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
f.put(x);
|
|
|
|
}
|
|
|
|
|
2019-02-11 17:18:42 -06:00
|
|
|
struct XAigerWriter
|
2019-02-08 16:53:12 -06:00
|
|
|
{
|
|
|
|
Module *module;
|
|
|
|
bool zinit_mode;
|
|
|
|
SigMap sigmap;
|
|
|
|
|
|
|
|
dict<SigBit, bool> init_map;
|
|
|
|
pool<SigBit> input_bits, output_bits;
|
|
|
|
dict<SigBit, SigBit> not_map, ff_map, alias_map;
|
|
|
|
dict<SigBit, pair<SigBit, SigBit>> and_map;
|
|
|
|
pool<SigBit> initstate_bits;
|
2019-02-15 13:51:21 -06:00
|
|
|
pool<SigBit> ci_bits, co_bits;
|
|
|
|
dict<IdString, unsigned> type_map;
|
2019-02-08 16:53:12 -06:00
|
|
|
|
|
|
|
vector<pair<int, int>> aig_gates;
|
|
|
|
vector<int> aig_latchin, aig_latchinit, aig_outputs;
|
|
|
|
int aig_m = 0, aig_i = 0, aig_l = 0, aig_o = 0, aig_a = 0;
|
|
|
|
|
|
|
|
dict<SigBit, int> aig_map;
|
|
|
|
dict<SigBit, int> ordered_outputs;
|
|
|
|
dict<SigBit, int> ordered_latches;
|
|
|
|
|
|
|
|
dict<SigBit, int> init_inputs;
|
|
|
|
int initstate_ff = 0;
|
|
|
|
|
|
|
|
int mkgate(int a0, int a1)
|
|
|
|
{
|
|
|
|
aig_m++, aig_a++;
|
|
|
|
aig_gates.push_back(a0 > a1 ? make_pair(a0, a1) : make_pair(a1, a0));
|
|
|
|
return 2*aig_m;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bit2aig(SigBit bit)
|
|
|
|
{
|
|
|
|
if (aig_map.count(bit) == 0)
|
|
|
|
{
|
|
|
|
aig_map[bit] = -1;
|
|
|
|
|
|
|
|
if (initstate_bits.count(bit)) {
|
|
|
|
log_assert(initstate_ff > 0);
|
|
|
|
aig_map[bit] = initstate_ff;
|
|
|
|
} else
|
|
|
|
if (not_map.count(bit)) {
|
|
|
|
int a = bit2aig(not_map.at(bit)) ^ 1;
|
|
|
|
aig_map[bit] = a;
|
|
|
|
} else
|
|
|
|
if (and_map.count(bit)) {
|
|
|
|
auto args = and_map.at(bit);
|
|
|
|
int a0 = bit2aig(args.first);
|
|
|
|
int a1 = bit2aig(args.second);
|
|
|
|
aig_map[bit] = mkgate(a0, a1);
|
|
|
|
} else
|
|
|
|
if (alias_map.count(bit)) {
|
|
|
|
aig_map[bit] = bit2aig(alias_map.at(bit));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bit == State::Sx || bit == State::Sz)
|
|
|
|
log_error("Design contains 'x' or 'z' bits. Use 'setundef' to replace those constants.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
log_assert(aig_map.at(bit) >= 0);
|
|
|
|
return aig_map.at(bit);
|
|
|
|
}
|
|
|
|
|
2019-02-11 17:18:42 -06:00
|
|
|
XAigerWriter(Module *module, bool zinit_mode, bool imode, bool omode, bool bmode) : module(module), zinit_mode(zinit_mode), sigmap(module)
|
2019-02-08 16:53:12 -06:00
|
|
|
{
|
|
|
|
pool<SigBit> undriven_bits;
|
|
|
|
pool<SigBit> unused_bits;
|
|
|
|
|
|
|
|
// promote public wires
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
if (wire->name[0] == '\\')
|
|
|
|
sigmap.add(wire);
|
|
|
|
|
|
|
|
// promote input wires
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
if (wire->port_input)
|
|
|
|
sigmap.add(wire);
|
|
|
|
|
|
|
|
// promote output wires
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
if (wire->port_output)
|
|
|
|
sigmap.add(wire);
|
|
|
|
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
{
|
|
|
|
if (wire->attributes.count("\\init")) {
|
|
|
|
SigSpec initsig = sigmap(wire);
|
|
|
|
Const initval = wire->attributes.at("\\init");
|
|
|
|
for (int i = 0; i < GetSize(wire) && i < GetSize(initval); i++)
|
|
|
|
if (initval[i] == State::S0 || initval[i] == State::S1)
|
|
|
|
init_map[initsig[i]] = initval[i] == State::S1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < GetSize(wire); i++)
|
|
|
|
{
|
|
|
|
SigBit wirebit(wire, i);
|
|
|
|
SigBit bit = sigmap(wirebit);
|
|
|
|
|
|
|
|
if (bit.wire == nullptr) {
|
|
|
|
if (wire->port_output) {
|
|
|
|
aig_map[wirebit] = (bit == State::S1) ? 1 : 0;
|
2019-02-16 10:48:33 -06:00
|
|
|
output_bits.insert(wirebit);
|
2019-02-08 16:53:12 -06:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
undriven_bits.insert(bit);
|
|
|
|
unused_bits.insert(bit);
|
|
|
|
|
|
|
|
if (wire->port_input)
|
|
|
|
input_bits.insert(bit);
|
|
|
|
|
|
|
|
if (wire->port_output) {
|
|
|
|
if (bit != wirebit)
|
|
|
|
alias_map[wirebit] = bit;
|
2019-02-16 10:48:33 -06:00
|
|
|
output_bits.insert(wirebit);
|
2019-02-08 16:53:12 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto bit : input_bits)
|
|
|
|
undriven_bits.erase(bit);
|
|
|
|
|
|
|
|
for (auto bit : output_bits)
|
|
|
|
unused_bits.erase(bit);
|
|
|
|
|
|
|
|
for (auto cell : module->cells())
|
|
|
|
{
|
|
|
|
if (cell->type == "$_NOT_")
|
|
|
|
{
|
|
|
|
SigBit A = sigmap(cell->getPort("\\A").as_bit());
|
|
|
|
SigBit Y = sigmap(cell->getPort("\\Y").as_bit());
|
|
|
|
unused_bits.erase(A);
|
|
|
|
undriven_bits.erase(Y);
|
|
|
|
not_map[Y] = A;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type.in("$_FF_", "$_DFF_N_", "$_DFF_P_"))
|
|
|
|
{
|
|
|
|
SigBit D = sigmap(cell->getPort("\\D").as_bit());
|
|
|
|
SigBit Q = sigmap(cell->getPort("\\Q").as_bit());
|
|
|
|
unused_bits.erase(D);
|
|
|
|
undriven_bits.erase(Q);
|
|
|
|
ff_map[Q] = D;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$_AND_")
|
|
|
|
{
|
|
|
|
SigBit A = sigmap(cell->getPort("\\A").as_bit());
|
|
|
|
SigBit B = sigmap(cell->getPort("\\B").as_bit());
|
|
|
|
SigBit Y = sigmap(cell->getPort("\\Y").as_bit());
|
|
|
|
unused_bits.erase(A);
|
|
|
|
unused_bits.erase(B);
|
|
|
|
undriven_bits.erase(Y);
|
|
|
|
and_map[Y] = make_pair(A, B);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$initstate")
|
|
|
|
{
|
|
|
|
SigBit Y = sigmap(cell->getPort("\\Y").as_bit());
|
|
|
|
undriven_bits.erase(Y);
|
|
|
|
initstate_bits.insert(Y);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-02-15 13:51:21 -06:00
|
|
|
for (const auto &c : cell->connections()) {
|
|
|
|
if (c.second.is_fully_const()) continue;
|
2019-02-16 23:00:39 -06:00
|
|
|
for (auto b : c.second.bits()) {
|
|
|
|
Wire *w = b.wire;
|
|
|
|
if (!w) continue;
|
|
|
|
if (cell->input(c.first)) {
|
|
|
|
SigBit I = sigmap(b);
|
|
|
|
if (!w->port_input)
|
|
|
|
co_bits.insert(I);
|
|
|
|
}
|
|
|
|
else if (cell->output(c.first)) {
|
|
|
|
SigBit O = sigmap(b);
|
|
|
|
ci_bits.insert(O);
|
|
|
|
}
|
|
|
|
else log_abort();
|
2019-02-15 13:51:21 -06:00
|
|
|
}
|
|
|
|
if (!type_map.count(cell->type))
|
|
|
|
type_map[cell->type] = type_map.size()+1;
|
|
|
|
}
|
|
|
|
//log_error("Unsupported cell type: %s (%s)\n", log_id(cell->type), log_id(cell));
|
2019-02-08 16:53:12 -06:00
|
|
|
}
|
|
|
|
|
2019-02-16 10:46:25 -06:00
|
|
|
// Do some CI/CO post-processing:
|
2019-02-16 10:48:33 -06:00
|
|
|
// Erase all POs and COs that are undriven
|
|
|
|
for (auto bit : undriven_bits) {
|
2019-02-16 10:46:25 -06:00
|
|
|
co_bits.erase(bit);
|
2019-02-16 10:48:33 -06:00
|
|
|
output_bits.erase(bit);
|
|
|
|
}
|
2019-02-16 10:46:25 -06:00
|
|
|
// Erase all CIs that are also COs or POs
|
|
|
|
for (auto bit : co_bits)
|
|
|
|
ci_bits.erase(bit);
|
|
|
|
for (auto bit : output_bits)
|
|
|
|
ci_bits.erase(bit);
|
|
|
|
// CIs cannot be undriven
|
|
|
|
for (auto bit : ci_bits)
|
|
|
|
undriven_bits.erase(bit);
|
|
|
|
|
2019-02-08 16:53:12 -06:00
|
|
|
for (auto bit : unused_bits)
|
|
|
|
undriven_bits.erase(bit);
|
|
|
|
|
|
|
|
if (!undriven_bits.empty()) {
|
|
|
|
undriven_bits.sort();
|
|
|
|
for (auto bit : undriven_bits) {
|
|
|
|
log_warning("Treating undriven bit %s.%s like $anyseq.\n", log_id(module), log_signal(bit));
|
|
|
|
input_bits.insert(bit);
|
|
|
|
}
|
|
|
|
log_warning("Treating a total of %d undriven bits in %s like $anyseq.\n", GetSize(undriven_bits), log_id(module));
|
|
|
|
}
|
|
|
|
|
|
|
|
init_map.sort();
|
|
|
|
input_bits.sort();
|
|
|
|
output_bits.sort();
|
|
|
|
not_map.sort();
|
|
|
|
ff_map.sort();
|
|
|
|
and_map.sort();
|
|
|
|
|
|
|
|
aig_map[State::S0] = 0;
|
|
|
|
aig_map[State::S1] = 1;
|
|
|
|
|
2019-02-15 13:51:21 -06:00
|
|
|
for (auto bit : ci_bits) {
|
|
|
|
aig_m++, aig_i++;
|
|
|
|
aig_map[bit] = 2*aig_m;
|
|
|
|
}
|
|
|
|
|
2019-02-08 16:53:12 -06:00
|
|
|
for (auto bit : input_bits) {
|
|
|
|
aig_m++, aig_i++;
|
|
|
|
aig_map[bit] = 2*aig_m;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (imode && input_bits.empty()) {
|
|
|
|
aig_m++, aig_i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (zinit_mode)
|
|
|
|
{
|
|
|
|
for (auto it : ff_map) {
|
|
|
|
if (init_map.count(it.first))
|
|
|
|
continue;
|
|
|
|
aig_m++, aig_i++;
|
|
|
|
init_inputs[it.first] = 2*aig_m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it : ff_map) {
|
|
|
|
aig_m++, aig_l++;
|
|
|
|
aig_map[it.first] = 2*aig_m;
|
|
|
|
ordered_latches[it.first] = aig_l-1;
|
|
|
|
if (init_map.count(it.first) == 0)
|
|
|
|
aig_latchinit.push_back(2);
|
|
|
|
else
|
|
|
|
aig_latchinit.push_back(init_map.at(it.first) ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!initstate_bits.empty() || !init_inputs.empty()) {
|
|
|
|
aig_m++, aig_l++;
|
|
|
|
initstate_ff = 2*aig_m+1;
|
|
|
|
aig_latchinit.push_back(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (zinit_mode)
|
|
|
|
{
|
|
|
|
for (auto it : ff_map)
|
|
|
|
{
|
|
|
|
int l = ordered_latches[it.first];
|
|
|
|
|
|
|
|
if (aig_latchinit.at(l) == 1)
|
|
|
|
aig_map[it.first] ^= 1;
|
|
|
|
|
|
|
|
if (aig_latchinit.at(l) == 2)
|
|
|
|
{
|
|
|
|
int gated_ffout = mkgate(aig_map[it.first], initstate_ff^1);
|
|
|
|
int gated_initin = mkgate(init_inputs[it.first], initstate_ff);
|
|
|
|
aig_map[it.first] = mkgate(gated_ffout^1, gated_initin^1)^1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto it : ff_map) {
|
|
|
|
int a = bit2aig(it.second);
|
|
|
|
int l = ordered_latches[it.first];
|
|
|
|
if (zinit_mode && aig_latchinit.at(l) == 1)
|
|
|
|
aig_latchin.push_back(a ^ 1);
|
|
|
|
else
|
|
|
|
aig_latchin.push_back(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!initstate_bits.empty() || !init_inputs.empty())
|
|
|
|
aig_latchin.push_back(1);
|
|
|
|
|
2019-02-15 13:51:21 -06:00
|
|
|
for (auto bit : co_bits) {
|
|
|
|
aig_o++;
|
|
|
|
ordered_outputs[bit] = aig_o-1;
|
|
|
|
aig_outputs.push_back(bit2aig(bit));
|
|
|
|
}
|
|
|
|
|
2019-02-08 16:53:12 -06:00
|
|
|
for (auto bit : output_bits) {
|
|
|
|
aig_o++;
|
|
|
|
ordered_outputs[bit] = aig_o-1;
|
|
|
|
aig_outputs.push_back(bit2aig(bit));
|
|
|
|
}
|
|
|
|
|
2019-02-16 23:00:39 -06:00
|
|
|
if (omode && output_bits.empty() && co_bits.empty()) {
|
2019-02-08 16:53:12 -06:00
|
|
|
aig_o++;
|
|
|
|
aig_outputs.push_back(0);
|
|
|
|
}
|
|
|
|
|
2019-02-14 16:48:38 -06:00
|
|
|
if (bmode) {
|
2019-02-14 16:52:47 -06:00
|
|
|
//aig_b++;
|
2019-02-08 16:53:12 -06:00
|
|
|
aig_outputs.push_back(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void write_aiger(std::ostream &f, bool ascii_mode, bool miter_mode, bool symbols_mode)
|
|
|
|
{
|
2019-02-14 16:52:47 -06:00
|
|
|
int aig_obc = aig_o;
|
|
|
|
int aig_obcj = aig_obc;
|
|
|
|
int aig_obcjf = aig_obcj;
|
2019-02-08 16:53:12 -06:00
|
|
|
|
|
|
|
log_assert(aig_m == aig_i + aig_l + aig_a);
|
|
|
|
log_assert(aig_l == GetSize(aig_latchin));
|
|
|
|
log_assert(aig_l == GetSize(aig_latchinit));
|
|
|
|
log_assert(aig_obcjf == GetSize(aig_outputs));
|
|
|
|
|
2019-02-14 16:52:47 -06:00
|
|
|
f << stringf("%s %d %d %d %d %d", ascii_mode ? "aag" : "aig", aig_m, aig_i, aig_l, aig_o, aig_a);
|
|
|
|
f << stringf("\n");
|
2019-02-08 16:53:12 -06:00
|
|
|
|
|
|
|
if (ascii_mode)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < aig_i; i++)
|
|
|
|
f << stringf("%d\n", 2*i+2);
|
|
|
|
|
|
|
|
for (int i = 0; i < aig_l; i++) {
|
|
|
|
if (zinit_mode || aig_latchinit.at(i) == 0)
|
|
|
|
f << stringf("%d %d\n", 2*(aig_i+i)+2, aig_latchin.at(i));
|
|
|
|
else if (aig_latchinit.at(i) == 1)
|
|
|
|
f << stringf("%d %d 1\n", 2*(aig_i+i)+2, aig_latchin.at(i));
|
|
|
|
else if (aig_latchinit.at(i) == 2)
|
|
|
|
f << stringf("%d %d %d\n", 2*(aig_i+i)+2, aig_latchin.at(i), 2*(aig_i+i)+2);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < aig_obc; i++)
|
|
|
|
f << stringf("%d\n", aig_outputs.at(i));
|
|
|
|
|
|
|
|
for (int i = aig_obc; i < aig_obcj; i++)
|
|
|
|
f << stringf("1\n");
|
|
|
|
|
|
|
|
for (int i = aig_obc; i < aig_obcj; i++)
|
|
|
|
f << stringf("%d\n", aig_outputs.at(i));
|
|
|
|
|
|
|
|
for (int i = aig_obcj; i < aig_obcjf; i++)
|
|
|
|
f << stringf("%d\n", aig_outputs.at(i));
|
|
|
|
|
|
|
|
for (int i = 0; i < aig_a; i++)
|
|
|
|
f << stringf("%d %d %d\n", 2*(aig_i+aig_l+i)+2, aig_gates.at(i).first, aig_gates.at(i).second);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (int i = 0; i < aig_l; i++) {
|
|
|
|
if (zinit_mode || aig_latchinit.at(i) == 0)
|
|
|
|
f << stringf("%d\n", aig_latchin.at(i));
|
|
|
|
else if (aig_latchinit.at(i) == 1)
|
|
|
|
f << stringf("%d 1\n", aig_latchin.at(i));
|
|
|
|
else if (aig_latchinit.at(i) == 2)
|
|
|
|
f << stringf("%d %d\n", aig_latchin.at(i), 2*(aig_i+i)+2);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < aig_obc; i++)
|
|
|
|
f << stringf("%d\n", aig_outputs.at(i));
|
|
|
|
|
|
|
|
for (int i = aig_obc; i < aig_obcj; i++)
|
|
|
|
f << stringf("1\n");
|
|
|
|
|
|
|
|
for (int i = aig_obc; i < aig_obcj; i++)
|
|
|
|
f << stringf("%d\n", aig_outputs.at(i));
|
|
|
|
|
|
|
|
for (int i = aig_obcj; i < aig_obcjf; i++)
|
|
|
|
f << stringf("%d\n", aig_outputs.at(i));
|
|
|
|
|
|
|
|
for (int i = 0; i < aig_a; i++) {
|
|
|
|
int lhs = 2*(aig_i+aig_l+i)+2;
|
|
|
|
int rhs0 = aig_gates.at(i).first;
|
|
|
|
int rhs1 = aig_gates.at(i).second;
|
|
|
|
int delta0 = lhs - rhs0;
|
|
|
|
int delta1 = rhs0 - rhs1;
|
|
|
|
aiger_encode(f, delta0);
|
|
|
|
aiger_encode(f, delta1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (symbols_mode)
|
|
|
|
{
|
|
|
|
dict<string, vector<string>> symbols;
|
|
|
|
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
{
|
2019-02-16 10:46:25 -06:00
|
|
|
//if (wire->name[0] == '$')
|
|
|
|
// continue;
|
2019-02-08 16:53:12 -06:00
|
|
|
|
|
|
|
SigSpec sig = sigmap(wire);
|
|
|
|
|
|
|
|
for (int i = 0; i < GetSize(wire); i++)
|
|
|
|
{
|
|
|
|
if (sig[i].wire == nullptr) {
|
|
|
|
if (wire->port_output)
|
|
|
|
sig[i] = SigBit(wire, i);
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-02-16 10:46:25 -06:00
|
|
|
if (input_bits.count(sig[i]) || ci_bits.count(SigSpec(sig[i]))) {
|
2019-02-08 16:53:12 -06:00
|
|
|
int a = aig_map.at(sig[i]);
|
|
|
|
log_assert((a & 1) == 0);
|
|
|
|
if (GetSize(wire) != 1)
|
|
|
|
symbols[stringf("i%d", (a >> 1)-1)].push_back(stringf("%s[%d]", log_id(wire), i));
|
|
|
|
else
|
|
|
|
symbols[stringf("i%d", (a >> 1)-1)].push_back(stringf("%s", log_id(wire)));
|
|
|
|
}
|
|
|
|
|
2019-02-16 10:46:25 -06:00
|
|
|
if (output_bits.count(SigSpec(wire, i)) || co_bits.count(SigSpec(wire, i))) {
|
2019-02-08 16:53:12 -06:00
|
|
|
int o = ordered_outputs.at(SigSpec(wire, i));
|
|
|
|
if (GetSize(wire) != 1)
|
|
|
|
symbols[stringf("%c%d", miter_mode ? 'b' : 'o', o)].push_back(stringf("%s[%d]", log_id(wire), i));
|
|
|
|
else
|
|
|
|
symbols[stringf("%c%d", miter_mode ? 'b' : 'o', o)].push_back(stringf("%s", log_id(wire)));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (init_inputs.count(sig[i])) {
|
|
|
|
int a = init_inputs.at(sig[i]);
|
|
|
|
log_assert((a & 1) == 0);
|
|
|
|
if (GetSize(wire) != 1)
|
|
|
|
symbols[stringf("i%d", (a >> 1)-1)].push_back(stringf("init:%s[%d]", log_id(wire), i));
|
|
|
|
else
|
|
|
|
symbols[stringf("i%d", (a >> 1)-1)].push_back(stringf("init:%s", log_id(wire)));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ordered_latches.count(sig[i])) {
|
|
|
|
int l = ordered_latches.at(sig[i]);
|
|
|
|
const char *p = (zinit_mode && (aig_latchinit.at(l) == 1)) ? "!" : "";
|
|
|
|
if (GetSize(wire) != 1)
|
|
|
|
symbols[stringf("l%d", l)].push_back(stringf("%s%s[%d]", p, log_id(wire), i));
|
|
|
|
else
|
|
|
|
symbols[stringf("l%d", l)].push_back(stringf("%s%s", p, log_id(wire)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
symbols.sort();
|
|
|
|
|
|
|
|
for (auto &sym : symbols) {
|
|
|
|
f << sym.first;
|
|
|
|
std::sort(sym.second.begin(), sym.second.end());
|
|
|
|
for (auto &s : sym.second)
|
|
|
|
f << " " << s;
|
|
|
|
f << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
f << stringf("c\nGenerated by %s\n", yosys_version_str);
|
|
|
|
}
|
|
|
|
|
2019-02-16 22:08:59 -06:00
|
|
|
void write_map(std::ostream &f, bool verbose_map, bool omode)
|
2019-02-08 16:53:12 -06:00
|
|
|
{
|
|
|
|
dict<int, string> input_lines;
|
|
|
|
dict<int, string> init_lines;
|
|
|
|
dict<int, string> output_lines;
|
|
|
|
dict<int, string> latch_lines;
|
|
|
|
dict<int, string> wire_lines;
|
|
|
|
|
|
|
|
for (auto wire : module->wires())
|
|
|
|
{
|
2019-02-15 13:51:21 -06:00
|
|
|
//if (!verbose_map && wire->name[0] == '$')
|
|
|
|
// continue;
|
2019-02-08 16:53:12 -06:00
|
|
|
|
|
|
|
SigSpec sig = sigmap(wire);
|
|
|
|
|
|
|
|
for (int i = 0; i < GetSize(wire); i++)
|
|
|
|
{
|
2019-02-17 00:22:17 -06:00
|
|
|
if (aig_map.count(sig[i]) == 0 /*|| sig[i].wire == nullptr*/)
|
2019-02-08 16:53:12 -06:00
|
|
|
continue;
|
|
|
|
|
|
|
|
int a = aig_map.at(sig[i]);
|
|
|
|
|
|
|
|
if (verbose_map)
|
|
|
|
wire_lines[a] += stringf("wire %d %d %s\n", a, i, log_id(wire));
|
|
|
|
|
2019-02-17 00:22:17 -06:00
|
|
|
RTLIL::SigBit b(wire, i);
|
|
|
|
if (wire->port_input || ci_bits.count(b)) {
|
2019-02-08 16:53:12 -06:00
|
|
|
log_assert((a & 1) == 0);
|
|
|
|
input_lines[a] += stringf("input %d %d %s\n", (a >> 1)-1, i, log_id(wire));
|
|
|
|
}
|
|
|
|
|
2019-02-17 00:22:17 -06:00
|
|
|
if (output_bits.count(b) || co_bits.count(b)) {
|
|
|
|
int o = ordered_outputs.at(b);
|
2019-02-08 16:53:12 -06:00
|
|
|
output_lines[o] += stringf("output %d %d %s\n", o, i, log_id(wire));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (init_inputs.count(sig[i])) {
|
|
|
|
int a = init_inputs.at(sig[i]);
|
|
|
|
log_assert((a & 1) == 0);
|
|
|
|
init_lines[a] += stringf("init %d %d %s\n", (a >> 1)-1, i, log_id(wire));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ordered_latches.count(sig[i])) {
|
|
|
|
int l = ordered_latches.at(sig[i]);
|
|
|
|
if (zinit_mode && (aig_latchinit.at(l) == 1))
|
|
|
|
latch_lines[l] += stringf("invlatch %d %d %s\n", l, i, log_id(wire));
|
|
|
|
else
|
|
|
|
latch_lines[l] += stringf("latch %d %d %s\n", l, i, log_id(wire));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input_lines.sort();
|
|
|
|
for (auto &it : input_lines)
|
|
|
|
f << it.second;
|
|
|
|
|
|
|
|
init_lines.sort();
|
|
|
|
for (auto &it : init_lines)
|
|
|
|
f << it.second;
|
|
|
|
|
|
|
|
output_lines.sort();
|
|
|
|
for (auto &it : output_lines)
|
|
|
|
f << it.second;
|
2019-02-16 23:09:48 -06:00
|
|
|
if (omode && output_lines.empty())
|
2019-02-16 22:08:59 -06:00
|
|
|
f << "output 0 0 __dummy_o__\n";
|
2019-02-08 16:53:12 -06:00
|
|
|
|
|
|
|
latch_lines.sort();
|
|
|
|
for (auto &it : latch_lines)
|
|
|
|
f << it.second;
|
|
|
|
|
|
|
|
wire_lines.sort();
|
|
|
|
for (auto &it : wire_lines)
|
|
|
|
f << it.second;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-11 17:18:42 -06:00
|
|
|
struct XAigerBackend : public Backend {
|
|
|
|
XAigerBackend() : Backend("xaiger", "write design to XAIGER file") { }
|
2019-02-08 16:53:12 -06:00
|
|
|
void help() YS_OVERRIDE
|
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
2019-02-11 17:18:42 -06:00
|
|
|
log(" write_xaiger [options] [filename]\n");
|
2019-02-08 16:53:12 -06:00
|
|
|
log("\n");
|
2019-02-11 17:18:42 -06:00
|
|
|
log("Write the current design to an XAIGER file. The design must be flattened and\n");
|
|
|
|
log("all unsupported cells will be converted into psuedo-inputs and pseudo-outputs.\n");
|
2019-02-08 16:53:12 -06:00
|
|
|
log("\n");
|
|
|
|
log(" -ascii\n");
|
|
|
|
log(" write ASCII version of AGIER format\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -zinit\n");
|
|
|
|
log(" convert FFs to zero-initialized FFs, adding additional inputs for\n");
|
|
|
|
log(" uninitialized FFs.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -symbols\n");
|
|
|
|
log(" include a symbol table in the generated AIGER file\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -map <filename>\n");
|
|
|
|
log(" write an extra file with port and latch symbols\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -vmap <filename>\n");
|
|
|
|
log(" like -map, but more verbose\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -I, -O, -B\n");
|
|
|
|
log(" If the design contains no input/output/assert then create one\n");
|
|
|
|
log(" dummy input/output/bad_state pin to make the tools reading the\n");
|
|
|
|
log(" AIGER file happy.\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
|
|
|
void execute(std::ostream *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
|
|
|
|
{
|
|
|
|
bool ascii_mode = false;
|
|
|
|
bool zinit_mode = false;
|
|
|
|
bool miter_mode = false;
|
|
|
|
bool symbols_mode = false;
|
|
|
|
bool verbose_map = false;
|
|
|
|
bool imode = false;
|
|
|
|
bool omode = false;
|
|
|
|
bool bmode = false;
|
|
|
|
std::string map_filename;
|
|
|
|
|
2019-02-11 17:18:42 -06:00
|
|
|
log_header(design, "Executing XAIGER backend.\n");
|
2019-02-08 16:53:12 -06:00
|
|
|
|
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++)
|
|
|
|
{
|
|
|
|
if (args[argidx] == "-ascii") {
|
|
|
|
ascii_mode = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-zinit") {
|
|
|
|
zinit_mode = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-symbols") {
|
|
|
|
symbols_mode = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (map_filename.empty() && args[argidx] == "-map" && argidx+1 < args.size()) {
|
|
|
|
map_filename = args[++argidx];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (map_filename.empty() && args[argidx] == "-vmap" && argidx+1 < args.size()) {
|
|
|
|
map_filename = args[++argidx];
|
|
|
|
verbose_map = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-I") {
|
|
|
|
imode = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-O") {
|
|
|
|
omode = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-B") {
|
|
|
|
bmode = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra_args(f, filename, args, argidx);
|
|
|
|
|
|
|
|
Module *top_module = design->top_module();
|
|
|
|
|
|
|
|
if (top_module == nullptr)
|
|
|
|
log_error("Can't find top module in current design!\n");
|
|
|
|
|
2019-02-11 17:18:42 -06:00
|
|
|
XAigerWriter writer(top_module, zinit_mode, imode, omode, bmode);
|
2019-02-08 16:53:12 -06:00
|
|
|
writer.write_aiger(*f, ascii_mode, miter_mode, symbols_mode);
|
|
|
|
|
|
|
|
if (!map_filename.empty()) {
|
|
|
|
std::ofstream mapf;
|
|
|
|
mapf.open(map_filename.c_str(), std::ofstream::trunc);
|
|
|
|
if (mapf.fail())
|
|
|
|
log_error("Can't open file `%s' for writing: %s\n", map_filename.c_str(), strerror(errno));
|
2019-02-16 22:08:59 -06:00
|
|
|
writer.write_map(mapf, verbose_map, omode);
|
2019-02-08 16:53:12 -06:00
|
|
|
}
|
|
|
|
}
|
2019-02-11 17:18:42 -06:00
|
|
|
} XAigerBackend;
|
2019-02-08 16:53:12 -06:00
|
|
|
|
|
|
|
PRIVATE_NAMESPACE_END
|