aboutsummaryrefslogtreecommitdiffstats
path: root/passes/hierarchy/hierarchy.cc
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-2/+2
|
* fixed cell array handling of positional argumentsClifford Wolf2014-06-071-2/+11
|
* Add support for cell arraysClifford Wolf2014-06-071-0/+34
|
* Implemented read_verilog -deferClifford Wolf2014-02-131-7/+19
|
* Added hierarchy -purge_lib optionClifford Wolf2014-02-041-3/+14
|
* Include unistd.h in passes/hierarchy/hierarchy.cc (required for access(3))Martin Schmölzer2014-01-141-0/+1
| | | | | | This fixes compilation errors on Arch Linux. Signed-off-by: Martin Schmölzer <martin.schmoelzer@student.tuwien.ac.at>
* Added hierarchy -libdir optionClifford Wolf2014-01-141-4/+48
|
* Replaced signed_parameters API with CONST_FLAG_SIGNEDClifford Wolf2013-12-041-1/+1
|
* Remove auto_wire framework (smarter than the verilog standard)Clifford Wolf2013-11-241-60/+0
|
* Implemented correct handling of signed module parametersClifford Wolf2013-11-241-1/+1
|
* Added "top" attribute to mark top module in hierarchyClifford Wolf2013-11-241-0/+17
|
* Renamed "placeholder" to "blackbox"Clifford Wolf2013-11-221-3/+3
|
* Added resolution of positional arguments to hierarchy passClifford Wolf2013-11-031-0/+57
|
* Fixed handling of boolean attributes (passes)Clifford Wolf2013-10-241-2/+2
|
* Improved log messages generated by hierarchy passClifford Wolf2013-05-261-5/+17
|
* Fixed hierarchy pass for hierarchies of parametric modulesClifford Wolf2013-04-261-0/+1
|
* Implemented proper handling of stub placeholder modulesClifford Wolf2013-03-281-2/+5
|
* Collect parameters in hierarchy -generate (and do nothing with them)Clifford Wolf2013-03-261-1/+8
|
* Added hierarchy -generate command for generating skeletton modulesClifford Wolf2013-03-251-1/+165
|
* Implemented general handler for selection argumentsClifford Wolf2013-03-031-1/+2
|
* Added online help for "show" and "hierarchy" commandsClifford Wolf2013-02-281-3/+25
|
* initial importClifford Wolf2013-01-051-0/+194