iverilog/ivtest/gold
Lars-Peter Clausen 6204b78610 Prevent invalid port redeclaration
(System)Verilog allows to declare the port direction separate from the
signal declaration. E.g.

```
output x;
integer x;
```

But this is only allowed if the port declaration
 * does not have an explicit net type
 * does not have an explicit data type
 * is a non-ANSI style declaration

For all other cases of port declarations the signal is considered fully
defined and it is not allowed to have a separate signal declaration.

In addition the declared packed dimensions need to match between the port
and signal declaration.

In the current implementation there are a few cases where this is not
handled correctly.

1) It is possible to declare non-ANSI task ports with the same name over
and over again, if it was declared as a signal before the port.

```
task t;
  string x;
  input logic x;
  output real x;
endtask
```

2) It is possible to re-declare non-ANSI input ports of a module that have
a data type, but no explicit net type.

```
module M;
  input integer x;
  wire integer x;
endmodule
```

3) It is possible to re-declare a ANSI port if it has an implicit data type.

```
module M(output [1:0] x);
  reg [1:0] x;
endmodule
```

4) It is possible to declare a vector signal for a scalar non-ANSI task
port.

```
task t;
input x;
reg [7:0] x;
```

To handle all of these correctly refactor signal declaration and lookup a
bit.

The PWire class that represents a signal already has two flags `port_set_`
and `net_set_`. These flags indicate whether a signal has already been used
in a port or signal declaration. A port declaration that includes an
explicit data type is considered both a port and signal declaration.

Use these flags to decide whether it is possible to extend an existing
declaration. E.g. when creating a port without an explicit data type and a
PWire by that name already exists and the `port_set_` flag is not set
extend the existing PWire. On the other hand if the `port_set_` flag is
already set report an error.

Similar for signals but with the `net_set_` flag.

For port declarations with an explicit data type or ANSI style port
declarations it is always an error if a PWire by that name already exists.

