ladybird/Libraries/LibWeb/WebAssembly/Module.cpp

49 lines
1.5 KiB
C++
Raw Normal View History

2023-03-15 14:47:54 -04:00
/*
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJS/Runtime/Realm.h>
#include <LibJS/Runtime/VM.h>
#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/Bindings/ModulePrototype.h>
#include <LibWeb/WebAssembly/Module.h>
#include <LibWeb/WebAssembly/WebAssembly.h>
#include <LibWeb/WebIDL/AbstractOperations.h>
#include <LibWeb/WebIDL/Buffers.h>
2023-03-15 14:47:54 -04:00
namespace Web::WebAssembly {
GC_DEFINE_ALLOCATOR(Module);
WebIDL::ExceptionOr<GC::Ref<Module>> Module::construct_impl(JS::Realm& realm, GC::Root<WebIDL::BufferSource>& bytes)
2023-03-15 14:47:54 -04:00
{
auto& vm = realm.vm();
auto stable_bytes_or_error = WebIDL::get_buffer_source_copy(bytes->raw_object());
if (stable_bytes_or_error.is_error()) {
VERIFY(stable_bytes_or_error.error().code() == ENOMEM);
return vm.throw_completion<JS::InternalError>(vm.error_message(JS::VM::ErrorMessage::OutOfMemory));
}
auto stable_bytes = stable_bytes_or_error.release_value();
auto compiled_module = TRY(Detail::compile_a_webassembly_module(vm, move(stable_bytes)));
return realm.create<Module>(realm, move(compiled_module));
2023-03-15 14:47:54 -04:00
}
Module::Module(JS::Realm& realm, NonnullRefPtr<Detail::CompiledWebAssemblyModule> compiled_module)
2023-03-15 14:47:54 -04:00
: Bindings::PlatformObject(realm)
, m_compiled_module(move(compiled_module))
2023-03-15 14:47:54 -04:00
{
}
void Module::initialize(JS::Realm& realm)
2023-03-15 14:47:54 -04:00
{
WEB_SET_PROTOTYPE_FOR_INTERFACE_WITH_CUSTOM_NAME(Module, WebAssembly.Module);
Base::initialize(realm);
2023-03-15 14:47:54 -04:00
}
}