blob: d3524a9e5801eda9a1073cc2efd395cc7be1508c [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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "llvm/Support/CommandLine.h"
Edwin Törökced9ff82009-07-11 13:10:19 +000020#include "llvm/Support/ErrorHandling.h"
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +000021#include "llvm/Support/MemoryBuffer.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/Support/ManagedStatic.h"
Chris Lattner9cb435b2009-08-23 18:09:02 +000023#include "llvm/Support/raw_ostream.h"
Daniel Dunbar9b3edb62009-07-16 02:06:09 +000024#include "llvm/Target/TargetRegistry.h"
Daniel Dunbar401011e2009-09-02 23:52:38 +000025#include "llvm/System/Host.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/System/Path.h"
Chris Lattner9cb435b2009-08-23 18:09:02 +000027#include "llvm/ADT/OwningPtr.h"
Benjamin Kramer48086602009-09-19 10:01:45 +000028#include "llvm/ADT/StringMap.h"
Chris Lattner47d05cb2009-09-19 18:55:05 +000029#include "llvm/ADT/Twine.h"
Chris Lattner9cb435b2009-08-23 18:09:02 +000030#include "llvm/Config/config.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000031#include <set>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include <cerrno>
Chris Lattner9cb435b2009-08-23 18:09:02 +000033#include <cstdlib>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034using namespace llvm;
35using namespace cl;
36
37//===----------------------------------------------------------------------===//
38// Template instantiations and anchors.
39//
40TEMPLATE_INSTANTIATION(class basic_parser<bool>);
41TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
42TEMPLATE_INSTANTIATION(class basic_parser<int>);
43TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
44TEMPLATE_INSTANTIATION(class basic_parser<double>);
45TEMPLATE_INSTANTIATION(class basic_parser<float>);
46TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
Bill Wendlingf0d2d952009-04-29 23:26:16 +000047TEMPLATE_INSTANTIATION(class basic_parser<char>);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048
49TEMPLATE_INSTANTIATION(class opt<unsigned>);
50TEMPLATE_INSTANTIATION(class opt<int>);
51TEMPLATE_INSTANTIATION(class opt<std::string>);
Bill Wendlingf0d2d952009-04-29 23:26:16 +000052TEMPLATE_INSTANTIATION(class opt<char>);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053TEMPLATE_INSTANTIATION(class opt<bool>);
54
55void Option::anchor() {}
56void basic_parser_impl::anchor() {}
57void parser<bool>::anchor() {}
58void parser<boolOrDefault>::anchor() {}
59void parser<int>::anchor() {}
60void parser<unsigned>::anchor() {}
61void parser<double>::anchor() {}
62void parser<float>::anchor() {}
63void parser<std::string>::anchor() {}
Bill Wendlingf0d2d952009-04-29 23:26:16 +000064void parser<char>::anchor() {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065
66//===----------------------------------------------------------------------===//
67
68// Globals for name and overview of program. Program name is not a string to
69// avoid static ctor/dtor issues.
70static char ProgramName[80] = "<premain>";
71static const char *ProgramOverview = 0;
72
73// This collects additional help to be printed.
74static ManagedStatic<std::vector<const char*> > MoreHelp;
75
76extrahelp::extrahelp(const char *Help)
77 : morehelp(Help) {
78 MoreHelp->push_back(Help);
79}
80
81static bool OptionListChanged = false;
82
83// MarkOptionsChanged - Internal helper function.
84void cl::MarkOptionsChanged() {
85 OptionListChanged = true;
86}
87
88/// RegisteredOptionList - This is the list of the command line options that
89/// have statically constructed themselves.
90static Option *RegisteredOptionList = 0;
91
92void Option::addArgument() {
93 assert(NextRegistered == 0 && "argument multiply registered!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +000094
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 NextRegistered = RegisteredOptionList;
96 RegisteredOptionList = this;
97 MarkOptionsChanged();
98}
99
100
101//===----------------------------------------------------------------------===//
102// Basic, shared command line option processing machinery.
103//
104
105/// GetOptionInfo - Scan the list of registered options, turning them into data
106/// structures that are easier to handle.
107static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000108 std::vector<Option*> &SinkOpts,
Benjamin Kramer48086602009-09-19 10:01:45 +0000109 StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110 std::vector<const char*> OptionNames;
111 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
112 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
113 // If this option wants to handle multiple option names, get the full set.
114 // This handles enum options like "-O1 -O2" etc.
115 O->getExtraOptionNames(OptionNames);
116 if (O->ArgStr[0])
117 OptionNames.push_back(O->ArgStr);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000118
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119 // Handle named options.
Evan Cheng591bfc82008-05-05 18:30:58 +0000120 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121 // Add argument to the argument map!
Benjamin Kramer48086602009-09-19 10:01:45 +0000122 if (OptionsMap.GetOrCreateValue(OptionNames[i], O).second != O) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000123 errs() << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman5e270092008-05-30 13:26:11 +0000124 << OptionNames[i] << "' defined more than once!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 }
126 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000127
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 OptionNames.clear();
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000129
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 // Remember information about positional options.
131 if (O->getFormattingFlag() == cl::Positional)
132 PositionalOpts.push_back(O);
Dan Gohmane411a2d2008-02-23 01:55:25 +0000133 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000134 SinkOpts.push_back(O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
136 if (CAOpt)
137 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
138 CAOpt = O;
139 }
140 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000141
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 if (CAOpt)
143 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000144
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 // Make sure that they are in order of registration not backwards.
146 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
147}
148
149
150/// LookupOption - Lookup the option specified by the specified option on the
151/// command line. If there is a value specified (after an equal sign) return
152/// that as well.
153static Option *LookupOption(const char *&Arg, const char *&Value,
Benjamin Kramer48086602009-09-19 10:01:45 +0000154 StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 while (*Arg == '-') ++Arg; // Eat leading dashes
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000156
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 const char *ArgEnd = Arg;
158 while (*ArgEnd && *ArgEnd != '=')
159 ++ArgEnd; // Scan till end of argument name.
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000160
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 if (*ArgEnd == '=') // If we have an equals sign...
162 Value = ArgEnd+1; // Get the value, not the equals
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000163
164
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 if (*Arg == 0) return 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000166
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 // Look up the option.
Benjamin Kramer48086602009-09-19 10:01:45 +0000168 StringMap<Option*>::iterator I =
169 OptionsMap.find(llvm::StringRef(Arg, ArgEnd-Arg));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 return I != OptionsMap.end() ? I->second : 0;
171}
172
173static inline bool ProvideOption(Option *Handler, const char *ArgName,
174 const char *Value, int argc, char **argv,
175 int &i) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000176 // Is this a multi-argument option?
177 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
178
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 // Enforce value requirements
180 switch (Handler->getValueExpectedFlag()) {
181 case ValueRequired:
182 if (Value == 0) { // No value specified?
183 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
184 Value = argv[++i];
185 } else {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000186 return Handler->error("requires a value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000187 }
188 }
189 break;
190 case ValueDisallowed:
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000191 if (NumAdditionalVals > 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000192 return Handler->error("multi-valued option specified"
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000193 " with ValueDisallowed modifier!");
194
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 if (Value)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000196 return Handler->error("does not allow a value! '" +
Chris Lattner47d05cb2009-09-19 18:55:05 +0000197 Twine(Value) + "' specified.");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000198 break;
199 case ValueOptional:
200 break;
201 default:
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000202 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 << ": Bad ValueMask flag! CommandLine usage error:"
204 << Handler->getValueExpectedFlag() << "\n";
Edwin Törökbd448e32009-07-14 16:55:14 +0000205 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 }
207
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000208 // If this isn't a multi-arg option, just run the handler.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000209 if (NumAdditionalVals == 0)
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000210 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
Chris Lattner47d05cb2009-09-19 18:55:05 +0000211
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000212 // If it is, run the handle several times.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000213 bool MultiArg = false;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000214
Chris Lattner47d05cb2009-09-19 18:55:05 +0000215 if (Value) {
216 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
217 return true;
218 --NumAdditionalVals;
219 MultiArg = true;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000220 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000221
222 while (NumAdditionalVals > 0) {
223
224 if (i+1 >= argc)
225 return Handler->error("not enough values!");
226 Value = argv[++i];
227
228 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
229 return true;
230 MultiArg = true;
231 --NumAdditionalVals;
232 }
233 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234}
235
236static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
237 int i) {
238 int Dummy = i;
239 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
240}
241
242
243// Option predicates...
244static inline bool isGrouping(const Option *O) {
245 return O->getFormattingFlag() == cl::Grouping;
246}
247static inline bool isPrefixedOrGrouping(const Option *O) {
248 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
249}
250
251// getOptionPred - Check to see if there are any options that satisfy the
252// specified predicate with names that are the prefixes in Name. This is
253// checked by progressively stripping characters off of the name, checking to
254// see if there options that satisfy the predicate. If we find one, return it,
255// otherwise return null.
256//
Evan Cheng591bfc82008-05-05 18:30:58 +0000257static Option *getOptionPred(std::string Name, size_t &Length,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 bool (*Pred)(const Option*),
Benjamin Kramer48086602009-09-19 10:01:45 +0000259 StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260
Benjamin Kramer48086602009-09-19 10:01:45 +0000261 StringMap<Option*>::iterator OMI = OptionsMap.find(Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
263 Length = Name.length();
264 return OMI->second;
265 }
266
267 if (Name.size() == 1) return 0;
268 do {
269 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
270 OMI = OptionsMap.find(Name);
271
272 // Loop while we haven't found an option and Name still has at least two
273 // characters in it (so that the next iteration will not be the empty
274 // string...
275 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
276
277 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
278 Length = Name.length();
279 return OMI->second; // Found one!
280 }
281 return 0; // No option found!
282}
283
284static bool RequiresValue(const Option *O) {
285 return O->getNumOccurrencesFlag() == cl::Required ||
286 O->getNumOccurrencesFlag() == cl::OneOrMore;
287}
288
289static bool EatsUnboundedNumberOfValues(const Option *O) {
290 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
291 O->getNumOccurrencesFlag() == cl::OneOrMore;
292}
293
294/// ParseCStringVector - Break INPUT up wherever one or more
295/// whitespace characters are found, and store the resulting tokens in
296/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
297/// using strdup (), so it is the caller's responsibility to free ()
298/// them later.
299///
300static void ParseCStringVector(std::vector<char *> &output,
301 const char *input) {
302 // Characters which will be treated as token separators:
Dan Gohman12300e12008-03-25 21:45:14 +0000303 static const char *const delims = " \v\f\t\r\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000304
305 std::string work (input);
306 // Skip past any delims at head of input string.
307 size_t pos = work.find_first_not_of (delims);
308 // If the string consists entirely of delims, then exit early.
309 if (pos == std::string::npos) return;
310 // Otherwise, jump forward to beginning of first word.
311 work = work.substr (pos);
312 // Find position of first delimiter.
313 pos = work.find_first_of (delims);
314
315 while (!work.empty() && pos != std::string::npos) {
316 // Everything from 0 to POS is the next word to copy.
317 output.push_back (strdup (work.substr (0,pos).c_str ()));
318 // Is there another word in the string?
319 size_t nextpos = work.find_first_not_of (delims, pos + 1);
320 if (nextpos != std::string::npos) {
321 // Yes? Then remove delims from beginning ...
322 work = work.substr (work.find_first_not_of (delims, pos + 1));
323 // and find the end of the word.
324 pos = work.find_first_of (delims);
325 } else {
326 // No? (Remainder of string is delims.) End the loop.
327 work = "";
328 pos = std::string::npos;
329 }
330 }
331
332 // If `input' ended with non-delim char, then we'll get here with
333 // the last word of `input' in `work'; copy it now.
334 if (!work.empty ()) {
335 output.push_back (strdup (work.c_str ()));
336 }
337}
338
339/// ParseEnvironmentOptions - An alternative entry point to the
340/// CommandLine library, which allows you to read the program's name
341/// from the caller (as PROGNAME) and its command-line arguments from
342/// an environment variable (whose name is given in ENVVAR).
343///
344void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000345 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 // Check args.
347 assert(progName && "Program name not specified");
348 assert(envVar && "Environment variable name missing");
349
350 // Get the environment variable they want us to parse options out of.
351 const char *envValue = getenv(envVar);
352 if (!envValue)
353 return;
354
355 // Get program's "name", which we wouldn't know without the caller
356 // telling us.
357 std::vector<char*> newArgv;
358 newArgv.push_back(strdup(progName));
359
360 // Parse the value of the environment variable into a "command line"
361 // and hand it off to ParseCommandLineOptions().
362 ParseCStringVector(newArgv, envValue);
Evan Cheng591bfc82008-05-05 18:30:58 +0000363 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000364 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365
366 // Free all the strdup()ed strings.
367 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
368 i != e; ++i)
369 free (*i);
370}
371
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000372
373/// ExpandResponseFiles - Copy the contents of argv into newArgv,
374/// substituting the contents of the response files for the arguments
375/// of type @file.
376static void ExpandResponseFiles(int argc, char** argv,
377 std::vector<char*>& newArgv) {
378 for (int i = 1; i != argc; ++i) {
379 char* arg = argv[i];
380
381 if (arg[0] == '@') {
382
383 sys::PathWithStatus respFile(++arg);
384
385 // Check that the response file is not empty (mmap'ing empty
386 // files can be problematic).
387 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000388 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000389
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000390 // Mmap the response file into memory.
391 OwningPtr<MemoryBuffer>
392 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000393
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000394 // If we could open the file, parse its contents, otherwise
395 // pass the @file option verbatim.
Mikhail Glushenkovc591ed142009-01-28 03:46:22 +0000396
397 // TODO: we should also support recursive loading of response files,
398 // since this is how gcc behaves. (From their man page: "The file may
399 // itself contain additional @file options; any such options will be
400 // processed recursively.")
401
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000402 if (respFilePtr != 0) {
403 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
404 continue;
405 }
406 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000407 }
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000408 newArgv.push_back(strdup(arg));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000409 }
410}
411
Dan Gohman61db06b2007-10-09 16:04:57 +0000412void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000413 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414 // Process all registered options.
415 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000416 std::vector<Option*> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +0000417 StringMap<Option*> Opts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000418 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000419
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420 assert((!Opts.empty() || !PositionalOpts.empty()) &&
421 "No options specified!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000422
423 // Expand response files.
424 std::vector<char*> newArgv;
425 if (ReadResponseFiles) {
426 newArgv.push_back(strdup(argv[0]));
427 ExpandResponseFiles(argc, argv, newArgv);
428 argv = &newArgv[0];
Evan Cheng591bfc82008-05-05 18:30:58 +0000429 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000430 }
431
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432 // Copy the program name into ProgName, making sure not to overflow it.
433 std::string ProgName = sys::Path(argv[0]).getLast();
434 if (ProgName.size() > 79) ProgName.resize(79);
435 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000436
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000437 ProgramOverview = Overview;
438 bool ErrorParsing = false;
439
440 // Check out the positional arguments to collect information about them.
441 unsigned NumPositionalRequired = 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000442
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000443 // Determine whether or not there are an unlimited number of positionals
444 bool HasUnlimitedPositionals = false;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000445
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 Option *ConsumeAfterOpt = 0;
447 if (!PositionalOpts.empty()) {
448 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
449 assert(PositionalOpts.size() > 1 &&
450 "Cannot specify cl::ConsumeAfter without a positional argument!");
451 ConsumeAfterOpt = PositionalOpts[0];
452 }
453
454 // Calculate how many positional values are _required_.
455 bool UnboundedFound = false;
Evan Cheng591bfc82008-05-05 18:30:58 +0000456 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457 i != e; ++i) {
458 Option *Opt = PositionalOpts[i];
459 if (RequiresValue(Opt))
460 ++NumPositionalRequired;
461 else if (ConsumeAfterOpt) {
462 // ConsumeAfter cannot be combined with "optional" positional options
463 // unless there is only one positional argument...
464 if (PositionalOpts.size() > 2)
465 ErrorParsing |=
Benjamin Kramer9164c672009-08-02 12:13:02 +0000466 Opt->error("error - this positional option will never be matched, "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 "because it does not Require a value, and a "
468 "cl::ConsumeAfter option is active!");
469 } else if (UnboundedFound && !Opt->ArgStr[0]) {
470 // This option does not "require" a value... Make sure this option is
471 // not specified after an option that eats all extra arguments, or this
472 // one will never get any!
473 //
Benjamin Kramer9164c672009-08-02 12:13:02 +0000474 ErrorParsing |= Opt->error("error - option can never match, because "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 "another positional argument will match an "
476 "unbounded number of values, and this option"
477 " does not require a value!");
478 }
479 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
480 }
481 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
482 }
483
484 // PositionalVals - A vector of "positional" arguments we accumulate into
485 // the process at the end...
486 //
487 std::vector<std::pair<std::string,unsigned> > PositionalVals;
488
489 // If the program has named positional arguments, and the name has been run
490 // across, keep track of which positional argument was named. Otherwise put
491 // the positional args into the PositionalVals list...
492 Option *ActivePositionalArg = 0;
493
494 // Loop over all of the arguments... processing them.
495 bool DashDashFound = false; // Have we read '--'?
496 for (int i = 1; i < argc; ++i) {
497 Option *Handler = 0;
498 const char *Value = 0;
499 const char *ArgName = "";
500
501 // If the option list changed, this means that some command line
502 // option has just been registered or deregistered. This can occur in
503 // response to things like -load, etc. If this happens, rescan the options.
504 if (OptionListChanged) {
505 PositionalOpts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000506 SinkOpts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507 Opts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000508 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 OptionListChanged = false;
510 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000511
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 // Check to see if this is a positional argument. This argument is
513 // considered to be positional if it doesn't start with '-', if it is "-"
514 // itself, or if we have seen "--" already.
515 //
516 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
517 // Positional argument!
518 if (ActivePositionalArg) {
519 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
520 continue; // We are done!
521 } else if (!PositionalOpts.empty()) {
522 PositionalVals.push_back(std::make_pair(argv[i],i));
523
524 // All of the positional arguments have been fulfulled, give the rest to
525 // the consume after option... if it's specified...
526 //
527 if (PositionalVals.size() >= NumPositionalRequired &&
528 ConsumeAfterOpt != 0) {
529 for (++i; i < argc; ++i)
530 PositionalVals.push_back(std::make_pair(argv[i],i));
531 break; // Handle outside of the argument processing loop...
532 }
533
534 // Delay processing positional arguments until the end...
535 continue;
536 }
537 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
538 !DashDashFound) {
539 DashDashFound = true; // This is the mythical "--"?
540 continue; // Don't try to process it as an argument itself.
541 } else if (ActivePositionalArg &&
542 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
543 // If there is a positional argument eating options, check to see if this
544 // option is another positional argument. If so, treat it as an argument,
545 // otherwise feed it to the eating positional.
546 ArgName = argv[i]+1;
547 Handler = LookupOption(ArgName, Value, Opts);
548 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
549 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
550 continue; // We are done!
551 }
552
553 } else { // We start with a '-', must be an argument...
554 ArgName = argv[i]+1;
555 Handler = LookupOption(ArgName, Value, Opts);
556
557 // Check to see if this "option" is really a prefixed or grouped argument.
558 if (Handler == 0) {
559 std::string RealName(ArgName);
560 if (RealName.size() > 1) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000561 size_t Length = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
563 Opts);
564
565 // If the option is a prefixed option, then the value is simply the
566 // rest of the name... so fall through to later processing, by
567 // setting up the argument name flags and value fields.
568 //
569 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
570 Value = ArgName+Length;
571 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
572 Opts.find(std::string(ArgName, Value))->second == PGOpt);
573 Handler = PGOpt;
574 } else if (PGOpt) {
575 // This must be a grouped option... handle them now.
576 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
577
578 do {
579 // Move current arg name out of RealName into RealArgName...
580 std::string RealArgName(RealName.begin(),
581 RealName.begin() + Length);
582 RealName.erase(RealName.begin(), RealName.begin() + Length);
583
584 // Because ValueRequired is an invalid flag for grouped arguments,
585 // we don't need to pass argc/argv in...
586 //
587 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
588 "Option can not be cl::Grouping AND cl::ValueRequired!");
589 int Dummy;
590 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
591 0, 0, 0, Dummy);
592
593 // Get the next grouping option...
594 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
595 } while (PGOpt && Length != RealName.size());
596
597 Handler = PGOpt; // Ate all of the options.
598 }
599 }
600 }
601 }
602
603 if (Handler == 0) {
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000604 if (SinkOpts.empty()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000605 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000606 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
607 ErrorParsing = true;
608 } else {
609 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
610 E = SinkOpts.end(); I != E ; ++I)
611 (*I)->addOccurrence(i, "", argv[i]);
612 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 continue;
614 }
615
616 // Check to see if this option accepts a comma separated list of values. If
617 // it does, we have to split up the value into multiple values...
618 if (Value && Handler->getMiscFlags() & CommaSeparated) {
619 std::string Val(Value);
620 std::string::size_type Pos = Val.find(',');
621
622 while (Pos != std::string::npos) {
623 // Process the portion before the comma...
624 ErrorParsing |= ProvideOption(Handler, ArgName,
625 std::string(Val.begin(),
626 Val.begin()+Pos).c_str(),
627 argc, argv, i);
628 // Erase the portion before the comma, AND the comma...
629 Val.erase(Val.begin(), Val.begin()+Pos+1);
630 Value += Pos+1; // Increment the original value pointer as well...
631
632 // Check for another comma...
633 Pos = Val.find(',');
634 }
635 }
636
637 // If this is a named positional argument, just remember that it is the
638 // active one...
639 if (Handler->getFormattingFlag() == cl::Positional)
640 ActivePositionalArg = Handler;
641 else
642 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
643 }
644
645 // Check and handle positional arguments now...
646 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000647 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000648 << ": Not enough positional command line arguments specified!\n"
649 << "Must specify at least " << NumPositionalRequired
650 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000651
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000652 ErrorParsing = true;
653 } else if (!HasUnlimitedPositionals
654 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000655 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000656 << ": Too many positional arguments specified!\n"
657 << "Can specify at most " << PositionalOpts.size()
658 << " positional arguments: See: " << argv[0] << " --help\n";
659 ErrorParsing = true;
660
661 } else if (ConsumeAfterOpt == 0) {
662 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng591bfc82008-05-05 18:30:58 +0000663 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
664 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000665 if (RequiresValue(PositionalOpts[i])) {
666 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
667 PositionalVals[ValNo].second);
668 ValNo++;
669 --NumPositionalRequired; // We fulfilled our duty...
670 }
671
672 // If we _can_ give this option more arguments, do so now, as long as we
673 // do not give it values that others need. 'Done' controls whether the
674 // option even _WANTS_ any more.
675 //
676 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
677 while (NumVals-ValNo > NumPositionalRequired && !Done) {
678 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
679 case cl::Optional:
680 Done = true; // Optional arguments want _at most_ one value
681 // FALL THROUGH
682 case cl::ZeroOrMore: // Zero or more will take all they can get...
683 case cl::OneOrMore: // One or more will take all they can get...
684 ProvidePositionalOption(PositionalOpts[i],
685 PositionalVals[ValNo].first,
686 PositionalVals[ValNo].second);
687 ValNo++;
688 break;
689 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000690 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691 "positional argument processing!");
692 }
693 }
694 }
695 } else {
696 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
697 unsigned ValNo = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +0000698 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699 if (RequiresValue(PositionalOpts[j])) {
700 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
701 PositionalVals[ValNo].first,
702 PositionalVals[ValNo].second);
703 ValNo++;
704 }
705
706 // Handle the case where there is just one positional option, and it's
707 // optional. In this case, we want to give JUST THE FIRST option to the
708 // positional option and keep the rest for the consume after. The above
709 // loop would have assigned no values to positional options in this case.
710 //
711 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
712 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
713 PositionalVals[ValNo].first,
714 PositionalVals[ValNo].second);
715 ValNo++;
716 }
717
718 // Handle over all of the rest of the arguments to the
719 // cl::ConsumeAfter command line option...
720 for (; ValNo != PositionalVals.size(); ++ValNo)
721 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
722 PositionalVals[ValNo].first,
723 PositionalVals[ValNo].second);
724 }
725
726 // Loop over args and make sure all required args are specified!
Benjamin Kramer48086602009-09-19 10:01:45 +0000727 for (StringMap<Option*>::iterator I = Opts.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000728 E = Opts.end(); I != E; ++I) {
729 switch (I->second->getNumOccurrencesFlag()) {
730 case Required:
731 case OneOrMore:
732 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000733 I->second->error("must be specified at least once!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000734 ErrorParsing = true;
735 }
736 // Fall through
737 default:
738 break;
739 }
740 }
741
742 // Free all of the memory allocated to the map. Command line options may only
743 // be processed once!
744 Opts.clear();
745 PositionalOpts.clear();
746 MoreHelp->clear();
747
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000748 // Free the memory allocated by ExpandResponseFiles.
749 if (ReadResponseFiles) {
750 // Free all the strdup()ed strings.
751 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
752 i != e; ++i)
753 free (*i);
754 }
755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 // If we had an error processing our arguments, don't let the program execute
757 if (ErrorParsing) exit(1);
758}
759
760//===----------------------------------------------------------------------===//
761// Option Base class implementation
762//
763
Chris Lattner47d05cb2009-09-19 18:55:05 +0000764bool Option::error(const Twine &Message, const char *ArgName) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 if (ArgName == 0) ArgName = ArgStr;
766 if (ArgName[0] == 0)
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000767 errs() << HelpStr; // Be nice for positional arguments
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768 else
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000769 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000770
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000771 errs() << " option: " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 return true;
773}
774
775bool Option::addOccurrence(unsigned pos, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000776 StringRef Value, bool MultiArg) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000777 if (!MultiArg)
778 NumOccurrences++; // Increment the number of times we have been seen
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000779
780 switch (getNumOccurrencesFlag()) {
781 case Optional:
782 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000783 return error("may only occur zero or one times!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 break;
785 case Required:
786 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000787 return error("must occur exactly one time!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 // Fall through
789 case OneOrMore:
790 case ZeroOrMore:
791 case ConsumeAfter: break;
Benjamin Kramer9164c672009-08-02 12:13:02 +0000792 default: return error("bad num occurrences flag value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000793 }
794
795 return handleOccurrence(pos, ArgName, Value);
796}
797
798
799// getValueStr - Get the value description string, using "DefaultMsg" if nothing
800// has been specified yet.
801//
802static const char *getValueStr(const Option &O, const char *DefaultMsg) {
803 if (O.ValueStr[0] == 0) return DefaultMsg;
804 return O.ValueStr;
805}
806
807//===----------------------------------------------------------------------===//
808// cl::alias class implementation
809//
810
811// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000812size_t alias::getOptionWidth() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000813 return std::strlen(ArgStr)+6;
814}
815
816// Print out the option for the alias.
Evan Cheng591bfc82008-05-05 18:30:58 +0000817void alias::printOptionInfo(size_t GlobalWidth) const {
818 size_t L = std::strlen(ArgStr);
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000819 errs() << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
Daniel Dunbar9b3edb62009-07-16 02:06:09 +0000820 << HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000821}
822
823
824
825//===----------------------------------------------------------------------===//
826// Parser Implementation code...
827//
828
829// basic_parser implementation
830//
831
832// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000833size_t basic_parser_impl::getOptionWidth(const Option &O) const {
834 size_t Len = std::strlen(O.ArgStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000835 if (const char *ValName = getValueName())
836 Len += std::strlen(getValueStr(O, ValName))+3;
837
838 return Len + 6;
839}
840
841// printOptionInfo - Print out information about this option. The
842// to-be-maintained width is specified.
843//
844void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000845 size_t GlobalWidth) const {
Chris Lattner5febcae2009-08-23 08:43:55 +0000846 outs() << " -" << O.ArgStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847
848 if (const char *ValName = getValueName())
Chris Lattner5febcae2009-08-23 08:43:55 +0000849 outs() << "=<" << getValueStr(O, ValName) << '>';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850
Chris Lattner5febcae2009-08-23 08:43:55 +0000851 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852}
853
854
855
856
857// parser<bool> implementation
858//
859bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000860 StringRef Arg, bool &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000861 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
862 Arg == "1") {
863 Value = true;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000864 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000865 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000866
867 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
868 Value = false;
869 return false;
870 }
871 return O.error("'" + Arg +
872 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000873}
874
875// parser<boolOrDefault> implementation
876//
877bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000878 StringRef Arg, boolOrDefault &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
880 Arg == "1") {
881 Value = BOU_TRUE;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000882 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000883 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000884 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
885 Value = BOU_FALSE;
886 return false;
887 }
888
889 return O.error("'" + Arg +
890 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891}
892
893// parser<int> implementation
894//
895bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000896 StringRef Arg, int &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897 char *End;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000898 // FIXME: Temporary.
899 std::string TMP = Arg.str();
900 Value = (int)strtol(TMP.c_str(), &End, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000901 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000902 return O.error("'" + Arg + "' value invalid for integer argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000903 return false;
904}
905
906// parser<unsigned> implementation
907//
908bool parser<unsigned>::parse(Option &O, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000909 StringRef Arg, unsigned &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000910 char *End;
911 errno = 0;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000912
913 // FIXME: Temporary.
914 std::string TMP = Arg.str();
915 unsigned long V = strtoul(TMP.c_str(), &End, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916 Value = (unsigned)V;
917 if (((V == ULONG_MAX) && (errno == ERANGE))
918 || (*End != 0)
919 || (Value != V))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000920 return O.error("'" + Arg + "' value invalid for uint argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000921 return false;
922}
923
924// parser<double>/parser<float> implementation
925//
Chris Lattner47d05cb2009-09-19 18:55:05 +0000926static bool parseDouble(Option &O, StringRef Arg, double &Value) {
927 // FIXME: Temporary.
928 std::string TMP = Arg.str();
929
930 const char *ArgStart = TMP.c_str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931 char *End;
932 Value = strtod(ArgStart, &End);
933 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000934 return O.error("'" + Arg + "' value invalid for floating point argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000935 return false;
936}
937
938bool parser<double>::parse(Option &O, const char *AN,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000939 StringRef Arg, double &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 return parseDouble(O, Arg, Val);
941}
942
943bool parser<float>::parse(Option &O, const char *AN,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000944 StringRef Arg, float &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 double dVal;
946 if (parseDouble(O, Arg, dVal))
947 return true;
948 Val = (float)dVal;
949 return false;
950}
951
952
953
954// generic_parser_base implementation
955//
956
957// findOption - Return the option number corresponding to the specified
958// argument string. If the option is not found, getNumOptions() is returned.
959//
960unsigned generic_parser_base::findOption(const char *Name) {
Benjamin Kramer48086602009-09-19 10:01:45 +0000961 unsigned e = getNumOptions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000962
Benjamin Kramer48086602009-09-19 10:01:45 +0000963 for (unsigned i = 0; i != e; ++i) {
964 if (strcmp(getOption(i), Name) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000965 return i;
Benjamin Kramer48086602009-09-19 10:01:45 +0000966 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967 return e;
968}
969
970
971// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000972size_t generic_parser_base::getOptionWidth(const Option &O) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000974 size_t Size = std::strlen(O.ArgStr)+6;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000976 Size = std::max(Size, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977 return Size;
978 } else {
Evan Cheng591bfc82008-05-05 18:30:58 +0000979 size_t BaseSize = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000981 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000982 return BaseSize;
983 }
984}
985
986// printOptionInfo - Print out information about this option. The
987// to-be-maintained width is specified.
988//
989void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000990 size_t GlobalWidth) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000992 size_t L = std::strlen(O.ArgStr);
Chris Lattner5febcae2009-08-23 08:43:55 +0000993 outs() << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
994 << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000995
996 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000997 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattner5febcae2009-08-23 08:43:55 +0000998 outs() << " =" << getOption(i) << std::string(NumSpaces, ' ')
999 << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 }
1001 } else {
1002 if (O.HelpStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001003 outs() << " " << O.HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +00001005 size_t L = std::strlen(getOption(i));
Chris Lattner5febcae2009-08-23 08:43:55 +00001006 outs() << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
1007 << " - " << getDescription(i) << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 }
1009 }
1010}
1011
1012
1013//===----------------------------------------------------------------------===//
1014// --help and --help-hidden option implementation
1015//
1016
1017namespace {
1018
1019class HelpPrinter {
Evan Cheng591bfc82008-05-05 18:30:58 +00001020 size_t MaxArgLen;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 const Option *EmptyArg;
1022 const bool ShowHidden;
1023
1024 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Benjamin Kramer48086602009-09-19 10:01:45 +00001025 inline static bool isHidden(Option *Opt) {
1026 return Opt->getOptionHiddenFlag() >= Hidden;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027 }
Benjamin Kramer48086602009-09-19 10:01:45 +00001028 inline static bool isReallyHidden(Option *Opt) {
1029 return Opt->getOptionHiddenFlag() == ReallyHidden;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 }
1031
1032public:
Dan Gohman40bd38e2008-03-25 22:06:05 +00001033 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001034 EmptyArg = 0;
1035 }
1036
1037 void operator=(bool Value) {
1038 if (Value == false) return;
1039
1040 // Get all the options.
1041 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001042 std::vector<Option*> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +00001043 StringMap<Option*> OptMap;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001044 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001045
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046 // Copy Options into a vector so we can sort them as we like...
Benjamin Kramer48086602009-09-19 10:01:45 +00001047 std::vector<Option*> Opts;
1048 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1049 I != E; ++I) {
1050 Opts.push_back(I->second);
1051 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052
1053 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
1054 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1055 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1056 Opts.end());
1057
1058 // Eliminate duplicate entries in table (from enum flags options, f.e.)
1059 { // Give OptionSet a scope
1060 std::set<Option*> OptionSet;
1061 for (unsigned i = 0; i != Opts.size(); ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001062 if (OptionSet.count(Opts[i]) == 0)
1063 OptionSet.insert(Opts[i]); // Add new entry to set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001064 else
1065 Opts.erase(Opts.begin()+i--); // Erase duplicate
1066 }
1067
1068 if (ProgramOverview)
Chris Lattner5febcae2009-08-23 08:43:55 +00001069 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070
Chris Lattner5febcae2009-08-23 08:43:55 +00001071 outs() << "USAGE: " << ProgramName << " [options]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001072
1073 // Print out the positional options.
1074 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001075 if (!PositionalOpts.empty() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001076 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1077 CAOpt = PositionalOpts[0];
1078
Evan Cheng591bfc82008-05-05 18:30:58 +00001079 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 if (PositionalOpts[i]->ArgStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001081 outs() << " --" << PositionalOpts[i]->ArgStr;
1082 outs() << " " << PositionalOpts[i]->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083 }
1084
1085 // Print the consume after option info if it exists...
Chris Lattner5febcae2009-08-23 08:43:55 +00001086 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087
Chris Lattner5febcae2009-08-23 08:43:55 +00001088 outs() << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001089
1090 // Compute the maximum argument length...
1091 MaxArgLen = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +00001092 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001093 MaxArgLen = std::max(MaxArgLen, Opts[i]->getOptionWidth());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094
Chris Lattner5febcae2009-08-23 08:43:55 +00001095 outs() << "OPTIONS:\n";
Evan Cheng591bfc82008-05-05 18:30:58 +00001096 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001097 Opts[i]->printOptionInfo(MaxArgLen);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098
1099 // Print any extra help the user has declared.
1100 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1101 E = MoreHelp->end(); I != E; ++I)
Chris Lattner5febcae2009-08-23 08:43:55 +00001102 outs() << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001103 MoreHelp->clear();
1104
1105 // Halt the program since help information was printed
1106 exit(1);
1107 }
1108};
1109} // End anonymous namespace
1110
1111// Define the two HelpPrinter instances that are used to print out help, or
1112// help-hidden...
1113//
1114static HelpPrinter NormalPrinter(false);
1115static HelpPrinter HiddenPrinter(true);
1116
1117static cl::opt<HelpPrinter, true, parser<bool> >
1118HOp("help", cl::desc("Display available options (--help-hidden for more)"),
1119 cl::location(NormalPrinter), cl::ValueDisallowed);
1120
1121static cl::opt<HelpPrinter, true, parser<bool> >
1122HHOp("help-hidden", cl::desc("Display all available options"),
1123 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1124
1125static void (*OverrideVersionPrinter)() = 0;
1126
1127namespace {
1128class VersionPrinter {
1129public:
1130 void print() {
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001131 outs() << "Low Level Virtual Machine (http://llvm.org/):\n"
1132 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001133#ifdef LLVM_VERSION_INFO
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001134 outs() << LLVM_VERSION_INFO;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001135#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001136 outs() << "\n ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137#ifndef __OPTIMIZE__
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001138 outs() << "DEBUG build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139#else
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001140 outs() << "Optimized build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001141#endif
1142#ifndef NDEBUG
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001143 outs() << " with assertions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001145 outs() << ".\n"
1146 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
Daniel Dunbar401011e2009-09-02 23:52:38 +00001147 << " Host: " << sys::getHostTriple() << "\n"
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001148 << "\n"
1149 << " Registered Targets:\n";
Daniel Dunbar9b3edb62009-07-16 02:06:09 +00001150
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001151 std::vector<std::pair<std::string, const Target*> > Targets;
1152 size_t Width = 0;
1153 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1154 ie = TargetRegistry::end(); it != ie; ++it) {
1155 Targets.push_back(std::make_pair(it->getName(), &*it));
1156 Width = std::max(Width, Targets.back().first.length());
1157 }
1158 std::sort(Targets.begin(), Targets.end());
Daniel Dunbar80329932009-07-26 05:09:50 +00001159
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001160 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
1161 outs() << " " << Targets[i].first
1162 << std::string(Width - Targets[i].first.length(), ' ') << " - "
1163 << Targets[i].second->getShortDescription() << "\n";
1164 }
1165 if (Targets.empty())
1166 outs() << " (none)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001167 }
1168 void operator=(bool OptionWasSpecified) {
1169 if (OptionWasSpecified) {
1170 if (OverrideVersionPrinter == 0) {
1171 print();
1172 exit(1);
1173 } else {
1174 (*OverrideVersionPrinter)();
1175 exit(1);
1176 }
1177 }
1178 }
1179};
1180} // End anonymous namespace
1181
1182
1183// Define the --version option that prints out the LLVM version for the tool
1184static VersionPrinter VersionPrinterInstance;
1185
1186static cl::opt<VersionPrinter, true, parser<bool> >
1187VersOp("version", cl::desc("Display the version of this program"),
1188 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1189
1190// Utility function for printing the help message.
1191void cl::PrintHelpMessage() {
1192 // This looks weird, but it actually prints the help message. The
1193 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1194 // its operator= is invoked. That's because the "normal" usages of the
1195 // help printer is to be assigned true/false depending on whether the
1196 // --help option was given or not. Since we're circumventing that we have
1197 // to make it look like --help was given, so we assign true.
1198 NormalPrinter = true;
1199}
1200
1201/// Utility function for printing version number.
1202void cl::PrintVersionMessage() {
1203 VersionPrinterInstance.print();
1204}
1205
1206void cl::SetVersionPrinter(void (*func)()) {
1207 OverrideVersionPrinter = func;
1208}