mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-22 17:30:44 +00:00
Reserve bytecode tables and executable vectors from FFI counts before filling them during Rust bytecode materialization. This avoids repeated growth for data whose final size is already known.
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/DistinctNumeric.h>
|
|
#include <AK/Utf16String.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibJS/Runtime/ExternalMemory.h>
|
|
|
|
namespace JS::Bytecode {
|
|
|
|
struct StringTableIndex {
|
|
static constexpr u32 invalid = 0xffffffffu;
|
|
bool is_valid() const { return value != invalid; }
|
|
u32 value { 0 };
|
|
};
|
|
|
|
class StringTable {
|
|
AK_MAKE_NONMOVABLE(StringTable);
|
|
AK_MAKE_NONCOPYABLE(StringTable);
|
|
|
|
public:
|
|
StringTable() = default;
|
|
|
|
StringTableIndex insert(Utf16String);
|
|
Utf16String const& get(StringTableIndex) const;
|
|
void dump() const;
|
|
void ensure_capacity(size_t capacity) { m_strings.ensure_capacity(capacity); }
|
|
bool is_empty() const { return m_strings.is_empty(); }
|
|
size_t size() const { return m_strings.size(); }
|
|
size_t external_memory_size() const
|
|
{
|
|
size_t size = vector_external_memory_size(m_strings);
|
|
for (auto const& string : m_strings)
|
|
size = saturating_add_external_memory_size(size, utf16_string_external_memory_size(string));
|
|
return size;
|
|
}
|
|
|
|
private:
|
|
Vector<Utf16String> m_strings;
|
|
};
|
|
|
|
}
|
|
|
|
namespace AK {
|
|
|
|
template<>
|
|
struct SentinelOptionalTraits<JS::Bytecode::StringTableIndex> {
|
|
static constexpr JS::Bytecode::StringTableIndex sentinel_value() { return { JS::Bytecode::StringTableIndex::invalid }; }
|
|
static constexpr bool is_sentinel(JS::Bytecode::StringTableIndex const& value) { return !value.is_valid(); }
|
|
};
|
|
|
|
template<>
|
|
class Optional<JS::Bytecode::StringTableIndex> : public SentinelOptional<JS::Bytecode::StringTableIndex> {
|
|
public:
|
|
using SentinelOptional::SentinelOptional;
|
|
};
|
|
|
|
}
|