This is for both module and task/function ports.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
2022-09-14 18:55:19 +02:00
..
always_comb_no_sens.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
always_comb_warn.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
always_ff_warn.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
always_ff_warn_sens.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
always_latch_warn.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
always_star_array_lval.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
array_dump.vcd.gold Add parameters to vcd dumps 2022-05-15 18:47:18 -07:00
array_packed_2d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
array_word_check.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
array_word_width.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
automatic_error11.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
automatic_error12.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
automatic_error13.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
automatic_events.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
automatic_events3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
automatic_task.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
automatic_task2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
automatic_task3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
bitsel.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br916a-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br916a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br916b-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br916b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br921.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br947.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br960a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br960b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br960c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br960d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br975-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br975.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br991b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003a-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003b-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003b-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003c-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003c-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003d-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1003d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1005.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1007-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1007.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1008.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027a-fsv.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027c-fsv.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027e-fsv.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027e.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1027f.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1029a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br1029c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh13a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh33.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh62.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh72a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh72b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh72b_fail.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh79.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh105a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh105b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh127a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh127b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh127c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh127d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh127e.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh127f.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh156.vcd.gold Fix vcd dump of real value parameters 2022-05-21 10:13:27 -07:00
br_gh157.gold Report error when trying to override non-existing parameter 2022-02-01 22:50:21 +01:00
br_gh165.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh198.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh209.dat Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh230-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh230.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh265.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh289d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh365.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh366.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh368.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh374.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh377-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh377.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh383a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh383b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh383c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh383d-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh383d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh388.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh390b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh391.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh433.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh436.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh440-v11.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh440.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh451.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh497b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh497d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh497f.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh531.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh567.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_gh732.gold Add regression test for issue #732. 2022-08-24 15:38:40 +01:00
br_ml20190814.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
br_ml_20150315.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
busbug.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
ca_64delay.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
ca_mult.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
ca_time.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
ca_time_real-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
ca_time_real.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
ca_time_smtm.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
case_priority-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
case_priority.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
case_unique-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
case_unique.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
casesynth7.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
cmos.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
comp1000.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
comp1001.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
dcomp1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
def_nettype_none.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
defparam2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
defparam3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
defparam4.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
delay.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
delay_var.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
delayed_sfunc-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
delayed_sfunc.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
disblock2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
disp_dec.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
disp_dec2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
disp_leading_z.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
disp_parm.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
disp_part.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
display_bug.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
drive_strength2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
dummy7.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
dump_memword.vcd Add parameters to vcd dumps 2022-05-15 18:47:18 -07:00
enum_dims_invalid.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
enum_line_info.gold Add regression tests for enum and struct line info 2022-01-23 20:09:05 +01:00
eofmt_percent-v11.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
eofmt_percent-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
eofmt_percent.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
escaped_macro_name.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
event3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
event_list3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fatal_et_al-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fatal_et_al.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fatal_et_al2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay2.out Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay3-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay_fail_fd-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay_fail_fd-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay_fail_fd.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay_fail_mcd-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay_fail_mcd-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fdisplay_fail_mcd.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fileio.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fileline.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fileline2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
final.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
final2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
format-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
format.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fread-error-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fread-error.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fscanf_u_warn-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fscanf_u_warn.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fscanf_z_warn-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
fscanf_z_warn.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
function1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
function12.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
gate_connect2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
generate_multi_loop.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
idiv3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
indef_width_concat.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
initmod.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
initmod2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
int_not_signext.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
itor_rtoi.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
ivlh_event.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
ivlh_rising_falling.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
land4.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
lh_memcat.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
line_directive.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
long_div.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
macro_redefinition.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
macro_replacement.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
macro_str_esc.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
macro_with_args.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
mcl1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
mcl2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
mem1-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
mem1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
monitor.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
monitor2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
monitor3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
multi_bit_strength.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
multi_bit_strength_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
negvalue.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
neq1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
nested_func.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
nested_func_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
nested_impl_event1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
nested_impl_event2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
packed_dims_invalid_class.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
packed_dims_invalid_module.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
param-width-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
param-width.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
param_test1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
param_test2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
param_test3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
parameter_type-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
parameter_type-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
parameter_type.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pic-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pic.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr243.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr243_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr245.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr298.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr377.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr434.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr487.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr492.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr498b.gold Report error when trying to override non-existing parameter 2022-02-01 22:50:21 +01:00
pr522.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr524.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr527.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr528.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr528b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr530.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr531a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr532.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr533.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr534.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr538.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr540.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr540b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr540c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr541.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr542.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr544.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr547.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr556.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr569.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr572.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr584.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr584_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr590.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr594.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr596.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr622.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr632.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr639.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr673.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr693.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr729.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr751.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr751_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr812.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr820.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr902.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr905.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr910-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr910.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr923.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr938.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr979.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr985.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr987.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr987_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr991.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr993.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr995.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1002.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1002_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1002a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1002a_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1008.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1026.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1033.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1065.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1077.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1403406.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1403406a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1403406b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1476440.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1492075.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1494799.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1574175.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1587669.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1589497.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1623097.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1628288.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1628300.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1629683.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1632861.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1634526.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1636409.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1638985.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1639060.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1639064.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1639064b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1639968.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1639971.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1645277.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1645518.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1648365.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1661640.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1661640_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1664684.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1687193.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1688717.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1698499.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1698658.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1698659.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1698820-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1698820-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1698820.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1699444.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1699519.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1701855.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1701855b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1701889.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1701890-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1701890.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1702593.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1703120.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1704726a-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1704726a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1704726c-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1704726c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1704726d-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1704726d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1719055.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1723367.gold Prevent invalid port redeclaration 2022-09-14 18:55:19 +02:00
pr1735836.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1741212.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1746848.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1752823a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1752823b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1758122.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1758135.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1770199.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1771903.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1780480.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1787394a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1787423.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1792108.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1792152.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1792734.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1793157.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1793749.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1793749b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1795005a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1795005b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1799904.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1804877.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1805837.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1819452-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1819452.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1820472.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1823732.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1828642.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1830834.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1831724.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1833024.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1841300.gold Prevent invalid port redeclaration 2022-09-14 18:55:19 +02:00
pr1845683.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1851310.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1855504.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1861212.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1862744b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1864110a-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1864110a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1864110b-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1864110b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1864110c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1864115-ivl.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1864115.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1866215.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1866215b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1867161a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1867161b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1873372.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1876798.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1885847.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1887168.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1898983.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1903343.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1912112.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1936363.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1949025.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1960545.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1960548.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1960558.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1960575.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1960596.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1960619.gold Prevent invalid port redeclaration 2022-09-14 18:55:19 +02:00
pr1963240.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1963962-fsv.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1963962.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1985582.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1985582_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr1993479.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2001162.gold Prevent invalid port redeclaration 2022-09-14 18:55:19 +02:00
pr2001162_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2029336.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2039694.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2043585.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2043585_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2053944.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2076391.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2091455.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2119622.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2132552.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2136787.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2138682.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2138979b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2138979c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2138979d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2146620.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2146620b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2146824.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2152011.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2159630.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2169870.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2248925.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2251119.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2251119_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2272468.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2486350.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2509349a-msys2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2509349a-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2509349a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2509349b-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2509349b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2580730.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2590274.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2715558.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2715558b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2715748.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2785294.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2794144.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2800985b-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2800985b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2809288.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2815398a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2815398b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2823414.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2842621.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2848986.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2859628.vcd.gold Add parameters to vcd dumps 2022-05-15 18:47:18 -07:00
pr2877564.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2924354.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2972866.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr2976242c.gold Report errors for nets with invalid data type 2022-03-03 10:30:12 +01:00
pr3015421-fsv.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3015421.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3039548.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3054101a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3054101c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3054101e.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3054101g.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3064375.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3149494.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3190941.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3194155.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3194155_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3366217a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3366217b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3366217c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3366217d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3366217f.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3366217g.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3441576.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3499807.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3515542.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3522653.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3527694.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
pr3571573.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
queue_fail-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
queue_fail.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
queue_stat.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
random.gold Add regression test for br_gh661 and test for correct $random behaviour. 2022-04-03 19:56:56 +01:00
readmem-error-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
readmem-error.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
readmem-invalid-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
readmem-invalid.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
real5.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
real_concat_invalid1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
real_concat_invalid2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
real_delay.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
real_events.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
real_invalid_ops.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
real_select_invalid.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
recursive_func.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
recursive_func_const.gold Add regression tests for constant recursive functions 2022-04-11 22:03:02 +02:00
recursive_task.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
resetall-fsv.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
resetall-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
resetall.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
resetall2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
resetall2_std.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
rtran.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
rtranif0.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
rtranif1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
scan-invalid.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
scoped_events.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sdf1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sdf5.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sdf6.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sdf7.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sdf8.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sel_rval_bit_ob.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sel_rval_part_ob.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
select3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sf_countbits_fail.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sf_countones_fail.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sf_isunknown_fail.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sf_onehot0_fail.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sf_onehot_fail.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
shellho1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
shift1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
shift5.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
signed4.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
signed10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
signed12.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sp2.inv Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
specify3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
specify4.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
specify5.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
stask_parm2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
stime.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
string4.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
string5.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
string7.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
string8.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
string9.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
string10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
string11.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
string_events.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
struct_invalid_member.gold Add a regression test with invalid struct member declarations 2022-01-15 19:54:13 +01:00
struct_line_info.gold Add regression tests for enum and struct line info 2022-01-23 20:09:05 +01:00
sv_default_port_value3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_deferred_assert1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_deferred_assert2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_deferred_assume1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_deferred_assume2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_end_label_fail.gold Add helper function to check end label 2022-02-06 21:33:36 +01:00
sv_end_labels_bad.gold Add helper function to check end label 2022-02-06 21:33:36 +01:00
sv_end_labels_unnamed.gold Add regression test for end labels on unnamed blocks 2022-02-06 21:33:36 +01:00
sv_immediate_assert-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_immediate_assert.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_immediate_assume-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_immediate_assume.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_macro2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_macro3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_new_array_error.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_pkg_class.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_queue_parray.gold Add regression tests for queue of packed arrays 2022-03-12 14:07:06 +01:00
sv_queue_parray_bounded.gold Add regression tests for queue of packed arrays 2022-03-12 14:07:06 +01:00
sv_queue_parray_fail.gold Consolidate unpacked array type elaboration 2022-04-18 09:58:02 +02:00
sv_queue_real.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_queue_real_bounded.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_queue_real_fail.gold Consolidate unpacked array type elaboration 2022-04-18 09:58:02 +02:00
sv_queue_string.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_queue_string_bounded.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_queue_string_fail.gold Consolidate unpacked array type elaboration 2022-04-18 09:58:02 +02:00
sv_queue_vec.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_queue_vec_bounded.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_queue_vec_fail.gold Consolidate unpacked array type elaboration 2022-04-18 09:58:02 +02:00
sv_root_class.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_root_func.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_root_task.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec3a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec3b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec3c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec3d.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec4a.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec4b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec_fail1-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec_fail1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec_fail2-v10.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_timeunit_prec_fail2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_unit1b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_unit1c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_unit2b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_unit3b.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_wildcard_import4.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sv_wildcard_import5.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
switch_primitives.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
swrite-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
swrite.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sys_func_as_task.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sys_func_task_error-fsv.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sys_func_task_error-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
sys_func_task_error.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
tern3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
tern5.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
test_disphob.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
test_dispwided.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
test_extended.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
test_va_math.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
test_vams_math.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
test_width.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
time6c.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
time7.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
timeform1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
timeform2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
tran.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
tranif0.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
tranif1.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
two_state_display.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
udp_bx.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
undef.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
unnamed_generate_block.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
urand.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
urand_r.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
uwire_fail.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vcd-dup.log.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vcd-dup.vcd.gold Add parameters to vcd dumps 2022-05-15 18:47:18 -07:00
vector.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_concurrent_assert.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_image_attr.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_lfcr.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_mux2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_now.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_procedure.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_report.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_string.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_test3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_time.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
vhdl_wait.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
wait3.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
warn_opt_sys_tf-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
warn_opt_sys_tf.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
wild_cmp_err.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
wild_cmp_err2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
wiresl2.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
writemem-error-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
writemem-error.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
writemem-invalid-vlog95.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00
writemem-invalid.gold Add ivtest to the iverilog source tree 2022-01-15 10:18:50 -08:00