blob: 3d30e7a9f52ec1103af43a1a9a63a2c966d349fb [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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/Config/config.h"
20#include "llvm/Support/CommandLine.h"
Chris Lattner90aa8392006-10-04 21:52:35 +000021#include "llvm/Support/ManagedStatic.h"
Bill Wendlingfe6b1462006-11-26 10:52:51 +000022#include "llvm/Support/Streams.h"
Reid Spencer6f4c6072006-08-23 07:10:06 +000023#include "llvm/System/Path.h"
Chris Lattnerdbab15a2001-07-23 17:17:47 +000024#include <algorithm>
Duraid Madina786e3e22005-12-26 04:56:16 +000025#include <functional>
Chris Lattnerdbab15a2001-07-23 17:17:47 +000026#include <map>
Bill Wendling1a097e32006-12-07 23:41:45 +000027#include <ostream>
Chris Lattnerdbab15a2001-07-23 17:17:47 +000028#include <set>
Brian Gaeke2d6a2362003-10-10 17:01:36 +000029#include <cstdlib>
30#include <cerrno>
Chris Lattner51140042004-07-03 01:21:05 +000031#include <cstring>
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>);
39TEMPLATE_INSTANTIATION(class basic_parser<int>);
40TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
41TEMPLATE_INSTANTIATION(class basic_parser<double>);
42TEMPLATE_INSTANTIATION(class basic_parser<float>);
43TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
44
45TEMPLATE_INSTANTIATION(class opt<unsigned>);
46TEMPLATE_INSTANTIATION(class opt<int>);
47TEMPLATE_INSTANTIATION(class opt<std::string>);
48TEMPLATE_INSTANTIATION(class opt<bool>);
49
50void Option::anchor() {}
51void basic_parser_impl::anchor() {}
52void parser<bool>::anchor() {}
53void parser<int>::anchor() {}
54void parser<unsigned>::anchor() {}
55void parser<double>::anchor() {}
56void parser<float>::anchor() {}
57void parser<std::string>::anchor() {}
58
59//===----------------------------------------------------------------------===//
60
Chris Lattnerefa3da52006-10-13 00:06:24 +000061// Globals for name and overview of program. Program name is not a string to
62// avoid static ctor/dtor issues.
63static char ProgramName[80] = "<premain>";
Reid Spencere1cc1502004-09-01 04:41:28 +000064static const char *ProgramOverview = 0;
65
Chris Lattnerc540ebb2004-11-19 17:08:15 +000066// This collects additional help to be printed.
Chris Lattner90aa8392006-10-04 21:52:35 +000067static ManagedStatic<std::vector<const char*> > MoreHelp;
Chris Lattnerc540ebb2004-11-19 17:08:15 +000068
Chris Lattner90aa8392006-10-04 21:52:35 +000069extrahelp::extrahelp(const char *Help)
Chris Lattnerc540ebb2004-11-19 17:08:15 +000070 : morehelp(Help) {
Chris Lattner90aa8392006-10-04 21:52:35 +000071 MoreHelp->push_back(Help);
Chris Lattnerc540ebb2004-11-19 17:08:15 +000072}
73
Chris Lattner9878d6a2007-04-06 21:06:55 +000074/// RegisteredOptionList - This is the list of the command line options that
75/// have statically constructed themselves.
76static Option *RegisteredOptionList = 0;
77
78void Option::addArgument() {
79 assert(NextRegistered == 0 && "argument multiply registered!");
80
81 NextRegistered = RegisteredOptionList;
82 RegisteredOptionList = this;
83}
84
Chris Lattner331de232002-07-22 02:07:59 +000085//===----------------------------------------------------------------------===//
Chris Lattner7422a762006-08-27 12:45:47 +000086// Basic, shared command line option processing machinery.
Chris Lattner331de232002-07-22 02:07:59 +000087//
88
Chris Lattner9878d6a2007-04-06 21:06:55 +000089/// GetOptionInfo - Scan the list of registered options, turning them into data
90/// structures that are easier to handle.
91static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
92 std::map<std::string, Option*> &OptionsMap) {
93 std::vector<const char*> OptionNames;
Chris Lattneree2b3202007-04-07 05:38:53 +000094 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
Chris Lattner9878d6a2007-04-06 21:06:55 +000095 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
96 // If this option wants to handle multiple option names, get the full set.
97 // This handles enum options like "-O1 -O2" etc.
98 O->getExtraOptionNames(OptionNames);
99 if (O->ArgStr[0])
100 OptionNames.push_back(O->ArgStr);
101
102 // Handle named options.
103 for (unsigned i = 0, e = OptionNames.size(); i != e; ++i) {
104 // Add argument to the argument map!
105 if (!OptionsMap.insert(std::pair<std::string,Option*>(OptionNames[i],
106 O)).second) {
107 cerr << ProgramName << ": CommandLine Error: Argument '"
108 << OptionNames[0] << "' defined more than once!\n";
109 }
110 }
111
112 OptionNames.clear();
113
114 // Remember information about positional options.
115 if (O->getFormattingFlag() == cl::Positional)
116 PositionalOpts.push_back(O);
117 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattneree2b3202007-04-07 05:38:53 +0000118 if (CAOpt)
Chris Lattner9878d6a2007-04-06 21:06:55 +0000119 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
Chris Lattneree2b3202007-04-07 05:38:53 +0000120 CAOpt = O;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000121 }
Chris Lattnere8e258b2002-07-29 20:58:42 +0000122 }
Chris Lattneree2b3202007-04-07 05:38:53 +0000123
124 if (CAOpt)
125 PositionalOpts.push_back(CAOpt);
126
127 // Make sure that they are in order of registration not backwards.
128 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
Chris Lattnere8e258b2002-07-29 20:58:42 +0000129}
130
Chris Lattner9878d6a2007-04-06 21:06:55 +0000131
Chris Lattneraf035f32007-04-05 21:58:17 +0000132/// LookupOption - Lookup the option specified by the specified option on the
133/// command line. If there is a value specified (after an equal sign) return
134/// that as well.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000135static Option *LookupOption(const char *&Arg, const char *&Value,
136 std::map<std::string, Option*> &OptionsMap) {
Chris Lattneraf035f32007-04-05 21:58:17 +0000137 while (*Arg == '-') ++Arg; // Eat leading dashes
138
139 const char *ArgEnd = Arg;
140 while (*ArgEnd && *ArgEnd != '=')
141 ++ArgEnd; // Scan till end of argument name.
142
143 if (*ArgEnd == '=') // If we have an equals sign...
144 Value = ArgEnd+1; // Get the value, not the equals
145
146
147 if (*Arg == 0) return 0;
148
149 // Look up the option.
Chris Lattneraf035f32007-04-05 21:58:17 +0000150 std::map<std::string, Option*>::iterator I =
Chris Lattner9878d6a2007-04-06 21:06:55 +0000151 OptionsMap.find(std::string(Arg, ArgEnd));
152 return I != OptionsMap.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000153}
154
Chris Lattnercaccd762001-10-27 05:54:17 +0000155static inline bool ProvideOption(Option *Handler, const char *ArgName,
156 const char *Value, int argc, char **argv,
157 int &i) {
158 // Enforce value requirements
159 switch (Handler->getValueExpectedFlag()) {
160 case ValueRequired:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000161 if (Value == 0) { // No value specified?
Chris Lattnercaccd762001-10-27 05:54:17 +0000162 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
163 Value = argv[++i];
164 } else {
165 return Handler->error(" requires a value!");
166 }
167 }
168 break;
169 case ValueDisallowed:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000170 if (Value)
Misha Brukmanf976c852005-04-21 22:55:34 +0000171 return Handler->error(" does not allow a value! '" +
Chris Lattnerca6433f2003-05-22 20:06:43 +0000172 std::string(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000173 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000174 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000175 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000176 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000177 cerr << ProgramName
178 << ": Bad ValueMask flag! CommandLine usage error:"
179 << Handler->getValueExpectedFlag() << "\n";
Reid Spencere1cc1502004-09-01 04:41:28 +0000180 abort();
181 break;
Chris Lattnercaccd762001-10-27 05:54:17 +0000182 }
183
184 // Run the handler now!
Chris Lattner6d5857e2005-05-10 23:20:17 +0000185 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
Chris Lattnercaccd762001-10-27 05:54:17 +0000186}
187
Misha Brukmanf976c852005-04-21 22:55:34 +0000188static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000189 int i) {
190 int Dummy = i;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000191 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000192}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000193
Chris Lattner331de232002-07-22 02:07:59 +0000194
195// Option predicates...
196static inline bool isGrouping(const Option *O) {
197 return O->getFormattingFlag() == cl::Grouping;
198}
199static inline bool isPrefixedOrGrouping(const Option *O) {
200 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
201}
202
203// getOptionPred - Check to see if there are any options that satisfy the
204// specified predicate with names that are the prefixes in Name. This is
205// checked by progressively stripping characters off of the name, checking to
206// see if there options that satisfy the predicate. If we find one, return it,
207// otherwise return null.
208//
209static Option *getOptionPred(std::string Name, unsigned &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000210 bool (*Pred)(const Option*),
211 std::map<std::string, Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000212
Chris Lattner9878d6a2007-04-06 21:06:55 +0000213 std::map<std::string, Option*>::iterator OMI = OptionsMap.find(Name);
214 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000215 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000216 return OMI->second;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000217 }
218
Chris Lattner331de232002-07-22 02:07:59 +0000219 if (Name.size() == 1) return 0;
220 do {
221 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000222 OMI = OptionsMap.find(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000223
224 // Loop while we haven't found an option and Name still has at least two
225 // characters in it (so that the next iteration will not be the empty
226 // string...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000227 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000228
Chris Lattner9878d6a2007-04-06 21:06:55 +0000229 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000230 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000231 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000232 }
233 return 0; // No option found!
234}
235
236static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000237 return O->getNumOccurrencesFlag() == cl::Required ||
238 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000239}
240
241static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000242 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
243 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000244}
Chris Lattnercaccd762001-10-27 05:54:17 +0000245
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000246/// ParseCStringVector - Break INPUT up wherever one or more
247/// whitespace characters are found, and store the resulting tokens in
248/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
249/// using strdup (), so it is the caller's responsibility to free ()
250/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000251///
Chris Lattner23288582006-08-27 22:10:29 +0000252static void ParseCStringVector(std::vector<char *> &output,
253 const char *input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000254 // Characters which will be treated as token separators:
255 static const char *delims = " \v\f\t\r\n";
256
257 std::string work (input);
258 // Skip past any delims at head of input string.
259 size_t pos = work.find_first_not_of (delims);
260 // If the string consists entirely of delims, then exit early.
261 if (pos == std::string::npos) return;
262 // Otherwise, jump forward to beginning of first word.
263 work = work.substr (pos);
264 // Find position of first delimiter.
265 pos = work.find_first_of (delims);
266
267 while (!work.empty() && pos != std::string::npos) {
268 // Everything from 0 to POS is the next word to copy.
269 output.push_back (strdup (work.substr (0,pos).c_str ()));
270 // Is there another word in the string?
271 size_t nextpos = work.find_first_not_of (delims, pos + 1);
272 if (nextpos != std::string::npos) {
273 // Yes? Then remove delims from beginning ...
274 work = work.substr (work.find_first_not_of (delims, pos + 1));
275 // and find the end of the word.
276 pos = work.find_first_of (delims);
277 } else {
278 // No? (Remainder of string is delims.) End the loop.
279 work = "";
280 pos = std::string::npos;
281 }
282 }
283
284 // If `input' ended with non-delim char, then we'll get here with
285 // the last word of `input' in `work'; copy it now.
286 if (!work.empty ()) {
287 output.push_back (strdup (work.c_str ()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000288 }
289}
290
291/// ParseEnvironmentOptions - An alternative entry point to the
292/// CommandLine library, which allows you to read the program's name
293/// from the caller (as PROGNAME) and its command-line arguments from
294/// an environment variable (whose name is given in ENVVAR).
295///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000296void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
297 const char *Overview) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000298 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000299 assert(progName && "Program name not specified");
300 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000301
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000302 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000303 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000304 if (!envValue)
305 return;
306
Brian Gaeke06b06c52003-08-14 22:00:59 +0000307 // Get program's "name", which we wouldn't know without the caller
308 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000309 std::vector<char*> newArgv;
310 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000311
312 // Parse the value of the environment variable into a "command line"
313 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000314 ParseCStringVector(newArgv, envValue);
315 int newArgc = newArgv.size();
316 ParseCommandLineOptions(newArgc, &newArgv[0], Overview);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000317
318 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000319 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
320 i != e; ++i)
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000321 free (*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000322}
323
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000324void cl::ParseCommandLineOptions(int &argc, char **argv,
Chris Lattner0c0edf82002-07-25 06:17:51 +0000325 const char *Overview) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000326 // Process all registered options.
327 std::vector<Option*> PositionalOpts;
328 std::map<std::string, Option*> Opts;
329 GetOptionInfo(PositionalOpts, Opts);
330
331 assert((!Opts.empty() || !PositionalOpts.empty()) &&
332 "No options specified!");
Reid Spencer6f4c6072006-08-23 07:10:06 +0000333 sys::Path progname(argv[0]);
Chris Lattnerefa3da52006-10-13 00:06:24 +0000334
335 // Copy the program name into ProgName, making sure not to overflow it.
336 std::string ProgName = sys::Path(argv[0]).getLast();
337 if (ProgName.size() > 79) ProgName.resize(79);
338 strcpy(ProgramName, ProgName.c_str());
339
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000340 ProgramOverview = Overview;
341 bool ErrorParsing = false;
342
Chris Lattner331de232002-07-22 02:07:59 +0000343 // Check out the positional arguments to collect information about them.
344 unsigned NumPositionalRequired = 0;
Chris Lattnerde013242005-08-08 17:25:38 +0000345
346 // Determine whether or not there are an unlimited number of positionals
347 bool HasUnlimitedPositionals = false;
348
Chris Lattner331de232002-07-22 02:07:59 +0000349 Option *ConsumeAfterOpt = 0;
350 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000351 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000352 assert(PositionalOpts.size() > 1 &&
353 "Cannot specify cl::ConsumeAfter without a positional argument!");
354 ConsumeAfterOpt = PositionalOpts[0];
355 }
356
357 // Calculate how many positional values are _required_.
358 bool UnboundedFound = false;
359 for (unsigned i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
360 i != e; ++i) {
361 Option *Opt = PositionalOpts[i];
362 if (RequiresValue(Opt))
363 ++NumPositionalRequired;
364 else if (ConsumeAfterOpt) {
365 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000366 // unless there is only one positional argument...
367 if (PositionalOpts.size() > 2)
368 ErrorParsing |=
369 Opt->error(" error - this positional option will never be matched, "
370 "because it does not Require a value, and a "
371 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000372 } else if (UnboundedFound && !Opt->ArgStr[0]) {
373 // This option does not "require" a value... Make sure this option is
374 // not specified after an option that eats all extra arguments, or this
375 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000376 //
377 ErrorParsing |= Opt->error(" error - option can never match, because "
378 "another positional argument will match an "
379 "unbounded number of values, and this option"
380 " does not require a value!");
381 }
382 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
383 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000384 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000385 }
386
Reid Spencer1e13fd22004-08-13 19:47:30 +0000387 // PositionalVals - A vector of "positional" arguments we accumulate into
388 // the process at the end...
Chris Lattner331de232002-07-22 02:07:59 +0000389 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000390 std::vector<std::pair<std::string,unsigned> > PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000391
Chris Lattner9cf3d472003-07-30 17:34:02 +0000392 // If the program has named positional arguments, and the name has been run
393 // across, keep track of which positional argument was named. Otherwise put
394 // the positional args into the PositionalVals list...
395 Option *ActivePositionalArg = 0;
396
Chris Lattner159b0a432007-04-11 15:35:18 +0000397 // Keep track of the option list so far so that we can tell if it is ever
398 // extended.
399 Option *CurOptionList = RegisteredOptionList;
400
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000401 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000402 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000403 for (int i = 1; i < argc; ++i) {
404 Option *Handler = 0;
Chris Lattner6d5857e2005-05-10 23:20:17 +0000405 const char *Value = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000406 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000407
Chris Lattner159b0a432007-04-11 15:35:18 +0000408 // If the head of the option list changed, this means that some command line
409 // option has just been registered or deregistered. This can occur in
410 // response to things like -load, etc. If this happens, rescan the options.
411 if (CurOptionList != RegisteredOptionList) {
412 PositionalOpts.clear();
413 Opts.clear();
414 GetOptionInfo(PositionalOpts, Opts);
415 CurOptionList = RegisteredOptionList;
416 }
417
Chris Lattner331de232002-07-22 02:07:59 +0000418 // Check to see if this is a positional argument. This argument is
419 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000420 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000421 //
422 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
423 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000424 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000425 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000426 continue; // We are done!
427 } else if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000428 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000429
430 // All of the positional arguments have been fulfulled, give the rest to
431 // the consume after option... if it's specified...
432 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000433 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000434 ConsumeAfterOpt != 0) {
435 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000436 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000437 break; // Handle outside of the argument processing loop...
438 }
439
440 // Delay processing positional arguments until the end...
441 continue;
442 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000443 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
444 !DashDashFound) {
445 DashDashFound = true; // This is the mythical "--"?
446 continue; // Don't try to process it as an argument itself.
447 } else if (ActivePositionalArg &&
448 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
449 // If there is a positional argument eating options, check to see if this
450 // option is another positional argument. If so, treat it as an argument,
451 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000452 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000453 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000454 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000455 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000456 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000457 }
458
Chris Lattnerbf455c22004-05-06 22:04:31 +0000459 } else { // We start with a '-', must be an argument...
460 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000461 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000462
Chris Lattnerbf455c22004-05-06 22:04:31 +0000463 // Check to see if this "option" is really a prefixed or grouped argument.
Reid Spencer5f8448f2004-11-24 06:13:42 +0000464 if (Handler == 0) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000465 std::string RealName(ArgName);
466 if (RealName.size() > 1) {
Chris Lattner331de232002-07-22 02:07:59 +0000467 unsigned Length = 0;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000468 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
469 Opts);
Misha Brukmanf976c852005-04-21 22:55:34 +0000470
Chris Lattner331de232002-07-22 02:07:59 +0000471 // If the option is a prefixed option, then the value is simply the
472 // rest of the name... so fall through to later processing, by
473 // setting up the argument name flags and value fields.
474 //
475 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000476 Value = ArgName+Length;
477 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
478 Opts.find(std::string(ArgName, Value))->second == PGOpt);
479 Handler = PGOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000480 } else if (PGOpt) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000481 // This must be a grouped option... handle them now.
Chris Lattner331de232002-07-22 02:07:59 +0000482 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000483
Chris Lattner331de232002-07-22 02:07:59 +0000484 do {
485 // Move current arg name out of RealName into RealArgName...
Chris Lattnerbf455c22004-05-06 22:04:31 +0000486 std::string RealArgName(RealName.begin(),
487 RealName.begin() + Length);
488 RealName.erase(RealName.begin(), RealName.begin() + Length);
Misha Brukmanf976c852005-04-21 22:55:34 +0000489
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000490 // Because ValueRequired is an invalid flag for grouped arguments,
491 // we don't need to pass argc/argv in...
492 //
Chris Lattner331de232002-07-22 02:07:59 +0000493 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
494 "Option can not be cl::Grouping AND cl::ValueRequired!");
495 int Dummy;
Chris Lattnerbf455c22004-05-06 22:04:31 +0000496 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
Chris Lattner6d5857e2005-05-10 23:20:17 +0000497 0, 0, 0, Dummy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000498
Chris Lattner331de232002-07-22 02:07:59 +0000499 // Get the next grouping option...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000500 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000501 } while (PGOpt && Length != RealName.size());
Misha Brukmanf976c852005-04-21 22:55:34 +0000502
Chris Lattnerbf455c22004-05-06 22:04:31 +0000503 Handler = PGOpt; // Ate all of the options.
Chris Lattner331de232002-07-22 02:07:59 +0000504 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000505 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000506 }
507 }
508
509 if (Handler == 0) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000510 cerr << ProgramName << ": Unknown command line argument '"
511 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000512 ErrorParsing = true;
513 continue;
514 }
515
Chris Lattner72fb8e52003-05-22 20:26:17 +0000516 // Check to see if this option accepts a comma separated list of values. If
517 // it does, we have to split up the value into multiple values...
Chris Lattner6d5857e2005-05-10 23:20:17 +0000518 if (Value && Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner72fb8e52003-05-22 20:26:17 +0000519 std::string Val(Value);
520 std::string::size_type Pos = Val.find(',');
521
522 while (Pos != std::string::npos) {
523 // Process the portion before the comma...
524 ErrorParsing |= ProvideOption(Handler, ArgName,
525 std::string(Val.begin(),
526 Val.begin()+Pos).c_str(),
527 argc, argv, i);
528 // Erase the portion before the comma, AND the comma...
529 Val.erase(Val.begin(), Val.begin()+Pos+1);
530 Value += Pos+1; // Increment the original value pointer as well...
531
532 // Check for another comma...
533 Pos = Val.find(',');
534 }
535 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000536
537 // If this is a named positional argument, just remember that it is the
538 // active one...
539 if (Handler->getFormattingFlag() == cl::Positional)
540 ActivePositionalArg = Handler;
Misha Brukmanf976c852005-04-21 22:55:34 +0000541 else
Chris Lattner9cf3d472003-07-30 17:34:02 +0000542 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000543 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000544
Chris Lattner331de232002-07-22 02:07:59 +0000545 // Check and handle positional arguments now...
546 if (NumPositionalRequired > PositionalVals.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000547 cerr << ProgramName
548 << ": Not enough positional command line arguments specified!\n"
549 << "Must specify at least " << NumPositionalRequired
550 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattner79959d22006-01-17 00:32:28 +0000551
Chris Lattner331de232002-07-22 02:07:59 +0000552 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000553 } else if (!HasUnlimitedPositionals
554 && PositionalVals.size() > PositionalOpts.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000555 cerr << ProgramName
556 << ": Too many positional arguments specified!\n"
557 << "Can specify at most " << PositionalOpts.size()
558 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000559 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000560
561 } else if (ConsumeAfterOpt == 0) {
562 // Positional args have already been handled if ConsumeAfter is specified...
563 unsigned ValNo = 0, NumVals = PositionalVals.size();
564 for (unsigned i = 0, e = PositionalOpts.size(); i != e; ++i) {
565 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000566 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000567 PositionalVals[ValNo].second);
568 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000569 --NumPositionalRequired; // We fulfilled our duty...
570 }
571
572 // If we _can_ give this option more arguments, do so now, as long as we
573 // do not give it values that others need. 'Done' controls whether the
574 // option even _WANTS_ any more.
575 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000576 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000577 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000578 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000579 case cl::Optional:
580 Done = true; // Optional arguments want _at most_ one value
581 // FALL THROUGH
582 case cl::ZeroOrMore: // Zero or more will take all they can get...
583 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000584 ProvidePositionalOption(PositionalOpts[i],
585 PositionalVals[ValNo].first,
586 PositionalVals[ValNo].second);
587 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000588 break;
589 default:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000590 assert(0 && "Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000591 "positional argument processing!");
592 }
593 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000594 }
Chris Lattner331de232002-07-22 02:07:59 +0000595 } else {
596 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
597 unsigned ValNo = 0;
598 for (unsigned j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000599 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000600 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000601 PositionalVals[ValNo].first,
602 PositionalVals[ValNo].second);
603 ValNo++;
604 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000605
606 // Handle the case where there is just one positional option, and it's
607 // optional. In this case, we want to give JUST THE FIRST option to the
608 // positional option and keep the rest for the consume after. The above
609 // loop would have assigned no values to positional options in this case.
610 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000611 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000612 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000613 PositionalVals[ValNo].first,
614 PositionalVals[ValNo].second);
615 ValNo++;
616 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000617
Chris Lattner331de232002-07-22 02:07:59 +0000618 // Handle over all of the rest of the arguments to the
619 // cl::ConsumeAfter command line option...
620 for (; ValNo != PositionalVals.size(); ++ValNo)
621 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000622 PositionalVals[ValNo].first,
623 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000624 }
625
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000626 // Loop over args and make sure all required args are specified!
Misha Brukmanf976c852005-04-21 22:55:34 +0000627 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000628 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000629 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000630 case Required:
631 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000632 if (I->second->getNumOccurrences() == 0) {
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000633 I->second->error(" must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000634 ErrorParsing = true;
635 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000636 // Fall through
637 default:
638 break;
639 }
640 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000641
Chris Lattner331de232002-07-22 02:07:59 +0000642 // Free all of the memory allocated to the map. Command line options may only
643 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000644 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000645 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000646 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000647
648 // If we had an error processing our arguments, don't let the program execute
649 if (ErrorParsing) exit(1);
650}
651
652//===----------------------------------------------------------------------===//
653// Option Base class implementation
654//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000655
Chris Lattnerca6433f2003-05-22 20:06:43 +0000656bool Option::error(std::string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000657 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000658 if (ArgName[0] == 0)
Bill Wendlinge8156192006-12-07 01:30:32 +0000659 cerr << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000660 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000661 cerr << ProgramName << ": for the -" << ArgName;
Jim Laskeyabe0e3e2006-08-02 20:15:56 +0000662
Bill Wendlinge8156192006-12-07 01:30:32 +0000663 cerr << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000664 return true;
665}
666
Chris Lattner6d5857e2005-05-10 23:20:17 +0000667bool Option::addOccurrence(unsigned pos, const char *ArgName,
668 const std::string &Value) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000669 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000670
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000671 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000672 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000673 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000674 return error(": may only occur zero or one times!", ArgName);
675 break;
676 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000677 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000678 return error(": must occur exactly one time!", ArgName);
679 // Fall through
680 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000681 case ZeroOrMore:
682 case ConsumeAfter: break;
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000683 default: return error(": bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000684 }
685
Reid Spencer1e13fd22004-08-13 19:47:30 +0000686 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000687}
688
Chris Lattner331de232002-07-22 02:07:59 +0000689
690// getValueStr - Get the value description string, using "DefaultMsg" if nothing
691// has been specified yet.
692//
693static const char *getValueStr(const Option &O, const char *DefaultMsg) {
694 if (O.ValueStr[0] == 0) return DefaultMsg;
695 return O.ValueStr;
696}
697
698//===----------------------------------------------------------------------===//
699// cl::alias class implementation
700//
701
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000702// Return the width of the option tag for printing...
Chris Lattner331de232002-07-22 02:07:59 +0000703unsigned alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000704 return std::strlen(ArgStr)+6;
705}
706
Chris Lattnera0de8432006-04-28 05:36:25 +0000707// Print out the option for the alias.
Chris Lattner331de232002-07-22 02:07:59 +0000708void alias::printOptionInfo(unsigned GlobalWidth) const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000709 unsigned L = std::strlen(ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000710 cout << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
711 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000712}
713
714
Chris Lattner331de232002-07-22 02:07:59 +0000715
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000716//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000717// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000718//
719
Chris Lattner9b14eb52002-08-07 18:36:37 +0000720// basic_parser implementation
721//
722
723// Return the width of the option tag for printing...
724unsigned basic_parser_impl::getOptionWidth(const Option &O) const {
725 unsigned Len = std::strlen(O.ArgStr);
726 if (const char *ValName = getValueName())
727 Len += std::strlen(getValueStr(O, ValName))+3;
728
729 return Len + 6;
730}
731
Misha Brukmanf976c852005-04-21 22:55:34 +0000732// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000733// to-be-maintained width is specified.
734//
735void basic_parser_impl::printOptionInfo(const Option &O,
736 unsigned GlobalWidth) const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000737 cout << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000738
739 if (const char *ValName = getValueName())
Bill Wendlinge8156192006-12-07 01:30:32 +0000740 cout << "=<" << getValueStr(O, ValName) << ">";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000741
Bill Wendlinge8156192006-12-07 01:30:32 +0000742 cout << std::string(GlobalWidth-getOptionWidth(O), ' ') << " - "
743 << O.HelpStr << "\n";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000744}
745
746
747
748
Chris Lattner331de232002-07-22 02:07:59 +0000749// parser<bool> implementation
750//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000751bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000752 const std::string &Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000753 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000754 Arg == "1") {
755 Value = true;
756 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
757 Value = false;
758 } else {
Chris Lattner331de232002-07-22 02:07:59 +0000759 return O.error(": '" + Arg +
760 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000761 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000762 return false;
763}
764
Chris Lattner331de232002-07-22 02:07:59 +0000765// parser<int> implementation
766//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000767bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000768 const std::string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000769 char *End;
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000770 Value = (int)strtol(Arg.c_str(), &End, 0);
Misha Brukmanf976c852005-04-21 22:55:34 +0000771 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000772 return O.error(": '" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000773 return false;
774}
775
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000776// parser<unsigned> implementation
777//
778bool parser<unsigned>::parse(Option &O, const char *ArgName,
779 const std::string &Arg, unsigned &Value) {
780 char *End;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000781 errno = 0;
782 unsigned long V = strtoul(Arg.c_str(), &End, 0);
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000783 Value = (unsigned)V;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000784 if (((V == ULONG_MAX) && (errno == ERANGE))
785 || (*End != 0)
786 || (Value != V))
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000787 return O.error(": '" + Arg + "' value invalid for uint argument!");
788 return false;
789}
790
Chris Lattner9b14eb52002-08-07 18:36:37 +0000791// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000792//
Chris Lattnerca6433f2003-05-22 20:06:43 +0000793static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000794 const char *ArgStart = Arg.c_str();
795 char *End;
796 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000797 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000798 return O.error(": '" +Arg+ "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000799 return false;
800}
801
Chris Lattner9b14eb52002-08-07 18:36:37 +0000802bool parser<double>::parse(Option &O, const char *AN,
803 const std::string &Arg, double &Val) {
804 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000805}
806
Chris Lattner9b14eb52002-08-07 18:36:37 +0000807bool parser<float>::parse(Option &O, const char *AN,
808 const std::string &Arg, float &Val) {
809 double dVal;
810 if (parseDouble(O, Arg, dVal))
811 return true;
812 Val = (float)dVal;
813 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000814}
815
816
Chris Lattner331de232002-07-22 02:07:59 +0000817
818// generic_parser_base implementation
819//
820
Chris Lattneraa852bb2002-07-23 17:15:12 +0000821// findOption - Return the option number corresponding to the specified
822// argument string. If the option is not found, getNumOptions() is returned.
823//
824unsigned generic_parser_base::findOption(const char *Name) {
825 unsigned i = 0, e = getNumOptions();
Chris Lattnerca6433f2003-05-22 20:06:43 +0000826 std::string N(Name);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000827
828 while (i != e)
829 if (getOption(i) == N)
830 return i;
831 else
832 ++i;
833 return e;
834}
835
836
Chris Lattner331de232002-07-22 02:07:59 +0000837// Return the width of the option tag for printing...
838unsigned generic_parser_base::getOptionWidth(const Option &O) const {
839 if (O.hasArgStr()) {
840 unsigned Size = std::strlen(O.ArgStr)+6;
841 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
842 Size = std::max(Size, (unsigned)std::strlen(getOption(i))+8);
843 return Size;
844 } else {
845 unsigned BaseSize = 0;
846 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
847 BaseSize = std::max(BaseSize, (unsigned)std::strlen(getOption(i))+8);
848 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000849 }
850}
851
Misha Brukmanf976c852005-04-21 22:55:34 +0000852// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +0000853// to-be-maintained width is specified.
854//
855void generic_parser_base::printOptionInfo(const Option &O,
856 unsigned GlobalWidth) const {
857 if (O.hasArgStr()) {
858 unsigned L = std::strlen(O.ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000859 cout << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
860 << " - " << O.HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000861
Chris Lattner331de232002-07-22 02:07:59 +0000862 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
863 unsigned NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Bill Wendlinge8156192006-12-07 01:30:32 +0000864 cout << " =" << getOption(i) << std::string(NumSpaces, ' ')
865 << " - " << getDescription(i) << "\n";
Chris Lattner9c9be482002-01-31 00:42:56 +0000866 }
Chris Lattner331de232002-07-22 02:07:59 +0000867 } else {
868 if (O.HelpStr[0])
Bill Wendlinge8156192006-12-07 01:30:32 +0000869 cout << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000870 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
871 unsigned L = std::strlen(getOption(i));
Bill Wendlinge8156192006-12-07 01:30:32 +0000872 cout << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
873 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000874 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000875 }
876}
877
878
879//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000880// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000881//
Reid Spencerad0846b2004-11-14 22:04:00 +0000882
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000883namespace {
884
Chris Lattner331de232002-07-22 02:07:59 +0000885class HelpPrinter {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000886 unsigned MaxArgLen;
887 const Option *EmptyArg;
888 const bool ShowHidden;
889
Chris Lattner331de232002-07-22 02:07:59 +0000890 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Chris Lattnerca6433f2003-05-22 20:06:43 +0000891 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +0000892 return OptPair.second->getOptionHiddenFlag() >= Hidden;
893 }
Chris Lattnerca6433f2003-05-22 20:06:43 +0000894 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +0000895 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
896 }
897
898public:
899 HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
900 EmptyArg = 0;
901 }
902
903 void operator=(bool Value) {
904 if (Value == false) return;
905
Chris Lattner9878d6a2007-04-06 21:06:55 +0000906 // Get all the options.
907 std::vector<Option*> PositionalOpts;
908 std::map<std::string, Option*> OptMap;
909 GetOptionInfo(PositionalOpts, OptMap);
910
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000911 // Copy Options into a vector so we can sort them as we like...
Chris Lattner90aa8392006-10-04 21:52:35 +0000912 std::vector<std::pair<std::string, Option*> > Opts;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000913 copy(OptMap.begin(), OptMap.end(), std::back_inserter(Opts));
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000914
915 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner90aa8392006-10-04 21:52:35 +0000916 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
917 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
918 Opts.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000919
920 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +0000921 { // Give OptionSet a scope
922 std::set<Option*> OptionSet;
Chris Lattner90aa8392006-10-04 21:52:35 +0000923 for (unsigned i = 0; i != Opts.size(); ++i)
924 if (OptionSet.count(Opts[i].second) == 0)
925 OptionSet.insert(Opts[i].second); // Add new entry to set
Chris Lattner331de232002-07-22 02:07:59 +0000926 else
Chris Lattner90aa8392006-10-04 21:52:35 +0000927 Opts.erase(Opts.begin()+i--); // Erase duplicate
Chris Lattner331de232002-07-22 02:07:59 +0000928 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000929
930 if (ProgramOverview)
Bill Wendlinge8156192006-12-07 01:30:32 +0000931 cout << "OVERVIEW:" << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000932
Bill Wendlinge8156192006-12-07 01:30:32 +0000933 cout << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +0000934
Chris Lattner90aa8392006-10-04 21:52:35 +0000935 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +0000936 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000937 if (!PositionalOpts.empty() &&
938 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
939 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +0000940
Chris Lattner9878d6a2007-04-06 21:06:55 +0000941 for (unsigned i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
942 if (PositionalOpts[i]->ArgStr[0])
943 cout << " --" << PositionalOpts[i]->ArgStr;
944 cout << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000945 }
Chris Lattner331de232002-07-22 02:07:59 +0000946
947 // Print the consume after option info if it exists...
Bill Wendlinge8156192006-12-07 01:30:32 +0000948 if (CAOpt) cout << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +0000949
Bill Wendlinge8156192006-12-07 01:30:32 +0000950 cout << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000951
952 // Compute the maximum argument length...
953 MaxArgLen = 0;
Chris Lattner90aa8392006-10-04 21:52:35 +0000954 for (unsigned i = 0, e = Opts.size(); i != e; ++i)
955 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000956
Bill Wendlinge8156192006-12-07 01:30:32 +0000957 cout << "OPTIONS:\n";
Chris Lattner90aa8392006-10-04 21:52:35 +0000958 for (unsigned i = 0, e = Opts.size(); i != e; ++i)
959 Opts[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000960
Chris Lattnerc540ebb2004-11-19 17:08:15 +0000961 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +0000962 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
963 E = MoreHelp->end(); I != E; ++I)
Bill Wendlinge8156192006-12-07 01:30:32 +0000964 cout << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +0000965 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +0000966
Reid Spencer9bbba0912004-11-16 06:11:52 +0000967 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +0000968 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000969 }
970};
Chris Lattner500d8bf2006-10-12 22:09:17 +0000971} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000972
Chris Lattner331de232002-07-22 02:07:59 +0000973// Define the two HelpPrinter instances that are used to print out help, or
974// help-hidden...
975//
Chris Lattner500d8bf2006-10-12 22:09:17 +0000976static HelpPrinter NormalPrinter(false);
977static HelpPrinter HiddenPrinter(true);
Chris Lattner331de232002-07-22 02:07:59 +0000978
Chris Lattner500d8bf2006-10-12 22:09:17 +0000979static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +0000980HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +0000981 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +0000982
Chris Lattner500d8bf2006-10-12 22:09:17 +0000983static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +0000984HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +0000985 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000986
Chris Lattner500d8bf2006-10-12 22:09:17 +0000987static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +0000988
Chris Lattner500d8bf2006-10-12 22:09:17 +0000989namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +0000990class VersionPrinter {
991public:
Devang Patelaed293d2007-02-01 01:43:37 +0000992 void print() {
Bill Wendlinge8156192006-12-07 01:30:32 +0000993 cout << "Low Level Virtual Machine (http://llvm.org/):\n";
994 cout << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +0000995#ifdef LLVM_VERSION_INFO
Bill Wendlinge8156192006-12-07 01:30:32 +0000996 cout << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +0000997#endif
Bill Wendlinge8156192006-12-07 01:30:32 +0000998 cout << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +0000999#ifndef __OPTIMIZE__
Bill Wendlinge8156192006-12-07 01:30:32 +00001000 cout << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001001#else
Bill Wendlinge8156192006-12-07 01:30:32 +00001002 cout << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001003#endif
1004#ifndef NDEBUG
Bill Wendlinge8156192006-12-07 01:30:32 +00001005 cout << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001006#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001007 cout << ".\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001008 }
1009 void operator=(bool OptionWasSpecified) {
1010 if (OptionWasSpecified) {
1011 if (OverrideVersionPrinter == 0) {
1012 print();
Reid Spencer515b5b32006-06-05 16:22:56 +00001013 exit(1);
1014 } else {
1015 (*OverrideVersionPrinter)();
1016 exit(1);
1017 }
1018 }
1019 }
1020};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001021} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001022
1023
Reid Spencer69105f32004-08-04 00:36:06 +00001024// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001025static VersionPrinter VersionPrinterInstance;
1026
1027static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001028VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001029 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1030
Reid Spencer9bbba0912004-11-16 06:11:52 +00001031// Utility function for printing the help message.
1032void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001033 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001034 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1035 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001036 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001037 // --help option was given or not. Since we're circumventing that we have
1038 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001039 NormalPrinter = true;
1040}
Reid Spencer515b5b32006-06-05 16:22:56 +00001041
Devang Patelaed293d2007-02-01 01:43:37 +00001042/// Utility function for printing version number.
1043void cl::PrintVersionMessage() {
1044 VersionPrinterInstance.print();
1045}
1046
Reid Spencer515b5b32006-06-05 16:22:56 +00001047void cl::SetVersionPrinter(void (*func)()) {
1048 OverrideVersionPrinter = func;
1049}