Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use ID::keep more liberally too | Eddie Hung | 2019-08-15 | 1 | -1/+1 |
| | |||||
* | Use more ID::{A,B,Y,blackbox,whitebox} | Eddie Hung | 2019-08-15 | 1 | -12/+12 |
| | |||||
* | Use ID() macro in all of passes/opt/ | Clifford Wolf | 2019-08-11 | 1 | -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 Hung | 2019-08-06 | 1 | -1/+1 |
| | |||||
* | Fix handling of glob_abort_cnt in opt_muxtree, fixes #1002 | Clifford Wolf | 2019-05-12 | 1 | -3/+11 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Add log_debug() framework | Clifford Wolf | 2019-04-22 | 1 | -3/+3 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Add iteration limit to "opt_muxtree" | Clifford Wolf | 2018-11-20 | 1 | -1/+17 |
| | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at> | ||||
* | Consistent use of 'override' for virtual methods in derived classes. | Henner Zeller | 2018-07-20 | 1 | -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" feature | Clifford Wolf | 2016-04-21 | 1 | -1/+1 |
| | |||||
* | Fixed typo in log message | Andrew Zonenberg | 2016-03-30 | 1 | -1/+1 |
| | |||||
* | Bugfixes in handling of "keep" attribute on wires | Clifford Wolf | 2015-10-15 | 1 | -1/+1 |
| | |||||
* | Fixed trailing whitespaces | Clifford Wolf | 2015-07-02 | 1 | -3/+3 |
| | |||||
* | Using design->selected_modules() in opt_* | Clifford Wolf | 2015-02-03 | 1 | -8/+3 |
| | |||||
* | Fixed opt_muxtree performance bug | Clifford Wolf | 2015-01-21 | 1 | -11/+28 |
| | |||||
* | Improvements in opt_muxtree | Clifford Wolf | 2015-01-18 | 1 | -35/+50 |
| | |||||
* | More opt_muxtree cleanups | Clifford Wolf | 2015-01-18 | 1 | -64/+44 |
| | |||||
* | Various cleanups and improvements in opt_muxtree | Clifford Wolf | 2015-01-18 | 1 | -87/+71 |
| | |||||
* | Fixed a bug in opt_muxtree for "mux forests" | Clifford Wolf | 2015-01-17 | 1 | -4/+18 |
| | |||||
* | Improved opt_muxtree | Clifford Wolf | 2015-01-17 | 1 | -4/+38 |
| | |||||
* | Do not the 'z' modifier in format string (another win32 fix) | Clifford Wolf | 2014-10-11 | 1 | -2/+2 |
| | |||||
* | namespace Yosys | Clifford Wolf | 2014-09-27 | 1 | -0/+4 |
| | |||||
* | Added design->scratchpad | Clifford Wolf | 2014-08-30 | 1 | -2/+2 |
| | |||||
* | RIP $safe_pmux | Clifford Wolf | 2014-08-14 | 1 | -1/+1 |
| | |||||
* | Renamed port access function on RTLIL::Cell, added param access functions | Clifford Wolf | 2014-07-31 | 1 | -11/+11 |
| | |||||
* | Using log_assert() instead of assert() | Clifford Wolf | 2014-07-28 | 1 | -1/+0 |
| | |||||
* | Using new obj iterator API in a few places | Clifford Wolf | 2014-07-27 | 1 | -12/+11 |
| | |||||
* | Refactoring: Renamed RTLIL::Design::modules to modules_ | Clifford Wolf | 2014-07-27 | 1 | -1/+1 |
| | |||||
* | Refactoring: Renamed RTLIL::Module::cells to cells_ | Clifford Wolf | 2014-07-27 | 1 | -1/+1 |
| | |||||
* | Refactoring: Renamed RTLIL::Module::wires to wires_ | Clifford Wolf | 2014-07-27 | 1 | -1/+1 |
| | |||||
* | Changed users of cell->connections_ to the new API (sed command) | Clifford Wolf | 2014-07-26 | 1 | -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 Wolf | 2014-07-26 | 1 | -13/+13 |
| | |||||
* | Use only module->addCell() and module->remove() to create and delete cells | Clifford Wolf | 2014-07-25 | 1 | -4/+2 |
| | |||||
* | Removed RTLIL::SigSpec::expand() method | Clifford Wolf | 2014-07-23 | 1 | -5/+7 |
| | |||||
* | SigSpec refactoring: using the accessor functions everywhere | Clifford Wolf | 2014-07-22 | 1 | -7/+7 |
| | |||||
* | SigSpec refactoring: renamed chunks and width to __chunks and __width | Clifford Wolf | 2014-07-22 | 1 | -7/+7 |
| | |||||
* | Fixed performance problem in opt_mux with nets driven by many conflicting ↵ | Clifford Wolf | 2014-03-19 | 1 | -1/+6 |
| | | | | drivers | ||||
* | Cleanups and bugfixes in response to new internal cell checker | Clifford Wolf | 2013-11-11 | 1 | -2/+2 |
| | |||||
* | fixed typos | Johann Glaser | 2013-03-18 | 1 | -1/+1 |
| | |||||
* | Minor hotfixes (mostly gcc build fixes) | Clifford Wolf | 2013-03-03 | 1 | -0/+2 |
| | |||||
* | Added help messages for opt_* passes | Clifford Wolf | 2013-03-01 | 1 | -2/+20 |
| | |||||
* | initial import | Clifford Wolf | 2013-01-05 | 1 | -0/+417 |