summaryrefslogtreecommitdiff
path: root/passes/opt
Commit message (Collapse)AuthorAge
...
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-27
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-27
|
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-26
|
* More RTLIL::Cell API usage cleanupsClifford Wolf2014-07-26
|
* Added RTLIL::Cell::has(portname)Clifford Wolf2014-07-26
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-26
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-26
| | | | | | | | | git grep -l 'connections_' | xargs sed -i -r -e ' s/(->|\.)connections_\["([^"]*)"\] = (.*);/\1set("\2", \3);/g; s/(->|\.)connections_\["([^"]*)"\]/\1get("\2")/g; s/(->|\.)connections_.at\("([^"]*)"\)/\1get("\2")/g; s/(->|\.)connections_.push_back/\1connect/g; s/(->|\.)connections_/\1connections()/g;'
* Renamed RTLIL::{Module,Cell}::connections to connections_Clifford Wolf2014-07-26
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-25
|
* Fixed memory corruption in "opt_reduce" passClifford Wolf2014-07-25
|
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-24
|
* Added cover() calls to opt_constClifford Wolf2014-07-24
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-23
|
* Removed RTLIL::SigSpec::expand() methodClifford Wolf2014-07-23
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 3/3Clifford Wolf2014-07-23
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 2/3Clifford Wolf2014-07-23
|
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, ↵Clifford Wolf2014-07-22
| | | | created interim RTLIL::SigSpec::chunks_rw()
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-22
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-22
|
* Added "opt_const -keepdc"Clifford Wolf2014-07-21
|
* Added mul to mux conversion to "opt_const -fine"Clifford Wolf2014-07-21
|
* Added "opt_const -fine" and "opt_reduce -fine"Clifford Wolf2014-07-21
|
* Added opt_const support for simple identitiesClifford Wolf2014-07-21
|
* Apply opt_reduce WR_EN opts to the whole mux tree driving the WR_EN portClifford Wolf2014-07-18
|
* Improved opt_reduce handling of mem wr_en mux bitsClifford Wolf2014-07-17
|
* improved opt_reduce for $mem/$memwr WR_EN multiplexersClifford Wolf2014-07-16
|
* Fixed bug in opt_reduce (see vloghammer issue_044)Clifford Wolf2014-05-12
|
* Fixed performance problem in opt_mux with nets driven by many conflicting ↵Clifford Wolf2014-03-19
| | | | drivers
* Fixed undef handling in opt_reduceClifford Wolf2014-03-06
|
* Fixed const folding of $bu0 cellsClifford Wolf2014-02-27
|
* Fixed bug (typo) in passes/opt/opt_const.ccClifford Wolf2014-02-22
|
* Fixed handling of "keep" attribute on wires in opt_cleanClifford Wolf2014-02-16
|
* Fixed opt_const handling of double invert with non-1 output widthClifford Wolf2014-02-15
|
* Added opt -purge (frontend to opt_clean -purge)Clifford Wolf2014-02-08
|
* Only count non-trivial attributes when findinf master signal in opt_cleanClifford Wolf2014-02-08
|
* Improved detection of primary wire for a signal in opt_cleanClifford Wolf2014-02-07
|
* Added opt_const -undrivenClifford Wolf2014-02-06
|
* Fixed detection of init attribute in opt_rmdffClifford Wolf2014-02-04
|
* Improved handling of reg init in opt_share and opt_rmdffClifford Wolf2014-02-04
|
* More opt_const -mux_bool featuresClifford Wolf2014-02-02
|
* Added opt_const -mux_boolClifford Wolf2014-02-02
|
* Added support for inverter chains to opt_constClifford Wolf2014-02-02
|
* Added constant-clock case to opt_rmdffClifford Wolf2014-02-02
|
* Added $assert cellClifford Wolf2014-01-19
|
* Added support for $adff with undef data inputs to opt_rmdffClifford Wolf2014-01-17
|
* Added "opt_const -mux_undef"Clifford Wolf2014-01-14
|
* Improved $_MUX_ handling in opt_constClifford Wolf2013-12-28
|
* More conservastive $eq/$ne/$eqx/$nex opt_const codeClifford Wolf2013-12-28
|
* More $eq/$ne/$eqx/$nex fixes in opt_constClifford Wolf2013-12-27
|
* Fixed/improved opt_const $eq/$ne/$eqx/$nex handlingClifford Wolf2013-12-27
|