aboutsummaryrefslogtreecommitdiffstats
path: root/passes/sat/expose.cc
Commit message (Collapse)AuthorAgeFilesLines
* kernel: big fat patch to use more ID::*, otherwise ID(*)Eddie Hung2020-04-021-34/+34
|
* kernel: use more ID::*Eddie Hung2020-04-021-4/+4
|
* Remove unused function parameter.Alberto Gonzalez2020-03-301-2/+2
|
* Simplify iterating over selected modules or cells.Alberto Gonzalez2020-03-301-16/+4
| | | | Co-Authored-By: N. Engelhardt <nak@symbioticeda.com>
* Clean up more in `passes/sat/expose.cc`.Alberto Gonzalez2020-03-301-64/+59
| | | | Co-Authored-By: N. Engelhardt <nak@symbioticeda.com>
* Clean up pseudo-private member usage in `passes/sat/expose.cc`.Alberto Gonzalez2020-03-281-11/+9
|
* More use of IdString::in()Eddie Hung2019-08-151-1/+1
|
* substr() -> compare()Eddie Hung2019-08-071-1/+1
|
* Fix bug in "expose -input"Clifford Wolf2019-05-061-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Consistent use of 'override' for virtual methods in derived classes.Henner Zeller2018-07-201-2/+2
| | | | | | | | | o Not all derived methods were marked 'override', but it is a great feature of C++11 that we should make use of. o While at it: touched header files got a -*- c++ -*- for emacs to provide support for that language. o use YS_OVERRIDE for all override keywords (though we should probably use the plain keyword going forward now that C++11 is established)
* Add "expose -input"Clifford Wolf2018-03-121-8/+43
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Added "yosys -D" featureClifford Wolf2016-04-211-1/+1
|
* renamed SigSpec::to_single_sigbit() to SigSpec::as_bit(), added is_bit()Clifford Wolf2015-10-241-10/+10
|
* Spell check (by Larry Doolittle)Clifford Wolf2015-08-141-2/+2
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-3/+3
|
* Renamed extend() to extend_xx(), changed most users to extend_u0()Clifford Wolf2014-12-241-1/+1
|
* namespace YosysClifford Wolf2014-09-271-7/+11
|
* 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