mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 20:29:30 +00:00
With this patch MCDisassembler::getInstruction takes an ArrayRef<uint8_t> instead of a MemoryObject. Even on X86 there is a maximum size an instruction can have. Given that, it seems way simpler and more efficient to just pass an ArrayRef to the disassembler instead of a MemoryObject and have it do a virtual call every time it wants some extra bytes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221751 91177308-0d34-0410-b5e6-96231b3b80d8
81 lines
2.8 KiB
C++
81 lines
2.8 KiB
C++
//===-- HexagonDisassembler.cpp - Disassembler for Hexagon ISA ------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "MCTargetDesc/HexagonBaseInfo.h"
|
|
#include "MCTargetDesc/HexagonMCTargetDesc.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
#include "llvm/MC/MCDisassembler.h"
|
|
#include "llvm/MC/MCExpr.h"
|
|
#include "llvm/MC/MCFixedLenDisassembler.h"
|
|
#include "llvm/MC/MCInst.h"
|
|
#include "llvm/MC/MCInstrDesc.h"
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
|
#include "llvm/Support/Debug.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
#include "llvm/Support/LEB128.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
#include "llvm/Support/Endian.h"
|
|
|
|
#include <vector>
|
|
#include <array>
|
|
|
|
using namespace llvm;
|
|
|
|
#define DEBUG_TYPE "hexagon-disassembler"
|
|
|
|
// Pull DecodeStatus and its enum values into the global namespace.
|
|
typedef llvm::MCDisassembler::DecodeStatus DecodeStatus;
|
|
|
|
namespace {
|
|
/// \brief Hexagon disassembler for all Hexagon platforms.
|
|
class HexagonDisassembler : public MCDisassembler {
|
|
public:
|
|
HexagonDisassembler(MCSubtargetInfo const &STI, MCContext &Ctx)
|
|
: MCDisassembler(STI, Ctx) {}
|
|
|
|
DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
|
|
ArrayRef<uint8_t> Bytes, uint64_t Address,
|
|
raw_ostream &VStream,
|
|
raw_ostream &CStream) const override;
|
|
};
|
|
}
|
|
|
|
#include "HexagonGenDisassemblerTables.inc"
|
|
|
|
static MCDisassembler *createHexagonDisassembler(Target const &T,
|
|
MCSubtargetInfo const &STI,
|
|
MCContext &Ctx) {
|
|
return new HexagonDisassembler(STI, Ctx);
|
|
}
|
|
|
|
extern "C" void LLVMInitializeHexagonDisassembler() {
|
|
TargetRegistry::RegisterMCDisassembler(TheHexagonTarget,
|
|
createHexagonDisassembler);
|
|
}
|
|
|
|
DecodeStatus HexagonDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
|
|
ArrayRef<uint8_t> Bytes,
|
|
uint64_t Address,
|
|
raw_ostream &os,
|
|
raw_ostream &cs) const {
|
|
Size = 4;
|
|
if (Bytes.size() < 4)
|
|
return MCDisassembler::Fail;
|
|
|
|
uint32_t insn =
|
|
llvm::support::endian::read<uint32_t, llvm::support::little,
|
|
llvm::support::unaligned>(Bytes.data());
|
|
|
|
// Remove parse bits.
|
|
insn &= ~static_cast<uint32_t>(HexagonII::InstParseBits::INST_PARSE_MASK);
|
|
return decodeInstruction(DecoderTable32, MI, insn, Address, this, STI);
|
|
}
|