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