aboutsummaryrefslogtreecommitdiffstats
path: root/passes/hierarchy/submod.cc
Commit message (Collapse)AuthorAgeFilesLines
* 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 submodClifford Wolf2016-11-091-0/+1
|
* Added "yosys -D" featureClifford Wolf2016-04-211-3/+3
|
* Added "submod -copy"Clifford Wolf2016-01-081-13/+28
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-3/+3
|
* Added log_warning() APIClifford Wolf2014-11-091-2/+2
|
* namespace YosysClifford Wolf2014-09-271-0/+4
|
* Added module->portsClifford Wolf2014-08-141-4/+3
|
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-021-5/+5
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-311-1/+1
|
* Added module->design and cell->module, wire->module pointersClifford Wolf2014-07-311-1/+1
|
* Using log_assert() instead of assert()Clifford Wolf2014-07-281-1/+1
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-6/+6
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-3/+3
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-1/+1
|
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-17/+22
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-3/+3
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-6/+6
| | | | | | | | | 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-6/+6
|
* Added copy-constructor-like module->addCell(name, other) methodClifford Wolf2014-07-261-4/+1
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-8/+6
|
* Fixed all users of SigSpec::chunks_rw() and removed itClifford Wolf2014-07-231-4/+4
|
* 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-2/+2
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-2/+2
|
* Added call_on_selection() and call_on_module() APIClifford Wolf2014-07-201-1/+1
|
* Moved some passes to other source directoriesClifford Wolf2014-02-081-0/+350