Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'master' of https://github.com/YosysHQ/yosys | Rodrigo Alejandro Melo | 2020-02-03 | 12 | -112/+369 |
|\ | | | | | | | | | | | Solved a conflict into the CHANGELOG Signed-off-by: Rodrigo Alejandro Melo <rmelo@inti.gob.ar> | ||||
| * | Merge pull request #1516 from YosysHQ/dave/dotstar | David Shah | 2020-02-02 | 6 | -6/+208 |
| |\ | | | | | | | sv: Add support for wildcard port connections (.*) | ||||
| | * | Update CHANGELOG and README | David Shah | 2020-02-02 | 2 | -0/+5 |
| | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| | * | sv: Improve handling of wildcard port connections | David Shah | 2020-02-02 | 3 | -7/+9 |
| | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| | * | sv: More tests for wildcard port connections | David Shah | 2020-02-02 | 1 | -0/+57 |
| | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| | * | hierarchy: Correct handling of wildcard port connections with default values | David Shah | 2020-02-02 | 2 | -7/+25 |
| | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| | * | sv: Add tests for wildcard port connections | David Shah | 2020-02-02 | 1 | -0/+56 |
| | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| | * | hierarchy: Resolve SV wildcard port connections | David Shah | 2020-02-02 | 2 | -4/+63 |
| | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| | * | sv: Add lexing and parsing of .* (wildcard port conns) | David Shah | 2020-02-02 | 2 | -1/+6 |
| |/ | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| * | Merge pull request #1647 from YosysHQ/dave/sprintf | David Shah | 2020-02-02 | 3 | -93/+122 |
| |\ | | | | | | | ast: Add support for $sformatf system function | ||||
| | * | ast: Add support for $sformatf system function | David Shah | 2020-01-19 | 3 | -93/+122 |
| | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| * | | Merge pull request #1657 from YosysHQ/dave/xilinx-dsp-multonly | David Shah | 2020-02-02 | 1 | -0/+7 |
| |\ \ | | | | | | | | | synth_xilinx: add -dsp-multonly | ||||
| | * | | xilinx_dsp: Add multonly scratchpad var to bypass | David Shah | 2020-02-01 | 1 | -0/+7 |
| | |/ | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
| * | | xilinx: use RAM32M/RAM64M for memories with two read ports | Marcin Kościelnicki | 2020-02-02 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | This fixes inefficient LUT RAM usage for memories with one write and two read ports (commonly used as register files). | ||||
| * | | json: remove the 32-bit parameter special case | Marcin Kościelnicki | 2020-02-01 | 1 | -10/+28 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, the rules for encoding parameters in JSON were as follows: - if the parameter is not a string: - if it is exactly 32 bits long and there are no z or x bits, emit it as an int - otherwise, emit it as a string made of 0/1/x/z characters - if the parameter is a string: - if it contains only 0/1/x/z characters, append a space at the end to distinguish it from a non-string - otherwise, emit it directly However, this caused a problem in the json11 parser used in nextpnr: yosys emits unsigned ints, and nextpnr parses them as signed, using the value of INT_MIN for values that overflow the signed int range. This caused destruction of LUT5 initialization values. Since both nextpnr and yosys parser can also accept 32-bit parameters in the same encoding as other widths, let's just remove that special case. The old behavior is still left behind a `-compat-int` flag, in case someone relies on it. | ||||
* | | | Replaced strlen by GetSize into simplify.cc | Rodrigo Alejandro Melo | 2020-02-03 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | As recommended in CodingReadme. Signed-off-by: Rodrigo Alejandro Melo <rmelo@inti.gob.ar> | ||||
* | | | Removed 'synth' into tests/memfile/run-test.sh | Rodrigo Alejandro Melo | 2020-02-02 | 1 | -8/+8 |
| | | | | | | | | | | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | ||||
* | | | Added content1.dat into tests/memfile | Rodrigo Alejandro Melo | 2020-02-02 | 2 | -21/+81 |
| | | | | | | | | | | | | | | | | | | Modified run-test.sh to use it. Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | ||||
* | | | Removed a line jump into the CHANGELOG | Rodrigo Alejandro Melo | 2020-02-01 | 1 | -3/+2 |
| | | | | | | | | | | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | ||||
* | | | Added tests/memfile to 'make test' with an extra testcase | Rodrigo Alejandro Melo | 2020-02-01 | 2 | -16/+11 |
| | | | | | | | | | | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | ||||
* | | | Added a test for the Memory Content File inclusion using $readmemb | Rodrigo Alejandro Melo | 2020-02-01 | 3 | -0/+63 |
| | | | | | | | | | | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | ||||
* | | | Fixed a bug in the new feature of $readmem[hb] when an empty string is provided | Rodrigo Alejandro Melo | 2020-02-01 | 1 | -1/+1 |
| | | | | | | | | | | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | ||||
* | | | Modified the new search for files of $readmem[hb] to be backward compatible | Rodrigo Alejandro Melo | 2020-01-31 | 1 | -3/+7 |
| | | | | | | | | | | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | ||||
* | | | $readmem[hb] file inclusion is now relative to the Verilog file | Rodrigo Alejandro Melo | 2020-01-31 | 2 | -2/+4 |
|/ / | | | | | | | Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | ||||
* | | Merge pull request #1668 from gsomlo/gls-abc9-external | Eddie Hung | 2020-01-31 | 1 | -0/+1 |
|\ \ | | | | | | | abc9: Fix regression breaking support for use of ABCEXTERNAL | ||||
| * | | abc9: restore ability to use ABCEXTERNAL | Gabriel Somlo | 2020-01-30 | 1 | -0/+1 |
|/ / | | | | | | | Signed-off-by: Gabriel Somlo <gsomlo@gmail.com> | ||||
* | | Merge pull request #1667 from YosysHQ/clifford/verificnand | Claire Wolf | 2020-01-30 | 1 | -0/+8 |
|\ \ | | | | | | | Add Verific support for OPER_REDUCE_NAND | ||||
| * | | Add Verific support for OPER_REDUCE_NAND | Claire Wolf | 2020-01-30 | 1 | -0/+8 |
| | | | | | | | | | | | | Signed-off-by: Claire Wolf <clifford@clifford.at> | ||||
* | | | Merge pull request #1503 from YosysHQ/eddie/verific_help | Claire Wolf | 2020-01-30 | 1 | -8/+8 |
|\ \ \ | | | | | | | | | `verific` pass to print help message when command syntax error | ||||
| * \ \ | Merge remote-tracking branch 'origin/master' into eddie/verific_help | Eddie Hung | 2020-01-27 | 208 | -4938/+10113 |
| |\ \ \ | |||||
| * | | | | verific: no help() when no YOSYS_ENABLE_VERIFIC | Eddie Hung | 2020-01-27 | 1 | -4/+1 |
| | | | | | |||||
| * | | | | Oops | Eddie Hung | 2019-11-19 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Print help message for verific pass | Eddie Hung | 2019-11-19 | 1 | -9/+12 |
| | | | | | |||||
* | | | | | Merge pull request #1654 from YosysHQ/eddie/sby_fix69 | Claire Wolf | 2020-01-30 | 1 | -0/+6 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | verific: unflatten struct ports | ||||
| * | | | | verific: also unflatten for 'hierarchy' flow as per @cliffordwolf | Eddie Hung | 2020-01-27 | 1 | -0/+3 |
| | | | | | |||||
| * | | | | verific: unflatten struct ports | Eddie Hung | 2020-01-24 | 1 | -0/+3 |
| | |/ / | |/| | | |||||
* | | | | Merge branch 'vector_fix' of https://github.com/Kmanfi/yosys | Claire Wolf | 2020-01-29 | 1 | -1/+3 |
|\ \ \ \ | | | | | | | | | | | | | | | | Also some minor fixes to the original PR. | ||||
| * | | | | Fix input vector for reduce cells. Infinite loop fixed. | Kaj Tuomi | 2017-10-17 | 1 | -0/+2 |
| | | | | | |||||
| * | | | | Merge branch 'master' of https://github.com/cliffordwolf/yosys into vector_fix | Kaj Tuomi | 2017-10-17 | 3 | -1/+54 |
| |\ \ \ \ | |||||
| * | | | | | Add Verific fairness/liveness support | Clifford Wolf | 2017-10-12 | 1 | -11/+32 |
| | | | | | | |||||
* | | | | | | Merge pull request #1662 from YosysHQ/dave/opt-reduce-move-check | Claire Wolf | 2020-01-29 | 1 | -1/+2 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | opt_reduce: Call check() per run rather than per optimised cell | ||||
| * | | | | | | opt_reduce: Call check() per run rather than per optimised cell | David Shah | 2020-01-28 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me> | ||||
* | | | | | | | Merge pull request #1665 from YosysHQ/clifford/edifkeep | Claire Wolf | 2020-01-29 | 1 | -9/+34 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Preserve wires with keep attribute in EDIF back-end | ||||
| * | | | | | | | Preserve wires with keep attribute in EDIF back-end | Claire Wolf | 2020-01-29 | 1 | -9/+34 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Claire Wolf <clifford@clifford.at> | ||||
* | | | | | | | | Merge pull request #1659 from YosysHQ/clifford/experimental | Claire Wolf | 2020-01-29 | 6 | -4/+56 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Add log_experimental() and experimental() API and "yosys -x" | ||||
| * | | | | | | | | Improve logging use of experimental features | Claire Wolf | 2020-01-28 | 3 | -4/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Claire Wolf <clifford@clifford.at> | ||||
| * | | | | | | | | Add log_experimental() and experimental() API and "yosys -x" | Claire Wolf | 2020-01-27 | 6 | -4/+52 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Claire Wolf <clifford@clifford.at> | ||||
* | | | | | | | | | Merge pull request #1510 from pumbor/master | N. Engelhardt | 2020-01-29 | 1 | -0/+13 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | handle anonymous unions to fix #1080 | ||||
| * | | | | | | | | | handle anonymous unions to fix #1080 | Patrick Eibl | 2019-11-21 | 1 | -0/+13 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #1559 from YosysHQ/efinix_test_fix | Miodrag Milanović | 2020-01-29 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | Fix for non-deterministic test |