blob: 445fcc78862781bf51d5bffa8faa0e587fa7acd9 [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 Lattner717f7732009-09-19 23:59:02 +000029#include "llvm/ADT/SmallString.h"
Chris Lattner47d05cb2009-09-19 18:55:05 +000030#include "llvm/ADT/Twine.h"
Chris Lattner9cb435b2009-08-23 18:09:02 +000031#include "llvm/Config/config.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include <set>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033#include <cerrno>
Chris Lattner9cb435b2009-08-23 18:09:02 +000034#include <cstdlib>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035using namespace llvm;
36using namespace cl;
37
38//===----------------------------------------------------------------------===//
39// Template instantiations and anchors.
40//
41TEMPLATE_INSTANTIATION(class basic_parser<bool>);
42TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
43TEMPLATE_INSTANTIATION(class basic_parser<int>);
44TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
45TEMPLATE_INSTANTIATION(class basic_parser<double>);
46TEMPLATE_INSTANTIATION(class basic_parser<float>);
47TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
Bill Wendlingf0d2d952009-04-29 23:26:16 +000048TEMPLATE_INSTANTIATION(class basic_parser<char>);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049
50TEMPLATE_INSTANTIATION(class opt<unsigned>);
51TEMPLATE_INSTANTIATION(class opt<int>);
52TEMPLATE_INSTANTIATION(class opt<std::string>);
Bill Wendlingf0d2d952009-04-29 23:26:16 +000053TEMPLATE_INSTANTIATION(class opt<char>);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054TEMPLATE_INSTANTIATION(class opt<bool>);
55
56void Option::anchor() {}
57void basic_parser_impl::anchor() {}
58void parser<bool>::anchor() {}
59void parser<boolOrDefault>::anchor() {}
60void parser<int>::anchor() {}
61void parser<unsigned>::anchor() {}
62void parser<double>::anchor() {}
63void parser<float>::anchor() {}
64void parser<std::string>::anchor() {}
Bill Wendlingf0d2d952009-04-29 23:26:16 +000065void parser<char>::anchor() {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066
67//===----------------------------------------------------------------------===//
68
69// Globals for name and overview of program. Program name is not a string to
70// avoid static ctor/dtor issues.
71static char ProgramName[80] = "<premain>";
72static const char *ProgramOverview = 0;
73
74// This collects additional help to be printed.
75static ManagedStatic<std::vector<const char*> > MoreHelp;
76
77extrahelp::extrahelp(const char *Help)
78 : morehelp(Help) {
79 MoreHelp->push_back(Help);
80}
81
82static bool OptionListChanged = false;
83
84// MarkOptionsChanged - Internal helper function.
85void cl::MarkOptionsChanged() {
86 OptionListChanged = true;
87}
88
89/// RegisteredOptionList - This is the list of the command line options that
90/// have statically constructed themselves.
91static Option *RegisteredOptionList = 0;
92
93void Option::addArgument() {
94 assert(NextRegistered == 0 && "argument multiply registered!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +000095
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096 NextRegistered = RegisteredOptionList;
97 RegisteredOptionList = this;
98 MarkOptionsChanged();
99}
100
101
102//===----------------------------------------------------------------------===//
103// Basic, shared command line option processing machinery.
104//
105
106/// GetOptionInfo - Scan the list of registered options, turning them into data
107/// structures that are easier to handle.
108static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000109 std::vector<Option*> &SinkOpts,
Benjamin Kramer48086602009-09-19 10:01:45 +0000110 StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 std::vector<const char*> OptionNames;
112 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
113 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
114 // If this option wants to handle multiple option names, get the full set.
115 // This handles enum options like "-O1 -O2" etc.
116 O->getExtraOptionNames(OptionNames);
117 if (O->ArgStr[0])
118 OptionNames.push_back(O->ArgStr);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000119
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 // Handle named options.
Evan Cheng591bfc82008-05-05 18:30:58 +0000121 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 // Add argument to the argument map!
Benjamin Kramer48086602009-09-19 10:01:45 +0000123 if (OptionsMap.GetOrCreateValue(OptionNames[i], O).second != O) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000124 errs() << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman5e270092008-05-30 13:26:11 +0000125 << OptionNames[i] << "' defined more than once!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 }
127 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000128
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 OptionNames.clear();
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000130
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131 // Remember information about positional options.
132 if (O->getFormattingFlag() == cl::Positional)
133 PositionalOpts.push_back(O);
Dan Gohmane411a2d2008-02-23 01:55:25 +0000134 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000135 SinkOpts.push_back(O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
137 if (CAOpt)
138 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
139 CAOpt = O;
140 }
141 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000142
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143 if (CAOpt)
144 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000145
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146 // Make sure that they are in order of registration not backwards.
147 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
148}
149
150
151/// LookupOption - Lookup the option specified by the specified option on the
152/// command line. If there is a value specified (after an equal sign) return
153/// that as well.
154static Option *LookupOption(const char *&Arg, const char *&Value,
Benjamin Kramer48086602009-09-19 10:01:45 +0000155 StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156 while (*Arg == '-') ++Arg; // Eat leading dashes
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000157
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 const char *ArgEnd = Arg;
159 while (*ArgEnd && *ArgEnd != '=')
160 ++ArgEnd; // Scan till end of argument name.
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000161
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 if (*ArgEnd == '=') // If we have an equals sign...
163 Value = ArgEnd+1; // Get the value, not the equals
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000164
165
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 if (*Arg == 0) return 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000167
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 // Look up the option.
Benjamin Kramer48086602009-09-19 10:01:45 +0000169 StringMap<Option*>::iterator I =
170 OptionsMap.find(llvm::StringRef(Arg, ArgEnd-Arg));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 return I != OptionsMap.end() ? I->second : 0;
172}
173
174static inline bool ProvideOption(Option *Handler, const char *ArgName,
175 const char *Value, int argc, char **argv,
176 int &i) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000177 // Is this a multi-argument option?
178 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
179
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 // Enforce value requirements
181 switch (Handler->getValueExpectedFlag()) {
182 case ValueRequired:
183 if (Value == 0) { // No value specified?
184 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
185 Value = argv[++i];
186 } else {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000187 return Handler->error("requires a value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 }
189 }
190 break;
191 case ValueDisallowed:
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000192 if (NumAdditionalVals > 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000193 return Handler->error("multi-valued option specified"
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000194 " with ValueDisallowed modifier!");
195
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 if (Value)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000197 return Handler->error("does not allow a value! '" +
Chris Lattner47d05cb2009-09-19 18:55:05 +0000198 Twine(Value) + "' specified.");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199 break;
200 case ValueOptional:
201 break;
202 default:
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000203 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 << ": Bad ValueMask flag! CommandLine usage error:"
205 << Handler->getValueExpectedFlag() << "\n";
Edwin Törökbd448e32009-07-14 16:55:14 +0000206 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 }
208
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000209 // If this isn't a multi-arg option, just run the handler.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000210 if (NumAdditionalVals == 0)
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000211 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
Chris Lattner47d05cb2009-09-19 18:55:05 +0000212
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000213 // If it is, run the handle several times.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000214 bool MultiArg = false;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000215
Chris Lattner47d05cb2009-09-19 18:55:05 +0000216 if (Value) {
217 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
218 return true;
219 --NumAdditionalVals;
220 MultiArg = true;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000221 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000222
223 while (NumAdditionalVals > 0) {
224
225 if (i+1 >= argc)
226 return Handler->error("not enough values!");
227 Value = argv[++i];
228
229 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
230 return true;
231 MultiArg = true;
232 --NumAdditionalVals;
233 }
234 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235}
236
237static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
238 int i) {
239 int Dummy = i;
240 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
241}
242
243
244// Option predicates...
245static inline bool isGrouping(const Option *O) {
246 return O->getFormattingFlag() == cl::Grouping;
247}
248static inline bool isPrefixedOrGrouping(const Option *O) {
249 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
250}
251
252// getOptionPred - Check to see if there are any options that satisfy the
253// specified predicate with names that are the prefixes in Name. This is
254// checked by progressively stripping characters off of the name, checking to
255// see if there options that satisfy the predicate. If we find one, return it,
256// otherwise return null.
257//
Evan Cheng591bfc82008-05-05 18:30:58 +0000258static Option *getOptionPred(std::string Name, size_t &Length,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 bool (*Pred)(const Option*),
Benjamin Kramer48086602009-09-19 10:01:45 +0000260 StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000261
Benjamin Kramer48086602009-09-19 10:01:45 +0000262 StringMap<Option*>::iterator OMI = OptionsMap.find(Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
264 Length = Name.length();
265 return OMI->second;
266 }
267
268 if (Name.size() == 1) return 0;
269 do {
270 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
271 OMI = OptionsMap.find(Name);
272
273 // Loop while we haven't found an option and Name still has at least two
274 // characters in it (so that the next iteration will not be the empty
275 // string...
276 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
277
278 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
279 Length = Name.length();
280 return OMI->second; // Found one!
281 }
282 return 0; // No option found!
283}
284
285static bool RequiresValue(const Option *O) {
286 return O->getNumOccurrencesFlag() == cl::Required ||
287 O->getNumOccurrencesFlag() == cl::OneOrMore;
288}
289
290static bool EatsUnboundedNumberOfValues(const Option *O) {
291 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
292 O->getNumOccurrencesFlag() == cl::OneOrMore;
293}
294
295/// ParseCStringVector - Break INPUT up wherever one or more
296/// whitespace characters are found, and store the resulting tokens in
297/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
298/// using strdup (), so it is the caller's responsibility to free ()
299/// them later.
300///
301static void ParseCStringVector(std::vector<char *> &output,
302 const char *input) {
303 // Characters which will be treated as token separators:
Dan Gohman12300e12008-03-25 21:45:14 +0000304 static const char *const delims = " \v\f\t\r\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000305
306 std::string work (input);
307 // Skip past any delims at head of input string.
308 size_t pos = work.find_first_not_of (delims);
309 // If the string consists entirely of delims, then exit early.
310 if (pos == std::string::npos) return;
311 // Otherwise, jump forward to beginning of first word.
312 work = work.substr (pos);
313 // Find position of first delimiter.
314 pos = work.find_first_of (delims);
315
316 while (!work.empty() && pos != std::string::npos) {
317 // Everything from 0 to POS is the next word to copy.
318 output.push_back (strdup (work.substr (0,pos).c_str ()));
319 // Is there another word in the string?
320 size_t nextpos = work.find_first_not_of (delims, pos + 1);
321 if (nextpos != std::string::npos) {
322 // Yes? Then remove delims from beginning ...
323 work = work.substr (work.find_first_not_of (delims, pos + 1));
324 // and find the end of the word.
325 pos = work.find_first_of (delims);
326 } else {
327 // No? (Remainder of string is delims.) End the loop.
328 work = "";
329 pos = std::string::npos;
330 }
331 }
332
333 // If `input' ended with non-delim char, then we'll get here with
334 // the last word of `input' in `work'; copy it now.
335 if (!work.empty ()) {
336 output.push_back (strdup (work.c_str ()));
337 }
338}
339
340/// ParseEnvironmentOptions - An alternative entry point to the
341/// CommandLine library, which allows you to read the program's name
342/// from the caller (as PROGNAME) and its command-line arguments from
343/// an environment variable (whose name is given in ENVVAR).
344///
345void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000346 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347 // Check args.
348 assert(progName && "Program name not specified");
349 assert(envVar && "Environment variable name missing");
350
351 // Get the environment variable they want us to parse options out of.
352 const char *envValue = getenv(envVar);
353 if (!envValue)
354 return;
355
356 // Get program's "name", which we wouldn't know without the caller
357 // telling us.
358 std::vector<char*> newArgv;
359 newArgv.push_back(strdup(progName));
360
361 // Parse the value of the environment variable into a "command line"
362 // and hand it off to ParseCommandLineOptions().
363 ParseCStringVector(newArgv, envValue);
Evan Cheng591bfc82008-05-05 18:30:58 +0000364 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000365 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366
367 // Free all the strdup()ed strings.
368 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
369 i != e; ++i)
370 free (*i);
371}
372
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000373
374/// ExpandResponseFiles - Copy the contents of argv into newArgv,
375/// substituting the contents of the response files for the arguments
376/// of type @file.
377static void ExpandResponseFiles(int argc, char** argv,
378 std::vector<char*>& newArgv) {
379 for (int i = 1; i != argc; ++i) {
380 char* arg = argv[i];
381
382 if (arg[0] == '@') {
383
384 sys::PathWithStatus respFile(++arg);
385
386 // Check that the response file is not empty (mmap'ing empty
387 // files can be problematic).
388 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000389 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000390
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000391 // Mmap the response file into memory.
392 OwningPtr<MemoryBuffer>
393 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000394
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000395 // If we could open the file, parse its contents, otherwise
396 // pass the @file option verbatim.
Mikhail Glushenkovc591ed142009-01-28 03:46:22 +0000397
398 // TODO: we should also support recursive loading of response files,
399 // since this is how gcc behaves. (From their man page: "The file may
400 // itself contain additional @file options; any such options will be
401 // processed recursively.")
402
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000403 if (respFilePtr != 0) {
404 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
405 continue;
406 }
407 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000408 }
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000409 newArgv.push_back(strdup(arg));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000410 }
411}
412
Dan Gohman61db06b2007-10-09 16:04:57 +0000413void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000414 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415 // Process all registered options.
416 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000417 std::vector<Option*> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +0000418 StringMap<Option*> Opts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000419 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000420
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000421 assert((!Opts.empty() || !PositionalOpts.empty()) &&
422 "No options specified!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000423
424 // Expand response files.
425 std::vector<char*> newArgv;
426 if (ReadResponseFiles) {
427 newArgv.push_back(strdup(argv[0]));
428 ExpandResponseFiles(argc, argv, newArgv);
429 argv = &newArgv[0];
Evan Cheng591bfc82008-05-05 18:30:58 +0000430 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000431 }
432
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 // Copy the program name into ProgName, making sure not to overflow it.
434 std::string ProgName = sys::Path(argv[0]).getLast();
435 if (ProgName.size() > 79) ProgName.resize(79);
436 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000437
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000438 ProgramOverview = Overview;
439 bool ErrorParsing = false;
440
441 // Check out the positional arguments to collect information about them.
442 unsigned NumPositionalRequired = 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000443
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 // Determine whether or not there are an unlimited number of positionals
445 bool HasUnlimitedPositionals = false;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000446
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 Option *ConsumeAfterOpt = 0;
448 if (!PositionalOpts.empty()) {
449 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
450 assert(PositionalOpts.size() > 1 &&
451 "Cannot specify cl::ConsumeAfter without a positional argument!");
452 ConsumeAfterOpt = PositionalOpts[0];
453 }
454
455 // Calculate how many positional values are _required_.
456 bool UnboundedFound = false;
Evan Cheng591bfc82008-05-05 18:30:58 +0000457 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458 i != e; ++i) {
459 Option *Opt = PositionalOpts[i];
460 if (RequiresValue(Opt))
461 ++NumPositionalRequired;
462 else if (ConsumeAfterOpt) {
463 // ConsumeAfter cannot be combined with "optional" positional options
464 // unless there is only one positional argument...
465 if (PositionalOpts.size() > 2)
466 ErrorParsing |=
Benjamin Kramer9164c672009-08-02 12:13:02 +0000467 Opt->error("error - this positional option will never be matched, "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 "because it does not Require a value, and a "
469 "cl::ConsumeAfter option is active!");
470 } else if (UnboundedFound && !Opt->ArgStr[0]) {
471 // This option does not "require" a value... Make sure this option is
472 // not specified after an option that eats all extra arguments, or this
473 // one will never get any!
474 //
Benjamin Kramer9164c672009-08-02 12:13:02 +0000475 ErrorParsing |= Opt->error("error - option can never match, because "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000476 "another positional argument will match an "
477 "unbounded number of values, and this option"
478 " does not require a value!");
479 }
480 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
481 }
482 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
483 }
484
485 // PositionalVals - A vector of "positional" arguments we accumulate into
486 // the process at the end...
487 //
488 std::vector<std::pair<std::string,unsigned> > PositionalVals;
489
490 // If the program has named positional arguments, and the name has been run
491 // across, keep track of which positional argument was named. Otherwise put
492 // the positional args into the PositionalVals list...
493 Option *ActivePositionalArg = 0;
494
495 // Loop over all of the arguments... processing them.
496 bool DashDashFound = false; // Have we read '--'?
497 for (int i = 1; i < argc; ++i) {
498 Option *Handler = 0;
499 const char *Value = 0;
500 const char *ArgName = "";
501
502 // If the option list changed, this means that some command line
503 // option has just been registered or deregistered. This can occur in
504 // response to things like -load, etc. If this happens, rescan the options.
505 if (OptionListChanged) {
506 PositionalOpts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000507 SinkOpts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 Opts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000509 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 OptionListChanged = false;
511 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000512
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513 // Check to see if this is a positional argument. This argument is
514 // considered to be positional if it doesn't start with '-', if it is "-"
515 // itself, or if we have seen "--" already.
516 //
517 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
518 // Positional argument!
519 if (ActivePositionalArg) {
520 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
521 continue; // We are done!
522 } else if (!PositionalOpts.empty()) {
523 PositionalVals.push_back(std::make_pair(argv[i],i));
524
525 // All of the positional arguments have been fulfulled, give the rest to
526 // the consume after option... if it's specified...
527 //
528 if (PositionalVals.size() >= NumPositionalRequired &&
529 ConsumeAfterOpt != 0) {
530 for (++i; i < argc; ++i)
531 PositionalVals.push_back(std::make_pair(argv[i],i));
532 break; // Handle outside of the argument processing loop...
533 }
534
535 // Delay processing positional arguments until the end...
536 continue;
537 }
538 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
539 !DashDashFound) {
540 DashDashFound = true; // This is the mythical "--"?
541 continue; // Don't try to process it as an argument itself.
542 } else if (ActivePositionalArg &&
543 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
544 // If there is a positional argument eating options, check to see if this
545 // option is another positional argument. If so, treat it as an argument,
546 // otherwise feed it to the eating positional.
547 ArgName = argv[i]+1;
548 Handler = LookupOption(ArgName, Value, Opts);
549 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
550 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
551 continue; // We are done!
552 }
553
554 } else { // We start with a '-', must be an argument...
555 ArgName = argv[i]+1;
556 Handler = LookupOption(ArgName, Value, Opts);
557
558 // Check to see if this "option" is really a prefixed or grouped argument.
559 if (Handler == 0) {
560 std::string RealName(ArgName);
561 if (RealName.size() > 1) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000562 size_t Length = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
564 Opts);
565
566 // If the option is a prefixed option, then the value is simply the
567 // rest of the name... so fall through to later processing, by
568 // setting up the argument name flags and value fields.
569 //
570 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
571 Value = ArgName+Length;
572 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
573 Opts.find(std::string(ArgName, Value))->second == PGOpt);
574 Handler = PGOpt;
575 } else if (PGOpt) {
576 // This must be a grouped option... handle them now.
577 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
578
579 do {
580 // Move current arg name out of RealName into RealArgName...
581 std::string RealArgName(RealName.begin(),
582 RealName.begin() + Length);
583 RealName.erase(RealName.begin(), RealName.begin() + Length);
584
585 // Because ValueRequired is an invalid flag for grouped arguments,
586 // we don't need to pass argc/argv in...
587 //
588 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
589 "Option can not be cl::Grouping AND cl::ValueRequired!");
590 int Dummy;
591 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
592 0, 0, 0, Dummy);
593
594 // Get the next grouping option...
595 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
596 } while (PGOpt && Length != RealName.size());
597
598 Handler = PGOpt; // Ate all of the options.
599 }
600 }
601 }
602 }
603
604 if (Handler == 0) {
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000605 if (SinkOpts.empty()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000606 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000607 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
608 ErrorParsing = true;
609 } else {
610 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
611 E = SinkOpts.end(); I != E ; ++I)
612 (*I)->addOccurrence(i, "", argv[i]);
613 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614 continue;
615 }
616
617 // Check to see if this option accepts a comma separated list of values. If
618 // it does, we have to split up the value into multiple values...
619 if (Value && Handler->getMiscFlags() & CommaSeparated) {
620 std::string Val(Value);
621 std::string::size_type Pos = Val.find(',');
622
623 while (Pos != std::string::npos) {
624 // Process the portion before the comma...
625 ErrorParsing |= ProvideOption(Handler, ArgName,
626 std::string(Val.begin(),
627 Val.begin()+Pos).c_str(),
628 argc, argv, i);
629 // Erase the portion before the comma, AND the comma...
630 Val.erase(Val.begin(), Val.begin()+Pos+1);
631 Value += Pos+1; // Increment the original value pointer as well...
632
633 // Check for another comma...
634 Pos = Val.find(',');
635 }
636 }
637
638 // If this is a named positional argument, just remember that it is the
639 // active one...
640 if (Handler->getFormattingFlag() == cl::Positional)
641 ActivePositionalArg = Handler;
642 else
643 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
644 }
645
646 // Check and handle positional arguments now...
647 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000648 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649 << ": Not enough positional command line arguments specified!\n"
650 << "Must specify at least " << NumPositionalRequired
651 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000652
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653 ErrorParsing = true;
654 } else if (!HasUnlimitedPositionals
655 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000656 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 << ": Too many positional arguments specified!\n"
658 << "Can specify at most " << PositionalOpts.size()
659 << " positional arguments: See: " << argv[0] << " --help\n";
660 ErrorParsing = true;
661
662 } else if (ConsumeAfterOpt == 0) {
663 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng591bfc82008-05-05 18:30:58 +0000664 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
665 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666 if (RequiresValue(PositionalOpts[i])) {
667 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
668 PositionalVals[ValNo].second);
669 ValNo++;
670 --NumPositionalRequired; // We fulfilled our duty...
671 }
672
673 // If we _can_ give this option more arguments, do so now, as long as we
674 // do not give it values that others need. 'Done' controls whether the
675 // option even _WANTS_ any more.
676 //
677 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
678 while (NumVals-ValNo > NumPositionalRequired && !Done) {
679 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
680 case cl::Optional:
681 Done = true; // Optional arguments want _at most_ one value
682 // FALL THROUGH
683 case cl::ZeroOrMore: // Zero or more will take all they can get...
684 case cl::OneOrMore: // One or more will take all they can get...
685 ProvidePositionalOption(PositionalOpts[i],
686 PositionalVals[ValNo].first,
687 PositionalVals[ValNo].second);
688 ValNo++;
689 break;
690 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000691 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 "positional argument processing!");
693 }
694 }
695 }
696 } else {
697 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
698 unsigned ValNo = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +0000699 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000700 if (RequiresValue(PositionalOpts[j])) {
701 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
702 PositionalVals[ValNo].first,
703 PositionalVals[ValNo].second);
704 ValNo++;
705 }
706
707 // Handle the case where there is just one positional option, and it's
708 // optional. In this case, we want to give JUST THE FIRST option to the
709 // positional option and keep the rest for the consume after. The above
710 // loop would have assigned no values to positional options in this case.
711 //
712 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
713 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
714 PositionalVals[ValNo].first,
715 PositionalVals[ValNo].second);
716 ValNo++;
717 }
718
719 // Handle over all of the rest of the arguments to the
720 // cl::ConsumeAfter command line option...
721 for (; ValNo != PositionalVals.size(); ++ValNo)
722 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
723 PositionalVals[ValNo].first,
724 PositionalVals[ValNo].second);
725 }
726
727 // Loop over args and make sure all required args are specified!
Benjamin Kramer48086602009-09-19 10:01:45 +0000728 for (StringMap<Option*>::iterator I = Opts.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729 E = Opts.end(); I != E; ++I) {
730 switch (I->second->getNumOccurrencesFlag()) {
731 case Required:
732 case OneOrMore:
733 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000734 I->second->error("must be specified at least once!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 ErrorParsing = true;
736 }
737 // Fall through
738 default:
739 break;
740 }
741 }
742
743 // Free all of the memory allocated to the map. Command line options may only
744 // be processed once!
745 Opts.clear();
746 PositionalOpts.clear();
747 MoreHelp->clear();
748
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000749 // Free the memory allocated by ExpandResponseFiles.
750 if (ReadResponseFiles) {
751 // Free all the strdup()ed strings.
752 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
753 i != e; ++i)
754 free (*i);
755 }
756
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 // If we had an error processing our arguments, don't let the program execute
758 if (ErrorParsing) exit(1);
759}
760
761//===----------------------------------------------------------------------===//
762// Option Base class implementation
763//
764
Chris Lattner47d05cb2009-09-19 18:55:05 +0000765bool Option::error(const Twine &Message, const char *ArgName) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000766 if (ArgName == 0) ArgName = ArgStr;
767 if (ArgName[0] == 0)
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000768 errs() << HelpStr; // Be nice for positional arguments
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769 else
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000770 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000771
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000772 errs() << " option: " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000773 return true;
774}
775
776bool Option::addOccurrence(unsigned pos, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000777 StringRef Value, bool MultiArg) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000778 if (!MultiArg)
779 NumOccurrences++; // Increment the number of times we have been seen
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000780
781 switch (getNumOccurrencesFlag()) {
782 case Optional:
783 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000784 return error("may only occur zero or one times!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785 break;
786 case Required:
787 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000788 return error("must occur exactly one time!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789 // Fall through
790 case OneOrMore:
791 case ZeroOrMore:
792 case ConsumeAfter: break;
Benjamin Kramer9164c672009-08-02 12:13:02 +0000793 default: return error("bad num occurrences flag value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000794 }
795
796 return handleOccurrence(pos, ArgName, Value);
797}
798
799
800// getValueStr - Get the value description string, using "DefaultMsg" if nothing
801// has been specified yet.
802//
803static const char *getValueStr(const Option &O, const char *DefaultMsg) {
804 if (O.ValueStr[0] == 0) return DefaultMsg;
805 return O.ValueStr;
806}
807
808//===----------------------------------------------------------------------===//
809// cl::alias class implementation
810//
811
812// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000813size_t alias::getOptionWidth() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 return std::strlen(ArgStr)+6;
815}
816
817// Print out the option for the alias.
Evan Cheng591bfc82008-05-05 18:30:58 +0000818void alias::printOptionInfo(size_t GlobalWidth) const {
819 size_t L = std::strlen(ArgStr);
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000820 errs() << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
Daniel Dunbar9b3edb62009-07-16 02:06:09 +0000821 << HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822}
823
824
825
826//===----------------------------------------------------------------------===//
827// Parser Implementation code...
828//
829
830// basic_parser implementation
831//
832
833// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000834size_t basic_parser_impl::getOptionWidth(const Option &O) const {
835 size_t Len = std::strlen(O.ArgStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836 if (const char *ValName = getValueName())
837 Len += std::strlen(getValueStr(O, ValName))+3;
838
839 return Len + 6;
840}
841
842// printOptionInfo - Print out information about this option. The
843// to-be-maintained width is specified.
844//
845void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000846 size_t GlobalWidth) const {
Chris Lattner5febcae2009-08-23 08:43:55 +0000847 outs() << " -" << O.ArgStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000848
849 if (const char *ValName = getValueName())
Chris Lattner5febcae2009-08-23 08:43:55 +0000850 outs() << "=<" << getValueStr(O, ValName) << '>';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851
Chris Lattner5febcae2009-08-23 08:43:55 +0000852 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000853}
854
855
856
857
858// parser<bool> implementation
859//
860bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000861 StringRef Arg, bool &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
863 Arg == "1") {
864 Value = true;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000865 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000866 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000867
868 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
869 Value = false;
870 return false;
871 }
872 return O.error("'" + Arg +
873 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874}
875
876// parser<boolOrDefault> implementation
877//
878bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000879 StringRef Arg, boolOrDefault &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
881 Arg == "1") {
882 Value = BOU_TRUE;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000883 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000885 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
886 Value = BOU_FALSE;
887 return false;
888 }
889
890 return O.error("'" + Arg +
891 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892}
893
894// parser<int> implementation
895//
896bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000897 StringRef Arg, int &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000898 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000899 return O.error("'" + Arg + "' value invalid for integer argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000900 return false;
901}
902
903// parser<unsigned> implementation
904//
905bool parser<unsigned>::parse(Option &O, const char *ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000906 StringRef Arg, unsigned &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000907
908 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000909 return O.error("'" + Arg + "' value invalid for uint argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000910 return false;
911}
912
913// parser<double>/parser<float> implementation
914//
Chris Lattner47d05cb2009-09-19 18:55:05 +0000915static bool parseDouble(Option &O, StringRef Arg, double &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000916 SmallString<32> TmpStr(Arg.begin(), Arg.end());
917 const char *ArgStart = TmpStr.c_str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000918 char *End;
919 Value = strtod(ArgStart, &End);
920 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000921 return O.error("'" + Arg + "' value invalid for floating point argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000922 return false;
923}
924
925bool parser<double>::parse(Option &O, const char *AN,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000926 StringRef Arg, double &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927 return parseDouble(O, Arg, Val);
928}
929
930bool parser<float>::parse(Option &O, const char *AN,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000931 StringRef Arg, float &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000932 double dVal;
933 if (parseDouble(O, Arg, dVal))
934 return true;
935 Val = (float)dVal;
936 return false;
937}
938
939
940
941// generic_parser_base implementation
942//
943
944// findOption - Return the option number corresponding to the specified
945// argument string. If the option is not found, getNumOptions() is returned.
946//
947unsigned generic_parser_base::findOption(const char *Name) {
Benjamin Kramer48086602009-09-19 10:01:45 +0000948 unsigned e = getNumOptions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949
Benjamin Kramer48086602009-09-19 10:01:45 +0000950 for (unsigned i = 0; i != e; ++i) {
951 if (strcmp(getOption(i), Name) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952 return i;
Benjamin Kramer48086602009-09-19 10:01:45 +0000953 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 return e;
955}
956
957
958// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000959size_t generic_parser_base::getOptionWidth(const Option &O) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000961 size_t Size = std::strlen(O.ArgStr)+6;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000962 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000963 Size = std::max(Size, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000964 return Size;
965 } else {
Evan Cheng591bfc82008-05-05 18:30:58 +0000966 size_t BaseSize = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000968 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000969 return BaseSize;
970 }
971}
972
973// printOptionInfo - Print out information about this option. The
974// to-be-maintained width is specified.
975//
976void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000977 size_t GlobalWidth) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000979 size_t L = std::strlen(O.ArgStr);
Chris Lattner5febcae2009-08-23 08:43:55 +0000980 outs() << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
981 << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000982
983 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000984 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattner5febcae2009-08-23 08:43:55 +0000985 outs() << " =" << getOption(i) << std::string(NumSpaces, ' ')
986 << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987 }
988 } else {
989 if (O.HelpStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +0000990 outs() << " " << O.HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000992 size_t L = std::strlen(getOption(i));
Chris Lattner5febcae2009-08-23 08:43:55 +0000993 outs() << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
994 << " - " << getDescription(i) << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000995 }
996 }
997}
998
999
1000//===----------------------------------------------------------------------===//
1001// --help and --help-hidden option implementation
1002//
1003
1004namespace {
1005
1006class HelpPrinter {
Evan Cheng591bfc82008-05-05 18:30:58 +00001007 size_t MaxArgLen;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 const Option *EmptyArg;
1009 const bool ShowHidden;
1010
1011 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Benjamin Kramer48086602009-09-19 10:01:45 +00001012 inline static bool isHidden(Option *Opt) {
1013 return Opt->getOptionHiddenFlag() >= Hidden;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 }
Benjamin Kramer48086602009-09-19 10:01:45 +00001015 inline static bool isReallyHidden(Option *Opt) {
1016 return Opt->getOptionHiddenFlag() == ReallyHidden;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001017 }
1018
1019public:
Dan Gohman40bd38e2008-03-25 22:06:05 +00001020 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 EmptyArg = 0;
1022 }
1023
1024 void operator=(bool Value) {
1025 if (Value == false) return;
1026
1027 // Get all the options.
1028 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001029 std::vector<Option*> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +00001030 StringMap<Option*> OptMap;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001031 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001032
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001033 // Copy Options into a vector so we can sort them as we like...
Benjamin Kramer48086602009-09-19 10:01:45 +00001034 std::vector<Option*> Opts;
1035 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1036 I != E; ++I) {
1037 Opts.push_back(I->second);
1038 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039
1040 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
1041 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1042 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1043 Opts.end());
1044
1045 // Eliminate duplicate entries in table (from enum flags options, f.e.)
1046 { // Give OptionSet a scope
1047 std::set<Option*> OptionSet;
1048 for (unsigned i = 0; i != Opts.size(); ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001049 if (OptionSet.count(Opts[i]) == 0)
1050 OptionSet.insert(Opts[i]); // Add new entry to set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 else
1052 Opts.erase(Opts.begin()+i--); // Erase duplicate
1053 }
1054
1055 if (ProgramOverview)
Chris Lattner5febcae2009-08-23 08:43:55 +00001056 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057
Chris Lattner5febcae2009-08-23 08:43:55 +00001058 outs() << "USAGE: " << ProgramName << " [options]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059
1060 // Print out the positional options.
1061 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001062 if (!PositionalOpts.empty() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1064 CAOpt = PositionalOpts[0];
1065
Evan Cheng591bfc82008-05-05 18:30:58 +00001066 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 if (PositionalOpts[i]->ArgStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001068 outs() << " --" << PositionalOpts[i]->ArgStr;
1069 outs() << " " << PositionalOpts[i]->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070 }
1071
1072 // Print the consume after option info if it exists...
Chris Lattner5febcae2009-08-23 08:43:55 +00001073 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074
Chris Lattner5febcae2009-08-23 08:43:55 +00001075 outs() << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001076
1077 // Compute the maximum argument length...
1078 MaxArgLen = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +00001079 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001080 MaxArgLen = std::max(MaxArgLen, Opts[i]->getOptionWidth());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001081
Chris Lattner5febcae2009-08-23 08:43:55 +00001082 outs() << "OPTIONS:\n";
Evan Cheng591bfc82008-05-05 18:30:58 +00001083 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001084 Opts[i]->printOptionInfo(MaxArgLen);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085
1086 // Print any extra help the user has declared.
1087 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1088 E = MoreHelp->end(); I != E; ++I)
Chris Lattner5febcae2009-08-23 08:43:55 +00001089 outs() << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090 MoreHelp->clear();
1091
1092 // Halt the program since help information was printed
1093 exit(1);
1094 }
1095};
1096} // End anonymous namespace
1097
1098// Define the two HelpPrinter instances that are used to print out help, or
1099// help-hidden...
1100//
1101static HelpPrinter NormalPrinter(false);
1102static HelpPrinter HiddenPrinter(true);
1103
1104static cl::opt<HelpPrinter, true, parser<bool> >
1105HOp("help", cl::desc("Display available options (--help-hidden for more)"),
1106 cl::location(NormalPrinter), cl::ValueDisallowed);
1107
1108static cl::opt<HelpPrinter, true, parser<bool> >
1109HHOp("help-hidden", cl::desc("Display all available options"),
1110 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1111
1112static void (*OverrideVersionPrinter)() = 0;
1113
1114namespace {
1115class VersionPrinter {
1116public:
1117 void print() {
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001118 outs() << "Low Level Virtual Machine (http://llvm.org/):\n"
1119 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001120#ifdef LLVM_VERSION_INFO
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001121 outs() << LLVM_VERSION_INFO;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001123 outs() << "\n ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001124#ifndef __OPTIMIZE__
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001125 outs() << "DEBUG build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126#else
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001127 outs() << "Optimized build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128#endif
1129#ifndef NDEBUG
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001130 outs() << " with assertions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001132 outs() << ".\n"
1133 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
Daniel Dunbar401011e2009-09-02 23:52:38 +00001134 << " Host: " << sys::getHostTriple() << "\n"
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001135 << "\n"
1136 << " Registered Targets:\n";
Daniel Dunbar9b3edb62009-07-16 02:06:09 +00001137
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001138 std::vector<std::pair<std::string, const Target*> > Targets;
1139 size_t Width = 0;
1140 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1141 ie = TargetRegistry::end(); it != ie; ++it) {
1142 Targets.push_back(std::make_pair(it->getName(), &*it));
1143 Width = std::max(Width, Targets.back().first.length());
1144 }
1145 std::sort(Targets.begin(), Targets.end());
Daniel Dunbar80329932009-07-26 05:09:50 +00001146
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001147 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
1148 outs() << " " << Targets[i].first
1149 << std::string(Width - Targets[i].first.length(), ' ') << " - "
1150 << Targets[i].second->getShortDescription() << "\n";
1151 }
1152 if (Targets.empty())
1153 outs() << " (none)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001154 }
1155 void operator=(bool OptionWasSpecified) {
1156 if (OptionWasSpecified) {
1157 if (OverrideVersionPrinter == 0) {
1158 print();
1159 exit(1);
1160 } else {
1161 (*OverrideVersionPrinter)();
1162 exit(1);
1163 }
1164 }
1165 }
1166};
1167} // End anonymous namespace
1168
1169
1170// Define the --version option that prints out the LLVM version for the tool
1171static VersionPrinter VersionPrinterInstance;
1172
1173static cl::opt<VersionPrinter, true, parser<bool> >
1174VersOp("version", cl::desc("Display the version of this program"),
1175 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1176
1177// Utility function for printing the help message.
1178void cl::PrintHelpMessage() {
1179 // This looks weird, but it actually prints the help message. The
1180 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1181 // its operator= is invoked. That's because the "normal" usages of the
1182 // help printer is to be assigned true/false depending on whether the
1183 // --help option was given or not. Since we're circumventing that we have
1184 // to make it look like --help was given, so we assign true.
1185 NormalPrinter = true;
1186}
1187
1188/// Utility function for printing version number.
1189void cl::PrintVersionMessage() {
1190 VersionPrinterInstance.print();
1191}
1192
1193void cl::SetVersionPrinter(void (*func)()) {
1194 OverrideVersionPrinter = func;
1195}