Lines Matching refs:ModuleDecoder
2274 ModuleDecoder::ModuleDecoder(const WasmFeatures& enabled) in ModuleDecoder() function in v8::internal::wasm::ModuleDecoder
2277 ModuleDecoder::~ModuleDecoder() = default;
2279 const std::shared_ptr<WasmModule>& ModuleDecoder::shared_module() const { in shared_module()
2283 void ModuleDecoder::StartDecoding( in StartDecoding()
2292 void ModuleDecoder::DecodeModuleHeader(base::Vector<const uint8_t> bytes, in DecodeModuleHeader()
2297 void ModuleDecoder::DecodeSection(SectionCode section_code, in DecodeSection()
2303 void ModuleDecoder::DecodeFunctionBody(uint32_t index, uint32_t length, in DecodeFunctionBody()
2308 void ModuleDecoder::StartCodeSection() { impl_->StartCodeSection(); } in StartCodeSection()
2310 bool ModuleDecoder::CheckFunctionsCount(uint32_t functions_count, in CheckFunctionsCount()
2315 ModuleResult ModuleDecoder::FinishDecoding(bool verify_functions) { in FinishDecoding()
2319 void ModuleDecoder::set_code_section(uint32_t offset, uint32_t size) { in set_code_section()
2323 size_t ModuleDecoder::IdentifyUnknownSection(ModuleDecoder* decoder, in IdentifyUnknownSection()
2333 bool ModuleDecoder::ok() { return impl_->ok(); } in ok()