Alexander Shaposhnikov | ae1ca02 | 2018-04-24 05:43:32 +0000 | [diff] [blame] | 1 | include "llvm/Option/OptParser.td" |
| 2 | |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 3 | multiclass Eq<string name, string help> { |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 4 | def NAME : Separate<["--", "-"], name>; |
| 5 | def NAME #_eq : Joined<["--", "-"], name #"=">, |
| 6 | Alias<!cast<Separate>(NAME)>, |
| 7 | HelpText<help>; |
Alexander Shaposhnikov | ae1ca02 | 2018-04-24 05:43:32 +0000 | [diff] [blame] | 8 | } |
| 9 | |
| 10 | def help : Flag<["-", "--"], "help">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 11 | |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 12 | defm binary_architecture |
| 13 | : Eq<"binary-architecture", "Used when transforming an architecture-less " |
| 14 | "format (such as binary) to another format">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 15 | def B : JoinedOrSeparate<["-"], "B">, Alias<binary_architecture>; |
| 16 | |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 17 | defm target : Eq<"target", "Format of the input and output file">, |
Jordan Rupprecht | 3b7de9d | 2018-10-12 00:36:01 +0000 | [diff] [blame] | 18 | Values<"binary">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 19 | def F : JoinedOrSeparate<["-"], "F">, Alias<target>; |
| 20 | |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 21 | defm input_target : Eq<"input-target", "Format of the input file">, |
Alexander Shaposhnikov | ae1ca02 | 2018-04-24 05:43:32 +0000 | [diff] [blame] | 22 | Values<"binary">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 23 | def I : JoinedOrSeparate<["-"], "I">, Alias<input_target>; |
| 24 | |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 25 | defm output_target : Eq<"output-target", "Format of the output file">, |
Alexander Shaposhnikov | ae1ca02 | 2018-04-24 05:43:32 +0000 | [diff] [blame] | 26 | Values<"binary">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 27 | def O : JoinedOrSeparate<["-"], "O">, Alias<output_target>; |
| 28 | |
Puyan Lotfi | ac820be | 2018-09-07 08:10:22 +0000 | [diff] [blame] | 29 | def compress_debug_sections : Flag<["--", "-"], "compress-debug-sections">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 30 | def compress_debug_sections_eq |
| 31 | : Joined<["--", "-"], "compress-debug-sections=">, |
| 32 | MetaVarName<"[ zlib | zlib-gnu ]">, |
| 33 | HelpText<"Compress DWARF debug sections using specified style. Supported " |
| 34 | "styles: 'zlib-gnu' and 'zlib'">; |
Puyan Lotfi | cc27a05 | 2018-10-01 10:29:41 +0000 | [diff] [blame] | 35 | def decompress_debug_sections : Flag<["-", "--"], "decompress-debug-sections">, |
| 36 | HelpText<"Decompress DWARF debug sections.">; |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 37 | defm split_dwo |
| 38 | : Eq<"split-dwo", "Equivalent to extract-dwo on the input file to " |
| 39 | "<dwo-file>, then strip-dwo on the input file">, |
| 40 | MetaVarName<"dwo-file">; |
Jordan Rupprecht | 7b455c4 | 2018-08-16 18:29:40 +0000 | [diff] [blame] | 41 | |
Jordan Rupprecht | 167fb18 | 2018-11-01 17:36:37 +0000 | [diff] [blame] | 42 | def enable_deterministic_archives |
| 43 | : Flag<["-", "--"], "enable-deterministic-archives">, |
| 44 | HelpText<"Enable deterministic mode when copying archives (use zero for " |
| 45 | "UIDs, GIDs, and timestamps).">; |
| 46 | def D : Flag<["-"], "D">, |
| 47 | Alias<enable_deterministic_archives>, |
| 48 | HelpText<"Alias for --enable-deterministic-archives">; |
| 49 | |
| 50 | def disable_deterministic_archives |
| 51 | : Flag<["-", "--"], "disable-deterministic-archives">, |
| 52 | HelpText<"Disable deterministic mode when copying archives (use real " |
| 53 | "values for UIDs, GIDs, and timestamps).">; |
| 54 | def U : Flag<["-"], "U">, |
| 55 | Alias<disable_deterministic_archives>, |
| 56 | HelpText<"Alias for --disable-deterministic-archives">; |
| 57 | |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 58 | def preserve_dates : Flag<["-", "--"], "preserve-dates">, |
Jordan Rupprecht | 7b455c4 | 2018-08-16 18:29:40 +0000 | [diff] [blame] | 59 | HelpText<"Preserve access and modification timestamps">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 60 | def p : Flag<["-"], "p">, Alias<preserve_dates>; |
Jordan Rupprecht | 7b455c4 | 2018-08-16 18:29:40 +0000 | [diff] [blame] | 61 | |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 62 | defm add_gnu_debuglink |
| 63 | : Eq<"add-gnu-debuglink", "Add a .gnu_debuglink for <debug-file>">, |
| 64 | MetaVarName<"debug-file">; |
Jordan Rupprecht | 7b455c4 | 2018-08-16 18:29:40 +0000 | [diff] [blame] | 65 | |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 66 | defm remove_section : Eq<"remove-section", "Remove <section>">, |
| 67 | MetaVarName<"section">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 68 | def R : JoinedOrSeparate<["-"], "R">, Alias<remove_section>; |
| 69 | |
Jordan Rupprecht | 742c679 | 2018-08-01 16:23:22 +0000 | [diff] [blame] | 70 | defm rename_section |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 71 | : Eq<"rename-section", |
| 72 | "Renames a section from old to new, optionally with specified flags. " |
| 73 | "Flags supported for GNU compatibility: alloc, load, noload, " |
| 74 | "readonly, debug, code, data, rom, share, contents, merge, strings.">, |
| 75 | MetaVarName<"old=new[,flag1,...]">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 76 | defm redefine_symbol |
| 77 | : Eq<"redefine-sym", "Change the name of a symbol old to new">, |
| 78 | MetaVarName<"old=new">; |
Jordan Rupprecht | 65bac06 | 2018-11-13 19:32:27 +0000 | [diff] [blame] | 79 | defm keep_section : Eq<"keep-section", "Keep <section>">, |
| 80 | MetaVarName<"section">; |
Jake Ehrlich | beec7d49 | 2018-12-06 02:03:53 +0000 | [diff] [blame] | 81 | defm only_section : Eq<"only-section", "Remove all but <section>">, |
| 82 | MetaVarName<"section">; |
| 83 | def j : JoinedOrSeparate<["-"], "j">, Alias<only_section>; |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 84 | defm add_section |
| 85 | : Eq<"add-section", |
| 86 | "Make a section named <section> with the contents of <file>.">, |
| 87 | MetaVarName<"section=file">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 88 | |
| 89 | def strip_all |
| 90 | : Flag<["-", "--"], "strip-all">, |
| 91 | HelpText< |
| 92 | "Remove non-allocated sections other than .gnu.warning* sections">; |
| 93 | def S : Flag<["-"], "S">, Alias<strip_all>; |
Alexander Shaposhnikov | ae1ca02 | 2018-04-24 05:43:32 +0000 | [diff] [blame] | 94 | def strip_all_gnu : Flag<["-", "--"], "strip-all-gnu">, |
Jordan Rupprecht | 9a78ad0 | 2018-11-01 17:48:46 +0000 | [diff] [blame] | 95 | HelpText<"Compatible with GNU objcopy's --strip-all">; |
Alexander Shaposhnikov | ae1ca02 | 2018-04-24 05:43:32 +0000 | [diff] [blame] | 96 | def strip_debug : Flag<["-", "--"], "strip-debug">, |
Alexander Shaposhnikov | 86e361f | 2018-04-24 21:44:13 +0000 | [diff] [blame] | 97 | HelpText<"Remove all debug information">; |
Alexander Shaposhnikov | ae1ca02 | 2018-04-24 05:43:32 +0000 | [diff] [blame] | 98 | def strip_dwo : Flag<["-", "--"], "strip-dwo">, |
| 99 | HelpText<"Remove all DWARF .dwo sections from file">; |
| 100 | def strip_sections : Flag<["-", "--"], "strip-sections">, |
| 101 | HelpText<"Remove all section headers">; |
| 102 | def strip_non_alloc : Flag<["-", "--"], "strip-non-alloc">, |
| 103 | HelpText<"Remove all non-allocated sections">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 104 | def strip_unneeded : Flag<["-", "--"], "strip-unneeded">, |
| 105 | HelpText<"Remove all symbols not needed by relocations">; |
| 106 | |
| 107 | def extract_dwo |
| 108 | : Flag<["-", "--"], "extract-dwo">, |
| 109 | HelpText< |
| 110 | "Remove all sections that are not DWARF .dwo sections from file">; |
| 111 | |
| 112 | def localize_hidden |
| 113 | : Flag<["-", "--"], "localize-hidden">, |
| 114 | HelpText< |
| 115 | "Mark all symbols that have hidden or internal visibility as local">; |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 116 | defm localize_symbol : Eq<"localize-symbol", "Mark <symbol> as local">, |
| 117 | MetaVarName<"symbol">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 118 | def L : JoinedOrSeparate<["-"], "L">, Alias<localize_symbol>; |
Jordan Rupprecht | dc7a888 | 2018-08-17 22:34:48 +0000 | [diff] [blame] | 119 | |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 120 | defm globalize_symbol : Eq<"globalize-symbol", "Mark <symbol> as global">, |
| 121 | MetaVarName<"symbol">; |
Jordan Rupprecht | dc7a888 | 2018-08-17 22:34:48 +0000 | [diff] [blame] | 122 | defm keep_global_symbol |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 123 | : Eq<"keep-global-symbol", |
| 124 | "Convert all symbols except <symbol> to local. May be repeated to " |
| 125 | "convert all except a set of symbols to local.">, |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 126 | MetaVarName<"symbol">; |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 127 | def G : JoinedOrSeparate<["-"], "G">, Alias<keep_global_symbol>; |
Jordan Rupprecht | dc7a888 | 2018-08-17 22:34:48 +0000 | [diff] [blame] | 128 | |
| 129 | defm keep_global_symbols |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 130 | : Eq<"keep-global-symbols", |
| 131 | "Reads a list of symbols from <filename> and runs as if " |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 132 | "--keep-global-symbol=<symbol> is set for each one. <filename> " |
| 133 | "contains one symbol per line and may contain comments beginning with " |
| 134 | "'#'. Leading and trailing whitespace is stripped from each line. May " |
| 135 | "be repeated to read symbols from many files.">, |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 136 | MetaVarName<"filename">; |
Jordan Rupprecht | dc7a888 | 2018-08-17 22:34:48 +0000 | [diff] [blame] | 137 | |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 138 | defm weaken_symbol : Eq<"weaken-symbol", "Mark <symbol> as weak">, |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 139 | MetaVarName<"symbol">; |
| 140 | def W : JoinedOrSeparate<["-"], "W">, Alias<weaken_symbol>; |
Paul Semel | b4db044 | 2018-05-02 20:14:49 +0000 | [diff] [blame] | 141 | def weaken : Flag<["-", "--"], "weaken">, |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 142 | HelpText<"Mark all global symbols as weak">; |
| 143 | def discard_all |
| 144 | : Flag<["-", "--"], "discard-all">, |
| 145 | HelpText<"Remove all local symbols except file and section symbols">; |
| 146 | def x : Flag<["-"], "x">, Alias<discard_all>; |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 147 | defm strip_symbol : Eq<"strip-symbol", "Remove symbol <symbol>">, |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 148 | MetaVarName<"symbol">; |
| 149 | def N : JoinedOrSeparate<["-"], "N">, Alias<strip_symbol>; |
Fangrui Song | d919ed9 | 2018-11-01 17:20:40 +0000 | [diff] [blame] | 150 | defm keep_symbol : Eq<"keep-symbol", "Do not remove symbol <symbol>">, |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 151 | MetaVarName<"symbol">; |
| 152 | def K : JoinedOrSeparate<["-"], "K">, Alias<keep_symbol>; |
| 153 | def only_keep_debug |
| 154 | : Flag<["-", "--"], "only-keep-debug">, |
| 155 | HelpText<"Currently ignored. Only for compatibility with GNU objcopy.">; |
Paul Semel | 5af80c6 | 2018-05-26 08:10:37 +0000 | [diff] [blame] | 156 | def keep_file_symbols : Flag<["-", "--"], "keep-file-symbols">, |
Jordan Rupprecht | 78ba7a6 | 2018-11-01 21:38:14 +0000 | [diff] [blame] | 157 | HelpText<"Do not remove file symbols">; |
| 158 | defm dump_section |
| 159 | : Eq<"dump-section", |
| 160 | "Dump contents of section named <section> into file <file>">, |
| 161 | MetaVarName<"section=file">; |
| 162 | defm prefix_symbols |
| 163 | : Eq<"prefix-symbols", "Add <prefix> to the start of every symbol name">, |
| 164 | MetaVarName<"prefix">; |
| 165 | |
| 166 | def version : Flag<["-", "--"], "version">, |
| 167 | HelpText<"Print the version and exit.">; |
Martin Storsjo | 3eeed74 | 2018-11-28 06:51:50 +0000 | [diff] [blame] | 168 | def V : Flag<["-"], "V">, Alias<version>; |
Jake Ehrlich | 14107a3 | 2018-12-03 19:49:23 +0000 | [diff] [blame] | 169 | defm build_id_link_dir |
| 170 | : Eq<"build-id-link-dir", "Set directory for --build-id-link-input and " |
| 171 | "--build-id-link-output to <dir>">, |
| 172 | MetaVarName<"dir">; |
| 173 | defm build_id_link_input |
| 174 | : Eq<"build-id-link-input", "Hard-link the input to <dir>/xx/xxx<suffix> " |
| 175 | "name derived from hex build ID">, |
| 176 | MetaVarName<"suffix">; |
| 177 | defm build_id_link_output |
| 178 | : Eq<"build-id-link-output", "Hard-link the output to <dir>/xx/xxx<suffix> " |
| 179 | "name derived from hex build ID">, |
| 180 | MetaVarName<"suffix">; |