Searched refs:section_code (Results 1 – 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/wasm/ |
D | module-decoder.cc | 184 SectionCode section_code() const { return section_code_; } in section_code() function in v8::internal::wasm::__anon81381c6b0211::WasmSectionIterator 237 uint8_t section_code = decoder_->consume_u8("section code"); in next() local 250 if (section_code == kUnknownSectionCode) { in next() 258 section_code = IdentifyUnknownSectionInternal(decoder_); in next() 263 } else if (!IsValidSectionCode(section_code)) { in next() 265 section_code); in next() 266 section_code = kUnknownSectionCode; in next() 269 : static_cast<SectionCode>(section_code); in next() 369 bool CheckSectionOrder(SectionCode section_code, in CheckSectionOrder() argument 374 SectionName(section_code), SectionName(next_section_code)); in CheckSectionOrder() [all …]
|
D | streaming-decoder.h | 38 virtual bool ProcessSection(SectionCode section_code,
|
D | module-decoder.h | 222 void DecodeSection(SectionCode section_code,
|
D | streaming-decoder.cc | 69 SectionCode section_code() const { in section_code() function in v8::internal::wasm::AsyncStreamingDecoder::SectionBuffer 179 buffer->section_code(), buffer->payload(), in ProcessSection()
|
D | module-compiler.cc | 2055 bool ProcessSection(SectionCode section_code, 2773 bool AsyncStreamingProcessor::ProcessSection(SectionCode section_code, in ProcessSection() argument 2776 TRACE_STREAMING("Process section %d ...\n", section_code); in ProcessSection() 2788 if (section_code == SectionCode::kUnknownSectionCode) { in ProcessSection() 2790 &decoder_, bytes, offset, §ion_code); in ProcessSection() 2795 if (section_code == SectionCode::kUnknownSectionCode) { in ProcessSection() 2804 decoder_.DecodeSection(section_code, bytes, offset, verify_functions); in ProcessSection()
|
/third_party/node/test/fixtures/wpt/wasm/jsapi/ |
D | wasm-module-builder.js | 563 emit_section(section_code, content_generator) { argument 565 this.emit_u8(section_code);
|