ladybird/Userland/Libraries/LibX86/Disassembler.h
Simon Wanner 06ece474e9 LibX86: Add {Address,Operand}Size::Size64
For now the opcode tables for OperandSize::Size64 are empty
2022-11-26 12:50:38 +01:00

41 lines
793 B
C++

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Optional.h>
#include <LibX86/Instruction.h>
namespace X86 {
class Disassembler {
public:
explicit Disassembler(InstructionStream& stream)
: m_stream(stream)
{
}
Optional<Instruction> next()
{
if (!m_stream.can_read())
return {};
#if ARCH(I386)
return Instruction::from_stream(m_stream, OperandSize::Size32, AddressSize::Size32);
#else
# if ARCH(X86_64)
return Instruction::from_stream(m_stream, OperandSize::Size64, AddressSize::Size64);
# else
dbgln("Unsupported platform");
return {};
# endif
#endif
}
private:
InstructionStream& m_stream;
};
}