aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds/splitnets.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)
* Added wire start_offset and upto handling to splitnets cmdClifford Wolf2016-11-231-2/+8
|
* Added "yosys -D" featureClifford Wolf2016-04-211-1/+1
|
* Fixed "splitnets -ports" for hierarchical designsClifford Wolf2015-12-221-0/+57
|
* Import more std:: stuff into Yosys namespaceClifford Wolf2015-10-251-2/+2
|
* Fixed port ordering in "splitnets" cmdClifford Wolf2015-09-011-7/+18
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-3/+3
|
* Preserve important attributes in splitnetsClifford Wolf2015-04-291-0/+13
|
* Renamed hashmap.h to hashlib.h, some related improvementsClifford Wolf2014-12-281-1/+1
|
* More hashtable finetuningClifford Wolf2014-12-271-1/+1
|
* Replaced std::unordered_set (nodict) with Yosys::poolClifford Wolf2014-12-261-1/+1
|
* Added Yosys::{dict,nodict,vector} container typesClifford Wolf2014-12-261-1/+1
|
* namespace YosysClifford Wolf2014-09-271-0/+4
|
* Corrected spelling mistakes found by lintianRuben Undheim2014-09-061-1/+1
|
* Added module->uniquify()Clifford Wolf2014-08-161-4/+1
|
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-021-1/+1
|
* 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-1/+1
|
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-20/+18
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-1/+1
| | | | | | | | | 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-1/+1
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-1/+1
|
* 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-2/+2
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-2/+2
|
* Fixed use of selection in splitnets commandClifford Wolf2014-02-161-1/+1
|
* Added log_header() to splitnetsClifford Wolf2014-02-071-0/+2
|
* Added "splitnets -driver"Clifford Wolf2014-01-031-29/+96
|
* Added -format option to splitnetsClifford Wolf2013-10-291-1/+16
|
* Added splitnets commandClifford Wolf2013-06-181-0/+108