
With this change, we now have ~1200 CellAllocators across both LibJS and LibWeb in a normal WebContent instance. This gives us a minimum heap size of 4.7 MiB in the scenario where we only have one cell allocated per type. Of course, in practice there will be many more of each type, so the effective overhead is quite a bit smaller than that in practice. I left a few types unconverted to this mechanism because I got tired of doing this. :^)
37 lines
911 B
C++
37 lines
911 B
C++
/*
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Forward.h>
|
|
#include <LibJS/Heap/GCPtr.h>
|
|
#include <LibJS/Heap/Handle.h>
|
|
#include <LibWasm/Types.h>
|
|
#include <LibWeb/Bindings/ExceptionOrUtils.h>
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
namespace Web::WebAssembly {
|
|
|
|
class Module : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(Module, Bindings::PlatformObject);
|
|
JS_DECLARE_ALLOCATOR(Module);
|
|
|
|
public:
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<Module>> construct_impl(JS::Realm&, JS::Handle<JS::Object>& bytes);
|
|
|
|
size_t index() const { return m_index; }
|
|
Wasm::Module const& module() const;
|
|
|
|
private:
|
|
Module(JS::Realm&, size_t index);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
size_t m_index { 0 };
|
|
};
|
|
|
|
}
|