Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | wreduce: Refactor to use FfInitVals. | Marcelina Kościelnicka | 2020-07-24 | 1 | -37/+7 |
| | |||||
* | Add support for new FF types in some opt passes. | Marcelina Kościelnicka | 2020-06-23 | 1 | -9/+17 |
| | |||||
* | Use C++11 final/override keywords. | whitequark | 2020-06-18 | 1 | -2/+2 |
| | |||||
* | Add flooring division operator | Xiretza | 2020-05-28 | 1 | -2/+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 | -2/+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. | ||||
* | kernel: big fat patch to use more ID::*, otherwise ID(*) | Eddie Hung | 2020-04-02 | 1 | -29/+29 |
| | |||||
* | kernel: SigSpec use more const& + overloads to prevent implicit SigSpec | Eddie Hung | 2020-03-13 | 1 | -1/+1 |
| | |||||
* | wreduce: Don't trim zeros or sext when not matching ARST_VALUE | David Shah | 2019-11-14 | 1 | -4/+10 |
| | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | Remove `using namespace RTLIL;` | Eddie Hung | 2019-08-16 | 1 | -6/+5 |
| | |||||
* | Use ID::keep more liberally too | Eddie Hung | 2019-08-15 | 1 | -1/+1 |
| | |||||
* | Use more ID::{A,B,Y,blackbox,whitebox} | Eddie Hung | 2019-08-15 | 1 | -23/+23 |
| | |||||
* | Use ID() macro in all of passes/opt/ | Clifford Wolf | 2019-08-11 | 1 | -73/+73 |
| | | | | | | | | | | This was obtained by running the following SED command in passes/opt/ and then using "meld foo.cc foo.cc.orig" to manually fix all resulting compiler errors. sed -i.orig -r 's/"\\\\([a-zA-Z0-9_]+)"/ID(\1)/g; s/"(\$[a-zA-Z0-9_]+)"/ID(\1)/g;' *.cc Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Move LSB-trimming functionality from wreduce to opt_expr | Eddie Hung | 2019-08-06 | 1 | -23/+1 |
| | |||||
* | Try and fix again | Eddie Hung | 2019-07-19 | 1 | -5/+4 |
| | |||||
* | Do not access beyond bounds | Eddie Hung | 2019-07-19 | 1 | -1/+1 |
| | |||||
* | Wrap A and B in sigmap | Eddie Hung | 2019-07-19 | 1 | -2/+2 |
| | |||||
* | Remove "top" from message | Eddie Hung | 2019-07-19 | 1 | -1/+1 |
| | |||||
* | Also optimise MSB of $sub | Eddie Hung | 2019-07-19 | 1 | -3/+3 |
| | |||||
* | wreduce for $sub | Eddie Hung | 2019-07-19 | 1 | -0/+23 |
| | |||||
* | Revert "Add "synth -keepdc" option" | Eddie Hung | 2019-07-09 | 1 | -1/+1 |
| | |||||
* | Clarify 'wreduce -keepdc' doc | Eddie Hung | 2019-07-08 | 1 | -1/+1 |
| | |||||
* | Add "wreduce -keepdc", fixes #1016 | Clifford Wolf | 2019-05-20 | 1 | -1/+9 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Merge pull request #969 from YosysHQ/clifford/pmgenstuff | Clifford Wolf | 2019-05-03 | 1 | -0/+36 |
|\ | | | | | Improve pmgen, Add "peepopt" pass with shift-mul pattern | ||||
| * | Add peepopt_muldiv, fixes #930 | Clifford Wolf | 2019-04-30 | 1 | -0/+36 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | Fix segfault in wreduce | Clifford Wolf | 2019-04-30 | 1 | -0/+2 |
|/ | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Remove some left-over log_dump() | Clifford Wolf | 2019-04-23 | 1 | -2/+0 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Trim init attributes when resizing FFs in "wreduce", fixes #887 | Clifford Wolf | 2019-03-22 | 1 | -1/+26 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fix multiple issues in wreduce FF handling, fixes #835 | Clifford Wolf | 2019-02-28 | 1 | -5/+24 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Cleanups in ARST handling in wreduce | Clifford Wolf | 2019-02-24 | 1 | -10/+4 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fix WREDUCE on FF not fixing ARST_VALUE parameter. | Keith Rothman | 2019-02-22 | 1 | -0/+13 |
| | | | | | | Adds test case that fails without code change. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> | ||||
* | Add FF support to wreduce | Clifford Wolf | 2019-02-20 | 1 | -1/+70 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Fix handling of (* keep *) wires in wreduce | Clifford Wolf | 2018-12-31 | 1 | -1/+4 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Consistent use of 'override' for virtual methods in derived classes. | Henner Zeller | 2018-07-20 | 1 | -2/+2 |
| | | | | | | | | | 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 "wreduce -memx" | Clifford Wolf | 2016-08-20 | 1 | -3/+14 |
| | |||||
* | Optimize memory address port width in wreduce and memory_collect, not ↵ | Clifford Wolf | 2016-08-19 | 1 | -0/+18 |
| | | | | verilog front-end | ||||
* | Added "yosys -D" feature | Clifford Wolf | 2016-04-21 | 1 | -1/+1 |
| | |||||
* | Improvements in wreduce | Clifford Wolf | 2015-10-31 | 1 | -0/+25 |
| | |||||
* | Import more std:: stuff into Yosys namespace | Clifford Wolf | 2015-10-25 | 1 | -3/+3 |
| | |||||
* | Fixed handling of driver-driver conflicts in wreduce | Clifford Wolf | 2015-10-24 | 1 | -8/+16 |
| | |||||
* | Bugfixes in handling of "keep" attribute on wires | Clifford Wolf | 2015-10-15 | 1 | -1/+7 |
| | |||||
* | Added wreduce $mul support and fixed signed $mul opt_const bug | Clifford Wolf | 2015-09-25 | 1 | -1/+1 |
| | |||||
* | gcc-4.6 build fixes | Clifford Wolf | 2015-09-01 | 1 | -2/+2 |
| | |||||
* | Fixed trailing whitespaces | Clifford Wolf | 2015-07-02 | 1 | -2/+2 |
| | |||||
* | Added handling of bool-output cells to "wreduce" | Clifford Wolf | 2015-04-13 | 1 | -0/+11 |
| | |||||
* | wreduce help typo fix | Clifford Wolf | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | Bugfix in wreduce | Clifford Wolf | 2015-02-16 | 1 | -7/+14 |
| | |||||
* | Replaced std::unordered_set (nodict) with Yosys::pool | Clifford Wolf | 2014-12-26 | 1 | -2/+2 |
| | |||||
* | Added Yosys::{dict,nodict,vector} container types | Clifford Wolf | 2014-12-26 | 1 | -2/+2 |
| | |||||
* | Wrapped init in std::set constructor | William Speirs | 2014-10-15 | 1 | -2/+2 |
| | |||||
* | Renamed SIZE() to GetSize() because of name collision on Win32 | Clifford Wolf | 2014-10-10 | 1 | -42/+42 |
| |