Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixing old e-mail addresses and deadnames | Claire Xenia Wolf | 2021-06-08 | 3 | -3/+3 |
| | | | | | | | | 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; | ||||
* | Replace "ILANG" with "RTLIL" everywhere. | whitequark | 2020-08-26 | 2 | -11/+11 |
| | | | | | | | | | | The only difference between "RTLIL" and "ILANG" is that the latter is the text representation of the former, as opposed to the in-memory graph representation. This distinction serves no purpose but confuses people: it is not obvious that the ILANG backend writes RTLIL graphs. Passes `write_ilang` and `read_ilang` are provided as aliases to `write_rtlil` and `read_rtlil` for compatibility. | ||||
* | Ensure \A_SIGNED is never used with $shiftx | Xiretza | 2020-08-18 | 1 | -0/+4 |
| | | | | | It has no effect on the output ($shiftx doesn't perform any sign extension whatsoever), so an attempt to use it should be caught early. | ||||
* | Merge pull request #2201 from YosysHQ/fix_test_cell_ilang | clairexen | 2020-06-30 | 1 | -2/+2 |
|\ | | | | | Use ID macro to fix assertion | ||||
| * | Use ID macro to fix assertion | Miodrag Milanovic | 2020-06-29 | 1 | -2/+2 |
| | | |||||
* | | test_cell: don't generate directional shifts with \B_SIGNED=1 | Xiretza | 2020-06-28 | 1 | -0/+4 |
|/ | | | | | This was made an explicit error in e97e33d, "kernel: require \B_SIGNED=0 on $shl, $sshl, $shr, $sshr.". | ||||
* | Remove YS_ATTRIBUTE(unused) where present just for log_assert()/log_debug(). | whitequark | 2020-06-19 | 1 | -2/+2 |
| | |||||
* | Use C++11 final/override keywords. | whitequark | 2020-06-18 | 3 | -6/+6 |
| | |||||
* | Add flooring division operator | Xiretza | 2020-05-28 | 1 | -1/+2 |
| | | | | | | | | | | The $div and $mod cells use truncating division semantics (rounding towards 0), as defined by e.g. Verilog. Another rounding mode, flooring (rounding towards negative infinity), can be used in e.g. VHDL. The new $divfloor cell provides this flooring division. This commit also fixes the handling of $div in opt_expr, which was previously optimized as if it was $divfloor. | ||||
* | Add flooring modulo operator | Xiretza | 2020-05-28 | 1 | -1/+2 |
| | | | | | | | | | | | The $div and $mod cells use truncating division semantics (rounding towards 0), as defined by e.g. Verilog. Another rounding mode, flooring (rounding towards negative infinity), can be used in e.g. VHDL. The new $modfloor cell provides this flooring modulo (also known as "remainder" in several languages, but this name is ambiguous). This commit also fixes the handling of $mod in opt_expr, which was previously optimized as if it was $modfloor. | ||||
* | Add plusargs for output files in test_autotb output | Claire Wolf | 2020-05-02 | 1 | -3/+10 |
| | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | Clean up `passes/tests/test_autotb.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -12/+8 |
| | |||||
* | kernel: big fat patch to use more ID::*, otherwise ID(*) | Eddie Hung | 2020-04-02 | 3 | -104/+104 |
| | |||||
* | kernel: use more ID::* | Eddie Hung | 2020-04-02 | 1 | -38/+38 |
| | |||||
* | Document (* gentb_skip *) attr for test_autotb | Eddie Hung | 2019-09-06 | 1 | -0/+3 |
| | |||||
* | Merge remote-tracking branch 'origin/master' into xc7dsp | Eddie Hung | 2019-08-20 | 1 | -2/+2 |
|\ | |||||
| * | More use of IdString::in() | Eddie Hung | 2019-08-15 | 1 | -2/+2 |
| | | |||||
* | | Merge remote-tracking branch 'origin/master' into xc7dsp | Eddie Hung | 2019-08-12 | 1 | -18/+18 |
|\| | |||||
| * | substr() -> compare() | Eddie Hung | 2019-08-07 | 1 | -1/+1 |
| | | |||||
| * | RTLIL::S{0,1} -> State::S{0,1} | Eddie Hung | 2019-08-07 | 1 | -17/+17 |
| | | |||||
| * | stoi -> atoi | Eddie Hung | 2019-08-07 | 3 | -6/+6 |
| | | |||||
| * | Use std::stoi instead of atoi(<str>.c_str()) | Eddie Hung | 2019-08-06 | 3 | -6/+6 |
| | | |||||
* | | Update test_autotb doc to reflect default value of zero | Eddie Hung | 2019-07-26 | 1 | -1/+3 |
| | | |||||
* | | Add doc for "test_autotb -seed" option | Eddie Hung | 2019-07-26 | 1 | -0/+3 |
|/ | |||||
* | flowmap: implement depth relaxation. | whitequark | 2019-01-08 | 6 | -0/+82 |
| | |||||
* | flowmap: cleanup for clarity. NFCI. | whitequark | 2019-01-04 | 2 | -0/+38 |
| | |||||
* | Consistent use of 'override' for virtual methods in derived classes. | Henner Zeller | 2018-07-20 | 3 | -6/+6 |
| | | | | | | | | | 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) | ||||
* | Add $live and $fair cell types, add support for s_eventually keyword | Clifford Wolf | 2017-02-25 | 1 | -2/+0 |
| | |||||
* | Cosmetic fix in test_autotb.cc | Clifford Wolf | 2016-09-19 | 1 | -2/+2 |
| | |||||
* | Avoid creating very long strings in test_autotb | Clifford Wolf | 2016-09-19 | 1 | -4/+10 |
| | |||||
* | Removed $predict again | Clifford Wolf | 2016-08-28 | 1 | -1/+0 |
| | |||||
* | Bugfix in test_autotb | Clifford Wolf | 2016-08-18 | 1 | -0/+4 |
| | |||||
* | Added "test_autotb -seed" (and "autotest.sh -S") | Clifford Wolf | 2016-08-06 | 1 | -3/+8 |
| | |||||
* | Renamed AbstractCellEdgesDatabase::add_cell() to add_edges_from_cell() | Clifford Wolf | 2016-07-25 | 1 | -1/+1 |
| | |||||
* | Improvements in CellEdgesDatabase | Clifford Wolf | 2016-07-24 | 1 | -3/+33 |
| | |||||
* | Added CellEdgesDatabase API | Clifford Wolf | 2016-07-24 | 1 | -0/+96 |
| | |||||
* | After reading the SV spec, using non-standard predict() instead of expect() | Clifford Wolf | 2016-07-21 | 1 | -1/+1 |
| | |||||
* | Added basic support for $expect cells | Clifford Wolf | 2016-07-13 | 1 | -0/+2 |
| | |||||
* | Improved support for $sop cells | Clifford Wolf | 2016-06-17 | 1 | -2/+38 |
| | |||||
* | Improvements and fixes in autotest.sh script and test_autotb | Clifford Wolf | 2016-05-20 | 1 | -3/+3 |
| | |||||
* | Close opened dump file. | Kaj Tuomi | 2016-05-19 | 1 | -0/+1 |
| | |||||
* | Fix for Modelsim transcript line warp issue #164 | Kaj Tuomi | 2016-05-19 | 1 | -7/+13 |
| | |||||
* | Fixed test_autotb for modules with many cell ports | Clifford Wolf | 2016-04-25 | 1 | -3/+6 |
| | |||||
* | Added "yosys -D" feature | Clifford Wolf | 2016-04-21 | 1 | -1/+1 |
| | |||||
* | Import more std:: stuff into Yosys namespace | Clifford Wolf | 2015-10-25 | 1 | -1/+1 |
| | |||||
* | Added "test_cell -noeval" | Clifford Wolf | 2015-09-25 | 1 | -1/+10 |
| | |||||
* | Re-created command-reference-manual.tex, copied some doc fixes to online help | Clifford Wolf | 2015-08-14 | 2 | -2/+2 |
| | |||||
* | Spell check (by Larry Doolittle) | Clifford Wolf | 2015-08-14 | 1 | -1/+1 |
| | |||||
* | Fixed trailing whitespaces | Clifford Wolf | 2015-07-02 | 1 | -3/+3 |
| | |||||
* | Renamed "aig" to "aigmap" | Clifford Wolf | 2015-06-10 | 1 | -4/+4 |
| |