1 //===-- llvm-objdump.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 program is a utility that works like binutils "objdump", that is, it 11 // dumps out a plethora of information about an object file depending on the 12 // flags. 13 // 14 // The flags and output of this program should be near identical to those of 15 // binutils objdump. 16 // 17 //===----------------------------------------------------------------------===// 18 19 #include "llvm-objdump.h" 20 #include "llvm/ADT/Optional.h" 21 #include "llvm/ADT/STLExtras.h" 22 #include "llvm/ADT/StringExtras.h" 23 #include "llvm/ADT/Triple.h" 24 #include "llvm/CodeGen/FaultMaps.h" 25 #include "llvm/MC/MCAsmInfo.h" 26 #include "llvm/MC/MCContext.h" 27 #include "llvm/MC/MCDisassembler.h" 28 #include "llvm/MC/MCInst.h" 29 #include "llvm/MC/MCInstPrinter.h" 30 #include "llvm/MC/MCInstrAnalysis.h" 31 #include "llvm/MC/MCInstrInfo.h" 32 #include "llvm/MC/MCObjectFileInfo.h" 33 #include "llvm/MC/MCRegisterInfo.h" 34 #include "llvm/MC/MCRelocationInfo.h" 35 #include "llvm/MC/MCSubtargetInfo.h" 36 #include "llvm/Object/Archive.h" 37 #include "llvm/Object/ELFObjectFile.h" 38 #include "llvm/Object/COFF.h" 39 #include "llvm/Object/MachO.h" 40 #include "llvm/Object/ObjectFile.h" 41 #include "llvm/Support/Casting.h" 42 #include "llvm/Support/CommandLine.h" 43 #include "llvm/Support/Debug.h" 44 #include "llvm/Support/Errc.h" 45 #include "llvm/Support/FileSystem.h" 46 #include "llvm/Support/Format.h" 47 #include "llvm/Support/GraphWriter.h" 48 #include "llvm/Support/Host.h" 49 #include "llvm/Support/ManagedStatic.h" 50 #include "llvm/Support/MemoryBuffer.h" 51 #include "llvm/Support/PrettyStackTrace.h" 52 #include "llvm/Support/Signals.h" 53 #include "llvm/Support/SourceMgr.h" 54 #include "llvm/Support/TargetRegistry.h" 55 #include "llvm/Support/TargetSelect.h" 56 #include "llvm/Support/raw_ostream.h" 57 #include <algorithm> 58 #include <cctype> 59 #include <cstring> 60 #include <system_error> 61 62 using namespace llvm; 63 using namespace object; 64 65 static cl::list<std::string> 66 InputFilenames(cl::Positional, cl::desc("<input object files>"),cl::ZeroOrMore); 67 68 cl::opt<bool> 69 llvm::Disassemble("disassemble", 70 cl::desc("Display assembler mnemonics for the machine instructions")); 71 static cl::alias 72 Disassembled("d", cl::desc("Alias for --disassemble"), 73 cl::aliasopt(Disassemble)); 74 75 cl::opt<bool> 76 llvm::DisassembleAll("disassemble-all", 77 cl::desc("Display assembler mnemonics for the machine instructions")); 78 static cl::alias 79 DisassembleAlld("D", cl::desc("Alias for --disassemble-all"), 80 cl::aliasopt(DisassembleAll)); 81 82 cl::opt<bool> 83 llvm::Relocations("r", cl::desc("Display the relocation entries in the file")); 84 85 cl::opt<bool> 86 llvm::SectionContents("s", cl::desc("Display the content of each section")); 87 88 cl::opt<bool> 89 llvm::SymbolTable("t", cl::desc("Display the symbol table")); 90 91 cl::opt<bool> 92 llvm::ExportsTrie("exports-trie", cl::desc("Display mach-o exported symbols")); 93 94 cl::opt<bool> 95 llvm::Rebase("rebase", cl::desc("Display mach-o rebasing info")); 96 97 cl::opt<bool> 98 llvm::Bind("bind", cl::desc("Display mach-o binding info")); 99 100 cl::opt<bool> 101 llvm::LazyBind("lazy-bind", cl::desc("Display mach-o lazy binding info")); 102 103 cl::opt<bool> 104 llvm::WeakBind("weak-bind", cl::desc("Display mach-o weak binding info")); 105 106 cl::opt<bool> 107 llvm::RawClangAST("raw-clang-ast", 108 cl::desc("Dump the raw binary contents of the clang AST section")); 109 110 static cl::opt<bool> 111 MachOOpt("macho", cl::desc("Use MachO specific object file parser")); 112 static cl::alias 113 MachOm("m", cl::desc("Alias for --macho"), cl::aliasopt(MachOOpt)); 114 115 cl::opt<std::string> 116 llvm::TripleName("triple", cl::desc("Target triple to disassemble for, " 117 "see -version for available targets")); 118 119 cl::opt<std::string> 120 llvm::MCPU("mcpu", 121 cl::desc("Target a specific cpu type (-mcpu=help for details)"), 122 cl::value_desc("cpu-name"), 123 cl::init("")); 124 125 cl::opt<std::string> 126 llvm::ArchName("arch-name", cl::desc("Target arch to disassemble for, " 127 "see -version for available targets")); 128 129 cl::opt<bool> 130 llvm::SectionHeaders("section-headers", cl::desc("Display summaries of the " 131 "headers for each section.")); 132 static cl::alias 133 SectionHeadersShort("headers", cl::desc("Alias for --section-headers"), 134 cl::aliasopt(SectionHeaders)); 135 static cl::alias 136 SectionHeadersShorter("h", cl::desc("Alias for --section-headers"), 137 cl::aliasopt(SectionHeaders)); 138 139 cl::list<std::string> 140 llvm::FilterSections("section", cl::desc("Operate on the specified sections only. " 141 "With -macho dump segment,section")); 142 cl::alias 143 static FilterSectionsj("j", cl::desc("Alias for --section"), 144 cl::aliasopt(llvm::FilterSections)); 145 146 cl::list<std::string> 147 llvm::MAttrs("mattr", 148 cl::CommaSeparated, 149 cl::desc("Target specific attributes"), 150 cl::value_desc("a1,+a2,-a3,...")); 151 152 cl::opt<bool> 153 llvm::NoShowRawInsn("no-show-raw-insn", cl::desc("When disassembling " 154 "instructions, do not print " 155 "the instruction bytes.")); 156 157 cl::opt<bool> 158 llvm::UnwindInfo("unwind-info", cl::desc("Display unwind information")); 159 160 static cl::alias 161 UnwindInfoShort("u", cl::desc("Alias for --unwind-info"), 162 cl::aliasopt(UnwindInfo)); 163 164 cl::opt<bool> 165 llvm::PrivateHeaders("private-headers", 166 cl::desc("Display format specific file headers")); 167 168 static cl::alias 169 PrivateHeadersShort("p", cl::desc("Alias for --private-headers"), 170 cl::aliasopt(PrivateHeaders)); 171 172 cl::opt<bool> 173 llvm::PrintImmHex("print-imm-hex", 174 cl::desc("Use hex format for immediate values")); 175 176 cl::opt<bool> PrintFaultMaps("fault-map-section", 177 cl::desc("Display contents of faultmap section")); 178 179 static StringRef ToolName; 180 181 namespace { 182 typedef std::function<bool(llvm::object::SectionRef const &)> FilterPredicate; 183 184 class SectionFilterIterator { 185 public: 186 SectionFilterIterator(FilterPredicate P, 187 llvm::object::section_iterator const &I, 188 llvm::object::section_iterator const &E) 189 : Predicate(P), Iterator(I), End(E) { 190 ScanPredicate(); 191 } 192 llvm::object::SectionRef operator*() const { return *Iterator; } 193 SectionFilterIterator &operator++() { 194 ++Iterator; 195 ScanPredicate(); 196 return *this; 197 } 198 bool operator!=(SectionFilterIterator const &Other) const { 199 return Iterator != Other.Iterator; 200 } 201 202 private: 203 void ScanPredicate() { 204 while (Iterator != End && !Predicate(*Iterator)) { 205 ++Iterator; 206 } 207 } 208 FilterPredicate Predicate; 209 llvm::object::section_iterator Iterator; 210 llvm::object::section_iterator End; 211 }; 212 213 class SectionFilter { 214 public: 215 SectionFilter(FilterPredicate P, llvm::object::ObjectFile const &O) 216 : Predicate(P), Object(O) {} 217 SectionFilterIterator begin() { 218 return SectionFilterIterator(Predicate, Object.section_begin(), 219 Object.section_end()); 220 } 221 SectionFilterIterator end() { 222 return SectionFilterIterator(Predicate, Object.section_end(), 223 Object.section_end()); 224 } 225 226 private: 227 FilterPredicate Predicate; 228 llvm::object::ObjectFile const &Object; 229 }; 230 SectionFilter ToolSectionFilter(llvm::object::ObjectFile const &O) { 231 return SectionFilter([](llvm::object::SectionRef const &S) { 232 if(FilterSections.empty()) 233 return true; 234 llvm::StringRef String; 235 std::error_code error = S.getName(String); 236 if (error) 237 return false; 238 return std::find(FilterSections.begin(), 239 FilterSections.end(), 240 String) != FilterSections.end(); 241 }, 242 O); 243 } 244 } 245 246 void llvm::error(std::error_code EC) { 247 if (!EC) 248 return; 249 250 outs() << ToolName << ": error reading file: " << EC.message() << ".\n"; 251 outs().flush(); 252 exit(1); 253 } 254 255 static void report_error(StringRef File, std::error_code EC) { 256 assert(EC); 257 errs() << ToolName << ": '" << File << "': " << EC.message() << ".\n"; 258 exit(1); 259 } 260 261 static const Target *getTarget(const ObjectFile *Obj = nullptr) { 262 // Figure out the target triple. 263 llvm::Triple TheTriple("unknown-unknown-unknown"); 264 if (TripleName.empty()) { 265 if (Obj) { 266 TheTriple.setArch(Triple::ArchType(Obj->getArch())); 267 // TheTriple defaults to ELF, and COFF doesn't have an environment: 268 // the best we can do here is indicate that it is mach-o. 269 if (Obj->isMachO()) 270 TheTriple.setObjectFormat(Triple::MachO); 271 272 if (Obj->isCOFF()) { 273 const auto COFFObj = dyn_cast<COFFObjectFile>(Obj); 274 if (COFFObj->getArch() == Triple::thumb) 275 TheTriple.setTriple("thumbv7-windows"); 276 } 277 } 278 } else 279 TheTriple.setTriple(Triple::normalize(TripleName)); 280 281 // Get the target specific parser. 282 std::string Error; 283 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, 284 Error); 285 if (!TheTarget) { 286 errs() << ToolName << ": " << Error; 287 return nullptr; 288 } 289 290 // Update the triple name and return the found target. 291 TripleName = TheTriple.getTriple(); 292 return TheTarget; 293 } 294 295 bool llvm::RelocAddressLess(RelocationRef a, RelocationRef b) { 296 return a.getOffset() < b.getOffset(); 297 } 298 299 namespace { 300 class PrettyPrinter { 301 public: 302 virtual ~PrettyPrinter(){} 303 virtual void printInst(MCInstPrinter &IP, const MCInst *MI, 304 ArrayRef<uint8_t> Bytes, uint64_t Address, 305 raw_ostream &OS, StringRef Annot, 306 MCSubtargetInfo const &STI) { 307 outs() << format("%8" PRIx64 ":", Address); 308 if (!NoShowRawInsn) { 309 outs() << "\t"; 310 dumpBytes(Bytes, outs()); 311 } 312 IP.printInst(MI, outs(), "", STI); 313 } 314 }; 315 PrettyPrinter PrettyPrinterInst; 316 class HexagonPrettyPrinter : public PrettyPrinter { 317 public: 318 void printLead(ArrayRef<uint8_t> Bytes, uint64_t Address, 319 raw_ostream &OS) { 320 uint32_t opcode = 321 (Bytes[3] << 24) | (Bytes[2] << 16) | (Bytes[1] << 8) | Bytes[0]; 322 OS << format("%8" PRIx64 ":", Address); 323 if (!NoShowRawInsn) { 324 OS << "\t"; 325 dumpBytes(Bytes.slice(0, 4), OS); 326 OS << format("%08" PRIx32, opcode); 327 } 328 } 329 void printInst(MCInstPrinter &IP, const MCInst *MI, 330 ArrayRef<uint8_t> Bytes, uint64_t Address, 331 raw_ostream &OS, StringRef Annot, 332 MCSubtargetInfo const &STI) override { 333 std::string Buffer; 334 { 335 raw_string_ostream TempStream(Buffer); 336 IP.printInst(MI, TempStream, "", STI); 337 } 338 StringRef Contents(Buffer); 339 // Split off bundle attributes 340 auto PacketBundle = Contents.rsplit('\n'); 341 // Split off first instruction from the rest 342 auto HeadTail = PacketBundle.first.split('\n'); 343 auto Preamble = " { "; 344 auto Separator = ""; 345 while(!HeadTail.first.empty()) { 346 OS << Separator; 347 Separator = "\n"; 348 printLead(Bytes, Address, OS); 349 OS << Preamble; 350 Preamble = " "; 351 StringRef Inst; 352 auto Duplex = HeadTail.first.split('\v'); 353 if(!Duplex.second.empty()){ 354 OS << Duplex.first; 355 OS << "; "; 356 Inst = Duplex.second; 357 } 358 else 359 Inst = HeadTail.first; 360 OS << Inst; 361 Bytes = Bytes.slice(4); 362 Address += 4; 363 HeadTail = HeadTail.second.split('\n'); 364 } 365 OS << " } " << PacketBundle.second; 366 } 367 }; 368 HexagonPrettyPrinter HexagonPrettyPrinterInst; 369 PrettyPrinter &selectPrettyPrinter(Triple const &Triple) { 370 switch(Triple.getArch()) { 371 default: 372 return PrettyPrinterInst; 373 case Triple::hexagon: 374 return HexagonPrettyPrinterInst; 375 } 376 } 377 } 378 379 template <class ELFT> 380 static std::error_code getRelocationValueString(const ELFObjectFile<ELFT> *Obj, 381 const RelocationRef &RelRef, 382 SmallVectorImpl<char> &Result) { 383 DataRefImpl Rel = RelRef.getRawDataRefImpl(); 384 385 typedef typename ELFObjectFile<ELFT>::Elf_Sym Elf_Sym; 386 typedef typename ELFObjectFile<ELFT>::Elf_Shdr Elf_Shdr; 387 typedef typename ELFObjectFile<ELFT>::Elf_Rela Elf_Rela; 388 389 const ELFFile<ELFT> &EF = *Obj->getELFFile(); 390 391 ErrorOr<const Elf_Shdr *> SecOrErr = EF.getSection(Rel.d.a); 392 if (std::error_code EC = SecOrErr.getError()) 393 return EC; 394 const Elf_Shdr *Sec = *SecOrErr; 395 ErrorOr<const Elf_Shdr *> SymTabOrErr = EF.getSection(Sec->sh_link); 396 if (std::error_code EC = SymTabOrErr.getError()) 397 return EC; 398 const Elf_Shdr *SymTab = *SymTabOrErr; 399 assert(SymTab->sh_type == ELF::SHT_SYMTAB || 400 SymTab->sh_type == ELF::SHT_DYNSYM); 401 ErrorOr<const Elf_Shdr *> StrTabSec = EF.getSection(SymTab->sh_link); 402 if (std::error_code EC = StrTabSec.getError()) 403 return EC; 404 ErrorOr<StringRef> StrTabOrErr = EF.getStringTable(*StrTabSec); 405 if (std::error_code EC = StrTabOrErr.getError()) 406 return EC; 407 StringRef StrTab = *StrTabOrErr; 408 uint8_t type = RelRef.getType(); 409 StringRef res; 410 int64_t addend = 0; 411 switch (Sec->sh_type) { 412 default: 413 return object_error::parse_failed; 414 case ELF::SHT_REL: { 415 // TODO: Read implicit addend from section data. 416 break; 417 } 418 case ELF::SHT_RELA: { 419 const Elf_Rela *ERela = Obj->getRela(Rel); 420 addend = ERela->r_addend; 421 break; 422 } 423 } 424 symbol_iterator SI = RelRef.getSymbol(); 425 const Elf_Sym *symb = Obj->getSymbol(SI->getRawDataRefImpl()); 426 StringRef Target; 427 if (symb->getType() == ELF::STT_SECTION) { 428 ErrorOr<section_iterator> SymSI = SI->getSection(); 429 if (std::error_code EC = SymSI.getError()) 430 return EC; 431 const Elf_Shdr *SymSec = Obj->getSection((*SymSI)->getRawDataRefImpl()); 432 ErrorOr<StringRef> SecName = EF.getSectionName(SymSec); 433 if (std::error_code EC = SecName.getError()) 434 return EC; 435 Target = *SecName; 436 } else { 437 ErrorOr<StringRef> SymName = symb->getName(StrTab); 438 if (!SymName) 439 return SymName.getError(); 440 Target = *SymName; 441 } 442 switch (EF.getHeader()->e_machine) { 443 case ELF::EM_X86_64: 444 switch (type) { 445 case ELF::R_X86_64_PC8: 446 case ELF::R_X86_64_PC16: 447 case ELF::R_X86_64_PC32: { 448 std::string fmtbuf; 449 raw_string_ostream fmt(fmtbuf); 450 fmt << Target << (addend < 0 ? "" : "+") << addend << "-P"; 451 fmt.flush(); 452 Result.append(fmtbuf.begin(), fmtbuf.end()); 453 } break; 454 case ELF::R_X86_64_8: 455 case ELF::R_X86_64_16: 456 case ELF::R_X86_64_32: 457 case ELF::R_X86_64_32S: 458 case ELF::R_X86_64_64: { 459 std::string fmtbuf; 460 raw_string_ostream fmt(fmtbuf); 461 fmt << Target << (addend < 0 ? "" : "+") << addend; 462 fmt.flush(); 463 Result.append(fmtbuf.begin(), fmtbuf.end()); 464 } break; 465 default: 466 res = "Unknown"; 467 } 468 break; 469 case ELF::EM_AARCH64: { 470 std::string fmtbuf; 471 raw_string_ostream fmt(fmtbuf); 472 fmt << Target; 473 if (addend != 0) 474 fmt << (addend < 0 ? "" : "+") << addend; 475 fmt.flush(); 476 Result.append(fmtbuf.begin(), fmtbuf.end()); 477 break; 478 } 479 case ELF::EM_386: 480 case ELF::EM_ARM: 481 case ELF::EM_HEXAGON: 482 case ELF::EM_MIPS: 483 res = Target; 484 break; 485 default: 486 res = "Unknown"; 487 } 488 if (Result.empty()) 489 Result.append(res.begin(), res.end()); 490 return std::error_code(); 491 } 492 493 static std::error_code getRelocationValueString(const ELFObjectFileBase *Obj, 494 const RelocationRef &Rel, 495 SmallVectorImpl<char> &Result) { 496 if (auto *ELF32LE = dyn_cast<ELF32LEObjectFile>(Obj)) 497 return getRelocationValueString(ELF32LE, Rel, Result); 498 if (auto *ELF64LE = dyn_cast<ELF64LEObjectFile>(Obj)) 499 return getRelocationValueString(ELF64LE, Rel, Result); 500 if (auto *ELF32BE = dyn_cast<ELF32BEObjectFile>(Obj)) 501 return getRelocationValueString(ELF32BE, Rel, Result); 502 auto *ELF64BE = cast<ELF64BEObjectFile>(Obj); 503 return getRelocationValueString(ELF64BE, Rel, Result); 504 } 505 506 static std::error_code getRelocationValueString(const COFFObjectFile *Obj, 507 const RelocationRef &Rel, 508 SmallVectorImpl<char> &Result) { 509 symbol_iterator SymI = Rel.getSymbol(); 510 ErrorOr<StringRef> SymNameOrErr = SymI->getName(); 511 if (std::error_code EC = SymNameOrErr.getError()) 512 return EC; 513 StringRef SymName = *SymNameOrErr; 514 Result.append(SymName.begin(), SymName.end()); 515 return std::error_code(); 516 } 517 518 static void printRelocationTargetName(const MachOObjectFile *O, 519 const MachO::any_relocation_info &RE, 520 raw_string_ostream &fmt) { 521 bool IsScattered = O->isRelocationScattered(RE); 522 523 // Target of a scattered relocation is an address. In the interest of 524 // generating pretty output, scan through the symbol table looking for a 525 // symbol that aligns with that address. If we find one, print it. 526 // Otherwise, we just print the hex address of the target. 527 if (IsScattered) { 528 uint32_t Val = O->getPlainRelocationSymbolNum(RE); 529 530 for (const SymbolRef &Symbol : O->symbols()) { 531 std::error_code ec; 532 ErrorOr<uint64_t> Addr = Symbol.getAddress(); 533 if ((ec = Addr.getError())) 534 report_fatal_error(ec.message()); 535 if (*Addr != Val) 536 continue; 537 ErrorOr<StringRef> Name = Symbol.getName(); 538 if (std::error_code EC = Name.getError()) 539 report_fatal_error(EC.message()); 540 fmt << *Name; 541 return; 542 } 543 544 // If we couldn't find a symbol that this relocation refers to, try 545 // to find a section beginning instead. 546 for (const SectionRef &Section : ToolSectionFilter(*O)) { 547 std::error_code ec; 548 549 StringRef Name; 550 uint64_t Addr = Section.getAddress(); 551 if (Addr != Val) 552 continue; 553 if ((ec = Section.getName(Name))) 554 report_fatal_error(ec.message()); 555 fmt << Name; 556 return; 557 } 558 559 fmt << format("0x%x", Val); 560 return; 561 } 562 563 StringRef S; 564 bool isExtern = O->getPlainRelocationExternal(RE); 565 uint64_t Val = O->getPlainRelocationSymbolNum(RE); 566 567 if (isExtern) { 568 symbol_iterator SI = O->symbol_begin(); 569 advance(SI, Val); 570 ErrorOr<StringRef> SOrErr = SI->getName(); 571 error(SOrErr.getError()); 572 S = *SOrErr; 573 } else { 574 section_iterator SI = O->section_begin(); 575 // Adjust for the fact that sections are 1-indexed. 576 advance(SI, Val - 1); 577 SI->getName(S); 578 } 579 580 fmt << S; 581 } 582 583 static std::error_code getRelocationValueString(const MachOObjectFile *Obj, 584 const RelocationRef &RelRef, 585 SmallVectorImpl<char> &Result) { 586 DataRefImpl Rel = RelRef.getRawDataRefImpl(); 587 MachO::any_relocation_info RE = Obj->getRelocation(Rel); 588 589 unsigned Arch = Obj->getArch(); 590 591 std::string fmtbuf; 592 raw_string_ostream fmt(fmtbuf); 593 unsigned Type = Obj->getAnyRelocationType(RE); 594 bool IsPCRel = Obj->getAnyRelocationPCRel(RE); 595 596 // Determine any addends that should be displayed with the relocation. 597 // These require decoding the relocation type, which is triple-specific. 598 599 // X86_64 has entirely custom relocation types. 600 if (Arch == Triple::x86_64) { 601 bool isPCRel = Obj->getAnyRelocationPCRel(RE); 602 603 switch (Type) { 604 case MachO::X86_64_RELOC_GOT_LOAD: 605 case MachO::X86_64_RELOC_GOT: { 606 printRelocationTargetName(Obj, RE, fmt); 607 fmt << "@GOT"; 608 if (isPCRel) 609 fmt << "PCREL"; 610 break; 611 } 612 case MachO::X86_64_RELOC_SUBTRACTOR: { 613 DataRefImpl RelNext = Rel; 614 Obj->moveRelocationNext(RelNext); 615 MachO::any_relocation_info RENext = Obj->getRelocation(RelNext); 616 617 // X86_64_RELOC_SUBTRACTOR must be followed by a relocation of type 618 // X86_64_RELOC_UNSIGNED. 619 // NOTE: Scattered relocations don't exist on x86_64. 620 unsigned RType = Obj->getAnyRelocationType(RENext); 621 if (RType != MachO::X86_64_RELOC_UNSIGNED) 622 report_fatal_error("Expected X86_64_RELOC_UNSIGNED after " 623 "X86_64_RELOC_SUBTRACTOR."); 624 625 // The X86_64_RELOC_UNSIGNED contains the minuend symbol; 626 // X86_64_RELOC_SUBTRACTOR contains the subtrahend. 627 printRelocationTargetName(Obj, RENext, fmt); 628 fmt << "-"; 629 printRelocationTargetName(Obj, RE, fmt); 630 break; 631 } 632 case MachO::X86_64_RELOC_TLV: 633 printRelocationTargetName(Obj, RE, fmt); 634 fmt << "@TLV"; 635 if (isPCRel) 636 fmt << "P"; 637 break; 638 case MachO::X86_64_RELOC_SIGNED_1: 639 printRelocationTargetName(Obj, RE, fmt); 640 fmt << "-1"; 641 break; 642 case MachO::X86_64_RELOC_SIGNED_2: 643 printRelocationTargetName(Obj, RE, fmt); 644 fmt << "-2"; 645 break; 646 case MachO::X86_64_RELOC_SIGNED_4: 647 printRelocationTargetName(Obj, RE, fmt); 648 fmt << "-4"; 649 break; 650 default: 651 printRelocationTargetName(Obj, RE, fmt); 652 break; 653 } 654 // X86 and ARM share some relocation types in common. 655 } else if (Arch == Triple::x86 || Arch == Triple::arm || 656 Arch == Triple::ppc) { 657 // Generic relocation types... 658 switch (Type) { 659 case MachO::GENERIC_RELOC_PAIR: // prints no info 660 return std::error_code(); 661 case MachO::GENERIC_RELOC_SECTDIFF: { 662 DataRefImpl RelNext = Rel; 663 Obj->moveRelocationNext(RelNext); 664 MachO::any_relocation_info RENext = Obj->getRelocation(RelNext); 665 666 // X86 sect diff's must be followed by a relocation of type 667 // GENERIC_RELOC_PAIR. 668 unsigned RType = Obj->getAnyRelocationType(RENext); 669 670 if (RType != MachO::GENERIC_RELOC_PAIR) 671 report_fatal_error("Expected GENERIC_RELOC_PAIR after " 672 "GENERIC_RELOC_SECTDIFF."); 673 674 printRelocationTargetName(Obj, RE, fmt); 675 fmt << "-"; 676 printRelocationTargetName(Obj, RENext, fmt); 677 break; 678 } 679 } 680 681 if (Arch == Triple::x86 || Arch == Triple::ppc) { 682 switch (Type) { 683 case MachO::GENERIC_RELOC_LOCAL_SECTDIFF: { 684 DataRefImpl RelNext = Rel; 685 Obj->moveRelocationNext(RelNext); 686 MachO::any_relocation_info RENext = Obj->getRelocation(RelNext); 687 688 // X86 sect diff's must be followed by a relocation of type 689 // GENERIC_RELOC_PAIR. 690 unsigned RType = Obj->getAnyRelocationType(RENext); 691 if (RType != MachO::GENERIC_RELOC_PAIR) 692 report_fatal_error("Expected GENERIC_RELOC_PAIR after " 693 "GENERIC_RELOC_LOCAL_SECTDIFF."); 694 695 printRelocationTargetName(Obj, RE, fmt); 696 fmt << "-"; 697 printRelocationTargetName(Obj, RENext, fmt); 698 break; 699 } 700 case MachO::GENERIC_RELOC_TLV: { 701 printRelocationTargetName(Obj, RE, fmt); 702 fmt << "@TLV"; 703 if (IsPCRel) 704 fmt << "P"; 705 break; 706 } 707 default: 708 printRelocationTargetName(Obj, RE, fmt); 709 } 710 } else { // ARM-specific relocations 711 switch (Type) { 712 case MachO::ARM_RELOC_HALF: 713 case MachO::ARM_RELOC_HALF_SECTDIFF: { 714 // Half relocations steal a bit from the length field to encode 715 // whether this is an upper16 or a lower16 relocation. 716 bool isUpper = Obj->getAnyRelocationLength(RE) >> 1; 717 718 if (isUpper) 719 fmt << ":upper16:("; 720 else 721 fmt << ":lower16:("; 722 printRelocationTargetName(Obj, RE, fmt); 723 724 DataRefImpl RelNext = Rel; 725 Obj->moveRelocationNext(RelNext); 726 MachO::any_relocation_info RENext = Obj->getRelocation(RelNext); 727 728 // ARM half relocs must be followed by a relocation of type 729 // ARM_RELOC_PAIR. 730 unsigned RType = Obj->getAnyRelocationType(RENext); 731 if (RType != MachO::ARM_RELOC_PAIR) 732 report_fatal_error("Expected ARM_RELOC_PAIR after " 733 "ARM_RELOC_HALF"); 734 735 // NOTE: The half of the target virtual address is stashed in the 736 // address field of the secondary relocation, but we can't reverse 737 // engineer the constant offset from it without decoding the movw/movt 738 // instruction to find the other half in its immediate field. 739 740 // ARM_RELOC_HALF_SECTDIFF encodes the second section in the 741 // symbol/section pointer of the follow-on relocation. 742 if (Type == MachO::ARM_RELOC_HALF_SECTDIFF) { 743 fmt << "-"; 744 printRelocationTargetName(Obj, RENext, fmt); 745 } 746 747 fmt << ")"; 748 break; 749 } 750 default: { printRelocationTargetName(Obj, RE, fmt); } 751 } 752 } 753 } else 754 printRelocationTargetName(Obj, RE, fmt); 755 756 fmt.flush(); 757 Result.append(fmtbuf.begin(), fmtbuf.end()); 758 return std::error_code(); 759 } 760 761 static std::error_code getRelocationValueString(const RelocationRef &Rel, 762 SmallVectorImpl<char> &Result) { 763 const ObjectFile *Obj = Rel.getObject(); 764 if (auto *ELF = dyn_cast<ELFObjectFileBase>(Obj)) 765 return getRelocationValueString(ELF, Rel, Result); 766 if (auto *COFF = dyn_cast<COFFObjectFile>(Obj)) 767 return getRelocationValueString(COFF, Rel, Result); 768 auto *MachO = cast<MachOObjectFile>(Obj); 769 return getRelocationValueString(MachO, Rel, Result); 770 } 771 772 /// @brief Indicates whether this relocation should hidden when listing 773 /// relocations, usually because it is the trailing part of a multipart 774 /// relocation that will be printed as part of the leading relocation. 775 static bool getHidden(RelocationRef RelRef) { 776 const ObjectFile *Obj = RelRef.getObject(); 777 auto *MachO = dyn_cast<MachOObjectFile>(Obj); 778 if (!MachO) 779 return false; 780 781 unsigned Arch = MachO->getArch(); 782 DataRefImpl Rel = RelRef.getRawDataRefImpl(); 783 uint64_t Type = MachO->getRelocationType(Rel); 784 785 // On arches that use the generic relocations, GENERIC_RELOC_PAIR 786 // is always hidden. 787 if (Arch == Triple::x86 || Arch == Triple::arm || Arch == Triple::ppc) { 788 if (Type == MachO::GENERIC_RELOC_PAIR) 789 return true; 790 } else if (Arch == Triple::x86_64) { 791 // On x86_64, X86_64_RELOC_UNSIGNED is hidden only when it follows 792 // an X86_64_RELOC_SUBTRACTOR. 793 if (Type == MachO::X86_64_RELOC_UNSIGNED && Rel.d.a > 0) { 794 DataRefImpl RelPrev = Rel; 795 RelPrev.d.a--; 796 uint64_t PrevType = MachO->getRelocationType(RelPrev); 797 if (PrevType == MachO::X86_64_RELOC_SUBTRACTOR) 798 return true; 799 } 800 } 801 802 return false; 803 } 804 805 static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) { 806 const Target *TheTarget = getTarget(Obj); 807 // getTarget() will have already issued a diagnostic if necessary, so 808 // just bail here if it failed. 809 if (!TheTarget) 810 return; 811 812 // Package up features to be passed to target/subtarget 813 std::string FeaturesStr; 814 if (MAttrs.size()) { 815 SubtargetFeatures Features; 816 for (unsigned i = 0; i != MAttrs.size(); ++i) 817 Features.AddFeature(MAttrs[i]); 818 FeaturesStr = Features.getString(); 819 } 820 821 std::unique_ptr<const MCRegisterInfo> MRI( 822 TheTarget->createMCRegInfo(TripleName)); 823 if (!MRI) { 824 errs() << "error: no register info for target " << TripleName << "\n"; 825 return; 826 } 827 828 // Set up disassembler. 829 std::unique_ptr<const MCAsmInfo> AsmInfo( 830 TheTarget->createMCAsmInfo(*MRI, TripleName)); 831 if (!AsmInfo) { 832 errs() << "error: no assembly info for target " << TripleName << "\n"; 833 return; 834 } 835 836 std::unique_ptr<const MCSubtargetInfo> STI( 837 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr)); 838 if (!STI) { 839 errs() << "error: no subtarget info for target " << TripleName << "\n"; 840 return; 841 } 842 843 std::unique_ptr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo()); 844 if (!MII) { 845 errs() << "error: no instruction info for target " << TripleName << "\n"; 846 return; 847 } 848 849 std::unique_ptr<const MCObjectFileInfo> MOFI(new MCObjectFileInfo); 850 MCContext Ctx(AsmInfo.get(), MRI.get(), MOFI.get()); 851 852 std::unique_ptr<MCDisassembler> DisAsm( 853 TheTarget->createMCDisassembler(*STI, Ctx)); 854 855 if (!DisAsm) { 856 errs() << "error: no disassembler for target " << TripleName << "\n"; 857 return; 858 } 859 860 std::unique_ptr<const MCInstrAnalysis> MIA( 861 TheTarget->createMCInstrAnalysis(MII.get())); 862 863 int AsmPrinterVariant = AsmInfo->getAssemblerDialect(); 864 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter( 865 Triple(TripleName), AsmPrinterVariant, *AsmInfo, *MII, *MRI)); 866 if (!IP) { 867 errs() << "error: no instruction printer for target " << TripleName 868 << '\n'; 869 return; 870 } 871 IP->setPrintImmHex(PrintImmHex); 872 PrettyPrinter &PIP = selectPrettyPrinter(Triple(TripleName)); 873 874 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "\t\t%016" PRIx64 ": " : 875 "\t\t\t%08" PRIx64 ": "; 876 877 // Create a mapping, RelocSecs = SectionRelocMap[S], where sections 878 // in RelocSecs contain the relocations for section S. 879 std::error_code EC; 880 std::map<SectionRef, SmallVector<SectionRef, 1>> SectionRelocMap; 881 for (const SectionRef &Section : ToolSectionFilter(*Obj)) { 882 section_iterator Sec2 = Section.getRelocatedSection(); 883 if (Sec2 != Obj->section_end()) 884 SectionRelocMap[*Sec2].push_back(Section); 885 } 886 887 // Create a mapping from virtual address to symbol name. This is used to 888 // pretty print the target of a call. 889 std::vector<std::pair<uint64_t, StringRef>> AllSymbols; 890 if (MIA) { 891 for (const SymbolRef &Symbol : Obj->symbols()) { 892 if (Symbol.getType() != SymbolRef::ST_Function) 893 continue; 894 895 ErrorOr<uint64_t> AddressOrErr = Symbol.getAddress(); 896 error(AddressOrErr.getError()); 897 uint64_t Address = *AddressOrErr; 898 899 ErrorOr<StringRef> Name = Symbol.getName(); 900 error(Name.getError()); 901 if (Name->empty()) 902 continue; 903 AllSymbols.push_back(std::make_pair(Address, *Name)); 904 } 905 906 array_pod_sort(AllSymbols.begin(), AllSymbols.end()); 907 } 908 909 for (const SectionRef &Section : ToolSectionFilter(*Obj)) { 910 if (!DisassembleAll && (!Section.isText() || Section.isVirtual())) 911 continue; 912 913 uint64_t SectionAddr = Section.getAddress(); 914 uint64_t SectSize = Section.getSize(); 915 if (!SectSize) 916 continue; 917 918 // Make a list of all the symbols in this section. 919 std::vector<std::pair<uint64_t, StringRef>> Symbols; 920 for (const SymbolRef &Symbol : Obj->symbols()) { 921 if (Section.containsSymbol(Symbol)) { 922 ErrorOr<uint64_t> AddressOrErr = Symbol.getAddress(); 923 error(AddressOrErr.getError()); 924 uint64_t Address = *AddressOrErr; 925 Address -= SectionAddr; 926 if (Address >= SectSize) 927 continue; 928 929 ErrorOr<StringRef> Name = Symbol.getName(); 930 error(Name.getError()); 931 Symbols.push_back(std::make_pair(Address, *Name)); 932 } 933 } 934 935 // Sort the symbols by address, just in case they didn't come in that way. 936 array_pod_sort(Symbols.begin(), Symbols.end()); 937 938 // Make a list of all the relocations for this section. 939 std::vector<RelocationRef> Rels; 940 if (InlineRelocs) { 941 for (const SectionRef &RelocSec : SectionRelocMap[Section]) { 942 for (const RelocationRef &Reloc : RelocSec.relocations()) { 943 Rels.push_back(Reloc); 944 } 945 } 946 } 947 948 // Sort relocations by address. 949 std::sort(Rels.begin(), Rels.end(), RelocAddressLess); 950 951 StringRef SegmentName = ""; 952 if (const MachOObjectFile *MachO = dyn_cast<const MachOObjectFile>(Obj)) { 953 DataRefImpl DR = Section.getRawDataRefImpl(); 954 SegmentName = MachO->getSectionFinalSegmentName(DR); 955 } 956 StringRef name; 957 error(Section.getName(name)); 958 outs() << "Disassembly of section "; 959 if (!SegmentName.empty()) 960 outs() << SegmentName << ","; 961 outs() << name << ':'; 962 963 // If the section has no symbol at the start, just insert a dummy one. 964 if (Symbols.empty() || Symbols[0].first != 0) 965 Symbols.insert(Symbols.begin(), std::make_pair(0, name)); 966 967 SmallString<40> Comments; 968 raw_svector_ostream CommentStream(Comments); 969 970 StringRef BytesStr; 971 error(Section.getContents(BytesStr)); 972 ArrayRef<uint8_t> Bytes(reinterpret_cast<const uint8_t *>(BytesStr.data()), 973 BytesStr.size()); 974 975 uint64_t Size; 976 uint64_t Index; 977 978 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin(); 979 std::vector<RelocationRef>::const_iterator rel_end = Rels.end(); 980 // Disassemble symbol by symbol. 981 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) { 982 983 uint64_t Start = Symbols[si].first; 984 // The end is either the section end or the beginning of the next symbol. 985 uint64_t End = (si == se - 1) ? SectSize : Symbols[si + 1].first; 986 // If this symbol has the same address as the next symbol, then skip it. 987 if (Start == End) 988 continue; 989 990 outs() << '\n' << Symbols[si].second << ":\n"; 991 992 #ifndef NDEBUG 993 raw_ostream &DebugOut = DebugFlag ? dbgs() : nulls(); 994 #else 995 raw_ostream &DebugOut = nulls(); 996 #endif 997 998 for (Index = Start; Index < End; Index += Size) { 999 MCInst Inst; 1000 1001 if (DisAsm->getInstruction(Inst, Size, Bytes.slice(Index), 1002 SectionAddr + Index, DebugOut, 1003 CommentStream)) { 1004 PIP.printInst(*IP, &Inst, 1005 Bytes.slice(Index, Size), 1006 SectionAddr + Index, outs(), "", *STI); 1007 outs() << CommentStream.str(); 1008 Comments.clear(); 1009 if (MIA && (MIA->isCall(Inst) || MIA->isUnconditionalBranch(Inst) || 1010 MIA->isConditionalBranch(Inst))) { 1011 uint64_t Target; 1012 if (MIA->evaluateBranch(Inst, SectionAddr + Index, Size, Target)) { 1013 auto TargetSym = std::upper_bound( 1014 AllSymbols.begin(), AllSymbols.end(), Target, 1015 [](uint64_t LHS, const std::pair<uint64_t, StringRef> &RHS) { 1016 return LHS < RHS.first; 1017 }); 1018 if (TargetSym != AllSymbols.begin()) 1019 --TargetSym; 1020 else 1021 TargetSym = AllSymbols.end(); 1022 1023 if (TargetSym != AllSymbols.end()) { 1024 outs() << " <" << TargetSym->second; 1025 uint64_t Disp = Target - TargetSym->first; 1026 if (Disp) 1027 outs() << '+' << utohexstr(Disp); 1028 outs() << '>'; 1029 } 1030 } 1031 } 1032 outs() << "\n"; 1033 } else { 1034 errs() << ToolName << ": warning: invalid instruction encoding\n"; 1035 if (Size == 0) 1036 Size = 1; // skip illegible bytes 1037 } 1038 1039 // Print relocation for instruction. 1040 while (rel_cur != rel_end) { 1041 bool hidden = getHidden(*rel_cur); 1042 uint64_t addr = rel_cur->getOffset(); 1043 SmallString<16> name; 1044 SmallString<32> val; 1045 1046 // If this relocation is hidden, skip it. 1047 if (hidden) goto skip_print_rel; 1048 1049 // Stop when rel_cur's address is past the current instruction. 1050 if (addr >= Index + Size) break; 1051 rel_cur->getTypeName(name); 1052 error(getRelocationValueString(*rel_cur, val)); 1053 outs() << format(Fmt.data(), SectionAddr + addr) << name 1054 << "\t" << val << "\n"; 1055 1056 skip_print_rel: 1057 ++rel_cur; 1058 } 1059 } 1060 } 1061 } 1062 } 1063 1064 void llvm::PrintRelocations(const ObjectFile *Obj) { 1065 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "%016" PRIx64 : 1066 "%08" PRIx64; 1067 // Regular objdump doesn't print relocations in non-relocatable object 1068 // files. 1069 if (!Obj->isRelocatableObject()) 1070 return; 1071 1072 for (const SectionRef &Section : ToolSectionFilter(*Obj)) { 1073 if (Section.relocation_begin() == Section.relocation_end()) 1074 continue; 1075 StringRef secname; 1076 error(Section.getName(secname)); 1077 outs() << "RELOCATION RECORDS FOR [" << secname << "]:\n"; 1078 for (const RelocationRef &Reloc : Section.relocations()) { 1079 bool hidden = getHidden(Reloc); 1080 uint64_t address = Reloc.getOffset(); 1081 SmallString<32> relocname; 1082 SmallString<32> valuestr; 1083 if (hidden) 1084 continue; 1085 Reloc.getTypeName(relocname); 1086 error(getRelocationValueString(Reloc, valuestr)); 1087 outs() << format(Fmt.data(), address) << " " << relocname << " " 1088 << valuestr << "\n"; 1089 } 1090 outs() << "\n"; 1091 } 1092 } 1093 1094 void llvm::PrintSectionHeaders(const ObjectFile *Obj) { 1095 outs() << "Sections:\n" 1096 "Idx Name Size Address Type\n"; 1097 unsigned i = 0; 1098 for (const SectionRef &Section : ToolSectionFilter(*Obj)) { 1099 StringRef Name; 1100 error(Section.getName(Name)); 1101 uint64_t Address = Section.getAddress(); 1102 uint64_t Size = Section.getSize(); 1103 bool Text = Section.isText(); 1104 bool Data = Section.isData(); 1105 bool BSS = Section.isBSS(); 1106 std::string Type = (std::string(Text ? "TEXT " : "") + 1107 (Data ? "DATA " : "") + (BSS ? "BSS" : "")); 1108 outs() << format("%3d %-13s %08" PRIx64 " %016" PRIx64 " %s\n", i, 1109 Name.str().c_str(), Size, Address, Type.c_str()); 1110 ++i; 1111 } 1112 } 1113 1114 void llvm::PrintSectionContents(const ObjectFile *Obj) { 1115 std::error_code EC; 1116 for (const SectionRef &Section : ToolSectionFilter(*Obj)) { 1117 StringRef Name; 1118 StringRef Contents; 1119 error(Section.getName(Name)); 1120 uint64_t BaseAddr = Section.getAddress(); 1121 uint64_t Size = Section.getSize(); 1122 if (!Size) 1123 continue; 1124 1125 outs() << "Contents of section " << Name << ":\n"; 1126 if (Section.isBSS()) { 1127 outs() << format("<skipping contents of bss section at [%04" PRIx64 1128 ", %04" PRIx64 ")>\n", 1129 BaseAddr, BaseAddr + Size); 1130 continue; 1131 } 1132 1133 error(Section.getContents(Contents)); 1134 1135 // Dump out the content as hex and printable ascii characters. 1136 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) { 1137 outs() << format(" %04" PRIx64 " ", BaseAddr + addr); 1138 // Dump line of hex. 1139 for (std::size_t i = 0; i < 16; ++i) { 1140 if (i != 0 && i % 4 == 0) 1141 outs() << ' '; 1142 if (addr + i < end) 1143 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true) 1144 << hexdigit(Contents[addr + i] & 0xF, true); 1145 else 1146 outs() << " "; 1147 } 1148 // Print ascii. 1149 outs() << " "; 1150 for (std::size_t i = 0; i < 16 && addr + i < end; ++i) { 1151 if (std::isprint(static_cast<unsigned char>(Contents[addr + i]) & 0xFF)) 1152 outs() << Contents[addr + i]; 1153 else 1154 outs() << "."; 1155 } 1156 outs() << "\n"; 1157 } 1158 } 1159 } 1160 1161 static void PrintCOFFSymbolTable(const COFFObjectFile *coff) { 1162 for (unsigned SI = 0, SE = coff->getNumberOfSymbols(); SI != SE; ++SI) { 1163 ErrorOr<COFFSymbolRef> Symbol = coff->getSymbol(SI); 1164 StringRef Name; 1165 error(Symbol.getError()); 1166 error(coff->getSymbolName(*Symbol, Name)); 1167 1168 outs() << "[" << format("%2d", SI) << "]" 1169 << "(sec " << format("%2d", int(Symbol->getSectionNumber())) << ")" 1170 << "(fl 0x00)" // Flag bits, which COFF doesn't have. 1171 << "(ty " << format("%3x", unsigned(Symbol->getType())) << ")" 1172 << "(scl " << format("%3x", unsigned(Symbol->getStorageClass())) << ") " 1173 << "(nx " << unsigned(Symbol->getNumberOfAuxSymbols()) << ") " 1174 << "0x" << format("%08x", unsigned(Symbol->getValue())) << " " 1175 << Name << "\n"; 1176 1177 for (unsigned AI = 0, AE = Symbol->getNumberOfAuxSymbols(); AI < AE; ++AI, ++SI) { 1178 if (Symbol->isSectionDefinition()) { 1179 const coff_aux_section_definition *asd; 1180 error(coff->getAuxSymbol<coff_aux_section_definition>(SI + 1, asd)); 1181 1182 int32_t AuxNumber = asd->getNumber(Symbol->isBigObj()); 1183 1184 outs() << "AUX " 1185 << format("scnlen 0x%x nreloc %d nlnno %d checksum 0x%x " 1186 , unsigned(asd->Length) 1187 , unsigned(asd->NumberOfRelocations) 1188 , unsigned(asd->NumberOfLinenumbers) 1189 , unsigned(asd->CheckSum)) 1190 << format("assoc %d comdat %d\n" 1191 , unsigned(AuxNumber) 1192 , unsigned(asd->Selection)); 1193 } else if (Symbol->isFileRecord()) { 1194 const char *FileName; 1195 error(coff->getAuxSymbol<char>(SI + 1, FileName)); 1196 1197 StringRef Name(FileName, Symbol->getNumberOfAuxSymbols() * 1198 coff->getSymbolTableEntrySize()); 1199 outs() << "AUX " << Name.rtrim(StringRef("\0", 1)) << '\n'; 1200 1201 SI = SI + Symbol->getNumberOfAuxSymbols(); 1202 break; 1203 } else { 1204 outs() << "AUX Unknown\n"; 1205 } 1206 } 1207 } 1208 } 1209 1210 void llvm::PrintSymbolTable(const ObjectFile *o) { 1211 outs() << "SYMBOL TABLE:\n"; 1212 1213 if (const COFFObjectFile *coff = dyn_cast<const COFFObjectFile>(o)) { 1214 PrintCOFFSymbolTable(coff); 1215 return; 1216 } 1217 for (const SymbolRef &Symbol : o->symbols()) { 1218 ErrorOr<uint64_t> AddressOrError = Symbol.getAddress(); 1219 error(AddressOrError.getError()); 1220 uint64_t Address = *AddressOrError; 1221 SymbolRef::Type Type = Symbol.getType(); 1222 uint32_t Flags = Symbol.getFlags(); 1223 ErrorOr<section_iterator> SectionOrErr = Symbol.getSection(); 1224 error(SectionOrErr.getError()); 1225 section_iterator Section = *SectionOrErr; 1226 StringRef Name; 1227 if (Type == SymbolRef::ST_Debug && Section != o->section_end()) { 1228 Section->getName(Name); 1229 } else { 1230 ErrorOr<StringRef> NameOrErr = Symbol.getName(); 1231 error(NameOrErr.getError()); 1232 Name = *NameOrErr; 1233 } 1234 1235 bool Global = Flags & SymbolRef::SF_Global; 1236 bool Weak = Flags & SymbolRef::SF_Weak; 1237 bool Absolute = Flags & SymbolRef::SF_Absolute; 1238 bool Common = Flags & SymbolRef::SF_Common; 1239 bool Hidden = Flags & SymbolRef::SF_Hidden; 1240 1241 char GlobLoc = ' '; 1242 if (Type != SymbolRef::ST_Unknown) 1243 GlobLoc = Global ? 'g' : 'l'; 1244 char Debug = (Type == SymbolRef::ST_Debug || Type == SymbolRef::ST_File) 1245 ? 'd' : ' '; 1246 char FileFunc = ' '; 1247 if (Type == SymbolRef::ST_File) 1248 FileFunc = 'f'; 1249 else if (Type == SymbolRef::ST_Function) 1250 FileFunc = 'F'; 1251 1252 const char *Fmt = o->getBytesInAddress() > 4 ? "%016" PRIx64 : 1253 "%08" PRIx64; 1254 1255 outs() << format(Fmt, Address) << " " 1256 << GlobLoc // Local -> 'l', Global -> 'g', Neither -> ' ' 1257 << (Weak ? 'w' : ' ') // Weak? 1258 << ' ' // Constructor. Not supported yet. 1259 << ' ' // Warning. Not supported yet. 1260 << ' ' // Indirect reference to another symbol. 1261 << Debug // Debugging (d) or dynamic (D) symbol. 1262 << FileFunc // Name of function (F), file (f) or object (O). 1263 << ' '; 1264 if (Absolute) { 1265 outs() << "*ABS*"; 1266 } else if (Common) { 1267 outs() << "*COM*"; 1268 } else if (Section == o->section_end()) { 1269 outs() << "*UND*"; 1270 } else { 1271 if (const MachOObjectFile *MachO = 1272 dyn_cast<const MachOObjectFile>(o)) { 1273 DataRefImpl DR = Section->getRawDataRefImpl(); 1274 StringRef SegmentName = MachO->getSectionFinalSegmentName(DR); 1275 outs() << SegmentName << ","; 1276 } 1277 StringRef SectionName; 1278 error(Section->getName(SectionName)); 1279 outs() << SectionName; 1280 } 1281 1282 outs() << '\t'; 1283 if (Common || isa<ELFObjectFileBase>(o)) { 1284 uint64_t Val = 1285 Common ? Symbol.getAlignment() : ELFSymbolRef(Symbol).getSize(); 1286 outs() << format("\t %08" PRIx64 " ", Val); 1287 } 1288 1289 if (Hidden) { 1290 outs() << ".hidden "; 1291 } 1292 outs() << Name 1293 << '\n'; 1294 } 1295 } 1296 1297 static void PrintUnwindInfo(const ObjectFile *o) { 1298 outs() << "Unwind info:\n\n"; 1299 1300 if (const COFFObjectFile *coff = dyn_cast<COFFObjectFile>(o)) { 1301 printCOFFUnwindInfo(coff); 1302 } else if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o)) 1303 printMachOUnwindInfo(MachO); 1304 else { 1305 // TODO: Extract DWARF dump tool to objdump. 1306 errs() << "This operation is only currently supported " 1307 "for COFF and MachO object files.\n"; 1308 return; 1309 } 1310 } 1311 1312 void llvm::printExportsTrie(const ObjectFile *o) { 1313 outs() << "Exports trie:\n"; 1314 if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o)) 1315 printMachOExportsTrie(MachO); 1316 else { 1317 errs() << "This operation is only currently supported " 1318 "for Mach-O executable files.\n"; 1319 return; 1320 } 1321 } 1322 1323 void llvm::printRebaseTable(const ObjectFile *o) { 1324 outs() << "Rebase table:\n"; 1325 if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o)) 1326 printMachORebaseTable(MachO); 1327 else { 1328 errs() << "This operation is only currently supported " 1329 "for Mach-O executable files.\n"; 1330 return; 1331 } 1332 } 1333 1334 void llvm::printBindTable(const ObjectFile *o) { 1335 outs() << "Bind table:\n"; 1336 if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o)) 1337 printMachOBindTable(MachO); 1338 else { 1339 errs() << "This operation is only currently supported " 1340 "for Mach-O executable files.\n"; 1341 return; 1342 } 1343 } 1344 1345 void llvm::printLazyBindTable(const ObjectFile *o) { 1346 outs() << "Lazy bind table:\n"; 1347 if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o)) 1348 printMachOLazyBindTable(MachO); 1349 else { 1350 errs() << "This operation is only currently supported " 1351 "for Mach-O executable files.\n"; 1352 return; 1353 } 1354 } 1355 1356 void llvm::printWeakBindTable(const ObjectFile *o) { 1357 outs() << "Weak bind table:\n"; 1358 if (const MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(o)) 1359 printMachOWeakBindTable(MachO); 1360 else { 1361 errs() << "This operation is only currently supported " 1362 "for Mach-O executable files.\n"; 1363 return; 1364 } 1365 } 1366 1367 /// Dump the raw contents of the __clangast section so the output can be piped 1368 /// into llvm-bcanalyzer. 1369 void llvm::printRawClangAST(const ObjectFile *Obj) { 1370 if (outs().is_displayed()) { 1371 errs() << "The -raw-clang-ast option will dump the raw binary contents of " 1372 "the clang ast section.\n" 1373 "Please redirect the output to a file or another program such as " 1374 "llvm-bcanalyzer.\n"; 1375 return; 1376 } 1377 1378 StringRef ClangASTSectionName("__clangast"); 1379 if (isa<COFFObjectFile>(Obj)) { 1380 ClangASTSectionName = "clangast"; 1381 } 1382 1383 Optional<object::SectionRef> ClangASTSection; 1384 for (auto Sec : ToolSectionFilter(*Obj)) { 1385 StringRef Name; 1386 Sec.getName(Name); 1387 if (Name == ClangASTSectionName) { 1388 ClangASTSection = Sec; 1389 break; 1390 } 1391 } 1392 if (!ClangASTSection) 1393 return; 1394 1395 StringRef ClangASTContents; 1396 error(ClangASTSection.getValue().getContents(ClangASTContents)); 1397 outs().write(ClangASTContents.data(), ClangASTContents.size()); 1398 } 1399 1400 static void printFaultMaps(const ObjectFile *Obj) { 1401 const char *FaultMapSectionName = nullptr; 1402 1403 if (isa<ELFObjectFileBase>(Obj)) { 1404 FaultMapSectionName = ".llvm_faultmaps"; 1405 } else if (isa<MachOObjectFile>(Obj)) { 1406 FaultMapSectionName = "__llvm_faultmaps"; 1407 } else { 1408 errs() << "This operation is only currently supported " 1409 "for ELF and Mach-O executable files.\n"; 1410 return; 1411 } 1412 1413 Optional<object::SectionRef> FaultMapSection; 1414 1415 for (auto Sec : ToolSectionFilter(*Obj)) { 1416 StringRef Name; 1417 Sec.getName(Name); 1418 if (Name == FaultMapSectionName) { 1419 FaultMapSection = Sec; 1420 break; 1421 } 1422 } 1423 1424 outs() << "FaultMap table:\n"; 1425 1426 if (!FaultMapSection.hasValue()) { 1427 outs() << "<not found>\n"; 1428 return; 1429 } 1430 1431 StringRef FaultMapContents; 1432 error(FaultMapSection.getValue().getContents(FaultMapContents)); 1433 1434 FaultMapParser FMP(FaultMapContents.bytes_begin(), 1435 FaultMapContents.bytes_end()); 1436 1437 outs() << FMP; 1438 } 1439 1440 static void printPrivateFileHeader(const ObjectFile *o) { 1441 if (o->isELF()) { 1442 printELFFileHeader(o); 1443 } else if (o->isCOFF()) { 1444 printCOFFFileHeader(o); 1445 } else if (o->isMachO()) { 1446 printMachOFileHeader(o); 1447 } 1448 } 1449 1450 static void DumpObject(const ObjectFile *o) { 1451 // Avoid other output when using a raw option. 1452 if (!RawClangAST) { 1453 outs() << '\n'; 1454 outs() << o->getFileName() 1455 << ":\tfile format " << o->getFileFormatName() << "\n\n"; 1456 } 1457 1458 if (Disassemble) 1459 DisassembleObject(o, Relocations); 1460 if (Relocations && !Disassemble) 1461 PrintRelocations(o); 1462 if (SectionHeaders) 1463 PrintSectionHeaders(o); 1464 if (SectionContents) 1465 PrintSectionContents(o); 1466 if (SymbolTable) 1467 PrintSymbolTable(o); 1468 if (UnwindInfo) 1469 PrintUnwindInfo(o); 1470 if (PrivateHeaders) 1471 printPrivateFileHeader(o); 1472 if (ExportsTrie) 1473 printExportsTrie(o); 1474 if (Rebase) 1475 printRebaseTable(o); 1476 if (Bind) 1477 printBindTable(o); 1478 if (LazyBind) 1479 printLazyBindTable(o); 1480 if (WeakBind) 1481 printWeakBindTable(o); 1482 if (RawClangAST) 1483 printRawClangAST(o); 1484 if (PrintFaultMaps) 1485 printFaultMaps(o); 1486 } 1487 1488 /// @brief Dump each object file in \a a; 1489 static void DumpArchive(const Archive *a) { 1490 for (const Archive::Child &C : a->children()) { 1491 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = C.getAsBinary(); 1492 if (std::error_code EC = ChildOrErr.getError()) 1493 if (EC != object_error::invalid_file_type) 1494 report_error(a->getFileName(), EC); 1495 if (ObjectFile *o = dyn_cast<ObjectFile>(&*ChildOrErr.get())) 1496 DumpObject(o); 1497 else 1498 report_error(a->getFileName(), object_error::invalid_file_type); 1499 } 1500 } 1501 1502 /// @brief Open file and figure out how to dump it. 1503 static void DumpInput(StringRef file) { 1504 // If file isn't stdin, check that it exists. 1505 if (file != "-" && !sys::fs::exists(file)) 1506 report_error(file, errc::no_such_file_or_directory); 1507 1508 // If we are using the Mach-O specific object file parser, then let it parse 1509 // the file and process the command line options. So the -arch flags can 1510 // be used to select specific slices, etc. 1511 if (MachOOpt) { 1512 ParseInputMachO(file); 1513 return; 1514 } 1515 1516 // Attempt to open the binary. 1517 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(file); 1518 if (std::error_code EC = BinaryOrErr.getError()) 1519 report_error(file, EC); 1520 Binary &Binary = *BinaryOrErr.get().getBinary(); 1521 1522 if (Archive *a = dyn_cast<Archive>(&Binary)) 1523 DumpArchive(a); 1524 else if (ObjectFile *o = dyn_cast<ObjectFile>(&Binary)) 1525 DumpObject(o); 1526 else 1527 report_error(file, object_error::invalid_file_type); 1528 } 1529 1530 int main(int argc, char **argv) { 1531 // Print a stack trace if we signal out. 1532 sys::PrintStackTraceOnErrorSignal(); 1533 PrettyStackTraceProgram X(argc, argv); 1534 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. 1535 1536 // Initialize targets and assembly printers/parsers. 1537 llvm::InitializeAllTargetInfos(); 1538 llvm::InitializeAllTargetMCs(); 1539 llvm::InitializeAllAsmParsers(); 1540 llvm::InitializeAllDisassemblers(); 1541 1542 // Register the target printer for --version. 1543 cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion); 1544 1545 cl::ParseCommandLineOptions(argc, argv, "llvm object file dumper\n"); 1546 TripleName = Triple::normalize(TripleName); 1547 1548 ToolName = argv[0]; 1549 1550 // Defaults to a.out if no filenames specified. 1551 if (InputFilenames.size() == 0) 1552 InputFilenames.push_back("a.out"); 1553 1554 if (DisassembleAll) 1555 Disassemble = true; 1556 if (!Disassemble 1557 && !Relocations 1558 && !SectionHeaders 1559 && !SectionContents 1560 && !SymbolTable 1561 && !UnwindInfo 1562 && !PrivateHeaders 1563 && !ExportsTrie 1564 && !Rebase 1565 && !Bind 1566 && !LazyBind 1567 && !WeakBind 1568 && !RawClangAST 1569 && !(UniversalHeaders && MachOOpt) 1570 && !(ArchiveHeaders && MachOOpt) 1571 && !(IndirectSymbols && MachOOpt) 1572 && !(DataInCode && MachOOpt) 1573 && !(LinkOptHints && MachOOpt) 1574 && !(InfoPlist && MachOOpt) 1575 && !(DylibsUsed && MachOOpt) 1576 && !(DylibId && MachOOpt) 1577 && !(ObjcMetaData && MachOOpt) 1578 && !(FilterSections.size() != 0 && MachOOpt) 1579 && !PrintFaultMaps) { 1580 cl::PrintHelpMessage(); 1581 return 2; 1582 } 1583 1584 std::for_each(InputFilenames.begin(), InputFilenames.end(), 1585 DumpInput); 1586 1587 return EXIT_SUCCESS; 1588 } 1589