aboutsummaryrefslogtreecommitdiffstats
path: root/passes/opt/opt_demorgan.cc
Commit message (Collapse)AuthorAgeFilesLines
* Use more ID::{A,B,Y,blackbox,whitebox}Eddie Hung2019-08-151-7/+7
|
* Use ID() macro in all of passes/opt/Clifford Wolf2019-08-111-12/+12
| | | | | | | | | | 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>
* 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)
* Minor changes to opt_demorgan requested during code reviewAndrew Zonenberg2017-09-141-16/+16
|
* Initial version of opt_demorgan is functioning for AND/OR gates. Not the ↵Andrew Zonenberg2017-09-121-0/+202
prettiest results for bus inputs, but this can be improved