verilator/include
Krzysztof Bieganski 39af5d020e
Timing support (#3363)
Adds timing support to Verilator. It makes it possible to use delays,
event controls within processes (not just at the start), wait
statements, and forks.

Building a design with those constructs requires a compiler that
supports C++20 coroutines (GCC 10, Clang 5).

The basic idea is to have processes and tasks with delays/event controls
implemented as C++20 coroutines. This allows us to suspend and resume
them at any time.

There are five main runtime classes responsible for managing suspended
coroutines:
* `VlCoroutineHandle`, a wrapper over C++20's `std::coroutine_handle`
  with move semantics and automatic cleanup.
* `VlDelayScheduler`, for coroutines suspended by delays. It resumes
  them at a proper simulation time.
* `VlTriggerScheduler`, for coroutines suspended by event controls. It
  resumes them if its corresponding trigger was set.
* `VlForkSync`, used for syncing `fork..join` and `fork..join_any`
  blocks.
* `VlCoroutine`, the return type of all verilated coroutines. It allows
  for suspending a stack of coroutines (normally, C++ coroutines are
  stackless).

There is a new visitor in `V3Timing.cpp` which:
  * scales delays according to the timescale,
  * simplifies intra-assignment timing controls and net delays into
    regular timing controls and assignments,
  * simplifies wait statements into loops with event controls,
  * marks processes and tasks with timing controls in them as
    suspendable,
  * creates delay, trigger scheduler, and fork sync variables,
  * transforms timing controls and fork joins into C++ awaits

There are new functions in `V3SchedTiming.cpp` (used by `V3Sched.cpp`)
that integrate static scheduling with timing. This involves providing
external domains for variables, so that the necessary combinational
logic gets triggered after coroutine resumption, as well as statements
that need to be injected into the design eval function to perform this
resumption at the correct time.

There is also a function that transforms forked processes into separate
functions.

See the comments in `verilated_timing.h`, `verilated_timing.cpp`,
`V3Timing.cpp`, and `V3SchedTiming.cpp`, as well as the internals
documentation for more details.

Signed-off-by: Krzysztof Bieganski <kbieganski@antmicro.com>
2022-08-22 13:26:32 +01:00
..
gtkwave GTKWave header updates from upstream. 2022-02-09 21:56:22 -05:00
vltstd Fix DPI open array handling issues, and do internal coverage (#2350). 2020-12-09 22:15:34 -05:00
.gitignore Support VPI product info, warning calls, etc, bug588. 2013-01-17 21:40:37 -05:00
verilated_config.h.in Add VERILATOR_VERSION_INTEGER for determining API (#3343). 2022-03-12 11:17:39 -05:00
verilated_cov_key.h Copyright year update. 2022-01-01 08:26:40 -05:00
verilated_cov.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_cov.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_dpi.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_dpi.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_fst_c.cpp Internals: Fix some clang-tidy issues. No functional change intended. 2022-07-30 11:54:28 -04:00
verilated_fst_c.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_fst_sc.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_fst_sc.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_funcs.h Remove deprecated and unused timescale override defines 2022-07-20 14:06:09 +01:00
verilated_heavy.h Copyright year update. 2022-01-01 08:26:40 -05:00
verilated_imp.h Internals: Fix some clang-tidy issues. No functional change intended. 2022-07-30 11:54:28 -04:00
verilated_intrinsics.h Copyright year update. 2022-01-01 08:26:40 -05:00
verilated_profiler.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_profiler.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_save.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_save.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_sc.h Deprecate 'vluint64_t' and similar types (#3255). 2022-03-27 15:27:40 -04:00
verilated_sym_props.h Internals: Fix some clang-tidy issues. No functional change intended. 2022-07-30 11:54:28 -04:00
verilated_syms.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_threads.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_threads.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_timing.cpp Timing support (#3363) 2022-08-22 13:26:32 +01:00
verilated_timing.h Timing support (#3363) 2022-08-22 13:26:32 +01:00
verilated_trace_defs.h Copyright year update. 2022-01-01 08:26:40 -05:00
verilated_trace_imp.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_trace.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_types.h Timing support (#3363) 2022-08-22 13:26:32 +01:00
verilated_vcd_c.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_vcd_c.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_vcd_sc.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_vcd_sc.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_vpi.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated_vpi.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated.cpp Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated.h Update clang-format config and apply 2022-08-05 12:00:24 +01:00
verilated.mk.in Timing support (#3363) 2022-08-22 13:26:32 +01:00
verilated.v Copyright year update. 2022-01-01 08:26:40 -05:00
verilatedos.h Internals: Cleanup ifdef, move up not under compilver version ifdef 2022-08-11 17:41:43 -04:00