1 #ifndef RBX_INTERPRETER_HPP
2 #define RBX_INTERPRETER_HPP
7 #include "call_frame.hpp"
8 #include "instructions.hpp"
16 static const intptr_t interpreter_addresses
[];
20 static void prepare(STATE
, CompiledCode
* compiled_code
, MachineCode
* machine_code
);
21 static intptr_t execute(STATE
, MachineCode
* const machine_code
);