blob: d45694b04616d4231ec28dade16f87740dce2a62 [file] [log] [blame]
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001//===-- CommandLine.cpp - Command line parser implementation --------------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerdbab15a2001-07-23 17:17:47 +00009//
10// This class implements a command line argument processor that is useful when
11// creating a tool. It provides a simple, minimalistic interface that is easily
12// extensible and supports nonlocal (library) command line options.
13//
Chris Lattner03fe1bd2001-07-23 23:04:07 +000014// Note that rather than trying to figure out what this code does, you could try
15// reading the library documentation located in docs/CommandLine.html
16//
Chris Lattnerdbab15a2001-07-23 17:17:47 +000017//===----------------------------------------------------------------------===//
18
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include "llvm/Support/CommandLine.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000020#include "llvm/Support/ErrorHandling.h"
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000021#include "llvm/Support/MemoryBuffer.h"
Chris Lattner90aa8392006-10-04 21:52:35 +000022#include "llvm/Support/ManagedStatic.h"
Chris Lattnerca179342009-08-23 18:09:02 +000023#include "llvm/Support/raw_ostream.h"
Daniel Dunbar603bea32009-07-16 02:06:09 +000024#include "llvm/Target/TargetRegistry.h"
Reid Spencer6f4c6072006-08-23 07:10:06 +000025#include "llvm/System/Path.h"
Chris Lattnerca179342009-08-23 18:09:02 +000026#include "llvm/ADT/OwningPtr.h"
27#include "llvm/Config/config.h"
Chris Lattnerdbab15a2001-07-23 17:17:47 +000028#include <map>
29#include <set>
Brian Gaeke2d6a2362003-10-10 17:01:36 +000030#include <cerrno>
Chris Lattnerca179342009-08-23 18:09:02 +000031#include <cstdlib>
Chris Lattner2cdd21c2003-12-14 21:35:53 +000032using namespace llvm;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000033using namespace cl;
34
Chris Lattner7422a762006-08-27 12:45:47 +000035//===----------------------------------------------------------------------===//
36// Template instantiations and anchors.
37//
38TEMPLATE_INSTANTIATION(class basic_parser<bool>);
Dale Johannesen81da02b2007-05-22 17:14:46 +000039TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
Chris Lattner7422a762006-08-27 12:45:47 +000040TEMPLATE_INSTANTIATION(class basic_parser<int>);
41TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
42TEMPLATE_INSTANTIATION(class basic_parser<double>);
43TEMPLATE_INSTANTIATION(class basic_parser<float>);
44TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
Bill Wendlingb587f962009-04-29 23:26:16 +000045TEMPLATE_INSTANTIATION(class basic_parser<char>);
Chris Lattner7422a762006-08-27 12:45:47 +000046
47TEMPLATE_INSTANTIATION(class opt<unsigned>);
48TEMPLATE_INSTANTIATION(class opt<int>);
49TEMPLATE_INSTANTIATION(class opt<std::string>);
Bill Wendlingb587f962009-04-29 23:26:16 +000050TEMPLATE_INSTANTIATION(class opt<char>);
Chris Lattner7422a762006-08-27 12:45:47 +000051TEMPLATE_INSTANTIATION(class opt<bool>);
52
53void Option::anchor() {}
54void basic_parser_impl::anchor() {}
55void parser<bool>::anchor() {}
Dale Johannesen81da02b2007-05-22 17:14:46 +000056void parser<boolOrDefault>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000057void parser<int>::anchor() {}
58void parser<unsigned>::anchor() {}
59void parser<double>::anchor() {}
60void parser<float>::anchor() {}
61void parser<std::string>::anchor() {}
Bill Wendlingb587f962009-04-29 23:26:16 +000062void parser<char>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000063
64//===----------------------------------------------------------------------===//
65
Chris Lattnerefa3da52006-10-13 00:06:24 +000066// Globals for name and overview of program. Program name is not a string to
67// avoid static ctor/dtor issues.
68static char ProgramName[80] = "<premain>";
Reid Spencere1cc1502004-09-01 04:41:28 +000069static const char *ProgramOverview = 0;
70
Chris Lattnerc540ebb2004-11-19 17:08:15 +000071// This collects additional help to be printed.
Chris Lattner90aa8392006-10-04 21:52:35 +000072static ManagedStatic<std::vector<const char*> > MoreHelp;
Chris Lattnerc540ebb2004-11-19 17:08:15 +000073
Chris Lattner90aa8392006-10-04 21:52:35 +000074extrahelp::extrahelp(const char *Help)
Chris Lattnerc540ebb2004-11-19 17:08:15 +000075 : morehelp(Help) {
Chris Lattner90aa8392006-10-04 21:52:35 +000076 MoreHelp->push_back(Help);
Chris Lattnerc540ebb2004-11-19 17:08:15 +000077}
78
Chris Lattner69d6f132007-04-12 00:36:29 +000079static bool OptionListChanged = false;
80
81// MarkOptionsChanged - Internal helper function.
82void cl::MarkOptionsChanged() {
83 OptionListChanged = true;
84}
85
Chris Lattner9878d6a2007-04-06 21:06:55 +000086/// RegisteredOptionList - This is the list of the command line options that
87/// have statically constructed themselves.
88static Option *RegisteredOptionList = 0;
89
90void Option::addArgument() {
91 assert(NextRegistered == 0 && "argument multiply registered!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000092
Chris Lattner9878d6a2007-04-06 21:06:55 +000093 NextRegistered = RegisteredOptionList;
94 RegisteredOptionList = this;
Chris Lattner69d6f132007-04-12 00:36:29 +000095 MarkOptionsChanged();
Chris Lattner9878d6a2007-04-06 21:06:55 +000096}
97
Chris Lattner69d6f132007-04-12 00:36:29 +000098
Chris Lattner331de232002-07-22 02:07:59 +000099//===----------------------------------------------------------------------===//
Chris Lattner7422a762006-08-27 12:45:47 +0000100// Basic, shared command line option processing machinery.
Chris Lattner331de232002-07-22 02:07:59 +0000101//
102
Chris Lattner9878d6a2007-04-06 21:06:55 +0000103/// GetOptionInfo - Scan the list of registered options, turning them into data
104/// structures that are easier to handle.
105static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000106 std::vector<Option*> &SinkOpts,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000107 std::map<std::string, Option*> &OptionsMap) {
108 std::vector<const char*> OptionNames;
Chris Lattneree2b3202007-04-07 05:38:53 +0000109 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000110 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
111 // If this option wants to handle multiple option names, get the full set.
112 // This handles enum options like "-O1 -O2" etc.
113 O->getExtraOptionNames(OptionNames);
114 if (O->ArgStr[0])
115 OptionNames.push_back(O->ArgStr);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000116
Chris Lattner9878d6a2007-04-06 21:06:55 +0000117 // Handle named options.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000118 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000119 // Add argument to the argument map!
120 if (!OptionsMap.insert(std::pair<std::string,Option*>(OptionNames[i],
121 O)).second) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000122 errs() << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman33540ad2008-05-30 13:26:11 +0000123 << OptionNames[i] << "' defined more than once!\n";
Chris Lattner9878d6a2007-04-06 21:06:55 +0000124 }
125 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000126
Chris Lattner9878d6a2007-04-06 21:06:55 +0000127 OptionNames.clear();
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000128
Chris Lattner9878d6a2007-04-06 21:06:55 +0000129 // Remember information about positional options.
130 if (O->getFormattingFlag() == cl::Positional)
131 PositionalOpts.push_back(O);
Dan Gohman61e015f2008-02-23 01:55:25 +0000132 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000133 SinkOpts.push_back(O);
Chris Lattner9878d6a2007-04-06 21:06:55 +0000134 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattneree2b3202007-04-07 05:38:53 +0000135 if (CAOpt)
Chris Lattner9878d6a2007-04-06 21:06:55 +0000136 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
Chris Lattneree2b3202007-04-07 05:38:53 +0000137 CAOpt = O;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000138 }
Chris Lattnere8e258b2002-07-29 20:58:42 +0000139 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000140
Chris Lattneree2b3202007-04-07 05:38:53 +0000141 if (CAOpt)
142 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000143
Chris Lattneree2b3202007-04-07 05:38:53 +0000144 // Make sure that they are in order of registration not backwards.
145 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
Chris Lattnere8e258b2002-07-29 20:58:42 +0000146}
147
Chris Lattner9878d6a2007-04-06 21:06:55 +0000148
Chris Lattneraf035f32007-04-05 21:58:17 +0000149/// LookupOption - Lookup the option specified by the specified option on the
150/// command line. If there is a value specified (after an equal sign) return
151/// that as well.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000152static Option *LookupOption(const char *&Arg, const char *&Value,
153 std::map<std::string, Option*> &OptionsMap) {
Chris Lattneraf035f32007-04-05 21:58:17 +0000154 while (*Arg == '-') ++Arg; // Eat leading dashes
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000155
Chris Lattneraf035f32007-04-05 21:58:17 +0000156 const char *ArgEnd = Arg;
157 while (*ArgEnd && *ArgEnd != '=')
158 ++ArgEnd; // Scan till end of argument name.
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000159
Chris Lattneraf035f32007-04-05 21:58:17 +0000160 if (*ArgEnd == '=') // If we have an equals sign...
161 Value = ArgEnd+1; // Get the value, not the equals
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000162
163
Chris Lattneraf035f32007-04-05 21:58:17 +0000164 if (*Arg == 0) return 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000165
Chris Lattneraf035f32007-04-05 21:58:17 +0000166 // Look up the option.
Chris Lattneraf035f32007-04-05 21:58:17 +0000167 std::map<std::string, Option*>::iterator I =
Chris Lattner9878d6a2007-04-06 21:06:55 +0000168 OptionsMap.find(std::string(Arg, ArgEnd));
169 return I != OptionsMap.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000170}
171
Chris Lattnercaccd762001-10-27 05:54:17 +0000172static inline bool ProvideOption(Option *Handler, const char *ArgName,
173 const char *Value, int argc, char **argv,
174 int &i) {
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000175 // Is this a multi-argument option?
176 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
177
Chris Lattnercaccd762001-10-27 05:54:17 +0000178 // Enforce value requirements
179 switch (Handler->getValueExpectedFlag()) {
180 case ValueRequired:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000181 if (Value == 0) { // No value specified?
Chris Lattnercaccd762001-10-27 05:54:17 +0000182 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
183 Value = argv[++i];
184 } else {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000185 return Handler->error("requires a value!");
Chris Lattnercaccd762001-10-27 05:54:17 +0000186 }
187 }
188 break;
189 case ValueDisallowed:
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000190 if (NumAdditionalVals > 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000191 return Handler->error("multi-valued option specified"
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000192 " with ValueDisallowed modifier!");
193
Chris Lattner6d5857e2005-05-10 23:20:17 +0000194 if (Value)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000195 return Handler->error("does not allow a value! '" +
Chris Lattnerca6433f2003-05-22 20:06:43 +0000196 std::string(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000197 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000198 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000199 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000200 default:
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000201 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000202 << ": Bad ValueMask flag! CommandLine usage error:"
203 << Handler->getValueExpectedFlag() << "\n";
Torok Edwinc23197a2009-07-14 16:55:14 +0000204 llvm_unreachable(0);
Chris Lattnercaccd762001-10-27 05:54:17 +0000205 }
206
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000207 // If this isn't a multi-arg option, just run the handler.
208 if (NumAdditionalVals == 0) {
209 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
210 }
211 // If it is, run the handle several times.
212 else {
213 bool MultiArg = false;
214
215 if (Value) {
216 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
217 return true;
218 --NumAdditionalVals;
219 MultiArg = true;
220 }
221
222 while (NumAdditionalVals > 0) {
223
224 if (i+1 < argc) {
225 Value = argv[++i];
226 } else {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000227 return Handler->error("not enough values!");
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000228 }
229 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
230 return true;
231 MultiArg = true;
232 --NumAdditionalVals;
233 }
234 return false;
235 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000236}
237
Misha Brukmanf976c852005-04-21 22:55:34 +0000238static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000239 int i) {
240 int Dummy = i;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000241 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000242}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000243
Chris Lattner331de232002-07-22 02:07:59 +0000244
245// Option predicates...
246static inline bool isGrouping(const Option *O) {
247 return O->getFormattingFlag() == cl::Grouping;
248}
249static inline bool isPrefixedOrGrouping(const Option *O) {
250 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
251}
252
253// getOptionPred - Check to see if there are any options that satisfy the
254// specified predicate with names that are the prefixes in Name. This is
255// checked by progressively stripping characters off of the name, checking to
256// see if there options that satisfy the predicate. If we find one, return it,
257// otherwise return null.
258//
Evan Cheng34cd4a42008-05-05 18:30:58 +0000259static Option *getOptionPred(std::string Name, size_t &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000260 bool (*Pred)(const Option*),
261 std::map<std::string, Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000262
Chris Lattner9878d6a2007-04-06 21:06:55 +0000263 std::map<std::string, Option*>::iterator OMI = OptionsMap.find(Name);
264 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000265 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000266 return OMI->second;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000267 }
268
Chris Lattner331de232002-07-22 02:07:59 +0000269 if (Name.size() == 1) return 0;
270 do {
271 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000272 OMI = OptionsMap.find(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000273
274 // Loop while we haven't found an option and Name still has at least two
275 // characters in it (so that the next iteration will not be the empty
276 // string...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000277 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000278
Chris Lattner9878d6a2007-04-06 21:06:55 +0000279 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000280 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000281 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000282 }
283 return 0; // No option found!
284}
285
286static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000287 return O->getNumOccurrencesFlag() == cl::Required ||
288 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000289}
290
291static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000292 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
293 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000294}
Chris Lattnercaccd762001-10-27 05:54:17 +0000295
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000296/// ParseCStringVector - Break INPUT up wherever one or more
297/// whitespace characters are found, and store the resulting tokens in
298/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
299/// using strdup (), so it is the caller's responsibility to free ()
300/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000301///
Chris Lattner23288582006-08-27 22:10:29 +0000302static void ParseCStringVector(std::vector<char *> &output,
303 const char *input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000304 // Characters which will be treated as token separators:
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000305 static const char *const delims = " \v\f\t\r\n";
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000306
307 std::string work (input);
308 // Skip past any delims at head of input string.
309 size_t pos = work.find_first_not_of (delims);
310 // If the string consists entirely of delims, then exit early.
311 if (pos == std::string::npos) return;
312 // Otherwise, jump forward to beginning of first word.
313 work = work.substr (pos);
314 // Find position of first delimiter.
315 pos = work.find_first_of (delims);
316
317 while (!work.empty() && pos != std::string::npos) {
318 // Everything from 0 to POS is the next word to copy.
319 output.push_back (strdup (work.substr (0,pos).c_str ()));
320 // Is there another word in the string?
321 size_t nextpos = work.find_first_not_of (delims, pos + 1);
322 if (nextpos != std::string::npos) {
323 // Yes? Then remove delims from beginning ...
324 work = work.substr (work.find_first_not_of (delims, pos + 1));
325 // and find the end of the word.
326 pos = work.find_first_of (delims);
327 } else {
328 // No? (Remainder of string is delims.) End the loop.
329 work = "";
330 pos = std::string::npos;
331 }
332 }
333
334 // If `input' ended with non-delim char, then we'll get here with
335 // the last word of `input' in `work'; copy it now.
336 if (!work.empty ()) {
337 output.push_back (strdup (work.c_str ()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000338 }
339}
340
341/// ParseEnvironmentOptions - An alternative entry point to the
342/// CommandLine library, which allows you to read the program's name
343/// from the caller (as PROGNAME) and its command-line arguments from
344/// an environment variable (whose name is given in ENVVAR).
345///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000346void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000347 const char *Overview, bool ReadResponseFiles) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000348 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000349 assert(progName && "Program name not specified");
350 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000351
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000352 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000353 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000354 if (!envValue)
355 return;
356
Brian Gaeke06b06c52003-08-14 22:00:59 +0000357 // Get program's "name", which we wouldn't know without the caller
358 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000359 std::vector<char*> newArgv;
360 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000361
362 // Parse the value of the environment variable into a "command line"
363 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000364 ParseCStringVector(newArgv, envValue);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000365 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000366 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000367
368 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000369 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
370 i != e; ++i)
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000371 free (*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000372}
373
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000374
375/// ExpandResponseFiles - Copy the contents of argv into newArgv,
376/// substituting the contents of the response files for the arguments
377/// of type @file.
378static void ExpandResponseFiles(int argc, char** argv,
379 std::vector<char*>& newArgv) {
380 for (int i = 1; i != argc; ++i) {
381 char* arg = argv[i];
382
383 if (arg[0] == '@') {
384
385 sys::PathWithStatus respFile(++arg);
386
387 // Check that the response file is not empty (mmap'ing empty
388 // files can be problematic).
389 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000390 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000391
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000392 // Mmap the response file into memory.
393 OwningPtr<MemoryBuffer>
394 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000395
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000396 // If we could open the file, parse its contents, otherwise
397 // pass the @file option verbatim.
Mikhail Glushenkov6c55b1c2009-01-28 03:46:22 +0000398
399 // TODO: we should also support recursive loading of response files,
400 // since this is how gcc behaves. (From their man page: "The file may
401 // itself contain additional @file options; any such options will be
402 // processed recursively.")
403
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000404 if (respFilePtr != 0) {
405 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
406 continue;
407 }
408 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000409 }
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000410 newArgv.push_back(strdup(arg));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000411 }
412}
413
Dan Gohman9a526322007-10-09 16:04:57 +0000414void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000415 const char *Overview, bool ReadResponseFiles) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000416 // Process all registered options.
417 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000418 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000419 std::map<std::string, Option*> Opts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000420 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000421
Chris Lattner9878d6a2007-04-06 21:06:55 +0000422 assert((!Opts.empty() || !PositionalOpts.empty()) &&
423 "No options specified!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000424
425 // Expand response files.
426 std::vector<char*> newArgv;
427 if (ReadResponseFiles) {
428 newArgv.push_back(strdup(argv[0]));
429 ExpandResponseFiles(argc, argv, newArgv);
430 argv = &newArgv[0];
Evan Cheng34cd4a42008-05-05 18:30:58 +0000431 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000432 }
433
Chris Lattnerefa3da52006-10-13 00:06:24 +0000434 // Copy the program name into ProgName, making sure not to overflow it.
435 std::string ProgName = sys::Path(argv[0]).getLast();
436 if (ProgName.size() > 79) ProgName.resize(79);
437 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000438
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000439 ProgramOverview = Overview;
440 bool ErrorParsing = false;
441
Chris Lattner331de232002-07-22 02:07:59 +0000442 // Check out the positional arguments to collect information about them.
443 unsigned NumPositionalRequired = 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000444
Chris Lattnerde013242005-08-08 17:25:38 +0000445 // Determine whether or not there are an unlimited number of positionals
446 bool HasUnlimitedPositionals = false;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000447
Chris Lattner331de232002-07-22 02:07:59 +0000448 Option *ConsumeAfterOpt = 0;
449 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000450 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000451 assert(PositionalOpts.size() > 1 &&
452 "Cannot specify cl::ConsumeAfter without a positional argument!");
453 ConsumeAfterOpt = PositionalOpts[0];
454 }
455
456 // Calculate how many positional values are _required_.
457 bool UnboundedFound = false;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000458 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Chris Lattner331de232002-07-22 02:07:59 +0000459 i != e; ++i) {
460 Option *Opt = PositionalOpts[i];
461 if (RequiresValue(Opt))
462 ++NumPositionalRequired;
463 else if (ConsumeAfterOpt) {
464 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000465 // unless there is only one positional argument...
466 if (PositionalOpts.size() > 2)
467 ErrorParsing |=
Benjamin Kramere6864c12009-08-02 12:13:02 +0000468 Opt->error("error - this positional option will never be matched, "
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000469 "because it does not Require a value, and a "
470 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000471 } else if (UnboundedFound && !Opt->ArgStr[0]) {
472 // This option does not "require" a value... Make sure this option is
473 // not specified after an option that eats all extra arguments, or this
474 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000475 //
Benjamin Kramere6864c12009-08-02 12:13:02 +0000476 ErrorParsing |= Opt->error("error - option can never match, because "
Chris Lattner331de232002-07-22 02:07:59 +0000477 "another positional argument will match an "
478 "unbounded number of values, and this option"
479 " does not require a value!");
480 }
481 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
482 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000483 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000484 }
485
Reid Spencer1e13fd22004-08-13 19:47:30 +0000486 // PositionalVals - A vector of "positional" arguments we accumulate into
487 // the process at the end...
Chris Lattner331de232002-07-22 02:07:59 +0000488 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000489 std::vector<std::pair<std::string,unsigned> > PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000490
Chris Lattner9cf3d472003-07-30 17:34:02 +0000491 // If the program has named positional arguments, and the name has been run
492 // across, keep track of which positional argument was named. Otherwise put
493 // the positional args into the PositionalVals list...
494 Option *ActivePositionalArg = 0;
495
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000496 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000497 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000498 for (int i = 1; i < argc; ++i) {
499 Option *Handler = 0;
Chris Lattner6d5857e2005-05-10 23:20:17 +0000500 const char *Value = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000501 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000502
Chris Lattner69d6f132007-04-12 00:36:29 +0000503 // If the option list changed, this means that some command line
Chris Lattner159b0a432007-04-11 15:35:18 +0000504 // option has just been registered or deregistered. This can occur in
505 // response to things like -load, etc. If this happens, rescan the options.
Chris Lattner69d6f132007-04-12 00:36:29 +0000506 if (OptionListChanged) {
Chris Lattner159b0a432007-04-11 15:35:18 +0000507 PositionalOpts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000508 SinkOpts.clear();
Chris Lattner159b0a432007-04-11 15:35:18 +0000509 Opts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000510 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Chris Lattner69d6f132007-04-12 00:36:29 +0000511 OptionListChanged = false;
Chris Lattner159b0a432007-04-11 15:35:18 +0000512 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000513
Chris Lattner331de232002-07-22 02:07:59 +0000514 // Check to see if this is a positional argument. This argument is
515 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000516 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000517 //
518 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
519 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000520 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000521 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000522 continue; // We are done!
523 } else if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000524 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000525
526 // All of the positional arguments have been fulfulled, give the rest to
527 // the consume after option... if it's specified...
528 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000529 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000530 ConsumeAfterOpt != 0) {
531 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000532 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000533 break; // Handle outside of the argument processing loop...
534 }
535
536 // Delay processing positional arguments until the end...
537 continue;
538 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000539 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
540 !DashDashFound) {
541 DashDashFound = true; // This is the mythical "--"?
542 continue; // Don't try to process it as an argument itself.
543 } else if (ActivePositionalArg &&
544 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
545 // If there is a positional argument eating options, check to see if this
546 // option is another positional argument. If so, treat it as an argument,
547 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000548 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000549 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000550 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000551 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000552 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000553 }
554
Chris Lattnerbf455c22004-05-06 22:04:31 +0000555 } else { // We start with a '-', must be an argument...
556 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000557 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000558
Chris Lattnerbf455c22004-05-06 22:04:31 +0000559 // Check to see if this "option" is really a prefixed or grouped argument.
Reid Spencer5f8448f2004-11-24 06:13:42 +0000560 if (Handler == 0) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000561 std::string RealName(ArgName);
562 if (RealName.size() > 1) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000563 size_t Length = 0;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000564 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
565 Opts);
Misha Brukmanf976c852005-04-21 22:55:34 +0000566
Chris Lattner331de232002-07-22 02:07:59 +0000567 // If the option is a prefixed option, then the value is simply the
568 // rest of the name... so fall through to later processing, by
569 // setting up the argument name flags and value fields.
570 //
571 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000572 Value = ArgName+Length;
573 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
574 Opts.find(std::string(ArgName, Value))->second == PGOpt);
575 Handler = PGOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000576 } else if (PGOpt) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000577 // This must be a grouped option... handle them now.
Chris Lattner331de232002-07-22 02:07:59 +0000578 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000579
Chris Lattner331de232002-07-22 02:07:59 +0000580 do {
581 // Move current arg name out of RealName into RealArgName...
Chris Lattnerbf455c22004-05-06 22:04:31 +0000582 std::string RealArgName(RealName.begin(),
583 RealName.begin() + Length);
584 RealName.erase(RealName.begin(), RealName.begin() + Length);
Misha Brukmanf976c852005-04-21 22:55:34 +0000585
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000586 // Because ValueRequired is an invalid flag for grouped arguments,
587 // we don't need to pass argc/argv in...
588 //
Chris Lattner331de232002-07-22 02:07:59 +0000589 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
590 "Option can not be cl::Grouping AND cl::ValueRequired!");
591 int Dummy;
Chris Lattnerbf455c22004-05-06 22:04:31 +0000592 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
Chris Lattner6d5857e2005-05-10 23:20:17 +0000593 0, 0, 0, Dummy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000594
Chris Lattner331de232002-07-22 02:07:59 +0000595 // Get the next grouping option...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000596 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000597 } while (PGOpt && Length != RealName.size());
Misha Brukmanf976c852005-04-21 22:55:34 +0000598
Chris Lattnerbf455c22004-05-06 22:04:31 +0000599 Handler = PGOpt; // Ate all of the options.
Chris Lattner331de232002-07-22 02:07:59 +0000600 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000601 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000602 }
603 }
604
605 if (Handler == 0) {
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000606 if (SinkOpts.empty()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000607 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000608 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
609 ErrorParsing = true;
610 } else {
611 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
612 E = SinkOpts.end(); I != E ; ++I)
613 (*I)->addOccurrence(i, "", argv[i]);
614 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000615 continue;
616 }
617
Chris Lattner72fb8e52003-05-22 20:26:17 +0000618 // Check to see if this option accepts a comma separated list of values. If
619 // it does, we have to split up the value into multiple values...
Chris Lattner6d5857e2005-05-10 23:20:17 +0000620 if (Value && Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner72fb8e52003-05-22 20:26:17 +0000621 std::string Val(Value);
622 std::string::size_type Pos = Val.find(',');
623
624 while (Pos != std::string::npos) {
625 // Process the portion before the comma...
626 ErrorParsing |= ProvideOption(Handler, ArgName,
627 std::string(Val.begin(),
628 Val.begin()+Pos).c_str(),
629 argc, argv, i);
630 // Erase the portion before the comma, AND the comma...
631 Val.erase(Val.begin(), Val.begin()+Pos+1);
632 Value += Pos+1; // Increment the original value pointer as well...
633
634 // Check for another comma...
635 Pos = Val.find(',');
636 }
637 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000638
639 // If this is a named positional argument, just remember that it is the
640 // active one...
641 if (Handler->getFormattingFlag() == cl::Positional)
642 ActivePositionalArg = Handler;
Misha Brukmanf976c852005-04-21 22:55:34 +0000643 else
Chris Lattner9cf3d472003-07-30 17:34:02 +0000644 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000645 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000646
Chris Lattner331de232002-07-22 02:07:59 +0000647 // Check and handle positional arguments now...
648 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000649 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000650 << ": Not enough positional command line arguments specified!\n"
651 << "Must specify at least " << NumPositionalRequired
652 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000653
Chris Lattner331de232002-07-22 02:07:59 +0000654 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000655 } else if (!HasUnlimitedPositionals
656 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000657 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000658 << ": Too many positional arguments specified!\n"
659 << "Can specify at most " << PositionalOpts.size()
660 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000661 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000662
663 } else if (ConsumeAfterOpt == 0) {
664 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000665 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
666 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner331de232002-07-22 02:07:59 +0000667 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000668 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000669 PositionalVals[ValNo].second);
670 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000671 --NumPositionalRequired; // We fulfilled our duty...
672 }
673
674 // If we _can_ give this option more arguments, do so now, as long as we
675 // do not give it values that others need. 'Done' controls whether the
676 // option even _WANTS_ any more.
677 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000678 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000679 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000680 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000681 case cl::Optional:
682 Done = true; // Optional arguments want _at most_ one value
683 // FALL THROUGH
684 case cl::ZeroOrMore: // Zero or more will take all they can get...
685 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000686 ProvidePositionalOption(PositionalOpts[i],
687 PositionalVals[ValNo].first,
688 PositionalVals[ValNo].second);
689 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000690 break;
691 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000692 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000693 "positional argument processing!");
694 }
695 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000696 }
Chris Lattner331de232002-07-22 02:07:59 +0000697 } else {
698 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
699 unsigned ValNo = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000700 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000701 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000702 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000703 PositionalVals[ValNo].first,
704 PositionalVals[ValNo].second);
705 ValNo++;
706 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000707
708 // Handle the case where there is just one positional option, and it's
709 // optional. In this case, we want to give JUST THE FIRST option to the
710 // positional option and keep the rest for the consume after. The above
711 // loop would have assigned no values to positional options in this case.
712 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000713 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000714 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000715 PositionalVals[ValNo].first,
716 PositionalVals[ValNo].second);
717 ValNo++;
718 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000719
Chris Lattner331de232002-07-22 02:07:59 +0000720 // Handle over all of the rest of the arguments to the
721 // cl::ConsumeAfter command line option...
722 for (; ValNo != PositionalVals.size(); ++ValNo)
723 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000724 PositionalVals[ValNo].first,
725 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000726 }
727
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000728 // Loop over args and make sure all required args are specified!
Misha Brukmanf976c852005-04-21 22:55:34 +0000729 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000730 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000731 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000732 case Required:
733 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000734 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000735 I->second->error("must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000736 ErrorParsing = true;
737 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000738 // Fall through
739 default:
740 break;
741 }
742 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000743
Chris Lattner331de232002-07-22 02:07:59 +0000744 // Free all of the memory allocated to the map. Command line options may only
745 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000746 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000747 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000748 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000749
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000750 // Free the memory allocated by ExpandResponseFiles.
751 if (ReadResponseFiles) {
752 // Free all the strdup()ed strings.
753 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
754 i != e; ++i)
755 free (*i);
756 }
757
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000758 // If we had an error processing our arguments, don't let the program execute
759 if (ErrorParsing) exit(1);
760}
761
762//===----------------------------------------------------------------------===//
763// Option Base class implementation
764//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000765
Chris Lattnerca6433f2003-05-22 20:06:43 +0000766bool Option::error(std::string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000767 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000768 if (ArgName[0] == 0)
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000769 errs() << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000770 else
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000771 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000772
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000773 errs() << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000774 return true;
775}
776
Chris Lattner6d5857e2005-05-10 23:20:17 +0000777bool Option::addOccurrence(unsigned pos, const char *ArgName,
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000778 const std::string &Value,
779 bool MultiArg) {
780 if (!MultiArg)
781 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000782
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000783 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000784 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000785 if (NumOccurrences > 1)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000786 return error("may only occur zero or one times!", ArgName);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000787 break;
788 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000789 if (NumOccurrences > 1)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000790 return error("must occur exactly one time!", ArgName);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000791 // Fall through
792 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000793 case ZeroOrMore:
794 case ConsumeAfter: break;
Benjamin Kramere6864c12009-08-02 12:13:02 +0000795 default: return error("bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000796 }
797
Reid Spencer1e13fd22004-08-13 19:47:30 +0000798 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000799}
800
Chris Lattner331de232002-07-22 02:07:59 +0000801
802// getValueStr - Get the value description string, using "DefaultMsg" if nothing
803// has been specified yet.
804//
805static const char *getValueStr(const Option &O, const char *DefaultMsg) {
806 if (O.ValueStr[0] == 0) return DefaultMsg;
807 return O.ValueStr;
808}
809
810//===----------------------------------------------------------------------===//
811// cl::alias class implementation
812//
813
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000814// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000815size_t alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000816 return std::strlen(ArgStr)+6;
817}
818
Chris Lattnera0de8432006-04-28 05:36:25 +0000819// Print out the option for the alias.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000820void alias::printOptionInfo(size_t GlobalWidth) const {
821 size_t L = std::strlen(ArgStr);
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000822 errs() << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
Daniel Dunbar603bea32009-07-16 02:06:09 +0000823 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000824}
825
826
Chris Lattner331de232002-07-22 02:07:59 +0000827
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000828//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000829// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000830//
831
Chris Lattner9b14eb52002-08-07 18:36:37 +0000832// basic_parser implementation
833//
834
835// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000836size_t basic_parser_impl::getOptionWidth(const Option &O) const {
837 size_t Len = std::strlen(O.ArgStr);
Chris Lattner9b14eb52002-08-07 18:36:37 +0000838 if (const char *ValName = getValueName())
839 Len += std::strlen(getValueStr(O, ValName))+3;
840
841 return Len + 6;
842}
843
Misha Brukmanf976c852005-04-21 22:55:34 +0000844// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000845// to-be-maintained width is specified.
846//
847void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000848 size_t GlobalWidth) const {
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000849 outs() << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000850
851 if (const char *ValName = getValueName())
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000852 outs() << "=<" << getValueStr(O, ValName) << '>';
Chris Lattner9b14eb52002-08-07 18:36:37 +0000853
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000854 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Chris Lattner9b14eb52002-08-07 18:36:37 +0000855}
856
857
858
859
Chris Lattner331de232002-07-22 02:07:59 +0000860// parser<bool> implementation
861//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000862bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000863 const std::string &Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000864 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000865 Arg == "1") {
866 Value = true;
867 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
868 Value = false;
869 } else {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000870 return O.error("'" + Arg +
Chris Lattner331de232002-07-22 02:07:59 +0000871 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000872 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000873 return false;
874}
875
Dale Johannesen81da02b2007-05-22 17:14:46 +0000876// parser<boolOrDefault> implementation
877//
878bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
879 const std::string &Arg, boolOrDefault &Value) {
880 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
881 Arg == "1") {
882 Value = BOU_TRUE;
Mike Stumpd6f175b2009-01-30 08:19:46 +0000883 } else if (Arg == "false" || Arg == "FALSE"
884 || Arg == "False" || Arg == "0") {
Dale Johannesen81da02b2007-05-22 17:14:46 +0000885 Value = BOU_FALSE;
886 } else {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000887 return O.error("'" + Arg +
Dale Johannesen81da02b2007-05-22 17:14:46 +0000888 "' is invalid value for boolean argument! Try 0 or 1");
889 }
890 return false;
891}
892
Chris Lattner331de232002-07-22 02:07:59 +0000893// parser<int> implementation
894//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000895bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000896 const std::string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000897 char *End;
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000898 Value = (int)strtol(Arg.c_str(), &End, 0);
Misha Brukmanf976c852005-04-21 22:55:34 +0000899 if (*End != 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000900 return O.error("'" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000901 return false;
902}
903
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000904// parser<unsigned> implementation
905//
906bool parser<unsigned>::parse(Option &O, const char *ArgName,
907 const std::string &Arg, unsigned &Value) {
908 char *End;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000909 errno = 0;
910 unsigned long V = strtoul(Arg.c_str(), &End, 0);
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000911 Value = (unsigned)V;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000912 if (((V == ULONG_MAX) && (errno == ERANGE))
913 || (*End != 0)
914 || (Value != V))
Benjamin Kramere6864c12009-08-02 12:13:02 +0000915 return O.error("'" + Arg + "' value invalid for uint argument!");
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000916 return false;
917}
918
Chris Lattner9b14eb52002-08-07 18:36:37 +0000919// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000920//
Chris Lattnerca6433f2003-05-22 20:06:43 +0000921static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000922 const char *ArgStart = Arg.c_str();
923 char *End;
924 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000925 if (*End != 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000926 return O.error("'" + Arg + "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000927 return false;
928}
929
Chris Lattner9b14eb52002-08-07 18:36:37 +0000930bool parser<double>::parse(Option &O, const char *AN,
931 const std::string &Arg, double &Val) {
932 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000933}
934
Chris Lattner9b14eb52002-08-07 18:36:37 +0000935bool parser<float>::parse(Option &O, const char *AN,
936 const std::string &Arg, float &Val) {
937 double dVal;
938 if (parseDouble(O, Arg, dVal))
939 return true;
940 Val = (float)dVal;
941 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000942}
943
944
Chris Lattner331de232002-07-22 02:07:59 +0000945
946// generic_parser_base implementation
947//
948
Chris Lattneraa852bb2002-07-23 17:15:12 +0000949// findOption - Return the option number corresponding to the specified
950// argument string. If the option is not found, getNumOptions() is returned.
951//
952unsigned generic_parser_base::findOption(const char *Name) {
953 unsigned i = 0, e = getNumOptions();
Chris Lattnerca6433f2003-05-22 20:06:43 +0000954 std::string N(Name);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000955
956 while (i != e)
957 if (getOption(i) == N)
958 return i;
959 else
960 ++i;
961 return e;
962}
963
964
Chris Lattner331de232002-07-22 02:07:59 +0000965// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000966size_t generic_parser_base::getOptionWidth(const Option &O) const {
Chris Lattner331de232002-07-22 02:07:59 +0000967 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000968 size_t Size = std::strlen(O.ArgStr)+6;
Chris Lattner331de232002-07-22 02:07:59 +0000969 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000970 Size = std::max(Size, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000971 return Size;
972 } else {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000973 size_t BaseSize = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000974 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000975 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000976 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000977 }
978}
979
Misha Brukmanf976c852005-04-21 22:55:34 +0000980// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +0000981// to-be-maintained width is specified.
982//
983void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000984 size_t GlobalWidth) const {
Chris Lattner331de232002-07-22 02:07:59 +0000985 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000986 size_t L = std::strlen(O.ArgStr);
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000987 outs() << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
988 << " - " << O.HelpStr << '\n';
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000989
Chris Lattner331de232002-07-22 02:07:59 +0000990 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000991 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000992 outs() << " =" << getOption(i) << std::string(NumSpaces, ' ')
993 << " - " << getDescription(i) << '\n';
Chris Lattner9c9be482002-01-31 00:42:56 +0000994 }
Chris Lattner331de232002-07-22 02:07:59 +0000995 } else {
996 if (O.HelpStr[0])
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000997 outs() << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000998 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000999 size_t L = std::strlen(getOption(i));
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001000 outs() << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
1001 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001002 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001003 }
1004}
1005
1006
1007//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +00001008// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001009//
Reid Spencerad0846b2004-11-14 22:04:00 +00001010
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001011namespace {
1012
Chris Lattner331de232002-07-22 02:07:59 +00001013class HelpPrinter {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001014 size_t MaxArgLen;
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001015 const Option *EmptyArg;
1016 const bool ShowHidden;
1017
Chris Lattner331de232002-07-22 02:07:59 +00001018 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Chris Lattnerca6433f2003-05-22 20:06:43 +00001019 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001020 return OptPair.second->getOptionHiddenFlag() >= Hidden;
1021 }
Chris Lattnerca6433f2003-05-22 20:06:43 +00001022 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001023 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
1024 }
1025
1026public:
Dan Gohman950a4c42008-03-25 22:06:05 +00001027 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Chris Lattner331de232002-07-22 02:07:59 +00001028 EmptyArg = 0;
1029 }
1030
1031 void operator=(bool Value) {
1032 if (Value == false) return;
1033
Chris Lattner9878d6a2007-04-06 21:06:55 +00001034 // Get all the options.
1035 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001036 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001037 std::map<std::string, Option*> OptMap;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001038 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001039
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001040 // Copy Options into a vector so we can sort them as we like...
Chris Lattner90aa8392006-10-04 21:52:35 +00001041 std::vector<std::pair<std::string, Option*> > Opts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001042 copy(OptMap.begin(), OptMap.end(), std::back_inserter(Opts));
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001043
1044 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner90aa8392006-10-04 21:52:35 +00001045 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1046 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1047 Opts.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001048
1049 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +00001050 { // Give OptionSet a scope
1051 std::set<Option*> OptionSet;
Chris Lattner90aa8392006-10-04 21:52:35 +00001052 for (unsigned i = 0; i != Opts.size(); ++i)
1053 if (OptionSet.count(Opts[i].second) == 0)
1054 OptionSet.insert(Opts[i].second); // Add new entry to set
Chris Lattner331de232002-07-22 02:07:59 +00001055 else
Chris Lattner90aa8392006-10-04 21:52:35 +00001056 Opts.erase(Opts.begin()+i--); // Erase duplicate
Chris Lattner331de232002-07-22 02:07:59 +00001057 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001058
1059 if (ProgramOverview)
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001060 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001061
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001062 outs() << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +00001063
Chris Lattner90aa8392006-10-04 21:52:35 +00001064 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +00001065 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001066 if (!PositionalOpts.empty() &&
Chris Lattner9878d6a2007-04-06 21:06:55 +00001067 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1068 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +00001069
Evan Cheng34cd4a42008-05-05 18:30:58 +00001070 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +00001071 if (PositionalOpts[i]->ArgStr[0])
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001072 outs() << " --" << PositionalOpts[i]->ArgStr;
1073 outs() << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +00001074 }
Chris Lattner331de232002-07-22 02:07:59 +00001075
1076 // Print the consume after option info if it exists...
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001077 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +00001078
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001079 outs() << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001080
1081 // Compute the maximum argument length...
1082 MaxArgLen = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +00001083 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001084 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001085
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001086 outs() << "OPTIONS:\n";
Evan Cheng34cd4a42008-05-05 18:30:58 +00001087 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001088 Opts[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001089
Chris Lattnerc540ebb2004-11-19 17:08:15 +00001090 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +00001091 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1092 E = MoreHelp->end(); I != E; ++I)
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001093 outs() << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +00001094 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +00001095
Reid Spencer9bbba0912004-11-16 06:11:52 +00001096 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +00001097 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001098 }
1099};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001100} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001101
Chris Lattner331de232002-07-22 02:07:59 +00001102// Define the two HelpPrinter instances that are used to print out help, or
1103// help-hidden...
1104//
Chris Lattner500d8bf2006-10-12 22:09:17 +00001105static HelpPrinter NormalPrinter(false);
1106static HelpPrinter HiddenPrinter(true);
Chris Lattner331de232002-07-22 02:07:59 +00001107
Chris Lattner500d8bf2006-10-12 22:09:17 +00001108static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001109HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001110 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +00001111
Chris Lattner500d8bf2006-10-12 22:09:17 +00001112static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001113HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001114 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001115
Chris Lattner500d8bf2006-10-12 22:09:17 +00001116static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +00001117
Chris Lattner500d8bf2006-10-12 22:09:17 +00001118namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +00001119class VersionPrinter {
1120public:
Devang Patelaed293d2007-02-01 01:43:37 +00001121 void print() {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001122 outs() << "Low Level Virtual Machine (http://llvm.org/):\n"
1123 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001124#ifdef LLVM_VERSION_INFO
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001125 outs() << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +00001126#endif
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001127 outs() << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001128#ifndef __OPTIMIZE__
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001129 outs() << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001130#else
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001131 outs() << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001132#endif
1133#ifndef NDEBUG
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001134 outs() << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001135#endif
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001136 outs() << ".\n"
1137 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
1138 << "\n"
1139 << " Registered Targets:\n";
Daniel Dunbar603bea32009-07-16 02:06:09 +00001140
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001141 std::vector<std::pair<std::string, const Target*> > Targets;
1142 size_t Width = 0;
1143 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1144 ie = TargetRegistry::end(); it != ie; ++it) {
1145 Targets.push_back(std::make_pair(it->getName(), &*it));
1146 Width = std::max(Width, Targets.back().first.length());
1147 }
1148 std::sort(Targets.begin(), Targets.end());
Daniel Dunbar77454a22009-07-26 05:09:50 +00001149
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001150 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
1151 outs() << " " << Targets[i].first
1152 << std::string(Width - Targets[i].first.length(), ' ') << " - "
1153 << Targets[i].second->getShortDescription() << "\n";
1154 }
1155 if (Targets.empty())
1156 outs() << " (none)\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001157 }
1158 void operator=(bool OptionWasSpecified) {
1159 if (OptionWasSpecified) {
1160 if (OverrideVersionPrinter == 0) {
1161 print();
Reid Spencer515b5b32006-06-05 16:22:56 +00001162 exit(1);
1163 } else {
1164 (*OverrideVersionPrinter)();
1165 exit(1);
1166 }
1167 }
1168 }
1169};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001170} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001171
1172
Reid Spencer69105f32004-08-04 00:36:06 +00001173// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001174static VersionPrinter VersionPrinterInstance;
1175
1176static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001177VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001178 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1179
Reid Spencer9bbba0912004-11-16 06:11:52 +00001180// Utility function for printing the help message.
1181void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001182 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001183 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1184 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001185 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001186 // --help option was given or not. Since we're circumventing that we have
1187 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001188 NormalPrinter = true;
1189}
Reid Spencer515b5b32006-06-05 16:22:56 +00001190
Devang Patelaed293d2007-02-01 01:43:37 +00001191/// Utility function for printing version number.
1192void cl::PrintVersionMessage() {
1193 VersionPrinterInstance.print();
1194}
1195
Reid Spencer515b5b32006-06-05 16:22:56 +00001196void cl::SetVersionPrinter(void (*func)()) {
1197 OverrideVersionPrinter = func;
1198}