
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. :^)
56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
#include <LibWeb/Geometry/DOMPoint.h>
|
|
#include <LibWeb/Geometry/DOMRect.h>
|
|
#include <LibWeb/Geometry/DOMRectReadOnly.h>
|
|
|
|
namespace Web::Geometry {
|
|
|
|
// https://drafts.fxtf.org/geometry/#dictdef-domquadinit
|
|
struct DOMQuadInit {
|
|
DOMPointInit p1;
|
|
DOMPointInit p2;
|
|
DOMPointInit p3;
|
|
DOMPointInit p4;
|
|
};
|
|
|
|
// https://drafts.fxtf.org/geometry/#domquad
|
|
class DOMQuad : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(DOMQuad, Bindings::PlatformObject);
|
|
JS_DECLARE_ALLOCATOR(DOMQuad);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<DOMQuad> construct_impl(JS::Realm&, DOMPointInit const& p1, DOMPointInit const& p2, DOMPointInit const& p3, DOMPointInit const& p4);
|
|
|
|
virtual ~DOMQuad() override;
|
|
|
|
static JS::NonnullGCPtr<DOMQuad> from_rect(JS::VM&, DOMRectInit const&);
|
|
static JS::NonnullGCPtr<DOMQuad> from_quad(JS::VM&, DOMQuadInit const&);
|
|
|
|
JS::NonnullGCPtr<DOMPoint> p1() const { return m_p1; }
|
|
JS::NonnullGCPtr<DOMPoint> p2() const { return m_p2; }
|
|
JS::NonnullGCPtr<DOMPoint> p3() const { return m_p3; }
|
|
JS::NonnullGCPtr<DOMPoint> p4() const { return m_p4; }
|
|
|
|
JS::NonnullGCPtr<DOMRect> get_bounds() const;
|
|
|
|
private:
|
|
DOMQuad(JS::Realm&, DOMPointInit const& p1, DOMPointInit const& p2, DOMPointInit const& p3, DOMPointInit const& p4);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
JS::NonnullGCPtr<DOMPoint> m_p1;
|
|
JS::NonnullGCPtr<DOMPoint> m_p2;
|
|
JS::NonnullGCPtr<DOMPoint> m_p3;
|
|
JS::NonnullGCPtr<DOMPoint> m_p4;
|
|
};
|
|
|
|
}
|