Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add v2 memory cells. | Marcelina Kościelnicka | 2021-08-11 | 1 | -3/+6 |
| | |||||
* | Refactor common parts of SAT-using optimizations into a helper. | Marcelina Kościelnicka | 2021-08-09 | 1 | -57/+18 |
| | | | | | | | | | | | | | This also aligns the functionality: - in all cases, the onehot attribute is used to create appropriate constraints (previously, opt_dff didn't do it at all, and share created one-hot constraints based on $pmux presence alone, which is unsound) - in all cases, shift and mul/div/pow cells are now skipped when importing the SAT problem (previously only memory_share did this) — this avoids creating clauses for hard cells that are unlikely to help with proving the UNSATness needed for optimization | ||||
* | 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 | -2/+2 |
| | |||||
* | Add flooring division operator | Xiretza | 2020-05-28 | 1 | -1/+3 |
| | | | | | | | | | | 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/+3 |
| | | | | | | | | | | | 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 | -76/+76 |
| | |||||
* | Merge pull request #1845 from YosysHQ/eddie/kernel_speedup | Eddie Hung | 2020-04-02 | 1 | -8/+8 |
|\ | | | | | kernel: speedup by using more pass-by-const-ref | ||||
| * | kernel: SigSpec use more const& + overloads to prevent implicit SigSpec | Eddie Hung | 2020-03-13 | 1 | -8/+8 |
| | | |||||
* | | Apply suggestions from code review | Eddie Hung | 2020-03-30 | 1 | -2/+1 |
| | | | | | | Co-Authored-By: Alberto Gonzalez <61295559+boqwxp@users.noreply.github.com> | ||||
* | | kernel: clear some more ShareWorker state | Eddie Hung | 2020-03-26 | 1 | -0/+4 |
| | | |||||
* | | kernel: share a single CellTypes within a pass | Eddie Hung | 2020-03-18 | 1 | -14/+29 |
|/ | |||||
* | Use more ID::{A,B,Y,blackbox,whitebox} | Eddie Hung | 2019-08-15 | 1 | -35/+35 |
| | |||||
* | Use ID() macro in all of passes/opt/ | Clifford Wolf | 2019-08-11 | 1 | -173/+173 |
| | | | | | | | | | | 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> | ||||
* | stoi -> atoi | Eddie Hung | 2019-08-07 | 1 | -1/+1 |
| | |||||
* | Use std::stoi instead of atoi(<str>.c_str()) | Eddie Hung | 2019-08-06 | 1 | -1/+1 |
| | |||||
* | Make liberal use of IdString.in() | Eddie Hung | 2019-08-06 | 1 | -2/+2 |
| | |||||
* | Bugfix in $memrd sharing | Clifford Wolf | 2019-01-07 | 1 | -2/+6 |
| | | | | 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 "yosys -D" feature | Clifford Wolf | 2016-04-21 | 1 | -1/+1 |
| | |||||
* | Fixed performance bug in "share" pass | Clifford Wolf | 2016-04-21 | 1 | -2/+51 |
| | |||||
* | Import more std:: stuff into Yosys namespace | Clifford Wolf | 2015-10-25 | 1 | -29/+29 |
| | |||||
* | Fixed sharing of $memrd cells | Clifford Wolf | 2015-09-12 | 1 | -0/+4 |
| | |||||
* | Spell check (by Larry Doolittle) | Clifford Wolf | 2015-08-14 | 1 | -1/+1 |
| | |||||
* | Fixed trailing whitespaces | Clifford Wolf | 2015-07-02 | 1 | -2/+2 |
| | |||||
* | Replaced ezDefaultSAT with ezSatPtr | Clifford Wolf | 2015-02-21 | 1 | -13/+13 |
| | |||||
* | Less aggressive "share" defaults | Clifford Wolf | 2015-02-10 | 1 | -4/+6 |
| | |||||
* | Added ENABLE_NDEBUG makefile options | Clifford Wolf | 2015-01-24 | 1 | -0/+4 |
| | |||||
* | Added statehash to ezSAT | Clifford Wolf | 2014-12-29 | 1 | -2/+6 |
| | |||||
* | Converting "share" to dict<> and pool<> complete | Clifford Wolf | 2014-12-29 | 1 | -34/+42 |
| | |||||
* | Switched most of "share" to dict<> and pool<> | Clifford Wolf | 2014-12-29 | 1 | -16/+17 |
| | |||||
* | Renamed hashmap.h to hashlib.h, some related improvements | Clifford Wolf | 2014-12-28 | 1 | -2/+2 |
| | |||||
* | More dict/pool related changes | Clifford Wolf | 2014-12-27 | 1 | -9/+9 |
| | |||||
* | Improved TopoSort determinism | Clifford Wolf | 2014-11-07 | 1 | -3/+5 |
| | |||||
* | Fixed various VS warnings | Clifford Wolf | 2014-10-18 | 1 | -2/+2 |
| | |||||
* | Renamed SIZE() to GetSize() because of name collision on Win32 | Clifford Wolf | 2014-10-10 | 1 | -53/+53 |
| | |||||
* | sat encoding for exclusive $pmux ctrl inputs in "share" pass | Clifford Wolf | 2014-10-03 | 1 | -4/+16 |
| | |||||
* | added resource sharing of $macc cells | Clifford Wolf | 2014-10-03 | 1 | -3/+261 |
| | |||||
* | resource sharing of $alu cells | Clifford Wolf | 2014-10-03 | 1 | -3/+21 |
| | |||||
* | namespace Yosys | Clifford Wolf | 2014-09-27 | 1 | -1/+1 |
| | |||||
* | Re-enabled assert for new logic loops in "share" pass | Clifford Wolf | 2014-09-21 | 1 | -4/+1 |
| | |||||
* | Various improvements regarding logic loops in "share" results | Clifford Wolf | 2014-09-21 | 1 | -37/+108 |
| | |||||
* | Logic loop bugfix for "share" pass | Clifford Wolf | 2014-09-21 | 1 | -3/+7 |
| | |||||
* | Added "share -limit" | Clifford Wolf | 2014-09-21 | 1 | -1/+13 |
| | |||||
* | Still loop bug in "share": changed assert to warning | Clifford Wolf | 2014-09-21 | 1 | -13/+25 |
| | |||||
* | Do not introduce new logic loops in "share" | Clifford Wolf | 2014-09-21 | 1 | -6/+47 |
| | |||||
* | Assert on new logic loops in "share" pass | Clifford Wolf | 2014-09-21 | 1 | -0/+48 |
| | |||||
* | Removed $bu0 cell type | Clifford Wolf | 2014-09-04 | 1 | -1/+0 |
| | |||||
* | Moved "share" and "wreduce" to passes/opt/ | Clifford Wolf | 2014-09-01 | 1 | -0/+987 |