Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #1874 from boqwxp/cleanup_show | whitequark | 2020-04-06 | 1 | -52/+42 |
|\ | | | | | Clean up `passes/cmds/show.cc`. | ||||
| * | Use more descriptive variable name. | Alberto Gonzalez | 2020-04-06 | 1 | -10/+10 |
| | | | | | | | | Co-Authored-By: whitequark <whitequark@whitequark.org> | ||||
| * | Clean up `passes/cmds/show.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -52/+42 |
| | | |||||
* | | Merge pull request #1870 from boqwxp/cleanup_setattr | whitequark | 2020-04-06 | 1 | -22/+14 |
|\ \ | | | | | | | Clean up `passes/cmds/setattr.cc`. | ||||
| * | | Clean up `passes/cmds/setattr.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -22/+14 |
| |/ | |||||
* | | Merge pull request #1872 from boqwxp/cleanup_copy | whitequark | 2020-04-06 | 1 | -2/+2 |
|\ \ | | | | | | | Clean up private member usage in `passes/cmds/copy.cc`. | ||||
| * | | Clean up private member usage in `passes/cmds/copy.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -2/+2 |
| |/ | |||||
* | | Merge pull request #1871 from boqwxp/cleanup_splice | whitequark | 2020-04-06 | 1 | -18/+14 |
|\ \ | | | | | | | Clean up `passes/cmds/splice.cc`. | ||||
| * | | Clean up `passes/cmds/splice.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -18/+14 |
| |/ | |||||
* | | Merge pull request #1869 from boqwxp/cleanup_connwrappers | whitequark | 2020-04-06 | 1 | -15/+7 |
|\ \ | | | | | | | Clean up `passes/cmds/connwrappers.cc`. | ||||
| * | | Clean up `passes/cmds/connwrappers.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -15/+7 |
| |/ | |||||
* | | Merge pull request #1868 from boqwxp/cleanup_delete | whitequark | 2020-04-06 | 1 | -24/+19 |
|\ \ | | | | | | | Clean up `passes/cmds/delete.cc`. | ||||
| * | | Clean up `passes/cmds/delete.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -24/+19 |
| |/ | |||||
* | | Merge pull request #1867 from boqwxp/cleanup_stat | whitequark | 2020-04-06 | 1 | -26/+20 |
|\ \ | | | | | | | Clean up `passes/cmds/stat.cc`. | ||||
| * | | Clean up `passes/cmds/stat.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -26/+20 |
| |/ | |||||
* | | Merge pull request #1859 from boqwxp/design_duplicate | whitequark | 2020-04-06 | 1 | -2/+13 |
|\ \ | | | | | | | Add `-push-copy` option to the `design` command. | ||||
| * | | Rename `-duplicate` to `-push-copy`. | Alberto Gonzalez | 2020-04-04 | 1 | -6/+6 |
| | | | | | | | | | | | | Co-Authored-By: whitequark <whitequark@whitequark.org> | ||||
| * | | Add `-duplicate` option to the `design` command. | Alberto Gonzalez | 2020-04-03 | 1 | -2/+13 |
| | | | |||||
* | | | Clean up private member usage in `passes/cmds/bugpoint.cc`. | Alberto Gonzalez | 2020-04-06 | 1 | -14/+14 |
| |/ |/| | |||||
* | | kernel: big fat patch to use more ID::*, otherwise ID(*) | Eddie Hung | 2020-04-02 | 13 | -134/+134 |
| | | |||||
* | | kernel: use more ID::* | Eddie Hung | 2020-04-02 | 6 | -23/+23 |
| | | |||||
* | | Merge pull request #1845 from YosysHQ/eddie/kernel_speedup | Eddie Hung | 2020-04-02 | 1 | -1/+1 |
|\ \ | |/ |/| | kernel: speedup by using more pass-by-const-ref | ||||
| * | kernel: more pass by const ref, more speedups | Eddie Hung | 2020-03-18 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #1832 from boqwxp/cleanup_passes_cmds_design | Eddie Hung | 2020-03-30 | 1 | -31/+33 |
|\ \ | | | | | | | Clean up pseudo-private member usage in `passes/cmds/design.cc`. | ||||
| * | | Replace `RTLIL::id2cstr()` with `log_id()`. | Alberto Gonzalez | 2020-03-30 | 1 | -1/+1 |
| | | | | | | | | | | | | Co-Authored-By: Eddie Hung <eddie@fpgeh.com> | ||||
| * | | Clean up pseudo-private member usage in `passes/cmds/design.cc`. | Alberto Gonzalez | 2020-03-28 | 1 | -31/+33 |
| | | | |||||
* | | | Merge pull request #1778 from rswarbrick/sv-defines | N. Engelhardt | 2020-03-30 | 1 | -1/+2 |
|\ \ \ | | | | | | | | | Add support for SystemVerilog-style `define to Verilog frontend | ||||
| * | | | Add support for SystemVerilog-style `define to Verilog frontend | Rupert Swarbrick | 2020-03-27 | 1 | -1/+2 |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | | Explicit include of csignal | Miodrag Milanovic | 2020-03-28 | 1 | -0/+1 |
| | | | |||||
* | | | windows - there are no stopping signals | Miodrag Milanovic | 2020-03-28 | 1 | -0/+1 |
|/ / | |||||
* | | Merge pull request #1763 from boqwxp/issue1762 | N. Engelhardt | 2020-03-23 | 2 | -12/+53 |
|\ \ | | | | | | | 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 | -1/+2 |
| | | | | | | | | | | | | Co-Authored-By: N. Engelhardt <nak@symbioticeda.com> | ||||
| * | | Suppress warnings for empty `select` arguments when `-count` or `-assert-*` ↵ | Alberto Gonzalez | 2020-03-23 | 1 | -4/+5 |
| | | | | | | | | | | | | options are set. | ||||
| * | | Warn on empty selection for `add` command. | Alberto Gonzalez | 2020-03-23 | 2 | -6/+40 |
| | | | |||||
| * | | Add N:* to select language, fix some old code | Claire Wolf | 2020-03-17 | 1 | -4/+9 |
| | | | | | | | | | | | | Signed-off-by: Claire Wolf <claire@symbioticeda.com> | ||||
* | | | Merge pull request #1774 from boqwxp/exec | N. Engelhardt | 2020-03-19 | 2 | -0/+204 |
|\ \ \ | |/ / |/| | | Add `exec` command to allow running shell commands from inside Yosys scripts | ||||
| * | | Update copyright and license header. | Alberto Gonzalez | 2020-03-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | I hereby assign to Claire Wolf the copyright for all work I did on `passes/cmds/exec.cc`. In the event that this copyright assignment is not legally valid, I offer this work under the ISC license. | ||||
| * | | Clean up `exec` code according to review. | Alberto Gonzalez | 2020-03-18 | 1 | -5/+18 |
| | | | | | | | | | | | | Co-Authored-By: Miodrag Milanović <mmicko@gmail.com> | ||||
| * | | Allow specifying multiple regexes to match in `exec` command output, and ↵ | Alberto Gonzalez | 2020-03-16 | 1 | -33/+67 |
| | | | | | | | | | | | | also to specify regexes that must _not_ match. | ||||
| * | | Add `exec` command to run shell commands. | Alberto Gonzalez | 2020-03-16 | 2 | -0/+157 |
| | | | |||||
* | | | Merge pull request #1769 from boqwxp/select_cleanup | Eddie Hung | 2020-03-17 | 1 | -162/+157 |
|\ \ \ | |/ / |/| | | Clean up code style and pseudo-private member usage in `passes/cmds/select.cc` | ||||
| * | | Further clean up `passes/cmds/select.cc`. | Alberto Gonzalez | 2020-03-16 | 1 | -11/+9 |
| | | | | | | | | | | | | Co-Authored-By: Eddie Hung <eddie@fpgeh.com> | ||||
| * | | Cleanup code style and pseudo-private member usage in `passes/cmds/select.cc`. | Alberto Gonzalez | 2020-03-16 | 1 | -162/+159 |
| |/ | |||||
* | | Add YS_ prefix to macros, add explanation and apply to older version as well | Miodrag Milanovic | 2020-03-13 | 1 | -10/+10 |
| | | |||||
* | | Use boost xpressive for gcc 4.8 | Miodrag Milanovic | 2020-03-13 | 1 | -28/+10 |
|/ | |||||
* | Merge pull request #1751 from boqwxp/add_assert | N. Engelhardt | 2020-03-12 | 1 | -1/+57 |
|\ | | | | | Extend `add` command to allow adding $assert cells. | ||||
| * | Extend `add` command to allow adding cells for verification like $assert, ↵ | Alberto Gonzalez | 2020-03-10 | 1 | -1/+57 |
| | | | | | | | | $assume, etc. | ||||
* | | Clean up passes/cmds/add.cc code style. | Alberto Gonzalez | 2020-03-10 | 1 | -20/+17 |
|/ | |||||
* | Merge pull request #1705 from YosysHQ/logger_pass | Miodrag Milanović | 2020-02-26 | 2 | -0/+202 |
|\ | | | | | Logger pass | ||||
| * | Fix line endings | Miodrag Milanovic | 2020-02-23 | 1 | -10/+10 |
| | |