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
This adds an array of `ExecutionState` objects to the `VM` 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.
0 commit comments