aboutsummaryrefslogtreecommitdiffstats
path: root/passes/memory/memory_share.cc
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-1/+1
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-2/+2
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-1/+1
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-13/+22
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-51/+51
| | | | | | | | | 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-261-51/+51
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-4/+2
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-2/+0
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 3/3Clifford Wolf2014-07-231-1/+1
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 2/3Clifford Wolf2014-07-231-1/+1
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-6/+6
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-6/+6
|
* Removed deprecated module->new_wire()Clifford Wolf2014-07-211-2/+2
|
* 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
|
* Added translation from read-feedback to en-signals in memory_shareClifford Wolf2014-07-181-10/+236
|
* Only create collision detect logic in memory_share if necessaryClifford Wolf2014-07-181-4/+47
|
* Added memory_shareClifford Wolf2014-07-181-0/+263