aboutsummaryrefslogtreecommitdiffstats
path: root/passes/proc/proc_dff.cc
Commit message (Collapse)AuthorAgeFilesLines
* Fixes for some of clang scan-build detected issuesMiodrag Milanovic2023-01-171-1/+1
|
* proc_dff: Emit $aldff.Marcelina Kościelnicka2021-10-271-32/+7
|
* Fixing old e-mail addresses and deadnamesClaire Xenia Wolf2021-06-081-1/+1
| | | | | | | | s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi; s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi; s/((David)\s+)+Shah\s+<(dave|david)@(symbioticeda.com|yosyshq.com|ds0.me)>/David Shah <dave@ds0.me>/gi; s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi; s,https?://www.clifford.at/yosys/,http://yosyshq.net/yosys/,g;
* proc_dff: Fix emitted FF when a register is not assigned in async resetMarcelina Kościelnicka2021-03-081-0/+4
| | | | Fixes #2619.
* Use C++11 final/override keywords.whitequark2020-06-181-2/+2
|
* kernel: big fat patch to use more ID::*, otherwise ID(*)Eddie Hung2020-04-021-63/+63
|
* kernel: use more ID::*Eddie Hung2020-04-021-30/+30
|
* 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 warnings for driver-driver conflicts between FFs (and other cells) and ↵Clifford Wolf2017-12-121-2/+3
| | | | constants
* Added $global_clock verilog syntax support for creating $ff cellsClifford Wolf2016-10-141-7/+19
|
* Added "yosys -D" featureClifford Wolf2016-04-211-1/+1
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-3/+3
|
* Added log_warning() APIClifford Wolf2014-11-091-2/+2
|
* namespace YosysClifford Wolf2014-09-271-5/+9
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-311-44/+44
|
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-311-3/+3
|
* Using log_assert() instead of assert()Clifford Wolf2014-07-281-2/+1
|
* Using new obj iterator API in a few placesClifford Wolf2014-07-271-6/+6
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-1/+1
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-4/+4
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-45/+45
| | | | | | | | | 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-45/+45
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-52/+13
|
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-241-1/+1
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-4/+0
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-41/+41
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-41/+41
|
* Replaced depricated NEW_WIRE macro with module->addWire() callsClifford Wolf2014-07-211-10/+10
|
* Do not create $dffsr cells with no-op resets in proc_dffClifford Wolf2014-06-191-0/+5
|
* Added support for complex set-reset flip-flops in proc_dffClifford Wolf2013-10-241-4/+115
|
* Improved handling of dff with async resetsClifford Wolf2013-10-211-5/+60
|
* Added dffsr support to proc_dff passClifford Wolf2013-10-181-7/+72
|
* fixed typosJohann Glaser2013-03-181-2/+2
|
* Added help messages to proc_* passesClifford Wolf2013-03-011-6/+18
|
* initial importClifford Wolf2013-01-051-0/+178