aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* glift: Use worker pattern.Alberto Gonzalez2020-07-011-80/+75
|
* glift: Add support for $_NAND_ and $_NOR_ cells.Alberto Gonzalez2020-07-011-8/+11
|
* glift: Add support for $_MUX_ and $_NMUX_ cells.Alberto Gonzalez2020-07-011-1/+34
|
* glift: Add support for $_XOR_ and $_XNOR_ cells.Alberto Gonzalez2020-07-011-15/+79
|
* glift: Add initial hierarchy support.Alberto Gonzalez2020-07-011-12/+59
|
* glift: Replace `YS_OVERRIDE` with `override`.Alberto Gonzalez2020-07-011-2/+2
|
* glift: Add CODEOWNERS entry.Alberto Gonzalez2020-07-011-0/+1
|
* glift: Add `-simple-cost-model` optionAlberto Gonzalez2020-07-011-20/+45
| | | | | | | | Rather than assigning specific weights to specific versions of taint tracking logic and summing the weights of all GLIFT cells, sum the following values for each GLIFT cell: - 0 if the associated hole/$anyconst cell value is non-zero, i.e. reduced-precision taint tracking logic is chosen at this cell - 1 if the associated hole/$anyconst cell value is zero, i.e. the full-precision taint tracking logic is chosen at this cell This simplified cost modeling reduces the potential for the QBF-SAT solver to minimize taint tracking logic area but significantly simplifies the QBF-SAT problem.
* glift: Use `qbfsat -O2` instead of manually calling `abc`.Alberto Gonzalez2020-07-018-40/+8
|
* glift: Add `-instrument-more` option to add 4 more versions of taint ↵Alberto Gonzalez2020-07-011-44/+124
| | | | tracking logic. Also refactor a bit and update help text.
* glift: Change command names to better represent their functions.Alberto Gonzalez2020-07-0110-49/+49
|
* glift: Add `-create-imprecise` command, rename other commands, and re-work ↵Alberto Gonzalez2020-07-0110-40/+67
| | | | the help text.
* glift: Add examples, including a number of benchmarks used in some academic ↵Alberto Gonzalez2020-07-0118-1/+7279
| | | | works.
* glift: Add replacement scoring and area minimization option.Alberto Gonzalez2020-07-011-3/+56
|
* glift: Remove outputs by default; add `-keep-outputs` option; properly reset ↵Alberto Gonzalez2020-07-011-12/+43
| | | | internal state between calls.
* glift: Initial implementation of the `-sketchify` option.Alberto Gonzalez2020-07-011-50/+71
|
* glift: Initial implementation of GLIFT model construction.Alberto Gonzalez2020-07-011-2/+173
|
* glift: Add skeleton for `glift` command.Alberto Gonzalez2020-07-012-0/+51
|
* Merge pull request #2203 from antmicro/fix-grammarclairexen2020-07-012-4/+38
|\ | | | | Signed and macro grammar update
| * Add signed/unsigned testsKamil Rakoczy2020-06-261-0/+28
| | | | | | | | Signed-off-by: Kamil Rakoczy <krakoczy@antmicro.com>
| * Parse macro call attached semicolon as empty expressionLukasz Dalek2020-06-261-1/+1
| | | | | | | | Signed-off-by: Lukasz Dalek <ldalek@antmicro.com>
| * Fix integer signing grammarLukasz Dalek2020-06-261-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes signed/unsigned grammar in parameters as defined in SV LRM A2.2.1. Example of correct parameters: parameter integer signed i = 0; parameter integer unsigned i = 0; Example of incorrect parameters: parameter signed integer i = 0; parameter unsigned integer i = 0; Signed-off-by: Lukasz Dalek <ldalek@antmicro.com> Signed-off-by: Kamil Rakoczy <krakoczy@antmicro.com>
* | Merge pull request #2179 from splhack/static-castclairexen2020-07-0111-0/+135
|\ \ | | | | | | Support SystemVerilog Static Cast
| * | static cast: simplifyKazuki Sakamoto2020-06-191-0/+7
| | |
| * | static cast: add testsKazuki Sakamoto2020-06-195-0/+80
| | |
| * | static cast: support changing size and signednessKazuki Sakamoto2020-06-196-0/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | Support SystemVerilog Static Cast - size - signedness - (type is not supposted yet) Fix #535
* | | Merge pull request #2138 from boqwxp/qbfsat-oflagclairexen2020-07-011-16/+47
|\ \ \ | | | | | | | | qbfsat: Add `-O[012]` options to control pre-solving simplification with ABC
| * | | qbfsat: Add `-O[012]` options to control pre-solving simplification with ABC.Alberto Gonzalez2020-06-301-16/+47
| | | | | | | | | | | | | | | | | | | | | | | | Thanks to @mwk for the gate mapping part of the ABC scripts. Co-Authored-By: Marcelina Kościelnicka <mwk@0x04.net>
* | | | Merge pull request #2206 from boqwxp/qbfsat-fix-name-specializationclairexen2020-07-011-2/+24
|\ \ \ \ | | | | | | | | | | qbfsat: Fix name-based hole specialization
| * | | | qbfsat: Fix name-based hole specialization.Alberto Gonzalez2020-06-301-2/+24
| |/ / / | | | | | | | | | | | | Look for unique connections in the containing module with the $anyconst port Y SigBit on the RHS and use those. If no such connection is found, fall back to using the name of the $anyconst port Y SigBit.
* | | | Merge pull request #2136 from zachjs/masterclairexen2020-06-303-1/+81
|\ \ \ \ | | | | | | | | | | Allow constant function calls in for loops and generate if and case
| * | | | Allow constant function calls in for loops and generate if and caseZachary Snow2020-06-293-1/+81
| |/ / /
* | | | Merge pull request #2199 from YosysHQ/mmicko/sim_memoryclairexen2020-06-301-1/+4
|\ \ \ \ | | | | | | | | | | sim - error when memrd and memwr detected
| * | | | sim - error when memrd and memwr detectedMiodrag Milanovic2020-06-291-1/+4
| | | | |
* | | | | Merge pull request #2201 from YosysHQ/fix_test_cell_ilangclairexen2020-06-301-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Use ID macro to fix assertion
| * | | | | Use ID macro to fix assertionMiodrag Milanovic2020-06-291-2/+2
| |/ / / /
* | | | | Merge pull request #2209 from YosysHQ/verific_updateclairexen2020-06-301-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Update verific API version check
| * | | | | Update verific API version checkMiodrag Milanovic2020-06-301-1/+1
| | | | | |
* | | | | | simcells: Fix reset polarity for $_DLATCH_???_ cells.Marcelina Kościelnicka2020-06-302-5/+5
|/ / / / /
* | | | | Merge pull request #2205 from whitequark/fix-2204whitequark2020-06-301-2/+3
|\ \ \ \ \ | |_|/ / / |/| | | | techmap: don't drop attributes on replaced cells
| * | | | techmap: don't drop attributes on replaced cells.whitequark2020-06-291-2/+3
|/ / / / | | | | | | | | | | | | | | | | | | | | This was introduced in 76c4ee4ea5cb6a3dc214f66237af22a1bedda010. Fixes #2204.
* | | | Merge pull request #2200 from YosysHQ/mmicko/fix_exposeMiodrag Milanović2020-06-291-7/+23
|\ \ \ \ | | | | | | | | | | expose pass fix
| * | | | Give error that options are exclusiveMiodrag Milanovic2020-06-291-2/+6
| | | | |
| * | | | cleanupMiodrag Milanovic2020-06-291-12/+13
| | | | |
| * | | | expose pass fixMiodrag Milanovic2020-06-291-5/+16
| |/ / /
* | | | Merge pull request #2197 from Xiretza/test_cell-shiftswhitequark2020-06-291-0/+4
|\ \ \ \ | |/ / / |/| | | test_cell: don't generate directional shifts with \B_SIGNED=1
| * | | test_cell: don't generate directional shifts with \B_SIGNED=1Xiretza2020-06-281-0/+4
|/ / / | | | | | | | | | | | | This was made an explicit error in e97e33d, "kernel: require \B_SIGNED=0 on $shl, $sshl, $shr, $sshr.".
* | | Fix crash in verific frontendMiodrag Milanovic2020-06-261-1/+2
| | |
* | | Merge pull request #2193 from whitequark/cxxrtl-help-textwhitequark2020-06-261-2/+2
|\ \ \ | | | | | | | | cxxrtl: update help text
| * | | cxxrtl: update help text.whitequark2020-06-261-2/+2
|/ / /