Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dwasm-interpreter.cc873 struct InterpreterCode { struct
874 const WasmFunction* function; // wasm function
875 AstLocalDecls locals; // local declarations
876 const byte* orig_start; // start of original code
877 const byte* orig_end; // end of original code
878 byte* start; // start of (maybe altered) code
879 byte* end; // end of (maybe altered) code
880 ControlTransfers* targets; // helper for control flow.
882 const byte* at(pc_t pc) { return start + pc; } in at()