Wilson Snyder
8d109e85d0
Fix missing quotes on VPI error signal names
2026-03-27 21:44:11 -04:00
Wilson Snyder
e826a47ad6
Fix broken out-of-bounds scan check
2026-03-27 21:43:11 -04:00
Jakub Michalski
5d2d05236e
Support very wide $display arguments ( #7280 )
2026-03-26 13:55:14 -04:00
Eunseo Song
fbc3b3618d
Fix Apple clang PCH compile error with -o flag ( #7251 ) ( #7327 )
...
Apple clang rejects `-o` when a precompiled header (.gch) is involved,
reporting "cannot specify -o when generating multiple output files".
Remove the unnecessary `-o $@` from the two PCH build rules; the
`%.o: %.cpp` pattern already implies the correct output name.
2026-03-26 11:52:21 -04:00
Wei-Lun Chiu
6873dc2f63
Support array map() method ( #7307 ) ( #7316 )
2026-03-24 02:38:50 -07:00
Nick Brereton
3b328d2bb6
Support disable task by name ( #6853 ) ( #7136 )
2026-03-23 19:56:31 -07:00
Christian Hecken
086bf351f2
Fix VPI force of bit-selected signals ( #7211 ) ( #7301 )
2026-03-20 17:24:45 -07:00
Yilou Wang
998ec5b1d7
Fix streaming with descending unpacked arrays and unpacked-to-queue ( #7287 )
2026-03-20 09:51:35 -04:00
Wilson Snyder
9180eebdba
Internals: MSVC cleanups
2026-03-19 22:48:12 -04:00
Wilson Snyder
94f8181cff
Fix null assignment to virtual interfaces ( #5974 ) ( #5990 ). [Maxim Fonarev]
...
Fixes #5974 .
Co-authored-by: Maksim Fonarev <fonarickm@yandex.ru>
2026-03-19 20:29:02 -04:00
Christian Hecken
49716995fa
Fix memory leaks in vpi_handle_by_name and vpi_handle_by_multi_index ( #7187 repair) ( #7289 )
2026-03-19 20:19:36 -04:00
Wilson Snyder
ef1f6d59b2
warning disable
2026-03-19 20:16:26 -04:00
Yilou Wang
4b34bfffcb
Fix soft constraint relaxation dropping compatible constraints ( #7271 )
...
* Fix soft constraint relaxation dropping compatible constraints
* patch changes the soft handle ordering so update the out files
2026-03-18 10:15:50 +01:00
Christian Hecken
612d1611b6
Fix VPI access to multidimensional packed arrays with ascending indices ( #7275 )
2026-03-17 23:30:05 -04:00
Yilou Wang
3bb0ea63ad
Fix queue slice LHS assignment being silently discarded ( #7270 )
2026-03-17 15:10:49 -04:00
Yilou Wang
8925762077
Fix rand_mode(0) on sub-object members not preventing solver write-back ( #7272 )
2026-03-17 15:09:14 -04:00
Wilson Snyder
602ee384de
Support $sformat with runtime format string ( #7212 ). ( #7257 )
...
Fixes #7212 .
2026-03-14 22:43:56 -04:00
Christian Hecken
42cf5d3be2
Fix vpi_put_value with vpiIntVal on VlWide data ( #7256 )
2026-03-14 20:08:59 -04:00
Geza Lore
9d38a63563
Support array and struct info metadata in FST traces ( #7255 )
...
- Emit arrays under the new FST scope type FST_ST_SV_ARRAY
- Emit packed/unpacked 'array' attributes before FST_ST_SV_ARRAY,
including left and right indices of the array
- Emit packed/unpacked 'pack' attributes before FST_ST_VCD_STRUCT and
FST_ST_VCD_UNION, including the number of members in the types
All attributes apply to the immediately following scope definition (just
like enum dtype attributes).
2026-03-14 12:31:33 +00:00
Yilou Wang
7cd49a8028
Support dist and solve...before inside foreach constraints ( #7245 ) ( #7253 )
2026-03-13 11:05:18 -04:00
Yilou Wang
e0f1f316aa
Fix randc solver hang with wide variables ( #7068 ) ( #7248 )
2026-03-13 07:53:51 -04:00
Artur Bieniek
c0d0180918
Fix `final` asserts and $stop ( #7249 )
2026-03-12 13:09:54 -04:00
Geza Lore
4b53f5f978
Tests: Consolidate format specific t_trace_* tests ( #7216 )
...
Factor out test execution into t/trace_*_common.py, which defines
a 'run' functions. All related t_trace_*py tests call this function.
Behaviour is partially encoded in the file name, which must be of the
form: t_trace_complex_<variant>_<mode>_<format>*.py, where '<variant>'
determines tracing options (default/params/structs), '<mode>' is the
compilation mode (--cc/--sc), and '<format>' determines the trace format
(vcd/fst/saif).
The part of the test name after '<format>' does not influence the test
directly and can be free form. If used, explicit 'verilator_flags2' is
passed to the 'run' function.
2026-03-12 15:21:02 +00:00
Wilson Snyder
a787d631ce
Internals: Add some missing const/UNLIKELY markers. No functional change
2026-03-12 07:46:21 -04:00
Christian Hecken
b3a1a15e2b
Fix vpi_put_value release on non-continuous signal ( #7231 ) ( #7241 )
2026-03-11 22:57:13 -04:00
Wilson Snyder
985f45759c
Update libfst from upstream
2026-03-11 07:17:02 -04:00
Rahul Behl
cd8818ca23
Fix randomize size+element queue constraints ( #5582 ) ( #7225 )
2026-03-11 06:51:32 -04:00
Christian Hecken
15c60c83aa
Internals: Remove m_mask from VerilatedVpioVar ( #7232 )
...
Unused since #5573
2026-03-10 17:57:10 -04:00
Christian Hecken
9c5f4e2483
Internals: Extend VerilatedVar to hold force control signal pointers ( #7217 )
2026-03-08 15:53:32 -04:00
Christian Hecken
0019c12242
Fix vpi_handle_by_name generated scope retrieval ( #7187 repair) ( #7214 )
...
Co-authored-by: Christian Hecken <christian.hecken@ibm.com>
2026-03-07 20:36:29 -05:00
Geza Lore
cedec65c39
Change array tracing to always dump left index to right index ( #7205 )
...
Also add array bounds and struct/union member counts to trace pushPrefix
(not used by vcd/fst/saif). Together these improve consistency in some
waveform formats.
2026-03-06 09:32:08 +00:00
Wilson Snyder
c2d65c2e13
* Fix class extend references between queues ( #7195 ).
...
Fixes #7195 .
2026-03-05 18:04:22 -05:00
Christian Hecken
84f3cc4f48
Add VPI array indexing support in signal names ( #7097 ) ( #7187 )
2026-03-04 19:37:06 -05:00
Igor Zaworski
7acd73fede
Fix super constructor calls with local variables, by using init functions ( #6214 ) ( #6933 )
2026-03-04 17:55:55 -05:00
Yilou Wang
3bc73cc768
Support constraint imperfect distributions ( #6811 ) ( #7168 )
2026-03-03 11:23:14 -05:00
Yilou Wang
108d209bd7
Support soft constraint solving with last-wins priority ( #7124 ) ( #7166 )
2026-03-01 15:16:55 -05:00
Geza Lore
99238f67b8
Fix undefined weak 'vlog_startup_routines' on macOS
2026-02-28 16:10:59 +00:00
Szymon Gizler
1af7fa92c2
Optimize size of trace declaration object code ( #7150 )
2026-02-28 09:54:08 -05:00
Wilson Snyder
1e6c1ab106
Add VPI callback support to --main ( #7145 ).
...
Fixes #7145 .
2026-02-28 09:42:28 -05:00
Wilson Snyder
d40036239b
Fix wide conditional short circuiting ( #7155 ).
...
Fixes #7155 .
2026-02-28 09:40:10 -05:00
Wilson Snyder
9bc88ff1bc
Fix finding single DPI exports from other scopes
2026-02-24 19:06:05 -05:00
Wilson Snyder
97fd6a5a13
Support vpiScalarVal
2026-02-22 20:04:06 -05:00
Yilou Wang
1717df0261
Support solve..before constraints ( #5647 ) ( #7123 )
2026-02-22 11:33:18 -05:00
Yilou Wang
79e1f33173
Fix new <obj> shallow copy not preserving polymorphic runtime type ( #7105 ) ( #7109 )
2026-02-22 09:22:37 -05:00
Wilson Snyder
0051d91555
Fix too-short bit pack returning wrong value ( #7111 ).
...
Fixes #7111 .
2026-02-20 22:25:02 -05:00
github action
927b6fd3c1
Apply 'make format'
2026-02-21 00:40:13 +00:00
Wilson Snyder
67cc65e6f3
Fix randomize of real ( #7115 ).
...
Fixes #7115 .
2026-02-20 19:39:20 -05:00
Wilson Snyder
2d86f1373e
Support vpiBitVar ( #7107 ).
...
Fixes #7107 .
2026-02-20 05:39:38 -05:00
Wilson Snyder
0d2fcfd49d
Fix circular class reference %p-printing causing infinite recursion ( #7106 ).
...
Fixes #7106 .
2026-02-19 20:15:37 -05:00
Artur Bieniek
da28c67e60
Fix #0 delays to control fork scheduling ( #6730 repair) ( #6891 )
...
Signed-off-by: Artur Bieniek <abieniek@internships.antmicro.com>
2026-02-17 21:51:11 -05:00