Home
last modified time | relevance | path

Searched refs:read_prefixed_opcode (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Ddecoder.h141 WasmOpcode read_prefixed_opcode(const byte* pc) { in read_prefixed_opcode() function
143 return read_prefixed_opcode<validate>(pc, &len); in read_prefixed_opcode()
150 WasmOpcode read_prefixed_opcode(const byte* pc, uint32_t* length,
Dfunction-body-decoder.h185 return read_prefixed_opcode<Decoder::kNoValidation>(pc_); in NON_EXPORTED_BASE()
Dfunction-body-decoder-impl.h1712 opcode = decoder->read_prefixed_opcode<validate>(pc, &length);
1768 opcode = decoder->read_prefixed_opcode<validate>(pc, &length);
1802 opcode = decoder->read_prefixed_opcode<validate>(pc, &length,
1824 decoder->read_prefixed_opcode<validate>(pc, &length, "gc_index");
2016 opcode = this->read_prefixed_opcode<validate>(pc);
2042 opcode = this->read_prefixed_opcode<validate>(pc);
2298 opcode = this->template read_prefixed_opcode<Decoder::kFullValidation>(pc);
3421 WasmOpcode full_opcode = this->template read_prefixed_opcode<validate>(
3441 WasmOpcode full_opcode = this->template read_prefixed_opcode<validate>(
3454 WasmOpcode full_opcode = this->template read_prefixed_opcode<validate>(
[all …]
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-compiler.cc1142 ? decoder->read_prefixed_opcode<Decoder::kFullValidation>( in NextInstruction()