include "llvm/Option/OptParser.td" // Convenience classes for long options which only accept two dashes. For lld // specific or newer long options, we prefer two dashes to avoid collision with // short options. For many others, we have to accept both forms to be compatible // with GNU ld. class FF : Flag<["--"], name>; class JJ: Joined<["--"], name>; multiclass EEq { def NAME: Separate<["--"], name>; def NAME # _eq: Joined<["--"], name # "=">, Alias(NAME)>, HelpText; } multiclass BB { def NAME: Flag<["--"], name>, HelpText; def no_ # NAME: Flag<["--"], "no-" # name>, HelpText; } // For options whose names are multiple letters, either one dash or // two can precede the option name except those that start with 'o'. class F: Flag<["--", "-"], name>; class J: Joined<["--", "-"], name>; multiclass Eq { def NAME: Separate<["--", "-"], name>; def NAME # _eq: Joined<["--", "-"], name # "=">, Alias(NAME)>, HelpText; } multiclass B { def NAME: Flag<["--", "-"], name>, HelpText; def no_ # NAME: Flag<["--", "-"], "no-" # name>, HelpText; } defm auxiliary: Eq<"auxiliary", "Set DT_AUXILIARY field to the specified name">; def Bno_symbolic: F<"Bno-symbolic">, HelpText<"Don't bind default visibility defined symbols locally for -shared (default)">; def Bsymbolic: F<"Bsymbolic">, HelpText<"Bind default visibility defined symbols locally for -shared">; def Bsymbolic_functions: F<"Bsymbolic-functions">, HelpText<"Bind default visibility defined function symbols locally for -shared">; def Bsymbolic_non_weak_functions: F<"Bsymbolic-non-weak-functions">, HelpText<"Bind default visibility defined STB_GLOBAL function symbols locally for -shared">; def Bdynamic: F<"Bdynamic">, HelpText<"Link against shared libraries (default)">; def Bstatic: F<"Bstatic">, HelpText<"Do not link against shared libraries">; def build_id: F<"build-id">, HelpText<"Alias for --build-id=fast">; def build_id_eq: J<"build-id=">, HelpText<"Generate build ID note">, MetaVarName<"[fast,md5,sha1,uuid,0x]">; defm check_sections: B<"check-sections", "Check section addresses for overlaps (default)", "Do not check section addresses for overlaps">; defm compress_debug_sections: Eq<"compress-debug-sections", "Compress DWARF debug sections">, MetaVarName<"[none,zlib]">; defm defsym: Eq<"defsym", "Define a symbol alias">, MetaVarName<"=">; defm optimize_bb_jumps: BB<"optimize-bb-jumps", "Remove direct jumps at the end to the next basic block", "Do not remove any direct jumps at the end to the next basic block (default)">; defm fortran_common : BB<"fortran-common", "Search archive members for definitions to override COMMON symbols (default)", "Do not search archive members for definitions to override COMMON symbols">; defm split_stack_adjust_size : Eq<"split-stack-adjust-size", "Specify adjustment to stack size when a split-stack function calls a " "non-split-stack function">, MetaVarName<"">; defm library_path: Eq<"library-path", "Add a directory to the library search path">, MetaVarName<"">; def O: JoinedOrSeparate<["-"], "O">, HelpText<"Optimize output file size">; defm Tbss: Eq<"Tbss", "Same as --section-start with .bss as the sectionname">; defm Tdata: Eq<"Tdata", "Same as --section-start with .data as the sectionname">; defm Ttext: Eq<"Ttext", "Same as --section-start with .text as the sectionname">; def Ttext_segment: Separate<["-", "--"], "Ttext-segment">; defm allow_multiple_definition: B<"allow-multiple-definition", "Allow multiple definitions", "Do not allow multiple definitions (default)">; defm allow_shlib_undefined: B<"allow-shlib-undefined", "Allow unresolved references in shared libraries (default when linking a shared library)", "Do not allow unresolved references in shared libraries (default when linking an executable)">; defm apply_dynamic_relocs: BB<"apply-dynamic-relocs", "Apply link-time values for dynamic relocations", "Do not apply link-time values for dynamic relocations (default)">; defm dependent_libraries: BB<"dependent-libraries", "Process dependent library specifiers from input files (default)", "Ignore dependent library specifiers from input files">; defm as_needed: B<"as-needed", "Only set DT_NEEDED for shared libraries if used", "Always set DT_NEEDED for shared libraries (default)">; defm call_graph_ordering_file: Eq<"call-graph-ordering-file", "Layout sections to optimize the given callgraph">; defm call_graph_profile_sort: BB<"call-graph-profile-sort", "Reorder sections with call graph profile (default)", "Do not reorder sections with call graph profile">; // --chroot doesn't have a help text because it is an internal option. def chroot: Separate<["--"], "chroot">; defm color_diagnostics: B<"color-diagnostics", "Alias for --color-diagnostics=always", "Alias for --color-diagnostics=never">; def color_diagnostics_eq: J<"color-diagnostics=">, HelpText<"Use colors in diagnostics (default: auto)">, MetaVarName<"[auto,always,never]">; def cref: FF<"cref">, HelpText<"Output cross reference table">; defm define_common: B<"define-common", "Assign space to common symbols", "Do not assign space to common symbols">; defm demangle: B<"demangle", "Demangle symbol names (default)", "Do not demangle symbol names">; defm dependency_file: EEq<"dependency-file", "Write a dependency file">, MetaVarName<"">; def disable_new_dtags: F<"disable-new-dtags">, HelpText<"Disable new dynamic tags">; def discard_all: F<"discard-all">, HelpText<"Delete all local symbols">; def discard_locals: F<"discard-locals">, HelpText<"Delete temporary local symbols">; def discard_none: F<"discard-none">, HelpText<"Keep all symbols in the symbol table">; defm dynamic_linker: Eq<"dynamic-linker", "Which dynamic linker to use">; defm dynamic_list : Eq<"dynamic-list", "Similar to --export-dynamic-symbol-list. When creating a shared object, " "this additionally implies -Bsymbolic but does not set DF_SYMBOLIC">, MetaVarName<"">; def eb: F<"EB">, HelpText<"Select the big-endian format in OUTPUT_FORMAT">; def el: F<"EL">, HelpText<"Select the little-endian format in OUTPUT_FORMAT">; defm eh_frame_hdr: B<"eh-frame-hdr", "Request creation of .eh_frame_hdr section and PT_GNU_EH_FRAME segment header", "Do not create .eh_frame_hdr section">; def emit_relocs: F<"emit-relocs">, HelpText<"Generate relocations in output">; def enable_new_dtags: F<"enable-new-dtags">, HelpText<"Enable new dynamic tags (default)">; def end_group: F<"end-group">, HelpText<"Ignored for compatibility with GNU unless you pass --warn-backrefs">; def end_lib: F<"end-lib">, HelpText<"End a grouping of objects that should be treated as if they were together in an archive">; defm entry: Eq<"entry", "Name of entry point symbol">, MetaVarName<"">; defm error_limit: Eq<"error-limit", "Maximum number of errors to emit before stopping (0 = no limit)">; def error_unresolved_symbols: F<"error-unresolved-symbols">, HelpText<"Report unresolved symbols as errors">; defm error_handling_script: EEq<"error-handling-script", "Specify an error handling script">; defm exclude_libs: Eq<"exclude-libs", "Exclude static libraries from automatic export">; defm execute_only: BB<"execute-only", "Mark executable sections unreadable", "Mark executable sections readable (default)">; defm export_dynamic: B<"export-dynamic", "Put symbols in the dynamic symbol table", "Do not put symbols in the dynamic symbol table (default)">; defm export_dynamic_symbol : EEq<"export-dynamic-symbol", "(executable) Put matched symbols in the dynamic symbol table. " "(shared object) References to matched non-local STV_DEFAULT symbols " "shouldn't be bound to definitions within the shared object. " "Does not imply -Bsymbolic.">, MetaVarName<"glob">; defm export_dynamic_symbol_list : EEq<"export-dynamic-symbol-list", "Read a list of dynamic symbol patterns. Apply --export-dynamic-symbol on each pattern">, MetaVarName<"file">; defm fatal_warnings: B<"fatal-warnings", "Treat warnings as errors", "Do not treat warnings as errors (default)">; defm filter: Eq<"filter", "Set DT_FILTER field to the specified name">; defm fini: Eq<"fini", "Specify a finalizer function">, MetaVarName<"">; def fix_cortex_a53_843419: F<"fix-cortex-a53-843419">, HelpText<"Apply fixes for AArch64 Cortex-A53 erratum 843419">; def fix_cortex_a8: F<"fix-cortex-a8">, HelpText<"Apply fixes for ARM Cortex-A8 erratum 657417">; defm format: Eq<"format", "Change the input format of the inputs following this option">, MetaVarName<"[default,elf,binary]">; defm gc_sections: B<"gc-sections", "Enable garbage collection of unused sections", "Disable garbage collection of unused sections (default)">; defm gdb_index: BB<"gdb-index", "Generate .gdb_index section", "Do not generate .gdb_index section (default)">; defm gnu_unique: BB<"gnu-unique", "Enable STB_GNU_UNIQUE symbol binding (default)", "Disable STB_GNU_UNIQUE symbol binding">; defm hash_style: Eq<"hash-style", "Specify hash style (sysv, gnu or both)">; def help: F<"help">, HelpText<"Print option help">; def icf_all: F<"icf=all">, HelpText<"Enable identical code folding">; def icf_safe: F<"icf=safe">, HelpText<"Enable safe identical code folding">; def icf_none: F<"icf=none">, HelpText<"Disable identical code folding (default)">; def ignore_function_address_equality: FF<"ignore-function-address-equality">, HelpText<"lld can break the address equality of functions">; def ignore_data_address_equality: FF<"ignore-data-address-equality">, HelpText<"lld can break the address equality of data">; defm image_base: EEq<"image-base", "Set the base address">; defm init: Eq<"init", "Specify an initializer function">, MetaVarName<"">; defm just_symbols: Eq<"just-symbols", "Just link symbols">; defm keep_unique: Eq<"keep-unique", "Do not fold this symbol during ICF">; defm library: Eq<"library", "Root name of library to use">, MetaVarName<"">; def m: JoinedOrSeparate<["-"], "m">, HelpText<"Set target emulation">; defm Map: Eq<"Map", "Print a link map to the specified file">; defm merge_exidx_entries: B<"merge-exidx-entries", "Enable merging .ARM.exidx entries (default)", "Disable merging .ARM.exidx entries">; defm mmap_output_file: BB<"mmap-output-file", "Mmap the output file for writing (default)", "Do not mmap the output file for writing">; def nmagic: F<"nmagic">, MetaVarName<"">, HelpText<"Do not page align sections, link against static libraries.">; def nostdlib: F<"nostdlib">, HelpText<"Only search directories specified on the command line">; def no_dynamic_linker: F<"no-dynamic-linker">, HelpText<"Inhibit output of .interp section">; def noinhibit_exec: F<"noinhibit-exec">, HelpText<"Retain the executable output file whenever it is still usable">; def no_nmagic: F<"no-nmagic">, MetaVarName<"">, HelpText<"Page align sections (default)">; def no_omagic: F<"no-omagic">, MetaVarName<"">, HelpText<"Do not set the text data sections to be writable, page align sections (default)">; def no_undefined: F<"no-undefined">, HelpText<"Report unresolved symbols even if the linker is creating a shared library">; def o: JoinedOrSeparate<["-"], "o">, MetaVarName<"">, HelpText<"Path to file to write output">; def oformat: Separate<["--"], "oformat">, MetaVarName<"">, HelpText<"Specify the binary format for the output object file">; def omagic: FF<"omagic">, MetaVarName<"">, HelpText<"Set the text and data sections to be readable and writable, do not page align sections, link against static libraries">; defm orphan_handling: Eq<"orphan-handling", "Control how orphan sections are handled when linker script used">; defm pack_dyn_relocs: EEq<"pack-dyn-relocs", "Pack dynamic relocations in the given format">, MetaVarName<"[none,android,relr,android+relr]">; defm use_android_relr_tags: BB<"use-android-relr-tags", "Use SHT_ANDROID_RELR / DT_ANDROID_RELR* tags instead of SHT_RELR / DT_RELR*", "Use SHT_RELR / DT_RELR* tags (default)">; def pic_veneer: F<"pic-veneer">, HelpText<"Always generate position independent thunks (veneers)">; defm pie: B<"pie", "Create a position independent executable", "Do not create a position independent executable (default)">; defm print_gc_sections: B<"print-gc-sections", "List removed unused sections", "Do not list removed unused sections (default)">; defm print_icf_sections: B<"print-icf-sections", "List identical folded sections", "Do not list identical folded sections (default)">; def print_archive_stats: J<"print-archive-stats=">, HelpText<"Write archive usage statistics to the specified file. " "Print the numbers of members and fetched members for each archive">; defm print_symbol_order: Eq<"print-symbol-order", "Print a symbol order specified by --call-graph-ordering-file into the specified file">; def pop_state: F<"pop-state">, HelpText<"Undo the effect of -push-state">; def push_state: F<"push-state">, HelpText<"Save the current state of -as-needed, -static and -whole-archive">; def print_map: F<"print-map">, HelpText<"Print a link map to the standard output">; defm relax: BB<"relax", "Enable target-specific relaxations if supported (default)", "Disable target-specific relaxations">; defm reproduce: EEq<"reproduce", "Write tar file containing inputs and command to reproduce link">; defm rosegment: BB<"rosegment", "Put read-only non-executable sections in their own segment (default)", "Do not put read-only non-executable sections in their own segment">; defm rpath: Eq<"rpath", "Add a DT_RUNPATH to the output">; def relocatable: F<"relocatable">, HelpText<"Create relocatable object file">; defm retain_symbols_file: Eq<"retain-symbols-file", "Retain only the symbols listed in the file">, MetaVarName<"">; defm script: Eq<"script", "Read linker script">; defm section_start: Eq<"section-start", "Set address of section">, MetaVarName<"
">; def shared: F<"shared">, HelpText<"Build a shared object">; defm soname: Eq<"soname", "Set DT_SONAME">; defm sort_section: Eq<"sort-section", "Specifies sections sorting rule when linkerscript is used">; def start_group: F<"start-group">, HelpText<"Ignored for compatibility with GNU unless you pass --warn-backrefs">; def start_lib: F<"start-lib">, HelpText<"Start a grouping of objects that should be treated as if they were together in an archive">; def strip_all: F<"strip-all">, HelpText<"Strip all symbols. Implies --strip-debug">; def strip_debug: F<"strip-debug">, HelpText<"Strip debugging information">; defm symbol_ordering_file: Eq<"symbol-ordering-file", "Layout sections to place symbols in the order specified by symbol ordering file">; defm sysroot: Eq<"sysroot", "Set the system root">; def target1_rel: F<"target1-rel">, HelpText<"Interpret R_ARM_TARGET1 as R_ARM_REL32">; def target1_abs: F<"target1-abs">, HelpText<"Interpret R_ARM_TARGET1 as R_ARM_ABS32 (default)">; defm target2: Eq<"target2", "Interpret R_ARM_TARGET2 as , where is one of rel, abs, or got-rel">, MetaVarName<"">; defm threads : EEq<"threads", "Number of threads. '1' disables multi-threading. By default all " "available hardware threads are used">; def time_trace: FF<"time-trace">, HelpText<"Record time trace">; def time_trace_file_eq: JJ<"time-trace-file=">, HelpText<"Specify time trace output file">; defm time_trace_granularity: EEq<"time-trace-granularity", "Minimum time granularity (in microseconds) traced by time profiler">; defm toc_optimize : BB<"toc-optimize", "(PowerPC64) Enable TOC related optimizations (default)", "(PowerPC64) Disable TOC related optimizations">; defm pcrel_optimize : BB<"pcrel-optimize", "(PowerPC64) Enable PC-relative optimizations (default)", "(PowerPC64) Disable PC-relative optimizations">; def trace: F<"trace">, HelpText<"Print the names of the input files">; defm trace_symbol: Eq<"trace-symbol", "Trace references to symbols">; defm undefined: Eq<"undefined", "Force undefined symbol during linking">, MetaVarName<"">; defm undefined_glob: EEq<"undefined-glob", "Force undefined symbol during linking">, MetaVarName<"">; def unique: F<"unique">, HelpText<"Creates a separate output section for every orphan input section">; defm unresolved_symbols: Eq<"unresolved-symbols", "Determine how to handle unresolved symbols">; defm undefined_version: B<"undefined-version", "Allow unused version in version script (default)", "Report version scripts that refer undefined symbols">; defm rsp_quoting: Eq<"rsp-quoting", "Quoting style for response files">, MetaVarName<"[posix,windows]">; 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">; def power10_stubs: F<"power10-stubs">, HelpText<"Alias for --power10-stubs=auto">; def no_power10_stubs: F<"no-power10-stubs">, HelpText<"Alias for --power10-stubs=no">; def power10_stubs_eq: J<"power10-stubs=">, HelpText< "Enables Power10 instructions in all stubs without options, " "options override previous flags." "auto: Allow Power10 instructions in stubs if applicable." "no: No Power10 instructions in stubs.">; defm version_script: Eq<"version-script", "Read a version script">; defm warn_backrefs: BB<"warn-backrefs", "Warn about backward symbol references to fetch archive members", "Do not warn about backward symbol references to fetch archive members (default)">; defm warn_backrefs_exclude : EEq<"warn-backrefs-exclude", "Glob describing an archive (or an object file within --start-lib) " "which should be ignored for --warn-backrefs.">, MetaVarName<"">; defm warn_common: B<"warn-common", "Warn about duplicate common symbols", "Do not warn about duplicate common symbols (default)">; defm warn_ifunc_textrel: BB<"warn-ifunc-textrel", "Warn about using ifunc symbols with text relocations", "Do not warn about using ifunc symbols with text relocations (default)">; defm warn_symbol_ordering: BB<"warn-symbol-ordering", "Warn about problems with the symbol ordering file (default)", "Do not warn about problems with the symbol ordering file">; def warn_unresolved_symbols: F<"warn-unresolved-symbols">, HelpText<"Report unresolved symbols as warnings">; defm whole_archive: B<"whole-archive", "Force load of all members in a static library", "Do not force load of all members in a static library (default)">; def why_extract: JJ<"why-extract=">, HelpText<"Print to a file about why archive members are extracted">; defm wrap : Eq<"wrap", "Redirect symbol references to __wrap_symbol and " "__real_symbol references to symbol">, MetaVarName<"">; def z: JoinedOrSeparate<["-"], "z">, MetaVarName<"