Module interpreter_loop

Source
Expand description

This module solely contains the actual interpretation loop that matches instructions, interpreting the WASM bytecode

ยงNote to Developer:

  1. There must be only imports and one impl with one function (run) in it.
  2. This module must only use RuntimeError and never Error.

Functionsยง

calculate_mem_address ๐Ÿ”’
data_drop ๐Ÿ”’
do_sidetable_control_transfer ๐Ÿ”’
elem_drop ๐Ÿ”’
from_lanes ๐Ÿ”’
memory_init ๐Ÿ”’
run ๐Ÿ”’
Interprets wasm native functions. Parameters and return values are passed on the stack.
table_init ๐Ÿ”’
to_lanes ๐Ÿ”’