Lines Matching refs:cl
34 cl::opt<double>
35 AbsTolerance("abs-tolerance", cl::desc("Absolute error tolerated"),
36 cl::init(0.0));
37 cl::opt<double>
38 RelTolerance("rel-tolerance", cl::desc("Relative error tolerated"),
39 cl::init(0.0));
41 cl::opt<OutputType>
42 InterpreterSel(cl::desc("Specify the \"test\" i.e. suspect back-end:"),
43 cl::values(clEnumValN(AutoPick, "auto", "Use best guess"),
58 cl::init(AutoPick));
60 cl::opt<OutputType>
61 SafeInterpreterSel(cl::desc("Specify \"safe\" i.e. known-good backend:"),
62 cl::values(clEnumValN(AutoPick, "safe-auto", "Use best guess"),
68 cl::init(AutoPick));
70 cl::opt<std::string>
72 cl::desc("Specify the path to the \"safe\" backend program"),
73 cl::init(""));
75 cl::opt<bool>
77 cl::desc("Append the exit code to the output so it gets diff'd too"),
78 cl::init(false));
80 cl::opt<std::string>
81 InputFile("input", cl::init("/dev/null"),
82 cl::desc("Filename to pipe in as stdin (default: /dev/null)"));
84 cl::list<std::string>
86 cl::desc("Additional shared objects to load "
89 cl::list<std::string>
91 cl::desc("Additional arguments to pass to the linker"));
93 cl::opt<std::string>
94 CustomCompileCommand("compile-command", cl::init("llc"),
95 cl::desc("Command to compile the bitcode (use with -compile-custom) "
98 cl::opt<std::string>
99 CustomExecCommand("exec-command", cl::init("simulate"),
100 cl::desc("Command to execute the bitcode (use with -run-custom) "
107 cl::list<std::string>
108 InputArgv("args", cl::Positional, cl::desc("<program arguments>..."),
109 cl::ZeroOrMore, cl::PositionalEatsArgs);
111 cl::opt<std::string>
112 OutputPrefix("output-prefix", cl::init("bugpoint"),
113 cl::desc("Prefix to use for outputs (default: 'bugpoint')"));
117 cl::list<std::string>
118 ToolArgv("tool-args", cl::Positional, cl::desc("<tool arguments>..."),
119 cl::ZeroOrMore, cl::PositionalEatsArgs);
121 cl::list<std::string>
122 SafeToolArgv("safe-tool-args", cl::Positional,
123 cl::desc("<safe-tool arguments>..."),
124 cl::ZeroOrMore, cl::PositionalEatsArgs);
126 cl::opt<std::string>
127 GCCBinary("gcc", cl::init("gcc"),
128 cl::desc("The gcc binary to use. (default 'gcc')"));
130 cl::list<std::string>
131 GCCToolArgv("gcc-tool-args", cl::Positional,
132 cl::desc("<gcc-tool arguments>..."),
133 cl::ZeroOrMore, cl::PositionalEatsArgs);