aboutsummaryrefslogtreecommitdiffstats
path: root/passes/fsm
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Added module->uniquify()Clifford Wolf2014-08-161-5/+1
|
* More idstring sort_by_* helpers and fixed tpl ordering in techmapClifford Wolf2014-08-151-4/+4
|
* RIP $safe_pmuxClifford Wolf2014-08-143-3/+3
|
* Some improvements in FSM mapping and recodingClifford Wolf2014-08-142-8/+16
|
* Fixed FSM mapping for multiple reset-like signalsClifford Wolf2014-08-101-1/+21
|
* Some improvements in fsm_opt and fsm_map for FSM with unreachable statesClifford Wolf2014-08-092-50/+101
|
* Another fsm_extract bugfixClifford Wolf2014-08-081-0/+4
|
* Fixed "fsm -export"Clifford Wolf2014-08-082-6/+5
|
* Fixed fsm_extract for wreduced muxesClifford Wolf2014-08-081-8/+25
|
* No implicit conversion from IdString to anything elseClifford Wolf2014-08-021-1/+1
|
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-023-4/+4
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-316-84/+84
|
* 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-282-4/+4
|
* Added log_cmd_error_expectionClifford Wolf2014-07-271-4/+1
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-278-8/+8
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-278-13/+13
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-272-5/+5
|
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-262-19/+6
|
* Added RTLIL::Cell::has(portname)Clifford Wolf2014-07-263-10/+10
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-263-9/+17
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-266-94/+94
| | | | | | | | | 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-266-94/+94
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-253-60/+19
|
* Various small fixes (from gcc compiler warnings)Clifford Wolf2014-07-231-4/+4
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-5/+0
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 3/3Clifford Wolf2014-07-231-8/+8
|
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 2/3Clifford Wolf2014-07-231-8/+8
|
* SigSpec refactoring: cleanup of old SigSpec usage in fsm_* commandsClifford Wolf2014-07-223-38/+19
|
* fixed memory leak in fsm_optClifford Wolf2014-07-221-1/+3
|
* 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-226-58/+58
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-226-58/+58
|
* Merged a few fixes for non-posix systems from github.com/Siesh1oo/yosysClifford Wolf2014-03-111-1/+2
| | | | (see https://github.com/cliffordwolf/yosys/pull/28)
* Fixes in fsm detect/extract for better detection of non-fsm circuitsClifford Wolf2013-12-062-4/+4
|
* Replaced RTLIL::Const::str with generic decoder methodClifford Wolf2013-12-046-12/+12
|
* Added detection for endless recursion in fsm_detect passClifford Wolf2013-10-301-4/+15
|
* Some fixes to improve determinismClifford Wolf2013-08-092-28/+31
|
* Sort ctrl signals in fsm_extractClifford Wolf2013-08-081-0/+3
|
* Renamed opt_rmunused to opt_cleanClifford Wolf2013-06-053-7/+7
|
* Added -nodetect option to fsm passClifford Wolf2013-05-241-2/+8
|
* Improved FSM one-hot encoding, added binary encodingClifford Wolf2013-05-243-44/+85
|
* fsm_export: optionally use binary state encoding as state names instead ofJohann Glaser2013-04-051-6/+23
| | | | s0, s1, ...
* fsm_export: specify KISS filename on command lineJohann Glaser2013-04-051-5/+20
|
* Improved method for finding fsm_expand candidatesClifford Wolf2013-03-251-5/+7
|
* Changed fsm_expand to merge multiplexers more aggressivelyClifford Wolf2013-03-241-1/+4
|
* fixed typosJohann Glaser2013-03-182-4/+4
|
* Added [[CITE]] tags to abc and fsm_extract passesClifford Wolf2013-03-151-1/+6
|