mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
f70f3d4708
The byte has no endianness, so these types don't make sense. uint8_t should be used instead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217631 91177308-0d34-0410-b5e6-96231b3b80d8
118 lines
5.0 KiB
C++
118 lines
5.0 KiB
C++
//===--- ARMWinEHPrinter.h - Windows on ARM Unwind Information Printer ----===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TOOLS_LLVM_READOBJ_ARMWINEHPRINTER_H
|
|
#define LLVM_TOOLS_LLVM_READOBJ_ARMWINEHPRINTER_H
|
|
|
|
#include "StreamWriter.h"
|
|
#include "llvm/Object/COFF.h"
|
|
#include "llvm/Support/ErrorOr.h"
|
|
|
|
namespace llvm {
|
|
namespace ARM {
|
|
namespace WinEH {
|
|
class RuntimeFunction;
|
|
|
|
class Decoder {
|
|
static const size_t PDataEntrySize;
|
|
|
|
StreamWriter &SW;
|
|
raw_ostream &OS;
|
|
|
|
struct RingEntry {
|
|
uint8_t Mask;
|
|
uint8_t Value;
|
|
bool (Decoder::*Routine)(const uint8_t *, unsigned &, unsigned, bool);
|
|
};
|
|
static const RingEntry Ring[];
|
|
|
|
bool opcode_0xxxxxxx(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_10Lxxxxx(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_1100xxxx(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11010Lxx(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11011Lxx(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11100xxx(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_111010xx(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_1110110L(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11101110(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11101111(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11110101(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11110110(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11110111(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11111000(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11111001(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11111010(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11111011(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11111100(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11111101(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11111110(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
bool opcode_11111111(const uint8_t *Opcodes, unsigned &Offset,
|
|
unsigned Length, bool Prologue);
|
|
|
|
void decodeOpcodes(ArrayRef<uint8_t> Opcodes, unsigned Offset,
|
|
bool Prologue);
|
|
|
|
void printRegisters(const std::pair<uint16_t, uint32_t> &RegisterMask);
|
|
|
|
ErrorOr<object::SectionRef>
|
|
getSectionContaining(const object::COFFObjectFile &COFF, uint64_t Address);
|
|
|
|
ErrorOr<object::SymbolRef>
|
|
getSymbol(const object::COFFObjectFile &COFF, uint64_t Address,
|
|
bool FunctionOnly = false);
|
|
|
|
ErrorOr<object::SymbolRef>
|
|
getRelocatedSymbol(const object::COFFObjectFile &COFF,
|
|
const object::SectionRef &Section, uint64_t Offset);
|
|
|
|
bool dumpXDataRecord(const object::COFFObjectFile &COFF,
|
|
const object::SectionRef &Section,
|
|
uint64_t FunctionAddress, uint64_t VA);
|
|
bool dumpUnpackedEntry(const object::COFFObjectFile &COFF,
|
|
const object::SectionRef Section, uint64_t Offset,
|
|
unsigned Index, const RuntimeFunction &Entry);
|
|
bool dumpPackedEntry(const object::COFFObjectFile &COFF,
|
|
const object::SectionRef Section, uint64_t Offset,
|
|
unsigned Index, const RuntimeFunction &Entry);
|
|
bool dumpProcedureDataEntry(const object::COFFObjectFile &COFF,
|
|
const object::SectionRef Section, unsigned Entry,
|
|
ArrayRef<uint8_t> Contents);
|
|
void dumpProcedureData(const object::COFFObjectFile &COFF,
|
|
const object::SectionRef Section);
|
|
|
|
public:
|
|
Decoder(StreamWriter &SW) : SW(SW), OS(SW.getOStream()) {}
|
|
std::error_code dumpProcedureData(const object::COFFObjectFile &COFF);
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|