Home
last modified time | relevance | path

Searched refs:native_module_ (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/wasm/
Dwasm-serialization.cc226 const NativeModule* const native_module_; member in v8::internal::wasm::NativeModuleSerializer
241 native_module_(module), in NativeModuleSerializer()
245 DCHECK_NOT_NULL(native_module_); in NativeModuleSerializer()
250 native_module_->runtime_stub(static_cast<WasmCode::RuntimeStubId>(i)) in NativeModuleSerializer()
279 writer->Write(native_module_->num_functions()); in WriteHeader()
280 writer->Write(native_module_->num_imported_functions()); in WriteHeader()
339 native_module_->GetFunctionIndexFromJumpTableSlot(orig_target); in WriteCode()
387 native_module_(native_module), in WasmSerializer()
392 NativeModuleSerializer serializer(isolate_, native_module_, code_table); in GetSerializedNativeModuleSize()
398 NativeModuleSerializer serializer(isolate_, native_module_, code_table); in SerializeNativeModule()
[all …]
Dfunction-compiler.h102 NativeModule* native_module() const { return native_module_; } in native_module()
115 NativeModule* native_module_; variable
Dmodule-compiler.cc459 : native_module_(native_module), in CompilationUnitBuilder()
500 native_module_, in CreateUnit()
506 NativeModule* native_module_; member in v8::internal::wasm::__anonc090e3370211::CompilationUnitBuilder
2205 if (native_module_) native_module_->compilation_state()->Abort(); in ~AsyncCompileJob()
2224 native_module_->LogWasmCodes(isolate_); in FinishCompile()
2227 auto compilation_state = native_module_->compilation_state(); in FinishCompile()
2460 job_->native_module_ = job_->module_object_->native_module(); in RunInForeground()
2480 job_->native_module_->compilation_state(); in RunInForeground()
2511 DCHECK(!job->native_module_->compilation_state() in RunInForeground()
2537 InitializeCompilationUnits(job_->native_module_); in RunInForeground()
[all …]
Dwasm-code-manager.cc180 WasmCode* code = native_module_->Lookup(target); in Validate()
188 WasmCode* code = native_module_->Lookup(target); in Validate()
1036 : native_module_(native_module) { in NativeModuleModificationScope()
1037 if (FLAG_wasm_write_protect_code_memory && native_module_ && in NativeModuleModificationScope()
1038 (native_module_->modification_scope_depth_++) == 0) { in NativeModuleModificationScope()
1039 bool success = native_module_->SetExecutable(false); in NativeModuleModificationScope()
1045 if (FLAG_wasm_write_protect_code_memory && native_module_ && in ~NativeModuleModificationScope()
1046 (native_module_->modification_scope_depth_--) == 1) { in ~NativeModuleModificationScope()
1047 bool success = native_module_->SetExecutable(true); in ~NativeModuleModificationScope()
Dwasm-code-manager.h120 NativeModule* native_module() const { return native_module_; } in native_module()
164 native_module_(native_module), in WasmCode()
191 NativeModule* native_module_ = nullptr; variable
498 NativeModule* native_module_;
Dwasm-serialization.h30 NativeModule* native_module_; variable
Dmodule-compiler.h159 NativeModule* native_module_ = nullptr; variable
Dfunction-compiler.cc57 native_module_(native_module), in WasmCompilationUnit()
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc1858 &zone, module, wasm_unit_->native_module_->enabled_features(), detected, in ExecuteCompilation()
1890 code_ = wasm_unit_->native_module_->AddCode( in ExecuteCompilation()
1894 wasm_unit_->native_module_->PublishCode(code_); in ExecuteCompilation()
/external/v8/src/compiler/
Dpipeline.cc1012 native_module_(native_module), in PipelineWasmCompilationJob()
1026 wasm::NativeModule* native_module_; member in v8::internal::compiler::PipelineWasmCompilationJob
1080 wasm::WasmCode* code = native_module_->AddCode( in ExecuteJobImpl()
Dwasm-compiler.cc5070 wasm_unit_->native_module_->enabled_features(), wasm_unit_->env_->module, in BuildGraphForWasmFunction()
5187 wasm_unit_->native_module_, wasm_unit_->func_index_, in ExecuteCompilation()