aboutsummaryrefslogtreecommitdiffstats
path: root/passes/opt/opt_muxtree.cc
Commit message (Collapse)AuthorAgeFilesLines
* Use ID::keep more liberally tooEddie Hung2019-08-151-1/+1
|
* Use more ID::{A,B,Y,blackbox,whitebox}Eddie Hung2019-08-151-12/+12
|
* Use ID() macro in all of passes/opt/Clifford Wolf2019-08-111-21/+21
| | | | | | | | | | This was obtained by running the following SED command in passes/opt/ and then using "meld foo.cc foo.cc.orig" to manually fix all resulting compiler errors. sed -i.orig -r 's/"\\\\([a-zA-Z0-9_]+)"/ID(\1)/g; s/"(\$[a-zA-Z0-9_]+)"/ID(\1)/g;' *.cc Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Make liberal use of IdString.in()Eddie Hung2019-08-061-1/+1
|
* Fix handling of glob_abort_cnt in opt_muxtree, fixes #1002Clifford Wolf2019-05-121-3/+11
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add log_debug() frameworkClifford Wolf2019-04-221-3/+3
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add iteration limit to "opt_muxtree"Clifford Wolf2018-11-201-1/+17
| | | | 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)
* Added "yosys -D" featureClifford Wolf2016-04-211-1/+1
|
* Fixed typo in log messageAndrew Zonenberg2016-03-301-1/+1
|
* Bugfixes in handling of "keep" attribute on wiresClifford Wolf2015-10-151-1/+1
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-3/+3
|
* Using design->selected_modules() in opt_*Clifford Wolf2015-02-031-8/+3
|
* Fixed opt_muxtree performance bugClifford Wolf2015-01-211-11/+28
|
* Improvements in opt_muxtreeClifford Wolf2015-01-181-35/+50
|
* More opt_muxtree cleanupsClifford Wolf2015-01-181-64/+44
|
* Various cleanups and improvements in opt_muxtreeClifford Wolf2015-01-181-87/+71
|
* Fixed a bug in opt_muxtree for "mux forests"Clifford Wolf2015-01-171-4/+18
|
* Improved opt_muxtreeClifford Wolf2015-01-171-4/+38
|
* Do not the 'z' modifier in format string (another win32 fix)Clifford Wolf2014-10-111-2/+2
|
* namespace YosysClifford Wolf2014-09-271-0/+4
|
* Added design->scratchpadClifford Wolf2014-08-301-2/+2
|
* RIP $safe_pmuxClifford Wolf2014-08-141-1/+1
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-311-11/+11
|
* Using log_assert() instead of assert()Clifford Wolf2014-07-281-1/+0
|
* Using new obj iterator API in a few placesClifford Wolf2014-07-271-12/+11
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-1/+1
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-1/+1
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-1/+1
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-13/+13
| | | | | | | | | 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-13/+13
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-4/+2
|
* Removed RTLIL::SigSpec::expand() methodClifford Wolf2014-07-231-5/+7
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-7/+7
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-7/+7
|
* Fixed performance problem in opt_mux with nets driven by many conflicting ↵Clifford Wolf2014-03-191-1/+6
| | | | drivers
* Cleanups and bugfixes in response to new internal cell checkerClifford Wolf2013-11-111-2/+2
|
* fixed typosJohann Glaser2013-03-181-1/+1
|
* Minor hotfixes (mostly gcc build fixes)Clifford Wolf2013-03-031-0/+2
|
* Added help messages for opt_* passesClifford Wolf2013-03-011-2/+20
|
* initial importClifford Wolf2013-01-051-0/+417