[llvm] 05b1c7a - [llvm-dwarfdump][docs] Add missing options to the help output and the command guide
via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 27 06:30:18 PDT 2021
Author: gbreynoo
Date: 2021-09-27T14:28:31+01:00
New Revision: 05b1c7aebfff8cc08a620d01e739f343ed01db6d
URL: https://github.com/llvm/llvm-project/commit/05b1c7aebfff8cc08a620d01e739f343ed01db6d
DIFF: https://github.com/llvm/llvm-project/commit/05b1c7aebfff8cc08a620d01e739f343ed01db6d.diff
LOG: [llvm-dwarfdump][docs] Add missing options to the help output and the command guide
This change is to add some missing details to the help text and command
guide:
- Added a note to the command guide that --debug-macro also dumps
.debug_macinfo.
- Added a note to the command guide that --debug-frame and --eh_frame
are aliases, and in cases where both sections are present one command
outputs both.
- Changed the wording in the help output for --ignore-case and --regex to
closer match the command guide.
Added:
Modified:
llvm/docs/CommandGuide/llvm-dwarfdump.rst
llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
Removed:
################################################################################
diff --git a/llvm/docs/CommandGuide/llvm-dwarfdump.rst b/llvm/docs/CommandGuide/llvm-dwarfdump.rst
index d0c7be442136..d0c436f08e2b 100644
--- a/llvm/docs/CommandGuide/llvm-dwarfdump.rst
+++ b/llvm/docs/CommandGuide/llvm-dwarfdump.rst
@@ -149,7 +149,7 @@ OPTIONS
Display the version of the tool.
-.. option:: --debug-abbrev, --debug-addr, --debug-aranges, --debug-cu-index, --debug-frame[=<offset>], --debug-gnu-pubnames, --debug-gnu-pubtypes, --debug-info [=<offset>], --debug-line [=<offset>], --debug-line-str, --debug-loc [=<offset>], --debug-loclists [=<offset>], --debug-macro, --debug-names, --debug-pubnames, --debug-pubtypes, --debug-ranges, --debug-rnglists, --debug-str, --debug-str-offsets, --debug-tu-index, --debug-types [=<offset>], --eh-frame [=<offset>], --gdb-index, --apple-names, --apple-types, --apple-namespaces, --apple-objc
+.. option:: --debug-abbrev, --debug-addr, --debug-aranges, --debug-cu-index, --debug-frame [=<offset>], --debug-gnu-pubnames, --debug-gnu-pubtypes, --debug-info [=<offset>], --debug-line [=<offset>], --debug-line-str, --debug-loc [=<offset>], --debug-loclists [=<offset>], --debug-macro, --debug-names, --debug-pubnames, --debug-pubtypes, --debug-ranges, --debug-rnglists, --debug-str, --debug-str-offsets, --debug-tu-index, --debug-types [=<offset>], --eh-frame [=<offset>], --gdb-index, --apple-names, --apple-types, --apple-namespaces, --apple-objc
Dump the specified DWARF section by name. Only the
`.debug_info` section is shown by default. Some entries
@@ -159,6 +159,10 @@ OPTIONS
entry at that offset will be dumped, else the entire
section will be dumped.
+ The :option:`--debug-macro` option prints both the .debug_macro and the .debug_macinfo sections.
+
+ The :option:`--debug-frame` and :option:`--eh-frame` options are aliases, in cases where both sections are present one command outputs both.
+
.. option:: @<FILE>
Read command-line options from `<FILE>`.
@@ -168,7 +172,7 @@ OPTIONS
FORMAT OF STATISTICS OUTPUT
---------------------------
-The ::option:`--statistics` option generates single-line JSON output
+The :option:`--statistics` option generates single-line JSON output
representing quality metrics of the processed debug info. These metrics are
useful to compare changes between two compilers, particularly for judging
the effect that a change to the compiler has on the debug info quality.
diff --git a/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp b/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
index 54bfde0109b4..9eeaddf14928 100644
--- a/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
+++ b/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
@@ -169,7 +169,7 @@ static list<std::string>
static alias FindAlias("f", desc("Alias for --find."), aliasopt(Find),
cl::NotHidden);
static opt<bool> IgnoreCase("ignore-case",
- desc("Ignore case distinctions when searching."),
+ desc("Ignore case distinctions when using --name."),
value_desc("i"), cat(DwarfDumpCategory));
static alias IgnoreCaseAlias("i", desc("Alias for --ignore-case."),
aliasopt(IgnoreCase), cl::NotHidden);
@@ -192,11 +192,12 @@ static opt<std::string>
cl::value_desc("filename"), cat(DwarfDumpCategory));
static alias OutputFilenameAlias("out-file", desc("Alias for -o."),
aliasopt(OutputFilename));
-static opt<bool>
- UseRegex("regex",
- desc("Treat any <pattern> strings as regular expressions when "
- "searching instead of just as an exact string match."),
- cat(DwarfDumpCategory));
+static opt<bool> UseRegex(
+ "regex",
+ desc("Treat any <pattern> strings as regular "
+ "expressions when searching with --name. If --ignore-case is also "
+ "specified, the regular expression becomes case-insensitive."),
+ cat(DwarfDumpCategory));
static alias RegexAlias("x", desc("Alias for --regex"), aliasopt(UseRegex),
cl::NotHidden);
static opt<bool>
More information about the llvm-commits
mailing list