aboutsummaryrefslogtreecommitdiffstats
path: root/passes
Commit message (Collapse)AuthorAgeFilesLines
* Manual fixes for new cell connections APIClifford Wolf2014-07-2631-101/+147
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-2645-835/+835
| | | | | | | | | 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-2645-835/+835
|
* Added copy-constructor-like module->addCell(name, other) methodClifford Wolf2014-07-262-12/+5
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-2530-465/+171
|
* Various RTLIL::SigSpec related code cleanupsClifford Wolf2014-07-251-3/+3
|
* Fixed memory corruption in "opt_reduce" passClifford Wolf2014-07-251-5/+7
|
* Disabled cover() for non-linux buildsClifford Wolf2014-07-251-2/+5
|
* Improvements in "cover" commandClifford Wolf2014-07-251-11/+37
|
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-246-46/+40
|
* Added cover() calls to opt_constClifford Wolf2014-07-241-9/+45
|
* Added "make SMALL=1"Clifford Wolf2014-07-241-1/+4
|
* Added "make PRETTY=1"Clifford Wolf2014-07-241-6/+6
|
* Added "cover" commandClifford Wolf2014-07-243-1/+117
|
* Various small fixes (from gcc compiler warnings)Clifford Wolf2014-07-231-4/+4
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-2316-48/+6
|
* Removed RTLIL::SigSpec::expand() methodClifford Wolf2014-07-239-211/+135
|
* Fixed all users of SigSpec::chunks_rw() and removed itClifford Wolf2014-07-2310-86/+75
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 3/3Clifford Wolf2014-07-2310-24/+24
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 2/3Clifford Wolf2014-07-2310-24/+24
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 1/3Clifford Wolf2014-07-232-5/+5
|
* SigSpec refactoring: cleanup of old SigSpec usage in fsm_* commandsClifford Wolf2014-07-223-38/+19
|
* Fixed memory corruption with new SigSpec API in proc_muxClifford Wolf2014-07-221-7/+3
|
* fixed memory leak in fsm_optClifford Wolf2014-07-221-1/+3
|
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, ↵Clifford Wolf2014-07-2213-22/+17
| | | | created interim RTLIL::SigSpec::chunks_rw()
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-2245-505/+505
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-2245-505/+505
|
* Added "opt_const -keepdc"Clifford Wolf2014-07-212-15/+168
|
* Added mul to mux conversion to "opt_const -fine"Clifford Wolf2014-07-211-0/+55
|
* Added "opt_const -fine" and "opt_reduce -fine"Clifford Wolf2014-07-213-15/+144
|
* Added opt_const support for simple identitiesClifford Wolf2014-07-211-0/+69
|
* Replaced depricated NEW_WIRE macro with module->addWire() callsClifford Wolf2014-07-212-12/+12
|
* Removed deprecated module->new_wire()Clifford Wolf2014-07-218-31/+31
|
* Wider range of cell types supported in "share" passClifford Wolf2014-07-211-17/+197
|
* Use ezSAT::non_incremental() in "share" passClifford Wolf2014-07-211-0/+2
|
* Added support for resource sharing in mux control logicClifford Wolf2014-07-201-86/+155
|
* Added "select -assert-count"Clifford Wolf2014-07-201-6/+43
|
* Supercell creation for $div/$mod worked all along, fixed test benchesClifford Wolf2014-07-201-4/+0
|
* Fixed creation of shift supercells in "share" passClifford Wolf2014-07-201-4/+20
|
* Added "miter -equiv -flatten"Clifford Wolf2014-07-201-0/+14
|
* Added call_on_selection() and call_on_module() APIClifford Wolf2014-07-202-10/+2
|
* Added "share" supercell creationClifford Wolf2014-07-201-1/+115
|
* Added removing of always inactive cells to "share" passClifford Wolf2014-07-201-8/+42
|
* Progress in "share" passClifford Wolf2014-07-201-112/+185
|
* Progress in "share" passClifford Wolf2014-07-201-19/+56
|
* Started to implement real resource sharingClifford Wolf2014-07-192-0/+444
|
* Improved memory_share log messagesClifford Wolf2014-07-191-3/+3
|
* More verbose memory_share help messageClifford Wolf2014-07-191-0/+17
|
* Added SAT-based write-port sharing to memory_shareClifford Wolf2014-07-191-0/+180
|
* Fixed bug in memory_share feedback-to-en codeClifford Wolf2014-07-191-4/+12
|