mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
38 lines
639 B
C++
38 lines
639 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(X86_64)
|
|
return Instruction::from_stream(m_stream, ProcessorMode::Long);
|
|
#else
|
|
dbgln("Unsupported platform");
|
|
return {};
|
|
#endif
|
|
}
|
|
|
|
private:
|
|
InstructionStream& m_stream;
|
|
};
|
|
|
|
}
|