Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / tools / llvm-nm / Opts.td
blob04d9f5db5cf85d71eb560596edeafba516148837
1 include "llvm/Option/OptParser.td"
3 class F<string letter, string help> : Flag<["-"], letter>, HelpText<help>;
4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
6 multiclass BB<string name, string help1, string help2> {
7   def NAME: Flag<["--"], name>, HelpText<help1>;
8   def no_ # NAME: Flag<["--"], "no-" # name>, HelpText<help2>;
11 multiclass Eq<string name, string help> {
12   def NAME #_EQ : Joined<["--"], name #"=">, HelpText<help>;
13   def : Separate<["--"], name>, Alias<!cast<Joined>(NAME #_EQ)>;
16 def X : JoinedOrSeparate<["-"], "X">, HelpText<"Specifies the type of ELF, XCOFF, or IR object file to examine. The value must be one of: 32, 64, 32_64, any (default)">;
17 def debug_syms : FF<"debug-syms", "Show all symbols, even debugger only">;
18 def defined_only : FF<"defined-only", "Show only defined symbols">;
19 defm demangle : BB<"demangle", "Demangle C++ symbol names", "Don't demangle symbol names">;
20 def dynamic : FF<"dynamic", "Display dynamic symbols instead of normal symbols">;
21 def export_symbols : FF<"export-symbols", "Export symbol list for all inputs">;
22 def extern_only : FF<"extern-only", "Show only external symbols">;
23 defm format : Eq<"format", "Specify output format: bsd (default), posix, sysv, darwin, just-symbols">, MetaVarName<"<format>">;
24 def help : FF<"help", "Display this help">;
25 def line_numbers : FF<"line-numbers", "Use debugging information to print symbols' filenames and line numbers">;
26 def no_llvm_bc : FF<"no-llvm-bc", "Disable LLVM bitcode reader">;
27 def no_sort : FF<"no-sort", "Show symbols in order encountered">;
28 def no_weak : FF<"no-weak", "Show only non-weak symbols">;
29 def numeric_sort : FF<"numeric-sort", "Sort symbols by address">;
30 def print_armap : FF<"print-armap", "Print the archive map">;
31 def print_file_name : FF<"print-file-name", "Precede each symbol with the object file it came from">;
32 def print_size : FF<"print-size", "Show symbol size as well as address">;
33 def quiet : FF<"quiet", "Suppress 'no symbols' diagnostic">;
34 defm radix : Eq<"radix", "Radix (o/d/x) for printing symbol Values">, MetaVarName<"<radix>">;
35 def reverse_sort : FF<"reverse-sort", "Sort in reverse order">;
36 def size_sort : FF<"size-sort", "Sort symbols by size">;
37 def special_syms : FF<"special-syms", "Do not filter special symbols from the output">;
38 def undefined_only : FF<"undefined-only", "Show only undefined symbols">;
39 def version : FF<"version", "Display the version">;
40 def without_aliases : FF<"without-aliases", "Exclude aliases from output">, Flags<[HelpHidden]>;
42 // Mach-O specific options.
43 def grp_mach_o : OptionGroup<"kind">, HelpText<"llvm-nm Mach-O Specific Options">;
45 def add_dyldinfo : FF<"add-dyldinfo", "Add symbols from the dyldinfo not already in the symbol table">, Group<grp_mach_o>;
46 def add_inlinedinfo : FF<"add-inlinedinfo", "Add symbols from the inlined libraries, TBD only">, Group<grp_mach_o>;
47 def arch_EQ : Joined<["--"], "arch=">, HelpText<"architecture(s) from a Mach-O file to dump">, Group<grp_mach_o>;
48 def : Separate<["--", "-"], "arch">, Alias<arch_EQ>;
49 def dyldinfo_only : FF<"dyldinfo-only", "Show only symbols from the dyldinfo">, Group<grp_mach_o>;
50 def no_dyldinfo : FF<"no-dyldinfo", "Don't add any symbols from the dyldinfo">, Group<grp_mach_o>;
51 def s : F<"s", "Dump only symbols from this segment and section name">, Group<grp_mach_o>;
52 def x : F<"x", "Print symbol entry in hex">, Group<grp_mach_o>;
54 // XCOFF specific options.
55 def grp_xcoff_o : OptionGroup<"kind">, HelpText<"llvm-nm XCOFF Specific Options">;
57 def no_rsrc : FF<"no-rsrc", "Exclude resource file symbols (__rsrc) from the export symbol list.">, Group<grp_xcoff_o>;
59 def : FF<"just-symbol-name", "Alias for --format=just-symbols">, Alias<format_EQ>, AliasArgs<["just-symbols"]>, Flags<[HelpHidden]>;
60 def : FF<"portability", "Alias for --format=posix">, Alias<format_EQ>, AliasArgs<["posix"]>;
62 def : F<"a", "Alias for --debug-syms">, Alias<debug_syms>;
63 def : F<"A", "Alias for --print-file-name">, Alias<print_file_name>;
64 def : F<"B", "Alias for --format=bsd">, Alias<format_EQ>, AliasArgs<["bsd"]>;
65 def : F<"C", "Alias for --demangle">, Alias<demangle>;
66 def : F<"D", "Alias for --dynamic">, Alias<dynamic>;
67 def : JoinedOrSeparate<["-"], "f">, HelpText<"Alias for --format">, Alias<format_EQ>, MetaVarName<"<format>">;
68 def : F<"h", "Alias for --help">, Alias<help>;
69 def : F<"g", "Alias for --extern-only">, Alias<extern_only>;
70 def : F<"j", "Alias for --format=just-symbols">, Alias<format_EQ>, AliasArgs<["just-symbols"]>;
71 def : F<"l", "Alias for --line-numbers">, Alias<line_numbers>;
72 def : F<"m", "Alias for --format=darwin">, Alias<format_EQ>, AliasArgs<["darwin"]>;
73 def : F<"M", "Deprecated alias for --print-armap">, Alias<print_armap>, Flags<[HelpHidden]>;
74 def : F<"n", "Alias for --numeric-sort">, Alias<numeric_sort>;
75 def : F<"o", "Alias for --print-file-name">, Alias<print_file_name>;
76 def : F<"p", "Alias for --no-sort">, Alias<no_sort>;
77 def : F<"P", "Alias for --format=posix">, Alias<format_EQ>, AliasArgs<["posix"]>;
78 def : F<"r", "Alias for --reverse-sort">, Alias<reverse_sort>;
79 def : F<"S", "Alias for --print-size">, Alias<print_size>;
80 def : JoinedOrSeparate<["-"], "t">, HelpText<"Alias for --radix">, Alias<radix_EQ>, MetaVarName<"<radix>">;
81 def : F<"u", "Alias for --undefined-only">, Alias<undefined_only>;
82 def : F<"U", "Alias for --defined-only">, Alias<defined_only>;
83 def : F<"v", "Alias for --numeric-sort">, Alias<numeric_sort>;
84 def : F<"V", "Alias for --version">, Alias<version>;
85 def : F<"W", "Alias for --no-weak">, Alias<no_weak>;