blob: d78d7f31a6cac9bce10aaa9ffa2e4caeb03eb763 [file] [log] [blame]
Benjamin Kramer0b8b7712011-09-19 17:56:04 +00001//===-- 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 "MCFunction.h"
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000016#include "llvm/ADT/OwningPtr.h"
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000017#include "llvm/ADT/STLExtras.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000018#include "llvm/ADT/Triple.h"
Benjamin Kramer8c930972011-09-21 01:13:19 +000019#include "llvm/DebugInfo/DIContext.h"
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000020#include "llvm/MC/MCAsmInfo.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"
Jim Grosbachc6449b62012-03-05 19:33:20 +000027#include "llvm/MC/MCRegisterInfo.h"
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000028#include "llvm/MC/MCSubtargetInfo.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000029#include "llvm/Object/MachO.h"
Rafael Espindolada2a2372013-04-13 01:45:40 +000030#include "llvm/Support/Casting.h"
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000031#include "llvm/Support/CommandLine.h"
32#include "llvm/Support/Debug.h"
33#include "llvm/Support/Format.h"
34#include "llvm/Support/GraphWriter.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000035#include "llvm/Support/MachO.h"
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000036#include "llvm/Support/MemoryBuffer.h"
37#include "llvm/Support/TargetRegistry.h"
38#include "llvm/Support/TargetSelect.h"
39#include "llvm/Support/raw_ostream.h"
40#include "llvm/Support/system_error.h"
41#include <algorithm>
42#include <cstring>
43using namespace llvm;
44using namespace object;
45
46static cl::opt<bool>
47 CFG("cfg", cl::desc("Create a CFG for every symbol in the object file and"
Evan Chengc698a442012-07-02 19:45:42 +000048 " write it to a graphviz file (MachO-only)"));
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000049
Benjamin Kramer8c930972011-09-21 01:13:19 +000050static cl::opt<bool>
51 UseDbg("g", cl::desc("Print line information from debug info if available"));
52
53static cl::opt<std::string>
54 DSYMFile("dsym", cl::desc("Use .dSYM file for debug info"));
55
Rafael Espindolafd7aa382013-04-18 18:08:55 +000056static const Target *GetTarget(const MachOObjectFile *MachOObj) {
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000057 // Figure out the target triple.
Cameron Zwaricha9935052012-02-03 06:35:22 +000058 if (TripleName.empty()) {
59 llvm::Triple TT("unknown-unknown-unknown");
Rafael Espindola317d3f42013-04-11 03:34:37 +000060 TT.setArch(Triple::ArchType(MachOObj->getArch()));
Cameron Zwaricha9935052012-02-03 06:35:22 +000061 TripleName = TT.str();
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000062 }
63
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000064 // Get the target specific parser.
65 std::string Error;
66 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
67 if (TheTarget)
68 return TheTarget;
69
70 errs() << "llvm-objdump: error: unable to get target for '" << TripleName
71 << "', see --version and --triple.\n";
72 return 0;
73}
74
Owen Anderson481837a2011-10-17 21:37:35 +000075struct SymbolSorter {
76 bool operator()(const SymbolRef &A, const SymbolRef &B) {
77 SymbolRef::Type AType, BType;
78 A.getType(AType);
79 B.getType(BType);
80
81 uint64_t AAddr, BAddr;
82 if (AType != SymbolRef::ST_Function)
83 AAddr = 0;
84 else
85 A.getAddress(AAddr);
86 if (BType != SymbolRef::ST_Function)
87 BAddr = 0;
88 else
89 B.getAddress(BAddr);
90 return AAddr < BAddr;
91 }
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000092};
93
Michael J. Spencer3773fb42011-10-07 19:25:47 +000094// Print additional information about an address, if available.
Owen Anderson481837a2011-10-17 21:37:35 +000095static void DumpAddress(uint64_t Address, ArrayRef<SectionRef> Sections,
Rafael Espindolafd7aa382013-04-18 18:08:55 +000096 const MachOObjectFile *MachOObj, raw_ostream &OS) {
Benjamin Kramer0b8b7712011-09-19 17:56:04 +000097 for (unsigned i = 0; i != Sections.size(); ++i) {
Owen Anderson481837a2011-10-17 21:37:35 +000098 uint64_t SectAddr = 0, SectSize = 0;
99 Sections[i].getAddress(SectAddr);
100 Sections[i].getSize(SectSize);
101 uint64_t addr = SectAddr;
102 if (SectAddr <= Address &&
103 SectAddr + SectSize > Address) {
104 StringRef bytes, name;
105 Sections[i].getContents(bytes);
106 Sections[i].getName(name);
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000107 // Print constant strings.
Owen Anderson481837a2011-10-17 21:37:35 +0000108 if (!name.compare("__cstring"))
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000109 OS << '"' << bytes.substr(addr, bytes.find('\0', addr)) << '"';
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000110 // Print constant CFStrings.
Owen Anderson481837a2011-10-17 21:37:35 +0000111 if (!name.compare("__cfstring"))
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000112 OS << "@\"" << bytes.substr(addr, bytes.find('\0', addr)) << '"';
113 }
114 }
115}
116
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000117typedef std::map<uint64_t, MCFunction*> FunctionMapTy;
118typedef SmallVector<MCFunction, 16> FunctionListTy;
119static void createMCFunctionAndSaveCalls(StringRef Name,
120 const MCDisassembler *DisAsm,
121 MemoryObject &Object, uint64_t Start,
122 uint64_t End,
123 MCInstrAnalysis *InstrAnalysis,
124 uint64_t Address,
125 raw_ostream &DebugOut,
126 FunctionMapTy &FunctionMap,
127 FunctionListTy &Functions) {
128 SmallVector<uint64_t, 16> Calls;
129 MCFunction f =
130 MCFunction::createFunctionFromMC(Name, DisAsm, Object, Start, End,
131 InstrAnalysis, DebugOut, Calls);
132 Functions.push_back(f);
133 FunctionMap[Address] = &Functions.back();
134
135 // Add the gathered callees to the map.
136 for (unsigned i = 0, e = Calls.size(); i != e; ++i)
137 FunctionMap.insert(std::make_pair(Calls[i], (MCFunction*)0));
138}
139
140// Write a graphviz file for the CFG inside an MCFunction.
141static void emitDOTFile(const char *FileName, const MCFunction &f,
142 MCInstPrinter *IP) {
143 // Start a new dot file.
144 std::string Error;
145 raw_fd_ostream Out(FileName, Error);
146 if (!Error.empty()) {
147 errs() << "llvm-objdump: warning: " << Error << '\n';
148 return;
149 }
150
151 Out << "digraph " << f.getName() << " {\n";
152 Out << "graph [ rankdir = \"LR\" ];\n";
153 for (MCFunction::iterator i = f.begin(), e = f.end(); i != e; ++i) {
154 bool hasPreds = false;
155 // Only print blocks that have predecessors.
156 // FIXME: Slow.
157 for (MCFunction::iterator pi = f.begin(), pe = f.end(); pi != pe;
158 ++pi)
159 if (pi->second.contains(i->first)) {
160 hasPreds = true;
161 break;
162 }
163
164 if (!hasPreds && i != f.begin())
165 continue;
166
167 Out << '"' << i->first << "\" [ label=\"<a>";
168 // Print instructions.
169 for (unsigned ii = 0, ie = i->second.getInsts().size(); ii != ie;
170 ++ii) {
171 // Escape special chars and print the instruction in mnemonic form.
172 std::string Str;
173 raw_string_ostream OS(Str);
174 IP->printInst(&i->second.getInsts()[ii].Inst, OS, "");
175 Out << DOT::EscapeString(OS.str()) << '|';
176 }
177 Out << "<o>\" shape=\"record\" ];\n";
178
179 // Add edges.
180 for (MCBasicBlock::succ_iterator si = i->second.succ_begin(),
181 se = i->second.succ_end(); si != se; ++si)
182 Out << i->first << ":o -> " << *si <<":a\n";
183 }
184 Out << "}\n";
185}
186
Rafael Espindolada2a2372013-04-13 01:45:40 +0000187static void
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000188getSectionsAndSymbols(const macho::Header Header,
189 MachOObjectFile *MachOObj,
Rafael Espindolada2a2372013-04-13 01:45:40 +0000190 std::vector<SectionRef> &Sections,
191 std::vector<SymbolRef> &Symbols,
192 SmallVectorImpl<uint64_t> &FoundFns) {
Owen Anderson481837a2011-10-17 21:37:35 +0000193 error_code ec;
194 for (symbol_iterator SI = MachOObj->begin_symbols(),
195 SE = MachOObj->end_symbols(); SI != SE; SI.increment(ec))
196 Symbols.push_back(*SI);
197
198 for (section_iterator SI = MachOObj->begin_sections(),
199 SE = MachOObj->end_sections(); SI != SE; SI.increment(ec)) {
200 SectionRef SR = *SI;
201 StringRef SectName;
202 SR.getName(SectName);
203 Sections.push_back(*SI);
204 }
205
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000206 MachOObjectFile::LoadCommandInfo Command =
207 MachOObj->getFirstLoadCommandInfo();
Rafael Espindoladb5f9272013-04-19 11:36:47 +0000208 for (unsigned i = 0; ; ++i) {
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000209 if (Command.C.Type == macho::LCT_FunctionStarts) {
Benjamin Kramer8c930972011-09-21 01:13:19 +0000210 // We found a function starts segment, parse the addresses for later
211 // consumption.
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000212 macho::LinkeditDataLoadCommand LLC =
213 MachOObj->getLinkeditDataLoadCommand(Command);
Benjamin Kramer8c930972011-09-21 01:13:19 +0000214
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000215 MachOObj->ReadULEB128s(LLC.DataOffset, FoundFns);
Benjamin Kramerafbaf482011-09-21 22:16:43 +0000216 }
Rafael Espindoladb5f9272013-04-19 11:36:47 +0000217
218 if (i == Header.NumLoadCommands - 1)
219 break;
220 else
221 Command = MachOObj->getNextLoadCommandInfo(Command);
Benjamin Kramerafbaf482011-09-21 22:16:43 +0000222 }
Benjamin Kramer8c930972011-09-21 01:13:19 +0000223}
224
Rafael Espindolada2a2372013-04-13 01:45:40 +0000225static void DisassembleInputMachO2(StringRef Filename,
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000226 MachOObjectFile *MachOOF);
Rafael Espindolada2a2372013-04-13 01:45:40 +0000227
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000228void llvm::DisassembleInputMachO(StringRef Filename) {
229 OwningPtr<MemoryBuffer> Buff;
230
231 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, Buff)) {
232 errs() << "llvm-objdump: " << Filename << ": " << ec.message() << "\n";
233 return;
234 }
235
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000236 OwningPtr<MachOObjectFile> MachOOF(static_cast<MachOObjectFile*>(
Owen Anderson481837a2011-10-17 21:37:35 +0000237 ObjectFile::createMachOObjectFile(Buff.take())));
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000238
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000239 DisassembleInputMachO2(Filename, MachOOF.get());
Rafael Espindolada2a2372013-04-13 01:45:40 +0000240}
241
Rafael Espindolada2a2372013-04-13 01:45:40 +0000242static void DisassembleInputMachO2(StringRef Filename,
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000243 MachOObjectFile *MachOOF) {
Rafael Espindolada2a2372013-04-13 01:45:40 +0000244 const Target *TheTarget = GetTarget(MachOOF);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000245 if (!TheTarget) {
246 // GetTarget prints out stuff.
247 return;
248 }
Benjamin Kramerd226ed712011-10-10 13:10:09 +0000249 OwningPtr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000250 OwningPtr<MCInstrAnalysis>
Benjamin Kramerd226ed712011-10-10 13:10:09 +0000251 InstrAnalysis(TheTarget->createMCInstrAnalysis(InstrInfo.get()));
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000252
253 // Set up disassembler.
254 OwningPtr<const MCAsmInfo> AsmInfo(TheTarget->createMCAsmInfo(TripleName));
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000255 OwningPtr<const MCSubtargetInfo>
256 STI(TheTarget->createMCSubtargetInfo(TripleName, "", ""));
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000257 OwningPtr<const MCDisassembler> DisAsm(TheTarget->createMCDisassembler(*STI));
Jim Grosbachc6449b62012-03-05 19:33:20 +0000258 OwningPtr<const MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000259 int AsmPrinterVariant = AsmInfo->getAssemblerDialect();
Craig Topper17463b32012-04-02 06:09:36 +0000260 OwningPtr<MCInstPrinter>
261 IP(TheTarget->createMCInstPrinter(AsmPrinterVariant, *AsmInfo, *InstrInfo,
262 *MRI, *STI));
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000263
264 if (!InstrAnalysis || !AsmInfo || !STI || !DisAsm || !IP) {
Michael J. Spencer3773fb42011-10-07 19:25:47 +0000265 errs() << "error: couldn't initialize disassembler for target "
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000266 << TripleName << '\n';
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000267 return;
268 }
269
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000270 outs() << '\n' << Filename << ":\n\n";
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000271
Rafael Espindolafd7aa382013-04-18 18:08:55 +0000272 macho::Header Header = MachOOF->getHeader();
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000273
Owen Anderson481837a2011-10-17 21:37:35 +0000274 std::vector<SectionRef> Sections;
275 std::vector<SymbolRef> Symbols;
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000276 SmallVector<uint64_t, 8> FoundFns;
277
Rafael Espindolada2a2372013-04-13 01:45:40 +0000278 getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000279
Benjamin Kramer8c930972011-09-21 01:13:19 +0000280 // Make a copy of the unsorted symbol list. FIXME: duplication
Owen Anderson481837a2011-10-17 21:37:35 +0000281 std::vector<SymbolRef> UnsortedSymbols(Symbols);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000282 // Sort the symbols by address, just in case they didn't come in that way.
Owen Anderson481837a2011-10-17 21:37:35 +0000283 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000284
285#ifndef NDEBUG
286 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls();
287#else
288 raw_ostream &DebugOut = nulls();
289#endif
290
Benjamin Kramer8c930972011-09-21 01:13:19 +0000291 OwningPtr<DIContext> diContext;
Rafael Espindolada2a2372013-04-13 01:45:40 +0000292 ObjectFile *DbgObj = MachOOF;
Benjamin Kramer8c930972011-09-21 01:13:19 +0000293 // Try to find debug info and set up the DIContext for it.
294 if (UseDbg) {
Benjamin Kramer8c930972011-09-21 01:13:19 +0000295 // A separate DSym file path was specified, parse it as a macho file,
296 // get the sections and supply it to the section name parsing machinery.
297 if (!DSYMFile.empty()) {
298 OwningPtr<MemoryBuffer> Buf;
299 if (error_code ec = MemoryBuffer::getFileOrSTDIN(DSYMFile.c_str(), Buf)) {
300 errs() << "llvm-objdump: " << Filename << ": " << ec.message() << '\n';
301 return;
302 }
Eric Christopherd1726a42012-11-12 21:40:38 +0000303 DbgObj = ObjectFile::createMachOObjectFile(Buf.take());
Benjamin Kramer8c930972011-09-21 01:13:19 +0000304 }
305
Eric Christopherd1726a42012-11-12 21:40:38 +0000306 // Setup the DIContext
307 diContext.reset(DIContext::getDWARFContext(DbgObj));
Benjamin Kramer8c930972011-09-21 01:13:19 +0000308 }
309
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000310 FunctionMapTy FunctionMap;
311 FunctionListTy Functions;
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000312
313 for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
Owen Anderson481837a2011-10-17 21:37:35 +0000314 StringRef SectName;
315 if (Sections[SectIdx].getName(SectName) ||
Rafael Espindolacef81b32012-12-21 03:47:03 +0000316 SectName != "__text")
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000317 continue; // Skip non-text sections
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000318
Rafael Espindolacef81b32012-12-21 03:47:03 +0000319 DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
Rafael Espindolaf16c2bb2013-04-05 15:15:22 +0000320 StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR);
321 if (SegmentName != "__TEXT")
Rafael Espindolacef81b32012-12-21 03:47:03 +0000322 continue;
323
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000324 // Insert the functions from the function starts segment into our map.
Owen Anderson481837a2011-10-17 21:37:35 +0000325 uint64_t VMAddr;
326 Sections[SectIdx].getAddress(VMAddr);
327 for (unsigned i = 0, e = FoundFns.size(); i != e; ++i) {
328 StringRef SectBegin;
329 Sections[SectIdx].getContents(SectBegin);
330 uint64_t Offset = (uint64_t)SectBegin.data();
331 FunctionMap.insert(std::make_pair(VMAddr + FoundFns[i]-Offset,
332 (MCFunction*)0));
333 }
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000334
Owen Anderson481837a2011-10-17 21:37:35 +0000335 StringRef Bytes;
336 Sections[SectIdx].getContents(Bytes);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000337 StringRefMemoryObject memoryObject(Bytes);
338 bool symbolTableWorked = false;
339
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000340 // Parse relocations.
Owen Anderson7d3f8b82011-11-07 17:21:36 +0000341 std::vector<std::pair<uint64_t, SymbolRef> > Relocs;
Owen Anderson481837a2011-10-17 21:37:35 +0000342 error_code ec;
343 for (relocation_iterator RI = Sections[SectIdx].begin_relocations(),
344 RE = Sections[SectIdx].end_relocations(); RI != RE; RI.increment(ec)) {
345 uint64_t RelocOffset, SectionAddress;
346 RI->getAddress(RelocOffset);
347 Sections[SectIdx].getAddress(SectionAddress);
348 RelocOffset -= SectionAddress;
349
Owen Anderson7d3f8b82011-11-07 17:21:36 +0000350 SymbolRef RelocSym;
351 RI->getSymbol(RelocSym);
Owen Anderson481837a2011-10-17 21:37:35 +0000352
Owen Anderson7d3f8b82011-11-07 17:21:36 +0000353 Relocs.push_back(std::make_pair(RelocOffset, RelocSym));
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000354 }
355 array_pod_sort(Relocs.begin(), Relocs.end());
356
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000357 // Disassemble symbol by symbol.
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000358 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
Owen Anderson481837a2011-10-17 21:37:35 +0000359 StringRef SymName;
360 Symbols[SymIdx].getName(SymName);
361
362 SymbolRef::Type ST;
363 Symbols[SymIdx].getType(ST);
364 if (ST != SymbolRef::ST_Function)
365 continue;
366
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000367 // Make sure the symbol is defined in this section.
Owen Anderson481837a2011-10-17 21:37:35 +0000368 bool containsSym = false;
369 Sections[SectIdx].containsSymbol(Symbols[SymIdx], containsSym);
370 if (!containsSym)
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000371 continue;
372
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000373 // Start at the address of the symbol relative to the section's address.
Cameron Zwarichec8eac62012-02-03 05:42:17 +0000374 uint64_t SectionAddress = 0;
Owen Anderson481837a2011-10-17 21:37:35 +0000375 uint64_t Start = 0;
Cameron Zwarichec8eac62012-02-03 05:42:17 +0000376 Sections[SectIdx].getAddress(SectionAddress);
Danil Malyshevb0436a72011-11-29 17:40:10 +0000377 Symbols[SymIdx].getAddress(Start);
Cameron Zwarichec8eac62012-02-03 05:42:17 +0000378 Start -= SectionAddress;
Owen Anderson481837a2011-10-17 21:37:35 +0000379
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000380 // Stop disassembling either at the beginning of the next symbol or at
381 // the end of the section.
Kevin Enderby41854ae2012-05-15 18:57:14 +0000382 bool containsNextSym = false;
Owen Anderson481837a2011-10-17 21:37:35 +0000383 uint64_t NextSym = 0;
384 uint64_t NextSymIdx = SymIdx+1;
385 while (Symbols.size() > NextSymIdx) {
386 SymbolRef::Type NextSymType;
387 Symbols[NextSymIdx].getType(NextSymType);
388 if (NextSymType == SymbolRef::ST_Function) {
389 Sections[SectIdx].containsSymbol(Symbols[NextSymIdx],
390 containsNextSym);
Danil Malyshevb0436a72011-11-29 17:40:10 +0000391 Symbols[NextSymIdx].getAddress(NextSym);
Cameron Zwarichec8eac62012-02-03 05:42:17 +0000392 NextSym -= SectionAddress;
Owen Anderson481837a2011-10-17 21:37:35 +0000393 break;
394 }
395 ++NextSymIdx;
396 }
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000397
Owen Anderson481837a2011-10-17 21:37:35 +0000398 uint64_t SectSize;
399 Sections[SectIdx].getSize(SectSize);
400 uint64_t End = containsNextSym ? NextSym : SectSize;
401 uint64_t Size;
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000402
403 symbolTableWorked = true;
404
405 if (!CFG) {
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000406 // Normal disassembly, print addresses, bytes and mnemonic form.
Owen Anderson481837a2011-10-17 21:37:35 +0000407 StringRef SymName;
408 Symbols[SymIdx].getName(SymName);
409
410 outs() << SymName << ":\n";
Benjamin Kramer8c930972011-09-21 01:13:19 +0000411 DILineInfo lastLine;
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000412 for (uint64_t Index = Start; Index < End; Index += Size) {
413 MCInst Inst;
414
415 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index,
416 DebugOut, nulls())) {
Owen Anderson481837a2011-10-17 21:37:35 +0000417 uint64_t SectAddress = 0;
418 Sections[SectIdx].getAddress(SectAddress);
Benjamin Kramer41a96492011-11-05 08:57:40 +0000419 outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
Owen Anderson481837a2011-10-17 21:37:35 +0000420
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000421 DumpBytes(StringRef(Bytes.data() + Index, Size));
422 IP->printInst(&Inst, outs(), "");
Benjamin Kramer8c930972011-09-21 01:13:19 +0000423
424 // Print debug info.
425 if (diContext) {
426 DILineInfo dli =
Owen Anderson481837a2011-10-17 21:37:35 +0000427 diContext->getLineInfoForAddress(SectAddress + Index);
Benjamin Kramer8c930972011-09-21 01:13:19 +0000428 // Print valid line info if it changed.
429 if (dli != lastLine && dli.getLine() != 0)
430 outs() << "\t## " << dli.getFileName() << ':'
431 << dli.getLine() << ':' << dli.getColumn();
432 lastLine = dli;
433 }
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000434 outs() << "\n";
435 } else {
436 errs() << "llvm-objdump: warning: invalid instruction encoding\n";
437 if (Size == 0)
438 Size = 1; // skip illegible bytes
439 }
440 }
441 } else {
442 // Create CFG and use it for disassembly.
Owen Anderson481837a2011-10-17 21:37:35 +0000443 StringRef SymName;
444 Symbols[SymIdx].getName(SymName);
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000445 createMCFunctionAndSaveCalls(
Owen Anderson481837a2011-10-17 21:37:35 +0000446 SymName, DisAsm.get(), memoryObject, Start, End,
447 InstrAnalysis.get(), Start, DebugOut, FunctionMap, Functions);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000448 }
449 }
Kevin Enderby59c15e92012-05-18 00:13:56 +0000450 if (!CFG && !symbolTableWorked) {
451 // Reading the symbol table didn't work, disassemble the whole section.
452 uint64_t SectAddress;
453 Sections[SectIdx].getAddress(SectAddress);
454 uint64_t SectSize;
455 Sections[SectIdx].getSize(SectSize);
456 uint64_t InstSize;
457 for (uint64_t Index = 0; Index < SectSize; Index += InstSize) {
Bill Wendlingf59083c2012-07-19 00:17:40 +0000458 MCInst Inst;
Kevin Enderby59c15e92012-05-18 00:13:56 +0000459
Bill Wendlingf59083c2012-07-19 00:17:40 +0000460 if (DisAsm->getInstruction(Inst, InstSize, memoryObject, Index,
461 DebugOut, nulls())) {
462 outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
463 DumpBytes(StringRef(Bytes.data() + Index, InstSize));
464 IP->printInst(&Inst, outs(), "");
465 outs() << "\n";
466 } else {
467 errs() << "llvm-objdump: warning: invalid instruction encoding\n";
468 if (InstSize == 0)
469 InstSize = 1; // skip illegible bytes
470 }
Kevin Enderby59c15e92012-05-18 00:13:56 +0000471 }
472 }
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000473
474 if (CFG) {
475 if (!symbolTableWorked) {
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000476 // Reading the symbol table didn't work, create a big __TEXT symbol.
Owen Anderson481837a2011-10-17 21:37:35 +0000477 uint64_t SectSize = 0, SectAddress = 0;
478 Sections[SectIdx].getSize(SectSize);
479 Sections[SectIdx].getAddress(SectAddress);
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000480 createMCFunctionAndSaveCalls("__TEXT", DisAsm.get(), memoryObject,
Owen Anderson481837a2011-10-17 21:37:35 +0000481 0, SectSize,
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000482 InstrAnalysis.get(),
Owen Anderson481837a2011-10-17 21:37:35 +0000483 SectAddress, DebugOut,
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000484 FunctionMap, Functions);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000485 }
486 for (std::map<uint64_t, MCFunction*>::iterator mi = FunctionMap.begin(),
487 me = FunctionMap.end(); mi != me; ++mi)
488 if (mi->second == 0) {
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000489 // Create functions for the remaining callees we have gathered,
490 // but we didn't find a name for them.
Owen Anderson481837a2011-10-17 21:37:35 +0000491 uint64_t SectSize = 0;
492 Sections[SectIdx].getSize(SectSize);
493
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000494 SmallVector<uint64_t, 16> Calls;
495 MCFunction f =
496 MCFunction::createFunctionFromMC("unknown", DisAsm.get(),
497 memoryObject, mi->first,
Owen Anderson481837a2011-10-17 21:37:35 +0000498 SectSize,
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000499 InstrAnalysis.get(), DebugOut,
500 Calls);
501 Functions.push_back(f);
502 mi->second = &Functions.back();
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000503 for (unsigned i = 0, e = Calls.size(); i != e; ++i) {
504 std::pair<uint64_t, MCFunction*> p(Calls[i], (MCFunction*)0);
505 if (FunctionMap.insert(p).second)
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000506 mi = FunctionMap.begin();
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000507 }
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000508 }
509
510 DenseSet<uint64_t> PrintedBlocks;
511 for (unsigned ffi = 0, ffe = Functions.size(); ffi != ffe; ++ffi) {
512 MCFunction &f = Functions[ffi];
513 for (MCFunction::iterator fi = f.begin(), fe = f.end(); fi != fe; ++fi){
514 if (!PrintedBlocks.insert(fi->first).second)
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000515 continue; // We already printed this block.
516
517 // We assume a block has predecessors when it's the first block after
518 // a symbol.
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000519 bool hasPreds = FunctionMap.find(fi->first) != FunctionMap.end();
520
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000521 // See if this block has predecessors.
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000522 // FIXME: Slow.
523 for (MCFunction::iterator pi = f.begin(), pe = f.end(); pi != pe;
524 ++pi)
525 if (pi->second.contains(fi->first)) {
526 hasPreds = true;
527 break;
528 }
529
Owen Anderson481837a2011-10-17 21:37:35 +0000530 uint64_t SectSize = 0, SectAddress;
531 Sections[SectIdx].getSize(SectSize);
532 Sections[SectIdx].getAddress(SectAddress);
533
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000534 // No predecessors, this is a data block. Print as .byte directives.
535 if (!hasPreds) {
Owen Anderson481837a2011-10-17 21:37:35 +0000536 uint64_t End = llvm::next(fi) == fe ? SectSize :
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000537 llvm::next(fi)->first;
538 outs() << "# " << End-fi->first << " bytes of data:\n";
539 for (unsigned pos = fi->first; pos != End; ++pos) {
Owen Anderson481837a2011-10-17 21:37:35 +0000540 outs() << format("%8x:\t", SectAddress + pos);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000541 DumpBytes(StringRef(Bytes.data() + pos, 1));
542 outs() << format("\t.byte 0x%02x\n", (uint8_t)Bytes[pos]);
543 }
544 continue;
545 }
546
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000547 if (fi->second.contains(fi->first)) // Print a header for simple loops
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000548 outs() << "# Loop begin:\n";
549
Benjamin Kramer8c930972011-09-21 01:13:19 +0000550 DILineInfo lastLine;
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000551 // Walk over the instructions and print them.
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000552 for (unsigned ii = 0, ie = fi->second.getInsts().size(); ii != ie;
553 ++ii) {
554 const MCDecodedInst &Inst = fi->second.getInsts()[ii];
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000555
556 // If there's a symbol at this address, print its name.
Owen Anderson481837a2011-10-17 21:37:35 +0000557 if (FunctionMap.find(SectAddress + Inst.Address) !=
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000558 FunctionMap.end())
Owen Anderson481837a2011-10-17 21:37:35 +0000559 outs() << FunctionMap[SectAddress + Inst.Address]-> getName()
560 << ":\n";
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000561
Benjamin Kramer41a96492011-11-05 08:57:40 +0000562 outs() << format("%8" PRIx64 ":\t", SectAddress + Inst.Address);
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000563 DumpBytes(StringRef(Bytes.data() + Inst.Address, Inst.Size));
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000564
565 if (fi->second.contains(fi->first)) // Indent simple loops.
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000566 outs() << '\t';
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000567
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000568 IP->printInst(&Inst.Inst, outs(), "");
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000569
570 // Look for relocations inside this instructions, if there is one
Michael J. Spencer3773fb42011-10-07 19:25:47 +0000571 // print its target and additional information if available.
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000572 for (unsigned j = 0; j != Relocs.size(); ++j)
Owen Anderson481837a2011-10-17 21:37:35 +0000573 if (Relocs[j].first >= SectAddress + Inst.Address &&
574 Relocs[j].first < SectAddress + Inst.Address + Inst.Size) {
575 StringRef SymName;
576 uint64_t Addr;
Owen Anderson7d3f8b82011-11-07 17:21:36 +0000577 Relocs[j].second.getAddress(Addr);
578 Relocs[j].second.getName(SymName);
Owen Anderson481837a2011-10-17 21:37:35 +0000579
580 outs() << "\t# " << SymName << ' ';
Rafael Espindolada2a2372013-04-13 01:45:40 +0000581 DumpAddress(Addr, Sections, MachOOF, outs());
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000582 }
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000583
584 // If this instructions contains an address, see if we can evaluate
585 // it and print additional information.
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000586 uint64_t targ = InstrAnalysis->evaluateBranch(Inst.Inst,
587 Inst.Address,
588 Inst.Size);
589 if (targ != -1ULL)
Rafael Espindolada2a2372013-04-13 01:45:40 +0000590 DumpAddress(targ, Sections, MachOOF, outs());
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000591
Benjamin Kramer8c930972011-09-21 01:13:19 +0000592 // Print debug info.
593 if (diContext) {
594 DILineInfo dli =
Owen Anderson481837a2011-10-17 21:37:35 +0000595 diContext->getLineInfoForAddress(SectAddress + Inst.Address);
Benjamin Kramer8c930972011-09-21 01:13:19 +0000596 // Print valid line info if it changed.
597 if (dli != lastLine && dli.getLine() != 0)
598 outs() << "\t## " << dli.getFileName() << ':'
599 << dli.getLine() << ':' << dli.getColumn();
600 lastLine = dli;
601 }
602
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000603 outs() << '\n';
604 }
605 }
606
Benjamin Kramera894c8e2011-09-20 17:53:01 +0000607 emitDOTFile((f.getName().str() + ".dot").c_str(), f, IP.get());
Benjamin Kramer0b8b7712011-09-19 17:56:04 +0000608 }
609 }
610 }
611}