aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds/delete.cc
Commit message (Collapse)AuthorAgeFilesLines
* rtlil: Make Process handling more uniform with Cell and Wire.Marcelina Kościelnicka2021-07-121-6/+4
| | | | | | - add a backlink to module from Process - make constructor and destructor protected, expose Module functions to add and remove processes
* Fixing old e-mail addresses and deadnamesClaire Xenia Wolf2021-06-081-1/+1
| | | | | | | | s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi; s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi; s/((David)\s+)+Shah\s+<(dave|david)@(symbioticeda.com|yosyshq.com|ds0.me)>/David Shah <dave@ds0.me>/gi; s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi; s,https?://www.clifford.at/yosys/,http://yosyshq.net/yosys/,g;
* kernel/rtlil: Extract some helpers for checking memory cell types.Marcelina Kościelnicka2021-05-221-1/+1
| | | | | | There will soon be more (versioned) memory cells, so handle passes that only care if a cell is memory-related by a simple helper call instead of a hardcoded list.
* Use C++11 final/override keywords.whitequark2020-06-181-2/+2
|
* Clean up `passes/cmds/delete.cc`.Alberto Gonzalez2020-04-061-24/+19
|
* kernel: big fat patch to use more ID::*, otherwise ID(*)Eddie Hung2020-04-021-2/+2
|
* More use of IdString::in()Eddie Hung2019-08-151-1/+1
|
* 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)
* Fixed trailing whitespacesClifford Wolf2015-07-021-3/+3
|
* Renamed hashmap.h to hashlib.h, some related improvementsClifford Wolf2014-12-281-2/+2
|
* More hashtable finetuningClifford Wolf2014-12-271-2/+2
|
* Replaced std::unordered_set (nodict) with Yosys::poolClifford Wolf2014-12-261-4/+4
|
* Added Yosys::{dict,nodict,vector} container typesClifford Wolf2014-12-261-4/+4
|
* namespace YosysClifford Wolf2014-09-271-3/+5
|
* Preparations for RTLIL::IdString redesign: cleanup of existing codeClifford Wolf2014-08-021-3/+3
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-3/+3
|
* 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 a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-30/+5
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-5/+4
|
* Fixed all users of SigSpec::chunks_rw() and removed itClifford Wolf2014-07-231-2/+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-1/+1
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-1/+1
|
* Removed deprecated module->new_wire()Clifford Wolf2014-07-211-1/+1
|
* Added delete {-input|-output|-port}Clifford Wolf2014-02-091-5/+36
|
* Bugfix in delete commandClifford Wolf2014-02-091-1/+3
|
* Added delete commandClifford Wolf2014-02-021-0/+134