blob: 626daa254dd7b9ea1b13a820adb4bf156f50d401 [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"
Chris Lattner97be18f2009-09-20 05:12:14 +000028#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner717f7732009-09-19 23:59:02 +000029#include "llvm/ADT/SmallString.h"
Chris Lattner97be18f2009-09-20 05:12:14 +000030#include "llvm/ADT/StringMap.h"
Chris Lattner47d05cb2009-09-19 18:55:05 +000031#include "llvm/ADT/Twine.h"
Chris Lattner9cb435b2009-08-23 18:09:02 +000032#include "llvm/Config/config.h"
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.
Chris Lattner3d211b22009-09-20 06:18:38 +0000108static void GetOptionInfo(SmallVectorImpl<Option*> &PositionalOpts,
109 SmallVectorImpl<Option*> &SinkOpts,
Benjamin Kramer48086602009-09-19 10:01:45 +0000110 StringMap<Option*> &OptionsMap) {
Chris Lattnere4a6ac92009-09-20 06:21:43 +0000111 SmallVector<const char*, 16> OptionNames;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112 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
Chris Lattnerd516d022009-09-20 05:03:30 +0000153/// that as well. This assumes that leading dashes have already been stripped.
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000154static Option *LookupOption(StringRef &Arg, StringRef &Value,
155 const StringMap<Option*> &OptionsMap) {
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000156 // Reject all dashes.
157 if (Arg.empty()) return 0;
158
159 size_t EqualPos = Arg.find('=');
160
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000161 // If we have an equals sign, remember the value.
Chris Lattnerd516d022009-09-20 05:03:30 +0000162 if (EqualPos == StringRef::npos) {
163 // Look up the option.
164 StringMap<Option*>::const_iterator I = OptionsMap.find(Arg);
165 return I != OptionsMap.end() ? I->second : 0;
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000166 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000167
Chris Lattnerd516d022009-09-20 05:03:30 +0000168 // If the argument before the = is a valid option name, we match. If not,
169 // return Arg unmolested.
170 StringMap<Option*>::const_iterator I =
171 OptionsMap.find(Arg.substr(0, EqualPos));
172 if (I == OptionsMap.end()) return 0;
173
174 Value = Arg.substr(EqualPos+1);
175 Arg = Arg.substr(0, EqualPos);
176 return I->second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177}
178
Chris Lattnerd516d022009-09-20 05:03:30 +0000179
180
Chris Lattner4627c682009-09-20 01:49:31 +0000181/// ProvideOption - For Value, this differentiates between an empty value ("")
182/// and a null value (StringRef()). The later is accepted for arguments that
183/// don't allow a value (-foo) the former is rejected (-foo=).
Chris Lattner157229d2009-09-20 00:40:49 +0000184static inline bool ProvideOption(Option *Handler, StringRef ArgName,
Chris Lattner4627c682009-09-20 01:49:31 +0000185 StringRef Value, int argc, char **argv,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 int &i) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000187 // Is this a multi-argument option?
188 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
189
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 // Enforce value requirements
191 switch (Handler->getValueExpectedFlag()) {
192 case ValueRequired:
Chris Lattner4627c682009-09-20 01:49:31 +0000193 if (Value.data() == 0) { // No value specified?
Chris Lattner747e01e2009-09-20 00:07:40 +0000194 if (i+1 >= argc)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000195 return Handler->error("requires a value!");
Chris Lattner747e01e2009-09-20 00:07:40 +0000196 // Steal the next argument, like for '-o filename'
197 Value = argv[++i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000198 }
199 break;
200 case ValueDisallowed:
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000201 if (NumAdditionalVals > 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000202 return Handler->error("multi-valued option specified"
Chris Lattner747e01e2009-09-20 00:07:40 +0000203 " with ValueDisallowed modifier!");
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000204
Chris Lattner4627c682009-09-20 01:49:31 +0000205 if (Value.data())
Benjamin Kramer9164c672009-08-02 12:13:02 +0000206 return Handler->error("does not allow a value! '" +
Chris Lattner47d05cb2009-09-19 18:55:05 +0000207 Twine(Value) + "' specified.");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 break;
209 case ValueOptional:
210 break;
Chris Lattner747e01e2009-09-20 00:07:40 +0000211
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 default:
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000213 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 << ": Bad ValueMask flag! CommandLine usage error:"
215 << Handler->getValueExpectedFlag() << "\n";
Edwin Törökbd448e32009-07-14 16:55:14 +0000216 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 }
218
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000219 // If this isn't a multi-arg option, just run the handler.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000220 if (NumAdditionalVals == 0)
Chris Lattner4627c682009-09-20 01:49:31 +0000221 return Handler->addOccurrence(i, ArgName, Value);
Chris Lattner47d05cb2009-09-19 18:55:05 +0000222
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000223 // If it is, run the handle several times.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000224 bool MultiArg = false;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000225
Chris Lattner4627c682009-09-20 01:49:31 +0000226 if (Value.data()) {
Chris Lattner47d05cb2009-09-19 18:55:05 +0000227 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
228 return true;
229 --NumAdditionalVals;
230 MultiArg = true;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000231 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000232
233 while (NumAdditionalVals > 0) {
Chris Lattner47d05cb2009-09-19 18:55:05 +0000234 if (i+1 >= argc)
235 return Handler->error("not enough values!");
236 Value = argv[++i];
237
238 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
239 return true;
240 MultiArg = true;
241 --NumAdditionalVals;
242 }
243 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244}
245
Chris Lattner747e01e2009-09-20 00:07:40 +0000246static bool ProvidePositionalOption(Option *Handler, StringRef Arg, int i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 int Dummy = i;
Chris Lattner4627c682009-09-20 01:49:31 +0000248 return ProvideOption(Handler, Handler->ArgStr, Arg, 0, 0, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249}
250
251
252// Option predicates...
253static inline bool isGrouping(const Option *O) {
254 return O->getFormattingFlag() == cl::Grouping;
255}
256static inline bool isPrefixedOrGrouping(const Option *O) {
257 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
258}
259
260// getOptionPred - Check to see if there are any options that satisfy the
261// specified predicate with names that are the prefixes in Name. This is
262// checked by progressively stripping characters off of the name, checking to
263// see if there options that satisfy the predicate. If we find one, return it,
264// otherwise return null.
265//
Chris Lattner157229d2009-09-20 00:40:49 +0000266static Option *getOptionPred(StringRef Name, size_t &Length,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267 bool (*Pred)(const Option*),
Chris Lattnerd516d022009-09-20 05:03:30 +0000268 const StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269
Chris Lattnerd516d022009-09-20 05:03:30 +0000270 StringMap<Option*>::const_iterator OMI = OptionsMap.find(Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271
Chris Lattnerd516d022009-09-20 05:03:30 +0000272 // 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() && Name.size() > 1) {
Chris Lattner157229d2009-09-20 00:40:49 +0000276 Name = Name.substr(0, Name.size()-1); // Chop off the last character.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277 OMI = OptionsMap.find(Name);
Chris Lattnerd516d022009-09-20 05:03:30 +0000278 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279
280 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner157229d2009-09-20 00:40:49 +0000281 Length = Name.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000282 return OMI->second; // Found one!
283 }
284 return 0; // No option found!
285}
286
Chris Lattnerd516d022009-09-20 05:03:30 +0000287/// HandlePrefixedOrGroupedOption - The specified argument string (which started
288/// with at least one '-') does not fully match an available option. Check to
289/// see if this is a prefix or grouped option. If so, split arg into output an
290/// Arg/Value pair and return the Option to parse it with.
291static Option *HandlePrefixedOrGroupedOption(StringRef &Arg, StringRef &Value,
292 bool &ErrorParsing,
293 const StringMap<Option*> &OptionsMap) {
294 if (Arg.size() == 1) return 0;
295
296 // Do the lookup!
297 size_t Length = 0;
298 Option *PGOpt = getOptionPred(Arg, Length, isPrefixedOrGrouping, OptionsMap);
299 if (PGOpt == 0) return 0;
300
301 // If the option is a prefixed option, then the value is simply the
302 // rest of the name... so fall through to later processing, by
303 // setting up the argument name flags and value fields.
304 if (PGOpt->getFormattingFlag() == cl::Prefix) {
305 Value = Arg.substr(Length);
306 Arg = Arg.substr(0, Length);
307 assert(OptionsMap.count(Arg) && OptionsMap.find(Arg)->second == PGOpt);
308 return PGOpt;
309 }
310
311 // This must be a grouped option... handle them now. Grouping options can't
312 // have values.
313 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
314
315 do {
316 // Move current arg name out of Arg into OneArgName.
317 StringRef OneArgName = Arg.substr(0, Length);
318 Arg = Arg.substr(Length);
319
320 // Because ValueRequired is an invalid flag for grouped arguments,
321 // we don't need to pass argc/argv in.
322 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
323 "Option can not be cl::Grouping AND cl::ValueRequired!");
324 int Dummy;
325 ErrorParsing |= ProvideOption(PGOpt, OneArgName,
326 StringRef(), 0, 0, Dummy);
327
328 // Get the next grouping option.
329 PGOpt = getOptionPred(Arg, Length, isGrouping, OptionsMap);
330 } while (PGOpt && Length != Arg.size());
331
332 // Return the last option with Arg cut down to just the last one.
333 return PGOpt;
334}
335
336
337
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338static bool RequiresValue(const Option *O) {
339 return O->getNumOccurrencesFlag() == cl::Required ||
340 O->getNumOccurrencesFlag() == cl::OneOrMore;
341}
342
343static bool EatsUnboundedNumberOfValues(const Option *O) {
344 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
345 O->getNumOccurrencesFlag() == cl::OneOrMore;
346}
347
348/// ParseCStringVector - Break INPUT up wherever one or more
349/// whitespace characters are found, and store the resulting tokens in
350/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
Chris Lattner2ee921e2009-09-20 01:11:23 +0000351/// using strdup(), so it is the caller's responsibility to free()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352/// them later.
353///
Chris Lattnerc8b70662009-09-24 05:38:36 +0000354static void ParseCStringVector(std::vector<char *> &OutputVector,
355 const char *Input) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356 // Characters which will be treated as token separators:
Chris Lattnerc8b70662009-09-24 05:38:36 +0000357 StringRef Delims = " \v\f\t\r\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358
Chris Lattnerc8b70662009-09-24 05:38:36 +0000359 StringRef WorkStr(Input);
360 while (!WorkStr.empty()) {
361 // If the first character is a delimiter, strip them off.
362 if (Delims.find(WorkStr[0]) != StringRef::npos) {
363 size_t Pos = WorkStr.find_first_not_of(Delims);
364 if (Pos == StringRef::npos) Pos = WorkStr.size();
365 WorkStr = WorkStr.substr(Pos);
366 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 }
Chris Lattnerc8b70662009-09-24 05:38:36 +0000368
369 // Find position of first delimiter.
370 size_t Pos = WorkStr.find_first_of(Delims);
371 if (Pos == StringRef::npos) Pos = WorkStr.size();
372
373 // Everything from 0 to Pos is the next word to copy.
374 char *NewStr = (char*)malloc(Pos+1);
375 memcpy(NewStr, WorkStr.data(), Pos);
376 NewStr[Pos] = 0;
377 OutputVector.push_back(NewStr);
378
379 WorkStr = WorkStr.substr(Pos);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381}
382
383/// ParseEnvironmentOptions - An alternative entry point to the
384/// CommandLine library, which allows you to read the program's name
385/// from the caller (as PROGNAME) and its command-line arguments from
386/// an environment variable (whose name is given in ENVVAR).
387///
388void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000389 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 // Check args.
391 assert(progName && "Program name not specified");
392 assert(envVar && "Environment variable name missing");
393
394 // Get the environment variable they want us to parse options out of.
395 const char *envValue = getenv(envVar);
396 if (!envValue)
397 return;
398
399 // Get program's "name", which we wouldn't know without the caller
400 // telling us.
401 std::vector<char*> newArgv;
402 newArgv.push_back(strdup(progName));
403
404 // Parse the value of the environment variable into a "command line"
405 // and hand it off to ParseCommandLineOptions().
406 ParseCStringVector(newArgv, envValue);
Evan Cheng591bfc82008-05-05 18:30:58 +0000407 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000408 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409
410 // Free all the strdup()ed strings.
411 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
412 i != e; ++i)
Chris Lattner2ee921e2009-09-20 01:11:23 +0000413 free(*i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414}
415
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000416
417/// ExpandResponseFiles - Copy the contents of argv into newArgv,
418/// substituting the contents of the response files for the arguments
419/// of type @file.
Chris Lattnerd516d022009-09-20 05:03:30 +0000420static void ExpandResponseFiles(unsigned argc, char** argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000421 std::vector<char*>& newArgv) {
Chris Lattnerd516d022009-09-20 05:03:30 +0000422 for (unsigned i = 1; i != argc; ++i) {
423 char *arg = argv[i];
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000424
425 if (arg[0] == '@') {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000426 sys::PathWithStatus respFile(++arg);
427
428 // Check that the response file is not empty (mmap'ing empty
429 // files can be problematic).
430 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000431 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000432
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000433 // Mmap the response file into memory.
434 OwningPtr<MemoryBuffer>
435 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000436
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000437 // If we could open the file, parse its contents, otherwise
438 // pass the @file option verbatim.
Mikhail Glushenkovc591ed142009-01-28 03:46:22 +0000439
440 // TODO: we should also support recursive loading of response files,
441 // since this is how gcc behaves. (From their man page: "The file may
442 // itself contain additional @file options; any such options will be
443 // processed recursively.")
444
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000445 if (respFilePtr != 0) {
446 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
447 continue;
448 }
449 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000450 }
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000451 newArgv.push_back(strdup(arg));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000452 }
453}
454
Dan Gohman61db06b2007-10-09 16:04:57 +0000455void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000456 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457 // Process all registered options.
Chris Lattner3d211b22009-09-20 06:18:38 +0000458 SmallVector<Option*, 4> PositionalOpts;
459 SmallVector<Option*, 4> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +0000460 StringMap<Option*> Opts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000461 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000462
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 assert((!Opts.empty() || !PositionalOpts.empty()) &&
464 "No options specified!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000465
466 // Expand response files.
467 std::vector<char*> newArgv;
468 if (ReadResponseFiles) {
469 newArgv.push_back(strdup(argv[0]));
470 ExpandResponseFiles(argc, argv, newArgv);
471 argv = &newArgv[0];
Evan Cheng591bfc82008-05-05 18:30:58 +0000472 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000473 }
474
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 // Copy the program name into ProgName, making sure not to overflow it.
476 std::string ProgName = sys::Path(argv[0]).getLast();
477 if (ProgName.size() > 79) ProgName.resize(79);
478 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000479
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 ProgramOverview = Overview;
481 bool ErrorParsing = false;
482
483 // Check out the positional arguments to collect information about them.
484 unsigned NumPositionalRequired = 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000485
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 // Determine whether or not there are an unlimited number of positionals
487 bool HasUnlimitedPositionals = false;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000488
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 Option *ConsumeAfterOpt = 0;
490 if (!PositionalOpts.empty()) {
491 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
492 assert(PositionalOpts.size() > 1 &&
493 "Cannot specify cl::ConsumeAfter without a positional argument!");
494 ConsumeAfterOpt = PositionalOpts[0];
495 }
496
497 // Calculate how many positional values are _required_.
498 bool UnboundedFound = false;
Evan Cheng591bfc82008-05-05 18:30:58 +0000499 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 i != e; ++i) {
501 Option *Opt = PositionalOpts[i];
502 if (RequiresValue(Opt))
503 ++NumPositionalRequired;
504 else if (ConsumeAfterOpt) {
505 // ConsumeAfter cannot be combined with "optional" positional options
506 // unless there is only one positional argument...
507 if (PositionalOpts.size() > 2)
508 ErrorParsing |=
Benjamin Kramer9164c672009-08-02 12:13:02 +0000509 Opt->error("error - this positional option will never be matched, "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 "because it does not Require a value, and a "
511 "cl::ConsumeAfter option is active!");
512 } else if (UnboundedFound && !Opt->ArgStr[0]) {
513 // This option does not "require" a value... Make sure this option is
514 // not specified after an option that eats all extra arguments, or this
515 // one will never get any!
516 //
Benjamin Kramer9164c672009-08-02 12:13:02 +0000517 ErrorParsing |= Opt->error("error - option can never match, because "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 "another positional argument will match an "
519 "unbounded number of values, and this option"
520 " does not require a value!");
521 }
522 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
523 }
524 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
525 }
526
527 // PositionalVals - A vector of "positional" arguments we accumulate into
Chris Lattner747e01e2009-09-20 00:07:40 +0000528 // the process at the end.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 //
Chris Lattner747e01e2009-09-20 00:07:40 +0000530 SmallVector<std::pair<StringRef,unsigned>, 4> PositionalVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531
532 // If the program has named positional arguments, and the name has been run
533 // across, keep track of which positional argument was named. Otherwise put
534 // the positional args into the PositionalVals list...
535 Option *ActivePositionalArg = 0;
536
537 // Loop over all of the arguments... processing them.
538 bool DashDashFound = false; // Have we read '--'?
539 for (int i = 1; i < argc; ++i) {
540 Option *Handler = 0;
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000541 StringRef Value;
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000542 StringRef ArgName = "";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543
544 // If the option list changed, this means that some command line
545 // option has just been registered or deregistered. This can occur in
546 // response to things like -load, etc. If this happens, rescan the options.
547 if (OptionListChanged) {
548 PositionalOpts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000549 SinkOpts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550 Opts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000551 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000552 OptionListChanged = false;
553 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000554
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 // Check to see if this is a positional argument. This argument is
556 // considered to be positional if it doesn't start with '-', if it is "-"
557 // itself, or if we have seen "--" already.
558 //
559 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
560 // Positional argument!
561 if (ActivePositionalArg) {
562 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
563 continue; // We are done!
Chris Lattner157229d2009-09-20 00:40:49 +0000564 }
565
566 if (!PositionalOpts.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 PositionalVals.push_back(std::make_pair(argv[i],i));
568
569 // All of the positional arguments have been fulfulled, give the rest to
570 // the consume after option... if it's specified...
571 //
572 if (PositionalVals.size() >= NumPositionalRequired &&
573 ConsumeAfterOpt != 0) {
574 for (++i; i < argc; ++i)
575 PositionalVals.push_back(std::make_pair(argv[i],i));
576 break; // Handle outside of the argument processing loop...
577 }
578
579 // Delay processing positional arguments until the end...
580 continue;
581 }
582 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
583 !DashDashFound) {
584 DashDashFound = true; // This is the mythical "--"?
585 continue; // Don't try to process it as an argument itself.
586 } else if (ActivePositionalArg &&
587 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
588 // If there is a positional argument eating options, check to see if this
589 // option is another positional argument. If so, treat it as an argument,
590 // otherwise feed it to the eating positional.
591 ArgName = argv[i]+1;
Chris Lattnerd516d022009-09-20 05:03:30 +0000592 // Eat leading dashes.
593 while (!ArgName.empty() && ArgName[0] == '-')
594 ArgName = ArgName.substr(1);
595
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596 Handler = LookupOption(ArgName, Value, Opts);
597 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
598 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
599 continue; // We are done!
600 }
601
Chris Lattner157229d2009-09-20 00:40:49 +0000602 } else { // We start with a '-', must be an argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603 ArgName = argv[i]+1;
Chris Lattnerd516d022009-09-20 05:03:30 +0000604 // Eat leading dashes.
605 while (!ArgName.empty() && ArgName[0] == '-')
606 ArgName = ArgName.substr(1);
607
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 Handler = LookupOption(ArgName, Value, Opts);
609
610 // Check to see if this "option" is really a prefixed or grouped argument.
Chris Lattnerd516d022009-09-20 05:03:30 +0000611 if (Handler == 0)
612 Handler = HandlePrefixedOrGroupedOption(ArgName, Value,
613 ErrorParsing, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614 }
615
616 if (Handler == 0) {
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000617 if (SinkOpts.empty()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000618 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000619 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
620 ErrorParsing = true;
621 } else {
Chris Lattner3d211b22009-09-20 06:18:38 +0000622 for (SmallVectorImpl<Option*>::iterator I = SinkOpts.begin(),
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000623 E = SinkOpts.end(); I != E ; ++I)
624 (*I)->addOccurrence(i, "", argv[i]);
625 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000626 continue;
627 }
628
629 // Check to see if this option accepts a comma separated list of values. If
Chris Lattner4627c682009-09-20 01:49:31 +0000630 // it does, we have to split up the value into multiple values.
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000631 if (Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner4627c682009-09-20 01:49:31 +0000632 StringRef Val(Value);
633 StringRef::size_type Pos = Val.find(',');
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634
Chris Lattner4627c682009-09-20 01:49:31 +0000635 while (Pos != StringRef::npos) {
636 // Process the portion before the comma.
637 ErrorParsing |= ProvideOption(Handler, ArgName, Val.substr(0, Pos),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638 argc, argv, i);
Chris Lattner4627c682009-09-20 01:49:31 +0000639 // Erase the portion before the comma, AND the comma.
640 Val = Val.substr(Pos+1);
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000641 Value.substr(Pos+1); // Increment the original value pointer as well.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000642
Chris Lattner4627c682009-09-20 01:49:31 +0000643 // Check for another comma.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000644 Pos = Val.find(',');
645 }
Nicolas Geoffray870fd042009-10-06 19:55:53 +0000646 Value = Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647 }
648
649 // If this is a named positional argument, just remember that it is the
650 // active one...
651 if (Handler->getFormattingFlag() == cl::Positional)
652 ActivePositionalArg = Handler;
Chris Lattner4627c682009-09-20 01:49:31 +0000653 else
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000654 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 }
656
657 // Check and handle positional arguments now...
658 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000659 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660 << ": Not enough positional command line arguments specified!\n"
661 << "Must specify at least " << NumPositionalRequired
662 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000663
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000664 ErrorParsing = true;
665 } else if (!HasUnlimitedPositionals
666 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000667 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668 << ": Too many positional arguments specified!\n"
669 << "Can specify at most " << PositionalOpts.size()
670 << " positional arguments: See: " << argv[0] << " --help\n";
671 ErrorParsing = true;
672
673 } else if (ConsumeAfterOpt == 0) {
Chris Lattnerd516d022009-09-20 05:03:30 +0000674 // Positional args have already been handled if ConsumeAfter is specified.
Evan Cheng591bfc82008-05-05 18:30:58 +0000675 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
676 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 if (RequiresValue(PositionalOpts[i])) {
678 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
679 PositionalVals[ValNo].second);
680 ValNo++;
681 --NumPositionalRequired; // We fulfilled our duty...
682 }
683
684 // If we _can_ give this option more arguments, do so now, as long as we
685 // do not give it values that others need. 'Done' controls whether the
686 // option even _WANTS_ any more.
687 //
688 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
689 while (NumVals-ValNo > NumPositionalRequired && !Done) {
690 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
691 case cl::Optional:
692 Done = true; // Optional arguments want _at most_ one value
693 // FALL THROUGH
694 case cl::ZeroOrMore: // Zero or more will take all they can get...
695 case cl::OneOrMore: // One or more will take all they can get...
696 ProvidePositionalOption(PositionalOpts[i],
697 PositionalVals[ValNo].first,
698 PositionalVals[ValNo].second);
699 ValNo++;
700 break;
701 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000702 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000703 "positional argument processing!");
704 }
705 }
706 }
707 } else {
708 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
709 unsigned ValNo = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +0000710 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 if (RequiresValue(PositionalOpts[j])) {
712 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
713 PositionalVals[ValNo].first,
714 PositionalVals[ValNo].second);
715 ValNo++;
716 }
717
718 // Handle the case where there is just one positional option, and it's
719 // optional. In this case, we want to give JUST THE FIRST option to the
720 // positional option and keep the rest for the consume after. The above
721 // loop would have assigned no values to positional options in this case.
722 //
723 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
724 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
725 PositionalVals[ValNo].first,
726 PositionalVals[ValNo].second);
727 ValNo++;
728 }
729
730 // Handle over all of the rest of the arguments to the
731 // cl::ConsumeAfter command line option...
732 for (; ValNo != PositionalVals.size(); ++ValNo)
733 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
734 PositionalVals[ValNo].first,
735 PositionalVals[ValNo].second);
736 }
737
738 // Loop over args and make sure all required args are specified!
Benjamin Kramer48086602009-09-19 10:01:45 +0000739 for (StringMap<Option*>::iterator I = Opts.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740 E = Opts.end(); I != E; ++I) {
741 switch (I->second->getNumOccurrencesFlag()) {
742 case Required:
743 case OneOrMore:
744 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000745 I->second->error("must be specified at least once!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746 ErrorParsing = true;
747 }
748 // Fall through
749 default:
750 break;
751 }
752 }
753
754 // Free all of the memory allocated to the map. Command line options may only
755 // be processed once!
756 Opts.clear();
757 PositionalOpts.clear();
758 MoreHelp->clear();
759
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000760 // Free the memory allocated by ExpandResponseFiles.
761 if (ReadResponseFiles) {
762 // Free all the strdup()ed strings.
763 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
764 i != e; ++i)
Chris Lattnera77caae2009-09-20 07:16:54 +0000765 free(*i);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000766 }
767
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768 // If we had an error processing our arguments, don't let the program execute
769 if (ErrorParsing) exit(1);
770}
771
772//===----------------------------------------------------------------------===//
773// Option Base class implementation
774//
775
Chris Lattner157229d2009-09-20 00:40:49 +0000776bool Option::error(const Twine &Message, StringRef ArgName) {
777 if (ArgName.data() == 0) ArgName = ArgStr;
778 if (ArgName.empty())
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000779 errs() << HelpStr; // Be nice for positional arguments
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000780 else
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000781 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000782
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000783 errs() << " option: " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 return true;
785}
786
Chris Lattner157229d2009-09-20 00:40:49 +0000787bool Option::addOccurrence(unsigned pos, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000788 StringRef Value, bool MultiArg) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000789 if (!MultiArg)
790 NumOccurrences++; // Increment the number of times we have been seen
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000791
792 switch (getNumOccurrencesFlag()) {
793 case Optional:
794 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000795 return error("may only occur zero or one times!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796 break;
797 case Required:
798 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000799 return error("must occur exactly one time!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800 // Fall through
801 case OneOrMore:
802 case ZeroOrMore:
803 case ConsumeAfter: break;
Benjamin Kramer9164c672009-08-02 12:13:02 +0000804 default: return error("bad num occurrences flag value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 }
806
807 return handleOccurrence(pos, ArgName, Value);
808}
809
810
811// getValueStr - Get the value description string, using "DefaultMsg" if nothing
812// has been specified yet.
813//
814static const char *getValueStr(const Option &O, const char *DefaultMsg) {
815 if (O.ValueStr[0] == 0) return DefaultMsg;
816 return O.ValueStr;
817}
818
819//===----------------------------------------------------------------------===//
820// cl::alias class implementation
821//
822
823// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000824size_t alias::getOptionWidth() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000825 return std::strlen(ArgStr)+6;
826}
827
828// Print out the option for the alias.
Evan Cheng591bfc82008-05-05 18:30:58 +0000829void alias::printOptionInfo(size_t GlobalWidth) const {
830 size_t L = std::strlen(ArgStr);
Chris Lattnerd516d022009-09-20 05:03:30 +0000831 errs() << " -" << ArgStr;
832 errs().indent(GlobalWidth-L-6) << " - " << HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000833}
834
835
836
837//===----------------------------------------------------------------------===//
838// Parser Implementation code...
839//
840
841// basic_parser implementation
842//
843
844// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000845size_t basic_parser_impl::getOptionWidth(const Option &O) const {
846 size_t Len = std::strlen(O.ArgStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 if (const char *ValName = getValueName())
848 Len += std::strlen(getValueStr(O, ValName))+3;
849
850 return Len + 6;
851}
852
853// printOptionInfo - Print out information about this option. The
854// to-be-maintained width is specified.
855//
856void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000857 size_t GlobalWidth) const {
Chris Lattner5febcae2009-08-23 08:43:55 +0000858 outs() << " -" << O.ArgStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000859
860 if (const char *ValName = getValueName())
Chris Lattner5febcae2009-08-23 08:43:55 +0000861 outs() << "=<" << getValueStr(O, ValName) << '>';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862
Chris Lattner5febcae2009-08-23 08:43:55 +0000863 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000864}
865
866
867
868
869// parser<bool> implementation
870//
Chris Lattner157229d2009-09-20 00:40:49 +0000871bool parser<bool>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000872 StringRef Arg, bool &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000873 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
874 Arg == "1") {
875 Value = true;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000876 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000878
879 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
880 Value = false;
881 return false;
882 }
883 return O.error("'" + Arg +
884 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885}
886
887// parser<boolOrDefault> implementation
888//
Chris Lattner157229d2009-09-20 00:40:49 +0000889bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000890 StringRef Arg, boolOrDefault &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
892 Arg == "1") {
893 Value = BOU_TRUE;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000894 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000895 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000896 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
897 Value = BOU_FALSE;
898 return false;
899 }
900
901 return O.error("'" + Arg +
902 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000903}
904
905// parser<int> implementation
906//
Chris Lattner157229d2009-09-20 00:40:49 +0000907bool parser<int>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000908 StringRef Arg, int &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000909 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000910 return O.error("'" + Arg + "' value invalid for integer argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 return false;
912}
913
914// parser<unsigned> implementation
915//
Chris Lattner157229d2009-09-20 00:40:49 +0000916bool parser<unsigned>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000917 StringRef Arg, unsigned &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000918
919 if (Arg.getAsInteger(0, Value))
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) {
Chris Lattner717f7732009-09-19 23:59:02 +0000927 SmallString<32> TmpStr(Arg.begin(), Arg.end());
928 const char *ArgStart = TmpStr.c_str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000929 char *End;
930 Value = strtod(ArgStart, &End);
931 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000932 return O.error("'" + Arg + "' value invalid for floating point argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933 return false;
934}
935
Chris Lattner157229d2009-09-20 00:40:49 +0000936bool parser<double>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000937 StringRef Arg, double &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 return parseDouble(O, Arg, Val);
939}
940
Chris Lattner157229d2009-09-20 00:40:49 +0000941bool parser<float>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000942 StringRef Arg, float &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000943 double dVal;
944 if (parseDouble(O, Arg, dVal))
945 return true;
946 Val = (float)dVal;
947 return false;
948}
949
950
951
952// generic_parser_base implementation
953//
954
955// findOption - Return the option number corresponding to the specified
956// argument string. If the option is not found, getNumOptions() is returned.
957//
958unsigned generic_parser_base::findOption(const char *Name) {
Benjamin Kramer48086602009-09-19 10:01:45 +0000959 unsigned e = getNumOptions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960
Benjamin Kramer48086602009-09-19 10:01:45 +0000961 for (unsigned i = 0; i != e; ++i) {
962 if (strcmp(getOption(i), Name) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000963 return i;
Benjamin Kramer48086602009-09-19 10:01:45 +0000964 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000965 return e;
966}
967
968
969// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000970size_t generic_parser_base::getOptionWidth(const Option &O) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000972 size_t Size = std::strlen(O.ArgStr)+6;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000974 Size = std::max(Size, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 return Size;
976 } else {
Evan Cheng591bfc82008-05-05 18:30:58 +0000977 size_t BaseSize = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000979 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 return BaseSize;
981 }
982}
983
984// printOptionInfo - Print out information about this option. The
985// to-be-maintained width is specified.
986//
987void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000988 size_t GlobalWidth) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000990 size_t L = std::strlen(O.ArgStr);
Chris Lattnerd516d022009-09-20 05:03:30 +0000991 outs() << " -" << O.ArgStr;
992 outs().indent(GlobalWidth-L-6) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000993
994 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000995 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattnerd516d022009-09-20 05:03:30 +0000996 outs() << " =" << getOption(i);
997 outs().indent(NumSpaces) << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998 }
999 } else {
1000 if (O.HelpStr[0])
Chris Lattnerd516d022009-09-20 05:03:30 +00001001 outs() << " " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001002 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +00001003 size_t L = std::strlen(getOption(i));
Chris Lattnerd516d022009-09-20 05:03:30 +00001004 outs() << " -" << getOption(i);
1005 outs().indent(GlobalWidth-L-8) << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006 }
1007 }
1008}
1009
1010
1011//===----------------------------------------------------------------------===//
1012// --help and --help-hidden option implementation
1013//
1014
Chris Lattner0d9aff42009-09-20 05:37:24 +00001015static int OptNameCompare(const void *LHS, const void *RHS) {
1016 typedef std::pair<const char *, Option*> pair_ty;
1017
1018 return strcmp(((pair_ty*)LHS)->first, ((pair_ty*)RHS)->first);
1019}
1020
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021namespace {
1022
1023class HelpPrinter {
Evan Cheng591bfc82008-05-05 18:30:58 +00001024 size_t MaxArgLen;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001025 const Option *EmptyArg;
1026 const bool ShowHidden;
1027
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028public:
Dan Gohman40bd38e2008-03-25 22:06:05 +00001029 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 EmptyArg = 0;
1031 }
1032
1033 void operator=(bool Value) {
1034 if (Value == false) return;
1035
1036 // Get all the options.
Chris Lattner3d211b22009-09-20 06:18:38 +00001037 SmallVector<Option*, 4> PositionalOpts;
1038 SmallVector<Option*, 4> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +00001039 StringMap<Option*> OptMap;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001040 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001041
Chris Lattner97be18f2009-09-20 05:12:14 +00001042 // Copy Options into a vector so we can sort them as we like.
Chris Lattner0d9aff42009-09-20 05:37:24 +00001043 SmallVector<std::pair<const char *, Option*>, 128> Opts;
Chris Lattnerc8240962009-09-20 05:22:52 +00001044 SmallPtrSet<Option*, 128> OptionSet; // Duplicate option detection.
1045
Benjamin Kramer48086602009-09-19 10:01:45 +00001046 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1047 I != E; ++I) {
Chris Lattner34bbc242009-09-20 05:18:28 +00001048 // Ignore really-hidden options.
1049 if (I->second->getOptionHiddenFlag() == ReallyHidden)
1050 continue;
1051
1052 // Unless showhidden is set, ignore hidden flags.
1053 if (I->second->getOptionHiddenFlag() == Hidden && !ShowHidden)
1054 continue;
1055
Chris Lattnerc8240962009-09-20 05:22:52 +00001056 // If we've already seen this option, don't add it to the list again.
Chris Lattner0d9aff42009-09-20 05:37:24 +00001057 if (!OptionSet.insert(I->second))
Chris Lattnerc8240962009-09-20 05:22:52 +00001058 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059
Chris Lattner0d9aff42009-09-20 05:37:24 +00001060 Opts.push_back(std::pair<const char *, Option*>(I->getKey().data(),
1061 I->second));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 }
Chris Lattner0d9aff42009-09-20 05:37:24 +00001063
1064 // Sort the options list alphabetically.
1065 qsort(Opts.data(), Opts.size(), sizeof(Opts[0]), OptNameCompare);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066
1067 if (ProgramOverview)
Chris Lattner5febcae2009-08-23 08:43:55 +00001068 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001069
Chris Lattner5febcae2009-08-23 08:43:55 +00001070 outs() << "USAGE: " << ProgramName << " [options]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071
1072 // Print out the positional options.
1073 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001074 if (!PositionalOpts.empty() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1076 CAOpt = PositionalOpts[0];
1077
Evan Cheng591bfc82008-05-05 18:30:58 +00001078 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 if (PositionalOpts[i]->ArgStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001080 outs() << " --" << PositionalOpts[i]->ArgStr;
1081 outs() << " " << PositionalOpts[i]->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001082 }
1083
1084 // Print the consume after option info if it exists...
Chris Lattner5febcae2009-08-23 08:43:55 +00001085 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086
Chris Lattner5febcae2009-08-23 08:43:55 +00001087 outs() << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088
1089 // Compute the maximum argument length...
1090 MaxArgLen = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +00001091 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner0d9aff42009-09-20 05:37:24 +00001092 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001093
Chris Lattner5febcae2009-08-23 08:43:55 +00001094 outs() << "OPTIONS:\n";
Evan Cheng591bfc82008-05-05 18:30:58 +00001095 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner0d9aff42009-09-20 05:37:24 +00001096 Opts[i].second->printOptionInfo(MaxArgLen);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001097
1098 // Print any extra help the user has declared.
1099 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1100 E = MoreHelp->end(); I != E; ++I)
Chris Lattner5febcae2009-08-23 08:43:55 +00001101 outs() << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001102 MoreHelp->clear();
1103
1104 // Halt the program since help information was printed
1105 exit(1);
1106 }
1107};
1108} // End anonymous namespace
1109
1110// Define the two HelpPrinter instances that are used to print out help, or
1111// help-hidden...
1112//
1113static HelpPrinter NormalPrinter(false);
1114static HelpPrinter HiddenPrinter(true);
1115
1116static cl::opt<HelpPrinter, true, parser<bool> >
1117HOp("help", cl::desc("Display available options (--help-hidden for more)"),
1118 cl::location(NormalPrinter), cl::ValueDisallowed);
1119
1120static cl::opt<HelpPrinter, true, parser<bool> >
1121HHOp("help-hidden", cl::desc("Display all available options"),
1122 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1123
1124static void (*OverrideVersionPrinter)() = 0;
1125
Chris Lattner8748d232009-09-20 05:53:47 +00001126static int TargetArraySortFn(const void *LHS, const void *RHS) {
1127 typedef std::pair<const char *, const Target*> pair_ty;
1128 return strcmp(((const pair_ty*)LHS)->first, ((const pair_ty*)RHS)->first);
1129}
1130
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131namespace {
1132class VersionPrinter {
1133public:
1134 void print() {
Chris Lattner3d211b22009-09-20 06:18:38 +00001135 raw_ostream &OS = outs();
1136 OS << "Low Level Virtual Machine (http://llvm.org/):\n"
1137 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138#ifdef LLVM_VERSION_INFO
Chris Lattner3d211b22009-09-20 06:18:38 +00001139 OS << LLVM_VERSION_INFO;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001140#endif
Chris Lattner3d211b22009-09-20 06:18:38 +00001141 OS << "\n ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142#ifndef __OPTIMIZE__
Chris Lattner3d211b22009-09-20 06:18:38 +00001143 OS << "DEBUG build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144#else
Chris Lattner3d211b22009-09-20 06:18:38 +00001145 OS << "Optimized build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001146#endif
1147#ifndef NDEBUG
Chris Lattner3d211b22009-09-20 06:18:38 +00001148 OS << " with assertions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001149#endif
Chris Lattner3d211b22009-09-20 06:18:38 +00001150 OS << ".\n"
1151 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
1152 << " Host: " << sys::getHostTriple() << '\n'
1153 << '\n'
1154 << " Registered Targets:\n";
Daniel Dunbar9b3edb62009-07-16 02:06:09 +00001155
Chris Lattner8748d232009-09-20 05:53:47 +00001156 std::vector<std::pair<const char *, const Target*> > Targets;
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001157 size_t Width = 0;
1158 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1159 ie = TargetRegistry::end(); it != ie; ++it) {
1160 Targets.push_back(std::make_pair(it->getName(), &*it));
Chris Lattner8748d232009-09-20 05:53:47 +00001161 Width = std::max(Width, strlen(Targets.back().first));
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001162 }
Chris Lattner8748d232009-09-20 05:53:47 +00001163 if (!Targets.empty())
1164 qsort(&Targets[0], Targets.size(), sizeof(Targets[0]),
1165 TargetArraySortFn);
Daniel Dunbar80329932009-07-26 05:09:50 +00001166
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001167 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
Chris Lattner3d211b22009-09-20 06:18:38 +00001168 OS << " " << Targets[i].first;
1169 OS.indent(Width - strlen(Targets[i].first)) << " - "
Chris Lattnerd516d022009-09-20 05:03:30 +00001170 << Targets[i].second->getShortDescription() << '\n';
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001171 }
1172 if (Targets.empty())
Chris Lattner3d211b22009-09-20 06:18:38 +00001173 OS << " (none)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001174 }
1175 void operator=(bool OptionWasSpecified) {
Chris Lattnera8165362009-09-20 05:48:01 +00001176 if (!OptionWasSpecified) return;
1177
1178 if (OverrideVersionPrinter == 0) {
1179 print();
1180 exit(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001181 }
Chris Lattnera8165362009-09-20 05:48:01 +00001182 (*OverrideVersionPrinter)();
1183 exit(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001184 }
1185};
1186} // End anonymous namespace
1187
1188
1189// Define the --version option that prints out the LLVM version for the tool
1190static VersionPrinter VersionPrinterInstance;
1191
1192static cl::opt<VersionPrinter, true, parser<bool> >
1193VersOp("version", cl::desc("Display the version of this program"),
1194 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1195
1196// Utility function for printing the help message.
1197void cl::PrintHelpMessage() {
1198 // This looks weird, but it actually prints the help message. The
1199 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1200 // its operator= is invoked. That's because the "normal" usages of the
1201 // help printer is to be assigned true/false depending on whether the
1202 // --help option was given or not. Since we're circumventing that we have
1203 // to make it look like --help was given, so we assign true.
1204 NormalPrinter = true;
1205}
1206
1207/// Utility function for printing version number.
1208void cl::PrintVersionMessage() {
1209 VersionPrinterInstance.print();
1210}
1211
1212void cl::SetVersionPrinter(void (*func)()) {
1213 OverrideVersionPrinter = func;
1214}