llvm-objdump: use portable format specifiers for info.
[oota-llvm.git] / tools / llvm-objdump / MachODump.cpp
1 //===-- MachODump.cpp - Object file dumping utility for llvm --------------===//
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 // This file implements the MachO-specific dumper for llvm-objdump.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm-objdump.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/StringExtras.h"
17 #include "llvm/ADT/Triple.h"
18 #include "llvm/DebugInfo/DIContext.h"
19 #include "llvm/MC/MCAsmInfo.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCDisassembler.h"
22 #include "llvm/MC/MCInst.h"
23 #include "llvm/MC/MCInstPrinter.h"
24 #include "llvm/MC/MCInstrAnalysis.h"
25 #include "llvm/MC/MCInstrDesc.h"
26 #include "llvm/MC/MCInstrInfo.h"
27 #include "llvm/MC/MCRegisterInfo.h"
28 #include "llvm/MC/MCSubtargetInfo.h"
29 #include "llvm/Object/MachO.h"
30 #include "llvm/Support/Casting.h"
31 #include "llvm/Support/CommandLine.h"
32 #include "llvm/Support/Debug.h"
33 #include "llvm/Support/Endian.h"
34 #include "llvm/Support/Format.h"
35 #include "llvm/Support/GraphWriter.h"
36 #include "llvm/Support/MachO.h"
37 #include "llvm/Support/MemoryBuffer.h"
38 #include "llvm/Support/TargetRegistry.h"
39 #include "llvm/Support/TargetSelect.h"
40 #include "llvm/Support/raw_ostream.h"
41 #include <algorithm>
42 #include <cstring>
43 #include <system_error>
44 using namespace llvm;
45 using namespace object;
46
47 static cl::opt<bool>
48   UseDbg("g", cl::desc("Print line information from debug info if available"));
49
50 static cl::opt<std::string>
51   DSYMFile("dsym", cl::desc("Use .dSYM file for debug info"));
52
53 static const Target *GetTarget(const MachOObjectFile *MachOObj) {
54   // Figure out the target triple.
55   if (TripleName.empty()) {
56     llvm::Triple TT("unknown-unknown-unknown");
57     TT.setArch(Triple::ArchType(MachOObj->getArch()));
58     TripleName = TT.str();
59   }
60
61   // Get the target specific parser.
62   std::string Error;
63   const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
64   if (TheTarget)
65     return TheTarget;
66
67   errs() << "llvm-objdump: error: unable to get target for '" << TripleName
68          << "', see --version and --triple.\n";
69   return nullptr;
70 }
71
72 struct SymbolSorter {
73   bool operator()(const SymbolRef &A, const SymbolRef &B) {
74     SymbolRef::Type AType, BType;
75     A.getType(AType);
76     B.getType(BType);
77
78     uint64_t AAddr, BAddr;
79     if (AType != SymbolRef::ST_Function)
80       AAddr = 0;
81     else
82       A.getAddress(AAddr);
83     if (BType != SymbolRef::ST_Function)
84       BAddr = 0;
85     else
86       B.getAddress(BAddr);
87     return AAddr < BAddr;
88   }
89 };
90
91 // Types for the storted data in code table that is built before disassembly
92 // and the predicate function to sort them.
93 typedef std::pair<uint64_t, DiceRef> DiceTableEntry;
94 typedef std::vector<DiceTableEntry> DiceTable;
95 typedef DiceTable::iterator dice_table_iterator;
96
97 static bool
98 compareDiceTableEntries(const DiceTableEntry i,
99                         const DiceTableEntry j) {
100   return i.first == j.first;
101 }
102
103 static void DumpDataInCode(const char *bytes, uint64_t Size,
104                            unsigned short Kind) {
105   uint64_t Value;
106
107   switch (Kind) {
108   case MachO::DICE_KIND_DATA:
109     switch (Size) {
110     case 4:
111       Value = bytes[3] << 24 |
112               bytes[2] << 16 |
113               bytes[1] << 8 |
114               bytes[0];
115       outs() << "\t.long " << Value;
116       break;
117     case 2:
118       Value = bytes[1] << 8 |
119               bytes[0];
120       outs() << "\t.short " << Value;
121       break;
122     case 1:
123       Value = bytes[0];
124       outs() << "\t.byte " << Value;
125       break;
126     }
127     outs() << "\t@ KIND_DATA\n";
128     break;
129   case MachO::DICE_KIND_JUMP_TABLE8:
130     Value = bytes[0];
131     outs() << "\t.byte " << Value << "\t@ KIND_JUMP_TABLE8";
132     break;
133   case MachO::DICE_KIND_JUMP_TABLE16:
134     Value = bytes[1] << 8 |
135             bytes[0];
136     outs() << "\t.short " << Value << "\t@ KIND_JUMP_TABLE16";
137     break;
138   case MachO::DICE_KIND_JUMP_TABLE32:
139     Value = bytes[3] << 24 |
140             bytes[2] << 16 |
141             bytes[1] << 8 |
142             bytes[0];
143     outs() << "\t.long " << Value << "\t@ KIND_JUMP_TABLE32";
144     break;
145   default:
146     outs() << "\t@ data in code kind = " << Kind << "\n";
147     break;
148   }
149 }
150
151 static void getSectionsAndSymbols(const MachO::mach_header Header,
152                                   MachOObjectFile *MachOObj,
153                                   std::vector<SectionRef> &Sections,
154                                   std::vector<SymbolRef> &Symbols,
155                                   SmallVectorImpl<uint64_t> &FoundFns,
156                                   uint64_t &BaseSegmentAddress) {
157   for (const SymbolRef &Symbol : MachOObj->symbols())
158     Symbols.push_back(Symbol);
159
160   for (const SectionRef &Section : MachOObj->sections()) {
161     StringRef SectName;
162     Section.getName(SectName);
163     Sections.push_back(Section);
164   }
165
166   MachOObjectFile::LoadCommandInfo Command =
167       MachOObj->getFirstLoadCommandInfo();
168   bool BaseSegmentAddressSet = false;
169   for (unsigned i = 0; ; ++i) {
170     if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) {
171       // We found a function starts segment, parse the addresses for later
172       // consumption.
173       MachO::linkedit_data_command LLC =
174         MachOObj->getLinkeditDataLoadCommand(Command);
175
176       MachOObj->ReadULEB128s(LLC.dataoff, FoundFns);
177     }
178     else if (Command.C.cmd == MachO::LC_SEGMENT) {
179       MachO::segment_command SLC =
180         MachOObj->getSegmentLoadCommand(Command);
181       StringRef SegName = SLC.segname;
182       if(!BaseSegmentAddressSet && SegName != "__PAGEZERO") {
183         BaseSegmentAddressSet = true;
184         BaseSegmentAddress = SLC.vmaddr;
185       }
186     }
187
188     if (i == Header.ncmds - 1)
189       break;
190     else
191       Command = MachOObj->getNextLoadCommandInfo(Command);
192   }
193 }
194
195 static void DisassembleInputMachO2(StringRef Filename,
196                                    MachOObjectFile *MachOOF);
197
198 void llvm::DisassembleInputMachO(StringRef Filename) {
199   ErrorOr<std::unique_ptr<MemoryBuffer>> Buff =
200       MemoryBuffer::getFileOrSTDIN(Filename);
201   if (std::error_code EC = Buff.getError()) {
202     errs() << "llvm-objdump: " << Filename << ": " << EC.message() << "\n";
203     return;
204   }
205
206   std::unique_ptr<MachOObjectFile> MachOOF =
207     std::move(ObjectFile::createMachOObjectFile(Buff.get()).get());
208
209   DisassembleInputMachO2(Filename, MachOOF.get());
210 }
211
212 static void DisassembleInputMachO2(StringRef Filename,
213                                    MachOObjectFile *MachOOF) {
214   const Target *TheTarget = GetTarget(MachOOF);
215   if (!TheTarget) {
216     // GetTarget prints out stuff.
217     return;
218   }
219   std::unique_ptr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
220   std::unique_ptr<MCInstrAnalysis> InstrAnalysis(
221       TheTarget->createMCInstrAnalysis(InstrInfo.get()));
222
223   // Package up features to be passed to target/subtarget
224   std::string FeaturesStr;
225   if (MAttrs.size()) {
226     SubtargetFeatures Features;
227     for (unsigned i = 0; i != MAttrs.size(); ++i)
228       Features.AddFeature(MAttrs[i]);
229     FeaturesStr = Features.getString();
230   }
231
232   // Set up disassembler.
233   std::unique_ptr<const MCRegisterInfo> MRI(
234       TheTarget->createMCRegInfo(TripleName));
235   std::unique_ptr<const MCAsmInfo> AsmInfo(
236       TheTarget->createMCAsmInfo(*MRI, TripleName));
237   std::unique_ptr<const MCSubtargetInfo> STI(
238       TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
239   MCContext Ctx(AsmInfo.get(), MRI.get(), nullptr);
240   std::unique_ptr<const MCDisassembler> DisAsm(
241     TheTarget->createMCDisassembler(*STI, Ctx));
242   int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
243   std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
244       AsmPrinterVariant, *AsmInfo, *InstrInfo, *MRI, *STI));
245
246   if (!InstrAnalysis || !AsmInfo || !STI || !DisAsm || !IP) {
247     errs() << "error: couldn't initialize disassembler for target "
248            << TripleName << '\n';
249     return;
250   }
251
252   outs() << '\n' << Filename << ":\n\n";
253
254   MachO::mach_header Header = MachOOF->getHeader();
255
256   // FIXME: FoundFns isn't used anymore. Using symbols/LC_FUNCTION_STARTS to
257   // determine function locations will eventually go in MCObjectDisassembler.
258   // FIXME: Using the -cfg command line option, this code used to be able to
259   // annotate relocations with the referenced symbol's name, and if this was
260   // inside a __[cf]string section, the data it points to. This is now replaced
261   // by the upcoming MCSymbolizer, which needs the appropriate setup done above.
262   std::vector<SectionRef> Sections;
263   std::vector<SymbolRef> Symbols;
264   SmallVector<uint64_t, 8> FoundFns;
265   uint64_t BaseSegmentAddress;
266
267   getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
268                         BaseSegmentAddress);
269
270   // Sort the symbols by address, just in case they didn't come in that way.
271   std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
272
273   // Build a data in code table that is sorted on by the address of each entry.
274   uint64_t BaseAddress = 0;
275   if (Header.filetype == MachO::MH_OBJECT)
276     Sections[0].getAddress(BaseAddress);
277   else
278     BaseAddress = BaseSegmentAddress;
279   DiceTable Dices;
280   for (dice_iterator DI = MachOOF->begin_dices(), DE = MachOOF->end_dices();
281        DI != DE; ++DI) {
282     uint32_t Offset;
283     DI->getOffset(Offset);
284     Dices.push_back(std::make_pair(BaseAddress + Offset, *DI));
285   }
286   array_pod_sort(Dices.begin(), Dices.end());
287
288 #ifndef NDEBUG
289   raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
290 #else
291   raw_ostream &DebugOut = nulls();
292 #endif
293
294   std::unique_ptr<DIContext> diContext;
295   ObjectFile *DbgObj = MachOOF;
296   // Try to find debug info and set up the DIContext for it.
297   if (UseDbg) {
298     // A separate DSym file path was specified, parse it as a macho file,
299     // get the sections and supply it to the section name parsing machinery.
300     if (!DSYMFile.empty()) {
301       ErrorOr<std::unique_ptr<MemoryBuffer>> Buf =
302           MemoryBuffer::getFileOrSTDIN(DSYMFile);
303       if (std::error_code EC = Buf.getError()) {
304         errs() << "llvm-objdump: " << Filename << ": " << EC.message() << '\n';
305         return;
306       }
307       DbgObj = ObjectFile::createMachOObjectFile(Buf.get()).get().release();
308     }
309
310     // Setup the DIContext
311     diContext.reset(DIContext::getDWARFContext(*DbgObj));
312   }
313
314   for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
315
316     bool SectIsText = false;
317     Sections[SectIdx].isText(SectIsText);
318     if (SectIsText == false)
319       continue;
320
321     StringRef SectName;
322     if (Sections[SectIdx].getName(SectName) ||
323         SectName != "__text")
324       continue; // Skip non-text sections
325
326     DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
327
328     StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR);
329     if (SegmentName != "__TEXT")
330       continue;
331
332     StringRef Bytes;
333     Sections[SectIdx].getContents(Bytes);
334     StringRefMemoryObject memoryObject(Bytes);
335     bool symbolTableWorked = false;
336
337     // Parse relocations.
338     std::vector<std::pair<uint64_t, SymbolRef>> Relocs;
339     for (const RelocationRef &Reloc : Sections[SectIdx].relocations()) {
340       uint64_t RelocOffset, SectionAddress;
341       Reloc.getOffset(RelocOffset);
342       Sections[SectIdx].getAddress(SectionAddress);
343       RelocOffset -= SectionAddress;
344
345       symbol_iterator RelocSym = Reloc.getSymbol();
346
347       Relocs.push_back(std::make_pair(RelocOffset, *RelocSym));
348     }
349     array_pod_sort(Relocs.begin(), Relocs.end());
350
351     // Disassemble symbol by symbol.
352     for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
353       StringRef SymName;
354       Symbols[SymIdx].getName(SymName);
355
356       SymbolRef::Type ST;
357       Symbols[SymIdx].getType(ST);
358       if (ST != SymbolRef::ST_Function)
359         continue;
360
361       // Make sure the symbol is defined in this section.
362       bool containsSym = false;
363       Sections[SectIdx].containsSymbol(Symbols[SymIdx], containsSym);
364       if (!containsSym)
365         continue;
366
367       // Start at the address of the symbol relative to the section's address.
368       uint64_t SectionAddress = 0;
369       uint64_t Start = 0;
370       Sections[SectIdx].getAddress(SectionAddress);
371       Symbols[SymIdx].getAddress(Start);
372       Start -= SectionAddress;
373
374       // Stop disassembling either at the beginning of the next symbol or at
375       // the end of the section.
376       bool containsNextSym = false;
377       uint64_t NextSym = 0;
378       uint64_t NextSymIdx = SymIdx+1;
379       while (Symbols.size() > NextSymIdx) {
380         SymbolRef::Type NextSymType;
381         Symbols[NextSymIdx].getType(NextSymType);
382         if (NextSymType == SymbolRef::ST_Function) {
383           Sections[SectIdx].containsSymbol(Symbols[NextSymIdx],
384                                            containsNextSym);
385           Symbols[NextSymIdx].getAddress(NextSym);
386           NextSym -= SectionAddress;
387           break;
388         }
389         ++NextSymIdx;
390       }
391
392       uint64_t SectSize;
393       Sections[SectIdx].getSize(SectSize);
394       uint64_t End = containsNextSym ?  NextSym : SectSize;
395       uint64_t Size;
396
397       symbolTableWorked = true;
398
399       outs() << SymName << ":\n";
400       DILineInfo lastLine;
401       for (uint64_t Index = Start; Index < End; Index += Size) {
402         MCInst Inst;
403
404         uint64_t SectAddress = 0;
405         Sections[SectIdx].getAddress(SectAddress);
406         outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
407
408         // Check the data in code table here to see if this is data not an
409         // instruction to be disassembled.
410         DiceTable Dice;
411         Dice.push_back(std::make_pair(SectAddress + Index, DiceRef()));
412         dice_table_iterator DTI = std::search(Dices.begin(), Dices.end(),
413                                               Dice.begin(), Dice.end(),
414                                               compareDiceTableEntries);
415         if (DTI != Dices.end()){
416           uint16_t Length;
417           DTI->second.getLength(Length);
418           DumpBytes(StringRef(Bytes.data() + Index, Length));
419           uint16_t Kind;
420           DTI->second.getKind(Kind);
421           DumpDataInCode(Bytes.data() + Index, Length, Kind);
422           continue;
423         }
424
425         if (DisAsm->getInstruction(Inst, Size, memoryObject, Index,
426                                    DebugOut, nulls())) {
427           DumpBytes(StringRef(Bytes.data() + Index, Size));
428           IP->printInst(&Inst, outs(), "");
429
430           // Print debug info.
431           if (diContext) {
432             DILineInfo dli =
433               diContext->getLineInfoForAddress(SectAddress + Index);
434             // Print valid line info if it changed.
435             if (dli != lastLine && dli.Line != 0)
436               outs() << "\t## " << dli.FileName << ':' << dli.Line << ':'
437                      << dli.Column;
438             lastLine = dli;
439           }
440           outs() << "\n";
441         } else {
442           errs() << "llvm-objdump: warning: invalid instruction encoding\n";
443           if (Size == 0)
444             Size = 1; // skip illegible bytes
445         }
446       }
447     }
448     if (!symbolTableWorked) {
449       // Reading the symbol table didn't work, disassemble the whole section. 
450       uint64_t SectAddress;
451       Sections[SectIdx].getAddress(SectAddress);
452       uint64_t SectSize;
453       Sections[SectIdx].getSize(SectSize);
454       uint64_t InstSize;
455       for (uint64_t Index = 0; Index < SectSize; Index += InstSize) {
456         MCInst Inst;
457
458         if (DisAsm->getInstruction(Inst, InstSize, memoryObject, Index,
459                                    DebugOut, nulls())) {
460           outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
461           DumpBytes(StringRef(Bytes.data() + Index, InstSize));
462           IP->printInst(&Inst, outs(), "");
463           outs() << "\n";
464         } else {
465           errs() << "llvm-objdump: warning: invalid instruction encoding\n";
466           if (InstSize == 0)
467             InstSize = 1; // skip illegible bytes
468         }
469       }
470     }
471   }
472 }
473
474 namespace {
475 struct CompactUnwindEntry {
476   uint32_t OffsetInSection;
477
478   uint64_t FunctionAddr;
479   uint32_t Length;
480   uint32_t CompactEncoding;
481   uint64_t PersonalityAddr;
482   uint64_t LSDAAddr;
483
484   RelocationRef FunctionReloc;
485   RelocationRef PersonalityReloc;
486   RelocationRef LSDAReloc;
487
488   CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64)
489     : OffsetInSection(Offset) {
490     if (Is64)
491       read<uint64_t>(Contents.data() + Offset);
492     else
493       read<uint32_t>(Contents.data() + Offset);
494   }
495
496 private:
497   template<typename T>
498   static uint64_t readNext(const char *&Buf) {
499     using llvm::support::little;
500     using llvm::support::unaligned;
501
502     uint64_t Val = support::endian::read<T, little, unaligned>(Buf);
503     Buf += sizeof(T);
504     return Val;
505   }
506
507   template<typename UIntPtr>
508   void read(const char *Buf) {
509     FunctionAddr = readNext<UIntPtr>(Buf);
510     Length = readNext<uint32_t>(Buf);
511     CompactEncoding = readNext<uint32_t>(Buf);
512     PersonalityAddr = readNext<UIntPtr>(Buf);
513     LSDAAddr = readNext<UIntPtr>(Buf);
514   }
515 };
516 }
517
518 /// Given a relocation from __compact_unwind, consisting of the RelocationRef
519 /// and data being relocated, determine the best base Name and Addend to use for
520 /// display purposes.
521 ///
522 /// 1. An Extern relocation will directly reference a symbol (and the data is
523 ///    then already an addend), so use that.
524 /// 2. Otherwise the data is an offset in the object file's layout; try to find
525 //     a symbol before it in the same section, and use the offset from there.
526 /// 3. Finally, if all that fails, fall back to an offset from the start of the
527 ///    referenced section.
528 static void findUnwindRelocNameAddend(const MachOObjectFile *Obj,
529                                       std::map<uint64_t, SymbolRef> &Symbols,
530                                       const RelocationRef &Reloc,
531                                       uint64_t Addr,
532                                       StringRef &Name, uint64_t &Addend) {
533   if (Reloc.getSymbol() != Obj->symbol_end()) {
534     Reloc.getSymbol()->getName(Name);
535     Addend = Addr;
536     return;
537   }
538
539   auto RE = Obj->getRelocation(Reloc.getRawDataRefImpl());
540   SectionRef RelocSection = Obj->getRelocationSection(RE);
541
542   uint64_t SectionAddr;
543   RelocSection.getAddress(SectionAddr);
544
545   auto Sym = Symbols.upper_bound(Addr);
546   if (Sym == Symbols.begin()) {
547     // The first symbol in the object is after this reference, the best we can
548     // do is section-relative notation.
549     RelocSection.getName(Name);
550     Addend = Addr - SectionAddr;
551     return;
552   }
553
554   // Go back one so that SymbolAddress <= Addr.
555   --Sym;
556
557   section_iterator SymSection = Obj->section_end();
558   Sym->second.getSection(SymSection);
559   if (RelocSection == *SymSection) {
560     // There's a valid symbol in the same section before this reference.
561     Sym->second.getName(Name);
562     Addend = Addr - Sym->first;
563     return;
564   }
565
566   // There is a symbol before this reference, but it's in a different
567   // section. Probably not helpful to mention it, so use the section name.
568   RelocSection.getName(Name);
569   Addend = Addr - SectionAddr;
570 }
571
572 static void printUnwindRelocDest(const MachOObjectFile *Obj,
573                                  std::map<uint64_t, SymbolRef> &Symbols,
574                                  const RelocationRef &Reloc,
575                                  uint64_t Addr) {
576   StringRef Name;
577   uint64_t Addend;
578
579   findUnwindRelocNameAddend(Obj, Symbols, Reloc, Addr, Name, Addend);
580
581   outs() << Name;
582   if (Addend)
583     outs() << " + " << format("0x%x", Addend);
584 }
585
586 static void
587 printMachOCompactUnwindSection(const MachOObjectFile *Obj,
588                                std::map<uint64_t, SymbolRef> &Symbols,
589                                const SectionRef &CompactUnwind) {
590
591   assert(Obj->isLittleEndian() &&
592          "There should not be a big-endian .o with __compact_unwind");
593
594   bool Is64 = Obj->is64Bit();
595   uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t);
596   uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t);
597
598   StringRef Contents;
599   CompactUnwind.getContents(Contents);
600
601   SmallVector<CompactUnwindEntry, 4> CompactUnwinds;
602
603   // First populate the initial raw offsets, encodings and so on from the entry.
604   for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) {
605     CompactUnwindEntry Entry(Contents.data(), Offset, Is64);
606     CompactUnwinds.push_back(Entry);
607   }
608
609   // Next we need to look at the relocations to find out what objects are
610   // actually being referred to.
611   for (const RelocationRef &Reloc : CompactUnwind.relocations()) {
612     uint64_t RelocAddress;
613     Reloc.getOffset(RelocAddress);
614
615     uint32_t EntryIdx = RelocAddress / EntrySize;
616     uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize;
617     CompactUnwindEntry &Entry = CompactUnwinds[EntryIdx];
618
619     if (OffsetInEntry == 0)
620       Entry.FunctionReloc = Reloc;
621     else if (OffsetInEntry == PointerSize + 2 * sizeof(uint32_t))
622       Entry.PersonalityReloc = Reloc;
623     else if (OffsetInEntry == 2 * PointerSize + 2 * sizeof(uint32_t))
624       Entry.LSDAReloc = Reloc;
625     else
626       llvm_unreachable("Unexpected relocation in __compact_unwind section");
627   }
628
629   // Finally, we're ready to print the data we've gathered.
630   outs() << "Contents of __compact_unwind section:\n";
631   for (auto &Entry : CompactUnwinds) {
632     outs() << "  Entry at offset " << format("0x" PRIx32, Entry.OffsetInSection)
633            << ":\n";
634
635     // 1. Start of the region this entry applies to.
636     outs() << "    start:                "
637            << format("0x%" PRIx64, Entry.FunctionAddr) << ' ';
638     printUnwindRelocDest(Obj, Symbols, Entry.FunctionReloc,
639                          Entry.FunctionAddr);
640     outs() << '\n';
641
642     // 2. Length of the region this entry applies to.
643     outs() << "    length:               "
644            << format("0x%" PRIx32, Entry.Length) << '\n';
645     // 3. The 32-bit compact encoding.
646     outs() << "    compact encoding:     "
647            << format("0x%08" PRIx32, Entry.CompactEncoding) << '\n';
648
649     // 4. The personality function, if present.
650     if (Entry.PersonalityReloc.getObjectFile()) {
651       outs() << "    personality function: "
652              << format("0x%" PRIx64, Entry.PersonalityAddr) << ' ';
653       printUnwindRelocDest(Obj, Symbols, Entry.PersonalityReloc,
654                            Entry.PersonalityAddr);
655       outs() << '\n';
656     }
657
658     // 5. This entry's language-specific data area.
659     if (Entry.LSDAReloc.getObjectFile()) {
660       outs() << "    LSDA:                 "
661              << format("0x%" PRIx64, Entry.LSDAAddr) << ' ';
662       printUnwindRelocDest(Obj, Symbols, Entry.LSDAReloc, Entry.LSDAAddr);
663       outs() << '\n';
664     }
665   }
666 }
667
668 void llvm::printMachOUnwindInfo(const MachOObjectFile *Obj) {
669   std::map<uint64_t, SymbolRef> Symbols;
670   for (const SymbolRef &SymRef : Obj->symbols()) {
671     // Discard any undefined or absolute symbols. They're not going to take part
672     // in the convenience lookup for unwind info and just take up resources.
673     section_iterator Section = Obj->section_end();
674     SymRef.getSection(Section);
675     if (Section == Obj->section_end())
676       continue;
677
678     uint64_t Addr;
679     SymRef.getAddress(Addr);
680     Symbols.insert(std::make_pair(Addr, SymRef));
681   }
682
683   for (const SectionRef &Section : Obj->sections()) {
684     StringRef SectName;
685     Section.getName(SectName);
686     if (SectName == "__compact_unwind")
687       printMachOCompactUnwindSection(Obj, Symbols, Section);
688     else if (SectName == "__unwind_info")
689       outs() << "llvm-objdump: warning: unhandled __unwind_info section\n";
690     else if (SectName == "__eh_frame")
691       outs() << "llvm-objdump: warning: unhandled __eh_frame section\n";
692
693   }
694 }