aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds/bugpoint.cc
Commit message (Collapse)AuthorAgeFilesLines
* bugpoint: avoid infinite loop between -connections and -wires.Catherine2021-12-151-1/+1
| | | | Fixes #3113.
* rtlil: Make Process handling more uniform with Cell and Wire.Marcelina Kościelnicka2021-07-121-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 outputIris Johnson2021-03-241-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 optionZachary Snow2021-03-171-6/+17
|
* Add support for memory writes in processes.Marcelina Kościelnicka2021-03-081-0/+17
|
* bugpoint: add -wires option.whitequark2020-12-071-3/+38
|
* bugpoint: try to remove whole processes first.whitequark2020-12-071-4/+40
|
* bugpoint: accept quoted strings in -grep.whitequark2020-12-071-1/+4
|
* bugpoint: add -command option.whitequark2020-12-071-13/+21
|
* Replace "ILANG" with "RTLIL" everywhere.whitequark2020-08-261-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.whitequark2020-06-181-2/+2
|
* bugpoint: improve messagingEddie Hung2020-04-241-7/+7
|
* bugpoint: (* keep *) to (* bugpoint_keep *); also apply to modules/cellsEddie Hung2020-04-241-5/+14
|
* bugpoint: skip ports with (* keep *) on; add headerEddie Hung2020-04-241-9/+18
|
* bugpoint: improve help textEddie Hung2020-04-231-11/+13
|
* bugpoint: Don't remove modules or cells while iterating over them.Marcelina Kościelnicka2020-04-221-4/+14
| | | | Reported by @ZirconiumX.
* Clean up private member usage in `passes/cmds/bugpoint.cc`.Alberto Gonzalez2020-04-061-14/+14
|
* kernel: big fat patch to use more ID::*, otherwise ID(*)Eddie Hung2020-04-021-2/+2
|
* bugpoint: add -assigns and -updates options.whitequark2019-07-091-9/+81
|
* bugpoint: check for -script option.whitequark2019-05-141-0/+3
| | | | Fixes #925.
* Fix all warnings that occurred when compiling with gcc9Kristoffer Ellersgaard Koch2019-05-081-2/+1
|
* Add "whitebox" attribute, add "read_verilog -wb"Clifford Wolf2019-04-181-4/+4
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Switch "bugpoint" from system() to run_command()Clifford Wolf2019-01-071-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* bugpoint: new pass.whitequark2019-01-071-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.)