1 //===-- 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 
10 // 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 
65 #include "ARMWinEHPrinter.h"
66 #include "Error.h"
67 #include "llvm/ADT/STLExtras.h"
68 #include "llvm/ADT/StringExtras.h"
69 #include "llvm/Support/ARMWinEH.h"
70 #include "llvm/Support/Format.h"
71 
72 using namespace llvm;
73 using namespace llvm::object;
74 using namespace llvm::support;
75 
76 namespace llvm {
77 raw_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 
96 static std::string formatSymbol(StringRef Name, uint64_t Address,
97                                 uint64_t Offset = 0) {
98   std::string Buffer;
99   raw_string_ostream OS(Buffer);
100 
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 
114 namespace llvm {
115 namespace ARM {
116 namespace WinEH {
117 const size_t Decoder::PDataEntrySize = sizeof(RuntimeFunction);
118 
119 // TODO name the uops more appropriately
120 const Decoder::RingEntry Decoder::Ring[] = {
121   { 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
146 };
147 
148 void 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 
186 ErrorOr<object::SectionRef>
187 Decoder::getSectionContaining(const COFFObjectFile &COFF, uint64_t VA) {
188   for (const auto &Section : COFF.sections()) {
189     uint64_t Address = Section.getAddress();
190     uint64_t Size = Section.getSize();
191 
192     if (VA >= Address && (VA - Address) <= Size)
193       return Section;
194   }
195   return readobj_error::unknown_symbol;
196 }
197 
198 ErrorOr<object::SymbolRef> Decoder::getSymbol(const COFFObjectFile &COFF,
199                                               uint64_t VA, bool FunctionOnly) {
200   for (const auto &Symbol : COFF.symbols()) {
201     ErrorOr<SymbolRef::Type> Type = Symbol.getType();
202     if (std::error_code EC = Type.getError())
203       return EC;
204     if (FunctionOnly && *Type != SymbolRef::ST_Function)
205       continue;
206 
207     ErrorOr<uint64_t> Address = Symbol.getAddress();
208     if (std::error_code EC = Address.getError())
209       return EC;
210     if (*Address == VA)
211       return Symbol;
212   }
213   return readobj_error::unknown_symbol;
214 }
215 
216 ErrorOr<SymbolRef> Decoder::getRelocatedSymbol(const COFFObjectFile &,
217                                                const SectionRef &Section,
218                                                uint64_t Offset) {
219   for (const auto &Relocation : Section.relocations()) {
220     uint64_t RelocationOffset = Relocation.getOffset();
221     if (RelocationOffset == Offset)
222       return *Relocation.getSymbol();
223   }
224   return readobj_error::unknown_symbol;
225 }
226 
227 bool Decoder::opcode_0xxxxxxx(const uint8_t *OC, unsigned &Offset,
228                               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 
238 bool Decoder::opcode_10Lxxxxx(const uint8_t *OC, unsigned &Offset,
239                               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 
253   Offset += 2;
254   return false;
255 }
256 
257 bool Decoder::opcode_1100xxxx(const uint8_t *OC, unsigned &Offset,
258                               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 
269 bool Decoder::opcode_11010Lxx(const uint8_t *OC, unsigned &Offset,
270                               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 
286 bool Decoder::opcode_11011Lxx(const uint8_t *OC, unsigned &Offset,
287                               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 
303 bool Decoder::opcode_11100xxx(const uint8_t *OC, unsigned &Offset,
304                               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 
317 bool Decoder::opcode_111010xx(const uint8_t *OC, unsigned &Offset,
318                               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 
326   Offset += 2;
327   return false;
328 }
329 
330 bool Decoder::opcode_1110110L(const uint8_t *OC, unsigned &Offset,
331                               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 
340   Offset += 2;
341   return false;
342 }
343 
344 bool Decoder::opcode_11101110(const uint8_t *OC, unsigned &Offset,
345                               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 
356   Offset += 2;
357   return false;
358 }
359 
360 bool Decoder::opcode_11101111(const uint8_t *OC, unsigned &Offset,
361                               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 
372   Offset += 2;
373   return false;
374 }
375 
376 bool Decoder::opcode_11110101(const uint8_t *OC, unsigned &Offset,
377                               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 
387   Offset += 2;
388   return false;
389 }
390 
391 bool Decoder::opcode_11110110(const uint8_t *OC, unsigned &Offset,
392                               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 
402   Offset += 2;
403   return false;
404 }
405 
406 bool Decoder::opcode_11110111(const uint8_t *OC, unsigned &Offset,
407                               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 
415   Offset += 3;
416   return false;
417 }
418 
419 bool Decoder::opcode_11111000(const uint8_t *OC, unsigned &Offset,
420                               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 
430   Offset += 4;
431   return false;
432 }
433 
434 bool Decoder::opcode_11111001(const uint8_t *OC, unsigned &Offset,
435                               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 
443   Offset += 3;
444   return false;
445 }
446 
447 bool Decoder::opcode_11111010(const uint8_t *OC, unsigned &Offset,
448                               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 
458   Offset += 4;
459   return false;
460 }
461 
462 bool Decoder::opcode_11111011(const uint8_t *OC, unsigned &Offset,
463                               unsigned Length, bool Prologue) {
464   SW.startLine() << format("0x%02x                ; nop\n", OC[Offset]);
465   ++Offset;
466   return false;
467 }
468 
469 bool Decoder::opcode_11111100(const uint8_t *OC, unsigned &Offset,
470                               unsigned Length, bool Prologue) {
471   SW.startLine() << format("0x%02x                ; nop.w\n", OC[Offset]);
472   ++Offset;
473   return false;
474 }
475 
476 bool Decoder::opcode_11111101(const uint8_t *OC, unsigned &Offset,
477                               unsigned Length, bool Prologue) {
478   SW.startLine() << format("0x%02x                ; b\n", OC[Offset]);
479   ++Offset;
480   return true;
481 }
482 
483 bool Decoder::opcode_11111110(const uint8_t *OC, unsigned &Offset,
484                               unsigned Length, bool Prologue) {
485   SW.startLine() << format("0x%02x                ; b.w\n", OC[Offset]);
486   ++Offset;
487   return true;
488 }
489 
490 bool Decoder::opcode_11111111(const uint8_t *OC, unsigned &Offset,
491                               unsigned Length, bool Prologue) {
492   ++Offset;
493   return true;
494 }
495 
496 void Decoder::decodeOpcodes(ArrayRef<uint8_t> Opcodes, unsigned Offset,
497                             bool Prologue) {
498   assert((!Prologue || Offset == 0) && "prologue should always use offset 0");
499 
500   bool Terminated = false;
501   for (unsigned OI = Offset, OE = Opcodes.size(); !Terminated && OI < OE; ) {
502     for (unsigned DI = 0;; ++DI) {
503       if ((Opcodes[OI] & Ring[DI].Mask) == Ring[DI].Value) {
504         Terminated = (this->*Ring[DI].Routine)(Opcodes.data(), OI, 0, Prologue);
505         break;
506       }
507       assert(DI < array_lengthof(Ring) && "unhandled opcode");
508     }
509   }
510 }
511 
512 bool 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 
519   uint64_t SectionVA = Section.getAddress();
520   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()) {
537     ArrayRef<uint8_t> UC = XData.UnwindByteCode();
538     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 
573     ErrorOr<StringRef> Name = Symbol->getName();
574     if (std::error_code EC = Name.getError())
575       report_fatal_error(EC.message());
576 
577     ListScope EHS(SW, "ExceptionHandler");
578     SW.printString("Routine", formatSymbol(*Name, Address));
579     SW.printHex("Parameter", Parameter);
580   }
581 
582   return true;
583 }
584 
585 bool Decoder::dumpUnpackedEntry(const COFFObjectFile &COFF,
586                                 const SectionRef Section, uint64_t Offset,
587                                 unsigned Index, const RuntimeFunction &RF) {
588   assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked &&
589          "packed entry cannot be treated as an unpacked entry");
590 
591   ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
592   if (!Function)
593     Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
594 
595   ErrorOr<SymbolRef> XDataRecord = getRelocatedSymbol(COFF, Section, Offset + 4);
596   if (!XDataRecord)
597     XDataRecord = getSymbol(COFF, RF.ExceptionInformationRVA());
598 
599   if (!RF.BeginAddress && !Function)
600     return false;
601   if (!RF.UnwindData && !XDataRecord)
602     return false;
603 
604   StringRef FunctionName;
605   uint64_t FunctionAddress;
606   if (Function) {
607     ErrorOr<StringRef> FunctionNameOrErr = Function->getName();
608     if (std::error_code EC = FunctionNameOrErr.getError())
609       report_fatal_error(EC.message());
610     FunctionName = *FunctionNameOrErr;
611     ErrorOr<uint64_t> FunctionAddressOrErr = Function->getAddress();
612     if (std::error_code EC = FunctionAddressOrErr.getError())
613       report_fatal_error(EC.message());
614     FunctionAddress = *FunctionAddressOrErr;
615   } else {
616     const pe32_header *PEHeader;
617     if (COFF.getPE32Header(PEHeader))
618       return false;
619     FunctionAddress = PEHeader->ImageBase + RF.BeginAddress;
620   }
621 
622   SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
623 
624   if (XDataRecord) {
625     ErrorOr<StringRef> Name = XDataRecord->getName();
626     if (std::error_code EC = Name.getError())
627       report_fatal_error(EC.message());
628 
629     ErrorOr<uint64_t> AddressOrErr = XDataRecord->getAddress();
630     if (std::error_code EC = AddressOrErr.getError())
631       report_fatal_error(EC.message());
632     uint64_t Address = *AddressOrErr;
633 
634     SW.printString("ExceptionRecord", formatSymbol(*Name, Address));
635 
636     ErrorOr<section_iterator> SIOrErr = XDataRecord->getSection();
637     if (!SIOrErr)
638       return false;
639     section_iterator SI = *SIOrErr;
640 
641     return dumpXDataRecord(COFF, *SI, FunctionAddress, Address);
642   } else {
643     const pe32_header *PEHeader;
644     if (COFF.getPE32Header(PEHeader))
645       return false;
646 
647     uint64_t Address = PEHeader->ImageBase + RF.ExceptionInformationRVA();
648     SW.printString("ExceptionRecord", formatSymbol("", Address));
649 
650     ErrorOr<SectionRef> Section =
651       getSectionContaining(COFF, RF.ExceptionInformationRVA());
652     if (!Section)
653       return false;
654 
655     return dumpXDataRecord(COFF, *Section, FunctionAddress,
656                            RF.ExceptionInformationRVA());
657   }
658 }
659 
660 bool Decoder::dumpPackedEntry(const object::COFFObjectFile &COFF,
661                               const SectionRef Section, uint64_t Offset,
662                               unsigned Index, const RuntimeFunction &RF) {
663   assert((RF.Flag() == RuntimeFunctionFlag::RFF_Packed ||
664           RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment) &&
665          "unpacked entry cannot be treated as a packed entry");
666 
667   ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
668   if (!Function)
669     Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
670 
671   StringRef FunctionName;
672   uint64_t FunctionAddress;
673   if (Function) {
674     ErrorOr<StringRef> FunctionNameOrErr = Function->getName();
675     if (std::error_code EC = FunctionNameOrErr.getError())
676       report_fatal_error(EC.message());
677     FunctionName = *FunctionNameOrErr;
678     ErrorOr<uint64_t> FunctionAddressOrErr = Function->getAddress();
679     FunctionAddress = *FunctionAddressOrErr;
680   } else {
681     const pe32_header *PEHeader;
682     if (COFF.getPE32Header(PEHeader))
683       return false;
684     FunctionAddress = PEHeader->ImageBase + RF.BeginAddress;
685   }
686 
687   SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
688   SW.printBoolean("Fragment",
689                   RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment);
690   SW.printNumber("FunctionLength", RF.FunctionLength());
691   SW.startLine() << "ReturnType: " << RF.Ret() << '\n';
692   SW.printBoolean("HomedParameters", RF.H());
693   SW.startLine() << "SavedRegisters: ";
694                  printRegisters(SavedRegisterMask(RF));
695   OS << '\n';
696   SW.printNumber("StackAdjustment", StackAdjustment(RF) << 2);
697 
698   return true;
699 }
700 
701 bool Decoder::dumpProcedureDataEntry(const COFFObjectFile &COFF,
702                                      const SectionRef Section, unsigned Index,
703                                      ArrayRef<uint8_t> Contents) {
704   uint64_t Offset = PDataEntrySize * Index;
705   const ulittle32_t *Data =
706     reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset);
707 
708   const RuntimeFunction Entry(Data);
709   DictScope RFS(SW, "RuntimeFunction");
710   if (Entry.Flag() == RuntimeFunctionFlag::RFF_Unpacked)
711     return dumpUnpackedEntry(COFF, Section, Offset, Index, Entry);
712   return dumpPackedEntry(COFF, Section, Offset, Index, Entry);
713 }
714 
715 void Decoder::dumpProcedureData(const COFFObjectFile &COFF,
716                                 const SectionRef Section) {
717   ArrayRef<uint8_t> Contents;
718   if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
719     return;
720 
721   if (Contents.size() % PDataEntrySize) {
722     errs() << ".pdata content is not " << PDataEntrySize << "-byte aligned\n";
723     return;
724   }
725 
726   for (unsigned EI = 0, EE = Contents.size() / PDataEntrySize; EI < EE; ++EI)
727     if (!dumpProcedureDataEntry(COFF, Section, EI, Contents))
728       break;
729 }
730 
731 std::error_code Decoder::dumpProcedureData(const COFFObjectFile &COFF) {
732   for (const auto &Section : COFF.sections()) {
733     StringRef SectionName;
734     if (std::error_code EC =
735             COFF.getSectionName(COFF.getCOFFSection(Section), SectionName))
736       return EC;
737 
738     if (SectionName.startswith(".pdata"))
739       dumpProcedureData(COFF, Section);
740   }
741   return std::error_code();
742 }
743 }
744 }
745 }
746