aboutsummaryrefslogtreecommitdiffstats
path: root/passes/hierarchy/hierarchy.cc
Commit message (Collapse)AuthorAgeFilesLines
...
* Do not eagerly fix port widths on parameterized cellsClifford Wolf2017-02-121-0/+3
|
* Add $cover cell type and SVA cover() supportClifford Wolf2017-02-041-1/+1
|
* passes/hierarchy: delete some dead codeAustin Seipp2017-01-151-4/+0
| | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* Added cell port resizing to hierarchy passClifford Wolf2017-01-011-0/+56
|
* Added support for hierarchical defparamsClifford Wolf2016-11-151-1/+1
|
* Bugfix in "hierarchy -check"Clifford Wolf2016-11-021-1/+1
|
* Added avail params to ilang format, check module params in 'hierarchy -check'Clifford Wolf2016-10-221-0/+4
|
* Removed $predict againClifford Wolf2016-08-281-1/+1
|
* Fixed use-after-free dict<> usage pattern in hierarchy.ccClifford Wolf2016-08-161-1/+3
|
* After reading the SV spec, using non-standard predict() instead of expect()Clifford Wolf2016-07-211-1/+1
|
* Added basic support for $expect cellsClifford Wolf2016-07-131-1/+1
|
* Made the expansion order of hierarchy deterministicMarcus Comstedt2016-05-221-3/+3
|
* Added "yosys -D" featureClifford Wolf2016-04-211-4/+4
|
* Cleanup abstract modules at end of "hierarchy -top"Clifford Wolf2016-03-211-2/+0
|
* Import more std:: stuff into Yosys namespaceClifford Wolf2015-10-251-5/+5
|
* Spell check (by Larry Doolittle)Clifford Wolf2015-08-141-1/+1
|
* Keep modules with $assume (like $assert)Clifford Wolf2015-07-251-1/+1
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-2/+2
|
* Added "dffinit", Support for initialized Xilinx DFFClifford Wolf2015-04-041-2/+2
|
* documentation improvementsClifford Wolf2015-03-291-1/+1
|
* Added hierarchy -auto-topClifford Wolf2015-03-181-1/+33
|
* Fixed bug in "hierarchy" for parametric designsClifford Wolf2015-03-041-20/+19
|
* Cosmetic fixes in "hierarchy" for blackbox modulesClifford Wolf2015-02-151-2/+4
|
* Fixed pattern matching in "hierarchy -generate"Clifford Wolf2015-01-041-2/+2
|
* Added Yosys::{dict,nodict,vector} container typesClifford Wolf2014-12-261-2/+2
|
* Fixed off-by-one bug in "hierarchy -check" for positional module argsClifford Wolf2014-12-241-2/+2
|
* Checking existence of ports in "hierarchy -check"Clifford Wolf2014-12-191-0/+13
|
* Fixed bug in "hierarchy -top" with array of instancesClifford Wolf2014-11-271-3/+10
|
* Various win32 / vs build fixesClifford Wolf2014-10-171-2/+2
|
* Header changes so it will compile on VSWilliam Speirs2014-10-171-1/+5
|
* Do not the 'z' modifier in format string (another win32 fix)Clifford Wolf2014-10-111-1/+1
|
* Moved patmatch() to yosys.ccClifford Wolf2014-10-101-1/+0
|
* Replaced fnmatch() with patmatch()Clifford Wolf2014-10-101-5/+4
|
* set "keep" on modules with $assert cells in "hierarchy"Clifford Wolf2014-09-301-0/+30
|
* namespace YosysClifford Wolf2014-09-271-11/+13
|
* Corrected spelling mistakes found by lintianRuben Undheim2014-09-061-4/+4
|
* Added module->portsClifford Wolf2014-08-141-0/+2
|
* More bugfixes related to new RTLIL::IdStringClifford Wolf2014-08-021-1/+1
|
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-021-15/+15
|
* Added module->design and cell->module, wire->module pointersClifford Wolf2014-07-311-1/+1
|
* Allow "hierarchy -generate" for $__ cellsClifford Wolf2014-07-291-1/+3
|
* Using log_assert() instead of assert()Clifford Wolf2014-07-281-2/+2
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-30/+30
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-5/+5
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-4/+4
|
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-4/+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-5/+5
| | | | | | | | | 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-5/+5
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-2/+2
|