Merge pull request #2295 from epfl-vlsc/firrtl_blackbox_generic_parameters
[yosys.git] / kernel / driver.cc
1 /*
2 * yosys -- Yosys Open SYnthesis Suite
3 *
4 * Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 *
18 */
19
20 #include "kernel/yosys.h"
21 #include "libs/sha1/sha1.h"
22
23 #ifdef YOSYS_ENABLE_READLINE
24 # include <readline/readline.h>
25 # include <readline/history.h>
26 #endif
27
28 #ifdef YOSYS_ENABLE_EDITLINE
29 # include <editline/readline.h>
30 #endif
31
32 #include <stdio.h>
33 #include <string.h>
34 #include <limits.h>
35 #include <errno.h>
36
37 #if defined (__linux__) || defined(__FreeBSD__)
38 # include <sys/resource.h>
39 # include <sys/types.h>
40 # include <unistd.h>
41 #endif
42
43 #ifdef __FreeBSD__
44 # include <sys/sysctl.h>
45 # include <sys/user.h>
46 #endif
47
48 #if !defined(_WIN32) || defined(__MINGW32__)
49 # include <unistd.h>
50 #else
51 char *optarg;
52 int optind = 1, optcur = 1;
53 int getopt(int argc, char **argv, const char *optstring)
54 {
55 if (optind >= argc || argv[optind][0] != '-')
56 return -1;
57
58 bool takes_arg = false;
59 int opt = argv[optind][optcur];
60 for (int i = 0; optstring[i]; i++)
61 if (opt == optstring[i] && optstring[i + 1] == ':')
62 takes_arg = true;
63
64 if (!takes_arg) {
65 if (argv[optind][++optcur] == 0)
66 optind++, optcur = 1;
67 return opt;
68 }
69
70 if (argv[optind][++optcur]) {
71 optarg = argv[optind++] + optcur;
72 optcur = 1;
73 return opt;
74 }
75
76 optarg = argv[++optind];
77 optind++, optcur = 1;
78 return opt;
79 }
80 #endif
81
82
83 USING_YOSYS_NAMESPACE
84
85 #ifdef EMSCRIPTEN
86 # include <sys/stat.h>
87 # include <sys/types.h>
88 # include <emscripten.h>
89
90 extern "C" int main(int, char**);
91 extern "C" void run(const char*);
92 extern "C" const char *errmsg();
93 extern "C" const char *prompt();
94
95 int main(int argc, char **argv)
96 {
97 EM_ASM(
98 if (ENVIRONMENT_IS_NODE)
99 {
100 FS.mkdir('/hostcwd');
101 FS.mount(NODEFS, { root: '.' }, '/hostcwd');
102 FS.mkdir('/hostfs');
103 FS.mount(NODEFS, { root: '/' }, '/hostfs');
104 }
105 );
106
107 mkdir("/work", 0777);
108 chdir("/work");
109 log_files.push_back(stdout);
110 log_error_stderr = true;
111 yosys_banner();
112 yosys_setup();
113 #ifdef WITH_PYTHON
114 PyRun_SimpleString(("sys.path.append(\""+proc_self_dirname()+"\")").c_str());
115 PyRun_SimpleString(("sys.path.append(\""+proc_share_dirname()+"plugins\")").c_str());
116 #endif
117
118 if (argc == 2)
119 {
120 // Run the first argument as a script file
121 run_frontend(argv[1], "script", 0, 0, 0);
122 }
123 }
124
125 void run(const char *command)
126 {
127 int selSize = GetSize(yosys_get_design()->selection_stack);
128 try {
129 log_last_error = "Internal error (see JavaScript console for details)";
130 run_pass(command);
131 log_last_error = "";
132 } catch (...) {
133 while (GetSize(yosys_get_design()->selection_stack) > selSize)
134 yosys_get_design()->selection_stack.pop_back();
135 throw;
136 }
137 }
138
139 const char *errmsg()
140 {
141 return log_last_error.c_str();
142 }
143
144 const char *prompt()
145 {
146 const char *p = create_prompt(yosys_get_design(), 0);
147 while (*p == '\n') p++;
148 return p;
149 }
150
151 #else /* EMSCRIPTEN */
152
153 #if defined(YOSYS_ENABLE_READLINE) || defined(YOSYS_ENABLE_EDITLINE)
154 int yosys_history_offset = 0;
155 std::string yosys_history_file;
156 #endif
157
158 #if defined(__wasm)
159 extern "C" {
160 // FIXME: WASI does not currently support exceptions.
161 void* __cxa_allocate_exception(size_t thrown_size) throw() {
162 return malloc(thrown_size);
163 }
164 bool __cxa_uncaught_exception() throw();
165 void __cxa_throw(void* thrown_exception, struct std::type_info * tinfo, void (*dest)(void*)) {
166 std::terminate();
167 }
168 }
169 #endif
170
171 void yosys_atexit()
172 {
173 #if defined(YOSYS_ENABLE_READLINE) || defined(YOSYS_ENABLE_EDITLINE)
174 if (!yosys_history_file.empty()) {
175 #if defined(YOSYS_ENABLE_READLINE)
176 if (yosys_history_offset > 0) {
177 history_truncate_file(yosys_history_file.c_str(), 100);
178 append_history(where_history() - yosys_history_offset, yosys_history_file.c_str());
179 } else
180 write_history(yosys_history_file.c_str());
181 #else
182 write_history(yosys_history_file.c_str());
183 #endif
184 }
185
186 clear_history();
187 #if defined(YOSYS_ENABLE_READLINE)
188 HIST_ENTRY **hist_list = history_list();
189 if (hist_list != NULL)
190 free(hist_list);
191 #endif
192 #endif
193 }
194
195 int main(int argc, char **argv)
196 {
197 std::string frontend_command = "auto";
198 std::string backend_command = "auto";
199 std::vector<std::string> vlog_defines;
200 std::vector<std::string> passes_commands;
201 std::vector<std::string> plugin_filenames;
202 std::string output_filename = "";
203 std::string scriptfile = "";
204 std::string depsfile = "";
205 bool scriptfile_tcl = false;
206 bool got_output_filename = false;
207 bool print_banner = true;
208 bool print_stats = true;
209 bool call_abort = false;
210 bool timing_details = false;
211 bool mode_v = false;
212 bool mode_q = false;
213
214 #if defined(YOSYS_ENABLE_READLINE) || defined(YOSYS_ENABLE_EDITLINE)
215 if (getenv("HOME") != NULL) {
216 yosys_history_file = stringf("%s/.yosys_history", getenv("HOME"));
217 read_history(yosys_history_file.c_str());
218 yosys_history_offset = where_history();
219 }
220 #endif
221
222 if (argc == 2 && (!strcmp(argv[1], "-h") || !strcmp(argv[1], "-help") || !strcmp(argv[1], "--help")))
223 {
224 printf("\n");
225 printf("Usage: %s [options] [<infile> [..]]\n", argv[0]);
226 printf("\n");
227 printf(" -Q\n");
228 printf(" suppress printing of banner (copyright, disclaimer, version)\n");
229 printf("\n");
230 printf(" -T\n");
231 printf(" suppress printing of footer (log hash, version, timing statistics)\n");
232 printf("\n");
233 printf(" -q\n");
234 printf(" quiet operation. only write warnings and error messages to console\n");
235 printf(" use this option twice to also quiet warning messages\n");
236 printf("\n");
237 printf(" -v <level>\n");
238 printf(" print log headers up to level <level> to the console. (this\n");
239 printf(" implies -q for everything except the 'End of script.' message.)\n");
240 printf("\n");
241 printf(" -t\n");
242 printf(" annotate all log messages with a time stamp\n");
243 printf("\n");
244 printf(" -d\n");
245 printf(" print more detailed timing stats at exit\n");
246 printf("\n");
247 printf(" -l logfile\n");
248 printf(" write log messages to the specified file\n");
249 printf("\n");
250 printf(" -L logfile\n");
251 printf(" like -l but open log file in line buffered mode\n");
252 printf("\n");
253 printf(" -o outfile\n");
254 printf(" write the design to the specified file on exit\n");
255 printf("\n");
256 printf(" -b backend\n");
257 printf(" use this backend for the output file specified on the command line\n");
258 printf("\n");
259 printf(" -f frontend\n");
260 printf(" use the specified frontend for the input files on the command line\n");
261 printf("\n");
262 printf(" -H\n");
263 printf(" print the command list\n");
264 printf("\n");
265 printf(" -h command\n");
266 printf(" print the help message for the specified command\n");
267 printf("\n");
268 printf(" -s scriptfile\n");
269 printf(" execute the commands in the script file\n");
270 printf("\n");
271 printf(" -c tcl_scriptfile\n");
272 printf(" execute the commands in the tcl script file (see 'help tcl' for details)\n");
273 printf("\n");
274 printf(" -p command\n");
275 printf(" execute the commands\n");
276 printf("\n");
277 printf(" -m module_file\n");
278 printf(" load the specified module (aka plugin)\n");
279 printf("\n");
280 printf(" -X\n");
281 printf(" enable tracing of core data structure changes. for debugging\n");
282 printf("\n");
283 printf(" -M\n");
284 printf(" will slightly randomize allocated pointer addresses. for debugging\n");
285 printf("\n");
286 printf(" -A\n");
287 printf(" will call abort() at the end of the script. for debugging\n");
288 printf("\n");
289 printf(" -D <macro>[=<value>]\n");
290 printf(" set the specified Verilog define (via \"read -define\")\n");
291 printf("\n");
292 printf(" -P <header_id>[:<filename>]\n");
293 printf(" dump the design when printing the specified log header to a file.\n");
294 printf(" yosys_dump_<header_id>.il is used as filename if none is specified.\n");
295 printf(" Use 'ALL' as <header_id> to dump at every header.\n");
296 printf("\n");
297 printf(" -W regex\n");
298 printf(" print a warning for all log messages matching the regex.\n");
299 printf("\n");
300 printf(" -w regex\n");
301 printf(" if a warning message matches the regex, it is printed as regular\n");
302 printf(" message instead.\n");
303 printf("\n");
304 printf(" -e regex\n");
305 printf(" if a warning message matches the regex, it is printed as error\n");
306 printf(" message instead and the tool terminates with a nonzero return code.\n");
307 printf("\n");
308 printf(" -E <depsfile>\n");
309 printf(" write a Makefile dependencies file with in- and output file names\n");
310 printf("\n");
311 printf(" -x <feature>\n");
312 printf(" do not print warnings for the specified experimental feature\n");
313 printf("\n");
314 printf(" -g\n");
315 printf(" globally enable debug log messages\n");
316 printf("\n");
317 printf(" -V\n");
318 printf(" print version information and exit\n");
319 printf("\n");
320 printf("The option -S is an shortcut for calling the \"synth\" command, a default\n");
321 printf("script for transforming the Verilog input to a gate-level netlist. For example:\n");
322 printf("\n");
323 printf(" yosys -o output.blif -S input.v\n");
324 printf("\n");
325 printf("For more complex synthesis jobs it is recommended to use the read_* and write_*\n");
326 printf("commands in a script file instead of specifying input and output files on the\n");
327 printf("command line.\n");
328 printf("\n");
329 printf("When no commands, script files or input files are specified on the command\n");
330 printf("line, yosys automatically enters the interactive command mode. Use the 'help'\n");
331 printf("command to get information on the individual commands.\n");
332 printf("\n");
333 exit(0);
334 }
335
336 if (argc == 2 && (!strcmp(argv[1], "-V") || !strcmp(argv[1], "-version") || !strcmp(argv[1], "--version")))
337 {
338 printf("%s\n", yosys_version_str);
339 exit(0);
340 }
341
342 int opt;
343 while ((opt = getopt(argc, argv, "MXAQTVSgm:f:Hh:b:o:p:l:L:qv:tds:c:W:w:e:D:P:E:x:")) != -1)
344 {
345 switch (opt)
346 {
347 case 'M':
348 memhasher_on();
349 break;
350 case 'X':
351 yosys_xtrace++;
352 break;
353 case 'A':
354 call_abort = true;
355 break;
356 case 'Q':
357 print_banner = false;
358 break;
359 case 'T':
360 print_stats = false;
361 break;
362 case 'V':
363 printf("%s\n", yosys_version_str);
364 exit(0);
365 case 'S':
366 passes_commands.push_back("synth");
367 break;
368 case 'g':
369 log_force_debug++;
370 break;
371 case 'm':
372 plugin_filenames.push_back(optarg);
373 break;
374 case 'f':
375 frontend_command = optarg;
376 break;
377 case 'H':
378 passes_commands.push_back("help");
379 break;
380 case 'h':
381 passes_commands.push_back(stringf("help %s", optarg));
382 break;
383 case 'b':
384 backend_command = optarg;
385 break;
386 case 'p':
387 passes_commands.push_back(optarg);
388 break;
389 case 'o':
390 output_filename = optarg;
391 got_output_filename = true;
392 break;
393 case 'l':
394 case 'L':
395 log_files.push_back(fopen(optarg, "wt"));
396 if (log_files.back() == NULL) {
397 fprintf(stderr, "Can't open log file `%s' for writing!\n", optarg);
398 exit(1);
399 }
400 if (opt == 'L')
401 setvbuf(log_files.back(), NULL, _IOLBF, 0);
402 break;
403 case 'q':
404 mode_q = true;
405 if (log_errfile == stderr)
406 log_quiet_warnings = true;
407 log_errfile = stderr;
408 break;
409 case 'v':
410 mode_v = true;
411 log_errfile = stderr;
412 log_verbose_level = atoi(optarg);
413 break;
414 case 't':
415 log_time = true;
416 break;
417 case 'd':
418 timing_details = true;
419 break;
420 case 's':
421 scriptfile = optarg;
422 scriptfile_tcl = false;
423 break;
424 case 'c':
425 scriptfile = optarg;
426 scriptfile_tcl = true;
427 break;
428 case 'W':
429 log_warn_regexes.push_back(YS_REGEX_COMPILE(optarg));
430 break;
431 case 'w':
432 log_nowarn_regexes.push_back(YS_REGEX_COMPILE(optarg));
433 break;
434 case 'e':
435 log_werror_regexes.push_back(YS_REGEX_COMPILE(optarg));
436 break;
437 case 'D':
438 vlog_defines.push_back(optarg);
439 break;
440 case 'P':
441 {
442 auto args = split_tokens(optarg, ":");
443 if (!args.empty() && args[0] == "ALL") {
444 if (GetSize(args) != 1) {
445 fprintf(stderr, "Invalid number of tokens in -D ALL.\n");
446 exit(1);
447 }
448 log_hdump_all = true;
449 } else {
450 if (!args.empty() && !args[0].empty() && args[0].back() == '.')
451 args[0].pop_back();
452 if (GetSize(args) == 1)
453 args.push_back("yosys_dump_" + args[0] + ".il");
454 if (GetSize(args) != 2) {
455 fprintf(stderr, "Invalid number of tokens in -D.\n");
456 exit(1);
457 }
458 log_hdump[args[0]].insert(args[1]);
459 }
460 }
461 break;
462 case 'E':
463 depsfile = optarg;
464 break;
465 case 'x':
466 log_experimentals_ignored.insert(optarg);
467 break;
468 default:
469 fprintf(stderr, "Run '%s -h' for help.\n", argv[0]);
470 exit(1);
471 }
472 }
473
474 if (log_errfile == NULL) {
475 log_files.push_back(stdout);
476 log_error_stderr = true;
477 }
478
479 if (print_banner)
480 yosys_banner();
481
482 if (print_stats)
483 log_hasher = new SHA1;
484
485 #if defined(__linux__)
486 // set stack size to >= 128 MB
487 {
488 struct rlimit rl;
489 const rlim_t stack_size = 128L * 1024L * 1024L;
490 if (getrlimit(RLIMIT_STACK, &rl) == 0 && rl.rlim_cur < stack_size) {
491 rl.rlim_cur = stack_size;
492 setrlimit(RLIMIT_STACK, &rl);
493 }
494 }
495 #endif
496
497 yosys_setup();
498 #ifdef WITH_PYTHON
499 PyRun_SimpleString(("sys.path.append(\""+proc_self_dirname()+"\")").c_str());
500 PyRun_SimpleString(("sys.path.append(\""+proc_share_dirname()+"plugins\")").c_str());
501 #endif
502 log_error_atexit = yosys_atexit;
503
504 for (auto &fn : plugin_filenames)
505 load_plugin(fn, {});
506
507 if (optind == argc && passes_commands.size() == 0 && scriptfile.empty()) {
508 if (!got_output_filename)
509 backend_command = "";
510 shell(yosys_design);
511 }
512
513 if (!vlog_defines.empty()) {
514 std::string vdef_cmd = "read -define";
515 for (auto vdef : vlog_defines)
516 vdef_cmd += " " + vdef;
517 run_pass(vdef_cmd);
518 }
519
520 while (optind < argc)
521 run_frontend(argv[optind++], frontend_command, output_filename == "-" ? &backend_command : NULL);
522
523 if (!scriptfile.empty()) {
524 if (scriptfile_tcl) {
525 #ifdef YOSYS_ENABLE_TCL
526 if (Tcl_EvalFile(yosys_get_tcl_interp(), scriptfile.c_str()) != TCL_OK)
527 log_error("TCL interpreter returned an error: %s\n", Tcl_GetStringResult(yosys_get_tcl_interp()));
528 #else
529 log_error("Can't exectue TCL script: this version of yosys is not built with TCL support enabled.\n");
530 #endif
531 } else
532 run_frontend(scriptfile, "script", output_filename == "-" ? &backend_command : NULL);
533 }
534
535 for (auto it = passes_commands.begin(); it != passes_commands.end(); it++)
536 run_pass(*it);
537
538 if (!backend_command.empty())
539 run_backend(output_filename, backend_command);
540
541 yosys_design->check();
542 for (auto it : saved_designs)
543 it.second->check();
544 for (auto it : pushed_designs)
545 it->check();
546
547 if (!depsfile.empty())
548 {
549 FILE *f = fopen(depsfile.c_str(), "wt");
550 if (f == nullptr)
551 log_error("Can't open dependencies file for writing: %s\n", strerror(errno));
552 bool first = true;
553 for (auto fn : yosys_output_files) {
554 fprintf(f, "%s%s", first ? "" : " ", escape_filename_spaces(fn).c_str());
555 first = false;
556 }
557 fprintf(f, ":");
558 for (auto fn : yosys_input_files) {
559 if (yosys_output_files.count(fn) == 0)
560 fprintf(f, " %s", escape_filename_spaces(fn).c_str());
561 }
562 fprintf(f, "\n");
563 }
564
565 if (log_expect_no_warnings && log_warnings_count_noexpect)
566 log_error("Unexpected warnings found: %d unique messages, %d total, %d expected\n", GetSize(log_warnings),
567 log_warnings_count, log_warnings_count - log_warnings_count_noexpect);
568
569 if (print_stats)
570 {
571 std::string hash = log_hasher->final().substr(0, 10);
572 delete log_hasher;
573 log_hasher = nullptr;
574
575 log_time = false;
576 yosys_xtrace = 0;
577 log_spacer();
578
579 if (mode_v && !mode_q)
580 log_files.push_back(stderr);
581
582 if (log_warnings_count)
583 log("Warnings: %d unique messages, %d total\n", GetSize(log_warnings), log_warnings_count);
584
585 if (!log_experimentals.empty())
586 log("Warnings: %d experimental features used (not excluded with -x).\n", GetSize(log_experimentals));
587
588 #ifdef _WIN32
589 log("End of script. Logfile hash: %s\n", hash.c_str());
590 #else
591 std::string meminfo;
592 std::string stats_divider = ", ";
593
594 struct rusage ru_buffer;
595 getrusage(RUSAGE_SELF, &ru_buffer);
596 if (yosys_design->scratchpad_get_bool("print_stats.include_children")) {
597 struct rusage ru_buffer_children;
598 getrusage(RUSAGE_CHILDREN, &ru_buffer_children);
599 ru_buffer.ru_utime.tv_sec += ru_buffer_children.ru_utime.tv_sec;
600 ru_buffer.ru_utime.tv_usec += ru_buffer_children.ru_utime.tv_usec;
601 ru_buffer.ru_stime.tv_sec += ru_buffer_children.ru_stime.tv_sec;
602 ru_buffer.ru_stime.tv_usec += ru_buffer_children.ru_stime.tv_usec;
603 #if defined(__linux__) || defined(__FreeBSD__)
604 ru_buffer.ru_maxrss = std::max(ru_buffer.ru_maxrss, ru_buffer_children.ru_maxrss);
605 #endif
606 }
607 #if defined(__linux__) || defined(__FreeBSD__)
608 meminfo = stringf(", MEM: %.2f MB peak",
609 ru_buffer.ru_maxrss / 1024.0);
610 #endif
611 log("End of script. Logfile hash: %s%sCPU: user %.2fs system %.2fs%s\n", hash.c_str(),
612 stats_divider.c_str(), ru_buffer.ru_utime.tv_sec + 1e-6 * ru_buffer.ru_utime.tv_usec,
613 ru_buffer.ru_stime.tv_sec + 1e-6 * ru_buffer.ru_stime.tv_usec, meminfo.c_str());
614 #endif
615 log("%s\n", yosys_version_str);
616
617 int64_t total_ns = 0;
618 std::set<tuple<int64_t, int, std::string>> timedat;
619
620 for (auto &it : pass_register)
621 if (it.second->call_counter) {
622 total_ns += it.second->runtime_ns + 1;
623 timedat.insert(make_tuple(it.second->runtime_ns + 1, it.second->call_counter, it.first));
624 }
625
626 if (timing_details)
627 {
628 log("Time spent:\n");
629 for (auto it = timedat.rbegin(); it != timedat.rend(); it++) {
630 log("%5d%% %5d calls %8.3f sec %s\n", int(100*std::get<0>(*it) / total_ns),
631 std::get<1>(*it), std::get<0>(*it) / 1000000000.0, std::get<2>(*it).c_str());
632 }
633 }
634 else
635 {
636 int out_count = 0;
637 log("Time spent:");
638 for (auto it = timedat.rbegin(); it != timedat.rend() && out_count < 4; it++, out_count++) {
639 if (out_count >= 2 && (std::get<0>(*it) < 1000000000 || int(100*std::get<0>(*it) / total_ns) < 20)) {
640 log(", ...");
641 break;
642 }
643 log("%s %d%% %dx %s (%d sec)", out_count ? "," : "", int(100*std::get<0>(*it) / total_ns),
644 std::get<1>(*it), std::get<2>(*it).c_str(), int(std::get<0>(*it) / 1000000000));
645 }
646 log("%s\n", out_count ? "" : " no commands executed");
647 }
648 }
649
650 #if defined(YOSYS_ENABLE_COVER) && (defined(__linux__) || defined(__FreeBSD__))
651 if (getenv("YOSYS_COVER_DIR") || getenv("YOSYS_COVER_FILE"))
652 {
653 string filename;
654 FILE *f;
655
656 if (getenv("YOSYS_COVER_DIR")) {
657 filename = stringf("%s/yosys_cover_%d_XXXXXX.txt", getenv("YOSYS_COVER_DIR"), getpid());
658 filename = make_temp_file(filename);
659 } else {
660 filename = getenv("YOSYS_COVER_FILE");
661 }
662
663 f = fopen(filename.c_str(), "a+");
664
665 if (f == NULL)
666 log_error("Can't create coverage file `%s'.\n", filename.c_str());
667
668 log("<writing coverage file \"%s\">\n", filename.c_str());
669
670 for (auto &it : get_coverage_data())
671 fprintf(f, "%-60s %10d %s\n", it.second.first.c_str(), it.second.second, it.first.c_str());
672
673 fclose(f);
674 }
675 #endif
676
677 log_check_expected();
678
679 yosys_atexit();
680
681 memhasher_off();
682 if (call_abort)
683 abort();
684
685 log_flush();
686 #if defined(_MSC_VER)
687 _exit(0);
688 #elif defined(_WIN32)
689 _Exit(0);
690 #endif
691
692 yosys_shutdown();
693
694 return 0;
695 }
696
697 #endif /* EMSCRIPTEN */
698