blob: f44ed41aa3bef5b028b953bacdcb89f63c36733c [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.
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000154static Option *LookupOption(const char *&Arg, StringRef &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
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000162 // If we have an equals sign, remember the value.
163 if (*ArgEnd == '=')
164 Value = ArgEnd+1;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000165
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
Chris Lattner4627c682009-09-20 01:49:31 +0000174/// ProvideOption - For Value, this differentiates between an empty value ("")
175/// and a null value (StringRef()). The later is accepted for arguments that
176/// don't allow a value (-foo) the former is rejected (-foo=).
Chris Lattner157229d2009-09-20 00:40:49 +0000177static inline bool ProvideOption(Option *Handler, StringRef ArgName,
Chris Lattner4627c682009-09-20 01:49:31 +0000178 StringRef Value, int argc, char **argv,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 int &i) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000180 // Is this a multi-argument option?
181 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
182
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 // Enforce value requirements
184 switch (Handler->getValueExpectedFlag()) {
185 case ValueRequired:
Chris Lattner4627c682009-09-20 01:49:31 +0000186 if (Value.data() == 0) { // No value specified?
Chris Lattner747e01e2009-09-20 00:07:40 +0000187 if (i+1 >= argc)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000188 return Handler->error("requires a value!");
Chris Lattner747e01e2009-09-20 00:07:40 +0000189 // Steal the next argument, like for '-o filename'
190 Value = argv[++i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 }
192 break;
193 case ValueDisallowed:
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000194 if (NumAdditionalVals > 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000195 return Handler->error("multi-valued option specified"
Chris Lattner747e01e2009-09-20 00:07:40 +0000196 " with ValueDisallowed modifier!");
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000197
Chris Lattner4627c682009-09-20 01:49:31 +0000198 if (Value.data())
Benjamin Kramer9164c672009-08-02 12:13:02 +0000199 return Handler->error("does not allow a value! '" +
Chris Lattner47d05cb2009-09-19 18:55:05 +0000200 Twine(Value) + "' specified.");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 break;
202 case ValueOptional:
203 break;
Chris Lattner747e01e2009-09-20 00:07:40 +0000204
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 default:
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000206 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 << ": Bad ValueMask flag! CommandLine usage error:"
208 << Handler->getValueExpectedFlag() << "\n";
Edwin Törökbd448e32009-07-14 16:55:14 +0000209 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210 }
211
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000212 // If this isn't a multi-arg option, just run the handler.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000213 if (NumAdditionalVals == 0)
Chris Lattner4627c682009-09-20 01:49:31 +0000214 return Handler->addOccurrence(i, ArgName, Value);
Chris Lattner47d05cb2009-09-19 18:55:05 +0000215
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000216 // If it is, run the handle several times.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000217 bool MultiArg = false;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000218
Chris Lattner4627c682009-09-20 01:49:31 +0000219 if (Value.data()) {
Chris Lattner47d05cb2009-09-19 18:55:05 +0000220 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
221 return true;
222 --NumAdditionalVals;
223 MultiArg = true;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000224 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000225
226 while (NumAdditionalVals > 0) {
Chris Lattner47d05cb2009-09-19 18:55:05 +0000227 if (i+1 >= argc)
228 return Handler->error("not enough values!");
229 Value = argv[++i];
230
231 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
232 return true;
233 MultiArg = true;
234 --NumAdditionalVals;
235 }
236 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237}
238
Chris Lattner747e01e2009-09-20 00:07:40 +0000239static bool ProvidePositionalOption(Option *Handler, StringRef Arg, int i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 int Dummy = i;
Chris Lattner4627c682009-09-20 01:49:31 +0000241 return ProvideOption(Handler, Handler->ArgStr, Arg, 0, 0, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242}
243
244
245// Option predicates...
246static inline bool isGrouping(const Option *O) {
247 return O->getFormattingFlag() == cl::Grouping;
248}
249static inline bool isPrefixedOrGrouping(const Option *O) {
250 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
251}
252
253// getOptionPred - Check to see if there are any options that satisfy the
254// specified predicate with names that are the prefixes in Name. This is
255// checked by progressively stripping characters off of the name, checking to
256// see if there options that satisfy the predicate. If we find one, return it,
257// otherwise return null.
258//
Chris Lattner157229d2009-09-20 00:40:49 +0000259static Option *getOptionPred(StringRef Name, size_t &Length,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260 bool (*Pred)(const Option*),
Benjamin Kramer48086602009-09-19 10:01:45 +0000261 StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262
Benjamin Kramer48086602009-09-19 10:01:45 +0000263 StringMap<Option*>::iterator OMI = OptionsMap.find(Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner157229d2009-09-20 00:40:49 +0000265 Length = Name.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266 return OMI->second;
267 }
268
269 if (Name.size() == 1) return 0;
270 do {
Chris Lattner157229d2009-09-20 00:40:49 +0000271 Name = Name.substr(0, Name.size()-1); // Chop off the last character.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272 OMI = OptionsMap.find(Name);
273
274 // Loop while we haven't found an option and Name still has at least two
275 // characters in it (so that the next iteration will not be the empty
Chris Lattner157229d2009-09-20 00:40:49 +0000276 // string.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
278
279 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner157229d2009-09-20 00:40:49 +0000280 Length = Name.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 return OMI->second; // Found one!
282 }
283 return 0; // No option found!
284}
285
286static bool RequiresValue(const Option *O) {
287 return O->getNumOccurrencesFlag() == cl::Required ||
288 O->getNumOccurrencesFlag() == cl::OneOrMore;
289}
290
291static bool EatsUnboundedNumberOfValues(const Option *O) {
292 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
293 O->getNumOccurrencesFlag() == cl::OneOrMore;
294}
295
296/// ParseCStringVector - Break INPUT up wherever one or more
297/// whitespace characters are found, and store the resulting tokens in
298/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
Chris Lattner2ee921e2009-09-20 01:11:23 +0000299/// using strdup(), so it is the caller's responsibility to free()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300/// them later.
301///
Chris Lattner17e57092009-09-20 01:33:46 +0000302static void ParseCStringVector(std::vector<char *> &OutputVector,
303 const char *Input) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000304 // Characters which will be treated as token separators:
Chris Lattner17e57092009-09-20 01:33:46 +0000305 StringRef Delims = " \v\f\t\r\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306
Chris Lattner17e57092009-09-20 01:33:46 +0000307 StringRef WorkStr(Input);
308 while (!WorkStr.empty()) {
309 // If the first character is a delimiter, strip them off.
310 if (Delims.find(WorkStr[0]) != StringRef::npos) {
311 size_t Pos = WorkStr.find_first_not_of(Delims);
312 if (Pos == StringRef::npos) Pos = WorkStr.size();
313 WorkStr = WorkStr.substr(Pos);
314 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315 }
Chris Lattner17e57092009-09-20 01:33:46 +0000316
317 // Find position of first delimiter.
318 size_t Pos = WorkStr.find_first_of(Delims);
319 if (Pos == StringRef::npos) Pos = WorkStr.size();
320
321 // Everything from 0 to Pos is the next word to copy.
322 char *NewStr = (char*)malloc(Pos+1);
323 memcpy(NewStr, WorkStr.data(), Pos);
324 NewStr[Pos] = 0;
325 OutputVector.push_back(NewStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000327}
328
329/// ParseEnvironmentOptions - An alternative entry point to the
330/// CommandLine library, which allows you to read the program's name
331/// from the caller (as PROGNAME) and its command-line arguments from
332/// an environment variable (whose name is given in ENVVAR).
333///
334void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000335 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000336 // Check args.
337 assert(progName && "Program name not specified");
338 assert(envVar && "Environment variable name missing");
339
340 // Get the environment variable they want us to parse options out of.
341 const char *envValue = getenv(envVar);
342 if (!envValue)
343 return;
344
345 // Get program's "name", which we wouldn't know without the caller
346 // telling us.
347 std::vector<char*> newArgv;
348 newArgv.push_back(strdup(progName));
349
350 // Parse the value of the environment variable into a "command line"
351 // and hand it off to ParseCommandLineOptions().
352 ParseCStringVector(newArgv, envValue);
Evan Cheng591bfc82008-05-05 18:30:58 +0000353 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000354 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355
356 // Free all the strdup()ed strings.
357 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
358 i != e; ++i)
Chris Lattner2ee921e2009-09-20 01:11:23 +0000359 free(*i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360}
361
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000362
363/// ExpandResponseFiles - Copy the contents of argv into newArgv,
364/// substituting the contents of the response files for the arguments
365/// of type @file.
366static void ExpandResponseFiles(int argc, char** argv,
367 std::vector<char*>& newArgv) {
368 for (int i = 1; i != argc; ++i) {
369 char* arg = argv[i];
370
371 if (arg[0] == '@') {
372
373 sys::PathWithStatus respFile(++arg);
374
375 // Check that the response file is not empty (mmap'ing empty
376 // files can be problematic).
377 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000378 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000379
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000380 // Mmap the response file into memory.
381 OwningPtr<MemoryBuffer>
382 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000383
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000384 // If we could open the file, parse its contents, otherwise
385 // pass the @file option verbatim.
Mikhail Glushenkovc591ed142009-01-28 03:46:22 +0000386
387 // TODO: we should also support recursive loading of response files,
388 // since this is how gcc behaves. (From their man page: "The file may
389 // itself contain additional @file options; any such options will be
390 // processed recursively.")
391
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000392 if (respFilePtr != 0) {
393 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
394 continue;
395 }
396 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000397 }
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000398 newArgv.push_back(strdup(arg));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000399 }
400}
401
Dan Gohman61db06b2007-10-09 16:04:57 +0000402void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000403 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404 // Process all registered options.
405 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000406 std::vector<Option*> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +0000407 StringMap<Option*> Opts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000408 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000409
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410 assert((!Opts.empty() || !PositionalOpts.empty()) &&
411 "No options specified!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000412
413 // Expand response files.
414 std::vector<char*> newArgv;
415 if (ReadResponseFiles) {
416 newArgv.push_back(strdup(argv[0]));
417 ExpandResponseFiles(argc, argv, newArgv);
418 argv = &newArgv[0];
Evan Cheng591bfc82008-05-05 18:30:58 +0000419 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000420 }
421
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 // Copy the program name into ProgName, making sure not to overflow it.
423 std::string ProgName = sys::Path(argv[0]).getLast();
424 if (ProgName.size() > 79) ProgName.resize(79);
425 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000426
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 ProgramOverview = Overview;
428 bool ErrorParsing = false;
429
430 // Check out the positional arguments to collect information about them.
431 unsigned NumPositionalRequired = 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000432
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 // Determine whether or not there are an unlimited number of positionals
434 bool HasUnlimitedPositionals = false;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000435
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436 Option *ConsumeAfterOpt = 0;
437 if (!PositionalOpts.empty()) {
438 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
439 assert(PositionalOpts.size() > 1 &&
440 "Cannot specify cl::ConsumeAfter without a positional argument!");
441 ConsumeAfterOpt = PositionalOpts[0];
442 }
443
444 // Calculate how many positional values are _required_.
445 bool UnboundedFound = false;
Evan Cheng591bfc82008-05-05 18:30:58 +0000446 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 i != e; ++i) {
448 Option *Opt = PositionalOpts[i];
449 if (RequiresValue(Opt))
450 ++NumPositionalRequired;
451 else if (ConsumeAfterOpt) {
452 // ConsumeAfter cannot be combined with "optional" positional options
453 // unless there is only one positional argument...
454 if (PositionalOpts.size() > 2)
455 ErrorParsing |=
Benjamin Kramer9164c672009-08-02 12:13:02 +0000456 Opt->error("error - this positional option will never be matched, "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457 "because it does not Require a value, and a "
458 "cl::ConsumeAfter option is active!");
459 } else if (UnboundedFound && !Opt->ArgStr[0]) {
460 // This option does not "require" a value... Make sure this option is
461 // not specified after an option that eats all extra arguments, or this
462 // one will never get any!
463 //
Benjamin Kramer9164c672009-08-02 12:13:02 +0000464 ErrorParsing |= Opt->error("error - option can never match, because "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465 "another positional argument will match an "
466 "unbounded number of values, and this option"
467 " does not require a value!");
468 }
469 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
470 }
471 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
472 }
473
474 // PositionalVals - A vector of "positional" arguments we accumulate into
Chris Lattner747e01e2009-09-20 00:07:40 +0000475 // the process at the end.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000476 //
Chris Lattner747e01e2009-09-20 00:07:40 +0000477 SmallVector<std::pair<StringRef,unsigned>, 4> PositionalVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478
479 // If the program has named positional arguments, and the name has been run
480 // across, keep track of which positional argument was named. Otherwise put
481 // the positional args into the PositionalVals list...
482 Option *ActivePositionalArg = 0;
483
484 // Loop over all of the arguments... processing them.
485 bool DashDashFound = false; // Have we read '--'?
486 for (int i = 1; i < argc; ++i) {
487 Option *Handler = 0;
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000488 StringRef Value;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 const char *ArgName = "";
490
491 // If the option list changed, this means that some command line
492 // option has just been registered or deregistered. This can occur in
493 // response to things like -load, etc. If this happens, rescan the options.
494 if (OptionListChanged) {
495 PositionalOpts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000496 SinkOpts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000497 Opts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000498 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 OptionListChanged = false;
500 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000501
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000502 // Check to see if this is a positional argument. This argument is
503 // considered to be positional if it doesn't start with '-', if it is "-"
504 // itself, or if we have seen "--" already.
505 //
506 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
507 // Positional argument!
508 if (ActivePositionalArg) {
509 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
510 continue; // We are done!
Chris Lattner157229d2009-09-20 00:40:49 +0000511 }
512
513 if (!PositionalOpts.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 PositionalVals.push_back(std::make_pair(argv[i],i));
515
516 // All of the positional arguments have been fulfulled, give the rest to
517 // the consume after option... if it's specified...
518 //
519 if (PositionalVals.size() >= NumPositionalRequired &&
520 ConsumeAfterOpt != 0) {
521 for (++i; i < argc; ++i)
522 PositionalVals.push_back(std::make_pair(argv[i],i));
523 break; // Handle outside of the argument processing loop...
524 }
525
526 // Delay processing positional arguments until the end...
527 continue;
528 }
529 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
530 !DashDashFound) {
531 DashDashFound = true; // This is the mythical "--"?
532 continue; // Don't try to process it as an argument itself.
533 } else if (ActivePositionalArg &&
534 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
535 // If there is a positional argument eating options, check to see if this
536 // option is another positional argument. If so, treat it as an argument,
537 // otherwise feed it to the eating positional.
538 ArgName = argv[i]+1;
539 Handler = LookupOption(ArgName, Value, Opts);
540 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
541 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
542 continue; // We are done!
543 }
544
Chris Lattner157229d2009-09-20 00:40:49 +0000545 } else { // We start with a '-', must be an argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 ArgName = argv[i]+1;
547 Handler = LookupOption(ArgName, Value, Opts);
548
549 // Check to see if this "option" is really a prefixed or grouped argument.
550 if (Handler == 0) {
Chris Lattner157229d2009-09-20 00:40:49 +0000551 StringRef RealName(ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000552 if (RealName.size() > 1) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000553 size_t Length = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
555 Opts);
556
557 // If the option is a prefixed option, then the value is simply the
558 // rest of the name... so fall through to later processing, by
559 // setting up the argument name flags and value fields.
560 //
561 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
562 Value = ArgName+Length;
Chris Lattner157229d2009-09-20 00:40:49 +0000563 assert(Opts.count(StringRef(ArgName, Length)) &&
564 Opts[StringRef(ArgName, Length)] == PGOpt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000565 Handler = PGOpt;
566 } else if (PGOpt) {
567 // This must be a grouped option... handle them now.
568 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
569
570 do {
Chris Lattner157229d2009-09-20 00:40:49 +0000571 // Move current arg name out of RealName into RealArgName.
572 StringRef RealArgName = RealName.substr(0, Length);
573 RealName = RealName.substr(Length);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574
575 // Because ValueRequired is an invalid flag for grouped arguments,
Chris Lattner157229d2009-09-20 00:40:49 +0000576 // we don't need to pass argc/argv in.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 //
578 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
579 "Option can not be cl::Grouping AND cl::ValueRequired!");
580 int Dummy;
Chris Lattner157229d2009-09-20 00:40:49 +0000581 ErrorParsing |= ProvideOption(PGOpt, RealArgName,
Chris Lattner4627c682009-09-20 01:49:31 +0000582 StringRef(), 0, 0, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583
Chris Lattner157229d2009-09-20 00:40:49 +0000584 // Get the next grouping option.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
586 } while (PGOpt && Length != RealName.size());
587
588 Handler = PGOpt; // Ate all of the options.
589 }
590 }
591 }
592 }
593
594 if (Handler == 0) {
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000595 if (SinkOpts.empty()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000596 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000597 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
598 ErrorParsing = true;
599 } else {
600 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
601 E = SinkOpts.end(); I != E ; ++I)
602 (*I)->addOccurrence(i, "", argv[i]);
603 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604 continue;
605 }
606
607 // Check to see if this option accepts a comma separated list of values. If
Chris Lattner4627c682009-09-20 01:49:31 +0000608 // it does, we have to split up the value into multiple values.
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000609 if (Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner4627c682009-09-20 01:49:31 +0000610 StringRef Val(Value);
611 StringRef::size_type Pos = Val.find(',');
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612
Chris Lattner4627c682009-09-20 01:49:31 +0000613 while (Pos != StringRef::npos) {
614 // Process the portion before the comma.
615 ErrorParsing |= ProvideOption(Handler, ArgName, Val.substr(0, Pos),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000616 argc, argv, i);
Chris Lattner4627c682009-09-20 01:49:31 +0000617 // Erase the portion before the comma, AND the comma.
618 Val = Val.substr(Pos+1);
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000619 Value.substr(Pos+1); // Increment the original value pointer as well.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620
Chris Lattner4627c682009-09-20 01:49:31 +0000621 // Check for another comma.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000622 Pos = Val.find(',');
623 }
624 }
625
626 // If this is a named positional argument, just remember that it is the
627 // active one...
628 if (Handler->getFormattingFlag() == cl::Positional)
629 ActivePositionalArg = Handler;
Chris Lattner4627c682009-09-20 01:49:31 +0000630 else
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000631 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632 }
633
634 // Check and handle positional arguments now...
635 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000636 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637 << ": Not enough positional command line arguments specified!\n"
638 << "Must specify at least " << NumPositionalRequired
639 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000640
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 ErrorParsing = true;
642 } else if (!HasUnlimitedPositionals
643 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000644 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645 << ": Too many positional arguments specified!\n"
646 << "Can specify at most " << PositionalOpts.size()
647 << " positional arguments: See: " << argv[0] << " --help\n";
648 ErrorParsing = true;
649
650 } else if (ConsumeAfterOpt == 0) {
651 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng591bfc82008-05-05 18:30:58 +0000652 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
653 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000654 if (RequiresValue(PositionalOpts[i])) {
655 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
656 PositionalVals[ValNo].second);
657 ValNo++;
658 --NumPositionalRequired; // We fulfilled our duty...
659 }
660
661 // If we _can_ give this option more arguments, do so now, as long as we
662 // do not give it values that others need. 'Done' controls whether the
663 // option even _WANTS_ any more.
664 //
665 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
666 while (NumVals-ValNo > NumPositionalRequired && !Done) {
667 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
668 case cl::Optional:
669 Done = true; // Optional arguments want _at most_ one value
670 // FALL THROUGH
671 case cl::ZeroOrMore: // Zero or more will take all they can get...
672 case cl::OneOrMore: // One or more will take all they can get...
673 ProvidePositionalOption(PositionalOpts[i],
674 PositionalVals[ValNo].first,
675 PositionalVals[ValNo].second);
676 ValNo++;
677 break;
678 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000679 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 "positional argument processing!");
681 }
682 }
683 }
684 } else {
685 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
686 unsigned ValNo = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +0000687 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688 if (RequiresValue(PositionalOpts[j])) {
689 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
690 PositionalVals[ValNo].first,
691 PositionalVals[ValNo].second);
692 ValNo++;
693 }
694
695 // Handle the case where there is just one positional option, and it's
696 // optional. In this case, we want to give JUST THE FIRST option to the
697 // positional option and keep the rest for the consume after. The above
698 // loop would have assigned no values to positional options in this case.
699 //
700 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
701 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
702 PositionalVals[ValNo].first,
703 PositionalVals[ValNo].second);
704 ValNo++;
705 }
706
707 // Handle over all of the rest of the arguments to the
708 // cl::ConsumeAfter command line option...
709 for (; ValNo != PositionalVals.size(); ++ValNo)
710 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
711 PositionalVals[ValNo].first,
712 PositionalVals[ValNo].second);
713 }
714
715 // Loop over args and make sure all required args are specified!
Benjamin Kramer48086602009-09-19 10:01:45 +0000716 for (StringMap<Option*>::iterator I = Opts.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717 E = Opts.end(); I != E; ++I) {
718 switch (I->second->getNumOccurrencesFlag()) {
719 case Required:
720 case OneOrMore:
721 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000722 I->second->error("must be specified at least once!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723 ErrorParsing = true;
724 }
725 // Fall through
726 default:
727 break;
728 }
729 }
730
731 // Free all of the memory allocated to the map. Command line options may only
732 // be processed once!
733 Opts.clear();
734 PositionalOpts.clear();
735 MoreHelp->clear();
736
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000737 // Free the memory allocated by ExpandResponseFiles.
738 if (ReadResponseFiles) {
739 // Free all the strdup()ed strings.
740 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
741 i != e; ++i)
742 free (*i);
743 }
744
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000745 // If we had an error processing our arguments, don't let the program execute
746 if (ErrorParsing) exit(1);
747}
748
749//===----------------------------------------------------------------------===//
750// Option Base class implementation
751//
752
Chris Lattner157229d2009-09-20 00:40:49 +0000753bool Option::error(const Twine &Message, StringRef ArgName) {
754 if (ArgName.data() == 0) ArgName = ArgStr;
755 if (ArgName.empty())
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000756 errs() << HelpStr; // Be nice for positional arguments
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 else
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000758 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000759
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000760 errs() << " option: " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000761 return true;
762}
763
Chris Lattner157229d2009-09-20 00:40:49 +0000764bool Option::addOccurrence(unsigned pos, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000765 StringRef Value, bool MultiArg) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000766 if (!MultiArg)
767 NumOccurrences++; // Increment the number of times we have been seen
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768
769 switch (getNumOccurrencesFlag()) {
770 case Optional:
771 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000772 return error("may only occur zero or one times!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000773 break;
774 case Required:
775 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000776 return error("must occur exactly one time!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000777 // Fall through
778 case OneOrMore:
779 case ZeroOrMore:
780 case ConsumeAfter: break;
Benjamin Kramer9164c672009-08-02 12:13:02 +0000781 default: return error("bad num occurrences flag value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000782 }
783
784 return handleOccurrence(pos, ArgName, Value);
785}
786
787
788// getValueStr - Get the value description string, using "DefaultMsg" if nothing
789// has been specified yet.
790//
791static const char *getValueStr(const Option &O, const char *DefaultMsg) {
792 if (O.ValueStr[0] == 0) return DefaultMsg;
793 return O.ValueStr;
794}
795
796//===----------------------------------------------------------------------===//
797// cl::alias class implementation
798//
799
800// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000801size_t alias::getOptionWidth() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802 return std::strlen(ArgStr)+6;
803}
804
805// Print out the option for the alias.
Evan Cheng591bfc82008-05-05 18:30:58 +0000806void alias::printOptionInfo(size_t GlobalWidth) const {
807 size_t L = std::strlen(ArgStr);
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000808 errs() << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
Daniel Dunbar9b3edb62009-07-16 02:06:09 +0000809 << HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810}
811
812
813
814//===----------------------------------------------------------------------===//
815// Parser Implementation code...
816//
817
818// basic_parser implementation
819//
820
821// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000822size_t basic_parser_impl::getOptionWidth(const Option &O) const {
823 size_t Len = std::strlen(O.ArgStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824 if (const char *ValName = getValueName())
825 Len += std::strlen(getValueStr(O, ValName))+3;
826
827 return Len + 6;
828}
829
830// printOptionInfo - Print out information about this option. The
831// to-be-maintained width is specified.
832//
833void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000834 size_t GlobalWidth) const {
Chris Lattner5febcae2009-08-23 08:43:55 +0000835 outs() << " -" << O.ArgStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836
837 if (const char *ValName = getValueName())
Chris Lattner5febcae2009-08-23 08:43:55 +0000838 outs() << "=<" << getValueStr(O, ValName) << '>';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839
Chris Lattner5febcae2009-08-23 08:43:55 +0000840 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841}
842
843
844
845
846// parser<bool> implementation
847//
Chris Lattner157229d2009-09-20 00:40:49 +0000848bool parser<bool>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000849 StringRef Arg, bool &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
851 Arg == "1") {
852 Value = true;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000853 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000855
856 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
857 Value = false;
858 return false;
859 }
860 return O.error("'" + Arg +
861 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862}
863
864// parser<boolOrDefault> implementation
865//
Chris Lattner157229d2009-09-20 00:40:49 +0000866bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000867 StringRef Arg, boolOrDefault &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
869 Arg == "1") {
870 Value = BOU_TRUE;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000871 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000873 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
874 Value = BOU_FALSE;
875 return false;
876 }
877
878 return O.error("'" + Arg +
879 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880}
881
882// parser<int> implementation
883//
Chris Lattner157229d2009-09-20 00:40:49 +0000884bool parser<int>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000885 StringRef Arg, int &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000886 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000887 return O.error("'" + Arg + "' value invalid for integer argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888 return false;
889}
890
891// parser<unsigned> implementation
892//
Chris Lattner157229d2009-09-20 00:40:49 +0000893bool parser<unsigned>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000894 StringRef Arg, unsigned &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000895
896 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000897 return O.error("'" + Arg + "' value invalid for uint argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000898 return false;
899}
900
901// parser<double>/parser<float> implementation
902//
Chris Lattner47d05cb2009-09-19 18:55:05 +0000903static bool parseDouble(Option &O, StringRef Arg, double &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000904 SmallString<32> TmpStr(Arg.begin(), Arg.end());
905 const char *ArgStart = TmpStr.c_str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906 char *End;
907 Value = strtod(ArgStart, &End);
908 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000909 return O.error("'" + Arg + "' value invalid for floating point argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000910 return false;
911}
912
Chris Lattner157229d2009-09-20 00:40:49 +0000913bool parser<double>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000914 StringRef Arg, double &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 return parseDouble(O, Arg, Val);
916}
917
Chris Lattner157229d2009-09-20 00:40:49 +0000918bool parser<float>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000919 StringRef Arg, float &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000920 double dVal;
921 if (parseDouble(O, Arg, dVal))
922 return true;
923 Val = (float)dVal;
924 return false;
925}
926
927
928
929// generic_parser_base implementation
930//
931
932// findOption - Return the option number corresponding to the specified
933// argument string. If the option is not found, getNumOptions() is returned.
934//
935unsigned generic_parser_base::findOption(const char *Name) {
Benjamin Kramer48086602009-09-19 10:01:45 +0000936 unsigned e = getNumOptions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000937
Benjamin Kramer48086602009-09-19 10:01:45 +0000938 for (unsigned i = 0; i != e; ++i) {
939 if (strcmp(getOption(i), Name) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 return i;
Benjamin Kramer48086602009-09-19 10:01:45 +0000941 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000942 return e;
943}
944
945
946// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000947size_t generic_parser_base::getOptionWidth(const Option &O) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000948 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000949 size_t Size = std::strlen(O.ArgStr)+6;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000950 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000951 Size = std::max(Size, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952 return Size;
953 } else {
Evan Cheng591bfc82008-05-05 18:30:58 +0000954 size_t BaseSize = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000955 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000956 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000957 return BaseSize;
958 }
959}
960
961// printOptionInfo - Print out information about this option. The
962// to-be-maintained width is specified.
963//
964void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000965 size_t GlobalWidth) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000966 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000967 size_t L = std::strlen(O.ArgStr);
Chris Lattner5febcae2009-08-23 08:43:55 +0000968 outs() << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
969 << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000970
971 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000972 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattner5febcae2009-08-23 08:43:55 +0000973 outs() << " =" << getOption(i) << std::string(NumSpaces, ' ')
974 << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 }
976 } else {
977 if (O.HelpStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +0000978 outs() << " " << O.HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000980 size_t L = std::strlen(getOption(i));
Chris Lattner5febcae2009-08-23 08:43:55 +0000981 outs() << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
982 << " - " << getDescription(i) << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983 }
984 }
985}
986
987
988//===----------------------------------------------------------------------===//
989// --help and --help-hidden option implementation
990//
991
992namespace {
993
994class HelpPrinter {
Evan Cheng591bfc82008-05-05 18:30:58 +0000995 size_t MaxArgLen;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000996 const Option *EmptyArg;
997 const bool ShowHidden;
998
999 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Benjamin Kramer48086602009-09-19 10:01:45 +00001000 inline static bool isHidden(Option *Opt) {
1001 return Opt->getOptionHiddenFlag() >= Hidden;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001002 }
Benjamin Kramer48086602009-09-19 10:01:45 +00001003 inline static bool isReallyHidden(Option *Opt) {
1004 return Opt->getOptionHiddenFlag() == ReallyHidden;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001005 }
1006
1007public:
Dan Gohman40bd38e2008-03-25 22:06:05 +00001008 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001009 EmptyArg = 0;
1010 }
1011
1012 void operator=(bool Value) {
1013 if (Value == false) return;
1014
1015 // Get all the options.
1016 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001017 std::vector<Option*> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +00001018 StringMap<Option*> OptMap;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001019 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001020
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 // Copy Options into a vector so we can sort them as we like...
Benjamin Kramer48086602009-09-19 10:01:45 +00001022 std::vector<Option*> Opts;
1023 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1024 I != E; ++I) {
1025 Opts.push_back(I->second);
1026 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027
1028 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
1029 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1030 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1031 Opts.end());
1032
1033 // Eliminate duplicate entries in table (from enum flags options, f.e.)
1034 { // Give OptionSet a scope
1035 std::set<Option*> OptionSet;
1036 for (unsigned i = 0; i != Opts.size(); ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001037 if (OptionSet.count(Opts[i]) == 0)
1038 OptionSet.insert(Opts[i]); // Add new entry to set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039 else
1040 Opts.erase(Opts.begin()+i--); // Erase duplicate
1041 }
1042
1043 if (ProgramOverview)
Chris Lattner5febcae2009-08-23 08:43:55 +00001044 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045
Chris Lattner5febcae2009-08-23 08:43:55 +00001046 outs() << "USAGE: " << ProgramName << " [options]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047
1048 // Print out the positional options.
1049 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001050 if (!PositionalOpts.empty() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1052 CAOpt = PositionalOpts[0];
1053
Evan Cheng591bfc82008-05-05 18:30:58 +00001054 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001055 if (PositionalOpts[i]->ArgStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001056 outs() << " --" << PositionalOpts[i]->ArgStr;
1057 outs() << " " << PositionalOpts[i]->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001058 }
1059
1060 // Print the consume after option info if it exists...
Chris Lattner5febcae2009-08-23 08:43:55 +00001061 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062
Chris Lattner5febcae2009-08-23 08:43:55 +00001063 outs() << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001064
1065 // Compute the maximum argument length...
1066 MaxArgLen = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +00001067 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001068 MaxArgLen = std::max(MaxArgLen, Opts[i]->getOptionWidth());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001069
Chris Lattner5febcae2009-08-23 08:43:55 +00001070 outs() << "OPTIONS:\n";
Evan Cheng591bfc82008-05-05 18:30:58 +00001071 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001072 Opts[i]->printOptionInfo(MaxArgLen);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073
1074 // Print any extra help the user has declared.
1075 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1076 E = MoreHelp->end(); I != E; ++I)
Chris Lattner5febcae2009-08-23 08:43:55 +00001077 outs() << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 MoreHelp->clear();
1079
1080 // Halt the program since help information was printed
1081 exit(1);
1082 }
1083};
1084} // End anonymous namespace
1085
1086// Define the two HelpPrinter instances that are used to print out help, or
1087// help-hidden...
1088//
1089static HelpPrinter NormalPrinter(false);
1090static HelpPrinter HiddenPrinter(true);
1091
1092static cl::opt<HelpPrinter, true, parser<bool> >
1093HOp("help", cl::desc("Display available options (--help-hidden for more)"),
1094 cl::location(NormalPrinter), cl::ValueDisallowed);
1095
1096static cl::opt<HelpPrinter, true, parser<bool> >
1097HHOp("help-hidden", cl::desc("Display all available options"),
1098 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1099
1100static void (*OverrideVersionPrinter)() = 0;
1101
1102namespace {
1103class VersionPrinter {
1104public:
1105 void print() {
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001106 outs() << "Low Level Virtual Machine (http://llvm.org/):\n"
1107 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001108#ifdef LLVM_VERSION_INFO
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001109 outs() << LLVM_VERSION_INFO;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001111 outs() << "\n ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001112#ifndef __OPTIMIZE__
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001113 outs() << "DEBUG build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001114#else
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001115 outs() << "Optimized build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116#endif
1117#ifndef NDEBUG
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001118 outs() << " with assertions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001120 outs() << ".\n"
1121 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
Daniel Dunbar401011e2009-09-02 23:52:38 +00001122 << " Host: " << sys::getHostTriple() << "\n"
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001123 << "\n"
1124 << " Registered Targets:\n";
Daniel Dunbar9b3edb62009-07-16 02:06:09 +00001125
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001126 std::vector<std::pair<std::string, const Target*> > Targets;
1127 size_t Width = 0;
1128 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1129 ie = TargetRegistry::end(); it != ie; ++it) {
1130 Targets.push_back(std::make_pair(it->getName(), &*it));
1131 Width = std::max(Width, Targets.back().first.length());
1132 }
1133 std::sort(Targets.begin(), Targets.end());
Daniel Dunbar80329932009-07-26 05:09:50 +00001134
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001135 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
1136 outs() << " " << Targets[i].first
1137 << std::string(Width - Targets[i].first.length(), ' ') << " - "
1138 << Targets[i].second->getShortDescription() << "\n";
1139 }
1140 if (Targets.empty())
1141 outs() << " (none)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142 }
1143 void operator=(bool OptionWasSpecified) {
1144 if (OptionWasSpecified) {
1145 if (OverrideVersionPrinter == 0) {
1146 print();
1147 exit(1);
1148 } else {
1149 (*OverrideVersionPrinter)();
1150 exit(1);
1151 }
1152 }
1153 }
1154};
1155} // End anonymous namespace
1156
1157
1158// Define the --version option that prints out the LLVM version for the tool
1159static VersionPrinter VersionPrinterInstance;
1160
1161static cl::opt<VersionPrinter, true, parser<bool> >
1162VersOp("version", cl::desc("Display the version of this program"),
1163 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1164
1165// Utility function for printing the help message.
1166void cl::PrintHelpMessage() {
1167 // This looks weird, but it actually prints the help message. The
1168 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1169 // its operator= is invoked. That's because the "normal" usages of the
1170 // help printer is to be assigned true/false depending on whether the
1171 // --help option was given or not. Since we're circumventing that we have
1172 // to make it look like --help was given, so we assign true.
1173 NormalPrinter = true;
1174}
1175
1176/// Utility function for printing version number.
1177void cl::PrintVersionMessage() {
1178 VersionPrinterInstance.print();
1179}
1180
1181void cl::SetVersionPrinter(void (*func)()) {
1182 OverrideVersionPrinter = func;
1183}