aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Meaningless coding style changeClifford Wolf2016-01-311-1/+0
|
* rtlil: rewrite remove2() to avoid copyingRick Altherr2016-01-301-45/+18
|
* rtlil: duplicate remove2() for std::set<>Rick Altherr2016-01-292-0/+41
|
* rtlil: change IdString comparison operators to take references instead of copiesRick Altherr2016-01-291-3/+3
|
* Added default values for hashlib at() methodsClifford Wolf2015-12-021-0/+18
|
* Re-added SigMap::allbits()Clifford Wolf2015-11-302-0/+14
|
* Removed dangling ';' in rtlil.hClifford Wolf2015-11-261-2/+2
|
* Improved SigMap performanceClifford Wolf2015-10-282-5/+13
|
* Improvements in new SigMapClifford Wolf2015-10-281-5/+16
|
* Removed old SigMap implementationClifford Wolf2015-10-271-224/+0
|
* Added hashlib::mfp and new SigMapClifford Wolf2015-10-273-0/+185
|
* Major refactoring of equiv_structClifford Wolf2015-10-251-0/+5
|
* Import more std:: stuff into Yosys namespaceClifford Wolf2015-10-257-29/+36
|
* Added "equiv_add -cell"Clifford Wolf2015-10-251-2/+2
|
* renamed SigSpec::to_single_sigbit() to SigSpec::as_bit(), added is_bit()Clifford Wolf2015-10-242-13/+13
|
* Fixed driver conflict handling (various cmds)Clifford Wolf2015-10-241-3/+12
|
* equiv_purge bugfix, using SigChunk in Yosys namespaceClifford Wolf2015-10-241-0/+2
|
* Fixed handling of driver-driver conflicts in wreduceClifford Wolf2015-10-242-1/+26
|
* Added support for ":" as comment symbol after ;-parsingClifford Wolf2015-10-231-1/+1
|
* Progress on cell help messagesClifford Wolf2015-10-171-1/+1
|
* Added first help messages for cell typesClifford Wolf2015-10-141-6/+43
|
* Added read-enable to memory modelClifford Wolf2015-09-252-3/+5
|
* Cosmetic fix in Module::addLut()Clifford Wolf2015-09-182-5/+5
|
* Removed unnecessary cast.Andrei Errapart2015-09-011-2/+2
|
* Microsoft Visual C++ fixes in hashlib; template specializations on int32_t ↵Andrei Errapart2015-09-011-6/+8
| | | | and int64_t.
* Microsoft Visual C++ fix for log.h.Andrei Errapart2015-09-011-0/+5
|
* Added SigMap::allbits()Clifford Wolf2015-08-311-0/+8
|
* Added $tribuf and $_TBUF_ cell typesClifford Wolf2015-08-163-0/+24
|
* Spell check (by Larry Doolittle)Clifford Wolf2015-08-144-4/+4
|
* Fixed hashlib for 64 bit int keysClifford Wolf2015-08-121-3/+9
|
* 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-0222-59/+59
|
* Added design->rename(module, new_name)Clifford Wolf2015-06-302-0/+8
|
* Added "rename -top new_name"Clifford Wolf2015-06-172-0/+16
|
* Added "write_smv" skeletonClifford Wolf2015-06-151-2/+4
|
* Fixed cstr_buf for std::string with small string optimizationClifford Wolf2015-06-113-2/+13
|
* Improvements in cellaigs.cc and "json -aig"Clifford Wolf2015-06-111-4/+152
|
* AigMaker refactoringClifford Wolf2015-06-102-76/+151
|
* Added "json -aig"Clifford Wolf2015-06-102-0/+13
|
* Fixed cellaigs port extendingClifford Wolf2015-06-101-1/+1
|
* Added "aig" passClifford Wolf2015-06-091-16/+142
|
* Added cellaigs APIClifford Wolf2015-06-093-1/+172
|
* Fixed "avail_parameters" handling in module clone/copyClifford Wolf2015-06-081-0/+2
|
* Added log_dump() support for IdStringsClifford Wolf2015-06-082-0/+5
|
* Added read_blif commandClifford Wolf2015-05-171-0/+2
|