mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
a4f9f5e7de
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207509 91177308-0d34-0410-b5e6-96231b3b80d8
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
//===- ARM64Disassembler.h - Disassembler for ARM64 -------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef ARM64DISASSEMBLER_H
|
|
#define ARM64DISASSEMBLER_H
|
|
|
|
#include "llvm/MC/MCDisassembler.h"
|
|
|
|
namespace llvm {
|
|
|
|
class MCInst;
|
|
class MemoryObject;
|
|
class raw_ostream;
|
|
|
|
class ARM64Disassembler : public MCDisassembler {
|
|
public:
|
|
ARM64Disassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
|
|
: MCDisassembler(STI, Ctx) {}
|
|
|
|
~ARM64Disassembler() {}
|
|
|
|
/// getInstruction - See MCDisassembler.
|
|
MCDisassembler::DecodeStatus
|
|
getInstruction(MCInst &instr, uint64_t &size, const MemoryObject ®ion,
|
|
uint64_t address, raw_ostream &vStream,
|
|
raw_ostream &cStream) const override;
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|