diff options
author | George Rimar <grimar@accesssoftek.com> | 2016-09-23 09:09:26 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2016-09-23 09:09:26 +0000 |
commit | a77bcf5e42e3a31508f8a261935d14dc35353ed8 (patch) | |
tree | ab5366ae87cab418480dc7939466194e277996fa /llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp | |
parent | 355103f6c0f869028f3739cea663dddaaa08da48 (diff) | |
download | bcm5719-llvm-a77bcf5e42e3a31508f8a261935d14dc35353ed8.tar.gz bcm5719-llvm-a77bcf5e42e3a31508f8a261935d14dc35353ed8.zip |
[llvm-dwarfdump] - Teach dwarfdump to dump gdb-index section.
gold linker's --gdb-index option currently is able to create the .gdb_index section that allows GDB to locate and read the .dwo files as it needs them,
this helps reduce the total size of the object files processed by the linker.
More info about that:
https://gcc.gnu.org/wiki/DebugFission
https://sourceware.org/gdb/onlinedocs/gdb/Index-Section-Format.html
Patch teaches dwarfdump tool to dump this section.
Differential revision: https://reviews.llvm.org/D21503
llvm-svn: 282235
Diffstat (limited to 'llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp')
-rw-r--r-- | llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp b/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp index 4b3a011f861..bbf36793e6d 100644 --- a/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp +++ b/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp @@ -71,6 +71,7 @@ static cl::opt<DIDumpType> DumpType( clEnumValN(DIDT_StrOffsetsDwo, "str_offsets.dwo", ".debug_str_offsets.dwo"), clEnumValN(DIDT_CUIndex, "cu_index", ".debug_cu_index"), + clEnumValN(DIDT_GdbIndex, "gdb_index", ".gdb_index"), clEnumValN(DIDT_TUIndex, "tu_index", ".debug_tu_index"), clEnumValEnd)); static void error(StringRef Filename, std::error_code EC) { |