Searched defs:InterpreterCode (Results 1 – 1 of 1) sorted by relevance
873 struct InterpreterCode { struct874 const WasmFunction* function; // wasm function875 AstLocalDecls locals; // local declarations876 const byte* orig_start; // start of original code877 const byte* orig_end; // end of original code878 byte* start; // start of (maybe altered) code879 byte* end; // end of (maybe altered) code880 ControlTransfers* targets; // helper for control flow.882 const byte* at(pc_t pc) { return start + pc; } in at()