Home
last modified time | relevance | path

Searched defs:InterpreterCode (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/wasm/
Dwasm-interpreter.cc647 struct InterpreterCode { struct
648 const WasmFunction* function; // wasm function
649 BodyLocalDecls locals; // local declarations
650 const byte* orig_start; // start of original code
651 const byte* orig_end; // end of original code
652 byte* start; // start of (maybe altered) code
653 byte* end; // end of (maybe altered) code
654 SideTable* side_table; // precomputed side table for control flow.
656 const byte* at(pc_t pc) { return start + pc; } in at()