Home
last modified time | relevance | path

Searched refs:SectionCode (Results 1 – 8 of 8) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dmodule-decoder.h35 const char* SectionName(SectionCode code);
222 void DecodeSection(SectionCode section_code,
250 uint32_t offset, SectionCode* result);
Dstreaming-decoder.cc69 SectionCode section_code() const { in section_code()
70 return static_cast<SectionCode>(bytes_.start()[0]); in section_code()
590 SectionName(static_cast<SectionCode>(id_))); in Next()
591 if (id_ == SectionCode::kCodeSectionCode) { in Next()
613 if (section_id_ == SectionCode::kCodeSectionCode) { in NextWithValue()
623 if (section_id_ == SectionCode::kCodeSectionCode) { in NextWithValue()
Dmodule-decoder.cc62 const char* SectionName(SectionCode code) { in SectionName()
136 SectionCode IdentifyUnknownSectionInternal(Decoder* decoder) { in IdentifyUnknownSectionInternal()
148 using SpecialSectionPair = std::pair<base::Vector<const char>, SectionCode>; in IdentifyUnknownSectionInternal()
184 SectionCode section_code() const { return section_code_; } in section_code()
224 SectionCode section_code_;
269 : static_cast<SectionCode>(section_code); in next()
369 bool CheckSectionOrder(SectionCode section_code, in CheckSectionOrder()
370 SectionCode prev_section_code, in CheckSectionOrder()
371 SectionCode next_section_code) { in CheckSectionOrder()
383 bool CheckUnorderedSection(SectionCode section_code) { in CheckUnorderedSection()
[all …]
Dstreaming-decoder.h38 virtual bool ProcessSection(SectionCode section_code,
Dwasm-constants.h91 enum SectionCode : int8_t { enum
Dwasm-engine.cc299 SectionCode section_id = SectionCode::kUnknownSectionCode; in PrefixHash()
301 section_id = static_cast<SectionCode>(decoder.consume_u8()); in PrefixHash()
303 if (section_id == SectionCode::kCodeSectionCode) { in PrefixHash()
Dmodule-compiler.cc2055 bool ProcessSection(SectionCode section_code,
2773 bool AsyncStreamingProcessor::ProcessSection(SectionCode section_code, in ProcessSection()
2788 if (section_code == SectionCode::kUnknownSectionCode) { in ProcessSection()
2795 if (section_code == SectionCode::kUnknownSectionCode) { in ProcessSection()
Dwasm-module-builder.cc26 size_t EmitSection(SectionCode code, ZoneBuffer* buffer) { in EmitSection()