diff options
author | Andreas Kling <kling@serenityos.org> | 2021-06-04 12:07:38 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-07 18:11:59 +0200 |
commit | 6ae9346cd39bf6fb01a971dea85159cdd842cece (patch) | |
tree | abf6412c7b9ec171f9551a243b64dece444c4f1b /Userland/Libraries/LibJS/Bytecode/Label.h | |
parent | 91640d0727e6a4d9ff24417909e02d77547c89df (diff) | |
download | serenity-6ae9346cd39bf6fb01a971dea85159cdd842cece.zip |
LibJS: Add basic support for while loops in the bytecode engine
This introduces two new instructions: Jump and JumpIfFalse.
Jumps are made to a Bytecode::Label, which is a simple object that
represents a location in the bytecode stream.
Note that you may not always know the target of a jump when adding the
jump instruction itself, but we can just update the instruction later
on during codegen once we know where the jump target is.
The Bytecode::Interpreter now implements jumping via a jump slot that
gets checked after each instruction to see if a jump is pending.
If not, we just increment the PC as usual.
Diffstat (limited to 'Userland/Libraries/LibJS/Bytecode/Label.h')
-rw-r--r-- | Userland/Libraries/LibJS/Bytecode/Label.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Bytecode/Label.h b/Userland/Libraries/LibJS/Bytecode/Label.h new file mode 100644 index 0000000000..b9d9a1c82d --- /dev/null +++ b/Userland/Libraries/LibJS/Bytecode/Label.h @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2021, Andreas Kling <kling@serenityos.org> + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#pragma once + +#include <AK/Format.h> + +namespace JS::Bytecode { + +class Label { +public: + explicit Label(size_t address) + : m_address(address) + { + } + + size_t address() const { return m_address; } + +private: + size_t m_address { 0 }; +}; + +} + +template<> +struct AK::Formatter<JS::Bytecode::Label> : AK::Formatter<FormatString> { + void format(FormatBuilder& builder, JS::Bytecode::Label const& value) + { + return AK::Formatter<FormatString>::format(builder, "@{}", value.address()); + } +}; |