Bump version to 19.1.0 (final)
[llvm-project.git] / lld / COFF / Options.td
blob1e78a560bca86482a32f6061e9a63b88ce0623aa
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 diasdkdir : P<"diasdkdir", "Set the location of the DIA SDK">;
45 def dwodir : P<"dwodir",
46     "Directory to store .dwo files when LTO and debug fission are used">;
47 def entry   : P<"entry", "Name of entry point symbol">;
48 def errorlimit : P<"errorlimit",
49     "Maximum number of errors to emit before stopping (0 = no limit)">;
50 def exclude_symbols  : P<"exclude-symbols", "Exclude symbols from automatic export">,
51     MetaVarName<"<symbol[,symbol,...]>">;
52 def export  : P<"export", "Export a function">;
53 // No help text because /failifmismatch is not intended to be used by the user.
54 def failifmismatch : P<"failifmismatch", "">;
55 def filealign : P<"filealign", "Section alignment in the output file">;
56 def functionpadmin : F<"functionpadmin">;
57 def functionpadmin_opt : P<"functionpadmin",
58     "Prepares an image for hotpatching">;
59 def dependentloadflag : F<"dependentloadflag">;
60 def dependentloadflag_opt : P<"dependentloadflag",
61     "Sets the default load flags used to resolve the statically linked imports of a module">;
62 def guard   : P<"guard", "Control flow guard">;
63 def heap    : P<"heap", "Size of the heap">;
64 def ignore : P<"ignore", "Specify warning codes to ignore">;
65 def implib  : P<"implib", "Import library name">;
66 def noimplib : F<"noimplib">,
67     HelpText<"Don't output an import lib">;
68 def lib : F<"lib">,
69     HelpText<"Act like lib.exe; must be first argument if present">;
70 def libpath : P<"libpath", "Additional library search path">;
71 def linkrepro : Joined<["/", "-", "/?", "-?"], "linkrepro:">,
72     MetaVarName<"directory">,
73     HelpText<"Write repro.tar containing inputs and command to reproduce link">;
74 def lldignoreenv : F<"lldignoreenv">,
75     HelpText<"Ignore environment variables like %LIB%">;
76 def lldltocache : P<"lldltocache",
77     "Path to ThinLTO cached object file directory">;
78 def lldltocachepolicy : P<"lldltocachepolicy",
79     "Pruning policy for the ThinLTO cache">;
80 def lldsavetemps : F<"lldsavetemps">,
81     HelpText<"Save intermediate LTO compilation results">;
82 def lto_sample_profile: P<"lto-sample-profile", "Sample profile file path">;
83 def machine : P<"machine", "Specify target platform">;
84 def merge   : P<"merge", "Combine sections">;
85 def mllvm   : P<"mllvm", "Options to pass to LLVM">;
86 def nodefaultlib : P<"nodefaultlib", "Remove a default library">;
87 def opt     : P<"opt", "Control optimizations">;
88 def order   : P<"order", "Put functions in order">;
89 def out     : P<"out", "Path to file to write output">;
90 def natvis : P<"natvis", "Path to natvis file to embed in the PDB">;
91 def pdb : P<"pdb", "PDB file path">;
92 def pdbaltpath : P<"pdbaltpath", "PDB file path to embed in the image">;
93 def pdbpagesize : P<"pdbpagesize", "PDB page size">;
94 def pdbstripped : P<"pdbstripped", "Stripped PDB file path">;
95 def pdbstream : Joined<["/", "-", "/?", "-?"], "pdbstream:">,
96     MetaVarName<"<name>=<file>">,
97     HelpText<"Embed the contents of <file> in the PDB as named stream <name>">;
98 def section : P<"section", "Specify section attributes">;
99 def stack   : P<"stack", "Size of the stack">;
100 def stub    : P<"stub", "Specify DOS stub file">;
101 def subsystem : P<"subsystem", "Specify subsystem">;
102 def timestamp : P<"timestamp", "Specify the PE header timestamp">;
103 def vctoolsdir : P<"vctoolsdir", "Set the location of the VC tools">;
104 def vctoolsversion : P<"vctoolsversion",
105     "Specify which VC tools version to use">;
106 def version : P<"version", "Specify a version number in the PE header">;
107 def wholearchive_file : P<"wholearchive",
108     "Include all object files from this library">;
109 def winsdkdir : P<"winsdkdir", "Set the location of the Windows SDK">;
110 def winsdkversion : P<"winsdkversion", "Specify which SDK version to use">;
111 def winsysroot : P<"winsysroot",
112     "Adds several subdirectories to the library search paths">;
114 def disallowlib : Joined<["/", "-", "/?", "-?"], "disallowlib:">,
115     Alias<nodefaultlib>;
117 def manifest : F<"manifest">, HelpText<"Create .manifest file">;
118 def manifest_colon : P<
119     "manifest",
120     "NO disables manifest output; EMBED[,ID=#] embeds manifest as resource in the image">;
121 def manifestuac : P<"manifestuac", "User access control">;
122 def manifestfile : P<"manifestfile", "Manifest output path, with /manifest">;
123 def manifestdependency : P<
124     "manifestdependency",
125     "Attributes for <dependency> element in manifest file; implies /manifest">;
126 def manifestinput : P<
127     "manifestinput",
128     "Additional manifest inputs; only valid with /manifest:embed">;
130 // We cannot use multiclass P because class name "incl" is different
131 // from its command line option name. We do this because "include" is
132 // a reserved keyword in tablegen.
133 def incl : Joined<["/", "-", "/?", "-?"], "include:">,
134     HelpText<"Force symbol to be added to symbol table as undefined one">;
136 // "def" is also a keyword.
137 def deffile : Joined<["/", "-", "/?", "-?"], "def:">,
138     HelpText<"Use module-definition file">;
140 def debug : F<"debug">, HelpText<"Embed a symbol table in the image">;
141 def debug_opt : P<"debug", "Embed a symbol table in the image with option">;
142 def debugtype : P<"debugtype", "Debug Info Options">;
143 def dll : F<"dll">, HelpText<"Create a DLL">;
144 def driver : F<"driver">, HelpText<"Generate a Windows NT Kernel Mode Driver">;
145 def driver_wdm : F<"driver:wdm">,
146     HelpText<"Set IMAGE_FILE_UP_SYSTEM_ONLY bit in PE header">;
147 def driver_uponly : F<"driver:uponly">,
148     HelpText<"Set IMAGE_DLL_CHARACTERISTICS_WDM_DRIVER bit in PE header">;
149 def driver_wdm_uponly : F<"driver:wdm,uponly">;
150 def driver_uponly_wdm : F<"driver:uponly,wdm">;
151 def nodefaultlib_all : F<"nodefaultlib">,
152     HelpText<"Remove all default libraries">;
153 def noentry : F<"noentry">,
154     HelpText<"Don't add reference to DllMainCRTStartup; only valid with /dll">;
155 def profile : F<"profile">;
156 def repro : F<"Brepro">,
157     HelpText<"Use a hash of the executable as the PE header timestamp">;
158 def reproduce : Joined<["/", "-", "/?", "-?"], "reproduce:">,
159     MetaVarName<"filename">,
160     HelpText<"Write tar file containing inputs and command to reproduce link">;
161 def swaprun : P<"swaprun",
162   "Comma-separated list of 'cd' or 'net'">;
163 def swaprun_cd : F<"swaprun:cd">, Alias<swaprun>, AliasArgs<["cd"]>,
164   HelpText<"Make loader run output binary from swap instead of from CD">;
165 def swaprun_net : F<"swaprun:net">, Alias<swaprun>, AliasArgs<["net"]>,
166   HelpText<"Make loader run output binary from swap instead of from network">;
167 def verbose : F<"verbose">;
168 def wholearchive_flag : F<"wholearchive">,
169     HelpText<"Include all object files from all libraries">;
170 def release : F<"release">,
171     HelpText<"Set the Checksum in the header of an PE file">;
173 def force : F<"force">,
174     HelpText<"Allow undefined and multiply defined symbols">;
175 def force_unresolved : F<"force:unresolved">,
176     HelpText<"Allow undefined symbols when creating executables">;
177 def force_multiple : F<"force:multiple">,
178     HelpText<"Allow multiply defined symbols when creating executables">;
179 def force_multipleres : F<"force:multipleres">,
180     HelpText<"Allow multiply defined resources when creating executables">;
181 defm WX : B<"WX", "Treat warnings as errors",
182                   "Don't treat warnings as errors (default)">;
184 defm allowbind : B<"allowbind", "Enable DLL binding (default)",
185                    "Disable DLL binding">;
186 defm allowisolation : B<"allowisolation", "Enable DLL isolation (default)",
187                         "Disable DLL isolation">;
188 defm appcontainer : B<"appcontainer",
189                       "Image can only be run in an app container",
190                       "Image can run outside an app container (default)">;
191 defm cetcompat : B<"cetcompat", "Mark executable image as compatible with Control-flow Enforcement Technology (CET) Shadow Stack",
192                    "Don't mark executable image as compatible with Control-flow Enforcement Technology (CET) Shadow Stack (default)">;
193 defm dynamicbase : B<"dynamicbase", "Enable ASLR (default unless /fixed)",
194                      "Disable ASLR (default when /fixed)">;
195 defm fixed : B<"fixed", "Disable base relocations",
196                "Enable base relocations (default)">;
197 defm highentropyva : B<"highentropyva",
198                        "Enable 64-bit ASLR (default on 64-bit)",
199                        "Disable 64-bit ASLR">;
200 defm incremental : B<"incremental",
201                      "Keep original import library if contents are unchanged",
202                      "Overwrite import library even if contents are unchanged">;
203 defm inferasanlibs : B<"inferasanlibs",
204                        "Unused, generates a warning",
205                        "No effect (default)">;
206 defm integritycheck : B<"integritycheck",
207                         "Set FORCE_INTEGRITY bit in PE header",
208                         "No effect (default)">;
209 defm largeaddressaware : B<"largeaddressaware",
210                            "Enable large addresses (default on 64-bit)",
211                            "Disable large addresses (default on 32-bit)">;
212 defm nxcompat : B<"nxcompat", "Enable data execution prevention (default)",
213                   "Disable data execution provention">;
214 defm safeseh : B<"safeseh",
215                  "Produce an image with Safe Exception Handler (only for x86)",
216                  "Don't produce an image with Safe Exception Handler">;
217 defm tsaware  : B<"tsaware",
218                   "Create Terminal Server aware executable (default)",
219                   "Create non-Terminal Server aware executable">;
221 def help : F<"help">;
223 // /?? and -?? must be before /? and -? to not confuse lib/Options.
224 def help_q : Flag<["/??", "-??", "/?", "-?"], "">, Alias<help>;
226 // LLD extensions
227 defm auto_import : B_priv<"auto-import">;
228 defm runtime_pseudo_reloc : B_priv<"runtime-pseudo-reloc">;
229 def end_lib : F<"end-lib">,
230   HelpText<"End group of objects treated as if they were in a library">;
231 def exclude_all_symbols : F<"exclude-all-symbols">;
232 def export_all_symbols : F<"export-all-symbols">;
233 defm demangle : B<"demangle",
234     "Demangle symbols in output (default)",
235     "Do not demangle symbols in output">;
236 def include_optional : Joined<["/", "-", "/?", "-?"], "includeoptional:">,
237     HelpText<"Add symbol as undefined, but allow it to remain undefined">;
238 def kill_at : F<"kill-at">;
239 defm lld_allow_duplicate_weak : B_priv<"lld-allow-duplicate-weak">;
240 def lldemit : P<"lldemit", "Specify output type">;
241 def lldmingw : F<"lldmingw">;
242 def noseh : F<"noseh">;
243 def osversion : P_priv<"osversion">;
244 def output_def : Joined<["/", "-", "/?", "-?"], "output-def:">;
245 def pdb_source_path : P<"pdbsourcepath",
246     "Base path used to make relative source file path absolute in PDB">;
247 def rsp_quoting : Joined<["--"], "rsp-quoting=">,
248   HelpText<"Quoting style for response files, 'windows' (default) or 'posix'">;
249 def start_lib : F<"start-lib">,
250   HelpText<"Start group of objects treated as if they were in a library">;
251 defm stdcall_fixup : B_priv<"stdcall-fixup">;
252 def thinlto_emit_imports_files :
253     F<"thinlto-emit-imports-files">,
254     HelpText<"Emit .imports files with -thinlto-index-only">;
255 def thinlto_index_only :
256     F<"thinlto-index-only">,
257     HelpText<"Instead of linking, emit ThinLTO index files">;
258 def thinlto_index_only_arg : P<
259     "thinlto-index-only",
260     "-thinlto-index-only and also write native module names to file">;
261 def thinlto_object_suffix_replace : P<
262     "thinlto-object-suffix-replace",
263     "'old;new' replace old suffix with new suffix in ThinLTO index">;
264 def thinlto_prefix_replace: P<
265     "thinlto-prefix-replace",
266     "'old;new' replace old prefix with new prefix in ThinLTO outputs">;
267 def lto_obj_path : P<
268     "lto-obj-path",
269     "output native object for merged LTO unit to this path">;
270 def lto_cs_profile_generate: F<"lto-cs-profile-generate">,
271     HelpText<"Perform context sensitive PGO instrumentation">;
272 def lto_cs_profile_file : P<"lto-cs-profile-file",
273     "Context sensitive profile file path">;
274 defm lto_pgo_warn_mismatch: B<
275      "lto-pgo-warn-mismatch",
276      "turn on warnings about profile cfg mismatch (default)>",
277      "turn off warnings about profile cfg mismatch">;
278 def dash_dash_version : Flag<["--"], "version">,
279   HelpText<"Display the version number and exit">;
280 def threads
281     : P<"threads", "Number of threads. '1' disables multi-threading. By "
282                    "default all available hardware threads are used">;
283 def call_graph_ordering_file: P<
284     "call-graph-ordering-file",
285     "Layout sections to optimize the given callgraph">;
286 defm call_graph_profile_sort: B<
287     "call-graph-profile-sort",
288     "Reorder sections with call graph profile (default)",
289     "Do not reorder sections with call graph profile">;
290 def print_symbol_order: P<
291     "print-symbol-order",
292     "Print a symbol order specified by /call-graph-ordering-file and "
293     "/call-graph-profile-sort into the specified file">;
294 def wrap : P_priv<"wrap">;
296 def vfsoverlay : P<"vfsoverlay", "Path to a vfsoverlay yaml file to optionally look for /defaultlib's in">;
298 def time_trace_eq: Joined<["--"], "time-trace=">, MetaVarName<"<file>">,
299   HelpText<"Record time trace to <file>">;
300 def : Flag<["--"], "time-trace">, Alias<time_trace_eq>,
301   HelpText<"Record time trace to file next to output">;
303 def time_trace_granularity_eq: Joined<["--"], "time-trace-granularity=">,
304     HelpText<"Minimum time granularity (in microseconds) traced by time profiler">;
306 defm build_id: B<
307      "build-id", 
308      "Generate build ID (always on when generating PDB)",
309      "Do not Generate build ID">;
311 // Flags for debugging
312 def lldmap : F<"lldmap">;
313 def lldmap_file : P_priv<"lldmap">;
314 def map : F<"map">;
315 def map_file : P_priv<"map">;
316 def map_info : P<"mapinfo", "Include the specified information in a map file">;
317 def print_search_paths : F<"print-search-paths">;
318 def show_timing : F<"time">;
319 def summary : F<"summary">;
321 //==============================================================================
322 // The flags below do nothing. They are defined only for link.exe compatibility.
323 //==============================================================================
325 def ignoreidl : F<"ignoreidl">;
326 def ltcg : F<"ltcg">;
327 def assemblydebug : F<"assemblydebug">;
328 def nologo : F<"nologo">;
329 def throwingnew : F<"throwingnew">;
330 def editandcontinue : F<"editandcontinue">;
331 def fastfail : F<"fastfail">;
332 def kernel : F<"kernel">;
333 def pdbcompress : F<"pdbcompress">;
334 def emitpogophaseinfo : F<"emitpogophaseinfo">;
336 def delay : P_priv<"delay">;
337 def errorreport : P_priv<"errorreport">;
338 def idlout : P_priv<"idlout">;
339 def ilk : P_priv<"ilk">;
340 def ltcg_opt : P_priv<"ltcg">;
341 def assemblydebug_opt : P_priv<"assemblydebug">;
342 def ltcgout : P_priv<"ltcgout">;
343 def maxilksize : P_priv<"maxilksize">;
344 def tlbid : P_priv<"tlbid">;
345 def tlbout : P_priv<"tlbout">;
346 def verbose_all : P_priv<"verbose">;
347 def guardsym : P_priv<"guardsym">;