blob: ec3af84168253c57f27e1eda8b6f241ac6780163 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- CommandLine.cpp - Command line parser implementation --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
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//
14// 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//
17//===----------------------------------------------------------------------===//
18
19#include "llvm/Config/config.h"
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +000020#include "llvm/ADT/OwningPtr.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/Support/CommandLine.h"
Edwin Törökced9ff82009-07-11 13:10:19 +000022#include "llvm/Support/ErrorHandling.h"
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +000023#include "llvm/Support/MemoryBuffer.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/Support/ManagedStatic.h"
Daniel Dunbar9b3edb62009-07-16 02:06:09 +000025#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/System/Path.h"
27#include <algorithm>
28#include <functional>
29#include <map>
30#include <ostream>
31#include <set>
32#include <cstdlib>
33#include <cerrno>
34#include <cstring>
Anton Korobeynikov357a27d2008-02-20 11:08:44 +000035#include <climits>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036using namespace llvm;
37using namespace cl;
38
39//===----------------------------------------------------------------------===//
40// Template instantiations and anchors.
41//
42TEMPLATE_INSTANTIATION(class basic_parser<bool>);
43TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
44TEMPLATE_INSTANTIATION(class basic_parser<int>);
45TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
46TEMPLATE_INSTANTIATION(class basic_parser<double>);
47TEMPLATE_INSTANTIATION(class basic_parser<float>);
48TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
Bill Wendlingf0d2d952009-04-29 23:26:16 +000049TEMPLATE_INSTANTIATION(class basic_parser<char>);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050
51TEMPLATE_INSTANTIATION(class opt<unsigned>);
52TEMPLATE_INSTANTIATION(class opt<int>);
53TEMPLATE_INSTANTIATION(class opt<std::string>);
Bill Wendlingf0d2d952009-04-29 23:26:16 +000054TEMPLATE_INSTANTIATION(class opt<char>);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055TEMPLATE_INSTANTIATION(class opt<bool>);
56
57void Option::anchor() {}
58void basic_parser_impl::anchor() {}
59void parser<bool>::anchor() {}
60void parser<boolOrDefault>::anchor() {}
61void parser<int>::anchor() {}
62void parser<unsigned>::anchor() {}
63void parser<double>::anchor() {}
64void parser<float>::anchor() {}
65void parser<std::string>::anchor() {}
Bill Wendlingf0d2d952009-04-29 23:26:16 +000066void parser<char>::anchor() {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067
68//===----------------------------------------------------------------------===//
69
70// Globals for name and overview of program. Program name is not a string to
71// avoid static ctor/dtor issues.
72static char ProgramName[80] = "<premain>";
73static const char *ProgramOverview = 0;
74
75// This collects additional help to be printed.
76static ManagedStatic<std::vector<const char*> > MoreHelp;
77
78extrahelp::extrahelp(const char *Help)
79 : morehelp(Help) {
80 MoreHelp->push_back(Help);
81}
82
83static bool OptionListChanged = false;
84
85// MarkOptionsChanged - Internal helper function.
86void cl::MarkOptionsChanged() {
87 OptionListChanged = true;
88}
89
90/// RegisteredOptionList - This is the list of the command line options that
91/// have statically constructed themselves.
92static Option *RegisteredOptionList = 0;
93
94void Option::addArgument() {
95 assert(NextRegistered == 0 && "argument multiply registered!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +000096
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097 NextRegistered = RegisteredOptionList;
98 RegisteredOptionList = this;
99 MarkOptionsChanged();
100}
101
102
103//===----------------------------------------------------------------------===//
104// Basic, shared command line option processing machinery.
105//
106
107/// GetOptionInfo - Scan the list of registered options, turning them into data
108/// structures that are easier to handle.
109static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000110 std::vector<Option*> &SinkOpts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 std::map<std::string, Option*> &OptionsMap) {
112 std::vector<const char*> OptionNames;
113 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
114 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
115 // If this option wants to handle multiple option names, get the full set.
116 // This handles enum options like "-O1 -O2" etc.
117 O->getExtraOptionNames(OptionNames);
118 if (O->ArgStr[0])
119 OptionNames.push_back(O->ArgStr);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000120
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121 // Handle named options.
Evan Cheng591bfc82008-05-05 18:30:58 +0000122 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 // Add argument to the argument map!
124 if (!OptionsMap.insert(std::pair<std::string,Option*>(OptionNames[i],
125 O)).second) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000126 errs() << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman5e270092008-05-30 13:26:11 +0000127 << OptionNames[i] << "' defined more than once!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 }
129 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000130
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131 OptionNames.clear();
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000132
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 // Remember information about positional options.
134 if (O->getFormattingFlag() == cl::Positional)
135 PositionalOpts.push_back(O);
Dan Gohmane411a2d2008-02-23 01:55:25 +0000136 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000137 SinkOpts.push_back(O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
139 if (CAOpt)
140 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
141 CAOpt = O;
142 }
143 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000144
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 if (CAOpt)
146 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000147
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 // Make sure that they are in order of registration not backwards.
149 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
150}
151
152
153/// LookupOption - Lookup the option specified by the specified option on the
154/// command line. If there is a value specified (after an equal sign) return
155/// that as well.
156static Option *LookupOption(const char *&Arg, const char *&Value,
157 std::map<std::string, Option*> &OptionsMap) {
158 while (*Arg == '-') ++Arg; // Eat leading dashes
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000159
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 const char *ArgEnd = Arg;
161 while (*ArgEnd && *ArgEnd != '=')
162 ++ArgEnd; // Scan till end of argument name.
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000163
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 if (*ArgEnd == '=') // If we have an equals sign...
165 Value = ArgEnd+1; // Get the value, not the equals
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000166
167
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 if (*Arg == 0) return 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000169
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 // Look up the option.
171 std::map<std::string, Option*>::iterator I =
172 OptionsMap.find(std::string(Arg, ArgEnd));
173 return I != OptionsMap.end() ? I->second : 0;
174}
175
176static inline bool ProvideOption(Option *Handler, const char *ArgName,
177 const char *Value, int argc, char **argv,
178 int &i) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000179 // Is this a multi-argument option?
180 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
181
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 // Enforce value requirements
183 switch (Handler->getValueExpectedFlag()) {
184 case ValueRequired:
185 if (Value == 0) { // No value specified?
186 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
187 Value = argv[++i];
188 } else {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000189 return Handler->error("requires a value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 }
191 }
192 break;
193 case ValueDisallowed:
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000194 if (NumAdditionalVals > 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000195 return Handler->error("multi-valued option specified"
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000196 " with ValueDisallowed modifier!");
197
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000198 if (Value)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000199 return Handler->error("does not allow a value! '" +
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200 std::string(Value) + "' specified.");
201 break;
202 case ValueOptional:
203 break;
204 default:
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000205 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 << ": Bad ValueMask flag! CommandLine usage error:"
207 << Handler->getValueExpectedFlag() << "\n";
Edwin Törökbd448e32009-07-14 16:55:14 +0000208 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 }
210
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000211 // If this isn't a multi-arg option, just run the handler.
212 if (NumAdditionalVals == 0) {
213 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
214 }
215 // If it is, run the handle several times.
216 else {
217 bool MultiArg = false;
218
219 if (Value) {
220 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
221 return true;
222 --NumAdditionalVals;
223 MultiArg = true;
224 }
225
226 while (NumAdditionalVals > 0) {
227
228 if (i+1 < argc) {
229 Value = argv[++i];
230 } else {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000231 return Handler->error("not enough values!");
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000232 }
233 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
234 return true;
235 MultiArg = true;
236 --NumAdditionalVals;
237 }
238 return false;
239 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240}
241
242static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
243 int i) {
244 int Dummy = i;
245 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
246}
247
248
249// Option predicates...
250static inline bool isGrouping(const Option *O) {
251 return O->getFormattingFlag() == cl::Grouping;
252}
253static inline bool isPrefixedOrGrouping(const Option *O) {
254 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
255}
256
257// getOptionPred - Check to see if there are any options that satisfy the
258// specified predicate with names that are the prefixes in Name. This is
259// checked by progressively stripping characters off of the name, checking to
260// see if there options that satisfy the predicate. If we find one, return it,
261// otherwise return null.
262//
Evan Cheng591bfc82008-05-05 18:30:58 +0000263static Option *getOptionPred(std::string Name, size_t &Length,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 bool (*Pred)(const Option*),
265 std::map<std::string, Option*> &OptionsMap) {
266
267 std::map<std::string, Option*>::iterator OMI = OptionsMap.find(Name);
268 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
269 Length = Name.length();
270 return OMI->second;
271 }
272
273 if (Name.size() == 1) return 0;
274 do {
275 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
276 OMI = OptionsMap.find(Name);
277
278 // Loop while we haven't found an option and Name still has at least two
279 // characters in it (so that the next iteration will not be the empty
280 // string...
281 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
282
283 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
284 Length = Name.length();
285 return OMI->second; // Found one!
286 }
287 return 0; // No option found!
288}
289
290static bool RequiresValue(const Option *O) {
291 return O->getNumOccurrencesFlag() == cl::Required ||
292 O->getNumOccurrencesFlag() == cl::OneOrMore;
293}
294
295static bool EatsUnboundedNumberOfValues(const Option *O) {
296 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
297 O->getNumOccurrencesFlag() == cl::OneOrMore;
298}
299
300/// ParseCStringVector - Break INPUT up wherever one or more
301/// whitespace characters are found, and store the resulting tokens in
302/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
303/// using strdup (), so it is the caller's responsibility to free ()
304/// them later.
305///
306static void ParseCStringVector(std::vector<char *> &output,
307 const char *input) {
308 // Characters which will be treated as token separators:
Dan Gohman12300e12008-03-25 21:45:14 +0000309 static const char *const delims = " \v\f\t\r\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000310
311 std::string work (input);
312 // Skip past any delims at head of input string.
313 size_t pos = work.find_first_not_of (delims);
314 // If the string consists entirely of delims, then exit early.
315 if (pos == std::string::npos) return;
316 // Otherwise, jump forward to beginning of first word.
317 work = work.substr (pos);
318 // Find position of first delimiter.
319 pos = work.find_first_of (delims);
320
321 while (!work.empty() && pos != std::string::npos) {
322 // Everything from 0 to POS is the next word to copy.
323 output.push_back (strdup (work.substr (0,pos).c_str ()));
324 // Is there another word in the string?
325 size_t nextpos = work.find_first_not_of (delims, pos + 1);
326 if (nextpos != std::string::npos) {
327 // Yes? Then remove delims from beginning ...
328 work = work.substr (work.find_first_not_of (delims, pos + 1));
329 // and find the end of the word.
330 pos = work.find_first_of (delims);
331 } else {
332 // No? (Remainder of string is delims.) End the loop.
333 work = "";
334 pos = std::string::npos;
335 }
336 }
337
338 // If `input' ended with non-delim char, then we'll get here with
339 // the last word of `input' in `work'; copy it now.
340 if (!work.empty ()) {
341 output.push_back (strdup (work.c_str ()));
342 }
343}
344
345/// ParseEnvironmentOptions - An alternative entry point to the
346/// CommandLine library, which allows you to read the program's name
347/// from the caller (as PROGNAME) and its command-line arguments from
348/// an environment variable (whose name is given in ENVVAR).
349///
350void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000351 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 // Check args.
353 assert(progName && "Program name not specified");
354 assert(envVar && "Environment variable name missing");
355
356 // Get the environment variable they want us to parse options out of.
357 const char *envValue = getenv(envVar);
358 if (!envValue)
359 return;
360
361 // Get program's "name", which we wouldn't know without the caller
362 // telling us.
363 std::vector<char*> newArgv;
364 newArgv.push_back(strdup(progName));
365
366 // Parse the value of the environment variable into a "command line"
367 // and hand it off to ParseCommandLineOptions().
368 ParseCStringVector(newArgv, envValue);
Evan Cheng591bfc82008-05-05 18:30:58 +0000369 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000370 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371
372 // Free all the strdup()ed strings.
373 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
374 i != e; ++i)
375 free (*i);
376}
377
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000378
379/// ExpandResponseFiles - Copy the contents of argv into newArgv,
380/// substituting the contents of the response files for the arguments
381/// of type @file.
382static void ExpandResponseFiles(int argc, char** argv,
383 std::vector<char*>& newArgv) {
384 for (int i = 1; i != argc; ++i) {
385 char* arg = argv[i];
386
387 if (arg[0] == '@') {
388
389 sys::PathWithStatus respFile(++arg);
390
391 // Check that the response file is not empty (mmap'ing empty
392 // files can be problematic).
393 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000394 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000395
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000396 // Mmap the response file into memory.
397 OwningPtr<MemoryBuffer>
398 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000399
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000400 // If we could open the file, parse its contents, otherwise
401 // pass the @file option verbatim.
Mikhail Glushenkovc591ed142009-01-28 03:46:22 +0000402
403 // TODO: we should also support recursive loading of response files,
404 // since this is how gcc behaves. (From their man page: "The file may
405 // itself contain additional @file options; any such options will be
406 // processed recursively.")
407
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000408 if (respFilePtr != 0) {
409 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
410 continue;
411 }
412 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000413 }
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000414 newArgv.push_back(strdup(arg));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000415 }
416}
417
Dan Gohman61db06b2007-10-09 16:04:57 +0000418void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000419 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420 // Process all registered options.
421 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000422 std::vector<Option*> SinkOpts;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 std::map<std::string, Option*> Opts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000424 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000425
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426 assert((!Opts.empty() || !PositionalOpts.empty()) &&
427 "No options specified!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000428
429 // Expand response files.
430 std::vector<char*> newArgv;
431 if (ReadResponseFiles) {
432 newArgv.push_back(strdup(argv[0]));
433 ExpandResponseFiles(argc, argv, newArgv);
434 argv = &newArgv[0];
Evan Cheng591bfc82008-05-05 18:30:58 +0000435 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000436 }
437
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000438 // Copy the program name into ProgName, making sure not to overflow it.
439 std::string ProgName = sys::Path(argv[0]).getLast();
440 if (ProgName.size() > 79) ProgName.resize(79);
441 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000442
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000443 ProgramOverview = Overview;
444 bool ErrorParsing = false;
445
446 // Check out the positional arguments to collect information about them.
447 unsigned NumPositionalRequired = 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000448
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449 // Determine whether or not there are an unlimited number of positionals
450 bool HasUnlimitedPositionals = false;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000451
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 Option *ConsumeAfterOpt = 0;
453 if (!PositionalOpts.empty()) {
454 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
455 assert(PositionalOpts.size() > 1 &&
456 "Cannot specify cl::ConsumeAfter without a positional argument!");
457 ConsumeAfterOpt = PositionalOpts[0];
458 }
459
460 // Calculate how many positional values are _required_.
461 bool UnboundedFound = false;
Evan Cheng591bfc82008-05-05 18:30:58 +0000462 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 i != e; ++i) {
464 Option *Opt = PositionalOpts[i];
465 if (RequiresValue(Opt))
466 ++NumPositionalRequired;
467 else if (ConsumeAfterOpt) {
468 // ConsumeAfter cannot be combined with "optional" positional options
469 // unless there is only one positional argument...
470 if (PositionalOpts.size() > 2)
471 ErrorParsing |=
Benjamin Kramer9164c672009-08-02 12:13:02 +0000472 Opt->error("error - this positional option will never be matched, "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 "because it does not Require a value, and a "
474 "cl::ConsumeAfter option is active!");
475 } else if (UnboundedFound && !Opt->ArgStr[0]) {
476 // This option does not "require" a value... Make sure this option is
477 // not specified after an option that eats all extra arguments, or this
478 // one will never get any!
479 //
Benjamin Kramer9164c672009-08-02 12:13:02 +0000480 ErrorParsing |= Opt->error("error - option can never match, because "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 "another positional argument will match an "
482 "unbounded number of values, and this option"
483 " does not require a value!");
484 }
485 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
486 }
487 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
488 }
489
490 // PositionalVals - A vector of "positional" arguments we accumulate into
491 // the process at the end...
492 //
493 std::vector<std::pair<std::string,unsigned> > PositionalVals;
494
495 // If the program has named positional arguments, and the name has been run
496 // across, keep track of which positional argument was named. Otherwise put
497 // the positional args into the PositionalVals list...
498 Option *ActivePositionalArg = 0;
499
500 // Loop over all of the arguments... processing them.
501 bool DashDashFound = false; // Have we read '--'?
502 for (int i = 1; i < argc; ++i) {
503 Option *Handler = 0;
504 const char *Value = 0;
505 const char *ArgName = "";
506
507 // If the option list changed, this means that some command line
508 // option has just been registered or deregistered. This can occur in
509 // response to things like -load, etc. If this happens, rescan the options.
510 if (OptionListChanged) {
511 PositionalOpts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000512 SinkOpts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513 Opts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000514 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 OptionListChanged = false;
516 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000517
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 // Check to see if this is a positional argument. This argument is
519 // considered to be positional if it doesn't start with '-', if it is "-"
520 // itself, or if we have seen "--" already.
521 //
522 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
523 // Positional argument!
524 if (ActivePositionalArg) {
525 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
526 continue; // We are done!
527 } else if (!PositionalOpts.empty()) {
528 PositionalVals.push_back(std::make_pair(argv[i],i));
529
530 // All of the positional arguments have been fulfulled, give the rest to
531 // the consume after option... if it's specified...
532 //
533 if (PositionalVals.size() >= NumPositionalRequired &&
534 ConsumeAfterOpt != 0) {
535 for (++i; i < argc; ++i)
536 PositionalVals.push_back(std::make_pair(argv[i],i));
537 break; // Handle outside of the argument processing loop...
538 }
539
540 // Delay processing positional arguments until the end...
541 continue;
542 }
543 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
544 !DashDashFound) {
545 DashDashFound = true; // This is the mythical "--"?
546 continue; // Don't try to process it as an argument itself.
547 } else if (ActivePositionalArg &&
548 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
549 // If there is a positional argument eating options, check to see if this
550 // option is another positional argument. If so, treat it as an argument,
551 // otherwise feed it to the eating positional.
552 ArgName = argv[i]+1;
553 Handler = LookupOption(ArgName, Value, Opts);
554 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
555 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
556 continue; // We are done!
557 }
558
559 } else { // We start with a '-', must be an argument...
560 ArgName = argv[i]+1;
561 Handler = LookupOption(ArgName, Value, Opts);
562
563 // Check to see if this "option" is really a prefixed or grouped argument.
564 if (Handler == 0) {
565 std::string RealName(ArgName);
566 if (RealName.size() > 1) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000567 size_t Length = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
569 Opts);
570
571 // If the option is a prefixed option, then the value is simply the
572 // rest of the name... so fall through to later processing, by
573 // setting up the argument name flags and value fields.
574 //
575 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
576 Value = ArgName+Length;
577 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
578 Opts.find(std::string(ArgName, Value))->second == PGOpt);
579 Handler = PGOpt;
580 } else if (PGOpt) {
581 // This must be a grouped option... handle them now.
582 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
583
584 do {
585 // Move current arg name out of RealName into RealArgName...
586 std::string RealArgName(RealName.begin(),
587 RealName.begin() + Length);
588 RealName.erase(RealName.begin(), RealName.begin() + Length);
589
590 // Because ValueRequired is an invalid flag for grouped arguments,
591 // we don't need to pass argc/argv in...
592 //
593 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
594 "Option can not be cl::Grouping AND cl::ValueRequired!");
595 int Dummy;
596 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
597 0, 0, 0, Dummy);
598
599 // Get the next grouping option...
600 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
601 } while (PGOpt && Length != RealName.size());
602
603 Handler = PGOpt; // Ate all of the options.
604 }
605 }
606 }
607 }
608
609 if (Handler == 0) {
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000610 if (SinkOpts.empty()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000611 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000612 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
613 ErrorParsing = true;
614 } else {
615 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
616 E = SinkOpts.end(); I != E ; ++I)
617 (*I)->addOccurrence(i, "", argv[i]);
618 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 continue;
620 }
621
622 // Check to see if this option accepts a comma separated list of values. If
623 // it does, we have to split up the value into multiple values...
624 if (Value && Handler->getMiscFlags() & CommaSeparated) {
625 std::string Val(Value);
626 std::string::size_type Pos = Val.find(',');
627
628 while (Pos != std::string::npos) {
629 // Process the portion before the comma...
630 ErrorParsing |= ProvideOption(Handler, ArgName,
631 std::string(Val.begin(),
632 Val.begin()+Pos).c_str(),
633 argc, argv, i);
634 // Erase the portion before the comma, AND the comma...
635 Val.erase(Val.begin(), Val.begin()+Pos+1);
636 Value += Pos+1; // Increment the original value pointer as well...
637
638 // Check for another comma...
639 Pos = Val.find(',');
640 }
641 }
642
643 // If this is a named positional argument, just remember that it is the
644 // active one...
645 if (Handler->getFormattingFlag() == cl::Positional)
646 ActivePositionalArg = Handler;
647 else
648 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
649 }
650
651 // Check and handle positional arguments now...
652 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000653 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000654 << ": Not enough positional command line arguments specified!\n"
655 << "Must specify at least " << NumPositionalRequired
656 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000657
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000658 ErrorParsing = true;
659 } else if (!HasUnlimitedPositionals
660 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000661 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000662 << ": Too many positional arguments specified!\n"
663 << "Can specify at most " << PositionalOpts.size()
664 << " positional arguments: See: " << argv[0] << " --help\n";
665 ErrorParsing = true;
666
667 } else if (ConsumeAfterOpt == 0) {
668 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng591bfc82008-05-05 18:30:58 +0000669 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
670 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000671 if (RequiresValue(PositionalOpts[i])) {
672 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
673 PositionalVals[ValNo].second);
674 ValNo++;
675 --NumPositionalRequired; // We fulfilled our duty...
676 }
677
678 // If we _can_ give this option more arguments, do so now, as long as we
679 // do not give it values that others need. 'Done' controls whether the
680 // option even _WANTS_ any more.
681 //
682 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
683 while (NumVals-ValNo > NumPositionalRequired && !Done) {
684 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
685 case cl::Optional:
686 Done = true; // Optional arguments want _at most_ one value
687 // FALL THROUGH
688 case cl::ZeroOrMore: // Zero or more will take all they can get...
689 case cl::OneOrMore: // One or more will take all they can get...
690 ProvidePositionalOption(PositionalOpts[i],
691 PositionalVals[ValNo].first,
692 PositionalVals[ValNo].second);
693 ValNo++;
694 break;
695 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000696 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 "positional argument processing!");
698 }
699 }
700 }
701 } else {
702 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
703 unsigned ValNo = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +0000704 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000705 if (RequiresValue(PositionalOpts[j])) {
706 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
707 PositionalVals[ValNo].first,
708 PositionalVals[ValNo].second);
709 ValNo++;
710 }
711
712 // Handle the case where there is just one positional option, and it's
713 // optional. In this case, we want to give JUST THE FIRST option to the
714 // positional option and keep the rest for the consume after. The above
715 // loop would have assigned no values to positional options in this case.
716 //
717 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
718 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
719 PositionalVals[ValNo].first,
720 PositionalVals[ValNo].second);
721 ValNo++;
722 }
723
724 // Handle over all of the rest of the arguments to the
725 // cl::ConsumeAfter command line option...
726 for (; ValNo != PositionalVals.size(); ++ValNo)
727 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
728 PositionalVals[ValNo].first,
729 PositionalVals[ValNo].second);
730 }
731
732 // Loop over args and make sure all required args are specified!
733 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
734 E = Opts.end(); I != E; ++I) {
735 switch (I->second->getNumOccurrencesFlag()) {
736 case Required:
737 case OneOrMore:
738 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000739 I->second->error("must be specified at least once!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740 ErrorParsing = true;
741 }
742 // Fall through
743 default:
744 break;
745 }
746 }
747
748 // Free all of the memory allocated to the map. Command line options may only
749 // be processed once!
750 Opts.clear();
751 PositionalOpts.clear();
752 MoreHelp->clear();
753
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000754 // Free the memory allocated by ExpandResponseFiles.
755 if (ReadResponseFiles) {
756 // Free all the strdup()ed strings.
757 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
758 i != e; ++i)
759 free (*i);
760 }
761
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000762 // If we had an error processing our arguments, don't let the program execute
763 if (ErrorParsing) exit(1);
764}
765
766//===----------------------------------------------------------------------===//
767// Option Base class implementation
768//
769
770bool Option::error(std::string Message, const char *ArgName) {
771 if (ArgName == 0) ArgName = ArgStr;
772 if (ArgName[0] == 0)
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000773 errs() << HelpStr; // Be nice for positional arguments
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000774 else
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000775 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000776
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000777 errs() << " option: " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 return true;
779}
780
781bool Option::addOccurrence(unsigned pos, const char *ArgName,
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000782 const std::string &Value,
783 bool MultiArg) {
784 if (!MultiArg)
785 NumOccurrences++; // Increment the number of times we have been seen
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000786
787 switch (getNumOccurrencesFlag()) {
788 case Optional:
789 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000790 return error("may only occur zero or one times!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000791 break;
792 case Required:
793 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000794 return error("must occur exactly one time!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000795 // Fall through
796 case OneOrMore:
797 case ZeroOrMore:
798 case ConsumeAfter: break;
Benjamin Kramer9164c672009-08-02 12:13:02 +0000799 default: return error("bad num occurrences flag value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800 }
801
802 return handleOccurrence(pos, ArgName, Value);
803}
804
805
806// getValueStr - Get the value description string, using "DefaultMsg" if nothing
807// has been specified yet.
808//
809static const char *getValueStr(const Option &O, const char *DefaultMsg) {
810 if (O.ValueStr[0] == 0) return DefaultMsg;
811 return O.ValueStr;
812}
813
814//===----------------------------------------------------------------------===//
815// cl::alias class implementation
816//
817
818// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000819size_t alias::getOptionWidth() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000820 return std::strlen(ArgStr)+6;
821}
822
823// Print out the option for the alias.
Evan Cheng591bfc82008-05-05 18:30:58 +0000824void alias::printOptionInfo(size_t GlobalWidth) const {
825 size_t L = std::strlen(ArgStr);
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000826 errs() << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
Daniel Dunbar9b3edb62009-07-16 02:06:09 +0000827 << HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000828}
829
830
831
832//===----------------------------------------------------------------------===//
833// Parser Implementation code...
834//
835
836// basic_parser implementation
837//
838
839// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000840size_t basic_parser_impl::getOptionWidth(const Option &O) const {
841 size_t Len = std::strlen(O.ArgStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842 if (const char *ValName = getValueName())
843 Len += std::strlen(getValueStr(O, ValName))+3;
844
845 return Len + 6;
846}
847
848// printOptionInfo - Print out information about this option. The
849// to-be-maintained width is specified.
850//
851void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000852 size_t GlobalWidth) const {
Chris Lattner5febcae2009-08-23 08:43:55 +0000853 outs() << " -" << O.ArgStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854
855 if (const char *ValName = getValueName())
Chris Lattner5febcae2009-08-23 08:43:55 +0000856 outs() << "=<" << getValueStr(O, ValName) << '>';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000857
Chris Lattner5febcae2009-08-23 08:43:55 +0000858 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000859}
860
861
862
863
864// parser<bool> implementation
865//
866bool parser<bool>::parse(Option &O, const char *ArgName,
867 const std::string &Arg, bool &Value) {
868 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
869 Arg == "1") {
870 Value = true;
871 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
872 Value = false;
873 } else {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000874 return O.error("'" + Arg +
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875 "' is invalid value for boolean argument! Try 0 or 1");
876 }
877 return false;
878}
879
880// parser<boolOrDefault> implementation
881//
882bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
883 const std::string &Arg, boolOrDefault &Value) {
884 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
885 Arg == "1") {
886 Value = BOU_TRUE;
Mike Stump66fcfa42009-01-30 08:19:46 +0000887 } else if (Arg == "false" || Arg == "FALSE"
888 || Arg == "False" || Arg == "0") {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889 Value = BOU_FALSE;
890 } else {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000891 return O.error("'" + Arg +
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892 "' is invalid value for boolean argument! Try 0 or 1");
893 }
894 return false;
895}
896
897// parser<int> implementation
898//
899bool parser<int>::parse(Option &O, const char *ArgName,
900 const std::string &Arg, int &Value) {
901 char *End;
902 Value = (int)strtol(Arg.c_str(), &End, 0);
903 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000904 return O.error("'" + Arg + "' value invalid for integer argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 return false;
906}
907
908// parser<unsigned> implementation
909//
910bool parser<unsigned>::parse(Option &O, const char *ArgName,
911 const std::string &Arg, unsigned &Value) {
912 char *End;
913 errno = 0;
914 unsigned long V = strtoul(Arg.c_str(), &End, 0);
915 Value = (unsigned)V;
916 if (((V == ULONG_MAX) && (errno == ERANGE))
917 || (*End != 0)
918 || (Value != V))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000919 return O.error("'" + Arg + "' value invalid for uint argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000920 return false;
921}
922
923// parser<double>/parser<float> implementation
924//
925static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
926 const char *ArgStart = Arg.c_str();
927 char *End;
928 Value = strtod(ArgStart, &End);
929 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000930 return O.error("'" + Arg + "' value invalid for floating point argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931 return false;
932}
933
934bool parser<double>::parse(Option &O, const char *AN,
935 const std::string &Arg, double &Val) {
936 return parseDouble(O, Arg, Val);
937}
938
939bool parser<float>::parse(Option &O, const char *AN,
940 const std::string &Arg, float &Val) {
941 double dVal;
942 if (parseDouble(O, Arg, dVal))
943 return true;
944 Val = (float)dVal;
945 return false;
946}
947
948
949
950// generic_parser_base implementation
951//
952
953// findOption - Return the option number corresponding to the specified
954// argument string. If the option is not found, getNumOptions() is returned.
955//
956unsigned generic_parser_base::findOption(const char *Name) {
957 unsigned i = 0, e = getNumOptions();
958 std::string N(Name);
959
960 while (i != e)
961 if (getOption(i) == N)
962 return i;
963 else
964 ++i;
965 return e;
966}
967
968
969// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000970size_t generic_parser_base::getOptionWidth(const Option &O) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000972 size_t Size = std::strlen(O.ArgStr)+6;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000974 Size = std::max(Size, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 return Size;
976 } else {
Evan Cheng591bfc82008-05-05 18:30:58 +0000977 size_t BaseSize = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000979 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 return BaseSize;
981 }
982}
983
984// printOptionInfo - Print out information about this option. The
985// to-be-maintained width is specified.
986//
987void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000988 size_t GlobalWidth) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000990 size_t L = std::strlen(O.ArgStr);
Chris Lattner5febcae2009-08-23 08:43:55 +0000991 outs() << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
992 << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000993
994 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000995 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattner5febcae2009-08-23 08:43:55 +0000996 outs() << " =" << getOption(i) << std::string(NumSpaces, ' ')
997 << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998 }
999 } else {
1000 if (O.HelpStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001001 outs() << " " << O.HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001002 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +00001003 size_t L = std::strlen(getOption(i));
Chris Lattner5febcae2009-08-23 08:43:55 +00001004 outs() << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
1005 << " - " << getDescription(i) << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006 }
1007 }
1008}
1009
1010
1011//===----------------------------------------------------------------------===//
1012// --help and --help-hidden option implementation
1013//
1014
1015namespace {
1016
1017class HelpPrinter {
Evan Cheng591bfc82008-05-05 18:30:58 +00001018 size_t MaxArgLen;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019 const Option *EmptyArg;
1020 const bool ShowHidden;
1021
1022 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
1023 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
1024 return OptPair.second->getOptionHiddenFlag() >= Hidden;
1025 }
1026 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
1027 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
1028 }
1029
1030public:
Dan Gohman40bd38e2008-03-25 22:06:05 +00001031 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 EmptyArg = 0;
1033 }
1034
1035 void operator=(bool Value) {
1036 if (Value == false) return;
1037
1038 // Get all the options.
1039 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001040 std::vector<Option*> SinkOpts;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041 std::map<std::string, Option*> OptMap;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001042 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001043
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044 // Copy Options into a vector so we can sort them as we like...
1045 std::vector<std::pair<std::string, Option*> > Opts;
1046 copy(OptMap.begin(), OptMap.end(), std::back_inserter(Opts));
1047
1048 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
1049 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1050 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1051 Opts.end());
1052
1053 // Eliminate duplicate entries in table (from enum flags options, f.e.)
1054 { // Give OptionSet a scope
1055 std::set<Option*> OptionSet;
1056 for (unsigned i = 0; i != Opts.size(); ++i)
1057 if (OptionSet.count(Opts[i].second) == 0)
1058 OptionSet.insert(Opts[i].second); // Add new entry to set
1059 else
1060 Opts.erase(Opts.begin()+i--); // Erase duplicate
1061 }
1062
1063 if (ProgramOverview)
Chris Lattner5febcae2009-08-23 08:43:55 +00001064 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001065
Chris Lattner5febcae2009-08-23 08:43:55 +00001066 outs() << "USAGE: " << ProgramName << " [options]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067
1068 // Print out the positional options.
1069 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001070 if (!PositionalOpts.empty() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1072 CAOpt = PositionalOpts[0];
1073
Evan Cheng591bfc82008-05-05 18:30:58 +00001074 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 if (PositionalOpts[i]->ArgStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001076 outs() << " --" << PositionalOpts[i]->ArgStr;
1077 outs() << " " << PositionalOpts[i]->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 }
1079
1080 // Print the consume after option info if it exists...
Chris Lattner5febcae2009-08-23 08:43:55 +00001081 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001082
Chris Lattner5febcae2009-08-23 08:43:55 +00001083 outs() << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084
1085 // Compute the maximum argument length...
1086 MaxArgLen = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +00001087 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
1089
Chris Lattner5febcae2009-08-23 08:43:55 +00001090 outs() << "OPTIONS:\n";
Evan Cheng591bfc82008-05-05 18:30:58 +00001091 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092 Opts[i].second->printOptionInfo(MaxArgLen);
1093
1094 // Print any extra help the user has declared.
1095 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1096 E = MoreHelp->end(); I != E; ++I)
Chris Lattner5febcae2009-08-23 08:43:55 +00001097 outs() << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098 MoreHelp->clear();
1099
1100 // Halt the program since help information was printed
1101 exit(1);
1102 }
1103};
1104} // End anonymous namespace
1105
1106// Define the two HelpPrinter instances that are used to print out help, or
1107// help-hidden...
1108//
1109static HelpPrinter NormalPrinter(false);
1110static HelpPrinter HiddenPrinter(true);
1111
1112static cl::opt<HelpPrinter, true, parser<bool> >
1113HOp("help", cl::desc("Display available options (--help-hidden for more)"),
1114 cl::location(NormalPrinter), cl::ValueDisallowed);
1115
1116static cl::opt<HelpPrinter, true, parser<bool> >
1117HHOp("help-hidden", cl::desc("Display all available options"),
1118 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1119
1120static void (*OverrideVersionPrinter)() = 0;
1121
1122namespace {
1123class VersionPrinter {
1124public:
1125 void print() {
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001126 outs() << "Low Level Virtual Machine (http://llvm.org/):\n"
1127 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128#ifdef LLVM_VERSION_INFO
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001129 outs() << LLVM_VERSION_INFO;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001130#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001131 outs() << "\n ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132#ifndef __OPTIMIZE__
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001133 outs() << "DEBUG build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001134#else
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001135 outs() << "Optimized build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001136#endif
1137#ifndef NDEBUG
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001138 outs() << " with assertions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001140 outs() << ".\n"
1141 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
1142 << "\n"
1143 << " Registered Targets:\n";
Daniel Dunbar9b3edb62009-07-16 02:06:09 +00001144
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001145 std::vector<std::pair<std::string, const Target*> > Targets;
1146 size_t Width = 0;
1147 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1148 ie = TargetRegistry::end(); it != ie; ++it) {
1149 Targets.push_back(std::make_pair(it->getName(), &*it));
1150 Width = std::max(Width, Targets.back().first.length());
1151 }
1152 std::sort(Targets.begin(), Targets.end());
Daniel Dunbar80329932009-07-26 05:09:50 +00001153
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001154 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
1155 outs() << " " << Targets[i].first
1156 << std::string(Width - Targets[i].first.length(), ' ') << " - "
1157 << Targets[i].second->getShortDescription() << "\n";
1158 }
1159 if (Targets.empty())
1160 outs() << " (none)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001161 }
1162 void operator=(bool OptionWasSpecified) {
1163 if (OptionWasSpecified) {
1164 if (OverrideVersionPrinter == 0) {
1165 print();
1166 exit(1);
1167 } else {
1168 (*OverrideVersionPrinter)();
1169 exit(1);
1170 }
1171 }
1172 }
1173};
1174} // End anonymous namespace
1175
1176
1177// Define the --version option that prints out the LLVM version for the tool
1178static VersionPrinter VersionPrinterInstance;
1179
1180static cl::opt<VersionPrinter, true, parser<bool> >
1181VersOp("version", cl::desc("Display the version of this program"),
1182 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1183
1184// Utility function for printing the help message.
1185void cl::PrintHelpMessage() {
1186 // This looks weird, but it actually prints the help message. The
1187 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1188 // its operator= is invoked. That's because the "normal" usages of the
1189 // help printer is to be assigned true/false depending on whether the
1190 // --help option was given or not. Since we're circumventing that we have
1191 // to make it look like --help was given, so we assign true.
1192 NormalPrinter = true;
1193}
1194
1195/// Utility function for printing version number.
1196void cl::PrintVersionMessage() {
1197 VersionPrinterInstance.print();
1198}
1199
1200void cl::SetVersionPrinter(void (*func)()) {
1201 OverrideVersionPrinter = func;
1202}