Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixing old e-mail addresses and deadnames | Claire Xenia Wolf | 2021-06-08 | 1 | -1/+1 |
| | | | | | | | | s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi; s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi; s/((David)\s+)+Shah\s+<(dave|david)@(symbioticeda.com|yosyshq.com|ds0.me)>/David Shah <dave@ds0.me>/gi; s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi; s,https?://www.clifford.at/yosys/,http://yosyshq.net/yosys/,g; | ||||
* | Use C++11 final/override keywords. | whitequark | 2020-06-18 | 1 | -6/+6 |
| | |||||
* | Pass some more args by reference in select.cc | Rupert Swarbrick | 2020-05-27 | 1 | -1/+1 |
| | | | | | | | | | Before this patch, the code passed around std::string objects by value. It's probably not a hot-spot, but it can't hurt to avoid the copying. Removing the copy and clean-up code means the resulting code is ~6.1kb smaller when compiled with GCC 9.3 and standard settings. | ||||
* | Add ScriptPass::run_nocheck and use for abc9 | David Shah | 2020-03-09 | 1 | -0/+1 |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | Add log_experimental() and experimental() API and "yosys -x" | Claire Wolf | 2020-01-27 | 1 | -0/+5 |
| | | | | Signed-off-by: Claire Wolf <clifford@clifford.at> | ||||
* | Add Pass::on_register() and Pass::on_shutdown() | Clifford Wolf | 2020-01-09 | 1 | -0/+3 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Open aig frontend as binary file | Miodrag Milanovic | 2019-09-29 | 1 | -1/+1 |
| | |||||
* | Support binary files for backends, fixes #1407 | Miodrag Milanovic | 2019-09-28 | 1 | -1/+1 |
| | |||||
* | Consistent use of 'override' for virtual methods in derived classes. | Henner Zeller | 2018-07-20 | 1 | -7/+7 |
| | | | | | | | | | o Not all derived methods were marked 'override', but it is a great feature of C++11 that we should make use of. o While at it: touched header files got a -*- c++ -*- for emacs to provide support for that language. o use YS_OVERRIDE for all override keywords (though we should probably use the plain keyword going forward now that C++11 is established) | ||||
* | Added ScriptPass helper class for script-like passes | Clifford Wolf | 2016-03-31 | 1 | -0/+17 |
| | |||||
* | Fixed trailing whitespaces | Clifford Wolf | 2015-07-02 | 1 | -2/+2 |
| | |||||
* | Fixed clang (svn trunk) warnings | Clifford Wolf | 2015-02-18 | 1 | -2/+2 |
| | |||||
* | Fixed eval_select_op() api | Clifford Wolf | 2015-02-08 | 1 | -1/+1 |
| | |||||
* | Added eval_select_args() and eval_select_op() | Clifford Wolf | 2015-02-08 | 1 | -0/+2 |
| | |||||
* | Introducing YS_OVERRIDE, YS_FINAL, YS_ATTRIBUTE, YS_NORETURN | Clifford Wolf | 2014-11-09 | 1 | -2/+2 |
| | |||||
* | Changed frontend-api from FILE to std::istream | Clifford Wolf | 2014-08-23 | 1 | -4/+4 |
| | |||||
* | Changed backend-api from FILE to std::ostream | Clifford Wolf | 2014-08-23 | 1 | -10/+6 |
| | |||||
* | Fixed build with gcc-4.6 | Clifford Wolf | 2014-08-07 | 1 | -2/+2 |
| | |||||
* | Added per-pass cpu usage statistics | Clifford Wolf | 2014-08-01 | 1 | -2/+11 |
| | |||||
* | Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespace | Clifford Wolf | 2014-07-31 | 1 | -6/+8 |
| | |||||
* | Added write_file command | Clifford Wolf | 2014-07-30 | 1 | -2/+2 |
| | |||||
* | Added "kernel/yosys.h" and "kernel/yosys.cc" | Clifford Wolf | 2014-07-30 | 1 | -18/+0 |
| | |||||
* | Added support for here documents | Clifford Wolf | 2014-07-26 | 1 | -1/+5 |
| | |||||
* | Added "cover" command | Clifford Wolf | 2014-07-24 | 1 | -4/+5 |
| | |||||
* | Added call_on_selection() and call_on_module() API | Clifford Wolf | 2014-07-20 | 1 | -2/+5 |
| | |||||
* | - kernel/register.h, kernel/driver.cc: refactor ↵ | Siesh1oo | 2014-03-12 | 1 | -2/+2 |
| | | | | | | | rewrite_yosys_exe()/get_share_file_name() to portable proc_self_dirname()/proc_share_dirname(). This refactoring improves robustness and allows OSX support with only 7 new lines of code, and easy extension for other systems. - passes/abc/abc.cc, passes/cmds/show.cc, passes/techmap/techmap.cc: use new, refactored semantics. | ||||
* | Added "design -push" and "design -pop" | Clifford Wolf | 2014-02-20 | 1 | -0/+4 |
| | |||||
* | Added echo command | Clifford Wolf | 2014-02-07 | 1 | -0/+1 |
| | |||||
* | Added Pass:call_newsel API | Clifford Wolf | 2013-12-02 | 1 | -0/+3 |
| | |||||
* | Write yosys version to output files | Clifford Wolf | 2013-11-03 | 1 | -0/+3 |
| | |||||
* | Added API and Makefile rules for share/ files | Clifford Wolf | 2013-10-27 | 1 | -0/+1 |
| | |||||
* | Improved readline tab completion | Clifford Wolf | 2013-06-09 | 1 | -1/+1 |
| | |||||
* | Look for yosys-abc and yosys-svgviewer where the main exe is | Clifford Wolf | 2013-06-09 | 1 | -1/+4 |
| | |||||
* | Only initialize TCL interpreter when needed | Clifford Wolf | 2013-05-23 | 1 | -2/+2 |
| | |||||
* | Improved/simplified TCL bindings | Clifford Wolf | 2013-05-01 | 1 | -1/+0 |
| | |||||
* | Added -color <color> <selection> option to show command | Clifford Wolf | 2013-04-01 | 1 | -0/+3 |
| | |||||
* | Implemented TCL support (only via -c option at the moment) | Clifford Wolf | 2013-03-28 | 1 | -0/+7 |
| | |||||
* | Implemented general handler for selection arguments | Clifford Wolf | 2013-03-03 | 1 | -1/+1 |
| | |||||
* | Added "help" command | Clifford Wolf | 2013-02-28 | 1 | -4/+4 |
| | |||||
* | Improvements in command shell | Clifford Wolf | 2013-01-06 | 1 | -0/+9 |
| | | | | | | - Added 'shell' command (run interactive shell from synth script) - Added support for ; as cmd seperator as in "proc; opt" - Fixed c++ static initialization order problem with pass register | ||||
* | initial import | Clifford Wolf | 2013-01-05 | 1 | -0/+80 |