2013-01-05 04:13:26 -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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
#include "kernel/yosys.h"
|
2014-08-01 12:43:28 -05:00
|
|
|
#include "libs/sha1/sha1.h"
|
2014-07-31 06:19:47 -05:00
|
|
|
|
2014-08-22 09:09:13 -05:00
|
|
|
#ifdef YOSYS_ENABLE_READLINE
|
|
|
|
# include <readline/readline.h>
|
|
|
|
# include <readline/history.h>
|
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2013-03-28 06:26:17 -05:00
|
|
|
#include <string.h>
|
2014-03-12 12:33:37 -05:00
|
|
|
#include <limits.h>
|
2014-03-11 08:24:24 -05:00
|
|
|
#include <errno.h>
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-12-27 04:25:51 -06:00
|
|
|
#ifdef __linux__
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2014-10-17 05:04:40 -05:00
|
|
|
#if !defined(_WIN32) || defined(__MINGW32__)
|
2014-10-16 11:06:54 -05:00
|
|
|
# include <unistd.h>
|
2014-10-17 08:51:33 -05:00
|
|
|
#else
|
|
|
|
char *optarg;
|
|
|
|
int optind = 1, optcur = 1;
|
|
|
|
int getopt(int argc, char **argv, const char *optstring)
|
|
|
|
{
|
|
|
|
if (optind >= argc || argv[optind][0] != '-')
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
bool takes_arg = false;
|
|
|
|
int opt = argv[optind][optcur];
|
|
|
|
for (int i = 0; optstring[i]; i++)
|
|
|
|
if (opt == optstring[i] && optstring[i + 1] == ':')
|
|
|
|
takes_arg = true;
|
|
|
|
|
|
|
|
if (!takes_arg) {
|
|
|
|
if (argv[optind][++optcur] == 0)
|
|
|
|
optind++, optcur = 1;
|
|
|
|
return opt;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argv[optind][++optcur]) {
|
|
|
|
optarg = argv[optind++] + optcur;
|
|
|
|
optcur = 1;
|
|
|
|
return opt;
|
|
|
|
}
|
|
|
|
|
|
|
|
optarg = argv[++optind];
|
|
|
|
optind++, optcur = 1;
|
|
|
|
return opt;
|
|
|
|
}
|
2014-10-16 11:06:54 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
USING_YOSYS_NAMESPACE
|
2013-10-27 03:33:26 -05:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
std::string frontend_command = "auto";
|
|
|
|
std::string backend_command = "auto";
|
|
|
|
std::vector<std::string> passes_commands;
|
2014-08-22 06:58:36 -05:00
|
|
|
std::vector<std::string> plugin_filenames;
|
2013-03-21 03:12:32 -05:00
|
|
|
std::string output_filename = "";
|
2013-01-05 04:13:26 -06:00
|
|
|
std::string scriptfile = "";
|
2013-03-28 06:26:17 -05:00
|
|
|
bool scriptfile_tcl = false;
|
2013-01-05 04:13:26 -06:00
|
|
|
bool got_output_filename = false;
|
2014-07-30 17:53:21 -05:00
|
|
|
bool print_banner = true;
|
2014-08-01 11:42:10 -05:00
|
|
|
bool print_stats = true;
|
2014-07-30 18:05:27 -05:00
|
|
|
bool call_abort = false;
|
2014-12-26 03:54:23 -06:00
|
|
|
bool timing_details = false;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-08-22 09:09:13 -05:00
|
|
|
#ifdef YOSYS_ENABLE_READLINE
|
2013-06-10 08:42:52 -05:00
|
|
|
int history_offset = 0;
|
|
|
|
std::string history_file;
|
|
|
|
if (getenv("HOME") != NULL) {
|
|
|
|
history_file = stringf("%s/.yosys_history", getenv("HOME"));
|
|
|
|
read_history(history_file.c_str());
|
|
|
|
history_offset = where_history();
|
|
|
|
}
|
2014-08-22 09:09:13 -05:00
|
|
|
#endif
|
2013-06-10 08:42:52 -05:00
|
|
|
|
2014-12-27 04:01:59 -06:00
|
|
|
if (argc == 2 && (!strcmp(argv[1], "-h") || !strcmp(argv[1], "-help") || !strcmp(argv[1], "--help")))
|
|
|
|
{
|
|
|
|
printf("\n");
|
|
|
|
printf("Usage: %s [options] [<infile> [..]]\n", argv[0]);
|
|
|
|
printf("\n");
|
|
|
|
printf(" -Q\n");
|
|
|
|
printf(" suppress printing of banner (copyright, disclaimer, version)\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -T\n");
|
|
|
|
printf(" suppress printing of footer (log hash, version, timing statistics)\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -q\n");
|
|
|
|
printf(" quiet operation. only write warnings and error messages to console\n");
|
|
|
|
printf(" use this option twice to also quiet warning messages\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -v <level>\n");
|
|
|
|
printf(" print log headers up to level <level> to the console. (implies -q)\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -t\n");
|
|
|
|
printf(" annotate all log messages with a time stamp\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -d\n");
|
|
|
|
printf(" print more detailed timing stats at exit\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -l logfile\n");
|
|
|
|
printf(" write log messages to the specified file\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -o outfile\n");
|
|
|
|
printf(" write the design to the specified file on exit\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -b backend\n");
|
|
|
|
printf(" use this backend for the output file specified on the command line\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -f backend\n");
|
|
|
|
printf(" use the specified front for the input files on the command line\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -H\n");
|
|
|
|
printf(" print the command list\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -h command\n");
|
|
|
|
printf(" print the help message for the specified command\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -s scriptfile\n");
|
|
|
|
printf(" execute the commands in the script file\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -c tcl_scriptfile\n");
|
|
|
|
printf(" execute the commands in the tcl script file (see 'help tcl' for details)\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -p command\n");
|
|
|
|
printf(" execute the commands\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" -m module_file\n");
|
|
|
|
printf(" load the specified module (aka plugin)\n");
|
|
|
|
printf("\n");
|
2014-12-29 06:33:33 -06:00
|
|
|
printf(" -X\n");
|
|
|
|
printf(" enable tracing of core data structure changes. for debugging\n");
|
|
|
|
printf("\n");
|
2014-12-28 14:27:51 -06:00
|
|
|
printf(" -M\n");
|
|
|
|
printf(" will slightly randomize allocated pointer addresses. for debugging\n");
|
|
|
|
printf("\n");
|
2014-12-27 04:01:59 -06:00
|
|
|
printf(" -A\n");
|
2014-12-28 14:27:51 -06:00
|
|
|
printf(" will call abort() at the end of the script. for debugging\n");
|
2014-12-27 04:01:59 -06:00
|
|
|
printf("\n");
|
|
|
|
printf(" -V\n");
|
|
|
|
printf(" print version information and exit\n");
|
|
|
|
printf("\n");
|
|
|
|
printf("The option -S is an shortcut for calling the \"synth\" command, a default\n");
|
|
|
|
printf("script for transforming the verilog input to a gate-level netlist. For example:\n");
|
|
|
|
printf("\n");
|
|
|
|
printf(" yosys -o output.blif -S input.v\n");
|
|
|
|
printf("\n");
|
|
|
|
printf("For more complex synthesis jobs it is recommended to use the read_* and write_*\n");
|
|
|
|
printf("commands in a script file instead of specifying input and output files on the\n");
|
|
|
|
printf("command line.\n");
|
|
|
|
printf("\n");
|
|
|
|
printf("When no commands, script files or input files are specified on the command\n");
|
|
|
|
printf("line, yosys automatically enters the interactive command mode. Use the 'help'\n");
|
|
|
|
printf("command to get information on the individual commands.\n");
|
|
|
|
printf("\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
int opt;
|
2014-12-29 06:33:33 -06:00
|
|
|
while ((opt = getopt(argc, argv, "MXAQTVSm:f:Hh:b:o:p:l:qv:tds:c:")) != -1)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
switch (opt)
|
|
|
|
{
|
2014-12-28 14:27:51 -06:00
|
|
|
case 'M':
|
|
|
|
memhasher_on();
|
|
|
|
break;
|
2014-12-29 06:33:33 -06:00
|
|
|
case 'X':
|
|
|
|
yosys_xtrace++;
|
|
|
|
break;
|
2014-07-30 18:05:27 -05:00
|
|
|
case 'A':
|
|
|
|
call_abort = true;
|
|
|
|
break;
|
2014-07-30 17:53:21 -05:00
|
|
|
case 'Q':
|
|
|
|
print_banner = false;
|
|
|
|
break;
|
2014-08-01 11:42:10 -05:00
|
|
|
case 'T':
|
|
|
|
print_stats = false;
|
|
|
|
break;
|
2013-08-20 02:48:12 -05:00
|
|
|
case 'V':
|
|
|
|
printf("%s\n", yosys_version_str);
|
|
|
|
exit(0);
|
2013-03-21 03:52:21 -05:00
|
|
|
case 'S':
|
2014-09-14 09:09:06 -05:00
|
|
|
passes_commands.push_back("synth");
|
2013-03-21 03:52:21 -05:00
|
|
|
break;
|
2013-03-06 04:58:07 -06:00
|
|
|
case 'm':
|
2014-08-22 06:58:36 -05:00
|
|
|
plugin_filenames.push_back(optarg);
|
2013-03-06 04:58:07 -06:00
|
|
|
break;
|
2013-01-05 04:13:26 -06:00
|
|
|
case 'f':
|
|
|
|
frontend_command = optarg;
|
|
|
|
break;
|
2014-01-30 05:32:59 -06:00
|
|
|
case 'H':
|
|
|
|
passes_commands.push_back("help");
|
|
|
|
break;
|
2014-01-29 04:10:39 -06:00
|
|
|
case 'h':
|
|
|
|
passes_commands.push_back(stringf("help %s", optarg));
|
|
|
|
break;
|
2013-01-05 04:13:26 -06:00
|
|
|
case 'b':
|
|
|
|
backend_command = optarg;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
passes_commands.push_back(optarg);
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
output_filename = optarg;
|
|
|
|
got_output_filename = true;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
log_files.push_back(fopen(optarg, "wt"));
|
|
|
|
if (log_files.back() == NULL) {
|
|
|
|
fprintf(stderr, "Can't open log file `%s' for writing!\n", optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'q':
|
2014-11-09 04:02:20 -06:00
|
|
|
if (log_errfile == stderr)
|
|
|
|
log_quiet_warnings = true;
|
2013-01-05 04:13:26 -06:00
|
|
|
log_errfile = stderr;
|
|
|
|
break;
|
2013-11-17 06:26:31 -06:00
|
|
|
case 'v':
|
|
|
|
log_errfile = stderr;
|
|
|
|
log_verbose_level = atoi(optarg);
|
|
|
|
break;
|
2013-01-05 04:13:26 -06:00
|
|
|
case 't':
|
|
|
|
log_time = true;
|
|
|
|
break;
|
2014-12-26 03:54:23 -06:00
|
|
|
case 'd':
|
|
|
|
timing_details = true;
|
|
|
|
break;
|
2013-01-05 04:13:26 -06:00
|
|
|
case 's':
|
|
|
|
scriptfile = optarg;
|
2013-03-28 06:26:17 -05:00
|
|
|
scriptfile_tcl = false;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
scriptfile = optarg;
|
|
|
|
scriptfile_tcl = true;
|
2013-01-05 04:13:26 -06:00
|
|
|
break;
|
|
|
|
default:
|
2014-12-27 04:01:59 -06:00
|
|
|
fprintf(stderr, "Run '%s -h' for help.\n", argv[0]);
|
2013-01-05 04:13:26 -06:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log_errfile == NULL)
|
|
|
|
log_files.push_back(stderr);
|
|
|
|
|
2014-07-30 17:53:21 -05:00
|
|
|
if (print_banner) {
|
|
|
|
log("\n");
|
2014-10-11 04:59:35 -05:00
|
|
|
log(" /----------------------------------------------------------------------------\\\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | yosys -- Yosys Open SYnthesis Suite |\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | Copyright (C) 2012 Clifford Wolf <clifford@clifford.at> |\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | Permission to use, copy, modify, and/or distribute this software for any |\n");
|
|
|
|
log(" | purpose with or without fee is hereby granted, provided that the above |\n");
|
|
|
|
log(" | copyright notice and this permission notice appear in all copies. |\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |\n");
|
|
|
|
log(" | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |\n");
|
|
|
|
log(" | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |\n");
|
|
|
|
log(" | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |\n");
|
|
|
|
log(" | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |\n");
|
|
|
|
log(" | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |\n");
|
|
|
|
log(" | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" \\----------------------------------------------------------------------------/\n");
|
2014-07-30 17:53:21 -05:00
|
|
|
log("\n");
|
|
|
|
log(" %s\n", yosys_version_str);
|
|
|
|
log("\n");
|
|
|
|
}
|
2013-02-28 06:13:56 -06:00
|
|
|
|
2014-08-01 12:43:28 -05:00
|
|
|
if (print_stats)
|
|
|
|
log_hasher = new SHA1;
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
yosys_setup();
|
2013-03-06 04:58:07 -06:00
|
|
|
|
2014-08-22 06:58:36 -05:00
|
|
|
for (auto &fn : plugin_filenames)
|
|
|
|
load_plugin(fn, {});
|
|
|
|
|
2013-01-06 06:50:30 -06:00
|
|
|
if (optind == argc && passes_commands.size() == 0 && scriptfile.empty()) {
|
2013-01-05 04:13:26 -06:00
|
|
|
if (!got_output_filename)
|
|
|
|
backend_command = "";
|
2013-06-08 18:04:23 -05:00
|
|
|
shell(yosys_design);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
while (optind < argc)
|
2014-07-21 06:28:12 -05:00
|
|
|
run_frontend(argv[optind++], frontend_command, yosys_design, output_filename == "-" ? &backend_command : NULL, NULL);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-03-28 06:26:17 -05:00
|
|
|
if (!scriptfile.empty()) {
|
|
|
|
if (scriptfile_tcl) {
|
|
|
|
#ifdef YOSYS_ENABLE_TCL
|
2013-05-23 05:56:23 -05:00
|
|
|
if (Tcl_EvalFile(yosys_get_tcl_interp(), scriptfile.c_str()) != TCL_OK)
|
|
|
|
log_error("TCL interpreter returned an error: %s\n", Tcl_GetStringResult(yosys_get_tcl_interp()));
|
2013-03-28 06:26:17 -05:00
|
|
|
#else
|
|
|
|
log_error("Can't exectue TCL script: this version of yosys is not built with TCL support enabled.\n");
|
|
|
|
#endif
|
|
|
|
} else
|
2014-07-21 06:28:12 -05:00
|
|
|
run_frontend(scriptfile, "script", yosys_design, output_filename == "-" ? &backend_command : NULL, NULL);
|
2013-03-28 06:26:17 -05:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
for (auto it = passes_commands.begin(); it != passes_commands.end(); it++)
|
2013-06-08 18:04:23 -05:00
|
|
|
run_pass(*it, yosys_design);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
if (!backend_command.empty())
|
2013-06-08 18:04:23 -05:00
|
|
|
run_backend(output_filename, backend_command, yosys_design);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-08-01 11:42:10 -05:00
|
|
|
if (print_stats)
|
|
|
|
{
|
2014-08-01 12:43:28 -05:00
|
|
|
std::string hash = log_hasher->final().substr(0, 10);
|
|
|
|
delete log_hasher;
|
|
|
|
log_hasher = nullptr;
|
|
|
|
|
2014-10-09 03:51:24 -05:00
|
|
|
log_spacer();
|
2014-10-09 10:00:54 -05:00
|
|
|
#ifdef _WIN32
|
2014-10-09 03:51:24 -05:00
|
|
|
log("End of script. Logfile hash: %s\n", hash.c_str());
|
|
|
|
#else
|
2014-12-27 04:25:51 -06:00
|
|
|
std::string meminfo;
|
|
|
|
std::string stats_divider = ", ";
|
|
|
|
# ifdef __linux__
|
|
|
|
std::ifstream statm;
|
|
|
|
statm.open(stringf("/proc/%lld/statm", (long long)getpid()));
|
|
|
|
if (statm.is_open()) {
|
|
|
|
int sz_total, sz_resident;
|
|
|
|
statm >> sz_total >> sz_resident;
|
|
|
|
meminfo = stringf(", MEM: %.2f MB total, %.2f MB resident",
|
|
|
|
sz_total * (getpagesize() / 1024.0 / 1024.0),
|
|
|
|
sz_resident * (getpagesize() / 1024.0 / 1024.0));
|
|
|
|
stats_divider = "\n";
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2014-08-01 11:42:10 -05:00
|
|
|
struct rusage ru_buffer;
|
|
|
|
getrusage(RUSAGE_SELF, &ru_buffer);
|
2014-12-27 04:25:51 -06:00
|
|
|
log("End of script. Logfile hash: %s%sCPU: user %.2fs system %.2fs%s\n", hash.c_str(),
|
|
|
|
stats_divider.c_str(), ru_buffer.ru_utime.tv_sec + 1e-6 * ru_buffer.ru_utime.tv_usec,
|
|
|
|
ru_buffer.ru_stime.tv_sec + 1e-6 * ru_buffer.ru_stime.tv_usec, meminfo.c_str());
|
2014-10-09 03:51:24 -05:00
|
|
|
#endif
|
2014-08-01 12:43:28 -05:00
|
|
|
log("%s\n", yosys_version_str);
|
2014-08-01 11:42:10 -05:00
|
|
|
|
|
|
|
int64_t total_ns = 0;
|
|
|
|
std::set<std::tuple<int64_t, int, std::string>> timedat;
|
|
|
|
|
|
|
|
for (auto &it : pass_register)
|
|
|
|
if (it.second->call_counter) {
|
|
|
|
total_ns += it.second->runtime_ns + 1;
|
|
|
|
timedat.insert(make_tuple(it.second->runtime_ns + 1, it.second->call_counter, it.first));
|
|
|
|
}
|
|
|
|
|
2014-12-26 03:54:23 -06:00
|
|
|
if (timing_details)
|
|
|
|
{
|
|
|
|
log("Time spent:\n");
|
|
|
|
for (auto it = timedat.rbegin(); it != timedat.rend(); it++) {
|
|
|
|
log("%5d%% %5d calls %8.3f sec %s\n", int(100*std::get<0>(*it) / total_ns),
|
|
|
|
std::get<1>(*it), std::get<0>(*it) / 1000000000.0, std::get<2>(*it).c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int out_count = 0;
|
|
|
|
log("Time spent:");
|
|
|
|
for (auto it = timedat.rbegin(); it != timedat.rend() && out_count < 4; it++, out_count++) {
|
|
|
|
if (out_count >= 2 && (std::get<0>(*it) < 1000000000 || int(100*std::get<0>(*it) / total_ns) < 20)) {
|
|
|
|
log(", ...");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
log("%s %d%% %dx %s (%d sec)", out_count ? "," : "", int(100*std::get<0>(*it) / total_ns),
|
|
|
|
std::get<1>(*it), std::get<2>(*it).c_str(), int(std::get<0>(*it) / 1000000000));
|
2014-08-01 11:42:10 -05:00
|
|
|
}
|
2014-12-26 03:54:23 -06:00
|
|
|
log("%s\n", out_count ? "" : " no commands executed");
|
2014-08-01 11:42:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-06 02:39:55 -06:00
|
|
|
#ifdef YOSYS_ENABLE_COVER
|
2014-08-01 12:43:28 -05:00
|
|
|
if (getenv("YOSYS_COVER_DIR") || getenv("YOSYS_COVER_FILE"))
|
|
|
|
{
|
|
|
|
char filename_buffer[4096];
|
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
if (getenv("YOSYS_COVER_DIR")) {
|
|
|
|
snprintf(filename_buffer, 4096, "%s/yosys_cover_%d_XXXXXX.txt", getenv("YOSYS_COVER_DIR"), getpid());
|
|
|
|
f = fdopen(mkstemps(filename_buffer, 4), "w");
|
|
|
|
} else {
|
|
|
|
snprintf(filename_buffer, 4096, "%s", getenv("YOSYS_COVER_FILE"));
|
|
|
|
f = fopen(filename_buffer, "a+");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (f == NULL)
|
|
|
|
log_error("Can't create coverage file `%s'.\n", filename_buffer);
|
|
|
|
|
|
|
|
log("<writing coverage file \"%s\">\n", filename_buffer);
|
|
|
|
|
|
|
|
for (auto &it : get_coverage_data())
|
|
|
|
fprintf(f, "%-60s %10d %s\n", it.second.first.c_str(), it.second.second, it.first.c_str());
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-12-28 14:27:51 -06:00
|
|
|
memhasher_off();
|
2014-07-30 18:05:27 -05:00
|
|
|
if (call_abort)
|
|
|
|
abort();
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-08-22 09:09:13 -05:00
|
|
|
#ifdef YOSYS_ENABLE_READLINE
|
2013-06-10 08:42:52 -05:00
|
|
|
if (!history_file.empty()) {
|
|
|
|
if (history_offset > 0) {
|
|
|
|
history_truncate_file(history_file.c_str(), 100);
|
|
|
|
append_history(where_history() - history_offset, history_file.c_str());
|
|
|
|
} else
|
|
|
|
write_history(history_file.c_str());
|
|
|
|
}
|
|
|
|
|
2013-08-06 08:03:46 -05:00
|
|
|
clear_history();
|
|
|
|
HIST_ENTRY **hist_list = history_list();
|
|
|
|
if (hist_list != NULL)
|
|
|
|
free(hist_list);
|
2014-08-22 09:09:13 -05:00
|
|
|
#endif
|
2013-08-06 08:03:46 -05:00
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
yosys_shutdown();
|
2013-01-06 06:50:30 -06:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|