summaryrefslogtreecommitdiff
path: root/passes/fsm/fsm_opt.cc
Commit message (Collapse)AuthorAge
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-31
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-27
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-27
|
* 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
|
* SigSpec refactoring: cleanup of old SigSpec usage in fsm_* commandsClifford Wolf2014-07-22
|
* fixed memory leak in fsm_optClifford Wolf2014-07-22
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-22
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-22
|
* Replaced RTLIL::Const::str with generic decoder methodClifford Wolf2013-12-04
|
* Renamed opt_rmunused to opt_cleanClifford Wolf2013-06-05
|
* Added help messages for fsm_* passesClifford Wolf2013-03-01
|
* initial importClifford Wolf2013-01-05