[DebugInfo] Avoid re-ordering assignments in LCSSA
[llvm-project.git] / lld / COFF / Options.td
blob2b8e65587ad7c66d7aac8ca544ffc672c7f532de
1 include "llvm/Option/OptParser.td"
3 // link.exe accepts options starting with either a dash or a slash.
5 // Flag that takes no arguments.
6 class F<string name> : Flag<["/", "-", "/?", "-?"], name>;
8 // Flag that takes one argument after ":".
9 class P<string name, string help> :
10       Joined<["/", "-", "/?", "-?"], name#":">, HelpText<help>;
12 // Same as P<> above, but without help texts, for private undocumented
13 // options.
14 class P_priv<string name> :
15       Joined<["/", "-", "/?", "-?"], name#":">;
17 // Boolean flag which can be suffixed by ":no". Using it unsuffixed turns the
18 // flag on and using it suffixed by ":no" turns it off.
19 multiclass B<string name, string help_on, string help_off> {
20   def "" : F<name>, HelpText<help_on>;
21   def _no : F<name#":no">, HelpText<help_off>;
24 // Same as B<> above, but without help texts, for private undocumented
25 // options.
26 multiclass B_priv<string name> {
27   def "" : F<name>;
28   def _no : F<name#":no">;
31 def align   : P<"align", "Section alignment">;
32 def aligncomm : P<"aligncomm", "Set common symbol alignment">;
33 def alternatename : P<"alternatename", "Define weak alias">;
34 def base    : P<"base", "Base address of the program">;
35 def color_diagnostics: Flag<["--"], "color-diagnostics">,
36     HelpText<"Alias for --color-diagnostics=always">;
37 def no_color_diagnostics: Flag<["--"], "no-color-diagnostics">,
38     HelpText<"Alias for --color-diagnostics=never">;
39 def color_diagnostics_eq: Joined<["--"], "color-diagnostics=">,
40     HelpText<"Use colors in diagnostics (default: auto)">,
41     MetaVarName<"[auto,always,never]">;
42 def defaultlib : P<"defaultlib", "Add the library to the list of input files">;
43 def delayload : P<"delayload", "Delay loaded DLL name">;
44 def entry   : P<"entry", "Name of entry point symbol">;
45 def errorlimit : P<"errorlimit",
46     "Maximum number of errors to emit before stopping (0 = no limit)">;
47 def export  : P<"export", "Export a function">;
48 // No help text because /failifmismatch is not intended to be used by the user.
49 def failifmismatch : P<"failifmismatch", "">;
50 def filealign : P<"filealign", "Section alignment in the output file">;
51 def functionpadmin : F<"functionpadmin">;
52 def functionpadmin_opt : P<"functionpadmin",
53     "Prepares an image for hotpatching">;
54 def guard   : P<"guard", "Control flow guard">;
55 def heap    : P<"heap", "Size of the heap">;
56 def ignore : P<"ignore", "Specify warning codes to ignore">;
57 def implib  : P<"implib", "Import library name">;
58 def lib : F<"lib">,
59     HelpText<"Act like lib.exe; must be first argument if present">;
60 def libpath : P<"libpath", "Additional library search path">;
61 def linkrepro : Joined<["/", "-", "/?", "-?"], "linkrepro:">,
62     MetaVarName<"directory">,
63     HelpText<"Write repro.tar containing inputs and command to reproduce link">;
64 def lldignoreenv : F<"lldignoreenv">,
65     HelpText<"Ignore environment variables like %LIB%">;
66 def lldltocache : P<"lldltocache",
67     "Path to ThinLTO cached object file directory">;
68 def lldltocachepolicy : P<"lldltocachepolicy",
69     "Pruning policy for the ThinLTO cache">;
70 def lldsavetemps : F<"lldsavetemps">,
71     HelpText<"Save temporary files instead of deleting them">;
72 def machine : P<"machine", "Specify target platform">;
73 def merge   : P<"merge", "Combine sections">;
74 def mllvm   : P<"mllvm", "Options to pass to LLVM">;
75 def nodefaultlib : P<"nodefaultlib", "Remove a default library">;
76 def opt     : P<"opt", "Control optimizations">;
77 def order   : P<"order", "Put functions in order">;
78 def out     : P<"out", "Path to file to write output">;
79 def natvis : P<"natvis", "Path to natvis file to embed in the PDB">;
80 def pdb : P<"pdb", "PDB file path">;
81 def pdbstripped : P<"pdbstripped", "Stripped PDB file path">;
82 def pdbaltpath : P<"pdbaltpath", "PDB file path to embed in the image">;
83 def pdbstream : Joined<["/", "-", "/?", "-?"], "pdbstream:">,
84     MetaVarName<"<name>=<file>">,
85     HelpText<"Embed the contents of <file> in the PDB as named stream <name>">;
86 def section : P<"section", "Specify section attributes">;
87 def stack   : P<"stack", "Size of the stack">;
88 def stub    : P<"stub", "Specify DOS stub file">;
89 def subsystem : P<"subsystem", "Specify subsystem">;
90 def timestamp : P<"timestamp", "Specify the PE header timestamp">;
91 def version : P<"version", "Specify a version number in the PE header">;
92 def wholearchive_file : P<"wholearchive",
93     "Include all object files from this library">;
95 def disallowlib : Joined<["/", "-", "/?", "-?"], "disallowlib:">,
96     Alias<nodefaultlib>;
98 def manifest : F<"manifest">, HelpText<"Create .manifest file">;
99 def manifest_colon : P<
100     "manifest",
101     "NO disables manifest output; EMBED[,ID=#] embeds manifest as resource in the image">;
102 def manifestuac : P<"manifestuac", "User access control">;
103 def manifestfile : P<"manifestfile", "Manifest output path, with /manifest">;
104 def manifestdependency : P<
105     "manifestdependency",
106     "Attributes for <dependency> element in manifest file; implies /manifest">;
107 def manifestinput : P<
108     "manifestinput",
109     "Additional manifest inputs; only valid with /manifest:embed">;
111 // We cannot use multiclass P because class name "incl" is different
112 // from its command line option name. We do this because "include" is
113 // a reserved keyword in tablegen.
114 def incl : Joined<["/", "-", "/?", "-?"], "include:">,
115     HelpText<"Force symbol to be added to symbol table as undefined one">;
117 // "def" is also a keyword.
118 def deffile : Joined<["/", "-", "/?", "-?"], "def:">,
119     HelpText<"Use module-definition file">;
121 def debug : F<"debug">, HelpText<"Embed a symbol table in the image">;
122 def debug_opt : P<"debug", "Embed a symbol table in the image with option">;
123 def debugtype : P<"debugtype", "Debug Info Options">;
124 def dll : F<"dll">, HelpText<"Create a DLL">;
125 def driver : F<"driver">, HelpText<"Generate a Windows NT Kernel Mode Driver">;
126 def driver_wdm : F<"driver:wdm">,
127     HelpText<"Set IMAGE_FILE_UP_SYSTEM_ONLY bit in PE header">;
128 def driver_uponly : F<"driver:uponly">,
129     HelpText<"Set IMAGE_DLL_CHARACTERISTICS_WDM_DRIVER bit in PE header">;
130 def driver_wdm_uponly : F<"driver:wdm,uponly">;
131 def driver_uponly_wdm : F<"driver:uponly,wdm">;
132 def nodefaultlib_all : F<"nodefaultlib">,
133     HelpText<"Remove all default libraries">;
134 def noentry : F<"noentry">,
135     HelpText<"Don't add reference to DllMainCRTStartup; only valid with /dll">;
136 def profile : F<"profile">;
137 def repro : F<"Brepro">,
138     HelpText<"Use a hash of the executable as the PE header timestamp">;
139 def reproduce : Joined<["/", "-", "/?", "-?"], "reproduce:">,
140     MetaVarName<"filename">,
141     HelpText<"Write tar file containing inputs and command to reproduce link">;
142 def swaprun : P<"swaprun",
143   "Comma-separated list of 'cd' or 'net'">;
144 def swaprun_cd : F<"swaprun:cd">, Alias<swaprun>, AliasArgs<["cd"]>,
145   HelpText<"Make loader run output binary from swap instead of from CD">;
146 def swaprun_net : F<"swaprun:net">, Alias<swaprun>, AliasArgs<["net"]>,
147   HelpText<"Make loader run output binary from swap instead of from network">;
148 def verbose : F<"verbose">;
149 def wholearchive_flag : F<"wholearchive">,
150     HelpText<"Include all object files from all libraries">;
152 def force : F<"force">,
153     HelpText<"Allow undefined and multiply defined symbols">;
154 def force_unresolved : F<"force:unresolved">,
155     HelpText<"Allow undefined symbols when creating executables">;
156 def force_multiple : F<"force:multiple">,
157     HelpText<"Allow multiply defined symbols when creating executables">;
158 def force_multipleres : F<"force:multipleres">,
159     HelpText<"Allow multiply defined resources when creating executables">;
160 defm WX : B<"WX", "Treat warnings as errors", "Don't treat warnings as errors">;
162 defm allowbind : B<"allowbind", "Enable DLL binding (default)",
163                    "Disable DLL binding">;
164 defm allowisolation : B<"allowisolation", "Enable DLL isolation (default)",
165                         "Disable DLL isolation">;
166 defm appcontainer : B<"appcontainer",
167                       "Image can only be run in an app container",
168                       "Image can run outside an app container (default)">;
169 defm cetcompat : B<"cetcompat", "Mark executable image as compatible with Control-flow Enforcement Technology (CET) Shadow Stack",
170                    "Don't mark executable image as compatible with Control-flow Enforcement Technology (CET) Shadow Stack (default)">;
171 defm dynamicbase : B<"dynamicbase", "Enable ASLR (default unless /fixed)",
172                      "Disable ASLR (default when /fixed)">;
173 defm fixed : B<"fixed", "Disable base relocations",
174                "Enable base relocations (default)">;
175 defm highentropyva : B<"highentropyva",
176                        "Enable 64-bit ASLR (default on 64-bit)",
177                        "Disable 64-bit ASLR">;
178 defm incremental : B<"incremental",
179                      "Keep original import library if contents are unchanged",
180                      "Overwrite import library even if contents are unchanged">;
181 defm integritycheck : B<"integritycheck",
182                         "Set FORCE_INTEGRITY bit in PE header",
183                         "No effect (default)">;
184 defm largeaddressaware : B<"largeaddressaware",
185                            "Enable large addresses (default on 64-bit)",
186                            "Disable large addresses (default on 32-bit)">;
187 defm nxcompat : B<"nxcompat", "Enable data execution prevention (default)",
188                   "Disable data execution provention">;
189 defm safeseh : B<"safeseh",
190                  "Produce an image with Safe Exception Handler (only for x86)",
191                  "Don't produce an image with Safe Exception Handler">;
192 defm tsaware  : B<"tsaware",
193                   "Create Terminal Server aware executable (default)",
194                   "Create non-Terminal Server aware executable">;
196 def help : F<"help">;
198 // /?? and -?? must be before /? and -? to not confuse lib/Options.
199 def help_q : Flag<["/??", "-??", "/?", "-?"], "">, Alias<help>;
201 // LLD extensions
202 defm auto_import : B_priv<"auto-import">;
203 defm runtime_pseudo_reloc : B_priv<"runtime-pseudo-reloc">;
204 def end_lib : F<"end-lib">,
205   HelpText<"End group of objects treated as if they were in a library">;
206 def exclude_all_symbols : F<"exclude-all-symbols">;
207 def export_all_symbols : F<"export-all-symbols">;
208 defm demangle : B<"demangle",
209     "Demangle symbols in output (default)",
210     "Do not demangle symbols in output">;
211 def include_optional : Joined<["/", "-", "/?", "-?"], "includeoptional:">,
212     HelpText<"Add symbol as undefined, but allow it to remain undefined">;
213 def kill_at : F<"kill-at">;
214 def lldmingw : F<"lldmingw">;
215 def noseh : F<"noseh">;
216 def osversion : P_priv<"osversion">;
217 def output_def : Joined<["/", "-", "/?", "-?"], "output-def:">;
218 def pdb_source_path : P<"pdbsourcepath",
219     "Base path used to make relative source file path absolute in PDB">;
220 def rsp_quoting : Joined<["--"], "rsp-quoting=">,
221   HelpText<"Quoting style for response files, 'windows' (default) or 'posix'">;
222 def start_lib : F<"start-lib">,
223   HelpText<"Start group of objects treated as if they were in a library">;
224 def thinlto_emit_imports_files :
225     F<"thinlto-emit-imports-files">,
226     HelpText<"Emit .imports files with -thinlto-index-only">;
227 def thinlto_index_only :
228     F<"thinlto-index-only">,
229     HelpText<"Instead of linking, emit ThinLTO index files">;
230 def thinlto_index_only_arg : P<
231     "thinlto-index-only",
232     "-thinlto-index-only and also write native module names to file">;
233 def thinlto_object_suffix_replace : P<
234     "thinlto-object-suffix-replace",
235     "'old;new' replace old suffix with new suffix in ThinLTO index">;
236 def thinlto_prefix_replace: P<
237     "thinlto-prefix-replace",
238     "'old;new' replace old prefix with new prefix in ThinLTO outputs">;
239 def lto_obj_path : P<
240     "lto-obj-path",
241     "output native object for merged LTO unit to this path">;
242 def dash_dash_version : Flag<["--"], "version">,
243   HelpText<"Print version information">;
244 def threads
245     : P<"threads", "Number of threads. '1' disables multi-threading. By "
246                    "default all available hardware threads are used">;
247 def call_graph_ordering_file: P<
248     "call-graph-ordering-file", 
249     "Layout sections to optimize the given callgraph">;
250 defm call_graph_profile_sort: B<
251     "call-graph-profile-sort",
252     "Reorder sections with call graph profile (default)",
253     "Do not reorder sections with call graph profile">;
254 def print_symbol_order: P<
255     "print-symbol-order",
256     "Print a symbol order specified by /call-graph-ordering-file and "
257     "/call-graph-profile-sort into the specified file">;
258 def wrap : P_priv<"wrap">;
260 // Flags for debugging
261 def lldmap : F<"lldmap">;
262 def lldmap_file : Joined<["/", "-", "/?", "-?"], "lldmap:">;
263 def map : F<"map">;
264 def map_file : Joined<["/", "-", "/?", "-?"], "map:">;
265 def show_timing : F<"time">;
266 def summary : F<"summary">;
268 //==============================================================================
269 // The flags below do nothing. They are defined only for link.exe compatibility.
270 //==============================================================================
272 class QF<string name> : Joined<["/", "-", "/?", "-?"], name#":">;
274 def ignoreidl : F<"ignoreidl">;
275 def nologo : F<"nologo">;
276 def throwingnew : F<"throwingnew">;
277 def editandcontinue : F<"editandcontinue">;
278 def fastfail : F<"fastfail">;
280 def delay : QF<"delay">;
281 def errorreport : QF<"errorreport">;
282 def idlout : QF<"idlout">;
283 def maxilksize : QF<"maxilksize">;
284 def tlbid : QF<"tlbid">;
285 def tlbout : QF<"tlbout">;
286 def verbose_all : QF<"verbose">;
287 def guardsym : QF<"guardsym">;