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
The Host interface provides several several hooks which could be useful for monitor execution of the VM, however, it may be good to introduce a dedicated "tracing" hook so that event/debug hooks wouldn't need to be overloaded with trancing info.
To do this, we could add the following method to the Host interface:
The
Host
interface provides several several hooks which could be useful for monitor execution of the VM, however, it may be good to introduce a dedicated "tracing" hook so that event/debug hooks wouldn't need to be overloaded with trancing info.To do this, we could add the following method to the
Host
interface:Then, in the assembly, we'd introduce a new instruction:
This instruction would behave similarly to the
emit
instruction - but would triggeron_trace()
function.We could also then add an option to
ExecutionOption
to turn tracing on or off. For example, it could look something like:The text was updated successfully, but these errors were encountered: