aboutsummaryrefslogtreecommitdiffstats
path: root/passes
Commit message (Collapse)AuthorAgeFilesLines
* Add $cover cell type and SVA cover() supportClifford Wolf2017-02-042-2/+2
|
* Update ABC scripts to use "&nf" instead of "map"Clifford Wolf2017-02-011-3/+3
|
* Fix indenting and log messages in code merged from opt_compare_prClifford Wolf2017-01-311-102/+120
|
* Merge branch 'opt_compare_pr' of https://github.com/C-Elegans/yosys into ↵Clifford Wolf2017-01-311-1/+103
|\ | | | | | | C-Elegans-opt_compare_pr
| * Refactor and generalize the comparision optimizationC-Elegans2017-01-301-22/+42
| | | | | | | | | | | | | | | | Generalizes the optimization to: a < C, a >= C, C > a, C <= a
| * Do not use b.as_int() in calculation of bit setC-Elegans2017-01-211-8/+29
| |
| * Optimize compares to powers of 2C-Elegans2017-01-164-81/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove opt_compare and put comparison pass in opt_expr assuming a [7:0] is unsigned a >= (1<<x) becomes |a[7:x] a < (1<<x) becomes !a[7:x] Additionally: a >= 0 becomes constant true, a < 0 becomes constant false delete opt_compare.cc revert opt.cc to commit b7cfb7dbd (remove opt_compare step)
| * Fix issue #269, optimize signed compare with 0C-Elegans2017-01-153-0/+81
| | | | | | | | | | | | | | | | add opt_compare pass and add it to opt for a < 0: if a is signed, replace with a[max_bit-1] for a >= 0: if a is signed, replace with ~a[max_bit-1]
* | Improve opt_rmdff support for $dlatch cellsClifford Wolf2017-01-311-4/+22
| |
* | Add $ff and $_FF_ support to equiv_simpleClifford Wolf2017-01-301-2/+2
| |
* | Be more conservative with merging large cells into FSMsClifford Wolf2017-01-261-3/+17
| |
* | Add warnings for quickly growing FSM table size in fsm_expandClifford Wolf2017-01-261-0/+10
| |
* | passes/hierarchy: delete some dead codeAustin Seipp2017-01-151-4/+0
|/ | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* Added "check -initdrv"Clifford Wolf2017-01-041-3/+82
|
* Added cell port resizing to hierarchy passClifford Wolf2017-01-011-0/+56
|
* Added "design -reset-vlog"Clifford Wolf2016-11-301-7/+32
|
* Improved equiv_purge log outputClifford Wolf2016-11-291-1/+1
|
* Added wire start_offset and upto handling to splitnets cmdClifford Wolf2016-11-231-2/+8
|
* Improved ABC default scriptsClifford Wolf2016-11-191-17/+34
|
* Added support for hierarchical defparamsClifford Wolf2016-11-151-1/+1
|
* Minor bugfix in submodClifford Wolf2016-11-091-0/+1
|
* Bugfix in "setundef" passClifford Wolf2016-11-081-2/+7
|
* Implemented "scc -set_attr"Clifford Wolf2016-11-061-22/+32
|
* Bugfix in "scc" commandClifford Wolf2016-11-061-9/+11
|
* Bugfix in "hierarchy -check"Clifford Wolf2016-11-021-1/+1
|
* Added support for fsm_encoding="user"Clifford Wolf2016-11-021-3/+3
|
* Added "fsm_expand -full"Clifford Wolf2016-11-022-17/+35
|
* Bugfix in fsm_map for FSMs without reset stateClifford Wolf2016-10-251-1/+2
|
* Added avail params to ilang format, check module params in 'hierarchy -check'Clifford Wolf2016-10-221-0/+4
|
* Added "setparam -type"Clifford Wolf2016-10-191-3/+13
|
* Bugfix in "miter -assert" handling of assumptionsClifford Wolf2016-10-171-2/+2
|
* Added clk2fflogic support for $dffsr and $dlatchClifford Wolf2016-10-171-1/+57
|
* Improvements and bugfixes in clk2fflogicClifford Wolf2016-10-161-13/+21
|
* Build fixes for VS 2015Clifford Wolf2016-10-162-1/+4
|
* Some minor build fixes for Visual CClifford Wolf2016-10-141-2/+11
|
* Avoid using strcasecmp()Clifford Wolf2016-10-141-2/+21
|
* Added clk2fflogicClifford Wolf2016-10-142-0/+154
|
* Added opt_rmdff support for $ff cellsClifford Wolf2016-10-141-5/+13
|
* Added $global_clock verilog syntax support for creating $ff cellsClifford Wolf2016-10-141-7/+19
|
* Added MEMID handling to "flatten" passClifford Wolf2016-10-141-0/+6
|
* Added "zinit" passClifford Wolf2016-10-122-0/+152
|
* Added $ff and $_FF_ cell typesClifford Wolf2016-10-122-8/+50
|
* Added "opt_rmdff -keepdc"Clifford Wolf2016-09-302-7/+20
|
* Cosmetic fix in test_autotb.ccClifford Wolf2016-09-191-2/+2
|
* Avoid creating very long strings in test_autotbClifford Wolf2016-09-191-4/+10
|
* Bugfix in techmap parameter handlingClifford Wolf2016-09-141-1/+1
|
* Typo fix.Kaj Tuomi2016-09-081-1/+1
|
* Improvements in assertpmuxClifford Wolf2016-09-071-21/+158
|
* Added assertpmuxClifford Wolf2016-09-072-0/+104
|
* Added "tee +INT -INT"Clifford Wolf2016-09-061-0/+10
|