Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add additional dff and lutram tests | Miodrag Milanovic | 2023-04-06 | 2 | -0/+57 |
| | |||||
* | add test for CCU2D | Miodrag Milanovic | 2023-04-06 | 1 | -0/+10 |
| | |||||
* | verilog: Support void functions | Jannis Harder | 2023-03-20 | 1 | -0/+37 |
| | | | | | | | The difference between void functions and tasks is that always_comb's implicit sensitivity list behaves as if functions were inlined, but ignores signals read only in tasks. This only matters for event based simulation, and for synthesis we can treat a void function like a task. | ||||
* | Update tests | Miodrag Milanovic | 2023-03-20 | 7 | -16/+16 |
| | |||||
* | verific: Fix enum_values support and signed attribute values | Jannis Harder | 2023-03-15 | 2 | -0/+56 |
| | | | | | | This uses the same constant parsing for enum_values and for attributes and extends it to handle signed values as those are used for enums that implicitly use the int type. | ||||
* | Merge pull request #3682 from daglem/struct-member-out-of-bounds | Jannis Harder | 2023-03-10 | 4 | -1/+76 |
|\ | | | | | Out of bounds checking for struct/union members | ||||
| * | Added test for dynamic indexing within struct members | Dag Lem | 2023-03-08 | 2 | -0/+71 |
| | | |||||
| * | Index struct/union members within corresponding wire chunks | Dag Lem | 2023-03-05 | 1 | -1/+2 |
| | | | | | | | | | | This guards against access to bits outside of struct/union members via dynamic indexing. | ||||
| * | Out of bounds checking for struct/union members | Dag Lem | 2023-02-19 | 2 | -1/+4 |
| | | | | | | | | Currently, only constant indices are checked. | ||||
* | | Merge pull request #3646 from YosysHQ/lofty/fix-3591 | Miodrag Milanović | 2023-02-27 | 1 | -0/+40 |
|\ \ | | | | | | | muxcover: do not add decode muxes with x inputs | ||||
| * | | muxcover: do not add decode muxes with x inputs | Lofty | 2023-01-26 | 1 | -0/+40 |
| | | | |||||
* | | | Merge pull request #3674 from YosysHQ/fix_wide_case | N. Engelhardt | 2023-02-27 | 6 | -0/+78 |
|\ \ \ | |||||
| * | | | Added ranged case check | Miodrag Milanovic | 2023-02-27 | 2 | -0/+27 |
| | | | | |||||
| * | | | Add test example | Miodrag Milanovic | 2023-02-27 | 4 | -0/+51 |
| | | | | |||||
* | | | | fabulous: Add support for mapping carry chains | gatecat | 2023-02-27 | 1 | -0/+9 |
|/ / / | | | | | | | | | | Signed-off-by: gatecat <gatecat@ds0.me> | ||||
* | | | Genericising bug1836.ys | KrystalDelusion | 2023-02-21 | 1 | -20/+12 |
| | | | |||||
* | | | bug3205.ys removed | KrystalDelusion | 2023-02-21 | 1 | -57/+0 |
| | | | | | | | | | | | | Made redundant by TDP test(s) in memories.ys | ||||
* | | | Removing extra `default_nettype` lines | KrystalDelusion | 2023-02-21 | 1 | -2/+0 |
| | | | |||||
* | | | Fix for sync_ram_sdp not being final module | KrystalDelusion | 2023-02-21 | 1 | -1/+1 |
| | | | | | | | | | | | | Explicitly declare -top in synth_intel_alm. | ||||
* | | | More tests in memlib/generate.py | KrystalDelusion | 2023-02-21 | 13 | -12/+1180 |
| | | | | | | | | | | | | Covers most of the todo list, at least functionally. Some minor issues with not always using hardware features. | ||||
* | | | Tests for ram_style = "huge" | KrystalDelusion | 2023-02-21 | 4 | -0/+219 |
| | | | | | | | | | | | | iCE40 SPRAM and Xilinx URAM | ||||
* | | | Testing TDP synth mapping | KrystalDelusion | 2023-02-21 | 3 | -0/+49 |
| | | | | | | | | | | | | | | | New common sync_ram_tdp. Used in ecp5 and gatemate mem*.ys. | ||||
* | | | Asymmetric port ram tests with Xilinx | KrystalDelusion | 2023-02-21 | 3 | -0/+193 |
| | | | | | | | | | | | | Uses verilog code from User Guide 901 (2021.1) | ||||
* | | | Addings tests for #1836 and #3205 | KrystalDelusion | 2023-02-21 | 3 | -0/+120 |
| |/ |/| | |||||
* | | Merge pull request #3675 from daglem/struct-item-queries | Jannis Harder | 2023-02-15 | 1 | -0/+112 |
|\ \ | | | | | | | Support for data and array queries on struct/union item expressions | ||||
| * | | Corrected tests for data and array queries on struct/union item expressions | Dag Lem | 2023-02-15 | 1 | -80/+85 |
| | | | |||||
| * | | Support for data and array queries on struct/union item expressions | Dag Lem | 2023-02-15 | 1 | -0/+107 |
| | | | | | | | | | | | | For now, $bits, $left, $right, $low, $high, and $size are supported. | ||||
* | | | Merge pull request #3671 from zachjs/master | Jannis Harder | 2023-02-15 | 2 | -0/+16 |
|\ \ \ | |/ / |/| | | Add test for typenames using constants shadowed later on | ||||
| * | | Add test for typenames using constants shadowed later on | Zachary Snow | 2023-02-12 | 2 | -0/+16 |
| | | | | | | | | | | | | | | | This possible edge case came up while reviewing #3555. It is currently handled correctly, but there is no clear test coverage. | ||||
* | | | Merge pull request #3661 from daglem/struct-array-range-offset | Jannis Harder | 2023-02-15 | 1 | -0/+20 |
|\ \ \ | | | | | | | | | Handle range offsets in packed arrays within packed structs | ||||
| * | | | Handle range offsets in packed arrays within packed structs | Dag Lem | 2023-02-05 | 1 | -0/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This brings the metadata for packed arrays in packed structs in line with the metadata for unpacked arrays, and correctly handles the case when both lsb and msb in an address range are non-zero. | ||||
* | | | | Merge pull request #2995 from georgerennie/cover_precond | Jannis Harder | 2023-02-14 | 1 | -0/+25 |
|\ \ \ \ | | | | | | | | | | | chformal: Add -coverenable option | ||||
| * | | | | chformal: Rename -coverprecond to -coverenable | George Rennie | 2022-06-18 | 1 | -3/+3 |
| | | | | | |||||
| * | | | | chformal: Test -coverprecond and reuse the src attribute | Jannis Harder | 2022-06-18 | 1 | -0/+25 |
| | | | | | |||||
* | | | | | Merge pull request #3126 from georgerennie/equiv_make_assertions | Jannis Harder | 2023-02-14 | 1 | -0/+32 |
|\ \ \ \ \ | | | | | | | | | | | | | equiv_make: Add -make_assert option | ||||
| * | | | | | equiv_make: Add -make_assert option | George Rennie | 2022-06-24 | 1 | -0/+32 |
| |/ / / / | | | | | | | | | | | | | | | | | | | | | This adds a -make_assert flag to equiv_make. When used, the pass generates $eqx and $assert cells to encode equivalence instead of $equiv. | ||||
* | | | | | Merge pull request #3669 from jix/fix-xprop-tests-yosys-call | Jannis Harder | 2023-02-13 | 2 | -51/+60 |
|\ \ \ \ \ | | | | | | | | | | | | | tests: Fix path of yosys invocation in xprop tests | ||||
| * | | | | | xprop tests: Make iverilog invocation more portable | Jannis Harder | 2023-02-13 | 1 | -3/+3 |
| | | | | | | |||||
| * | | | | | xprop: Test fixes and abort on test failure | Jannis Harder | 2023-02-13 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use `$finish(0)` to silently exit even when using recent iverlog versions. Run `write_verilog -noexpr` before `write_verilog` as the latter can modify the design. This also enables checking the tests results, as xprop should be in a state where the existing tests pass. | ||||
| * | | | | | xprop: Smaller subset of tests to run by default | Jannis Harder | 2023-02-13 | 1 | -44/+53 |
| | | | | | | |||||
| * | | | | | tests: Fix path of yosys invocation in xprop tests | Jannis Harder | 2023-02-10 | 1 | -1/+1 |
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | For now xprop test failures are still expected and ignored, but without this change, they did not even run unless the yosys build was in path. | ||||
* / | | | | Resolve package types in interfaces (#3658) | Dag Lem | 2023-02-12 | 3 | -0/+31 |
|/ / / / | | | | | | | | | | | | | * Resolve package types in interfaces * Added test for resolving of package types in interfaces | ||||
* | | | | tests: in xprop tests, use MAKE variable if set | Jannis Harder | 2023-02-10 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge pull request #3650 from jix/rtlil_roundtrip_z_bits | Jannis Harder | 2023-01-30 | 1 | -0/+9 |
|\ \ \ \ | | | | | | | | | | | backends/rtlil: Do not shorten a value with z bits to 'x | ||||
| * | | | | backends/rtlil: Do not shorten a value with z bits to 'x | Jannis Harder | 2023-01-29 | 1 | -0/+9 |
| | |_|/ | |/| | | |||||
* | | | | add pmux option to bmuxmap for better fsm detection with verific frontend | N. Engelhardt | 2023-01-30 | 1 | -0/+45 |
| |_|/ |/| | | |||||
* | | | Resolve struct member package types | Dag Lem | 2023-01-29 | 1 | -0/+4 |
| | | | |||||
* | | | Handle struct members of union type (#3641) | Dag Lem | 2023-01-29 | 1 | -0/+16 |
|/ / | |||||
* | | Merge pull request #3537 from jix/xprop | Jannis Harder | 2023-01-11 | 6 | -5/+805 |
|\ \ | | | | | | | New xprop pass | ||||
| * | | New xprop pass to encode 3-valued x-propagation using 2-valued logic | Jannis Harder | 2022-11-30 | 4 | -0/+801 |
| | | |