Searched refs:maybe_module (Results 1 - 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-js.cc | 754 auto maybe_module = GetFirstArgumentAsModule(args, &thrower); in WebAssemblyModuleImports() local 756 auto imports = i::wasm::GetImports(i_isolate, maybe_module.ToHandleChecked()); in WebAssemblyModuleImports() 767 auto maybe_module = GetFirstArgumentAsModule(args, &thrower); in WebAssemblyModuleExports() local 769 auto exports = i::wasm::GetExports(i_isolate, maybe_module.ToHandleChecked()); in WebAssemblyModuleExports() 782 auto maybe_module = GetFirstArgumentAsModule(args, &thrower); in WebAssemblyModuleCustomSections() local 795 i::wasm::GetCustomSections(i_isolate, maybe_module.ToHandleChecked(), in WebAssemblyModuleCustomSections() 819 i::MaybeHandle<i::WasmModuleObject> maybe_module = in WebAssemblyInstance() local 823 i::Handle<i::WasmModuleObject> module_obj = maybe_module.ToHandleChecked(); in WebAssemblyInstance()
|
/third_party/node/src/ |
H A D | js_native_api_v8.cc | 5285 v8::MaybeLocal<v8::WasmModuleObject> maybe_module; 5287 maybe_module = v8::WasmModuleObject::Compile(env->isolate, {wasmBytecode, wasmBytecodeLength}); 5291 maybe_module = v8::WasmModuleObject::DeserializeOrCompile( 5301 CHECK_MAYBE_EMPTY(env, maybe_module, JSVM_GENERIC_FAILURE); 5302 *wasmModule = v8impl::JsValueFromV8LocalValue(maybe_module.ToLocalChecked());
|
Completed in 13 milliseconds