Searched defs:InterpreterCode (Results 1 – 1 of 1) sorted by relevance
647 struct InterpreterCode { struct648 const WasmFunction* function; // wasm function649 BodyLocalDecls locals; // local declarations650 const byte* orig_start; // start of original code651 const byte* orig_end; // end of original code652 byte* start; // start of (maybe altered) code653 byte* end; // end of (maybe altered) code654 SideTable* side_table; // precomputed side table for control flow.656 const byte* at(pc_t pc) { return start + pc; } in at()