Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'vector_fix' of https://github.com/Kmanfi/yosys | Claire Wolf | 2020-01-29 | 1 | -1/+3 |
|\ | | | | | | | Also some minor fixes to the original PR. | ||||
| * | Fix input vector for reduce cells. Infinite loop fixed. | Kaj Tuomi | 2017-10-17 | 1 | -0/+2 |
| | | |||||
* | | opt_reduce: Call check() per run rather than per optimised cell | David Shah | 2020-01-28 | 1 | -1/+2 |
| | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | | Fix opt_expr.eqneq.cmpzero debug print | Alyssa Milburn | 2019-12-15 | 1 | -1/+1 |
| | | |||||
* | | opt_share: Fix handling of fine cells. | Marcin KoĆcielnicki | 2019-11-27 | 1 | -4/+11 |
| | | | | | | | | Fixes #1525. | ||||
* | | Add "opt_mem" pass | Clifford Wolf | 2019-11-22 | 2 | -0/+144 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | 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> | ||||
* | | Fix handling of z_digit "?" and fix optimization of cmp with "z" | Clifford Wolf | 2019-09-13 | 1 | -0/+4 |
| | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | passes: opt_share: don't statically initialize mergeable_type_map | Sean Cross | 2019-09-09 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | In 3d3779b0376b8204ed7637053176a07b7271ac1d this got turned from a `std::map<std::string, std::string>` to `std::map<IdString, IdString>`. Consequently, this exposed some initialization sequencing issues (#1361). Only initialize the map when it's first used, to avoid these static issues. This fixes #1361. Signed-off-by: Sean Cross <sean@xobs.io> | ||||
* | | Copy-paste typo | Eddie Hung | 2019-08-22 | 1 | -1/+1 |
| | | |||||
* | | Respect opt_expr -keepdc as per @cliffordwolf | Eddie Hung | 2019-08-22 | 1 | -1/+1 |
| | | |||||
* | | Handle $shift and Y_WIDTH > 1 as per @cliffordwolf | Eddie Hung | 2019-08-22 | 1 | -4/+8 |
| | | |||||
* | | Add cover() | Eddie Hung | 2019-08-22 | 1 | -0/+1 |
| | | |||||
* | | Canonical form | Eddie Hung | 2019-08-22 | 1 | -5/+5 |
| | | |||||
* | | opt_expr to trim A port of $shiftx if Y_WIDTH == 1 | Eddie Hung | 2019-08-21 | 1 | -0/+17 |
| | | |||||
* | | ID({A,B,Y}) -> ID::{A,B,Y} for opt_share.cc | Eddie Hung | 2019-08-19 | 1 | -30/+30 |
| | | |||||
* | | Merge pull request #1283 from YosysHQ/clifford/fix1255 | Clifford Wolf | 2019-08-17 | 1 | -1/+2 |
|\ \ | | | | | | | Fix various NDEBUG compiler warnings | ||||
| * \ | Merge branch 'master' into clifford/fix1255 | Clifford Wolf | 2019-08-15 | 12 | -994/+1042 |
| |\ \ | |||||
| * | | | Fix various NDEBUG compiler warnings, closes #1255 | Clifford Wolf | 2019-08-13 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | | | | Merge pull request #1303 from YosysHQ/bogdanvuk/opt_share | Clifford Wolf | 2019-08-17 | 3 | -1/+655 |
|\ \ \ \ | | | | | | | | | | | Implement opt_share from @bogdanvuk | ||||
| * | | | | Use ID() macro | Eddie Hung | 2019-08-16 | 1 | -118/+110 |
| | | | | | |||||
| * | | | | Add 'opt_share' to 'opt -full' | Eddie Hung | 2019-08-16 | 1 | -0/+5 |
| | | | | | |||||
| * | | | | Merge https://github.com/bogdanvuk/yosys into bogdanvuk/opt_share | Eddie Hung | 2019-08-16 | 2 | -1/+658 |
| |\ \ \ \ | |||||
| | * | | | | Fix wrong results when opt_share called before opt_clean | Bogdan Vukobratovic | 2019-08-07 | 1 | -18/+14 |
| | | | | | | |||||
| | * | | | | Support various binary operators in opt_share | Bogdan Vukobratovic | 2019-08-04 | 1 | -194/+392 |
| | | | | | | |||||
| | * | | | | Fix spacing in opt_share tests, change wording in opt_share help | Bogdan Vukobratovic | 2019-08-03 | 1 | -6/+10 |
| | | | | | | |||||
| | * | | | | Reimplement opt_share to work on $alu and $pmux | Bogdan Vukobratovic | 2019-07-28 | 1 | -95/+225 |
| | | | | | | |||||
| | * | | | | Implement opt_share | Bogdan Vukobratovic | 2019-07-26 | 2 | -1/+330 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This pass identifies arithmetic operators that share an operand and whose results are used in mutually exclusive cases controlled by a multiplexer, and merges them together by multiplexing the other operands | ||||
* | | | | | | Remove `using namespace RTLIL;` | Eddie Hung | 2019-08-16 | 1 | -6/+5 |
| | | | | | | |||||
* | | | | | | Use ID::keep more liberally too | Eddie Hung | 2019-08-15 | 6 | -10/+10 |
| | | | | | | |||||
* | | | | | | Use more ID::{A,B,Y,blackbox,whitebox} | Eddie Hung | 2019-08-15 | 12 | -348/+348 |
|/ / / / / | |||||
* | | | | | Fix | Eddie Hung | 2019-08-15 | 1 | -2/+2 |
| | | | | | |||||
* | | | | | Convert a few more to ID | Eddie Hung | 2019-08-15 | 1 | -20/+20 |
| |_|/ / |/| | | | |||||
* | | | | Merge branch 'master' into clifford/ids | Clifford Wolf | 2019-08-15 | 1 | -1/+49 |
|\ \ \ \ | |||||
| * \ \ \ | Merge remote-tracking branch 'origin/master' into eddie/fix_1262 | Eddie Hung | 2019-08-11 | 7 | -58/+53 |
| |\ \ \ \ | | | |/ / | | |/| | | |||||
| * | | | | Wrong way around | Eddie Hung | 2019-08-10 | 1 | -2/+2 |
| | | | | | |||||
| * | | | | cover_list -> cover as per @cliffordwolf | Eddie Hung | 2019-08-10 | 1 | -2/+2 |
| | | | | | |||||
| * | | | | Grammar | Eddie Hung | 2019-08-09 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Separate $alu handling | Eddie Hung | 2019-08-09 | 1 | -7/+50 |
| | | | | | |||||
| * | | | | opt_expr -fine to trim LSBs of $alu too | Eddie Hung | 2019-08-09 | 1 | -4/+9 |
| | | | | | |||||
* | | | | | Use ID() macro in all of passes/opt/ | Clifford Wolf | 2019-08-11 | 12 | -998/+998 |
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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> | ||||
* | | | | Merge pull request #1258 from YosysHQ/eddie/cleanup | Clifford Wolf | 2019-08-10 | 7 | -58/+53 |
|\ \ \ \ | |/ / / |/| | | | Cleanup a few barnacles across codebase | ||||
| * | | | substr() -> compare() | Eddie Hung | 2019-08-07 | 3 | -6/+6 |
| | | | | |||||
| * | | | RTLIL::S{0,1} -> State::S{0,1} | Eddie Hung | 2019-08-07 | 1 | -1/+1 |
| | | | | |||||
| * | | | Merge remote-tracking branch 'origin/master' into eddie/cleanup | Eddie Hung | 2019-08-07 | 2 | -3/+28 |
| |\ \ \ | |||||
| * | | | | stoi -> atoi | Eddie Hung | 2019-08-07 | 3 | -5/+5 |
| | | | | | |||||
| * | | | | Use std::stoi instead of atoi(<str>.c_str()) | Eddie Hung | 2019-08-06 | 3 | -5/+5 |
| | | | | | |||||
| * | | | | Use IdString::begins_with() | Eddie Hung | 2019-08-06 | 1 | -8/+8 |
| | | | | | |||||
| * | | | | Make liberal use of IdString.in() | Eddie Hung | 2019-08-06 | 4 | -10/+10 |
| | | | | | |||||
| * | | | | Cleanup opt_expr.cc | Eddie Hung | 2019-08-06 | 1 | -35/+30 |
| | | | | |