include "llvm/Option/OptParser.td" // link.exe accepts options starting with either a dash or a slash. // Flag that takes no arguments. class F : Flag<["/", "-", "-?"], name>; // Flag that takes one argument after ":". class P : Joined<["/", "-", "-?"], name#":">, HelpText; // Boolean flag suffixed by ":no". multiclass B { def "" : F; def _no : F, HelpText; } def base : P<"base", "Base address of the program">; def defaultlib : P<"defaultlib", "Add the library to the list of input files">; def nodefaultlib : P<"nodefaultlib", "Remove a default library">; def entry : P<"entry", "Name of entry point symbol">; // No help text because /failifmismatch is not intended to be used by the user. def failifmismatch : P<"failifmismatch", "">; def heap : P<"heap", "Size of the heap">; def align : P<"align", "Section alignment">; def libpath : P<"libpath", "Additional library search path">; def mllvm : P<"mllvm", "Options to pass to LLVM">; def out : P<"out", "Path to file to write output">; def stack : P<"stack", "Size of the stack">; def machine : P<"machine", "Specify target platform">; def version : P<"version", "Specify a version number in the PE header">; def subsystem : P<"subsystem", "Specify subsystem">; // We cannot use multiclass P because class name "incl" is different // from its command line option name. We do this because "include" is // a reserved keyword in tablegen. def incl : Joined<["/", "-"], "include:">, HelpText<"Force symbol to be added to symbol table as undefined one">; def incl_c : Separate<["/", "-"], "include">, Alias; def nodefaultlib_all : F<"nodefaultlib">; def debug : F<"debug">; def force : F<"force">, HelpText<"Allow undefined symbols when creating executables">; def force_unresolved : F<"force:unresolved">; def ref : F<"opt:ref">; def ref_no : F<"opt:noref">, HelpText<"Keep unreferenced symbols to be included to the output">; defm nxcompat : B<"nxcompat", "Disable data execution provention">; defm largeaddressaware : B<"largeaddressaware", "Disable large addresses">; defm allowbind: B<"allowbind", "Disable DLL binding">; defm fixed : B<"fixed", "Enable base relocations">; defm tsaware : B<"tsaware", "Create non-Terminal Server aware executable">; defm allowisolation : B<"allowisolation", "Set NO_ISOLATION bit">; defm dynamicbase : B<"dynamicbase", "Disable address space layout randomization">; def help : F<"help">; def help_q : F<"?">, Alias; def DASH_DASH : Option<["--"], "", KIND_REMAINING_ARGS>; // // The flags below do nothing. They are defined only for link.exe compatibility. // class Q : Joined<["/", "-", "-?"], name#":">; def nologo : F<"nologo">; def incremental : F<"incremental">; def no_incremental : F<"incremental:no">; def pdb : Q<"pdb">; def pdbaltpath : Q<"pdbaltpath">; def errorreport : Q<"errorreport">; def delay : Q<"delay">; def delayload : Q<"delayload">;