verilator/include
Geza Lore 80b08b71aa
Support NBAs to arrays inside loops (#5092)
For NBAs that might execute a dynamic number of times in a single
evaluation (specifically: those that assign to array elements inside
loops), we introduce a new run-time VlNBACommitQueue data-structure
(currently a vector), which stores all pending updates and the necessary
info to reconstruct the LHS reference of the AstAssignDly at run-time.

All variables needing a commit queue has their corresponding unique
commit queue.

All NBAs to a variable that requires a commit queue go through the
commit queue. This is necessary to preserve update order in sequential
code, e.g.:
 a[7] <= 10
 for (int i = 1 ; i < 10; ++i) a[i] <= i;
 a[2] <= 10
needs to end with array elements 1..9 being 1, 10, 3, 4, 5, 6, 7, 8, 9.

This enables supporting common forms of NBAs to arrays on the left hand
side of <= in non-suspendable/non-fork code. (Suspendable/fork
implementation is unclear to me so I left it unchanged, see #5084).

Any NBA that does not need a commit queue (i.e.: those that were
supported before), use the same scheme as before, and this patch should
have no effect on the generated code for those NBAs.
2024-05-03 07:45:49 -04:00
..
gtkwave Gtkwave: Update from upstream for warning cleanup (#4941) 2024-03-03 19:24:03 -05:00
vltstd Support 1800-2023 DPI headers, svGetTime/svgGetTimeUnit/svGetTimePrecision methods. 2024-03-02 10:15:19 -05:00
.gitignore Support VPI product info, warning calls, etc, bug588. 2013-01-17 21:40:37 -05:00
verilated_config.h.in Copyright year update 2024-01-01 03:19:59 -05:00
verilated_cov_key.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_cov.cpp cppcheck fixes. No functional change. 2024-03-07 19:20:00 -05:00
verilated_cov.h cppcheck fixes. No functional change. 2024-03-07 19:20:00 -05:00
verilated_dpi.cpp Support 1800-2023 DPI headers, svGetTime/svgGetTimeUnit/svGetTimePrecision methods. 2024-03-02 10:15:19 -05:00
verilated_dpi.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_fst_c.cpp Updat GTKwave libraries from upstream 2024-01-21 13:59:54 -05:00
verilated_fst_c.h Fix tracing replicated hierarchical models (#5027) (#5029) 2024-03-30 16:00:52 -04:00
verilated_fst_sc.cpp Copyright year update 2024-01-01 03:19:59 -05:00
verilated_fst_sc.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_funcs.h Tests: update style 2024-04-13 08:02:25 -04:00
verilated_imp.h Internals: Use C++14 quoted literal std::string 2024-01-28 21:00:20 -05:00
verilated_intrinsics.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_probdist.cpp Internals: Remove extra single-line {}. No functional change. 2024-03-27 17:57:49 -04:00
verilated_profiler.cpp Internals: Mark structs final/VL_NOT_FINAL. No functional change intended. 2024-01-20 15:06:46 -05:00
verilated_profiler.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_save.cpp Internals: Use C++14 quoted literal std::string 2024-01-28 21:00:20 -05:00
verilated_save.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_sc_trace.h Fix warnings in verilated_sc_trace.h for Clang. No functional change. (#4807) (#4827) 2024-01-17 19:30:42 -05:00
verilated_sc.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_std.sv Copyright year update 2024-01-01 03:19:59 -05:00
verilated_sym_props.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_syms.h Internals: Mark structs final/VL_NOT_FINAL. No functional change intended. 2024-01-20 15:06:46 -05:00
verilated_threads.cpp Copyright year update 2024-01-01 03:19:59 -05:00
verilated_threads.h Fix some MSVC warnings 2024-01-28 14:47:14 -05:00
verilated_timing.cpp Fix consecutive zero-delays (#5038) 2024-04-05 16:48:47 -04:00
verilated_timing.h Fix width extension on delays (#5045). 2024-04-13 08:16:59 -04:00
verilated_trace_imp.h Internals: Move vl_timescaled_double to verilated_funcs.h. No functional change intended 2024-03-10 22:34:32 -04:00
verilated_trace.h Fix MacOS missing <type_traits> header (#5096) (#5097) 2024-05-02 21:38:36 -04:00
verilated_types.h Support NBAs to arrays inside loops (#5092) 2024-05-03 07:45:49 -04:00
verilated_vcd_c.cpp Fix tracing replicated hierarchical models (#5027) (#5029) 2024-03-30 16:00:52 -04:00
verilated_vcd_c.h Fix tracing replicated hierarchical models (#5027) (#5029) 2024-03-30 16:00:52 -04:00
verilated_vcd_sc.cpp Copyright year update 2024-01-01 03:19:59 -05:00
verilated_vcd_sc.h Copyright year update 2024-01-01 03:19:59 -05:00
verilated_vpi.cpp Support vpiInertialDelay (#5087) 2024-05-01 18:56:50 -04:00
verilated_vpi.h Support vpiInertialDelay (#5087) 2024-05-01 18:56:50 -04:00
verilated.cpp Tests: Check for bad event methods 2024-04-28 13:10:25 -04:00
verilated.h Fix tracing replicated hierarchical models (#5027) (#5029) 2024-03-30 16:00:52 -04:00
verilated.mk.in Remove $(info) which cannot be silenced by -MAKEFLAGS '--quiet' (#5059) 2024-04-20 08:48:16 -05:00
verilated.v Copyright year update 2024-01-01 03:19:59 -05:00
verilatedos_c.h Internals: Add VL_MT_SAFE flags 2024-03-30 11:54:29 -04:00
verilatedos.h Internals: Add VL_MT_SAFE flags 2024-03-30 11:54:29 -04:00