LLVM  3.7.0
AArch64Disassembler.h
Go to the documentation of this file.
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.h"
17 
18 namespace llvm {
19 
20 class MCInst;
21 class MemoryObject;
22 class raw_ostream;
23 
25 public:
27  : MCDisassembler(STI, Ctx) {}
28 
30 
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
DecodeStatus
Ternary decode status.
Superclass for all disassemblers.
Context object for machine code objects.
Definition: MCContext.h:48
const MCSubtargetInfo & STI
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:150
MCDisassembler::DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef< uint8_t > Bytes, uint64_t Address, raw_ostream &VStream, raw_ostream &CStream) const override
Returns the disassembly of a single instruction.
AArch64Disassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
MCSubtargetInfo - Generic base class for all target subtargets.
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:38