Searched refs:shared_module (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/wasm/ |
D | wasm-engine.cc | 189 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()
|
D | module-decoder.h | 135 const std::shared_ptr<WasmModule>& shared_module() const; 136 WasmModule* module() const { return shared_module().get(); } in module()
|
D | wasm-engine.h | 109 Isolate* isolate, std::shared_ptr<NativeModule> shared_module);
|
D | wasm-objects.cc | 182 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()
|
D | module-decoder.cc | 921 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()
|
D | module-compiler.cc | 2698 decoder_.shared_module(), false); in ProcessCodeSectionHeader()
|
/external/v8/include/ |
D | v8.h | 4399 explicit TransferrableModule(SharedModule shared_module) 4400 : shared_module_(std::move(shared_module)) {}
|