blob: 8d453f318ff9c927e3ba926eafee1634bafb9479 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* 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, true, true);
#else
dbgln("FIXME: Implement disassembly support for x86_64");
return {};
#endif
}
private:
InstructionStream& m_stream;
};
}
|