mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Open aig frontend as binary file
This commit is contained in:
@@ -1056,7 +1056,7 @@ struct AigerFrontend : public Frontend {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
extra_args(f, filename, args, argidx);
|
extra_args(f, filename, args, argidx, true);
|
||||||
|
|
||||||
if (module_name.empty()) {
|
if (module_name.empty()) {
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
|||||||
+2
-2
@@ -439,7 +439,7 @@ void Frontend::execute(std::vector<std::string> args, RTLIL::Design *design)
|
|||||||
FILE *Frontend::current_script_file = NULL;
|
FILE *Frontend::current_script_file = NULL;
|
||||||
std::string Frontend::last_here_document;
|
std::string Frontend::last_here_document;
|
||||||
|
|
||||||
void Frontend::extra_args(std::istream *&f, std::string &filename, std::vector<std::string> args, size_t argidx)
|
void Frontend::extra_args(std::istream *&f, std::string &filename, std::vector<std::string> args, size_t argidx, bool bin_input)
|
||||||
{
|
{
|
||||||
bool called_with_fp = f != NULL;
|
bool called_with_fp = f != NULL;
|
||||||
|
|
||||||
@@ -489,7 +489,7 @@ void Frontend::extra_args(std::istream *&f, std::string &filename, std::vector<s
|
|||||||
next_args.insert(next_args.end(), filenames.begin()+1, filenames.end());
|
next_args.insert(next_args.end(), filenames.begin()+1, filenames.end());
|
||||||
}
|
}
|
||||||
std::ifstream *ff = new std::ifstream;
|
std::ifstream *ff = new std::ifstream;
|
||||||
ff->open(filename.c_str());
|
ff->open(filename.c_str(), bin_input ? std::ifstream::binary : std::ifstream::in);
|
||||||
yosys_input_files.insert(filename);
|
yosys_input_files.insert(filename);
|
||||||
if (ff->fail())
|
if (ff->fail())
|
||||||
delete ff;
|
delete ff;
|
||||||
|
|||||||
+1
-1
@@ -94,7 +94,7 @@ struct Frontend : Pass
|
|||||||
virtual void execute(std::istream *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design) = 0;
|
virtual void execute(std::istream *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design) = 0;
|
||||||
|
|
||||||
static std::vector<std::string> next_args;
|
static std::vector<std::string> next_args;
|
||||||
void extra_args(std::istream *&f, std::string &filename, std::vector<std::string> args, size_t argidx);
|
void extra_args(std::istream *&f, std::string &filename, std::vector<std::string> args, size_t argidx, bool bin_input = false);
|
||||||
|
|
||||||
static void frontend_call(RTLIL::Design *design, std::istream *f, std::string filename, std::string command);
|
static void frontend_call(RTLIL::Design *design, std::istream *f, std::string filename, std::string command);
|
||||||
static void frontend_call(RTLIL::Design *design, std::istream *f, std::string filename, std::vector<std::string> args);
|
static void frontend_call(RTLIL::Design *design, std::istream *f, std::string filename, std::vector<std::string> args);
|
||||||
|
|||||||
@@ -471,7 +471,7 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri
|
|||||||
log_error("ABC: execution of command \"%s\" failed: return code %d.\n", buffer.c_str(), ret);
|
log_error("ABC: execution of command \"%s\" failed: return code %d.\n", buffer.c_str(), ret);
|
||||||
|
|
||||||
buffer = stringf("%s/%s", tempdir_name.c_str(), "output.aig");
|
buffer = stringf("%s/%s", tempdir_name.c_str(), "output.aig");
|
||||||
ifs.open(buffer);
|
ifs.open(buffer, std::ifstream::binary);
|
||||||
if (ifs.fail())
|
if (ifs.fail())
|
||||||
log_error("Can't open ABC output file `%s'.\n", buffer.c_str());
|
log_error("Can't open ABC output file `%s'.\n", buffer.c_str());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user