Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #1648 from YosysHQ/eddie/cmp2lcu | Eddie Hung | 2020-04-03 | 1 | -0/+52 |
|\ | | | | | "techmap -map +/cmp2lcu.v" for decomposing arithmetic compares to $lcu | ||||
| * | +/cmp2lcu.v to work efficiently for fully/partially constant inputs | Eddie Hung | 2020-04-03 | 1 | -3/+31 |
| | | |||||
| * | Refactor +/cmp2lcu.v into recursive techmap | Eddie Hung | 2020-04-03 | 1 | -1/+1 |
| | | |||||
| * | techmap +/cmp2lcu.v for decomposing arithmetic compares to $lcu | Eddie Hung | 2020-04-03 | 1 | -0/+24 |
| | | |||||
* | | iopadmap: Fix z assignment to inout port | Marcin Kościelnicki | 2020-04-02 | 1 | -1/+9 |
|/ | | | | Fixes #1841. | ||||
* | Merge pull request #1790 from YosysHQ/eddie/opt_expr_xor | Eddie Hung | 2020-04-01 | 3 | -7/+55 |
|\ | | | | | opt_expr: optimise $xor/$xnor/$_XOR_/$_XNOR_ -s with constant inputs | ||||
| * | opt_expr: add failing $xnor test | Eddie Hung | 2020-03-20 | 1 | -1/+13 |
| | | |||||
| * | Simplify breaking tests/arch/*/fsm.ys tests | Eddie Hung | 2020-03-20 | 2 | -7/+3 |
| | | |||||
| * | opt_expr: add $xor/$xnor/$_XOR_/$_XNOR_ tests | Eddie Hung | 2020-03-19 | 1 | -0/+40 |
| | | |||||
* | | Merge pull request #1789 from YosysHQ/eddie/opt_expr_alu | Eddie Hung | 2020-04-01 | 1 | -0/+63 |
|\ \ | | | | | | | opt_expr: improve performance on $alu and $sub | ||||
| * | | opt_expr: add $alu tests | Eddie Hung | 2020-03-19 | 1 | -0/+63 |
| |/ | |||||
* | | Merge pull request #1848 from YosysHQ/eddie/fix_dynslice | Claire Wolf | 2020-04-01 | 1 | -0/+12 |
|\ \ | | | | | | | ast: simplify to fully populate dynamic slicing case transformation | ||||
| * | | Add dynamic slicing Verilog testcase | Eddie Hung | 2020-03-31 | 1 | -0/+12 |
| |/ | |||||
* | | Merge pull request #1761 from YosysHQ/eddie/opt_merge_speedup | Eddie Hung | 2020-03-31 | 2 | -0/+92 |
|\ \ | | | | | | | opt_merge: speedup | ||||
| * | | opt_merge: speedup | Eddie Hung | 2020-03-16 | 2 | -0/+92 |
| |/ | |||||
* | | Merge pull request #1811 from PeterCrozier/typedef_scope | N. Engelhardt | 2020-03-30 | 1 | -0/+7 |
|\ \ | | | | | | | Support module/package/interface/block scope for typedef names. | ||||
| * | | Support module/package/interface/block scope for typedef names. | Peter Crozier | 2020-03-23 | 1 | -0/+7 |
| | | | |||||
* | | | Add support for SystemVerilog-style `define to Verilog frontend | Rupert Swarbrick | 2020-03-27 | 4 | -0/+50 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch should support things like `define foo(a, b = 3, c) a+b+c `foo(1, ,2) which will evaluate to 1+3+2. It also spots mistakes like `foo(1) (the 3rd argument doesn't have a default value, so a call site is required to set it). Most of the patch is a simple parser for the format in preproc.cc, but I've also taken the opportunity to wrap up the "name -> definition" map in a type, rather than use multiple std::map's. Since this type needs to be visible to code that touches defines, I've pulled it (and the frontend_verilog_preproc declaration) out into a new file at frontends/verilog/preproc.h and included that where necessary. Finally, the patch adds a few tests in tests/various to check that we are parsing everything correctly. | ||||
* | | | Merge pull request #1806 from YosysHQ/mwk/techmap-replace-fix | Claire Wolf | 2020-03-26 | 1 | -0/+18 |
|\ \ \ | | | | | | | | | techmap: Fix cell names with _TECHMAP_REPLACE_.* | ||||
| * | | | techmap: Fix cell names with _TECHMAP_REPLACE_.* | Marcin Kościelnicki | 2020-03-23 | 1 | -0/+18 |
| | | | | | | | | | | | | | | | | Fixes #1804. | ||||
* | | | | Merge pull request #1763 from boqwxp/issue1762 | N. Engelhardt | 2020-03-23 | 5 | -0/+19 |
|\ \ \ \ | |_|/ / |/| | | | Closes #1762. Adds warnings for `select` arguments not matching any object and for `add` command when no modules selected | ||||
| * | | | Do not warn on empty selection with prefixed `arg_memb`. | Alberto Gonzalez | 2020-03-23 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | Co-Authored-By: N. Engelhardt <nak@symbioticeda.com> | ||||
| * | | | Suppress warnings for empty `select` arguments when `-count` or `-assert-*` ↵ | Alberto Gonzalez | 2020-03-23 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | options are set. | ||||
| * | | | Add tests for `select` command warnings. | Alberto Gonzalez | 2020-03-23 | 3 | -0/+12 |
| | | | | |||||
* | | | | Merge pull request #1803 from Grazfather/typedef | N. Engelhardt | 2020-03-23 | 7 | -25/+26 |
|\ \ \ \ | |_|/ / |/| | | | Support standard typedef grammar (Fixed) | ||||
| * | | | Revert typedef tests to standard grammar. | Peter | 2020-03-22 | 7 | -25/+26 |
| | | | | |||||
* | | | | Add test for abc9+mince issue | David Shah | 2020-03-20 | 1 | -0/+17 |
|/ / / | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | | | fsm_extract: Initialize celltypes with full design. | Marcin Kościelnicki | 2020-03-19 | 1 | -0/+33 |
| | | | | | | | | | | | | Fixes #1781. | ||||
* | | | Merge pull request #1774 from boqwxp/exec | N. Engelhardt | 2020-03-19 | 1 | -0/+6 |
|\ \ \ | | | | | | | | | Add `exec` command to allow running shell commands from inside Yosys scripts | ||||
| * | | | Add test for `exec` command. | Alberto Gonzalez | 2020-03-16 | 1 | -0/+6 |
| |/ / | |||||
* / / | fix argument order for macOS compatibility | N. Engelhardt | 2020-03-18 | 1 | -3/+3 |
|/ / | |||||
* | | Merge pull request #1759 from zeldin/constant_with_comment_redux | Miodrag Milanović | 2020-03-14 | 2 | -0/+24 |
|\ \ | | | | | | | refixed parsing of constant with comment between size and value | ||||
| * | | Add regression tests for new handling of comments in constants | Marcus Comstedt | 2020-03-14 | 2 | -0/+24 |
| |/ | |||||
* | | Merge pull request #1754 from boqwxp/precise_locations | Miodrag Milanović | 2020-03-14 | 1 | -0/+8 |
|\ \ | | | | | | | Set AST node source location in more parser rules. | ||||
| * | | verilog: add test | Eddie Hung | 2020-03-11 | 1 | -0/+8 |
| | | | |||||
* | | | Added back tests for logger | Miodrag Milanovic | 2020-03-13 | 4 | -0/+24 |
| |/ |/| | |||||
* | | Merge pull request #1721 from YosysHQ/dave/tribuf-unused | David Shah | 2020-03-10 | 1 | -0/+14 |
|\ \ | |/ |/| | deminout: Don't demote inouts with unused bits | ||||
| * | deminout: Don't demote inouts with unused bits | David Shah | 2020-03-04 | 1 | -0/+14 |
| | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | | Fix partsel expr bit width handling and add test case | Claire Wolf | 2020-03-08 | 1 | -0/+4 |
| | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | | rpc test: make frontend listen before launching yosys & introduce safeguard ↵ | N. Engelhardt | 2020-03-06 | 1 | -1/+2 |
| | | | | | | | | if yosys errors | ||||
* | | tests: extend tests/arch/run-tests.sh for defines | Eddie Hung | 2020-03-05 | 1 | -3/+14 |
| | | |||||
* | | Merge pull request #1718 from boqwxp/precise_locations | Claire Wolf | 2020-03-03 | 2 | -4/+4 |
|\ \ | | | | | | | Closes #1717. Add more precise Verilog source location information to AST and RTLIL nodes. | ||||
| * | | Change attribute search value to specify precise location instead of simple ↵ | Alberto Gonzalez | 2020-02-24 | 1 | -2/+2 |
| | | | | | | | | | | | | line number. | ||||
| * | | Change attribute search value to specify precise location instead of simple ↵ | Alberto Gonzalez | 2020-02-24 | 1 | -2/+2 |
| |/ | | | | | | | line number. | ||||
* | | Merge pull request #1519 from YosysHQ/eddie/submod_po | Claire Wolf | 2020-03-03 | 1 | -0/+124 |
|\ \ | | | | | | | submod: several bugfixes | ||||
| * \ | Merge branch 'master' into eddie/submod_po | Eddie Hung | 2020-02-01 | 83 | -175/+2399 |
| |\ \ | |||||
| * | | | Add a quick testcase for unknown modules as inout | Eddie Hung | 2019-12-09 | 1 | -2/+24 |
| | | | | |||||
* | | | | iopadmap: Look harder for already-present buffers. (#1731) | Marcelina Kościelnicka | 2020-03-02 | 1 | -2/+21 |
| | | | | | | | | | | | | | | | | | | | | iopadmap: Look harder for already-present buffers. Fixes #1720. | ||||
* | | | | Merge pull request #1724 from YosysHQ/eddie/abc9_specify | Eddie Hung | 2020-03-02 | 6 | -7/+10 |
|\ \ \ \ | | | | | | | | | | | abc9: auto-generate *.lut/*.box files and arrival/required times from specify entries | ||||
| * | | | | Revert "Fix tests/arch/xilinx/fsm.ys to count flops only" | Eddie Hung | 2020-02-27 | 1 | -3/+9 |
| | | | | | | | | | | | | | | | | | | | | This reverts commit 68f903c6dd7403a4cf280cf71ee02d20345938b5. |