blob: 1a033b1eb42e84f31cc166d8a13f5ee1b8207d5c [file] [log] [blame]
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +00001//===-- ARMWinEHPrinter.cpp - Windows on ARM EH Data Printer ----*- C++ -*-===//
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
Saleem Abdulrasoolc86b54c82014-06-07 19:23:07 +000010// Windows on ARM uses a series of serialised data structures (RuntimeFunction)
11// to create a table of information for unwinding. In order to conserve space,
12// there are two different ways that this data is represented.
13//
14// For functions with canonical forms for the prologue and epilogue, the data
15// can be stored in a "packed" form. In this case, the data is packed into the
16// RuntimeFunction's remaining 30-bits and can fully describe the entire frame.
17//
18// +---------------------------------------+
19// | Function Entry Address |
20// +---------------------------------------+
21// | Packed Form Data |
22// +---------------------------------------+
23//
24// This layout is parsed by Decoder::dumpPackedEntry. No unwind bytecode is
25// associated with such a frame as they can be derived from the provided data.
26// The decoder does not synthesize this data as it is unnecessary for the
27// purposes of validation, with the synthesis being required only by a proper
28// unwinder.
29//
30// For functions that are large or do not match canonical forms, the data is
31// split up into two portions, with the actual data residing in the "exception
32// data" table (.xdata) with a reference to the entry from the "procedure data"
33// (.pdata) entry.
34//
35// The exception data contains information about the frame setup, all of the
36// epilouge scopes (for functions for which there are multiple exit points) and
37// the associated exception handler. Additionally, the entry contains byte-code
38// describing how to unwind the function (c.f. Decoder::decodeOpcodes).
39//
40// +---------------------------------------+
41// | Function Entry Address |
42// +---------------------------------------+
43// | Exception Data Entry Address |
44// +---------------------------------------+
45//
46// This layout is parsed by Decoder::dumpUnpackedEntry. Such an entry must
47// first resolve the exception data entry address. This structure
48// (ExceptionDataRecord) has a variable sized header
49// (c.f. ARM::WinEH::HeaderWords) and encodes most of the same information as
50// the packed form. However, because this information is insufficient to
51// synthesize the unwinding, there are associated unwinding bytecode which make
52// up the bulk of the Decoder.
53//
54// The decoder itself is table-driven, using the first byte to determine the
55// opcode and dispatching to the associated printing routine. The bytecode
56// itself is a variable length instruction encoding that can fully describe the
57// state of the stack and the necessary operations for unwinding to the
58// beginning of the frame.
59//
60// The byte-code maintains a 1-1 instruction mapping, indicating both the width
61// of the instruction (Thumb2 instructions are variable length, 16 or 32 bits
62// wide) allowing the program to unwind from any point in the prologue, body, or
63// epilogue of the function.
64
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +000065#include "ARMWinEHPrinter.h"
66#include "Error.h"
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +000067#include "llvm/ADT/STLExtras.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000068#include "llvm/ADT/StringExtras.h"
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +000069#include "llvm/Support/ARMWinEH.h"
70#include "llvm/Support/Format.h"
71
72using namespace llvm;
73using namespace llvm::object;
74using namespace llvm::support;
75
76namespace llvm {
77raw_ostream &operator<<(raw_ostream &OS, const ARM::WinEH::ReturnType &RT) {
78 switch (RT) {
79 case ARM::WinEH::ReturnType::RT_POP:
80 OS << "pop {pc}";
81 break;
82 case ARM::WinEH::ReturnType::RT_B:
83 OS << "b target";
84 break;
85 case ARM::WinEH::ReturnType::RT_BW:
86 OS << "b.w target";
87 break;
88 case ARM::WinEH::ReturnType::RT_NoEpilogue:
89 OS << "(no epilogue)";
90 break;
91 }
92 return OS;
93}
94}
95
96static std::string formatSymbol(StringRef Name, uint64_t Address,
97 uint64_t Offset = 0) {
Alp Tokere69170a2014-06-26 22:52:05 +000098 std::string Buffer;
99 raw_string_ostream OS(Buffer);
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000100
101 if (!Name.empty())
102 OS << Name << " ";
103
104 if (Offset)
105 OS << format("+0x%X (0x%" PRIX64 ")", Offset, Address);
106 else if (!Name.empty())
107 OS << format("(0x%" PRIX64 ")", Address);
108 else
109 OS << format("0x%" PRIX64, Address);
110
111 return OS.str();
112}
113
114namespace llvm {
115namespace ARM {
116namespace WinEH {
117const size_t Decoder::PDataEntrySize = sizeof(RuntimeFunction);
118
Saleem Abdulrasoolc86b54c82014-06-07 19:23:07 +0000119// TODO name the uops more appropriately
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000120const Decoder::RingEntry Decoder::Ring[] = {
Saleem Abdulrasoolc86b54c82014-06-07 19:23:07 +0000121 { 0x80, 0x00, &Decoder::opcode_0xxxxxxx }, // UOP_STACK_FREE (16-bit)
122 { 0xc0, 0x80, &Decoder::opcode_10Lxxxxx }, // UOP_POP (32-bit)
123 { 0xf0, 0xc0, &Decoder::opcode_1100xxxx }, // UOP_STACK_SAVE (16-bit)
124 { 0xf8, 0xd0, &Decoder::opcode_11010Lxx }, // UOP_POP (16-bit)
125 { 0xf8, 0xd8, &Decoder::opcode_11011Lxx }, // UOP_POP (32-bit)
126 { 0xf8, 0xe0, &Decoder::opcode_11100xxx }, // UOP_VPOP (32-bit)
127 { 0xfc, 0xe8, &Decoder::opcode_111010xx }, // UOP_STACK_FREE (32-bit)
128 { 0xfe, 0xec, &Decoder::opcode_1110110L }, // UOP_POP (16-bit)
129 { 0xff, 0xee, &Decoder::opcode_11101110 }, // UOP_MICROSOFT_SPECIFIC (16-bit)
130 // UOP_PUSH_MACHINE_FRAME
131 // UOP_PUSH_CONTEXT
132 // UOP_PUSH_TRAP_FRAME
133 // UOP_REDZONE_RESTORE_LR
134 { 0xff, 0xef, &Decoder::opcode_11101111 }, // UOP_LDRPC_POSTINC (32-bit)
135 { 0xff, 0xf5, &Decoder::opcode_11110101 }, // UOP_VPOP (32-bit)
136 { 0xff, 0xf6, &Decoder::opcode_11110110 }, // UOP_VPOP (32-bit)
137 { 0xff, 0xf7, &Decoder::opcode_11110111 }, // UOP_STACK_RESTORE (16-bit)
138 { 0xff, 0xf8, &Decoder::opcode_11111000 }, // UOP_STACK_RESTORE (16-bit)
139 { 0xff, 0xf9, &Decoder::opcode_11111001 }, // UOP_STACK_RESTORE (32-bit)
140 { 0xff, 0xfa, &Decoder::opcode_11111010 }, // UOP_STACK_RESTORE (32-bit)
141 { 0xff, 0xfb, &Decoder::opcode_11111011 }, // UOP_NOP (16-bit)
142 { 0xff, 0xfc, &Decoder::opcode_11111100 }, // UOP_NOP (32-bit)
143 { 0xff, 0xfd, &Decoder::opcode_11111101 }, // UOP_NOP (16-bit) / END
144 { 0xff, 0xfe, &Decoder::opcode_11111110 }, // UOP_NOP (32-bit) / END
145 { 0xff, 0xff, &Decoder::opcode_11111111 }, // UOP_END
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000146};
147
148void Decoder::printRegisters(const std::pair<uint16_t, uint32_t> &RegisterMask) {
149 static const char * const GPRRegisterNames[16] = {
150 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10",
151 "r11", "ip", "sp", "lr", "pc",
152 };
153
154 const uint16_t GPRMask = std::get<0>(RegisterMask);
155 const uint16_t VFPMask = std::get<1>(RegisterMask);
156
157 OS << '{';
158 bool Comma = false;
159 for (unsigned RI = 0, RE = 11; RI < RE; ++RI) {
160 if (GPRMask & (1 << RI)) {
161 if (Comma)
162 OS << ", ";
163 OS << GPRRegisterNames[RI];
164 Comma = true;
165 }
166 }
167 for (unsigned RI = 0, RE = 32; RI < RE; ++RI) {
168 if (VFPMask & (1 << RI)) {
169 if (Comma)
170 OS << ", ";
171 OS << "d" << unsigned(RI);
172 Comma = true;
173 }
174 }
175 for (unsigned RI = 11, RE = 16; RI < RE; ++RI) {
176 if (GPRMask & (1 << RI)) {
177 if (Comma)
178 OS << ", ";
179 OS << GPRRegisterNames[RI];
180 Comma = true;
181 }
182 }
183 OS << '}';
184}
185
186ErrorOr<object::SectionRef>
187Decoder::getSectionContaining(const COFFObjectFile &COFF, uint64_t VA) {
188 for (const auto &Section : COFF.sections()) {
Rafael Espindola80291272014-10-08 15:28:58 +0000189 uint64_t Address = Section.getAddress();
190 uint64_t Size = Section.getSize();
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000191
192 if (VA >= Address && (VA - Address) <= Size)
193 return Section;
194 }
195 return readobj_error::unknown_symbol;
196}
197
198ErrorOr<object::SymbolRef> Decoder::getSymbol(const COFFObjectFile &COFF,
199 uint64_t VA, bool FunctionOnly) {
200 for (const auto &Symbol : COFF.symbols()) {
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000201 Expected<SymbolRef::Type> Type = Symbol.getType();
202 if (!Type)
203 return errorToErrorCode(Type.takeError());
Kevin Enderby5afbc1c2016-03-23 20:27:00 +0000204 if (FunctionOnly && *Type != SymbolRef::ST_Function)
Rafael Espindola2fa80cc2015-06-26 12:18:49 +0000205 continue;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000206
Kevin Enderby931cb652016-06-24 18:24:42 +0000207 Expected<uint64_t> Address = Symbol.getAddress();
208 if (!Address)
209 return errorToErrorCode(Address.takeError());
Rafael Espindolaed067c42015-07-03 18:19:00 +0000210 if (*Address == VA)
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000211 return Symbol;
212 }
213 return readobj_error::unknown_symbol;
214}
215
216ErrorOr<SymbolRef> Decoder::getRelocatedSymbol(const COFFObjectFile &,
217 const SectionRef &Section,
218 uint64_t Offset) {
219 for (const auto &Relocation : Section.relocations()) {
Rafael Espindola96d071c2015-06-29 23:29:12 +0000220 uint64_t RelocationOffset = Relocation.getOffset();
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000221 if (RelocationOffset == Offset)
222 return *Relocation.getSymbol();
223 }
224 return readobj_error::unknown_symbol;
225}
226
Rui Ueyama062c4062014-09-11 21:46:33 +0000227bool Decoder::opcode_0xxxxxxx(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000228 unsigned Length, bool Prologue) {
229 uint8_t Imm = OC[Offset] & 0x7f;
230 SW.startLine() << format("0x%02x ; %s sp, #(%u * 4)\n",
231 OC[Offset],
232 static_cast<const char *>(Prologue ? "sub" : "add"),
233 Imm);
234 ++Offset;
235 return false;
236}
237
Rui Ueyama062c4062014-09-11 21:46:33 +0000238bool Decoder::opcode_10Lxxxxx(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000239 unsigned Length, bool Prologue) {
240 unsigned Link = (OC[Offset] & 0x20) >> 5;
241 uint16_t RegisterMask = (Link << (Prologue ? 14 : 15))
242 | ((OC[Offset + 0] & 0x1f) << 8)
243 | ((OC[Offset + 1] & 0xff) << 0);
244 assert((~RegisterMask & (1 << 13)) && "sp must not be set");
245 assert((~RegisterMask & (1 << (Prologue ? 15 : 14))) && "pc must not be set");
246
247 SW.startLine() << format("0x%02x 0x%02x ; %s.w ",
248 OC[Offset + 0], OC[Offset + 1],
249 Prologue ? "push" : "pop");
250 printRegisters(std::make_pair(RegisterMask, 0));
251 OS << '\n';
252
Richard Trieu7a083812016-02-18 22:09:30 +0000253 Offset += 2;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000254 return false;
255}
256
Rui Ueyama062c4062014-09-11 21:46:33 +0000257bool Decoder::opcode_1100xxxx(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000258 unsigned Length, bool Prologue) {
259 if (Prologue)
260 SW.startLine() << format("0x%02x ; mov r%u, sp\n",
261 OC[Offset], OC[Offset] & 0xf);
262 else
263 SW.startLine() << format("0x%02x ; mov sp, r%u\n",
264 OC[Offset], OC[Offset] & 0xf);
265 ++Offset;
266 return false;
267}
268
Rui Ueyama062c4062014-09-11 21:46:33 +0000269bool Decoder::opcode_11010Lxx(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000270 unsigned Length, bool Prologue) {
271 unsigned Link = (OC[Offset] & 0x4) >> 3;
272 unsigned Count = (OC[Offset] & 0x3);
273
274 uint16_t GPRMask = (Link << (Prologue ? 14 : 15))
275 | (((1 << (Count + 1)) - 1) << 4);
276
277 SW.startLine() << format("0x%02x ; %s ", OC[Offset],
278 Prologue ? "push" : "pop");
279 printRegisters(std::make_pair(GPRMask, 0));
280 OS << '\n';
281
282 ++Offset;
283 return false;
284}
285
Rui Ueyama062c4062014-09-11 21:46:33 +0000286bool Decoder::opcode_11011Lxx(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000287 unsigned Length, bool Prologue) {
288 unsigned Link = (OC[Offset] & 0x4) >> 2;
289 unsigned Count = (OC[Offset] & 0x3) + 4;
290
291 uint16_t GPRMask = (Link << (Prologue ? 14 : 15))
292 | (((1 << (Count + 1)) - 1) << 4);
293
294 SW.startLine() << format("0x%02x ; %s.w ", OC[Offset],
295 Prologue ? "push" : "pop");
296 printRegisters(std::make_pair(GPRMask, 0));
297 OS << '\n';
298
299 ++Offset;
300 return false;
301}
302
Rui Ueyama062c4062014-09-11 21:46:33 +0000303bool Decoder::opcode_11100xxx(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000304 unsigned Length, bool Prologue) {
305 unsigned High = (OC[Offset] & 0x7);
306 uint32_t VFPMask = (((1 << (High + 1)) - 1) << 8);
307
308 SW.startLine() << format("0x%02x ; %s ", OC[Offset],
309 Prologue ? "vpush" : "vpop");
310 printRegisters(std::make_pair(0, VFPMask));
311 OS << '\n';
312
313 ++Offset;
314 return false;
315}
316
Rui Ueyama062c4062014-09-11 21:46:33 +0000317bool Decoder::opcode_111010xx(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000318 unsigned Length, bool Prologue) {
319 uint16_t Imm = ((OC[Offset + 0] & 0x03) << 8) | ((OC[Offset + 1] & 0xff) << 0);
320
321 SW.startLine() << format("0x%02x 0x%02x ; %s.w sp, #(%u * 4)\n",
322 OC[Offset + 0], OC[Offset + 1],
323 static_cast<const char *>(Prologue ? "sub" : "add"),
324 Imm);
325
Richard Trieu7a083812016-02-18 22:09:30 +0000326 Offset += 2;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000327 return false;
328}
329
Rui Ueyama062c4062014-09-11 21:46:33 +0000330bool Decoder::opcode_1110110L(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000331 unsigned Length, bool Prologue) {
332 uint8_t GPRMask = ((OC[Offset + 0] & 0x01) << (Prologue ? 14 : 15))
333 | ((OC[Offset + 1] & 0xff) << 0);
334
335 SW.startLine() << format("0x%02x 0x%02x ; %s ", OC[Offset + 0],
336 OC[Offset + 1], Prologue ? "push" : "pop");
337 printRegisters(std::make_pair(GPRMask, 0));
338 OS << '\n';
339
Richard Trieu7a083812016-02-18 22:09:30 +0000340 Offset += 2;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000341 return false;
342}
343
Rui Ueyama062c4062014-09-11 21:46:33 +0000344bool Decoder::opcode_11101110(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000345 unsigned Length, bool Prologue) {
346 assert(!Prologue && "may not be used in prologue");
347
348 if (OC[Offset + 1] & 0xf0)
349 SW.startLine() << format("0x%02x 0x%02x ; reserved\n",
350 OC[Offset + 0], OC[Offset + 1]);
351 else
352 SW.startLine()
353 << format("0x%02x 0x%02x ; microsoft-specific (type: %u)\n",
354 OC[Offset + 0], OC[Offset + 1], OC[Offset + 1] & 0x0f);
355
Richard Trieu7a083812016-02-18 22:09:30 +0000356 Offset += 2;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000357 return false;
358}
359
Rui Ueyama062c4062014-09-11 21:46:33 +0000360bool Decoder::opcode_11101111(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000361 unsigned Length, bool Prologue) {
362 assert(!Prologue && "may not be used in prologue");
363
364 if (OC[Offset + 1] & 0xf0)
365 SW.startLine() << format("0x%02x 0x%02x ; reserved\n",
366 OC[Offset + 0], OC[Offset + 1]);
367 else
368 SW.startLine()
369 << format("0x%02x 0x%02x ; ldr.w lr, [sp], #%u\n",
370 OC[Offset + 0], OC[Offset + 1], OC[Offset + 1] << 2);
371
Richard Trieu7a083812016-02-18 22:09:30 +0000372 Offset += 2;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000373 return false;
374}
375
Rui Ueyama062c4062014-09-11 21:46:33 +0000376bool Decoder::opcode_11110101(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000377 unsigned Length, bool Prologue) {
378 unsigned Start = (OC[Offset + 1] & 0xf0) >> 4;
379 unsigned End = (OC[Offset + 1] & 0x0f) >> 0;
380 uint32_t VFPMask = ((1 << (End - Start)) - 1) << Start;
381
382 SW.startLine() << format("0x%02x 0x%02x ; %s ", OC[Offset + 0],
383 OC[Offset + 1], Prologue ? "vpush" : "vpop");
384 printRegisters(std::make_pair(0, VFPMask));
385 OS << '\n';
386
Richard Trieu7a083812016-02-18 22:09:30 +0000387 Offset += 2;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000388 return false;
389}
390
Rui Ueyama062c4062014-09-11 21:46:33 +0000391bool Decoder::opcode_11110110(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000392 unsigned Length, bool Prologue) {
393 unsigned Start = (OC[Offset + 1] & 0xf0) >> 4;
394 unsigned End = (OC[Offset + 1] & 0x0f) >> 0;
395 uint32_t VFPMask = ((1 << (End - Start)) - 1) << 16;
396
397 SW.startLine() << format("0x%02x 0x%02x ; %s ", OC[Offset + 0],
398 OC[Offset + 1], Prologue ? "vpush" : "vpop");
399 printRegisters(std::make_pair(0, VFPMask));
400 OS << '\n';
401
Richard Trieu7a083812016-02-18 22:09:30 +0000402 Offset += 2;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000403 return false;
404}
405
Rui Ueyama062c4062014-09-11 21:46:33 +0000406bool Decoder::opcode_11110111(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000407 unsigned Length, bool Prologue) {
408 uint32_t Imm = (OC[Offset + 1] << 8) | (OC[Offset + 2] << 0);
409
410 SW.startLine() << format("0x%02x 0x%02x 0x%02x ; %s sp, sp, #(%u * 4)\n",
411 OC[Offset + 0], OC[Offset + 1], OC[Offset + 2],
412 static_cast<const char *>(Prologue ? "sub" : "add"),
413 Imm);
414
Richard Trieu7a083812016-02-18 22:09:30 +0000415 Offset += 3;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000416 return false;
417}
418
Rui Ueyama062c4062014-09-11 21:46:33 +0000419bool Decoder::opcode_11111000(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000420 unsigned Length, bool Prologue) {
421 uint32_t Imm = (OC[Offset + 1] << 16)
422 | (OC[Offset + 2] << 8)
423 | (OC[Offset + 3] << 0);
424
425 SW.startLine()
426 << format("0x%02x 0x%02x 0x%02x 0x%02x ; %s sp, sp, #(%u * 4)\n",
427 OC[Offset + 0], OC[Offset + 1], OC[Offset + 2], OC[Offset + 3],
428 static_cast<const char *>(Prologue ? "sub" : "add"), Imm);
429
Richard Trieu7a083812016-02-18 22:09:30 +0000430 Offset += 4;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000431 return false;
432}
433
Rui Ueyama062c4062014-09-11 21:46:33 +0000434bool Decoder::opcode_11111001(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000435 unsigned Length, bool Prologue) {
436 uint32_t Imm = (OC[Offset + 1] << 8) | (OC[Offset + 2] << 0);
437
438 SW.startLine()
439 << format("0x%02x 0x%02x 0x%02x ; %s.w sp, sp, #(%u * 4)\n",
440 OC[Offset + 0], OC[Offset + 1], OC[Offset + 2],
441 static_cast<const char *>(Prologue ? "sub" : "add"), Imm);
442
Richard Trieu7a083812016-02-18 22:09:30 +0000443 Offset += 3;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000444 return false;
445}
446
Rui Ueyama062c4062014-09-11 21:46:33 +0000447bool Decoder::opcode_11111010(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000448 unsigned Length, bool Prologue) {
449 uint32_t Imm = (OC[Offset + 1] << 16)
450 | (OC[Offset + 2] << 8)
451 | (OC[Offset + 3] << 0);
452
453 SW.startLine()
454 << format("0x%02x 0x%02x 0x%02x 0x%02x ; %s.w sp, sp, #(%u * 4)\n",
455 OC[Offset + 0], OC[Offset + 1], OC[Offset + 2], OC[Offset + 3],
456 static_cast<const char *>(Prologue ? "sub" : "add"), Imm);
457
Richard Trieu7a083812016-02-18 22:09:30 +0000458 Offset += 4;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000459 return false;
460}
461
Rui Ueyama062c4062014-09-11 21:46:33 +0000462bool Decoder::opcode_11111011(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000463 unsigned Length, bool Prologue) {
464 SW.startLine() << format("0x%02x ; nop\n", OC[Offset]);
465 ++Offset;
466 return false;
467}
468
Rui Ueyama062c4062014-09-11 21:46:33 +0000469bool Decoder::opcode_11111100(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000470 unsigned Length, bool Prologue) {
471 SW.startLine() << format("0x%02x ; nop.w\n", OC[Offset]);
472 ++Offset;
473 return false;
474}
475
Rui Ueyama062c4062014-09-11 21:46:33 +0000476bool Decoder::opcode_11111101(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000477 unsigned Length, bool Prologue) {
478 SW.startLine() << format("0x%02x ; b\n", OC[Offset]);
479 ++Offset;
480 return true;
481}
482
Rui Ueyama062c4062014-09-11 21:46:33 +0000483bool Decoder::opcode_11111110(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000484 unsigned Length, bool Prologue) {
485 SW.startLine() << format("0x%02x ; b.w\n", OC[Offset]);
486 ++Offset;
487 return true;
488}
489
Rui Ueyama062c4062014-09-11 21:46:33 +0000490bool Decoder::opcode_11111111(const uint8_t *OC, unsigned &Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000491 unsigned Length, bool Prologue) {
492 ++Offset;
493 return true;
494}
495
Rui Ueyama062c4062014-09-11 21:46:33 +0000496void Decoder::decodeOpcodes(ArrayRef<uint8_t> Opcodes, unsigned Offset,
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000497 bool Prologue) {
Saleem Abdulrasool72e9a252014-06-04 16:03:20 +0000498 assert((!Prologue || Offset == 0) && "prologue should always use offset 0");
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000499
500 bool Terminated = false;
501 for (unsigned OI = Offset, OE = Opcodes.size(); !Terminated && OI < OE; ) {
Benjamin Kramer0e184842014-07-01 14:46:44 +0000502 for (unsigned DI = 0;; ++DI) {
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000503 if ((Opcodes[OI] & Ring[DI].Mask) == Ring[DI].Value) {
504 Terminated = (this->*Ring[DI].Routine)(Opcodes.data(), OI, 0, Prologue);
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000505 break;
506 }
Benjamin Kramer0e184842014-07-01 14:46:44 +0000507 assert(DI < array_lengthof(Ring) && "unhandled opcode");
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000508 }
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000509 }
510}
511
512bool Decoder::dumpXDataRecord(const COFFObjectFile &COFF,
513 const SectionRef &Section,
514 uint64_t FunctionAddress, uint64_t VA) {
515 ArrayRef<uint8_t> Contents;
516 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
517 return false;
518
Rafael Espindola80291272014-10-08 15:28:58 +0000519 uint64_t SectionVA = Section.getAddress();
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000520 uint64_t Offset = VA - SectionVA;
521 const ulittle32_t *Data =
522 reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset);
523 const ExceptionDataRecord XData(Data);
524
525 DictScope XRS(SW, "ExceptionData");
526 SW.printNumber("FunctionLength", XData.FunctionLength() << 1);
527 SW.printNumber("Version", XData.Vers());
528 SW.printBoolean("ExceptionData", XData.X());
529 SW.printBoolean("EpiloguePacked", XData.E());
530 SW.printBoolean("Fragment", XData.F());
531 SW.printNumber(XData.E() ? "EpilogueOffset" : "EpilogueScopes",
532 XData.EpilogueCount());
533 SW.printNumber("ByteCodeLength",
534 static_cast<uint64_t>(XData.CodeWords() * sizeof(uint32_t)));
535
536 if (XData.E()) {
Rui Ueyama062c4062014-09-11 21:46:33 +0000537 ArrayRef<uint8_t> UC = XData.UnwindByteCode();
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000538 if (!XData.F()) {
539 ListScope PS(SW, "Prologue");
540 decodeOpcodes(UC, 0, /*Prologue=*/true);
541 }
542 if (XData.EpilogueCount()) {
543 ListScope ES(SW, "Epilogue");
544 decodeOpcodes(UC, XData.EpilogueCount(), /*Prologue=*/false);
545 }
546 } else {
547 ArrayRef<ulittle32_t> EpilogueScopes = XData.EpilogueScopes();
548 ListScope ESS(SW, "EpilogueScopes");
549 for (const EpilogueScope ES : EpilogueScopes) {
550 DictScope ESES(SW, "EpilogueScope");
551 SW.printNumber("StartOffset", ES.EpilogueStartOffset());
552 SW.printNumber("Condition", ES.Condition());
553 SW.printNumber("EpilogueStartIndex", ES.EpilogueStartIndex());
554
555 ListScope Opcodes(SW, "Opcodes");
556 decodeOpcodes(XData.UnwindByteCode(), ES.EpilogueStartIndex(),
557 /*Prologue=*/false);
558 }
559 }
560
561 if (XData.X()) {
562 const uint32_t Address = XData.ExceptionHandlerRVA();
563 const uint32_t Parameter = XData.ExceptionHandlerParameter();
564 const size_t HandlerOffset = HeaderWords(XData)
565 + (XData.E() ? 0 : XData.EpilogueCount())
566 + XData.CodeWords();
567
568 ErrorOr<SymbolRef> Symbol =
569 getRelocatedSymbol(COFF, Section, HandlerOffset * sizeof(uint32_t));
570 if (!Symbol)
571 Symbol = getSymbol(COFF, Address, /*FunctionOnly=*/true);
572
Kevin Enderby81e8b7d2016-04-20 21:24:34 +0000573 Expected<StringRef> Name = Symbol->getName();
574 if (!Name) {
575 std::string Buf;
576 llvm::raw_string_ostream OS(Buf);
577 logAllUnhandledErrors(Name.takeError(), OS, "");
578 OS.flush();
579 report_fatal_error(Buf);
580 }
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000581
582 ListScope EHS(SW, "ExceptionHandler");
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000583 SW.printString("Routine", formatSymbol(*Name, Address));
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000584 SW.printHex("Parameter", Parameter);
585 }
586
587 return true;
588}
589
590bool Decoder::dumpUnpackedEntry(const COFFObjectFile &COFF,
591 const SectionRef Section, uint64_t Offset,
592 unsigned Index, const RuntimeFunction &RF) {
593 assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked &&
594 "packed entry cannot be treated as an unpacked entry");
595
596 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
597 if (!Function)
598 Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
599
600 ErrorOr<SymbolRef> XDataRecord = getRelocatedSymbol(COFF, Section, Offset + 4);
601 if (!XDataRecord)
602 XDataRecord = getSymbol(COFF, RF.ExceptionInformationRVA());
603
604 if (!RF.BeginAddress && !Function)
605 return false;
606 if (!RF.UnwindData && !XDataRecord)
607 return false;
608
609 StringRef FunctionName;
610 uint64_t FunctionAddress;
611 if (Function) {
Kevin Enderby81e8b7d2016-04-20 21:24:34 +0000612 Expected<StringRef> FunctionNameOrErr = Function->getName();
613 if (!FunctionNameOrErr) {
614 std::string Buf;
615 llvm::raw_string_ostream OS(Buf);
616 logAllUnhandledErrors(FunctionNameOrErr.takeError(), OS, "");
617 OS.flush();
618 report_fatal_error(Buf);
619 }
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000620 FunctionName = *FunctionNameOrErr;
Kevin Enderby931cb652016-06-24 18:24:42 +0000621 Expected<uint64_t> FunctionAddressOrErr = Function->getAddress();
622 if (!FunctionAddressOrErr) {
623 std::string Buf;
624 llvm::raw_string_ostream OS(Buf);
625 logAllUnhandledErrors(FunctionAddressOrErr.takeError(), OS, "");
626 OS.flush();
627 report_fatal_error(Buf);
628 }
Rafael Espindolaed067c42015-07-03 18:19:00 +0000629 FunctionAddress = *FunctionAddressOrErr;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000630 } else {
631 const pe32_header *PEHeader;
632 if (COFF.getPE32Header(PEHeader))
633 return false;
634 FunctionAddress = PEHeader->ImageBase + RF.BeginAddress;
635 }
636
637 SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
638
639 if (XDataRecord) {
Kevin Enderby81e8b7d2016-04-20 21:24:34 +0000640 Expected<StringRef> Name = XDataRecord->getName();
641 if (!Name) {
642 std::string Buf;
643 llvm::raw_string_ostream OS(Buf);
644 logAllUnhandledErrors(Name.takeError(), OS, "");
645 OS.flush();
646 report_fatal_error(Buf);
647 }
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000648
Kevin Enderby931cb652016-06-24 18:24:42 +0000649 Expected<uint64_t> AddressOrErr = XDataRecord->getAddress();
650 if (!AddressOrErr) {
651 std::string Buf;
652 llvm::raw_string_ostream OS(Buf);
653 logAllUnhandledErrors(AddressOrErr.takeError(), OS, "");
654 OS.flush();
655 report_fatal_error(Buf);
656 }
Rafael Espindolaed067c42015-07-03 18:19:00 +0000657 uint64_t Address = *AddressOrErr;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000658
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000659 SW.printString("ExceptionRecord", formatSymbol(*Name, Address));
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000660
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000661 Expected<section_iterator> SIOrErr = XDataRecord->getSection();
662 if (!SIOrErr) {
663 // TODO: Actually report errors helpfully.
664 consumeError(SIOrErr.takeError());
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000665 return false;
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000666 }
Rafael Espindola8bab8892015-08-07 23:27:14 +0000667 section_iterator SI = *SIOrErr;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000668
669 return dumpXDataRecord(COFF, *SI, FunctionAddress, Address);
670 } else {
671 const pe32_header *PEHeader;
672 if (COFF.getPE32Header(PEHeader))
673 return false;
674
675 uint64_t Address = PEHeader->ImageBase + RF.ExceptionInformationRVA();
676 SW.printString("ExceptionRecord", formatSymbol("", Address));
677
678 ErrorOr<SectionRef> Section =
679 getSectionContaining(COFF, RF.ExceptionInformationRVA());
680 if (!Section)
681 return false;
682
683 return dumpXDataRecord(COFF, *Section, FunctionAddress,
684 RF.ExceptionInformationRVA());
685 }
686}
687
688bool Decoder::dumpPackedEntry(const object::COFFObjectFile &COFF,
689 const SectionRef Section, uint64_t Offset,
690 unsigned Index, const RuntimeFunction &RF) {
691 assert((RF.Flag() == RuntimeFunctionFlag::RFF_Packed ||
692 RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment) &&
693 "unpacked entry cannot be treated as a packed entry");
694
695 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
696 if (!Function)
697 Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
698
699 StringRef FunctionName;
700 uint64_t FunctionAddress;
701 if (Function) {
Kevin Enderby81e8b7d2016-04-20 21:24:34 +0000702 Expected<StringRef> FunctionNameOrErr = Function->getName();
703 if (!FunctionNameOrErr) {
704 std::string Buf;
705 llvm::raw_string_ostream OS(Buf);
706 logAllUnhandledErrors(FunctionNameOrErr.takeError(), OS, "");
707 OS.flush();
708 report_fatal_error(Buf);
709 }
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000710 FunctionName = *FunctionNameOrErr;
Kevin Enderby931cb652016-06-24 18:24:42 +0000711 Expected<uint64_t> FunctionAddressOrErr = Function->getAddress();
712 if (!FunctionAddressOrErr) {
713 std::string Buf;
714 llvm::raw_string_ostream OS(Buf);
715 logAllUnhandledErrors(FunctionAddressOrErr.takeError(), OS, "");
716 OS.flush();
717 report_fatal_error(Buf);
718 }
Rafael Espindolaed067c42015-07-03 18:19:00 +0000719 FunctionAddress = *FunctionAddressOrErr;
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000720 } else {
721 const pe32_header *PEHeader;
722 if (COFF.getPE32Header(PEHeader))
723 return false;
724 FunctionAddress = PEHeader->ImageBase + RF.BeginAddress;
725 }
726
727 SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
728 SW.printBoolean("Fragment",
729 RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment);
730 SW.printNumber("FunctionLength", RF.FunctionLength());
731 SW.startLine() << "ReturnType: " << RF.Ret() << '\n';
732 SW.printBoolean("HomedParameters", RF.H());
733 SW.startLine() << "SavedRegisters: ";
734 printRegisters(SavedRegisterMask(RF));
735 OS << '\n';
736 SW.printNumber("StackAdjustment", StackAdjustment(RF) << 2);
737
738 return true;
739}
740
741bool Decoder::dumpProcedureDataEntry(const COFFObjectFile &COFF,
742 const SectionRef Section, unsigned Index,
743 ArrayRef<uint8_t> Contents) {
744 uint64_t Offset = PDataEntrySize * Index;
745 const ulittle32_t *Data =
746 reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset);
747
748 const RuntimeFunction Entry(Data);
749 DictScope RFS(SW, "RuntimeFunction");
750 if (Entry.Flag() == RuntimeFunctionFlag::RFF_Unpacked)
751 return dumpUnpackedEntry(COFF, Section, Offset, Index, Entry);
752 return dumpPackedEntry(COFF, Section, Offset, Index, Entry);
753}
754
755void Decoder::dumpProcedureData(const COFFObjectFile &COFF,
756 const SectionRef Section) {
757 ArrayRef<uint8_t> Contents;
758 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
759 return;
760
761 if (Contents.size() % PDataEntrySize) {
762 errs() << ".pdata content is not " << PDataEntrySize << "-byte aligned\n";
763 return;
764 }
765
766 for (unsigned EI = 0, EE = Contents.size() / PDataEntrySize; EI < EE; ++EI)
767 if (!dumpProcedureDataEntry(COFF, Section, EI, Contents))
768 break;
769}
770
Rafael Espindolabff5d0d2014-06-13 01:25:41 +0000771std::error_code Decoder::dumpProcedureData(const COFFObjectFile &COFF) {
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000772 for (const auto &Section : COFF.sections()) {
773 StringRef SectionName;
Rafael Espindolabff5d0d2014-06-13 01:25:41 +0000774 if (std::error_code EC =
775 COFF.getSectionName(COFF.getCOFFSection(Section), SectionName))
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000776 return EC;
777
778 if (SectionName.startswith(".pdata"))
779 dumpProcedureData(COFF, Section);
780 }
Rafael Espindolabff5d0d2014-06-13 01:25:41 +0000781 return std::error_code();
Saleem Abdulrasoole6971ca2014-06-04 15:47:15 +0000782}
783}
784}
785}