llvm-dwarfdump.cpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. //===-- llvm-dwarfdump.cpp - Debug info 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 "dwarfdump".
  11. //
  12. //===----------------------------------------------------------------------===//
  13. #include "llvm/ADT/STLExtras.h"
  14. #include "llvm/ADT/Triple.h"
  15. #include "llvm/DebugInfo/DIContext.h"
  16. #include "llvm/DebugInfo/DWARF/DWARFContext.h"
  17. #include "llvm/Object/ObjectFile.h"
  18. #include "llvm/Object/RelocVisitor.h"
  19. #include "llvm/Support/CommandLine.h"
  20. #include "llvm/Support/Debug.h"
  21. #include "llvm/Support/Format.h"
  22. #include "llvm/Support/ManagedStatic.h"
  23. #include "llvm/Support/MemoryBuffer.h"
  24. #include "llvm/Support/PrettyStackTrace.h"
  25. #include "llvm/Support/Signals.h"
  26. #include "llvm/Support/raw_ostream.h"
  27. #include <algorithm>
  28. #include <cstring>
  29. #include <list>
  30. #include <string>
  31. #include <system_error>
  32. using namespace llvm;
  33. using namespace object;
  34. static cl::list<std::string>
  35. InputFilenames(cl::Positional, cl::desc("<input object files>"),
  36. cl::ZeroOrMore);
  37. static cl::opt<DIDumpType>
  38. DumpType("debug-dump", cl::init(DIDT_All),
  39. cl::desc("Dump of debug sections:"),
  40. cl::values(
  41. clEnumValN(DIDT_All, "all", "Dump all debug sections"),
  42. clEnumValN(DIDT_Abbrev, "abbrev", ".debug_abbrev"),
  43. clEnumValN(DIDT_AbbrevDwo, "abbrev.dwo", ".debug_abbrev.dwo"),
  44. clEnumValN(DIDT_AppleNames, "apple_names", ".apple_names"),
  45. clEnumValN(DIDT_AppleTypes, "apple_types", ".apple_types"),
  46. clEnumValN(DIDT_AppleNamespaces, "apple_namespaces", ".apple_namespaces"),
  47. clEnumValN(DIDT_AppleObjC, "apple_objc", ".apple_objc"),
  48. clEnumValN(DIDT_Aranges, "aranges", ".debug_aranges"),
  49. clEnumValN(DIDT_Info, "info", ".debug_info"),
  50. clEnumValN(DIDT_InfoDwo, "info.dwo", ".debug_info.dwo"),
  51. clEnumValN(DIDT_Types, "types", ".debug_types"),
  52. clEnumValN(DIDT_TypesDwo, "types.dwo", ".debug_types.dwo"),
  53. clEnumValN(DIDT_Line, "line", ".debug_line"),
  54. clEnumValN(DIDT_LineDwo, "line.dwo", ".debug_line.dwo"),
  55. clEnumValN(DIDT_Loc, "loc", ".debug_loc"),
  56. clEnumValN(DIDT_LocDwo, "loc.dwo", ".debug_loc.dwo"),
  57. clEnumValN(DIDT_Frames, "frames", ".debug_frame"),
  58. clEnumValN(DIDT_Ranges, "ranges", ".debug_ranges"),
  59. clEnumValN(DIDT_Pubnames, "pubnames", ".debug_pubnames"),
  60. clEnumValN(DIDT_Pubtypes, "pubtypes", ".debug_pubtypes"),
  61. clEnumValN(DIDT_GnuPubnames, "gnu_pubnames", ".debug_gnu_pubnames"),
  62. clEnumValN(DIDT_GnuPubtypes, "gnu_pubtypes", ".debug_gnu_pubtypes"),
  63. clEnumValN(DIDT_Str, "str", ".debug_str"),
  64. clEnumValN(DIDT_StrDwo, "str.dwo", ".debug_str.dwo"),
  65. clEnumValN(DIDT_StrOffsetsDwo, "str_offsets.dwo", ".debug_str_offsets.dwo"),
  66. clEnumValEnd));
  67. static int ReturnValue = EXIT_SUCCESS;
  68. static bool error(StringRef Filename, std::error_code EC) {
  69. if (!EC)
  70. return false;
  71. errs() << Filename << ": " << EC.message() << "\n";
  72. ReturnValue = EXIT_FAILURE;
  73. return true;
  74. }
  75. static void DumpInput(StringRef Filename) {
  76. ErrorOr<std::unique_ptr<MemoryBuffer>> BuffOrErr =
  77. MemoryBuffer::getFileOrSTDIN(Filename);
  78. if (error(Filename, BuffOrErr.getError()))
  79. return;
  80. std::unique_ptr<MemoryBuffer> Buff = std::move(BuffOrErr.get());
  81. ErrorOr<std::unique_ptr<ObjectFile>> ObjOrErr =
  82. ObjectFile::createObjectFile(Buff->getMemBufferRef());
  83. if (error(Filename, ObjOrErr.getError()))
  84. return;
  85. ObjectFile &Obj = *ObjOrErr.get();
  86. std::unique_ptr<DIContext> DICtx(new DWARFContextInMemory(Obj));
  87. outs() << Filename
  88. << ":\tfile format " << Obj.getFileFormatName() << "\n\n";
  89. // Dump the complete DWARF structure.
  90. DICtx->dump(outs(), DumpType);
  91. }
  92. // HLSL Change: changed calling convention to __cdecl
  93. int __cdecl main(int argc, char **argv) {
  94. // Print a stack trace if we signal out.
  95. sys::PrintStackTraceOnErrorSignal();
  96. PrettyStackTraceProgram X(argc, argv);
  97. llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
  98. cl::ParseCommandLineOptions(argc, argv, "llvm dwarf dumper\n");
  99. // Defaults to a.out if no filenames specified.
  100. if (InputFilenames.size() == 0)
  101. InputFilenames.push_back("a.out");
  102. std::for_each(InputFilenames.begin(), InputFilenames.end(), DumpInput);
  103. return ReturnValue;
  104. }