Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bugpoint: avoid infinite loop between -connections and -wires. | Catherine | 2021-12-15 | 1 | -1/+1 |
| | | | | Fixes #3113. | ||||
* | rtlil: Make Process handling more uniform with Cell and Wire. | Marcelina Kościelnicka | 2021-07-12 | 1 | -5/+4 |
| | | | | | | - add a backlink to module from Process - make constructor and destructor protected, expose Module functions to add and remove processes | ||||
* | Clarify bugpoint documentation regarding output | Iris Johnson | 2021-03-24 | 1 | -0/+2 |
| | | | | | | | Bugpoint's current documentation does specify that the result of a run is stored as the current design, however it's easy to skim over what that means in practice. Add a documentation comment to explain specifically that an after bugpoint `write_xyz` pass is required to save the reduced design. | ||||
* | bugpoint: add runner option | Zachary Snow | 2021-03-17 | 1 | -6/+17 |
| | |||||
* | Add support for memory writes in processes. | Marcelina Kościelnicka | 2021-03-08 | 1 | -0/+17 |
| | |||||
* | bugpoint: add -wires option. | whitequark | 2020-12-07 | 1 | -3/+38 |
| | |||||
* | bugpoint: try to remove whole processes first. | whitequark | 2020-12-07 | 1 | -4/+40 |
| | |||||
* | bugpoint: accept quoted strings in -grep. | whitequark | 2020-12-07 | 1 | -1/+4 |
| | |||||
* | bugpoint: add -command option. | whitequark | 2020-12-07 | 1 | -13/+21 |
| | |||||
* | Replace "ILANG" with "RTLIL" everywhere. | whitequark | 2020-08-26 | 1 | -3/+3 |
| | | | | | | | | | | The only difference between "RTLIL" and "ILANG" is that the latter is the text representation of the former, as opposed to the in-memory graph representation. This distinction serves no purpose but confuses people: it is not obvious that the ILANG backend writes RTLIL graphs. Passes `write_ilang` and `read_ilang` are provided as aliases to `write_rtlil` and `read_rtlil` for compatibility. | ||||
* | Use C++11 final/override keywords. | whitequark | 2020-06-18 | 1 | -2/+2 |
| | |||||
* | bugpoint: improve messaging | Eddie Hung | 2020-04-24 | 1 | -7/+7 |
| | |||||
* | bugpoint: (* keep *) to (* bugpoint_keep *); also apply to modules/cells | Eddie Hung | 2020-04-24 | 1 | -5/+14 |
| | |||||
* | bugpoint: skip ports with (* keep *) on; add header | Eddie Hung | 2020-04-24 | 1 | -9/+18 |
| | |||||
* | bugpoint: improve help text | Eddie Hung | 2020-04-23 | 1 | -11/+13 |
| | |||||
* | bugpoint: Don't remove modules or cells while iterating over them. | Marcelina Kościelnicka | 2020-04-22 | 1 | -4/+14 |
| | | | | Reported by @ZirconiumX. | ||||
* | 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 | 1 | -2/+2 |
| | |||||
* | bugpoint: add -assigns and -updates options. | whitequark | 2019-07-09 | 1 | -9/+81 |
| | |||||
* | bugpoint: check for -script option. | whitequark | 2019-05-14 | 1 | -0/+3 |
| | | | | Fixes #925. | ||||
* | Fix all warnings that occurred when compiling with gcc9 | Kristoffer Ellersgaard Koch | 2019-05-08 | 1 | -2/+1 |
| | |||||
* | Add "whitebox" attribute, add "read_verilog -wb" | Clifford Wolf | 2019-04-18 | 1 | -4/+4 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Switch "bugpoint" from system() to run_command() | Clifford Wolf | 2019-01-07 | 1 | -1/+1 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | bugpoint: new pass. | whitequark | 2019-01-07 | 1 | -0/+369 |
A typical use of `bugpoint` would involve a script with a pass under test, e.g.: flowmap -relax -optarea 100 and would be invoked as: bugpoint -yosys ./yosys -script flowmap.ys -clean -cells This replaces the current design with the minimal design that still crashes the `flowmap.ys` script. `bugpoint` can also be used to perform generic design minimization using `select`, e.g. the following script: select i:* %x t:$_MUX_ %i -assert-max 0 would remove all parts of the design except for an unbroken path from an input to an output port that goes through exactly one $_MUX_ cell. (The condition is inverted.) |