Lines Matching defs:decoder_
2085 ModuleDecoder decoder_;
2708 : decoder_(job->enabled_features_),
2760 decoder_.StartDecoding(job_->isolate()->counters(),
2763 decoder_.DecodeModuleHeader(bytes, offset);
2764 if (!decoder_.ok()) {
2765 FinishAsyncCompileJobWithError(decoder_.FinishDecoding(false).error());
2790 &decoder_, bytes, offset, §ion_code);
2791 if (!decoder_.ok()) {
2792 FinishAsyncCompileJobWithError(decoder_.FinishDecoding(false).error());
2804 decoder_.DecodeSection(section_code, bytes, offset, verify_functions);
2805 if (!decoder_.ok()) {
2806 FinishAsyncCompileJobWithError(decoder_.FinishDecoding(false).error());
2821 decoder_.StartCodeSection();
2822 if (!decoder_.CheckFunctionsCount(static_cast<uint32_t>(num_functions),
2824 FinishAsyncCompileJobWithError(decoder_.FinishDecoding(false).error());
2828 decoder_.set_code_section(code_section_start,
2842 static_cast<int>(decoder_.module()->num_imported_functions);
2843 DCHECK_EQ(kWasmOrigin, decoder_.module()->origin);
2850 decoder_.shared_module(), false, code_size_estimate);
2869 decoder_.DecodeFunctionBody(
2872 const WasmModule* module = decoder_.module();
2875 num_functions_ + decoder_.module()->num_imported_functions;
2926 ModuleResult result = decoder_.FinishDecoding(false);