mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-14 12:55:41 +00:00
wip
This commit is contained in:
parent
5f1d2297aa
commit
33a2a3a4fd
3 changed files with 80 additions and 10 deletions
|
|
@ -23,6 +23,10 @@
|
||||||
// http://fmv.jku.at/papers/Biere-FMV-TR-07-1.pdf
|
// http://fmv.jku.at/papers/Biere-FMV-TR-07-1.pdf
|
||||||
|
|
||||||
// https://stackoverflow.com/a/46137633
|
// https://stackoverflow.com/a/46137633
|
||||||
|
#include "kernel/log.h"
|
||||||
|
#include "kernel/rtlil.h"
|
||||||
|
#include <cstdint>
|
||||||
|
#include <string>
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#define __builtin_bswap32 _byteswap_ulong
|
#define __builtin_bswap32 _byteswap_ulong
|
||||||
|
|
@ -406,7 +410,7 @@ void AigerReader::parse_xaiger()
|
||||||
module->connect(n0, State::S0);
|
module->connect(n0, State::S0);
|
||||||
|
|
||||||
int c = f.get();
|
int c = f.get();
|
||||||
if (c != 'c')
|
if (c != 'c') // 'c'omment section (used for extensions)
|
||||||
log_error("Line %u: cannot interpret first character '%c'!\n", line_count, c);
|
log_error("Line %u: cannot interpret first character '%c'!\n", line_count, c);
|
||||||
if (f.peek() == '\n')
|
if (f.peek() == '\n')
|
||||||
f.get();
|
f.get();
|
||||||
|
|
@ -415,7 +419,7 @@ void AigerReader::parse_xaiger()
|
||||||
std::string s;
|
std::string s;
|
||||||
for (int c = f.get(); c != EOF; c = f.get()) {
|
for (int c = f.get(); c != EOF; c = f.get()) {
|
||||||
// XAIGER extensions
|
// XAIGER extensions
|
||||||
if (c == 'm') {
|
if (c == 'm') { // LUT 'm'apping
|
||||||
uint32_t dataSize = parse_xaiger_literal(f);
|
uint32_t dataSize = parse_xaiger_literal(f);
|
||||||
uint32_t lutNum = parse_xaiger_literal(f);
|
uint32_t lutNum = parse_xaiger_literal(f);
|
||||||
uint32_t lutSize = parse_xaiger_literal(f);
|
uint32_t lutSize = parse_xaiger_literal(f);
|
||||||
|
|
@ -461,7 +465,73 @@ void AigerReader::parse_xaiger()
|
||||||
module->addLut(stringf("$lut$aiger%d$%d", aiger_autoidx, rootNodeID), input_sig, output_sig, std::move(lut_mask));
|
module->addLut(stringf("$lut$aiger%d$%d", aiger_autoidx, rootNodeID), input_sig, output_sig, std::move(lut_mask));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (c == 'r') {
|
else if (c == 'M') { // cell 'M'apping
|
||||||
|
struct MappingCell {
|
||||||
|
RTLIL::IdString type;
|
||||||
|
RTLIL::IdString out;
|
||||||
|
std::vector<RTLIL::IdString> ins;
|
||||||
|
};
|
||||||
|
std::vector<MappingCell> mapping_cells;
|
||||||
|
|
||||||
|
uint32_t dataSize = parse_xaiger_literal(f);
|
||||||
|
uint32_t cellNum = parse_xaiger_literal(f);
|
||||||
|
uint32_t instanceNum = parse_xaiger_literal(f);
|
||||||
|
log_debug("M: dataSize=%u cellNum=%u instanceNum=%u\n", dataSize, cellNum, instanceNum);
|
||||||
|
|
||||||
|
for (unsigned i = 0; i < cellNum; ++i) {
|
||||||
|
MappingCell mapping_cell{};
|
||||||
|
auto cellName = std::string{}; // name of cell
|
||||||
|
auto outPinName = std::string{}; // name of cell output pin
|
||||||
|
std::getline(f, cellName, '\0');
|
||||||
|
std::getline(f, outPinName, '\0');
|
||||||
|
uint32_t inPinNum = parse_xaiger_literal(f);
|
||||||
|
log_debug("M: cellID=%u cellName=%s outPinName=%s inPinNum=%u\n", i, cellName, outPinName, inPinNum);
|
||||||
|
mapping_cell.type = RTLIL::escape_id(cellName);
|
||||||
|
mapping_cell.out = RTLIL::escape_id(outPinName);
|
||||||
|
for (unsigned j = 0; j < inPinNum; ++j) {
|
||||||
|
auto inPinName = std::string{};
|
||||||
|
std::getline(f, inPinName, '\0');
|
||||||
|
log_debug("M: inPinName=%s\n", inPinName);
|
||||||
|
mapping_cell.ins.push_back(RTLIL::escape_id(inPinName));
|
||||||
|
}
|
||||||
|
|
||||||
|
mapping_cells.push_back(std::move(mapping_cell));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (unsigned i = 0; i < instanceNum; ++i) {
|
||||||
|
uint32_t cellID = parse_xaiger_literal(f);
|
||||||
|
uint32_t rootNodeID = parse_xaiger_literal(f);
|
||||||
|
|
||||||
|
log_assert(cellID < cellNum);
|
||||||
|
MappingCell &mapping_cell = mapping_cells.at(cellID);
|
||||||
|
|
||||||
|
log_debug("M: instanceID=%u cellID=%u outPort=%s rootNodeID=%u\n", i, cellID, RTLIL::unescape_id(mapping_cell.out), rootNodeID);
|
||||||
|
|
||||||
|
RTLIL::Wire *output_sig = module->wire(stringf("$aiger%d$%d", aiger_autoidx, rootNodeID));
|
||||||
|
log_assert(output_sig);
|
||||||
|
|
||||||
|
{
|
||||||
|
RTLIL::Cell *output_cell = module->cell(stringf("$and$aiger%d$%d", aiger_autoidx, rootNodeID));
|
||||||
|
log_assert(output_cell);
|
||||||
|
module->remove(output_cell);
|
||||||
|
}
|
||||||
|
|
||||||
|
RTLIL::Cell *cell = module->addCell(stringf("$sc$aiger%d$%d", aiger_autoidx, rootNodeID), mapping_cell.type);
|
||||||
|
cell->setPort(mapping_cell.out, output_sig);
|
||||||
|
|
||||||
|
for (unsigned j = 0; j < mapping_cell.ins.size(); ++j) {
|
||||||
|
auto nodeID = parse_xaiger_literal(f);
|
||||||
|
|
||||||
|
log_debug("M: inPort=%s nodeID=%u\n", RTLIL::unescape_id(mapping_cell.ins.at(j)), nodeID);
|
||||||
|
|
||||||
|
RTLIL::Wire *input_sig = module->wire(stringf("$aiger%d$%d", aiger_autoidx, nodeID));
|
||||||
|
log_assert(input_sig);
|
||||||
|
|
||||||
|
cell->setPort(mapping_cell.ins.at(j), input_sig);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (c == 'r') { // 'r'egister classes
|
||||||
uint32_t dataSize = parse_xaiger_literal(f);
|
uint32_t dataSize = parse_xaiger_literal(f);
|
||||||
flopNum = parse_xaiger_literal(f);
|
flopNum = parse_xaiger_literal(f);
|
||||||
log_debug("flopNum = %u\n", flopNum);
|
log_debug("flopNum = %u\n", flopNum);
|
||||||
|
|
@ -470,7 +540,7 @@ void AigerReader::parse_xaiger()
|
||||||
for (unsigned i = 0; i < flopNum; i++)
|
for (unsigned i = 0; i < flopNum; i++)
|
||||||
mergeability.emplace_back(parse_xaiger_literal(f));
|
mergeability.emplace_back(parse_xaiger_literal(f));
|
||||||
}
|
}
|
||||||
else if (c == 's') {
|
else if (c == 's') { // register initial 's'tates
|
||||||
uint32_t dataSize = parse_xaiger_literal(f);
|
uint32_t dataSize = parse_xaiger_literal(f);
|
||||||
flopNum = parse_xaiger_literal(f);
|
flopNum = parse_xaiger_literal(f);
|
||||||
log_assert(dataSize == (flopNum+1) * sizeof(uint32_t));
|
log_assert(dataSize == (flopNum+1) * sizeof(uint32_t));
|
||||||
|
|
@ -478,13 +548,13 @@ void AigerReader::parse_xaiger()
|
||||||
for (unsigned i = 0; i < flopNum; i++)
|
for (unsigned i = 0; i < flopNum; i++)
|
||||||
initial_state.emplace_back(parse_xaiger_literal(f));
|
initial_state.emplace_back(parse_xaiger_literal(f));
|
||||||
}
|
}
|
||||||
else if (c == 'n') {
|
else if (c == 'n') { // 'n'ame
|
||||||
parse_xaiger_literal(f);
|
parse_xaiger_literal(f);
|
||||||
f >> s;
|
f >> s;
|
||||||
log_debug("n: '%s'\n", s);
|
log_debug("n: '%s'\n", s);
|
||||||
}
|
}
|
||||||
else if (c == 'h') {
|
else if (c == 'h') { // 'h'ierarchy information
|
||||||
f.ignore(sizeof(uint32_t));
|
f.ignore(sizeof(uint32_t)); // length
|
||||||
uint32_t version = parse_xaiger_literal(f);
|
uint32_t version = parse_xaiger_literal(f);
|
||||||
log_assert(version == 1);
|
log_assert(version == 1);
|
||||||
uint32_t ciNum = parse_xaiger_literal(f);
|
uint32_t ciNum = parse_xaiger_literal(f);
|
||||||
|
|
@ -510,7 +580,7 @@ void AigerReader::parse_xaiger()
|
||||||
boxes.emplace_back(cell);
|
boxes.emplace_back(cell);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (c == 'a' || c == 'i' || c == 'o' || c == 's') {
|
else if (c == 'a' /* 'a'dditional AIG */ || c == 'i' /* 'i'nput arrival times */ || c == 'o' /* 'o'utput required times */) {
|
||||||
uint32_t dataSize = parse_xaiger_literal(f);
|
uint32_t dataSize = parse_xaiger_literal(f);
|
||||||
f.ignore(dataSize);
|
f.ignore(dataSize);
|
||||||
log_debug("ignoring '%c'\n", c);
|
log_debug("ignoring '%c'\n", c);
|
||||||
|
|
|
||||||
|
|
@ -187,7 +187,7 @@ struct Xaiger2Frontend : public Frontend {
|
||||||
if (c == 'h') {
|
if (c == 'h') {
|
||||||
uint32_t len, ci_num, co_num, pi_num, po_num, no_boxes;
|
uint32_t len, ci_num, co_num, pi_num, po_num, no_boxes;
|
||||||
len = read_be32(*f);
|
len = read_be32(*f);
|
||||||
read_be32(*f);
|
read_be32(*f); // version
|
||||||
ci_num = read_be32(*f);
|
ci_num = read_be32(*f);
|
||||||
co_num = read_be32(*f);
|
co_num = read_be32(*f);
|
||||||
pi_num = read_be32(*f);
|
pi_num = read_be32(*f);
|
||||||
|
|
|
||||||
|
|
@ -323,7 +323,7 @@ struct SynthGateMatePass : public ScriptPass
|
||||||
abc_args += " -dff";
|
abc_args += " -dff";
|
||||||
}
|
}
|
||||||
if (abc_new) {
|
if (abc_new) {
|
||||||
run("abc_new " + abc_args, "(with -luttree and -abc_new)");
|
run("abc_new -nocleanup " + abc_args, "(with -luttree and -abc_new)");
|
||||||
} else {
|
} else {
|
||||||
run("abc " + abc_args, "(with -luttree, without -abc_new)");
|
run("abc " + abc_args, "(with -luttree, without -abc_new)");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue