Closed chfast closed 2 months ago
Attention: Patch coverage is 81.25000%
with 3 lines
in your changes missing coverage. Please review.
Project coverage is 93.98%. Comparing base (
1358b17
) to head (112ff3c
). Report is 3 commits behind head on master.
Files with missing lines | Patch % | Lines |
---|---|---|
test/bench/helpers.hpp | 0.00% | 3 Missing :warning: |
This adds an array of
ExecutionState
objects to theVM
instance. They are used internally in the Baseline interpreter instead of passing one via API. This removes the need of maintaining object pool for execution states.However, this also makes the
VM
non-thread safe, but it is fine for current users. We can improve on this in the future by spiting the the VM into two parts: non-thread safe opaque execution context and a thread-safe VM with user configuration.