mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 05:06:45 +00:00
adef06a714
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151687 91177308-0d34-0410-b5e6-96231b3b80d8
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
//===-- MBlazeDisassembler.h - Disassembler for MicroBlaze -----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is part of the MBlaze Disassembler. It it the header for
|
|
// MBlazeDisassembler, a subclass of MCDisassembler.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MBLAZEDISASSEMBLER_H
|
|
#define MBLAZEDISASSEMBLER_H
|
|
|
|
#include "llvm/MC/MCDisassembler.h"
|
|
|
|
namespace llvm {
|
|
|
|
class MCInst;
|
|
class MemoryObject;
|
|
class raw_ostream;
|
|
|
|
struct EDInstInfo;
|
|
|
|
/// MBlazeDisassembler - Disassembler for all MBlaze platforms.
|
|
class MBlazeDisassembler : public MCDisassembler {
|
|
public:
|
|
/// Constructor - Initializes the disassembler.
|
|
///
|
|
MBlazeDisassembler(const MCSubtargetInfo &STI) :
|
|
MCDisassembler(STI) {
|
|
}
|
|
|
|
~MBlazeDisassembler() {
|
|
}
|
|
|
|
/// getInstruction - See MCDisassembler.
|
|
MCDisassembler::DecodeStatus getInstruction(MCInst &instr,
|
|
uint64_t &size,
|
|
const MemoryObject ®ion,
|
|
uint64_t address,
|
|
raw_ostream &vStream,
|
|
raw_ostream &cStream) const;
|
|
|
|
/// getEDInfo - See MCDisassembler.
|
|
const EDInstInfo *getEDInfo() const;
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|