You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the `verif.simulation` op as an entry point for simulations. The op
works in a fashion similar to `verif.formal`, but encodes a simulation
run instead of a formal check.
This operation defines a simulation unit test that can be automatically run
362
+
by various tools. To describe a test, the body of this op should contain the
363
+
hardware to be tested, alongside any necessary forms of stimulus generation.
364
+
365
+
### Inputs
366
+
367
+
The body has two block arguments as input values: a "clock" signal of type
368
+
`!seq.clock` and an "init" signal of type `i1`. The clock signal starts at 0
369
+
and continuously toggles between 0 and 1 throughout the simulation. The init
370
+
signal starts at 1, remains 1 during a single 0-to-1 transition of the
371
+
clock, and then drops to 0 for the remainder of the simulation.
372
+
373
+
### Outputs
374
+
375
+
The body must have a `verif.yield` terminator op with exactly two operands:
376
+
377
+
The first operand is a "done" signal of type `i1` which indicates the end of
378
+
the simulation. The simulation stops when the done signal is 1 during a
379
+
0-to-1 transition of the clock. No additional clock toggles occur once done
380
+
has been sampled as 1.
381
+
382
+
The second operand is an "exit code" signal which may be of any integer
383
+
type. It indicates success of a test as 0, or failure as any non-zero
384
+
integer. The exit code is sampled at the same time as the done signal. Only
385
+
the zero versus non-zero value distinction is relevant to indicate
386
+
simulation success and must be preserved. The exact non-zero value is for
387
+
informational purposes only and may not be reproduced accurately by
388
+
simulators. Simulators may in the worst case map all non-zero values to 1,
389
+
reducing the exit code to a single bit indicating failure or success.
390
+
391
+
### Schedule
392
+
393
+
The clock and init values adhere to the following schedule during
394
+
simulation:
395
+
396
+
| Time | Clock | Init | Comment
397
+
|-----------|-------|-------| ----
398
+
| t0 (>=0s) | undef | undef | Clock and init may initially be undefined.
399
+
| t1 (>=t0) | 0 | 1 | Initialization code (e.g., `seq.initial`, Verilog `initial` procedures) may run before or after clock and init change to their initial value.
400
+
| t2 (>t1) | 1 | 1 | Single rising clock edge occurs while init is high.
401
+
| t3 (>t2) | 0 | 1 | Init may stay during the falling clock edge.
402
+
| t4 (>=t3) | 0 | 0 | Init goes to 0 before second rising clock edge.
0 commit comments