• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===- AArch64Disassembler.h - Disassembler for AArch64 ---------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_LIB_TARGET_AARCH64_DISASSEMBLER_AARCH64DISASSEMBLER_H
14 #define LLVM_LIB_TARGET_AARCH64_DISASSEMBLER_AARCH64DISASSEMBLER_H
15 
16 #include "llvm/MC/MCDisassembler/MCDisassembler.h"
17 
18 namespace llvm {
19 
20 class MCInst;
21 class MemoryObject;
22 class raw_ostream;
23 
24 class AArch64Disassembler : public MCDisassembler {
25 public:
AArch64Disassembler(const MCSubtargetInfo & STI,MCContext & Ctx)26   AArch64Disassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
27     : MCDisassembler(STI, Ctx) {}
28 
~AArch64Disassembler()29   ~AArch64Disassembler() {}
30 
31   MCDisassembler::DecodeStatus
32   getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes,
33                  uint64_t Address, raw_ostream &VStream,
34                  raw_ostream &CStream) const override;
35 };
36 
37 } // namespace llvm
38 
39 #endif
40