aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.cc
Commit message (Collapse)AuthorAgeFilesLines
* Add $_ANDNOT_ and $_ORNOT_ gatesClifford Wolf2017-05-171-26/+30
|
* Add $live and $fair cell types, add support for s_eventually keywordClifford Wolf2017-02-251-1/+17
|
* Add $cover cell type and SVA cover() supportClifford Wolf2017-02-041-1/+9
|
* Fix RTLIL::Memory::start_offset initializationClifford Wolf2017-01-251-0/+1
|
* Bugfix in RTLIL::SigSpec::remove2()Clifford Wolf2016-12-311-3/+4
|
* Remember global declarations and defines accross read_verilog callsClifford Wolf2016-11-151-0/+2
|
* Added $anyseq cell typeClifford Wolf2016-10-141-1/+10
|
* Added $ff and $_FF_ cell typesClifford Wolf2016-10-121-0/+25
|
* Improvements in assertpmuxClifford Wolf2016-09-071-0/+16
|
* Removed $aconst cell typeClifford Wolf2016-08-301-1/+1
|
* Removed $predict againClifford Wolf2016-08-281-9/+1
|
* Fixed handling of transparent bram rd ports on ROMsClifford Wolf2016-08-271-0/+1
|
* Added $anyconst and $aconstClifford Wolf2016-07-271-0/+6
|
* Added $initstate cell type and vlog functionClifford Wolf2016-07-211-0/+6
|
* After reading the SV spec, using non-standard predict() instead of expect()Clifford Wolf2016-07-211-2/+2
|
* Added basic support for $expect cellsClifford Wolf2016-07-131-8/+17
|
* A few modifications after pull request commentsRuben Undheim2016-06-181-1/+1
| | | | | - Renamed Design::packages to Design::verilog_packages - No need to include ast.h in rtlil.h
* Added support for SystemVerilog packages with localparam definitionsRuben Undheim2016-06-181-0/+2
|
* Improved support for $sop cellsClifford Wolf2016-06-171-1/+1
|
* Added $sop cell type and "abc -sop"Clifford Wolf2016-06-171-0/+9
|
* Added addBufGate module methodClifford Wolf2016-02-021-0/+1
|
* rtlil: Improve performance of SigSpec::extract(SigSpec, SigSpec*)Rick Altherr2016-01-311-2/+31
| | | | | | | | Converting to a pool<SigBit> is fairly expensive due to inserts somewhat frequently causing rehashing. Instead, walk through the pattern SigSpec directly on a chunk-by-chunk basis and apply it to this SigSpec's individual bits. Using chunks for the pattern minimizes the number of iterations in the outer loop.
* rtlil: speed up SigSpec::sort_and_unify()Rick Altherr2016-01-311-1/+11
| | | | | | | | | | std::set<> internally is often a red-black tree which is fairly expensive to create but fast to lookup. In the case of sort_and_unify(), a set<> is constructed as a temporary object to attempt to speed up lookups. Being a temporarily, however, the cost of creation far outweights the lookup improvement and is a net performance loss. Instead, sort the vector<> that already exists and then apply std::unique().
* rtlil: improve performance of SigSpec::replace(SigSpec, SigSpec, SigSpec*)Rick Altherr2016-01-311-6/+14
|
* rtlil: improve performance of SigSpec::remove2(SigSpec, SigSpec*)Rick Altherr2016-01-311-2/+29
|
* rtlil: rewrite remove2() to avoid copyingRick Altherr2016-01-301-45/+18
|
* rtlil: duplicate remove2() for std::set<>Rick Altherr2016-01-291-0/+39
|
* Import more std:: stuff into Yosys namespaceClifford Wolf2015-10-251-14/+14
|
* renamed SigSpec::to_single_sigbit() to SigSpec::as_bit(), added is_bit()Clifford Wolf2015-10-241-12/+11
|
* Fixed driver conflict handling (various cmds)Clifford Wolf2015-10-241-3/+12
|
* Fixed handling of driver-driver conflicts in wreduceClifford Wolf2015-10-241-0/+4
|
* Added read-enable to memory modelClifford Wolf2015-09-251-0/+2
|
* Cosmetic fix in Module::addLut()Clifford Wolf2015-09-181-4/+4
|
* Added $tribuf and $_TBUF_ cell typesClifford Wolf2015-08-161-0/+20
|
* Fixed handling of [a-fxz?] in decimal constantsClifford Wolf2015-08-111-0/+4
|
* Added WORDS parameter to $meminitClifford Wolf2015-07-311-1/+1
|
* Fixed trailing whitespacesClifford Wolf2015-07-021-5/+5
|
* Added design->rename(module, new_name)Clifford Wolf2015-06-301-0/+7
|
* Added "rename -top new_name"Clifford Wolf2015-06-171-0/+15
|
* Fixed cstr_buf for std::string with small string optimizationClifford Wolf2015-06-111-1/+1
|
* Fixed "avail_parameters" handling in module clone/copyClifford Wolf2015-06-081-0/+2
|
* Added $eq/$neq -> $logic_not/$reduce_bool optimizationClifford Wolf2015-04-291-0/+15
|
* Improved attributes API and handling of "src" attributesClifford Wolf2015-04-241-0/+40
|
* Avoid parameter values with size 0 ($mem cells)Clifford Wolf2015-04-051-5/+5
|
* Added $_MUX4_, $_MUX8_, and $_MUX16_ cell typesClifford Wolf2015-04-051-0/+4
|
* Added $assume cell typeClifford Wolf2015-02-261-0/+7
|
* Added $meminit support to "memory" commandClifford Wolf2015-02-141-0/+1
|
* Added $meminit cell typeClifford Wolf2015-02-141-0/+9
|
* Added SigSpec::has_const()Clifford Wolf2015-02-081-0/+12
|
* Added cell->known(), cell->input(portname), cell->output(portname)Clifford Wolf2015-02-071-0/+34
|