llvm-dwarfdump.rst 831 B

123456789101112131415161718192021222324252627282930
  1. llvm-dwarfdump - print contents of DWARF sections
  2. =================================================
  3. SYNOPSIS
  4. --------
  5. :program:`llvm-dwarfdump` [*options*] [*filenames...*]
  6. DESCRIPTION
  7. -----------
  8. :program:`llvm-dwarfdump` parses DWARF sections in the object files
  9. and prints their contents in human-readable form.
  10. OPTIONS
  11. -------
  12. .. option:: -debug-dump=section
  13. Specify the DWARF section to dump.
  14. For example, use ``abbrev`` to dump the contents of ``.debug_abbrev`` section,
  15. ``loc.dwo`` to dump the contents of ``.debug_loc.dwo`` etc.
  16. See ``llvm-dwarfdump --help`` for the complete list of supported sections.
  17. Use ``all`` to dump all DWARF sections. It is the default.
  18. EXIT STATUS
  19. -----------
  20. :program:`llvm-dwarfdump` returns 0 if the input files were parsed and dumped
  21. successfully. Otherwise, it returns 1.