Searched refs:section_code (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/wasm/ |
D | module-decoder.cc | 155 inline SectionCode section_code() const { return section_code_; } in section_code() function in v8::internal::wasm::__anone95501b20211::WasmSectionIterator 208 uint8_t section_code = decoder_.consume_u8("section code"); in next() local 221 if (section_code == kUnknownSectionCode) { in next() 223 section_code = in next() 228 } else if (!IsValidSectionCode(section_code)) { in next() 230 section_code); in next() 231 section_code = kUnknownSectionCode; in next() 234 : static_cast<SectionCode>(section_code); in next() 331 void DecodeSection(SectionCode section_code, Vector<const uint8_t> bytes, in DecodeSection() argument 335 TRACE("Section: %s\n", SectionName(section_code)); in DecodeSection() [all …]
|
D | streaming-decoder.h | 29 virtual bool ProcessSection(SectionCode section_code, 99 SectionCode section_code() const { in section_code() function 229 buffer->section_code(), buffer->payload(), in ProcessSection()
|
D | module-decoder.h | 125 void DecodeSection(SectionCode section_code, Vector<const uint8_t> bytes,
|
D | module-compiler.cc | 2167 bool ProcessSection(SectionCode section_code, Vector<const uint8_t> bytes, 2654 bool AsyncStreamingProcessor::ProcessSection(SectionCode section_code, in ProcessSection() argument 2657 TRACE_STREAMING("Process section %d ...\n", section_code); in ProcessSection() 2664 if (section_code == SectionCode::kUnknownSectionCode) { in ProcessSection() 2666 section_code = ModuleDecoder::IdentifyUnknownSection( in ProcessSection() 2668 if (section_code == SectionCode::kUnknownSectionCode) { in ProcessSection() 2677 decoder_.DecodeSection(section_code, bytes, offset, verify_functions); in ProcessSection()
|