mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
Remove edis - the enhanced disassembler. Fixes PR14654.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170578 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
#include "MCTargetDesc/ARMAddressingModes.h"
|
||||
#include "MCTargetDesc/ARMBaseInfo.h"
|
||||
#include "MCTargetDesc/ARMMCExpr.h"
|
||||
#include "llvm/MC/EDInstInfo.h"
|
||||
#include "llvm/MC/MCContext.h"
|
||||
#include "llvm/MC/MCExpr.h"
|
||||
#include "llvm/MC/MCFixedLenDisassembler.h"
|
||||
@@ -105,10 +104,6 @@ public:
|
||||
uint64_t address,
|
||||
raw_ostream &vStream,
|
||||
raw_ostream &cStream) const;
|
||||
|
||||
/// getEDInfo - See MCDisassembler.
|
||||
const EDInstInfo *getEDInfo() const;
|
||||
private:
|
||||
};
|
||||
|
||||
/// ThumbDisassembler - Thumb disassembler for all Thumb platforms.
|
||||
@@ -131,8 +126,6 @@ public:
|
||||
raw_ostream &vStream,
|
||||
raw_ostream &cStream) const;
|
||||
|
||||
/// getEDInfo - See MCDisassembler.
|
||||
const EDInstInfo *getEDInfo() const;
|
||||
private:
|
||||
mutable ITStatus ITBlock;
|
||||
DecodeStatus AddThumbPredicate(MCInst&) const;
|
||||
@@ -385,7 +378,6 @@ static DecodeStatus DecodeLDR(MCInst &Inst, unsigned Val,
|
||||
static DecodeStatus DecodeMRRC2(llvm::MCInst &Inst, unsigned Val,
|
||||
uint64_t Address, const void *Decoder);
|
||||
#include "ARMGenDisassemblerTables.inc"
|
||||
#include "ARMGenEDInfo.inc"
|
||||
|
||||
static MCDisassembler *createARMDisassembler(const Target &T, const MCSubtargetInfo &STI) {
|
||||
return new ARMDisassembler(STI);
|
||||
@@ -395,14 +387,6 @@ static MCDisassembler *createThumbDisassembler(const Target &T, const MCSubtarge
|
||||
return new ThumbDisassembler(STI);
|
||||
}
|
||||
|
||||
const EDInstInfo *ARMDisassembler::getEDInfo() const {
|
||||
return instInfoARM;
|
||||
}
|
||||
|
||||
const EDInstInfo *ThumbDisassembler::getEDInfo() const {
|
||||
return instInfoARM;
|
||||
}
|
||||
|
||||
DecodeStatus ARMDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
|
||||
const MemoryObject &Region,
|
||||
uint64_t Address,
|
||||
|
||||
Reference in New Issue
Block a user