summaryrefslogtreecommitdiff
path: root/src/tools/wasm-metadce.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2022-01-05 11:42:13 -0800
committerGitHub <noreply@github.com>2022-01-05 11:42:13 -0800
commit16c9b3042d925270d1536429a239261b5a7df9b8 (patch)
tree4c27cdfa36afbb6e66f69b7dab4292aa76926ea9 /src/tools/wasm-metadce.cpp
parent79f76987ca899241a3f45d61e9b7964bcffb31a1 (diff)
downloadbinaryen-16c9b3042d925270d1536429a239261b5a7df9b8.tar.gz
binaryen-16c9b3042d925270d1536429a239261b5a7df9b8.tar.bz2
binaryen-16c9b3042d925270d1536429a239261b5a7df9b8.zip
Add categories to --help text (#4421)
The general shape of the --help output is now: ======================== wasm-foo Does the foo operation ======================== wasm-foo opts: -------------- --foo-bar .. Tool opts: ---------- .. The options are now in categories, with the more specific ones - most likely to be wanted by the user - first. I think this makes the list a lot less confusing. In particular, in wasm-opt all the opt passes are now in their own category. Also add a script to make it easy to update the help tests.
Diffstat (limited to 'src/tools/wasm-metadce.cpp')
-rw-r--r--src/tools/wasm-metadce.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tools/wasm-metadce.cpp b/src/tools/wasm-metadce.cpp
index 3a468e071..4b12446f4 100644
--- a/src/tools/wasm-metadce.cpp
+++ b/src/tools/wasm-metadce.cpp
@@ -425,6 +425,8 @@ int main(int argc, const char* argv[]) {
std::string graphFile;
bool dump = false;
+ const std::string WasmMetaDCEOption = "wasm-opt options";
+
ToolOptions options(
"wasm-metadce",
"This tool performs dead code elimination (DCE) on a larger space "
@@ -474,6 +476,7 @@ int main(int argc, const char* argv[]) {
.add("--output",
"-o",
"Output file (stdout if not specified)",
+ WasmMetaDCEOption,
Options::Arguments::One,
[](Options* o, const std::string& argument) {
o->extra["output"] = argument;
@@ -482,21 +485,25 @@ int main(int argc, const char* argv[]) {
.add("--emit-text",
"-S",
"Emit text instead of binary for the output file",
+ WasmMetaDCEOption,
Options::Arguments::Zero,
[&](Options* o, const std::string& argument) { emitBinary = false; })
.add("--debuginfo",
"-g",
"Emit names section and debug info",
+ WasmMetaDCEOption,
Options::Arguments::Zero,
[&](Options* o, const std::string& arguments) { debugInfo = true; })
.add("--graph-file",
"-f",
"Filename of the graph description file",
+ WasmMetaDCEOption,
Options::Arguments::One,
[&](Options* o, const std::string& argument) { graphFile = argument; })
.add("--dump",
"-d",
"Dump the combined graph file (useful for debugging)",
+ WasmMetaDCEOption,
Options::Arguments::Zero,
[&](Options* o, const std::string& arguments) { dump = true; })
.add_positional("INFILE",