2024-02-02 10:19:17 +01:00
|
|
|
/*
|
2025-11-22 12:27:51 +01:00
|
|
|
* Copyright (c) 2024-2025, Andreas Kling <andreas@ladybird.org>
|
2024-02-02 10:19:17 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
#include <LibJS/Forward.h>
|
|
|
|
|
|
|
|
|
|
namespace JS::Bytecode {
|
|
|
|
|
|
2025-07-19 10:41:08 -07:00
|
|
|
class Operand {
|
2024-02-02 10:19:17 +01:00
|
|
|
public:
|
2025-11-22 12:27:51 +01:00
|
|
|
enum class Type {
|
2024-02-02 10:19:17 +01:00
|
|
|
Register,
|
|
|
|
|
Local,
|
|
|
|
|
Constant,
|
2025-04-24 22:10:41 +02:00
|
|
|
Argument,
|
2024-02-02 10:19:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[[nodiscard]] bool operator==(Operand const&) const = default;
|
|
|
|
|
|
|
|
|
|
explicit Operand(Type type, u32 index)
|
2025-11-22 12:27:51 +01:00
|
|
|
: m_raw(to_underlying(type) << 29 | index)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum class ShouldMakeInvalid { Indeed };
|
|
|
|
|
explicit Operand(ShouldMakeInvalid)
|
|
|
|
|
: m_raw(0xffffffffu)
|
2024-02-02 10:19:17 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
explicit Operand(Register);
|
|
|
|
|
|
2025-11-22 12:27:51 +01:00
|
|
|
[[nodiscard]] bool is_invalid() const { return m_raw == 0xffffffffu; }
|
|
|
|
|
[[nodiscard]] bool is_register() const { return type() == Type::Register; }
|
|
|
|
|
[[nodiscard]] bool is_local() const { return type() == Type::Local; }
|
|
|
|
|
[[nodiscard]] bool is_constant() const { return type() == Type::Constant; }
|
2024-02-02 10:19:17 +01:00
|
|
|
|
2025-11-22 12:27:51 +01:00
|
|
|
[[nodiscard]] Type type() const { return static_cast<Type>((m_raw & 0xe0000000u) >> 29); }
|
|
|
|
|
[[nodiscard]] u32 index() const { return m_raw & 0x1fffffff; }
|
|
|
|
|
|
|
|
|
|
[[nodiscard]] u32 raw() const { return m_raw; }
|
2024-02-02 10:19:17 +01:00
|
|
|
|
2024-05-07 21:36:56 +02:00
|
|
|
[[nodiscard]] Register as_register() const;
|
|
|
|
|
|
2025-11-22 12:27:51 +01:00
|
|
|
void offset_index_by(u32 offset)
|
|
|
|
|
{
|
|
|
|
|
m_raw &= 0x1fffffff;
|
|
|
|
|
m_raw += offset;
|
|
|
|
|
}
|
2024-05-12 18:49:03 +02:00
|
|
|
|
2024-02-02 10:19:17 +01:00
|
|
|
private:
|
2025-11-22 12:27:51 +01:00
|
|
|
u32 m_raw { 0 };
|
2024-02-02 10:19:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
2025-03-27 15:11:15 +00:00
|
|
|
|
|
|
|
|
namespace AK {
|
2025-05-13 07:06:33 -04:00
|
|
|
|
2025-03-27 15:11:15 +00:00
|
|
|
template<>
|
2026-03-18 20:43:56 +01:00
|
|
|
struct SentinelOptionalTraits<JS::Bytecode::Operand> {
|
|
|
|
|
static JS::Bytecode::Operand sentinel_value() { return JS::Bytecode::Operand { JS::Bytecode::Operand::ShouldMakeInvalid::Indeed }; }
|
|
|
|
|
static bool is_sentinel(JS::Bytecode::Operand const& value) { return value.is_invalid(); }
|
|
|
|
|
};
|
2025-03-27 15:11:15 +00:00
|
|
|
|
2026-03-18 20:43:56 +01:00
|
|
|
template<>
|
|
|
|
|
class Optional<JS::Bytecode::Operand> : public SentinelOptional<JS::Bytecode::Operand> {
|
2025-03-27 15:11:15 +00:00
|
|
|
public:
|
2026-03-18 20:43:56 +01:00
|
|
|
using SentinelOptional::SentinelOptional;
|
2025-03-27 15:11:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|