Lines Matching refs:ModuleDecoder
2209 ModuleDecoder::ModuleDecoder(const WasmFeatures& enabled) in ModuleDecoder() function in v8::internal::wasm::ModuleDecoder
2212 ModuleDecoder::~ModuleDecoder() = default;
2214 const std::shared_ptr<WasmModule>& ModuleDecoder::shared_module() const { in shared_module()
2218 void ModuleDecoder::StartDecoding( in StartDecoding()
2227 void ModuleDecoder::DecodeModuleHeader(Vector<const uint8_t> bytes, in DecodeModuleHeader()
2232 void ModuleDecoder::DecodeSection(SectionCode section_code, in DecodeSection()
2238 void ModuleDecoder::DecodeFunctionBody(uint32_t index, uint32_t length, in DecodeFunctionBody()
2243 bool ModuleDecoder::CheckFunctionsCount(uint32_t functions_count, in CheckFunctionsCount()
2248 ModuleResult ModuleDecoder::FinishDecoding(bool verify_functions) { in FinishDecoding()
2252 void ModuleDecoder::set_code_section(uint32_t offset, uint32_t size) { in set_code_section()
2256 size_t ModuleDecoder::IdentifyUnknownSection(ModuleDecoder* decoder, in IdentifyUnknownSection()
2266 bool ModuleDecoder::ok() { return impl_->ok(); } in ok()