1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/Format.h>
- namespace JS::Bytecode {
- class Register {
- public:
- constexpr static u32 accumulator_index = 0;
- static Register accumulator()
- {
- static Register accumulator(accumulator_index);
- return accumulator;
- }
- explicit Register(u32 index)
- : m_index(index)
- {
- }
- u32 index() const { return m_index; }
- private:
- u32 m_index;
- };
- }
- template<>
- struct AK::Formatter<JS::Bytecode::Register> : AK::Formatter<FormatString> {
- void format(FormatBuilder& builder, JS::Bytecode::Register const& value)
- {
- if (value.index() == JS::Bytecode::Register::accumulator_index)
- return AK::Formatter<FormatString>::format(builder, "acc");
- return AK::Formatter<FormatString>::format(builder, "${}", value.index());
- }
- };
|