Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 1 | //===--- ARMWinEHPrinter.h - Windows on ARM Unwind Information Printer ----===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Benjamin Kramer | 00e08fc | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 10 | #ifndef LLVM_TOOLS_LLVM_READOBJ_ARMWINEHPRINTER_H |
| 11 | #define LLVM_TOOLS_LLVM_READOBJ_ARMWINEHPRINTER_H |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 12 | |
Saleem Abdulrasool | fbb7c20 | 2014-06-04 16:03:18 +0000 | [diff] [blame] | 13 | #include "llvm/Object/COFF.h" |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 14 | #include "llvm/Support/ErrorOr.h" |
Zachary Turner | 2448e9f | 2016-05-03 00:28:04 +0000 | [diff] [blame] | 15 | #include "llvm/Support/ScopedPrinter.h" |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 16 | |
| 17 | namespace llvm { |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 18 | namespace ARM { |
| 19 | namespace WinEH { |
| 20 | class RuntimeFunction; |
| 21 | |
| 22 | class Decoder { |
| 23 | static const size_t PDataEntrySize; |
| 24 | |
Zachary Turner | 2448e9f | 2016-05-03 00:28:04 +0000 | [diff] [blame] | 25 | ScopedPrinter &SW; |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 26 | raw_ostream &OS; |
Sanjin Sijaric | e10866a | 2018-10-24 00:03:34 +0000 | [diff] [blame] | 27 | bool isAArch64; |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 28 | |
| 29 | struct RingEntry { |
| 30 | uint8_t Mask; |
| 31 | uint8_t Value; |
Sanjin Sijaric | e10866a | 2018-10-24 00:03:34 +0000 | [diff] [blame] | 32 | uint8_t Length; |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 33 | bool (Decoder::*Routine)(const uint8_t *, unsigned &, unsigned, bool); |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 34 | }; |
| 35 | static const RingEntry Ring[]; |
Sanjin Sijaric | e10866a | 2018-10-24 00:03:34 +0000 | [diff] [blame] | 36 | static const RingEntry Ring64[]; |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 37 | |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 38 | bool opcode_0xxxxxxx(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 39 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 40 | bool opcode_10Lxxxxx(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 41 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 42 | bool opcode_1100xxxx(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 43 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 44 | bool opcode_11010Lxx(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 45 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 46 | bool opcode_11011Lxx(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 47 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 48 | bool opcode_11100xxx(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 49 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 50 | bool opcode_111010xx(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 51 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 52 | bool opcode_1110110L(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 53 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 54 | bool opcode_11101110(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 55 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 56 | bool opcode_11101111(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 57 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 58 | bool opcode_11110101(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 59 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 60 | bool opcode_11110110(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 61 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 62 | bool opcode_11110111(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 63 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 64 | bool opcode_11111000(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 65 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 66 | bool opcode_11111001(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 67 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 68 | bool opcode_11111010(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 69 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 70 | bool opcode_11111011(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 71 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 72 | bool opcode_11111100(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 73 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 74 | bool opcode_11111101(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 75 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 76 | bool opcode_11111110(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 77 | unsigned Length, bool Prologue); |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 78 | bool opcode_11111111(const uint8_t *Opcodes, unsigned &Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 79 | unsigned Length, bool Prologue); |
| 80 | |
Sanjin Sijaric | e10866a | 2018-10-24 00:03:34 +0000 | [diff] [blame] | 81 | // ARM64 unwind codes start here. |
| 82 | bool opcode_alloc_s(const uint8_t *Opcodes, unsigned &Offset, unsigned Length, |
| 83 | bool Prologue); |
| 84 | bool opcode_save_r19r20_x(const uint8_t *Opcodes, unsigned &Offset, |
| 85 | unsigned Length, bool Prologue); |
| 86 | bool opcode_save_fplr(const uint8_t *Opcodes, unsigned &Offset, |
| 87 | unsigned Length, bool Prologue); |
| 88 | bool opcode_save_fplr_x(const uint8_t *Opcodes, unsigned &Offset, |
| 89 | unsigned Length, bool Prologue); |
| 90 | bool opcode_alloc_m(const uint8_t *Opcodes, unsigned &Offset, unsigned Length, |
| 91 | bool Prologue); |
| 92 | bool opcode_save_regp(const uint8_t *Opcodes, unsigned &Offset, |
| 93 | unsigned Length, bool Prologue); |
| 94 | bool opcode_save_regp_x(const uint8_t *Opcodes, unsigned &Offset, |
| 95 | unsigned Length, bool Prologue); |
| 96 | bool opcode_save_reg(const uint8_t *Opcodes, unsigned &Offset, |
| 97 | unsigned Length, bool Prologue); |
| 98 | bool opcode_save_reg_x(const uint8_t *Opcodes, unsigned &Offset, |
| 99 | unsigned Length, bool Prologue); |
| 100 | bool opcode_save_lrpair(const uint8_t *Opcodes, unsigned &Offset, |
| 101 | unsigned Length, bool Prologue); |
| 102 | bool opcode_save_fregp(const uint8_t *Opcodes, unsigned &Offset, |
| 103 | unsigned Length, bool Prologue); |
| 104 | bool opcode_save_fregp_x(const uint8_t *Opcodes, unsigned &Offset, |
| 105 | unsigned Length, bool Prologue); |
| 106 | bool opcode_save_freg(const uint8_t *Opcodes, unsigned &Offset, |
| 107 | unsigned Length, bool Prologue); |
| 108 | bool opcode_save_freg_x(const uint8_t *Opcodes, unsigned &Offset, |
| 109 | unsigned Length, bool Prologue); |
| 110 | bool opcode_alloc_l(const uint8_t *Opcodes, unsigned &Offset, unsigned Length, |
| 111 | bool Prologue); |
| 112 | bool opcode_setfp(const uint8_t *Opcodes, unsigned &Offset, unsigned Length, |
| 113 | bool Prologue); |
| 114 | bool opcode_addfp(const uint8_t *Opcodes, unsigned &Offset, unsigned Length, |
| 115 | bool Prologue); |
| 116 | bool opcode_nop(const uint8_t *Opcodes, unsigned &Offset, unsigned Length, |
| 117 | bool Prologue); |
| 118 | bool opcode_end(const uint8_t *Opcodes, unsigned &Offset, unsigned Length, |
| 119 | bool Prologue); |
| 120 | bool opcode_end_c(const uint8_t *Opcodes, unsigned &Offset, unsigned Length, |
| 121 | bool Prologue); |
| 122 | bool opcode_save_next(const uint8_t *Opcodes, unsigned &Offset, |
| 123 | unsigned Length, bool Prologue); |
| 124 | |
Rui Ueyama | f70f3d4 | 2014-09-11 21:46:33 +0000 | [diff] [blame] | 125 | void decodeOpcodes(ArrayRef<uint8_t> Opcodes, unsigned Offset, |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 126 | bool Prologue); |
| 127 | |
| 128 | void printRegisters(const std::pair<uint16_t, uint32_t> &RegisterMask); |
| 129 | |
| 130 | ErrorOr<object::SectionRef> |
| 131 | getSectionContaining(const object::COFFObjectFile &COFF, uint64_t Address); |
| 132 | |
| 133 | ErrorOr<object::SymbolRef> |
| 134 | getSymbol(const object::COFFObjectFile &COFF, uint64_t Address, |
| 135 | bool FunctionOnly = false); |
| 136 | |
| 137 | ErrorOr<object::SymbolRef> |
| 138 | getRelocatedSymbol(const object::COFFObjectFile &COFF, |
| 139 | const object::SectionRef &Section, uint64_t Offset); |
| 140 | |
| 141 | bool dumpXDataRecord(const object::COFFObjectFile &COFF, |
| 142 | const object::SectionRef &Section, |
| 143 | uint64_t FunctionAddress, uint64_t VA); |
| 144 | bool dumpUnpackedEntry(const object::COFFObjectFile &COFF, |
| 145 | const object::SectionRef Section, uint64_t Offset, |
| 146 | unsigned Index, const RuntimeFunction &Entry); |
| 147 | bool dumpPackedEntry(const object::COFFObjectFile &COFF, |
| 148 | const object::SectionRef Section, uint64_t Offset, |
| 149 | unsigned Index, const RuntimeFunction &Entry); |
| 150 | bool dumpProcedureDataEntry(const object::COFFObjectFile &COFF, |
| 151 | const object::SectionRef Section, unsigned Entry, |
| 152 | ArrayRef<uint8_t> Contents); |
| 153 | void dumpProcedureData(const object::COFFObjectFile &COFF, |
| 154 | const object::SectionRef Section); |
| 155 | |
| 156 | public: |
Sanjin Sijaric | e10866a | 2018-10-24 00:03:34 +0000 | [diff] [blame] | 157 | Decoder(ScopedPrinter &SW, bool isAArch64) : SW(SW), |
| 158 | OS(SW.getOStream()), |
| 159 | isAArch64(isAArch64) {} |
Rafael Espindola | a20bcb9 | 2014-06-13 01:25:41 +0000 | [diff] [blame] | 160 | std::error_code dumpProcedureData(const object::COFFObjectFile &COFF); |
Saleem Abdulrasool | fe3b74e | 2014-06-04 15:47:15 +0000 | [diff] [blame] | 161 | }; |
| 162 | } |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | #endif |