Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 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" |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/STLExtras.h" |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/StringExtras.h" |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/Triple.h" |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 18 | #include "llvm/DebugInfo/DIContext.h" |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MCAsmInfo.h" |
Lang Hames | a1bc0f5 | 2014-04-15 04:40:56 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCContext.h" |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 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" |
Jim Grosbach | fd93a59 | 2012-03-05 19:33:20 +0000 | [diff] [blame] | 27 | #include "llvm/MC/MCRegisterInfo.h" |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 28 | #include "llvm/MC/MCSubtargetInfo.h" |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 29 | #include "llvm/Object/MachO.h" |
Rafael Espindola | 9b70925 | 2013-04-13 01:45:40 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Casting.h" |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 31 | #include "llvm/Support/CommandLine.h" |
| 32 | #include "llvm/Support/Debug.h" |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Endian.h" |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Format.h" |
| 35 | #include "llvm/Support/GraphWriter.h" |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 36 | #include "llvm/Support/MachO.h" |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 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" |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 41 | #include <algorithm> |
| 42 | #include <cstring> |
Rafael Espindola | a6e9c3e | 2014-06-12 17:38:55 +0000 | [diff] [blame] | 43 | #include <system_error> |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 44 | using namespace llvm; |
| 45 | using namespace object; |
| 46 | |
| 47 | static cl::opt<bool> |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 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 | |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 53 | static std::string ThumbTripleName; |
| 54 | |
| 55 | static const Target *GetTarget(const MachOObjectFile *MachOObj, |
| 56 | const char **McpuDefault, |
| 57 | const Target **ThumbTarget) { |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 58 | // Figure out the target triple. |
Cameron Zwarich | 88cc16a | 2012-02-03 06:35:22 +0000 | [diff] [blame] | 59 | if (TripleName.empty()) { |
| 60 | llvm::Triple TT("unknown-unknown-unknown"); |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 61 | llvm::Triple ThumbTriple = Triple(); |
| 62 | TT = MachOObj->getArch(McpuDefault, &ThumbTriple); |
Cameron Zwarich | 88cc16a | 2012-02-03 06:35:22 +0000 | [diff] [blame] | 63 | TripleName = TT.str(); |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 64 | ThumbTripleName = ThumbTriple.str(); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 67 | // Get the target specific parser. |
| 68 | std::string Error; |
| 69 | const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error); |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 70 | if (TheTarget && ThumbTripleName.empty()) |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 71 | return TheTarget; |
| 72 | |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 73 | *ThumbTarget = TargetRegistry::lookupTarget(ThumbTripleName, Error); |
| 74 | if (*ThumbTarget) |
| 75 | return TheTarget; |
| 76 | |
| 77 | errs() << "llvm-objdump: error: unable to get target for '"; |
| 78 | if (!TheTarget) |
| 79 | errs() << TripleName; |
| 80 | else |
| 81 | errs() << ThumbTripleName; |
| 82 | errs() << "', see --version and --triple.\n"; |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 83 | return nullptr; |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 86 | struct SymbolSorter { |
| 87 | bool operator()(const SymbolRef &A, const SymbolRef &B) { |
| 88 | SymbolRef::Type AType, BType; |
| 89 | A.getType(AType); |
| 90 | B.getType(BType); |
| 91 | |
| 92 | uint64_t AAddr, BAddr; |
| 93 | if (AType != SymbolRef::ST_Function) |
| 94 | AAddr = 0; |
| 95 | else |
| 96 | A.getAddress(AAddr); |
| 97 | if (BType != SymbolRef::ST_Function) |
| 98 | BAddr = 0; |
| 99 | else |
| 100 | B.getAddress(BAddr); |
| 101 | return AAddr < BAddr; |
| 102 | } |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 103 | }; |
| 104 | |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 105 | // Types for the storted data in code table that is built before disassembly |
| 106 | // and the predicate function to sort them. |
| 107 | typedef std::pair<uint64_t, DiceRef> DiceTableEntry; |
| 108 | typedef std::vector<DiceTableEntry> DiceTable; |
| 109 | typedef DiceTable::iterator dice_table_iterator; |
| 110 | |
| 111 | static bool |
| 112 | compareDiceTableEntries(const DiceTableEntry i, |
| 113 | const DiceTableEntry j) { |
| 114 | return i.first == j.first; |
| 115 | } |
| 116 | |
| 117 | static void DumpDataInCode(const char *bytes, uint64_t Size, |
| 118 | unsigned short Kind) { |
| 119 | uint64_t Value; |
| 120 | |
| 121 | switch (Kind) { |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 122 | case MachO::DICE_KIND_DATA: |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 123 | switch (Size) { |
| 124 | case 4: |
| 125 | Value = bytes[3] << 24 | |
| 126 | bytes[2] << 16 | |
| 127 | bytes[1] << 8 | |
| 128 | bytes[0]; |
| 129 | outs() << "\t.long " << Value; |
| 130 | break; |
| 131 | case 2: |
| 132 | Value = bytes[1] << 8 | |
| 133 | bytes[0]; |
| 134 | outs() << "\t.short " << Value; |
| 135 | break; |
| 136 | case 1: |
| 137 | Value = bytes[0]; |
| 138 | outs() << "\t.byte " << Value; |
| 139 | break; |
| 140 | } |
| 141 | outs() << "\t@ KIND_DATA\n"; |
| 142 | break; |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 143 | case MachO::DICE_KIND_JUMP_TABLE8: |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 144 | Value = bytes[0]; |
| 145 | outs() << "\t.byte " << Value << "\t@ KIND_JUMP_TABLE8"; |
| 146 | break; |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 147 | case MachO::DICE_KIND_JUMP_TABLE16: |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 148 | Value = bytes[1] << 8 | |
| 149 | bytes[0]; |
| 150 | outs() << "\t.short " << Value << "\t@ KIND_JUMP_TABLE16"; |
| 151 | break; |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 152 | case MachO::DICE_KIND_JUMP_TABLE32: |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 153 | Value = bytes[3] << 24 | |
| 154 | bytes[2] << 16 | |
| 155 | bytes[1] << 8 | |
| 156 | bytes[0]; |
| 157 | outs() << "\t.long " << Value << "\t@ KIND_JUMP_TABLE32"; |
| 158 | break; |
| 159 | default: |
| 160 | outs() << "\t@ data in code kind = " << Kind << "\n"; |
| 161 | break; |
| 162 | } |
| 163 | } |
| 164 | |
Alexey Samsonov | 464d2e4 | 2014-03-17 07:28:19 +0000 | [diff] [blame] | 165 | static void getSectionsAndSymbols(const MachO::mach_header Header, |
| 166 | MachOObjectFile *MachOObj, |
| 167 | std::vector<SectionRef> &Sections, |
| 168 | std::vector<SymbolRef> &Symbols, |
| 169 | SmallVectorImpl<uint64_t> &FoundFns, |
| 170 | uint64_t &BaseSegmentAddress) { |
| 171 | for (const SymbolRef &Symbol : MachOObj->symbols()) |
| 172 | Symbols.push_back(Symbol); |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 173 | |
Alexey Samsonov | 48803e5 | 2014-03-13 14:37:36 +0000 | [diff] [blame] | 174 | for (const SectionRef &Section : MachOObj->sections()) { |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 175 | StringRef SectName; |
Alexey Samsonov | 48803e5 | 2014-03-13 14:37:36 +0000 | [diff] [blame] | 176 | Section.getName(SectName); |
| 177 | Sections.push_back(Section); |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Rafael Espindola | 56f976f | 2013-04-18 18:08:55 +0000 | [diff] [blame] | 180 | MachOObjectFile::LoadCommandInfo Command = |
Alexey Samsonov | 48803e5 | 2014-03-13 14:37:36 +0000 | [diff] [blame] | 181 | MachOObj->getFirstLoadCommandInfo(); |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 182 | bool BaseSegmentAddressSet = false; |
Rafael Espindola | feef8c2 | 2013-04-19 11:36:47 +0000 | [diff] [blame] | 183 | for (unsigned i = 0; ; ++i) { |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 184 | if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) { |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 185 | // We found a function starts segment, parse the addresses for later |
| 186 | // consumption. |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 187 | MachO::linkedit_data_command LLC = |
Rafael Espindola | 56f976f | 2013-04-18 18:08:55 +0000 | [diff] [blame] | 188 | MachOObj->getLinkeditDataLoadCommand(Command); |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 189 | |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 190 | MachOObj->ReadULEB128s(LLC.dataoff, FoundFns); |
Benjamin Kramer | 8a529dc | 2011-09-21 22:16:43 +0000 | [diff] [blame] | 191 | } |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 192 | else if (Command.C.cmd == MachO::LC_SEGMENT) { |
| 193 | MachO::segment_command SLC = |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 194 | MachOObj->getSegmentLoadCommand(Command); |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 195 | StringRef SegName = SLC.segname; |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 196 | if(!BaseSegmentAddressSet && SegName != "__PAGEZERO") { |
| 197 | BaseSegmentAddressSet = true; |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 198 | BaseSegmentAddress = SLC.vmaddr; |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 199 | } |
| 200 | } |
Rafael Espindola | feef8c2 | 2013-04-19 11:36:47 +0000 | [diff] [blame] | 201 | |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 202 | if (i == Header.ncmds - 1) |
Rafael Espindola | feef8c2 | 2013-04-19 11:36:47 +0000 | [diff] [blame] | 203 | break; |
| 204 | else |
| 205 | Command = MachOObj->getNextLoadCommandInfo(Command); |
Benjamin Kramer | 8a529dc | 2011-09-21 22:16:43 +0000 | [diff] [blame] | 206 | } |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Rafael Espindola | 9b70925 | 2013-04-13 01:45:40 +0000 | [diff] [blame] | 209 | static void DisassembleInputMachO2(StringRef Filename, |
Rafael Espindola | 56f976f | 2013-04-18 18:08:55 +0000 | [diff] [blame] | 210 | MachOObjectFile *MachOOF); |
Rafael Espindola | 9b70925 | 2013-04-13 01:45:40 +0000 | [diff] [blame] | 211 | |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 212 | void llvm::DisassembleInputMachO(StringRef Filename) { |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 213 | ErrorOr<std::unique_ptr<MemoryBuffer>> Buff = |
| 214 | MemoryBuffer::getFileOrSTDIN(Filename); |
| 215 | if (std::error_code EC = Buff.getError()) { |
| 216 | errs() << "llvm-objdump: " << Filename << ": " << EC.message() << "\n"; |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 217 | return; |
| 218 | } |
| 219 | |
Rafael Espindola | 437b0d5 | 2014-07-31 03:12:45 +0000 | [diff] [blame] | 220 | std::unique_ptr<MachOObjectFile> MachOOF = |
| 221 | std::move(ObjectFile::createMachOObjectFile(Buff.get()).get()); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 222 | |
Rafael Espindola | 56f976f | 2013-04-18 18:08:55 +0000 | [diff] [blame] | 223 | DisassembleInputMachO2(Filename, MachOOF.get()); |
Rafael Espindola | 9b70925 | 2013-04-13 01:45:40 +0000 | [diff] [blame] | 224 | } |
| 225 | |
Rafael Espindola | 9b70925 | 2013-04-13 01:45:40 +0000 | [diff] [blame] | 226 | static void DisassembleInputMachO2(StringRef Filename, |
Rafael Espindola | 56f976f | 2013-04-18 18:08:55 +0000 | [diff] [blame] | 227 | MachOObjectFile *MachOOF) { |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 228 | const char *McpuDefault = nullptr; |
| 229 | const Target *ThumbTarget = nullptr; |
| 230 | const Target *TheTarget = GetTarget(MachOOF, &McpuDefault, &ThumbTarget); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 231 | if (!TheTarget) { |
| 232 | // GetTarget prints out stuff. |
| 233 | return; |
| 234 | } |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 235 | if (MCPU.empty() && McpuDefault) |
| 236 | MCPU = McpuDefault; |
| 237 | |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 238 | std::unique_ptr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo()); |
| 239 | std::unique_ptr<MCInstrAnalysis> InstrAnalysis( |
| 240 | TheTarget->createMCInstrAnalysis(InstrInfo.get())); |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 241 | std::unique_ptr<const MCInstrInfo> ThumbInstrInfo; |
| 242 | std::unique_ptr<MCInstrAnalysis> ThumbInstrAnalysis; |
| 243 | if (ThumbTarget) { |
| 244 | ThumbInstrInfo.reset(ThumbTarget->createMCInstrInfo()); |
| 245 | ThumbInstrAnalysis.reset( |
| 246 | ThumbTarget->createMCInstrAnalysis(ThumbInstrInfo.get())); |
| 247 | } |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 248 | |
Kevin Enderby | c959562 | 2014-08-06 23:24:41 +0000 | [diff] [blame] | 249 | // Package up features to be passed to target/subtarget |
| 250 | std::string FeaturesStr; |
| 251 | if (MAttrs.size()) { |
| 252 | SubtargetFeatures Features; |
| 253 | for (unsigned i = 0; i != MAttrs.size(); ++i) |
| 254 | Features.AddFeature(MAttrs[i]); |
| 255 | FeaturesStr = Features.getString(); |
| 256 | } |
| 257 | |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 258 | // Set up disassembler. |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 259 | std::unique_ptr<const MCRegisterInfo> MRI( |
| 260 | TheTarget->createMCRegInfo(TripleName)); |
| 261 | std::unique_ptr<const MCAsmInfo> AsmInfo( |
Rafael Espindola | 227144c | 2013-05-13 01:16:13 +0000 | [diff] [blame] | 262 | TheTarget->createMCAsmInfo(*MRI, TripleName)); |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 263 | std::unique_ptr<const MCSubtargetInfo> STI( |
Kevin Enderby | c959562 | 2014-08-06 23:24:41 +0000 | [diff] [blame] | 264 | TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr)); |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 265 | MCContext Ctx(AsmInfo.get(), MRI.get(), nullptr); |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 266 | std::unique_ptr<const MCDisassembler> DisAsm( |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 267 | TheTarget->createMCDisassembler(*STI, Ctx)); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 268 | int AsmPrinterVariant = AsmInfo->getAssemblerDialect(); |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 269 | std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter( |
| 270 | AsmPrinterVariant, *AsmInfo, *InstrInfo, *MRI, *STI)); |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 271 | |
| 272 | if (!InstrAnalysis || !AsmInfo || !STI || !DisAsm || !IP) { |
Michael J. Spencer | c1363cf | 2011-10-07 19:25:47 +0000 | [diff] [blame] | 273 | errs() << "error: couldn't initialize disassembler for target " |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 274 | << TripleName << '\n'; |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 275 | return; |
| 276 | } |
| 277 | |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 278 | // Set up thumb disassembler. |
| 279 | std::unique_ptr<const MCRegisterInfo> ThumbMRI; |
| 280 | std::unique_ptr<const MCAsmInfo> ThumbAsmInfo; |
| 281 | std::unique_ptr<const MCSubtargetInfo> ThumbSTI; |
| 282 | std::unique_ptr<const MCDisassembler> ThumbDisAsm; |
| 283 | std::unique_ptr<MCInstPrinter> ThumbIP; |
| 284 | std::unique_ptr<MCContext> ThumbCtx; |
| 285 | if (ThumbTarget) { |
| 286 | ThumbMRI.reset(ThumbTarget->createMCRegInfo(ThumbTripleName)); |
| 287 | ThumbAsmInfo.reset( |
| 288 | ThumbTarget->createMCAsmInfo(*ThumbMRI, ThumbTripleName)); |
| 289 | ThumbSTI.reset( |
| 290 | ThumbTarget->createMCSubtargetInfo(ThumbTripleName, MCPU, FeaturesStr)); |
| 291 | ThumbCtx.reset(new MCContext(ThumbAsmInfo.get(), ThumbMRI.get(), nullptr)); |
| 292 | ThumbDisAsm.reset(ThumbTarget->createMCDisassembler(*ThumbSTI, *ThumbCtx)); |
| 293 | int ThumbAsmPrinterVariant = ThumbAsmInfo->getAssemblerDialect(); |
| 294 | ThumbIP.reset(ThumbTarget->createMCInstPrinter( |
| 295 | ThumbAsmPrinterVariant, *ThumbAsmInfo, *ThumbInstrInfo, *ThumbMRI, |
| 296 | *ThumbSTI)); |
| 297 | } |
| 298 | |
| 299 | if (ThumbTarget && (!ThumbInstrAnalysis || !ThumbAsmInfo || !ThumbSTI || |
| 300 | !ThumbDisAsm || !ThumbIP)) { |
| 301 | errs() << "error: couldn't initialize disassembler for target " |
| 302 | << ThumbTripleName << '\n'; |
| 303 | return; |
| 304 | } |
| 305 | |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 306 | outs() << '\n' << Filename << ":\n\n"; |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 307 | |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 308 | MachO::mach_header Header = MachOOF->getHeader(); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 309 | |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 310 | // FIXME: FoundFns isn't used anymore. Using symbols/LC_FUNCTION_STARTS to |
| 311 | // determine function locations will eventually go in MCObjectDisassembler. |
| 312 | // FIXME: Using the -cfg command line option, this code used to be able to |
| 313 | // annotate relocations with the referenced symbol's name, and if this was |
| 314 | // inside a __[cf]string section, the data it points to. This is now replaced |
| 315 | // by the upcoming MCSymbolizer, which needs the appropriate setup done above. |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 316 | std::vector<SectionRef> Sections; |
| 317 | std::vector<SymbolRef> Symbols; |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 318 | SmallVector<uint64_t, 8> FoundFns; |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 319 | uint64_t BaseSegmentAddress; |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 320 | |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 321 | getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns, |
| 322 | BaseSegmentAddress); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 323 | |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 324 | // Sort the symbols by address, just in case they didn't come in that way. |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 325 | std::sort(Symbols.begin(), Symbols.end(), SymbolSorter()); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 326 | |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 327 | // Build a data in code table that is sorted on by the address of each entry. |
| 328 | uint64_t BaseAddress = 0; |
Charles Davis | 8bdfafd | 2013-09-01 04:28:48 +0000 | [diff] [blame] | 329 | if (Header.filetype == MachO::MH_OBJECT) |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 330 | Sections[0].getAddress(BaseAddress); |
| 331 | else |
| 332 | BaseAddress = BaseSegmentAddress; |
| 333 | DiceTable Dices; |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 334 | for (dice_iterator DI = MachOOF->begin_dices(), DE = MachOOF->end_dices(); |
Rafael Espindola | 5e812af | 2014-01-30 02:49:50 +0000 | [diff] [blame] | 335 | DI != DE; ++DI) { |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 336 | uint32_t Offset; |
| 337 | DI->getOffset(Offset); |
| 338 | Dices.push_back(std::make_pair(BaseAddress + Offset, *DI)); |
| 339 | } |
| 340 | array_pod_sort(Dices.begin(), Dices.end()); |
| 341 | |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 342 | #ifndef NDEBUG |
| 343 | raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls(); |
| 344 | #else |
| 345 | raw_ostream &DebugOut = nulls(); |
| 346 | #endif |
| 347 | |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 348 | std::unique_ptr<DIContext> diContext; |
Rafael Espindola | 9b70925 | 2013-04-13 01:45:40 +0000 | [diff] [blame] | 349 | ObjectFile *DbgObj = MachOOF; |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 350 | // Try to find debug info and set up the DIContext for it. |
| 351 | if (UseDbg) { |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 352 | // A separate DSym file path was specified, parse it as a macho file, |
| 353 | // get the sections and supply it to the section name parsing machinery. |
| 354 | if (!DSYMFile.empty()) { |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 355 | ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = |
| 356 | MemoryBuffer::getFileOrSTDIN(DSYMFile); |
| 357 | if (std::error_code EC = Buf.getError()) { |
| 358 | errs() << "llvm-objdump: " << Filename << ": " << EC.message() << '\n'; |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 359 | return; |
| 360 | } |
Rafael Espindola | 437b0d5 | 2014-07-31 03:12:45 +0000 | [diff] [blame] | 361 | DbgObj = ObjectFile::createMachOObjectFile(Buf.get()).get().release(); |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 362 | } |
| 363 | |
Eric Christopher | 7370b55 | 2012-11-12 21:40:38 +0000 | [diff] [blame] | 364 | // Setup the DIContext |
Rafael Espindola | a04bb5b | 2014-07-31 20:19:36 +0000 | [diff] [blame] | 365 | diContext.reset(DIContext::getDWARFContext(*DbgObj)); |
Benjamin Kramer | 699128e | 2011-09-21 01:13:19 +0000 | [diff] [blame] | 366 | } |
| 367 | |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 368 | for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) { |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 369 | |
| 370 | bool SectIsText = false; |
| 371 | Sections[SectIdx].isText(SectIsText); |
| 372 | if (SectIsText == false) |
| 373 | continue; |
| 374 | |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 375 | StringRef SectName; |
| 376 | if (Sections[SectIdx].getName(SectName) || |
Rafael Espindola | a9f810b | 2012-12-21 03:47:03 +0000 | [diff] [blame] | 377 | SectName != "__text") |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 378 | continue; // Skip non-text sections |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 379 | |
Rafael Espindola | a9f810b | 2012-12-21 03:47:03 +0000 | [diff] [blame] | 380 | DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl(); |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 381 | |
Rafael Espindola | b0f76a4 | 2013-04-05 15:15:22 +0000 | [diff] [blame] | 382 | StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR); |
| 383 | if (SegmentName != "__TEXT") |
Rafael Espindola | a9f810b | 2012-12-21 03:47:03 +0000 | [diff] [blame] | 384 | continue; |
| 385 | |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 386 | StringRef Bytes; |
| 387 | Sections[SectIdx].getContents(Bytes); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 388 | StringRefMemoryObject memoryObject(Bytes); |
| 389 | bool symbolTableWorked = false; |
| 390 | |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 391 | // Parse relocations. |
Alexey Samsonov | aa4d295 | 2014-03-14 14:22:49 +0000 | [diff] [blame] | 392 | std::vector<std::pair<uint64_t, SymbolRef>> Relocs; |
| 393 | for (const RelocationRef &Reloc : Sections[SectIdx].relocations()) { |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 394 | uint64_t RelocOffset, SectionAddress; |
Alexey Samsonov | aa4d295 | 2014-03-14 14:22:49 +0000 | [diff] [blame] | 395 | Reloc.getOffset(RelocOffset); |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 396 | Sections[SectIdx].getAddress(SectionAddress); |
| 397 | RelocOffset -= SectionAddress; |
| 398 | |
Alexey Samsonov | aa4d295 | 2014-03-14 14:22:49 +0000 | [diff] [blame] | 399 | symbol_iterator RelocSym = Reloc.getSymbol(); |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 400 | |
Rafael Espindola | 806f006 | 2013-06-05 01:33:53 +0000 | [diff] [blame] | 401 | Relocs.push_back(std::make_pair(RelocOffset, *RelocSym)); |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 402 | } |
| 403 | array_pod_sort(Relocs.begin(), Relocs.end()); |
| 404 | |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 405 | // Disassemble symbol by symbol. |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 406 | for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) { |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 407 | StringRef SymName; |
| 408 | Symbols[SymIdx].getName(SymName); |
| 409 | |
| 410 | SymbolRef::Type ST; |
| 411 | Symbols[SymIdx].getType(ST); |
| 412 | if (ST != SymbolRef::ST_Function) |
| 413 | continue; |
| 414 | |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 415 | // Make sure the symbol is defined in this section. |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 416 | bool containsSym = false; |
| 417 | Sections[SectIdx].containsSymbol(Symbols[SymIdx], containsSym); |
| 418 | if (!containsSym) |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 419 | continue; |
| 420 | |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 421 | // Start at the address of the symbol relative to the section's address. |
Cameron Zwarich | 54478a5 | 2012-02-03 05:42:17 +0000 | [diff] [blame] | 422 | uint64_t SectionAddress = 0; |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 423 | uint64_t Start = 0; |
Cameron Zwarich | 54478a5 | 2012-02-03 05:42:17 +0000 | [diff] [blame] | 424 | Sections[SectIdx].getAddress(SectionAddress); |
Danil Malyshev | cbe72fc | 2011-11-29 17:40:10 +0000 | [diff] [blame] | 425 | Symbols[SymIdx].getAddress(Start); |
Cameron Zwarich | 54478a5 | 2012-02-03 05:42:17 +0000 | [diff] [blame] | 426 | Start -= SectionAddress; |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 427 | |
Benjamin Kramer | 2ad2eb5 | 2011-09-20 17:53:01 +0000 | [diff] [blame] | 428 | // Stop disassembling either at the beginning of the next symbol or at |
| 429 | // the end of the section. |
Kevin Enderby | edd5872 | 2012-05-15 18:57:14 +0000 | [diff] [blame] | 430 | bool containsNextSym = false; |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 431 | uint64_t NextSym = 0; |
| 432 | uint64_t NextSymIdx = SymIdx+1; |
| 433 | while (Symbols.size() > NextSymIdx) { |
| 434 | SymbolRef::Type NextSymType; |
| 435 | Symbols[NextSymIdx].getType(NextSymType); |
| 436 | if (NextSymType == SymbolRef::ST_Function) { |
| 437 | Sections[SectIdx].containsSymbol(Symbols[NextSymIdx], |
| 438 | containsNextSym); |
Danil Malyshev | cbe72fc | 2011-11-29 17:40:10 +0000 | [diff] [blame] | 439 | Symbols[NextSymIdx].getAddress(NextSym); |
Cameron Zwarich | 54478a5 | 2012-02-03 05:42:17 +0000 | [diff] [blame] | 440 | NextSym -= SectionAddress; |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 441 | break; |
| 442 | } |
| 443 | ++NextSymIdx; |
| 444 | } |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 445 | |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 446 | uint64_t SectSize; |
| 447 | Sections[SectIdx].getSize(SectSize); |
| 448 | uint64_t End = containsNextSym ? NextSym : SectSize; |
| 449 | uint64_t Size; |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 450 | |
| 451 | symbolTableWorked = true; |
| 452 | |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 453 | DataRefImpl Symb = Symbols[SymIdx].getRawDataRefImpl(); |
| 454 | bool isThumb = |
| 455 | (MachOOF->getSymbolFlags(Symb) & SymbolRef::SF_Thumb) && ThumbTarget; |
| 456 | |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 457 | outs() << SymName << ":\n"; |
| 458 | DILineInfo lastLine; |
| 459 | for (uint64_t Index = Start; Index < End; Index += Size) { |
| 460 | MCInst Inst; |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 461 | |
Kevin Enderby | 273ae01 | 2013-06-06 17:20:50 +0000 | [diff] [blame] | 462 | uint64_t SectAddress = 0; |
| 463 | Sections[SectIdx].getAddress(SectAddress); |
| 464 | outs() << format("%8" PRIx64 ":\t", SectAddress + Index); |
| 465 | |
| 466 | // Check the data in code table here to see if this is data not an |
| 467 | // instruction to be disassembled. |
| 468 | DiceTable Dice; |
| 469 | Dice.push_back(std::make_pair(SectAddress + Index, DiceRef())); |
| 470 | dice_table_iterator DTI = std::search(Dices.begin(), Dices.end(), |
| 471 | Dice.begin(), Dice.end(), |
| 472 | compareDiceTableEntries); |
| 473 | if (DTI != Dices.end()){ |
| 474 | uint16_t Length; |
| 475 | DTI->second.getLength(Length); |
| 476 | DumpBytes(StringRef(Bytes.data() + Index, Length)); |
| 477 | uint16_t Kind; |
| 478 | DTI->second.getKind(Kind); |
| 479 | DumpDataInCode(Bytes.data() + Index, Length, Kind); |
| 480 | continue; |
| 481 | } |
| 482 | |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 483 | bool gotInst; |
| 484 | if (isThumb) |
| 485 | gotInst = ThumbDisAsm->getInstruction(Inst, Size, memoryObject, Index, |
| 486 | DebugOut, nulls()); |
| 487 | else |
| 488 | gotInst = DisAsm->getInstruction(Inst, Size, memoryObject, Index, |
| 489 | DebugOut, nulls()); |
| 490 | if (gotInst) { |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 491 | DumpBytes(StringRef(Bytes.data() + Index, Size)); |
Kevin Enderby | ec5ca03 | 2014-08-18 20:21:02 +0000 | [diff] [blame] | 492 | if (isThumb) |
| 493 | ThumbIP->printInst(&Inst, outs(), ""); |
| 494 | else |
| 495 | IP->printInst(&Inst, outs(), ""); |
Owen Anderson | d9243c4 | 2011-10-17 21:37:35 +0000 | [diff] [blame] | 496 | |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 497 | // Print debug info. |
| 498 | if (diContext) { |
| 499 | DILineInfo dli = |
| 500 | diContext->getLineInfoForAddress(SectAddress + Index); |
| 501 | // Print valid line info if it changed. |
Alexey Samsonov | d010999 | 2014-04-18 21:36:39 +0000 | [diff] [blame] | 502 | if (dli != lastLine && dli.Line != 0) |
| 503 | outs() << "\t## " << dli.FileName << ':' << dli.Line << ':' |
| 504 | << dli.Column; |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 505 | lastLine = dli; |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 506 | } |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 507 | outs() << "\n"; |
| 508 | } else { |
| 509 | errs() << "llvm-objdump: warning: invalid instruction encoding\n"; |
| 510 | if (Size == 0) |
| 511 | Size = 1; // skip illegible bytes |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 512 | } |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 513 | } |
| 514 | } |
Ahmed Bougacha | aa79068 | 2013-05-24 01:07:04 +0000 | [diff] [blame] | 515 | if (!symbolTableWorked) { |
Kevin Enderby | badd100 | 2012-05-18 00:13:56 +0000 | [diff] [blame] | 516 | // Reading the symbol table didn't work, disassemble the whole section. |
| 517 | uint64_t SectAddress; |
| 518 | Sections[SectIdx].getAddress(SectAddress); |
| 519 | uint64_t SectSize; |
| 520 | Sections[SectIdx].getSize(SectSize); |
| 521 | uint64_t InstSize; |
| 522 | for (uint64_t Index = 0; Index < SectSize; Index += InstSize) { |
Bill Wendling | 4e68e06 | 2012-07-19 00:17:40 +0000 | [diff] [blame] | 523 | MCInst Inst; |
Kevin Enderby | badd100 | 2012-05-18 00:13:56 +0000 | [diff] [blame] | 524 | |
Bill Wendling | 4e68e06 | 2012-07-19 00:17:40 +0000 | [diff] [blame] | 525 | if (DisAsm->getInstruction(Inst, InstSize, memoryObject, Index, |
| 526 | DebugOut, nulls())) { |
| 527 | outs() << format("%8" PRIx64 ":\t", SectAddress + Index); |
| 528 | DumpBytes(StringRef(Bytes.data() + Index, InstSize)); |
| 529 | IP->printInst(&Inst, outs(), ""); |
| 530 | outs() << "\n"; |
| 531 | } else { |
| 532 | errs() << "llvm-objdump: warning: invalid instruction encoding\n"; |
| 533 | if (InstSize == 0) |
| 534 | InstSize = 1; // skip illegible bytes |
| 535 | } |
Kevin Enderby | badd100 | 2012-05-18 00:13:56 +0000 | [diff] [blame] | 536 | } |
| 537 | } |
Benjamin Kramer | 43a772e | 2011-09-19 17:56:04 +0000 | [diff] [blame] | 538 | } |
| 539 | } |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 540 | |
Tim Northover | 39c70bb | 2014-08-12 11:52:59 +0000 | [diff] [blame] | 541 | |
| 542 | //===----------------------------------------------------------------------===// |
| 543 | // __compact_unwind section dumping |
| 544 | //===----------------------------------------------------------------------===// |
| 545 | |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 546 | namespace { |
Tim Northover | 39c70bb | 2014-08-12 11:52:59 +0000 | [diff] [blame] | 547 | |
| 548 | template <typename T> static uint64_t readNext(const char *&Buf) { |
| 549 | using llvm::support::little; |
| 550 | using llvm::support::unaligned; |
| 551 | |
| 552 | uint64_t Val = support::endian::read<T, little, unaligned>(Buf); |
| 553 | Buf += sizeof(T); |
| 554 | return Val; |
| 555 | } |
| 556 | |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 557 | struct CompactUnwindEntry { |
| 558 | uint32_t OffsetInSection; |
| 559 | |
| 560 | uint64_t FunctionAddr; |
| 561 | uint32_t Length; |
| 562 | uint32_t CompactEncoding; |
| 563 | uint64_t PersonalityAddr; |
| 564 | uint64_t LSDAAddr; |
| 565 | |
| 566 | RelocationRef FunctionReloc; |
| 567 | RelocationRef PersonalityReloc; |
| 568 | RelocationRef LSDAReloc; |
| 569 | |
| 570 | CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64) |
| 571 | : OffsetInSection(Offset) { |
| 572 | if (Is64) |
| 573 | read<uint64_t>(Contents.data() + Offset); |
| 574 | else |
| 575 | read<uint32_t>(Contents.data() + Offset); |
| 576 | } |
| 577 | |
| 578 | private: |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 579 | template<typename UIntPtr> |
| 580 | void read(const char *Buf) { |
| 581 | FunctionAddr = readNext<UIntPtr>(Buf); |
| 582 | Length = readNext<uint32_t>(Buf); |
| 583 | CompactEncoding = readNext<uint32_t>(Buf); |
| 584 | PersonalityAddr = readNext<UIntPtr>(Buf); |
| 585 | LSDAAddr = readNext<UIntPtr>(Buf); |
| 586 | } |
| 587 | }; |
| 588 | } |
| 589 | |
| 590 | /// Given a relocation from __compact_unwind, consisting of the RelocationRef |
| 591 | /// and data being relocated, determine the best base Name and Addend to use for |
| 592 | /// display purposes. |
| 593 | /// |
| 594 | /// 1. An Extern relocation will directly reference a symbol (and the data is |
| 595 | /// then already an addend), so use that. |
| 596 | /// 2. Otherwise the data is an offset in the object file's layout; try to find |
| 597 | // a symbol before it in the same section, and use the offset from there. |
| 598 | /// 3. Finally, if all that fails, fall back to an offset from the start of the |
| 599 | /// referenced section. |
| 600 | static void findUnwindRelocNameAddend(const MachOObjectFile *Obj, |
| 601 | std::map<uint64_t, SymbolRef> &Symbols, |
| 602 | const RelocationRef &Reloc, |
| 603 | uint64_t Addr, |
| 604 | StringRef &Name, uint64_t &Addend) { |
| 605 | if (Reloc.getSymbol() != Obj->symbol_end()) { |
| 606 | Reloc.getSymbol()->getName(Name); |
| 607 | Addend = Addr; |
| 608 | return; |
| 609 | } |
| 610 | |
| 611 | auto RE = Obj->getRelocation(Reloc.getRawDataRefImpl()); |
| 612 | SectionRef RelocSection = Obj->getRelocationSection(RE); |
| 613 | |
| 614 | uint64_t SectionAddr; |
| 615 | RelocSection.getAddress(SectionAddr); |
| 616 | |
| 617 | auto Sym = Symbols.upper_bound(Addr); |
| 618 | if (Sym == Symbols.begin()) { |
| 619 | // The first symbol in the object is after this reference, the best we can |
| 620 | // do is section-relative notation. |
| 621 | RelocSection.getName(Name); |
| 622 | Addend = Addr - SectionAddr; |
| 623 | return; |
| 624 | } |
| 625 | |
| 626 | // Go back one so that SymbolAddress <= Addr. |
| 627 | --Sym; |
| 628 | |
| 629 | section_iterator SymSection = Obj->section_end(); |
| 630 | Sym->second.getSection(SymSection); |
| 631 | if (RelocSection == *SymSection) { |
| 632 | // There's a valid symbol in the same section before this reference. |
| 633 | Sym->second.getName(Name); |
| 634 | Addend = Addr - Sym->first; |
| 635 | return; |
| 636 | } |
| 637 | |
| 638 | // There is a symbol before this reference, but it's in a different |
| 639 | // section. Probably not helpful to mention it, so use the section name. |
| 640 | RelocSection.getName(Name); |
| 641 | Addend = Addr - SectionAddr; |
| 642 | } |
| 643 | |
| 644 | static void printUnwindRelocDest(const MachOObjectFile *Obj, |
| 645 | std::map<uint64_t, SymbolRef> &Symbols, |
| 646 | const RelocationRef &Reloc, |
| 647 | uint64_t Addr) { |
| 648 | StringRef Name; |
| 649 | uint64_t Addend; |
| 650 | |
| 651 | findUnwindRelocNameAddend(Obj, Symbols, Reloc, Addr, Name, Addend); |
| 652 | |
| 653 | outs() << Name; |
| 654 | if (Addend) |
Tim Northover | 63a2562 | 2014-08-11 09:14:06 +0000 | [diff] [blame] | 655 | outs() << " + " << format("0x%" PRIx64, Addend); |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | static void |
| 659 | printMachOCompactUnwindSection(const MachOObjectFile *Obj, |
| 660 | std::map<uint64_t, SymbolRef> &Symbols, |
| 661 | const SectionRef &CompactUnwind) { |
| 662 | |
| 663 | assert(Obj->isLittleEndian() && |
| 664 | "There should not be a big-endian .o with __compact_unwind"); |
| 665 | |
| 666 | bool Is64 = Obj->is64Bit(); |
| 667 | uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t); |
| 668 | uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t); |
| 669 | |
| 670 | StringRef Contents; |
| 671 | CompactUnwind.getContents(Contents); |
| 672 | |
| 673 | SmallVector<CompactUnwindEntry, 4> CompactUnwinds; |
| 674 | |
| 675 | // First populate the initial raw offsets, encodings and so on from the entry. |
| 676 | for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) { |
| 677 | CompactUnwindEntry Entry(Contents.data(), Offset, Is64); |
| 678 | CompactUnwinds.push_back(Entry); |
| 679 | } |
| 680 | |
| 681 | // Next we need to look at the relocations to find out what objects are |
| 682 | // actually being referred to. |
| 683 | for (const RelocationRef &Reloc : CompactUnwind.relocations()) { |
| 684 | uint64_t RelocAddress; |
| 685 | Reloc.getOffset(RelocAddress); |
| 686 | |
| 687 | uint32_t EntryIdx = RelocAddress / EntrySize; |
| 688 | uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize; |
| 689 | CompactUnwindEntry &Entry = CompactUnwinds[EntryIdx]; |
| 690 | |
| 691 | if (OffsetInEntry == 0) |
| 692 | Entry.FunctionReloc = Reloc; |
| 693 | else if (OffsetInEntry == PointerSize + 2 * sizeof(uint32_t)) |
| 694 | Entry.PersonalityReloc = Reloc; |
| 695 | else if (OffsetInEntry == 2 * PointerSize + 2 * sizeof(uint32_t)) |
| 696 | Entry.LSDAReloc = Reloc; |
| 697 | else |
| 698 | llvm_unreachable("Unexpected relocation in __compact_unwind section"); |
| 699 | } |
| 700 | |
| 701 | // Finally, we're ready to print the data we've gathered. |
| 702 | outs() << "Contents of __compact_unwind section:\n"; |
| 703 | for (auto &Entry : CompactUnwinds) { |
Tim Northover | 06af260 | 2014-08-08 12:08:51 +0000 | [diff] [blame] | 704 | outs() << " Entry at offset " |
| 705 | << format("0x%" PRIx32, Entry.OffsetInSection) << ":\n"; |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 706 | |
| 707 | // 1. Start of the region this entry applies to. |
| 708 | outs() << " start: " |
Tim Northover | b911bf8 | 2014-08-08 12:00:09 +0000 | [diff] [blame] | 709 | << format("0x%" PRIx64, Entry.FunctionAddr) << ' '; |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 710 | printUnwindRelocDest(Obj, Symbols, Entry.FunctionReloc, |
| 711 | Entry.FunctionAddr); |
| 712 | outs() << '\n'; |
| 713 | |
| 714 | // 2. Length of the region this entry applies to. |
| 715 | outs() << " length: " |
Tim Northover | b911bf8 | 2014-08-08 12:00:09 +0000 | [diff] [blame] | 716 | << format("0x%" PRIx32, Entry.Length) << '\n'; |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 717 | // 3. The 32-bit compact encoding. |
| 718 | outs() << " compact encoding: " |
Tim Northover | b911bf8 | 2014-08-08 12:00:09 +0000 | [diff] [blame] | 719 | << format("0x%08" PRIx32, Entry.CompactEncoding) << '\n'; |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 720 | |
| 721 | // 4. The personality function, if present. |
| 722 | if (Entry.PersonalityReloc.getObjectFile()) { |
| 723 | outs() << " personality function: " |
Tim Northover | b911bf8 | 2014-08-08 12:00:09 +0000 | [diff] [blame] | 724 | << format("0x%" PRIx64, Entry.PersonalityAddr) << ' '; |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 725 | printUnwindRelocDest(Obj, Symbols, Entry.PersonalityReloc, |
| 726 | Entry.PersonalityAddr); |
| 727 | outs() << '\n'; |
| 728 | } |
| 729 | |
| 730 | // 5. This entry's language-specific data area. |
| 731 | if (Entry.LSDAReloc.getObjectFile()) { |
| 732 | outs() << " LSDA: " |
Tim Northover | b911bf8 | 2014-08-08 12:00:09 +0000 | [diff] [blame] | 733 | << format("0x%" PRIx64, Entry.LSDAAddr) << ' '; |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 734 | printUnwindRelocDest(Obj, Symbols, Entry.LSDAReloc, Entry.LSDAAddr); |
| 735 | outs() << '\n'; |
| 736 | } |
| 737 | } |
| 738 | } |
| 739 | |
Tim Northover | 39c70bb | 2014-08-12 11:52:59 +0000 | [diff] [blame] | 740 | //===----------------------------------------------------------------------===// |
| 741 | // __unwind_info section dumping |
| 742 | //===----------------------------------------------------------------------===// |
| 743 | |
| 744 | static void printRegularSecondLevelUnwindPage(const char *PageStart) { |
| 745 | const char *Pos = PageStart; |
| 746 | uint32_t Kind = readNext<uint32_t>(Pos); |
| 747 | (void)Kind; |
| 748 | assert(Kind == 2 && "kind for a regular 2nd level index should be 2"); |
| 749 | |
| 750 | uint16_t EntriesStart = readNext<uint16_t>(Pos); |
| 751 | uint16_t NumEntries = readNext<uint16_t>(Pos); |
| 752 | |
| 753 | Pos = PageStart + EntriesStart; |
| 754 | for (unsigned i = 0; i < NumEntries; ++i) { |
| 755 | uint32_t FunctionOffset = readNext<uint32_t>(Pos); |
| 756 | uint32_t Encoding = readNext<uint32_t>(Pos); |
| 757 | |
| 758 | outs() << " [" << i << "]: " |
| 759 | << "function offset=" |
| 760 | << format("0x%08" PRIx32, FunctionOffset) << ", " |
| 761 | << "encoding=" |
| 762 | << format("0x%08" PRIx32, Encoding) |
| 763 | << '\n'; |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | static void printCompressedSecondLevelUnwindPage( |
| 768 | const char *PageStart, uint32_t FunctionBase, |
| 769 | const SmallVectorImpl<uint32_t> &CommonEncodings) { |
| 770 | const char *Pos = PageStart; |
| 771 | uint32_t Kind = readNext<uint32_t>(Pos); |
| 772 | (void)Kind; |
| 773 | assert(Kind == 3 && "kind for a compressed 2nd level index should be 3"); |
| 774 | |
| 775 | uint16_t EntriesStart = readNext<uint16_t>(Pos); |
| 776 | uint16_t NumEntries = readNext<uint16_t>(Pos); |
| 777 | |
| 778 | uint16_t EncodingsStart = readNext<uint16_t>(Pos); |
| 779 | readNext<uint16_t>(Pos); |
Aaron Ballman | 80930af | 2014-08-14 13:53:19 +0000 | [diff] [blame] | 780 | const auto *PageEncodings = reinterpret_cast<const support::ulittle32_t *>( |
| 781 | PageStart + EncodingsStart); |
Tim Northover | 39c70bb | 2014-08-12 11:52:59 +0000 | [diff] [blame] | 782 | |
| 783 | Pos = PageStart + EntriesStart; |
| 784 | for (unsigned i = 0; i < NumEntries; ++i) { |
| 785 | uint32_t Entry = readNext<uint32_t>(Pos); |
| 786 | uint32_t FunctionOffset = FunctionBase + (Entry & 0xffffff); |
| 787 | uint32_t EncodingIdx = Entry >> 24; |
| 788 | |
| 789 | uint32_t Encoding; |
| 790 | if (EncodingIdx < CommonEncodings.size()) |
| 791 | Encoding = CommonEncodings[EncodingIdx]; |
| 792 | else |
| 793 | Encoding = PageEncodings[EncodingIdx - CommonEncodings.size()]; |
| 794 | |
| 795 | outs() << " [" << i << "]: " |
| 796 | << "function offset=" |
| 797 | << format("0x%08" PRIx32, FunctionOffset) << ", " |
| 798 | << "encoding[" << EncodingIdx << "]=" |
| 799 | << format("0x%08" PRIx32, Encoding) |
| 800 | << '\n'; |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | static void |
| 805 | printMachOUnwindInfoSection(const MachOObjectFile *Obj, |
| 806 | std::map<uint64_t, SymbolRef> &Symbols, |
| 807 | const SectionRef &UnwindInfo) { |
| 808 | |
| 809 | assert(Obj->isLittleEndian() && |
| 810 | "There should not be a big-endian .o with __unwind_info"); |
| 811 | |
| 812 | outs() << "Contents of __unwind_info section:\n"; |
| 813 | |
| 814 | StringRef Contents; |
| 815 | UnwindInfo.getContents(Contents); |
| 816 | const char *Pos = Contents.data(); |
| 817 | |
| 818 | //===---------------------------------- |
| 819 | // Section header |
| 820 | //===---------------------------------- |
| 821 | |
| 822 | uint32_t Version = readNext<uint32_t>(Pos); |
| 823 | outs() << " Version: " |
| 824 | << format("0x%" PRIx32, Version) << '\n'; |
| 825 | assert(Version == 1 && "only understand version 1"); |
| 826 | |
| 827 | uint32_t CommonEncodingsStart = readNext<uint32_t>(Pos); |
| 828 | outs() << " Common encodings array section offset: " |
| 829 | << format("0x%" PRIx32, CommonEncodingsStart) << '\n'; |
| 830 | uint32_t NumCommonEncodings = readNext<uint32_t>(Pos); |
| 831 | outs() << " Number of common encodings in array: " |
| 832 | << format("0x%" PRIx32, NumCommonEncodings) << '\n'; |
| 833 | |
| 834 | uint32_t PersonalitiesStart = readNext<uint32_t>(Pos); |
| 835 | outs() << " Personality function array section offset: " |
| 836 | << format("0x%" PRIx32, PersonalitiesStart) << '\n'; |
| 837 | uint32_t NumPersonalities = readNext<uint32_t>(Pos); |
| 838 | outs() << " Number of personality functions in array: " |
| 839 | << format("0x%" PRIx32, NumPersonalities) << '\n'; |
| 840 | |
| 841 | uint32_t IndicesStart = readNext<uint32_t>(Pos); |
| 842 | outs() << " Index array section offset: " |
| 843 | << format("0x%" PRIx32, IndicesStart) << '\n'; |
| 844 | uint32_t NumIndices = readNext<uint32_t>(Pos); |
| 845 | outs() << " Number of indices in array: " |
| 846 | << format("0x%" PRIx32, NumIndices) << '\n'; |
| 847 | |
| 848 | //===---------------------------------- |
| 849 | // A shared list of common encodings |
| 850 | //===---------------------------------- |
| 851 | |
| 852 | // These occupy indices in the range [0, N] whenever an encoding is referenced |
| 853 | // from a compressed 2nd level index table. In practice the linker only |
| 854 | // creates ~128 of these, so that indices are available to embed encodings in |
| 855 | // the 2nd level index. |
| 856 | |
| 857 | SmallVector<uint32_t, 64> CommonEncodings; |
| 858 | outs() << " Common encodings: (count = " << NumCommonEncodings << ")\n"; |
| 859 | Pos = Contents.data() + CommonEncodingsStart; |
| 860 | for (unsigned i = 0; i < NumCommonEncodings; ++i) { |
| 861 | uint32_t Encoding = readNext<uint32_t>(Pos); |
| 862 | CommonEncodings.push_back(Encoding); |
| 863 | |
| 864 | outs() << " encoding[" << i << "]: " << format("0x%08" PRIx32, Encoding) |
| 865 | << '\n'; |
| 866 | } |
| 867 | |
| 868 | |
| 869 | //===---------------------------------- |
| 870 | // Personality functions used in this executable |
| 871 | //===---------------------------------- |
| 872 | |
| 873 | // There should be only a handful of these (one per source language, |
| 874 | // roughly). Particularly since they only get 2 bits in the compact encoding. |
| 875 | |
| 876 | outs() << " Personality functions: (count = " << NumPersonalities << ")\n"; |
| 877 | Pos = Contents.data() + PersonalitiesStart; |
| 878 | for (unsigned i = 0; i < NumPersonalities; ++i) { |
| 879 | uint32_t PersonalityFn = readNext<uint32_t>(Pos); |
| 880 | outs() << " personality[" << i + 1 |
| 881 | << "]: " << format("0x%08" PRIx32, PersonalityFn) << '\n'; |
| 882 | } |
| 883 | |
| 884 | //===---------------------------------- |
| 885 | // The level 1 index entries |
| 886 | //===---------------------------------- |
| 887 | |
| 888 | // These specify an approximate place to start searching for the more detailed |
| 889 | // information, sorted by PC. |
| 890 | |
| 891 | struct IndexEntry { |
| 892 | uint32_t FunctionOffset; |
| 893 | uint32_t SecondLevelPageStart; |
| 894 | uint32_t LSDAStart; |
| 895 | }; |
| 896 | |
| 897 | SmallVector<IndexEntry, 4> IndexEntries; |
| 898 | |
| 899 | outs() << " Top level indices: (count = " << NumIndices << ")\n"; |
| 900 | Pos = Contents.data() + IndicesStart; |
| 901 | for (unsigned i = 0; i < NumIndices; ++i) { |
| 902 | IndexEntry Entry; |
| 903 | |
| 904 | Entry.FunctionOffset = readNext<uint32_t>(Pos); |
| 905 | Entry.SecondLevelPageStart = readNext<uint32_t>(Pos); |
| 906 | Entry.LSDAStart = readNext<uint32_t>(Pos); |
| 907 | IndexEntries.push_back(Entry); |
| 908 | |
| 909 | outs() << " [" << i << "]: " |
| 910 | << "function offset=" |
| 911 | << format("0x%08" PRIx32, Entry.FunctionOffset) << ", " |
| 912 | << "2nd level page offset=" |
| 913 | << format("0x%08" PRIx32, Entry.SecondLevelPageStart) << ", " |
| 914 | << "LSDA offset=" |
| 915 | << format("0x%08" PRIx32, Entry.LSDAStart) << '\n'; |
| 916 | } |
| 917 | |
| 918 | |
| 919 | //===---------------------------------- |
| 920 | // Next come the LSDA tables |
| 921 | //===---------------------------------- |
| 922 | |
| 923 | // The LSDA layout is rather implicit: it's a contiguous array of entries from |
| 924 | // the first top-level index's LSDAOffset to the last (sentinel). |
| 925 | |
| 926 | outs() << " LSDA descriptors:\n"; |
| 927 | Pos = Contents.data() + IndexEntries[0].LSDAStart; |
| 928 | int NumLSDAs = (IndexEntries.back().LSDAStart - IndexEntries[0].LSDAStart) / |
| 929 | (2 * sizeof(uint32_t)); |
| 930 | for (int i = 0; i < NumLSDAs; ++i) { |
| 931 | uint32_t FunctionOffset = readNext<uint32_t>(Pos); |
| 932 | uint32_t LSDAOffset = readNext<uint32_t>(Pos); |
| 933 | outs() << " [" << i << "]: " |
| 934 | << "function offset=" |
| 935 | << format("0x%08" PRIx32, FunctionOffset) << ", " |
| 936 | << "LSDA offset=" |
| 937 | << format("0x%08" PRIx32, LSDAOffset) << '\n'; |
| 938 | } |
| 939 | |
| 940 | //===---------------------------------- |
| 941 | // Finally, the 2nd level indices |
| 942 | //===---------------------------------- |
| 943 | |
| 944 | // Generally these are 4K in size, and have 2 possible forms: |
| 945 | // + Regular stores up to 511 entries with disparate encodings |
| 946 | // + Compressed stores up to 1021 entries if few enough compact encoding |
| 947 | // values are used. |
| 948 | outs() << " Second level indices:\n"; |
| 949 | for (unsigned i = 0; i < IndexEntries.size() - 1; ++i) { |
| 950 | // The final sentinel top-level index has no associated 2nd level page |
| 951 | if (IndexEntries[i].SecondLevelPageStart == 0) |
| 952 | break; |
| 953 | |
| 954 | outs() << " Second level index[" << i << "]: " |
| 955 | << "offset in section=" |
| 956 | << format("0x%08" PRIx32, IndexEntries[i].SecondLevelPageStart) |
| 957 | << ", " |
| 958 | << "base function offset=" |
| 959 | << format("0x%08" PRIx32, IndexEntries[i].FunctionOffset) << '\n'; |
| 960 | |
| 961 | Pos = Contents.data() + IndexEntries[i].SecondLevelPageStart; |
Aaron Ballman | 80930af | 2014-08-14 13:53:19 +0000 | [diff] [blame] | 962 | uint32_t Kind = *reinterpret_cast<const support::ulittle32_t *>(Pos); |
Tim Northover | 39c70bb | 2014-08-12 11:52:59 +0000 | [diff] [blame] | 963 | if (Kind == 2) |
| 964 | printRegularSecondLevelUnwindPage(Pos); |
| 965 | else if (Kind == 3) |
| 966 | printCompressedSecondLevelUnwindPage(Pos, IndexEntries[i].FunctionOffset, |
| 967 | CommonEncodings); |
| 968 | else |
| 969 | llvm_unreachable("Do not know how to print this kind of 2nd level page"); |
| 970 | |
| 971 | } |
| 972 | } |
| 973 | |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 974 | void llvm::printMachOUnwindInfo(const MachOObjectFile *Obj) { |
| 975 | std::map<uint64_t, SymbolRef> Symbols; |
| 976 | for (const SymbolRef &SymRef : Obj->symbols()) { |
| 977 | // Discard any undefined or absolute symbols. They're not going to take part |
| 978 | // in the convenience lookup for unwind info and just take up resources. |
| 979 | section_iterator Section = Obj->section_end(); |
| 980 | SymRef.getSection(Section); |
| 981 | if (Section == Obj->section_end()) |
| 982 | continue; |
| 983 | |
| 984 | uint64_t Addr; |
| 985 | SymRef.getAddress(Addr); |
| 986 | Symbols.insert(std::make_pair(Addr, SymRef)); |
| 987 | } |
| 988 | |
| 989 | for (const SectionRef &Section : Obj->sections()) { |
| 990 | StringRef SectName; |
| 991 | Section.getName(SectName); |
| 992 | if (SectName == "__compact_unwind") |
| 993 | printMachOCompactUnwindSection(Obj, Symbols, Section); |
| 994 | else if (SectName == "__unwind_info") |
Tim Northover | 39c70bb | 2014-08-12 11:52:59 +0000 | [diff] [blame] | 995 | printMachOUnwindInfoSection(Obj, Symbols, Section); |
Tim Northover | 4bd286a | 2014-08-01 13:07:19 +0000 | [diff] [blame] | 996 | else if (SectName == "__eh_frame") |
| 997 | outs() << "llvm-objdump: warning: unhandled __eh_frame section\n"; |
| 998 | |
| 999 | } |
| 1000 | } |