include "llvm/Option/OptParser.td" class F: Flag<["--", "-"], name>; class J: Joined<["--", "-"], name>; class S: Separate<["--", "-"], name>; multiclass Eq { def NAME: Separate<["--", "-"], name>; def NAME # _eq: Joined<["--", "-"], name # "=">, Alias(NAME)>, HelpText; } multiclass EqLong { def NAME: Separate<["--"], name>; def NAME # _eq: Joined<["--"], name # "=">, Alias(NAME)>, HelpText; } multiclass EqNoHelp { def NAME: Separate<["--", "-"], name>; def NAME # _eq: Joined<["--", "-"], name # "=">, Alias(NAME)>; } multiclass B { def NAME: Flag<["--", "-"], name>, HelpText; def no_ # NAME: Flag<["--", "-"], "no-" # name>, HelpText; } multiclass B_disable { def NAME: Flag<["--", "-"], name>, HelpText; def disable_ # NAME: Flag<["--", "-"], "disable-" # name>, HelpText; } multiclass B_enable_disable { def enable_ # NAME: Flag<["--", "-"], "enable-" # name>, HelpText; def disable_ # NAME: Flag<["--", "-"], "disable-" # name>, HelpText; } def L: JoinedOrSeparate<["-"], "L">, MetaVarName<"">, HelpText<"Add a directory to the library search path">; defm allow_multiple_definition: B<"allow-multiple-definition", "Allow multiple definitions", "Do not allow multiple definitions (default)">; def Bdynamic: F<"Bdynamic">, HelpText<"Link against shared libraries">; def Bstatic: F<"Bstatic">, HelpText<"Do not link against shared libraries">; defm demangle: B<"demangle", "Demangle symbol names (default)", "Do not demangle symbol names">; def disable_auto_import: F<"disable-auto-import">, HelpText<"Don't automatically import data symbols from other DLLs without dllimport">; def disable_runtime_pseudo_reloc: F<"disable-runtime-pseudo-reloc">, HelpText<"Don't do automatic imports that require runtime fixups">; def disable_stdcall_fixup: F<"disable-stdcall-fixup">, HelpText<"Don't resolve stdcall/fastcall/vectorcall to undecorated symbols">; defm dynamicbase: B_disable<"dynamicbase", "Enable ASLR", "Disable ASLR">; def enable_auto_import: F<"enable-auto-import">, HelpText<"Automatically import data symbols from other DLLs where needed">; def enable_runtime_pseudo_reloc: F<"enable-runtime-pseudo-reloc">, HelpText<"Allow automatic imports that require runtime fixups">; def enable_stdcall_fixup: F<"enable-stdcall-fixup">, HelpText<"Resolve stdcall/fastcall/vectorcall to undecorated symbols without warnings">; defm entry: Eq<"entry", "Name of entry point symbol">, MetaVarName<"">; def exclude_all_symbols: F<"exclude-all-symbols">, HelpText<"Don't automatically export any symbols">; defm exclude_symbols: Eq<"exclude-symbols", "Exclude symbols from automatic export">, MetaVarName<"">; def export_all_symbols: F<"export-all-symbols">, HelpText<"Export all symbols even if a def file or dllexport attributes are used">; defm fatal_warnings: B<"fatal-warnings", "Treat warnings as errors", "Do not treat warnings as errors (default)">; defm file_alignment: Eq<"file-alignment", "Set file alignment">; defm gc_sections: B<"gc-sections", "Remove unused sections", "Don't remove unused sections">; defm heap: Eq<"heap", "Set size of the initial heap">; def help: F<"help">, HelpText<"Print option help">; defm high_entropy_va: B_disable<"high-entropy-va", "Set the 'high entropy VA' flag", "Don't set the 'high entropy VA' flag">; defm icf: Eq<"icf", "Identical code folding">; defm image_base: Eq<"image-base", "Base address of the program">; defm insert_timestamp: B<"insert-timestamp", "Include PE header timestamp", "Don't include PE header timestamp">; def kill_at: F<"kill-at">, HelpText<"Remove @n from exported symbols">; def l: JoinedOrSeparate<["-"], "l">, MetaVarName<"">, HelpText<"Root name of library to use">; def m: JoinedOrSeparate<["-"], "m">, HelpText<"Set target emulation">; defm major_os_version: EqLong<"major-os-version", "Set the OS and subsystem major version">; defm major_subsystem_version: EqLong<"major-subsystem-version", "Set the OS and subsystem major version">; defm map: Eq<"Map", "Output a linker map">; defm minor_os_version: EqLong<"minor-os-version", "Set the OS and subsystem minor version">; defm minor_subsystem_version: EqLong<"minor-subsystem-version", "Set the OS and subsystem minor version">; defm no_seh: B_disable<"no-seh", "Set the 'no SEH' flag in the executable", "Don't set the 'no SEH' flag">; defm nxcompat: B_disable<"nxcompat", "Set the 'nxcompat' flag in the executable", "Don't set the 'nxcompat' flag">; def large_address_aware: Flag<["--"], "large-address-aware">, HelpText<"Enable large addresses">; def o: JoinedOrSeparate<["-"], "o">, MetaVarName<"">, HelpText<"Path to file to write output">; defm out_implib: Eq<"out-implib", "Import library name">; defm output_def: Eq<"output-def", "Output def file">; defm reloc_section: B_enable_disable<"reloc-section", "Enable base relocations", "Disable base relocations">; defm section_alignment: Eq<"section-alignment", "Set section alignment">; def shared: F<"shared">, HelpText<"Build a shared object">; defm subs: Eq<"subsystem", "Specify subsystem">; defm stack: Eq<"stack", "Set size of the initial stack">; def strip_all: F<"strip-all">, HelpText<"Omit all symbol information from the output binary">; def strip_debug: F<"strip-debug">, HelpText<"Omit all debug information, but keep symbol information">; defm reproduce: Eq<"reproduce", "Write a tar file containing input files and command line options to reproduce link">; defm require_defined: Eq<"require-defined", "Force symbol to be added to symbol table as an undefined one">; defm tsaware: B_disable<"tsaware", "Set the 'Terminal Server aware' flag", "Don't set the 'Terminal Server aware' flag">; defm undefined: Eq<"undefined", "Include symbol in the link, if available">; defm whole_archive: B<"whole-archive", "Include all object files for following archives", "No longer include all object files for following archives">; def v: Flag<["-"], "v">, HelpText<"Display the version number">; def verbose: F<"verbose">, HelpText<"Verbose mode">; def version: F<"version">, HelpText<"Display the version number and exit">; defm wrap: Eq<"wrap", "Use wrapper functions for symbol">, MetaVarName<"">; // LLD specific options def _HASH_HASH_HASH : Flag<["-"], "###">, HelpText<"Print (but do not run) the commands to run for this compilation">; def appcontainer: F<"appcontainer">, HelpText<"Set the appcontainer flag in the executable">; defm delayload: Eq<"delayload", "DLL to load only on demand">; defm mllvm: EqNoHelp<"mllvm">; defm pdb: Eq<"pdb", "Output PDB debug info file, chosen implicitly if the argument is empty">; defm thinlto_cache_dir: EqLong<"thinlto-cache-dir", "Path to ThinLTO cached object file directory">; defm Xlink : Eq<"Xlink", "Pass to the COFF linker">, MetaVarName<"">; defm guard_cf : B<"guard-cf", "Enable Control Flow Guard" , "Do not enable Control Flow Guard (default)">; defm guard_longjmp : B<"guard-longjmp", "Enable Control Flow Guard long jump hardening (default for --guard-cf)" , "Do not enable Control Flow Guard long jump hardening">; defm error_limit: EqLong<"error-limit", "Maximum number of errors to emit before stopping (0 = no limit)">; // Alias def alias_Bdynamic_call_shared: Flag<["-"], "call_shared">, Alias; def alias_Bdynamic_dy: Flag<["-"], "dy">, Alias; def alias_Bstatic_dn: Flag<["-"], "dn">, Alias; def alias_Bstatic_non_shared: Flag<["-"], "non_shared">, Alias; def alias_Bstatic_static: Flag<["-"], "static">, Alias; def alias_entry_e: JoinedOrSeparate<["-"], "e">, Alias; def alias_no_dynamicbase: F<"no-dynamicbase">, Alias; def alias_strip_s: Flag<["-"], "s">, Alias; def alias_strip_S: Flag<["-"], "S">, Alias; def alias_undefined_u: JoinedOrSeparate<["-"], "u">, Alias; // Ignored options def: Joined<["-"], "O">; def: F<"as-needed">; def: F<"build-id">; def: F<"disable-auto-image-base">; def: F<"enable-auto-image-base">; def: F<"end-group">; def: Flag<["--"], "full-shutdown">; defm: EqNoHelp<"major-image-version">; defm: EqNoHelp<"minor-image-version">; def: F<"no-undefined">; def: F<"pic-executable">; defm: EqNoHelp<"plugin">; defm: EqNoHelp<"plugin-opt">; defm: EqNoHelp<"sysroot">; def: F<"start-group">;