| 
									
										
										
										
											2021-10-24 15:34:30 +02:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2024-10-04 13:19:50 +02:00
										 |  |  |  * Copyright (c) 2021, Andreas Kling <andreas@ladybird.org> | 
					
						
							| 
									
										
										
										
											2021-10-24 15:34:30 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/DistinctNumeric.h>
 | 
					
						
							| 
									
										
										
										
											2025-08-02 19:27:29 -04:00
										 |  |  | #include <AK/Utf16FlyString.h>
 | 
					
						
							| 
									
										
										
										
											2021-10-24 15:34:30 +02:00
										 |  |  | #include <AK/Vector.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace JS::Bytecode { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-06 10:12:02 +02:00
										 |  |  | struct IdentifierTableIndex { | 
					
						
							| 
									
										
										
										
											2025-03-27 14:59:34 +00:00
										 |  |  |     static constexpr u32 invalid = 0xffffffffu; | 
					
						
							|  |  |  |     bool is_valid() const { return value != invalid; } | 
					
						
							| 
									
										
										
										
											2024-05-06 10:12:02 +02:00
										 |  |  |     u32 value { 0 }; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2021-10-24 15:34:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-19 10:41:08 -07:00
										 |  |  | class IdentifierTable { | 
					
						
							| 
									
										
										
										
											2021-10-24 15:34:30 +02:00
										 |  |  |     AK_MAKE_NONMOVABLE(IdentifierTable); | 
					
						
							|  |  |  |     AK_MAKE_NONCOPYABLE(IdentifierTable); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     IdentifierTable() = default; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-02 19:27:29 -04:00
										 |  |  |     IdentifierTableIndex insert(Utf16FlyString); | 
					
						
							|  |  |  |     Utf16FlyString const& get(IdentifierTableIndex) const; | 
					
						
							| 
									
										
										
										
											2021-10-24 15:34:30 +02:00
										 |  |  |     void dump() const; | 
					
						
							|  |  |  |     bool is_empty() const { return m_identifiers.is_empty(); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2025-08-02 19:27:29 -04:00
										 |  |  |     Vector<Utf16FlyString> m_identifiers; | 
					
						
							| 
									
										
										
										
											2021-10-24 15:34:30 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2025-03-27 14:59:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace AK { | 
					
						
							| 
									
										
										
										
											2025-05-13 07:06:33 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-27 14:59:34 +00:00
										 |  |  | template<> | 
					
						
							|  |  |  | class Optional<JS::Bytecode::IdentifierTableIndex> : public OptionalBase<JS::Bytecode::IdentifierTableIndex> { | 
					
						
							|  |  |  |     template<typename U> | 
					
						
							|  |  |  |     friend class Optional; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     using ValueType = JS::Bytecode::IdentifierTableIndex; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Optional() = default; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template<SameAs<OptionalNone> V> | 
					
						
							|  |  |  |     Optional(V) { } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Optional(Optional<JS::Bytecode::IdentifierTableIndex> const& other) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (other.has_value()) | 
					
						
							|  |  |  |             m_value = other.m_value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Optional(Optional&& other) | 
					
						
							|  |  |  |         : m_value(other.m_value) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template<typename U = JS::Bytecode::IdentifierTableIndex> | 
					
						
							|  |  |  |     requires(!IsSame<OptionalNone, RemoveCVReference<U>>) | 
					
						
							|  |  |  |     explicit(!IsConvertible<U&&, JS::Bytecode::IdentifierTableIndex>) Optional(U&& value) | 
					
						
							|  |  |  |     requires(!IsSame<RemoveCVReference<U>, Optional<JS::Bytecode::IdentifierTableIndex>> && IsConstructible<JS::Bytecode::IdentifierTableIndex, U &&>) | 
					
						
							|  |  |  |         : m_value(forward<U>(value)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template<SameAs<OptionalNone> V> | 
					
						
							|  |  |  |     Optional& operator=(V) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         clear(); | 
					
						
							|  |  |  |         return *this; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Optional& operator=(Optional const& other) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (this != &other) { | 
					
						
							|  |  |  |             clear(); | 
					
						
							|  |  |  |             m_value = other.m_value; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return *this; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Optional& operator=(Optional&& other) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (this != &other) { | 
					
						
							|  |  |  |             clear(); | 
					
						
							|  |  |  |             m_value = other.m_value; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return *this; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void clear() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_value.value = JS::Bytecode::IdentifierTableIndex::invalid; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[nodiscard]] bool has_value() const | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return m_value.is_valid(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[nodiscard]] JS::Bytecode::IdentifierTableIndex& value() & | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         VERIFY(has_value()); | 
					
						
							|  |  |  |         return m_value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[nodiscard]] JS::Bytecode::IdentifierTableIndex const& value() const& | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         VERIFY(has_value()); | 
					
						
							|  |  |  |         return m_value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[nodiscard]] JS::Bytecode::IdentifierTableIndex value() && | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return release_value(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     [[nodiscard]] JS::Bytecode::IdentifierTableIndex release_value() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         VERIFY(has_value()); | 
					
						
							|  |  |  |         JS::Bytecode::IdentifierTableIndex released_value = m_value; | 
					
						
							|  |  |  |         clear(); | 
					
						
							|  |  |  |         return released_value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     JS::Bytecode::IdentifierTableIndex m_value { JS::Bytecode::IdentifierTableIndex::invalid }; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |