aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
Commit message (Collapse)AuthorAgeFilesLines
...
* Added $sop cell type and "abc -sop"Clifford Wolf2016-06-172-1/+36
|
* Added missing "#define HASHLIB_H"Clifford Wolf2016-05-141-0/+1
|
* Include <cmath> in yosys.hClifford Wolf2016-05-081-0/+1
|
* Fixes for MXE buildClifford Wolf2016-05-072-8/+8
|
* Added "yosys -D ALL"Clifford Wolf2016-04-243-6/+22
|
* Added "yosys -D" featureClifford Wolf2016-04-214-9/+36
|
* Minor hashlib bugfixClifford Wolf2016-04-161-1/+1
|
* Hashlib indenting fixClifford Wolf2016-04-051-2/+2
|
* Added ScriptPass helper class for script-like passesClifford Wolf2016-03-313-3/+79
|
* Added log_dump() support for dict<> and pool<> containersClifford Wolf2016-03-311-0/+26
|
* We have 2016 for a while nowClifford Wolf2016-03-301-1/+1
|
* Added .vhd file extension supportClifford Wolf2016-03-301-0/+2
|
* Merge pull request #137 from ravenexp/masterClifford Wolf2016-03-281-0/+5
|\ | | | | Embed DATDIR make variable value into yosys binary.
| * Embed DATDIR make variable value into yosys binary.Sergey Kvachonok2016-03-261-0/+5
| | | | | | | | Use it as the last resort in the share/ directory location search.
* | fix a cut-n-paste error in the -h helpSebastian Kuzminsky2016-03-261-2/+2
|/
* Use easyer-to-read unoptimized ceil_log2()Clifford Wolf2016-02-151-18/+5
| | | | | see here for details on the optimized version: http://svn.clifford.at/handicraft/2016/esbmc/ceilog2.c
* Fixed more visual studio warningsClifford Wolf2016-02-141-5/+3
|
* Fixed some visual studio warningsClifford Wolf2016-02-133-4/+4
|
* Added "int ceil_log2(int)" functionClifford Wolf2016-02-132-0/+26
|
* Added addBufGate module methodClifford Wolf2016-02-022-0/+3
|
* SigMap performance improvementClifford Wolf2016-02-011-1/+7
|
* hashlib mfp<> performance improvementsClifford Wolf2016-02-011-2/+7
|
* Added reserve() method to haslib classes andClifford Wolf2016-01-311-2/+6
| | | | calculate hashtable size based on entries capacity, not size
* 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
|