aboutsummaryrefslogtreecommitdiffstats
path: root/passes/fsm/fsm_extract.cc
Commit message (Collapse)AuthorAgeFilesLines
* fsm_extract: Initialize celltypes with full design.Marcin Kościelnicki2020-03-191-5/+1
| | | | Fixes #1781.
* RTLIL::S{0,1} -> State::S{0,1}Eddie Hung2019-08-071-14/+14
|
* Fix typographical and grammatical errors and inconsistencies.whitequark2019-01-021-2/+2
| | | | | | | | | | | | The initial list of hits was generated with the codespell command below, and each hit was evaluated and fixed manually while taking context into consideration. DIRS="kernel/ frontends/ backends/ passes/ techlibs/" DIRS="${DIRS} libs/ezsat/ libs/subcircuit" codespell $DIRS -S *.o -L upto,iff,thru,synopsys,uint More hits were found by looking through comments and strings manually.
* 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 bugfix in FSM reset state detectionClifford Wolf2016-07-121-2/+5
|
* Added "yosys -D" featureClifford Wolf2016-04-211-1/+1
|
* Bugfix in fsm_extractClifford Wolf2015-07-031-3/+16
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-4/+4
|
* Added $eq/$neq -> $logic_not/$reduce_bool optimizationClifford Wolf2015-04-291-1/+3
|
* Renamed extend() to extend_xx(), changed most users to extend_u0()Clifford Wolf2014-12-241-1/+1
|
* Renamed SIZE() to GetSize() because of name collision on Win32Clifford Wolf2014-10-101-8/+8
|
* namespace YosysClifford Wolf2014-09-271-0/+4
|
* Using $pmux info in fsm_extract to optimize transition ctrl_in patternsClifford Wolf2014-08-301-0/+10
|
* Improved handling of $pmux cells in fsm_extractClifford Wolf2014-08-301-20/+75
|
* RIP $safe_pmuxClifford Wolf2014-08-141-1/+1
|
* Another fsm_extract bugfixClifford Wolf2014-08-081-0/+4
|
* Fixed fsm_extract for wreduced muxesClifford Wolf2014-08-081-8/+25
|
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-021-2/+2
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-311-17/+17
|
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-311-2/+2
|
* Using log_assert() instead of assert()Clifford Wolf2014-07-281-1/+1
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-1/+1
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-5/+5
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-3/+3
|
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-4/+1
|
* Added RTLIL::Cell::has(portname)Clifford Wolf2014-07-261-1/+1
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-2/+2
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-19/+19
| | | | | | | | | 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-19/+19
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-4/+1
|
* SigSpec refactoring: cleanup of old SigSpec usage in fsm_* commandsClifford Wolf2014-07-221-22/+9
|
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, ↵Clifford Wolf2014-07-221-2/+2
| | | | created interim RTLIL::SigSpec::chunks_rw()
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-19/+19
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-19/+19
|
* Fixes in fsm detect/extract for better detection of non-fsm circuitsClifford Wolf2013-12-061-3/+3
|
* Replaced RTLIL::Const::str with generic decoder methodClifford Wolf2013-12-041-1/+1
|
* Some fixes to improve determinismClifford Wolf2013-08-091-24/+27
|
* Sort ctrl signals in fsm_extractClifford Wolf2013-08-081-0/+3
|
* Renamed opt_rmunused to opt_cleanClifford Wolf2013-06-051-1/+1
|
* Added [[CITE]] tags to abc and fsm_extract passesClifford Wolf2013-03-151-1/+6
|
* Added help messages for fsm_* passesClifford Wolf2013-03-011-2/+22
|
* Copy attributes from state signal to fsm cellClifford Wolf2013-01-051-0/+1
|
* initial importClifford Wolf2013-01-051-0/+359