ladybird/Userland/Libraries/LibX86/Disassembler.h
Itamar 108a8e4c88 LibX86: Only pass ProcessorMode to Instruction constructor
We previously passed both OperandSize and AddressSize to the
constructor.

Both values were only ever 32-bit at construction.
We used AddressSize::Size64 to signify Long mode which was needlessly
complicated.
2022-12-11 22:06:30 +01:00

41 lines
756 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, ProcessorMode::Protected);
#else
# if ARCH(X86_64)
return Instruction::from_stream(m_stream, ProcessorMode::Long);
# else
dbgln("Unsupported platform");
return {};
# endif
#endif
}
private:
InstructionStream& m_stream;
};
}