aboutsummaryrefslogtreecommitdiffstats
path: root/passes/proc/proc_arst.cc
Commit message (Collapse)AuthorAgeFilesLines
* Make liberal use of IdString.in()Eddie Hung2019-08-061-2/+2
|
* proc_prune: promote assigns to module connections when legal.whitequark2019-07-091-1/+1
| | | | | | | | | | This can pave the way for further transformations by exposing identities that were previously hidden in a process to any pass that uses SigMap. Indeed, this commit removes some ad-hoc logic from proc_init that appears to have been tailored to the output of genrtlil in favor of using `SigMap.apply()`. (This removal is not optional, as the ad-hoc logic cannot cope with the result of running proc_prune; a similar issue was fixed in proc_arst.)
* 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)
* Added "yosys -D" featureClifford Wolf2016-04-211-1/+1
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-3/+3
|
* Minor fixes in handling of "init" attributeClifford Wolf2015-04-091-0/+5
|
* Removed SigSpec::extend_xx() apiClifford Wolf2015-01-011-1/+1
|
* 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-1/+1
|
* namespace YosysClifford Wolf2014-09-271-5/+10
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-311-22/+22
|
* Using new obj iterator API in a few placesClifford Wolf2014-07-271-10/+15
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-1/+1
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-1/+1
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-2/+2
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-22/+22
| | | | | | | | | 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-22/+22
|
* Fixed all users of SigSpec::chunks_rw() and removed itClifford Wolf2014-07-231-5/+3
|
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, ↵Clifford Wolf2014-07-221-1/+1
| | | | created interim RTLIL::SigSpec::chunks_rw()
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-9/+9
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-9/+9
|
* Added workaround for vhdl-style edge triggers from vhdl2verilog to proc_arstClifford Wolf2014-02-211-2/+6
|
* Added support for non-const === and !== (for miter circuits)Clifford Wolf2013-12-271-2/+2
|
* Added "proc_arst -global_arst" featureClifford Wolf2013-11-201-5/+59
|
* Added handling of multiple async paths in proc_arstClifford Wolf2013-10-191-0/+12
|
* Added nosync attribute and some async reset related fixesClifford Wolf2013-03-251-0/+5
|
* Added help messages to proc_* passesClifford Wolf2013-03-011-6/+19
|
* initial importClifford Wolf2013-01-051-0/+191