yosys/frontends/aiger/aigerparse.cc

256 lines
9.3 KiB
C++
Raw Normal View History

2019-02-06 14:19:48 -06:00
/*
* yosys -- Yosys Open SYnthesis Suite
*
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
* Eddie Hung <eddie@fpgeh.com>
*
* 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.
*
*/
// [[CITE]] The AIGER And-Inverter Graph (AIG) Format Version 20071012
// Armin Biere. The AIGER And-Inverter Graph (AIG) Format Version 20071012. Technical Report 07/1, October 2011, FMV Reports Series, Institute for Formal Models and Verification, Johannes Kepler University, Altenbergerstr. 69, 4040 Linz, Austria.
// http://fmv.jku.at/papers/Biere-FMV-TR-07-1.pdf
#include "kernel/yosys.h"
#include "kernel/sigtools.h"
#include "aigerparse.h"
YOSYS_NAMESPACE_BEGIN
#define log_debug log
2019-02-06 16:58:47 -06:00
static void parse_aiger_ascii(RTLIL::Design *design, std::istream &f, std::string clk_name);
2019-02-08 09:31:04 -06:00
static void parse_aiger_binary(RTLIL::Design *design, std::istream &f, std::string clk_name);
2019-02-06 16:58:47 -06:00
2019-02-06 14:19:48 -06:00
void parse_aiger(RTLIL::Design *design, std::istream &f, std::string clk_name)
{
std::string header;
f >> header;
2019-02-06 16:58:47 -06:00
if (header == "aag")
return parse_aiger_ascii(design, f, clk_name);
2019-02-08 09:31:04 -06:00
else if (header == "aig")
return parse_aiger_binary(design, f, clk_name);
else
2019-02-06 14:19:48 -06:00
log_error("Unsupported AIGER file!\n");
2019-02-06 16:58:47 -06:00
}
2019-02-06 14:19:48 -06:00
2019-02-06 16:58:47 -06:00
static void parse_aiger_ascii(RTLIL::Design *design, std::istream &f, std::string clk_name)
{
2019-02-06 14:19:48 -06:00
int M, I, L, O, A;
int B=0, C=0, J=0, F=0; // Optional in AIGER 1.9
2019-02-08 10:04:48 -06:00
if (!(f >> M >> I >> L >> O >> A))
2019-02-06 14:19:48 -06:00
log_error("Invalid AIGER header\n");
for (auto &i : std::array<std::reference_wrapper<int>,4>{B, C, J, F}) {
if (f.peek() != ' ') break;
2019-02-08 10:04:48 -06:00
if (!(f >> i))
2019-02-06 14:19:48 -06:00
log_error("Invalid AIGER header\n");
}
std::string line;
std::getline(f, line); // Ignore up to start of next ine, as standard
// says anything that follows could be used for
// optional sections
log_debug("M=%d I=%d L=%d O=%d A=%d B=%d C=%d J=%d F=%d\n", M, I, L, O, A, B, C, J, F);
int line_count = 1;
std::stringstream ss;
auto module = new RTLIL::Module;
module->name = RTLIL::escape_id("aig"); // TODO: Name?
if (design->module(module->name))
log_error("Duplicate definition of module %s in line %d!\n", log_id(module->name), line_count);
design->add(module);
auto createWireIfNotExists = [module](int literal) {
const int variable = literal >> 1;
const bool invert = literal & 1;
RTLIL::IdString wire_name(stringf("\\n%d%s", variable, invert ? "_inv" : "")); // FIXME: is "_inv" the right suffix?
RTLIL::Wire *wire = module->wire(wire_name);
if (wire) return wire;
log_debug("Creating %s\n", wire_name.c_str());
wire = module->addWire(wire_name);
if (!invert) return wire;
RTLIL::IdString wire_inv_name(stringf("\\n%d", variable));
RTLIL::Wire *wire_inv = module->wire(wire_inv_name);
if (wire_inv) {
if (module->cell(wire_inv_name)) return wire;
}
else {
log_debug("Creating %s\n", wire_inv_name.c_str());
wire_inv = module->addWire(wire_inv_name);
}
log_debug("Creating %s = ~%s\n", wire_name.c_str(), wire_inv_name.c_str());
RTLIL::Cell *inv = module->addCell(stringf("\\n%d_not", variable), "$_NOT_"); // FIXME: is "_not" the right suffix?
inv->setPort("\\A", wire_inv);
inv->setPort("\\Y", wire);
return wire;
};
int l1, l2, l3;
// Parse inputs
2019-02-08 10:03:40 -06:00
std::vector<RTLIL::Wire*> inputs;
2019-02-06 14:19:48 -06:00
for (int i = 0; i < I; ++i, ++line_count) {
2019-02-08 10:04:48 -06:00
if (!(f >> l1))
2019-02-06 14:19:48 -06:00
log_error("Line %d cannot be interpreted as an input!\n", line_count);
log_debug("%d is an input\n", l1);
log_assert(!(l1 & 1)); // TODO: Inputs can't be inverted?
RTLIL::Wire *wire = createWireIfNotExists(l1);
wire->port_input = true;
2019-02-08 10:03:40 -06:00
inputs.push_back(wire);
2019-02-06 14:19:48 -06:00
}
// Parse latches
2019-02-08 10:03:40 -06:00
std::vector<RTLIL::Wire*> latches;
2019-02-08 10:08:49 -06:00
RTLIL::Wire *clk_wire = nullptr;
if (L > 0) {
RTLIL::IdString clk_id = RTLIL::escape_id(clk_name.c_str());
clk_wire = module->wire(clk_id);
log_assert(!clk_wire);
log_debug("Creating %s\n", clk_id.c_str());
clk_wire = module->addWire(clk_id);
clk_wire->port_input = true;
}
2019-02-06 14:19:48 -06:00
for (int i = 0; i < L; ++i, ++line_count) {
2019-02-08 10:04:48 -06:00
if (!(f >> l1 >> l2))
2019-02-06 14:19:48 -06:00
log_error("Line %d cannot be interpreted as a latch!\n", line_count);
log_debug("%d %d is a latch\n", l1, l2);
log_assert(!(l1 & 1)); // TODO: Latch outputs can't be inverted?
RTLIL::Wire *q_wire = createWireIfNotExists(l1);
RTLIL::Wire *d_wire = createWireIfNotExists(l2);
module->addDff(NEW_ID, clk_wire, d_wire, q_wire);
// AIGER latches are assumed to be initialized to zero
q_wire->attributes["\\init"] = RTLIL::Const(0);
2019-02-08 10:03:40 -06:00
latches.push_back(q_wire);
2019-02-06 14:19:48 -06:00
}
// Parse outputs
2019-02-08 10:03:40 -06:00
std::vector<RTLIL::Wire*> outputs;
2019-02-06 14:19:48 -06:00
for (int i = 0; i < O; ++i, ++line_count) {
2019-02-08 10:04:48 -06:00
if (!(f >> l1))
2019-02-06 14:19:48 -06:00
log_error("Line %d cannot be interpreted as an output!\n", line_count);
log_debug("%d is an output\n", l1);
RTLIL::Wire *wire = createWireIfNotExists(l1);
wire->port_output = true;
2019-02-08 10:03:40 -06:00
outputs.push_back(wire);
2019-02-06 14:19:48 -06:00
}
std::getline(f, line); // Ignore up to start of next line
2019-02-08 10:03:40 -06:00
2019-02-06 14:19:48 -06:00
// TODO: Parse bad state properties
for (int i = 0; i < B; ++i, ++line_count)
std::getline(f, line); // Ignore up to start of next line
// TODO: Parse invariant constraints
for (int i = 0; i < C; ++i, ++line_count)
std::getline(f, line); // Ignore up to start of next line
// TODO: Parse justice properties
for (int i = 0; i < J; ++i, ++line_count)
std::getline(f, line); // Ignore up to start of next line
// TODO: Parse fairness constraints
for (int i = 0; i < F; ++i, ++line_count)
std::getline(f, line); // Ignore up to start of next line
// Parse AND
for (int i = 0; i < A; ++i, ++line_count) {
2019-02-08 10:04:48 -06:00
if (!(f >> l1 >> l2 >> l3))
2019-02-06 14:19:48 -06:00
log_error("Line %d cannot be interpreted as an AND!\n", line_count);
log_debug("%d %d %d is an AND\n", l1, l2, l3);
log_assert(!(l1 & 1)); // TODO: Output of ANDs can't be inverted?
RTLIL::Wire *o_wire = createWireIfNotExists(l1);
RTLIL::Wire *i1_wire = createWireIfNotExists(l2);
RTLIL::Wire *i2_wire = createWireIfNotExists(l3);
RTLIL::Cell *and_cell = module->addCell(NEW_ID, "$_AND_");
and_cell->setPort("\\A", i1_wire);
and_cell->setPort("\\B", i2_wire);
and_cell->setPort("\\Y", o_wire);
}
2019-02-08 10:03:40 -06:00
std::getline(f, line); // Ignore up to start of next line
std::string s;
for (int c = f.peek(); c != EOF; c = f.peek(), ++line_count) {
2019-02-08 10:05:27 -06:00
if (c == 'i' || c == 'l' || c == 'o') {
2019-02-08 10:03:40 -06:00
f.ignore(1);
2019-02-08 10:04:48 -06:00
if (!(f >> l1 >> s))
2019-02-08 10:03:40 -06:00
log_error("Line %d cannot be interpreted as a symbol entry!\n", line_count);
2019-02-08 10:04:48 -06:00
if ((c == 'i' && l1 > inputs.size()) || (c == 'l' && l1 > latches.size()) || (c == 'o' && l1 > outputs.size()))
2019-02-08 10:03:40 -06:00
log_error("Line %d has invalid symbol position!\n", line_count);
RTLIL::Wire* wire;
if (c == 'i') wire = inputs[l1];
else if (c == 'l') wire = latches[l1];
else if (c == 'o') wire = outputs[l1];
else log_abort();
module->rename(wire, stringf("\\%s", s.c_str()));
}
else if (c == 'b' || c == 'j' || c == 'f') {
// TODO
}
else if (c == 'c') {
f.ignore(1);
if (f.peek() == '\n')
break;
// Else constraint (TODO)
break;
}
2019-02-08 10:04:48 -06:00
else
2019-02-08 10:03:40 -06:00
log_error("Line %d: cannot interpret first character '%c'!\n", line_count, c);
std::getline(f, line); // Ignore up to start of next line
}
2019-02-06 14:19:48 -06:00
module->fixup_ports();
}
2019-02-08 09:31:04 -06:00
static void parse_aiger_binary(RTLIL::Design *design, std::istream &f, std::string clk_name)
{
}
2019-02-06 14:19:48 -06:00
struct AigerFrontend : public Frontend {
AigerFrontend() : Frontend("aiger", "read AIGER file") { }
void help() YS_OVERRIDE
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
log(" read_aiger [options] [filename]\n");
log("\n");
log("Load modules from an AIGER file into the current design.\n");
log("\n");
}
void execute(std::istream *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
{
log_header(design, "Executing AIGER frontend.\n");
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
std::string arg = args[argidx];
break;
}
extra_args(f, filename, args, argidx);
parse_aiger(design, *f);
}
} AigerFrontend;
YOSYS_NAMESPACE_END