Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump year in copyright notice | Clifford Wolf | 2019-08-22 | 1 | -1/+1 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Use ID() in kernel/*, add simple ID:: hack (to be improved upon later) | Clifford Wolf | 2019-08-11 | 1 | -0/+7 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | More improvements and cleanups in IdString subsystem | Clifford Wolf | 2019-08-11 | 1 | -7/+0 |
| | | | | | | | | | - better use of "inline" keyword - deprecate "sticky" IDs feature - improve handling of empty ID - add move constructor Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | substr() -> compare() | Eddie Hung | 2019-08-07 | 1 | -25/+25 |
| | |||||
* | Be less aggressive with running design->check() | Clifford Wolf | 2019-08-06 | 1 | -2/+8 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fix frontend auto-detection for gzipped input | David Shah | 2019-07-26 | 1 | -9/+12 |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | Clarify script -scriptwire doc | Eddie Hung | 2019-07-08 | 1 | -0/+4 |
| | |||||
* | Use Pass::call_on_module() as per @cliffordwolf comments | Eddie Hung | 2019-07-02 | 1 | -1/+1 |
| | |||||
* | script -select -> script -scriptwire | Eddie Hung | 2019-07-02 | 1 | -5/+5 |
| | |||||
* | Support ability for "script -select" to take commands from wires | Eddie Hung | 2019-06-28 | 1 | -8/+39 |
| | |||||
* | Support ~ for home directory | Ben Widawsky | 2019-06-18 | 1 | -0/+4 |
| | | | | | | | | | | This is tested on Linux only v2: Wrap functioanlity in ifndef _WIN32 (eddiehung) Find '~/' instead of '~' (cliffordwolf) Signed-off-by: Ben Widawsky <ben@bwidawsk.net> | ||||
* | Optimize ceil_log2 function | Matthew Daiter | 2019-05-07 | 1 | -2/+4 |
| | |||||
* | fix codestyle formatting | Oleg Endo | 2019-04-29 | 1 | -11/+11 |
| | |||||
* | escape spaces with backslash when writing dep file | Oleg Endo | 2019-04-29 | 1 | -0/+14 |
| | | | | | | filenames are sparated by spaces in the dep file. if a filename in the dep file contains spaces they must be escaped, otherwise the tool that reads the dep file will see multiple wrong filenames. | ||||
* | Fixed identation | Benedikt Tutzer | 2019-04-01 | 1 | -1/+1 |
| | |||||
* | Merge remote-tracking branch 'origin/master' into feature/python_bindings | Benedikt Tutzer | 2019-03-28 | 1 | -22/+43 |
|\ | |||||
| * | Fix a bug in handling quotes in multi-cmd lines in Yosys scripts | Clifford Wolf | 2019-03-12 | 1 | -1/+7 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
| * | Add ENABLE_GLOB Makefile switch | Clifford Wolf | 2019-03-11 | 1 | -3/+5 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
| * | Fix typographical and grammatical errors and inconsistencies. | whitequark | 2019-01-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | The initial list of hits was generated with the codespell command below, and each hit was evaluated and fixed manually while taking context into consideration. DIRS="kernel/ frontends/ backends/ passes/ techlibs/" DIRS="${DIRS} libs/ezsat/ libs/subcircuit" codespell $DIRS -S *.o -L upto,iff,thru,synopsys,uint More hits were found by looking through comments and strings manually. | ||||
| * | tcl: add support for passing arguments to scripts. | whitequark | 2018-12-20 | 1 | -7/+18 |
| | | |||||
| * | Avoid assert when label is an empty string | Jon Burgess | 2018-10-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Calling back() on an empty string is not allowed and triggers an assert with recent gcc: $ cd manual/PRESENTATION_Intro $ ../../yosys counter.ys ... /usr/include/c++/8/bits/basic_string.h:1136: std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::reference std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::back() [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>; std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::reference = char&]: Assertion '!empty()' failed. 802 if (label.back() == ':' && GetSize(label) > 1) (gdb) p label $1 = "" | ||||
| * | fix unhandled std::out_of_range when calling yosys with 3-character argument | whentze | 2018-10-22 | 1 | -2/+2 |
| | | |||||
| * | Fix Cygwin build and document needed packages | Miodrag Milanovic | 2018-09-19 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #591 from hzeller/virtual-override | Clifford Wolf | 2018-08-15 | 1 | -8/+8 |
| |\ | | | | | | | Consistent use of 'override' for virtual methods in derived classes. | ||||
| | * | Consistent use of 'override' for virtual methods in derived classes. | Henner Zeller | 2018-07-20 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) | ||||
| * | | Map .eblif extension as blif. | litghost | 2018-08-13 | 1 | -0/+2 |
| |/ | | | | | | | Signed-off-by: litghost <537074+litghost@users.noreply.github.com> | ||||
* | | The share directory cannot be searched when used as a Python library, only ↵ | Benedikt Tutzer | 2018-08-20 | 1 | -1/+0 |
| | | | | | | | | in shell mode | ||||
* | | Python passes are now looked for in share/plugins and can be added by ↵ | Benedikt Tutzer | 2018-08-20 | 1 | -4/+1 |
| | | | | | | | | specifying a relative or absolute path | ||||
* | | Fixed issue when using a python plugin in the yosys shell | Benedikt Tutzer | 2018-08-20 | 1 | -0/+16 |
| | | |||||
* | | Python Passes can now be added with the -m option or with the plugin ↵ | Benedikt Tutzer | 2018-08-16 | 1 | -0/+26 |
|/ | | | | command. There are still issues when run in shell mode, but they can be used just fine in a python script | ||||
* | Fix reading techlibs under emscripten | Robert Ou | 2018-05-18 | 1 | -1/+1 |
| | |||||
* | Add "#ifdef __FreeBSD__" | Christian Krämer | 2018-05-13 | 1 | -1/+26 |
| | | | | (Re-commit e3575a8 with corrected author field) | ||||
* | Revert "Add "#ifdef __FreeBSD__"" | Clifford Wolf | 2018-05-13 | 1 | -26/+1 |
| | | | | This reverts commit e3575a86c525f2511902e7022893c3923ba8093e. | ||||
* | Add "#ifdef __FreeBSD__" | Johnny Sorocil | 2018-05-05 | 1 | -1/+26 |
| | |||||
* | Rename rename to renames | Edmond Cote | 2018-03-20 | 1 | -3/+5 |
| | | | Create TCL alias for rename command. Using renames. Following the same convention as proc -> procs. | ||||
* | Update copyright header | Clifford Wolf | 2018-03-04 | 1 | -1/+1 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Add support for "yosys -E" | Clifford Wolf | 2018-01-07 | 1 | -1/+5 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Add support for editline as replacement for readline | Clifford Wolf | 2017-11-08 | 1 | -7/+16 |
| | |||||
* | Auto-detect JSON front-end | Clifford Wolf | 2017-08-09 | 1 | -0/+2 |
| | |||||
* | Add front-end detection for *.tcl files | Clifford Wolf | 2017-03-28 | 1 | -1/+6 |
| | |||||
* | Added AIGER back-end to automatic back-end detection | Clifford Wolf | 2016-12-21 | 1 | -0/+2 |
| | |||||
* | Added glob support to all front-ends | Clifford Wolf | 2016-08-22 | 1 | -0/+25 |
| | |||||
* | Add MSYS2-compatible build. | William D. Jones | 2016-08-16 | 1 | -2/+1 |
| | |||||
* | Use /proc/self/exe on Cygwin as well. | Yury Gribov | 2016-08-08 | 1 | -1/+1 |
| | |||||
* | Added ScriptPass helper class for script-like passes | Clifford Wolf | 2016-03-31 | 1 | -3/+3 |
| | |||||
* | We have 2016 for a while now | Clifford Wolf | 2016-03-30 | 1 | -1/+1 |
| | |||||
* | Added .vhd file extension support | Clifford Wolf | 2016-03-30 | 1 | -0/+2 |
| | |||||
* | Embed DATDIR make variable value into yosys binary. | Sergey Kvachonok | 2016-03-26 | 1 | -0/+5 |
| | | | | Use it as the last resort in the share/ directory location search. | ||||
* | Use easyer-to-read unoptimized ceil_log2() | Clifford Wolf | 2016-02-15 | 1 | -18/+5 |
| | | | | | see here for details on the optimized version: http://svn.clifford.at/handicraft/2016/esbmc/ceilog2.c | ||||
* | Fixed some visual studio warnings | Clifford Wolf | 2016-02-13 | 1 | -1/+1 |
| |