| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Clifford Wolf <clifford@clifford.at>
|
|
|
|
| |
Signed-off-by: Clifford Wolf <clifford@clifford.at>
|
|
|
|
|
|
| |
Don't emit subfield assignments: bits(x, y, z) <= ... - but instead, add them to the reverse-wire-map where they'll be treated at the end of the module.
Enable tests which were disabled due to incorrect treatment of subfields.
Assume the `$firrtl2verilog` variable contains any additional switches to control verilog generation (i.e. `--no-dedup -X mverilog`)
|
|\
| |
| | |
Define basic_cell_type() function and use it to derive the cell type …
|
| |
| |
| |
| |
| |
| | |
Suppress warning if name does begin with a `$`.
Fix hierachy tests so they have something to grep.
Announce hierarchy test types.
|
| |
| |
| |
| | |
Add simple test.
|
|\ \
| | |
| | | |
Fix WREDUCE on FF not fixing ARST_VALUE parameter.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Adds test case that fails without code change.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
|
|/ /
| |
| |
| | |
Signed-off-by: Clifford Wolf <clifford@clifford.at>
|
| |
| |
| |
| | |
This reverts commit 281f2aadcab01465f83a3f3a697eec42503e9f8b.
|
| | |
|
|\ \ |
|
| | | |
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Issue warning messages for missing parameterized modules and attempts to set initial values.
Replace simple "if (cell-type)" with "else if" chain.
Fix FIRRTL shift handling.
Add support for parameterized modules, $shift, $shiftx.
Handle default output file.
Deal with no top module.
Automatically run pmuxtree pass.
Allow EXTRA_FLAGS and SEED parameters to be set in the environment for tests/tools/autotest.mk.
Support FIRRTL regression testing in tests/tools/autotest.sh
Add xfirrtl files to test directories to exclude files from FIRRTL regression tests that are known to fail.
|
| | |
|
| | |
|
| | |
|
|/ |
|
|
|
|
| |
Signed-off-by: Clifford Wolf <clifford@clifford.at>
|
|\
| |
| | |
opt_expr: refactor and improve simplification of comparisons
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The idea behind this simplification is that a N-bit signal X being
compared with an M-bit constant where M>N and the constant has Nth
or higher bit set, it either always succeeds or always fails.
However, the existing implementation only worked with one-hot signals
for some reason. It also printed incorrect messages.
This commit adjusts the simplification to have as much power as
possible, and fixes other bugs.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
Before this commit, only unsigned comparisons with all-0 would be
simplified. This commit also makes the code handling such comparisons
to be more rigorous and not abort on unexpected input.
|
|/ |
|
| |
|
| |
|
|\
| |
| | |
equiv_opt: new command, for verifying optimization passes
|
| |
| |
| |
| |
| | |
This allows avoiding techmap crashes e.g. because of large memories
in white-box cell models.
|
| | |
|
| | |
|
|/
|
|
| |
Signed-off-by: Clifford Wolf <clifford@clifford.at>
|
| |
|
| |
|
| |
|
|\
| |
| | |
More meaningful SystemVerilog/Verilog parser error messages
|
| |
| |
| |
| |
| |
| |
| | |
parser into unique,
meaningful info on the error.
Also add 13 compilation examples that triggers each of these messages.
|
|/
|
|
| |
test case
|
| |
|
| |
|
|
|
|
| |
This time doing the changes mostly in AST before RTLIL generation
|
|\
| |
| | |
Add error checking for reg/wire/logic misuse - PR now passes 'make test' (plus a new test)
|
| |
| |
| |
| | |
No longer false warnings for memories and assertions
|
| |
| |
| |
| | |
to be moved out of the tests/simple dir that only runs Verilog files
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
It correctly detects reg/wire mix and incorrect use on blocking,nonblocking assignments within blocks and assign statements.
What it DOES'T do:
Detect registers connected to output ports of instances.
Where it FAILS:
memorty nonblocking assignments causes spurious (I assume??) errors on yosys-generated "_ADDR", "_DATA", "EN" signals.
You can test it with tests/simple/reg_wire_error.v (look inside for the comments to enable/disable specific lines)
|
| | |
|
| |
| |
| |
| |
| | |
This enables running tests on Unix systems which are not shipped with
bash installed in /bin/bash (eg *BSDs and Solaris).
|
| |
| |
| |
| | |
Signed-off-by: Clifford Wolf <clifford@clifford.at>
|
|/
|
|
|
| |
The only functionality of this code at the moment is to accept correct specify syntax and ignore it.
No part of the specify block is added to the AST
|
|
|
|
| |
Signed-off-by: Clifford Wolf <clifford@clifford.at>
|