1 include "llvm/Option/OptParser.td"
3 multiclass Eq<string name, string help> {
4 def NAME : Separate<["--"], name>;
5 def NAME #_eq : Joined<["--"], name #"=">,
6 Alias<!cast<Separate>(NAME)>,
10 def help : Flag<["--"], "help">;
11 def h : Flag<["-"], "h">, Alias<help>;
13 def allow_broken_links
14 : Flag<["--"], "allow-broken-links">,
15 HelpText<"Allow the tool to remove sections even if it would leave "
16 "invalid section references. The appropriate sh_link fields "
17 "will be set to zero.">;
19 def enable_deterministic_archives
20 : Flag<["--"], "enable-deterministic-archives">,
21 HelpText<"Enable deterministic mode when operating on archives (use "
22 "zero for UIDs, GIDs, and timestamps).">;
23 def D : Flag<["-"], "D">,
24 Alias<enable_deterministic_archives>,
25 HelpText<"Alias for --enable-deterministic-archives">;
27 def disable_deterministic_archives
28 : Flag<["--"], "disable-deterministic-archives">,
29 HelpText<"Disable deterministic mode when operating on archives (use "
30 "real values for UIDs, GIDs, and timestamps).">;
31 def U : Flag<["-"], "U">,
32 Alias<disable_deterministic_archives>,
33 HelpText<"Alias for --disable-deterministic-archives">;
35 def preserve_dates : Flag<["--"], "preserve-dates">,
36 HelpText<"Preserve access and modification timestamps">;
37 def p : Flag<["-"], "p">,
38 Alias<preserve_dates>,
39 HelpText<"Alias for --preserve-dates">;
41 def strip_all : Flag<["--"], "strip-all">,
42 HelpText<"Remove non-allocated sections outside segments. "
43 ".gnu.warning* sections are not removed">;
46 : Flag<["--"], "strip-all-gnu">,
47 HelpText<"Compatible with GNU's --strip-all">;
49 def strip_debug : Flag<["--"], "strip-debug">,
50 HelpText<"Remove all debug sections">;
51 def g : Flag<["-"], "g">,
53 HelpText<"Alias for --strip-debug">;
55 def strip_unneeded : Flag<["--"], "strip-unneeded">,
56 HelpText<"Remove all symbols not needed by relocations">;
58 defm remove_section : Eq<"remove-section", "Remove <section>">,
59 MetaVarName<"section">;
60 def R : JoinedOrSeparate<["-"], "R">,
61 Alias<remove_section>,
62 HelpText<"Alias for --remove-section">;
65 : Flag<["--"], "strip-sections">,
66 HelpText<"Remove all section headers and all sections not in segments">;
68 defm strip_symbol : Eq<"strip-symbol", "Strip <symbol>">,
69 MetaVarName<"symbol">;
70 def N : JoinedOrSeparate<["-"], "N">,
72 HelpText<"Alias for --strip-symbol">;
74 defm keep_section : Eq<"keep-section", "Keep <section>">,
75 MetaVarName<"section">;
77 defm keep_symbol : Eq<"keep-symbol", "Do not remove symbol <symbol>">,
78 MetaVarName<"symbol">;
79 def K : JoinedOrSeparate<["-"], "K">,
81 HelpText<"Alias for --keep-symbol">;
83 def keep_file_symbols : Flag<["--"], "keep-file-symbols">,
84 HelpText<"Do not remove file symbols">;
87 : Flag<["--"], "only-keep-debug">,
88 HelpText<"Clear sections that would not be stripped by --strip-debug. "
89 "Currently only implemented for COFF.">;
91 def discard_locals : Flag<["--"], "discard-locals">,
92 HelpText<"Remove compiler-generated local symbols, (e.g. "
93 "symbols starting with .L)">;
94 def X : Flag<["-"], "X">,
95 Alias<discard_locals>,
96 HelpText<"Alias for --discard-locals">;
99 : Flag<["--"], "discard-all">,
100 HelpText<"Remove all local symbols except file and section symbols">;
101 def x : Flag<["-"], "x">,
103 HelpText<"Alias for --discard-all">;
106 : Flag<["--"], "regex">,
107 HelpText<"Permit regular expressions in name comparison">;
109 def version : Flag<["--"], "version">,
110 HelpText<"Print the version and exit.">;
111 def V : Flag<["-"], "V">,
113 HelpText<"Alias for --version">;
116 : Flag<["--"], "wildcard">,
117 HelpText<"Allow wildcard syntax for symbol-related flags. Incompatible "
118 "with --regex. Allows using '*' to match any number of "
119 "characters, '?' to match any single character, '\' to escape "
120 "special characters, and '[]' to define character classes. "
121 "Wildcards beginning with '!' will prevent a match, for example "
122 "\"-N '*' -N '!x'\" will strip all symbols except for \"x\".">;
123 def w : Flag<["-"], "w">, Alias<wildcard>, HelpText<"Alias for --wildcard">;