aboutsummaryrefslogtreecommitdiffstats
path: root/passes/sat/expose.cc
Commit message (Collapse)AuthorAgeFilesLines
* Removed at() method from RTLIL::IdStringClifford Wolf2014-08-021-1/+1
|
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-021-25/+25
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-311-24/+24
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-6/+6
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-9/+9
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-11/+11
|
* Changed more code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-42/+13
|
* More RTLIL::Cell API usage cleanupsClifford Wolf2014-07-261-1/+1
|
* Added RTLIL::Cell::has(portname)Clifford Wolf2014-07-261-2/+2
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-3/+3
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-36/+36
| | | | | | | | | 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-36/+36
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-14/+7
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-1/+1
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-1/+1
|
* added log_header to miter and expose pass, show cell type for exposed portsJohann Glaser2014-05-281-3/+5
|
* Various improvements in expose command (added -sep and -cut)Clifford Wolf2014-02-091-36/+119
|
* Fixed handling of async reset in expose -evert-dffClifford Wolf2014-02-081-0/+1
|
* Implemented expose -evert-dffClifford Wolf2014-02-081-11/+301
|
* Added expose -dffClifford Wolf2014-02-061-1/+44
|
* Added expose commandClifford Wolf2014-02-051-0/+263