Searched refs:native_module_ (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/wasm/ |
D | wasm-serialization.cc | 226 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 …]
|
D | function-compiler.h | 102 NativeModule* native_module() const { return native_module_; } in native_module() 115 NativeModule* native_module_; variable
|
D | module-compiler.cc | 459 : 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 …]
|
D | wasm-code-manager.cc | 180 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()
|
D | wasm-code-manager.h | 120 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_;
|
D | wasm-serialization.h | 30 NativeModule* native_module_; variable
|
D | module-compiler.h | 159 NativeModule* native_module_ = nullptr; variable
|
D | function-compiler.cc | 57 native_module_(native_module), in WasmCompilationUnit()
|
/external/v8/src/wasm/baseline/ |
D | liftoff-compiler.cc | 1858 &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/ |
D | pipeline.cc | 1012 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()
|
D | wasm-compiler.cc | 5070 wasm_unit_->native_module_->enabled_features(), wasm_unit_->env_->module, in BuildGraphForWasmFunction() 5187 wasm_unit_->native_module_, wasm_unit_->func_index_, in ExecuteCompilation()
|