2021-06-04 11:54:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibWasm/AbstractMachine/Configuration.h>
|
|
|
|
#include <LibWasm/AbstractMachine/Interpreter.h>
|
|
|
|
|
|
|
|
namespace Wasm {
|
|
|
|
|
|
|
|
struct BytecodeInterpreter : public Interpreter {
|
|
|
|
virtual void interpret(Configuration&) override;
|
|
|
|
virtual ~BytecodeInterpreter() override = default;
|
2021-07-01 12:33:17 +00:00
|
|
|
virtual bool did_trap() const override { return m_trap.has_value(); }
|
|
|
|
virtual String trap_reason() const override { return m_trap.value().reason; }
|
|
|
|
virtual void clear_trap() override { m_trap.clear(); }
|
2021-06-04 11:54:20 +00:00
|
|
|
|
|
|
|
struct CallFrameHandle {
|
|
|
|
explicit CallFrameHandle(BytecodeInterpreter& interpreter, Configuration& configuration)
|
|
|
|
: m_configuration_handle(configuration)
|
|
|
|
, m_interpreter(interpreter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~CallFrameHandle() = default;
|
|
|
|
|
|
|
|
Configuration::CallFrameHandle m_configuration_handle;
|
|
|
|
BytecodeInterpreter& m_interpreter;
|
|
|
|
};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void interpret(Configuration&, InstructionPointer&, Instruction const&);
|
|
|
|
void branch_to_label(Configuration&, LabelIndex);
|
|
|
|
template<typename ReadT, typename PushT>
|
|
|
|
void load_and_push(Configuration&, Instruction const&);
|
|
|
|
void store_to_memory(Configuration&, Instruction const&, ReadonlyBytes data);
|
|
|
|
void call_address(Configuration&, FunctionAddress);
|
|
|
|
|
|
|
|
template<typename V, typename T>
|
|
|
|
MakeUnsigned<T> checked_unsigned_truncate(V);
|
|
|
|
|
|
|
|
template<typename V, typename T>
|
|
|
|
MakeSigned<T> checked_signed_truncate(V);
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
T read_value(ReadonlyBytes data);
|
|
|
|
|
|
|
|
Vector<Value> pop_values(Configuration& configuration, size_t count);
|
2021-07-06 09:58:55 +00:00
|
|
|
bool trap_if_not(bool value, StringView reason)
|
2021-06-04 11:54:20 +00:00
|
|
|
{
|
|
|
|
if (!value)
|
2021-07-06 09:58:55 +00:00
|
|
|
m_trap = Trap { reason };
|
2021-07-01 12:33:17 +00:00
|
|
|
return m_trap.has_value();
|
2021-06-04 11:54:20 +00:00
|
|
|
}
|
2021-07-01 12:33:17 +00:00
|
|
|
|
|
|
|
Optional<Trap> m_trap;
|
2021-06-04 11:54:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct DebuggerBytecodeInterpreter : public BytecodeInterpreter {
|
|
|
|
virtual ~DebuggerBytecodeInterpreter() override = default;
|
|
|
|
|
|
|
|
Function<bool(Configuration&, InstructionPointer&, Instruction const&)> pre_interpret_hook;
|
|
|
|
Function<bool(Configuration&, InstructionPointer&, Instruction const&, Interpreter const&)> post_interpret_hook;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void interpret(Configuration&, InstructionPointer&, Instruction const&) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|