Searched refs:section_code (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/wasm/ |
D | module-decoder.cc | 174 inline SectionCode section_code() const { return section_code_; } in section_code() function in v8::internal::wasm::__anonbb7684740211::WasmSectionIterator 227 uint8_t section_code = decoder_->consume_u8("section code"); in next() local 240 if (section_code == kUnknownSectionCode) { in next() 248 section_code = IdentifyUnknownSectionInternal(decoder_); in next() 253 } else if (!IsValidSectionCode(section_code)) { in next() 255 section_code); in next() 256 section_code = kUnknownSectionCode; in next() 259 : static_cast<SectionCode>(section_code); in next() 359 bool CheckSectionOrder(SectionCode section_code, in CheckSectionOrder() argument 364 SectionName(section_code), SectionName(next_section_code)); in CheckSectionOrder() [all …]
|
D | streaming-decoder.h | 35 virtual bool ProcessSection(SectionCode section_code,
|
D | module-decoder.h | 210 void DecodeSection(SectionCode section_code, Vector<const uint8_t> bytes,
|
D | streaming-decoder.cc | 68 SectionCode section_code() const { in section_code() function in v8::internal::wasm::AsyncStreamingDecoder::SectionBuffer 176 buffer->section_code(), buffer->payload(), in ProcessSection()
|
D | module-compiler.cc | 1735 bool ProcessSection(SectionCode section_code, Vector<const uint8_t> bytes, 2434 bool AsyncStreamingProcessor::ProcessSection(SectionCode section_code, in ProcessSection() argument 2437 TRACE_STREAMING("Process section %d ...\n", section_code); in ProcessSection() 2449 if (section_code == SectionCode::kUnknownSectionCode) { in ProcessSection() 2451 &decoder_, bytes, offset, §ion_code); in ProcessSection() 2456 if (section_code == SectionCode::kUnknownSectionCode) { in ProcessSection() 2465 decoder_.DecodeSection(section_code, bytes, offset, verify_functions); in ProcessSection()
|