Home
last modified time | relevance | path

Searched refs:shared_module (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/wasm/
Dwasm-engine.cc189 Isolate* isolate, std::shared_ptr<NativeModule> shared_module) { in ImportNativeModule() argument
190 CHECK_EQ(code_manager(), shared_module->code_manager()); in ImportNativeModule()
191 Vector<const byte> wire_bytes = shared_module->wire_bytes(); in ImportNativeModule()
194 WasmModuleObject::New(isolate, shared_module, script); in ImportNativeModule()
Dmodule-decoder.h135 const std::shared_ptr<WasmModule>& shared_module() const;
136 WasmModule* module() const { return shared_module().get(); } in module()
Dwasm-engine.h109 Isolate* isolate, std::shared_ptr<NativeModule> shared_module);
Dwasm-objects.cc182 std::shared_ptr<const wasm::WasmModule> shared_module, wasm::ModuleEnv& env, in New() argument
185 DCHECK_EQ(shared_module.get(), env.module); in New()
193 wasm::NativeModule::kCanAllocateMoreMemory, std::move(shared_module), in New()
Dmodule-decoder.cc921 const std::shared_ptr<WasmModule>& shared_module() const { return module_; } in shared_module() function in v8::internal::wasm::ModuleDecoderImpl
1431 const std::shared_ptr<WasmModule>& ModuleDecoder::shared_module() const { in shared_module() function in v8::internal::wasm::ModuleDecoder
1432 return impl_->shared_module(); in shared_module()
Dmodule-compiler.cc2698 decoder_.shared_module(), false); in ProcessCodeSectionHeader()
/external/v8/include/
Dv8.h4399 explicit TransferrableModule(SharedModule shared_module)
4400 : shared_module_(std::move(shared_module)) {}