2023-03-16 02:29:57 +03: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 <LibWasm/Types.h>
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2024-04-27 03:09:58 +03:00
|
|
|
#include <LibWeb/Bindings/MemoryPrototype.h>
|
2023-03-16 02:29:57 +03:00
|
|
|
#include <LibWeb/WebAssembly/Memory.h>
|
2023-03-16 21:11:21 +03:00
|
|
|
#include <LibWeb/WebAssembly/WebAssembly.h>
|
2023-03-16 02:29:57 +03:00
|
|
|
|
|
|
|
namespace Web::WebAssembly {
|
|
|
|
|
2023-11-19 21:47:52 +03:00
|
|
|
JS_DEFINE_ALLOCATOR(Memory);
|
|
|
|
|
2023-03-16 02:29:57 +03:00
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<Memory>> Memory::construct_impl(JS::Realm& realm, MemoryDescriptor& descriptor)
|
|
|
|
{
|
|
|
|
auto& vm = realm.vm();
|
|
|
|
|
|
|
|
Wasm::Limits limits { descriptor.initial, move(descriptor.maximum) };
|
|
|
|
Wasm::MemoryType memory_type { move(limits) };
|
|
|
|
|
2024-04-25 21:09:34 +03:00
|
|
|
auto& cache = Detail::get_cache(realm);
|
|
|
|
auto address = cache.abstract_machine().store().allocate(memory_type);
|
2023-03-16 02:29:57 +03:00
|
|
|
if (!address.has_value())
|
|
|
|
return vm.throw_completion<JS::TypeError>("Wasm Memory allocation failed"sv);
|
|
|
|
|
2023-08-13 14:05:26 +03:00
|
|
|
auto memory_object = vm.heap().allocate<Memory>(realm, realm, *address);
|
2024-04-25 21:09:34 +03:00
|
|
|
cache.abstract_machine().store().get(*address)->successful_grow_hook = [memory_object] {
|
2023-03-29 01:01:51 +03:00
|
|
|
MUST(memory_object->reset_the_memory_buffer());
|
|
|
|
};
|
|
|
|
|
|
|
|
return memory_object;
|
2023-03-16 02:29:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Memory::Memory(JS::Realm& realm, Wasm::MemoryAddress address)
|
|
|
|
: Bindings::PlatformObject(realm)
|
|
|
|
, m_address(address)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-08-07 09:41:28 +03:00
|
|
|
void Memory::initialize(JS::Realm& realm)
|
2023-03-16 02:29:57 +03:00
|
|
|
{
|
2023-08-07 09:41:28 +03:00
|
|
|
Base::initialize(realm);
|
2024-03-16 15:13:08 +03:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE_WITH_CUSTOM_NAME(Memory, WebAssembly.Memory);
|
2023-03-16 02:29:57 +03:00
|
|
|
}
|
|
|
|
|
2024-04-05 16:22:02 +03:00
|
|
|
void Memory::visit_edges(Visitor& visitor)
|
|
|
|
{
|
|
|
|
Base::visit_edges(visitor);
|
|
|
|
visitor.visit(m_buffer);
|
|
|
|
}
|
|
|
|
|
2023-03-16 02:29:57 +03:00
|
|
|
// https://webassembly.github.io/spec/js-api/#dom-memory-grow
|
|
|
|
WebIDL::ExceptionOr<u32> Memory::grow(u32 delta)
|
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
|
|
|
|
2024-04-25 21:09:34 +03:00
|
|
|
auto& context = Detail::get_cache(realm());
|
|
|
|
auto* memory = context.abstract_machine().store().get(address());
|
2023-03-16 02:29:57 +03:00
|
|
|
if (!memory)
|
|
|
|
return vm.throw_completion<JS::RangeError>("Could not find the memory instance to grow"sv);
|
|
|
|
|
|
|
|
auto previous_size = memory->size() / Wasm::Constants::page_size;
|
2023-03-29 01:01:51 +03:00
|
|
|
if (!memory->grow(delta * Wasm::Constants::page_size, Wasm::MemoryInstance::InhibitGrowCallback::Yes))
|
2023-03-16 02:29:57 +03:00
|
|
|
return vm.throw_completion<JS::RangeError>("Memory.grow() grows past the stated limit of the memory instance"sv);
|
|
|
|
|
2023-03-29 01:01:51 +03:00
|
|
|
TRY(reset_the_memory_buffer());
|
|
|
|
|
2023-03-16 02:29:57 +03:00
|
|
|
return previous_size;
|
|
|
|
}
|
|
|
|
|
2023-03-29 01:01:51 +03:00
|
|
|
// https://webassembly.github.io/spec/js-api/#reset-the-memory-buffer
|
|
|
|
WebIDL::ExceptionOr<void> Memory::reset_the_memory_buffer()
|
|
|
|
{
|
|
|
|
if (!m_buffer)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
auto& vm = this->vm();
|
|
|
|
auto& realm = *vm.current_realm();
|
|
|
|
|
2023-08-08 19:25:57 +03:00
|
|
|
MUST(JS::detach_array_buffer(vm, *m_buffer, JS::PrimitiveString::create(vm, "WebAssembly.Memory"_string)));
|
2023-03-29 01:01:51 +03:00
|
|
|
|
|
|
|
auto buffer = TRY(create_a_memory_buffer(vm, realm, m_address));
|
|
|
|
m_buffer = buffer;
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-03-16 02:29:57 +03:00
|
|
|
// https://webassembly.github.io/spec/js-api/#dom-memory-buffer
|
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer>> Memory::buffer() const
|
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
|
|
|
auto& realm = *vm.current_realm();
|
|
|
|
|
2023-03-29 01:01:51 +03:00
|
|
|
if (!m_buffer)
|
|
|
|
m_buffer = TRY(create_a_memory_buffer(vm, realm, m_address));
|
|
|
|
|
|
|
|
return JS::NonnullGCPtr(*m_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://webassembly.github.io/spec/js-api/#create-a-memory-buffer
|
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<JS::ArrayBuffer>> Memory::create_a_memory_buffer(JS::VM& vm, JS::Realm& realm, Wasm::MemoryAddress address)
|
|
|
|
{
|
2024-04-25 21:09:34 +03:00
|
|
|
auto& context = Detail::get_cache(realm);
|
|
|
|
auto* memory = context.abstract_machine().store().get(address);
|
2023-03-16 02:29:57 +03:00
|
|
|
if (!memory)
|
|
|
|
return vm.throw_completion<JS::RangeError>("Could not find the memory instance"sv);
|
|
|
|
|
|
|
|
auto array_buffer = JS::ArrayBuffer::create(realm, &memory->data());
|
2023-08-08 19:25:57 +03:00
|
|
|
array_buffer->set_detach_key(JS::PrimitiveString::create(vm, "WebAssembly.Memory"_string));
|
2023-03-16 02:29:57 +03:00
|
|
|
|
2023-03-29 01:01:51 +03:00
|
|
|
return JS::NonnullGCPtr(*array_buffer);
|
2023-03-16 02:29:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|