2021-06-09 10:02:01 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/DistinctNumeric.h>
|
2025-08-07 19:31:52 -04:00
|
|
|
#include <AK/Utf16String.h>
|
2021-06-09 10:02:01 +02:00
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
|
|
namespace JS::Bytecode {
|
|
|
|
|
|
2025-04-05 21:46:37 +02:00
|
|
|
struct StringTableIndex {
|
|
|
|
|
static constexpr u32 invalid = 0xffffffffu;
|
|
|
|
|
bool is_valid() const { return value != invalid; }
|
|
|
|
|
u32 value { 0 };
|
|
|
|
|
};
|
2021-06-09 10:02:01 +02:00
|
|
|
|
2025-07-19 10:41:08 -07:00
|
|
|
class StringTable {
|
2021-06-09 10:02:01 +02:00
|
|
|
AK_MAKE_NONMOVABLE(StringTable);
|
|
|
|
|
AK_MAKE_NONCOPYABLE(StringTable);
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
StringTable() = default;
|
|
|
|
|
|
2025-08-07 19:31:52 -04:00
|
|
|
StringTableIndex insert(Utf16String);
|
|
|
|
|
Utf16String const& get(StringTableIndex) const;
|
2021-06-09 10:02:01 +02:00
|
|
|
void dump() const;
|
|
|
|
|
bool is_empty() const { return m_strings.is_empty(); }
|
|
|
|
|
|
|
|
|
|
private:
|
2025-08-07 19:31:52 -04:00
|
|
|
Vector<Utf16String> m_strings;
|
2021-06-09 10:02:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
2025-04-05 21:46:37 +02:00
|
|
|
|
|
|
|
|
namespace AK {
|
2025-05-13 07:06:33 -04:00
|
|
|
|
2025-04-05 21:46:37 +02:00
|
|
|
template<>
|
2026-03-18 20:43:56 +01:00
|
|
|
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(); }
|
|
|
|
|
};
|
2025-04-05 21:46:37 +02:00
|
|
|
|
2026-03-18 20:43:56 +01:00
|
|
|
template<>
|
|
|
|
|
class Optional<JS::Bytecode::StringTableIndex> : public SentinelOptional<JS::Bytecode::StringTableIndex> {
|
2025-04-05 21:46:37 +02:00
|
|
|
public:
|
2026-03-18 20:43:56 +01:00
|
|
|
using SentinelOptional::SentinelOptional;
|
2025-04-05 21:46:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|