blob: e35ad93b1952c2f192e985726a843cca52b645d1 [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 Lattner0a5bcfc2009-09-20 02:02:24 +0000154static Option *LookupOption(StringRef &Arg, StringRef &Value,
155 const StringMap<Option*> &OptionsMap) {
156 // Eat leading dashes.
157 while (!Arg.empty() && Arg[0] == '-')
158 Arg = Arg.substr(1);
159
160 // Reject all dashes.
161 if (Arg.empty()) return 0;
162
163 size_t EqualPos = Arg.find('=');
164
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000165 // If we have an equals sign, remember the value.
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000166 if (EqualPos != StringRef::npos) {
167 Value = Arg.substr(EqualPos+1);
168 Arg = Arg.substr(0, EqualPos);
169 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000170
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 // Look up the option.
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000172 StringMap<Option*>::const_iterator I = OptionsMap.find(Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 return I != OptionsMap.end() ? I->second : 0;
174}
175
Chris Lattner4627c682009-09-20 01:49:31 +0000176/// ProvideOption - For Value, this differentiates between an empty value ("")
177/// and a null value (StringRef()). The later is accepted for arguments that
178/// don't allow a value (-foo) the former is rejected (-foo=).
Chris Lattner157229d2009-09-20 00:40:49 +0000179static inline bool ProvideOption(Option *Handler, StringRef ArgName,
Chris Lattner4627c682009-09-20 01:49:31 +0000180 StringRef Value, int argc, char **argv,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 int &i) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000182 // Is this a multi-argument option?
183 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
184
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185 // Enforce value requirements
186 switch (Handler->getValueExpectedFlag()) {
187 case ValueRequired:
Chris Lattner4627c682009-09-20 01:49:31 +0000188 if (Value.data() == 0) { // No value specified?
Chris Lattner747e01e2009-09-20 00:07:40 +0000189 if (i+1 >= argc)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000190 return Handler->error("requires a value!");
Chris Lattner747e01e2009-09-20 00:07:40 +0000191 // Steal the next argument, like for '-o filename'
192 Value = argv[++i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 }
194 break;
195 case ValueDisallowed:
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000196 if (NumAdditionalVals > 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000197 return Handler->error("multi-valued option specified"
Chris Lattner747e01e2009-09-20 00:07:40 +0000198 " with ValueDisallowed modifier!");
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000199
Chris Lattner4627c682009-09-20 01:49:31 +0000200 if (Value.data())
Benjamin Kramer9164c672009-08-02 12:13:02 +0000201 return Handler->error("does not allow a value! '" +
Chris Lattner47d05cb2009-09-19 18:55:05 +0000202 Twine(Value) + "' specified.");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 break;
204 case ValueOptional:
205 break;
Chris Lattner747e01e2009-09-20 00:07:40 +0000206
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 default:
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000208 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 << ": Bad ValueMask flag! CommandLine usage error:"
210 << Handler->getValueExpectedFlag() << "\n";
Edwin Törökbd448e32009-07-14 16:55:14 +0000211 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 }
213
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000214 // If this isn't a multi-arg option, just run the handler.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000215 if (NumAdditionalVals == 0)
Chris Lattner4627c682009-09-20 01:49:31 +0000216 return Handler->addOccurrence(i, ArgName, Value);
Chris Lattner47d05cb2009-09-19 18:55:05 +0000217
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000218 // If it is, run the handle several times.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000219 bool MultiArg = false;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000220
Chris Lattner4627c682009-09-20 01:49:31 +0000221 if (Value.data()) {
Chris Lattner47d05cb2009-09-19 18:55:05 +0000222 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
223 return true;
224 --NumAdditionalVals;
225 MultiArg = true;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000226 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000227
228 while (NumAdditionalVals > 0) {
Chris Lattner47d05cb2009-09-19 18:55:05 +0000229 if (i+1 >= argc)
230 return Handler->error("not enough values!");
231 Value = argv[++i];
232
233 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
234 return true;
235 MultiArg = true;
236 --NumAdditionalVals;
237 }
238 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239}
240
Chris Lattner747e01e2009-09-20 00:07:40 +0000241static bool ProvidePositionalOption(Option *Handler, StringRef Arg, int i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 int Dummy = i;
Chris Lattner4627c682009-09-20 01:49:31 +0000243 return ProvideOption(Handler, Handler->ArgStr, Arg, 0, 0, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244}
245
246
247// Option predicates...
248static inline bool isGrouping(const Option *O) {
249 return O->getFormattingFlag() == cl::Grouping;
250}
251static inline bool isPrefixedOrGrouping(const Option *O) {
252 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
253}
254
255// getOptionPred - Check to see if there are any options that satisfy the
256// specified predicate with names that are the prefixes in Name. This is
257// checked by progressively stripping characters off of the name, checking to
258// see if there options that satisfy the predicate. If we find one, return it,
259// otherwise return null.
260//
Chris Lattner157229d2009-09-20 00:40:49 +0000261static Option *getOptionPred(StringRef Name, size_t &Length,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262 bool (*Pred)(const Option*),
Benjamin Kramer48086602009-09-19 10:01:45 +0000263 StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264
Benjamin Kramer48086602009-09-19 10:01:45 +0000265 StringMap<Option*>::iterator OMI = OptionsMap.find(Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner157229d2009-09-20 00:40:49 +0000267 Length = Name.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000268 return OMI->second;
269 }
270
271 if (Name.size() == 1) return 0;
272 do {
Chris Lattner157229d2009-09-20 00:40:49 +0000273 Name = Name.substr(0, Name.size()-1); // Chop off the last character.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274 OMI = OptionsMap.find(Name);
275
276 // Loop while we haven't found an option and Name still has at least two
277 // characters in it (so that the next iteration will not be the empty
Chris Lattner157229d2009-09-20 00:40:49 +0000278 // string.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
280
281 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner157229d2009-09-20 00:40:49 +0000282 Length = Name.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283 return OMI->second; // Found one!
284 }
285 return 0; // No option found!
286}
287
288static bool RequiresValue(const Option *O) {
289 return O->getNumOccurrencesFlag() == cl::Required ||
290 O->getNumOccurrencesFlag() == cl::OneOrMore;
291}
292
293static bool EatsUnboundedNumberOfValues(const Option *O) {
294 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
295 O->getNumOccurrencesFlag() == cl::OneOrMore;
296}
297
298/// ParseCStringVector - Break INPUT up wherever one or more
299/// whitespace characters are found, and store the resulting tokens in
300/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
Chris Lattner2ee921e2009-09-20 01:11:23 +0000301/// using strdup(), so it is the caller's responsibility to free()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302/// them later.
303///
Chris Lattner17e57092009-09-20 01:33:46 +0000304static void ParseCStringVector(std::vector<char *> &OutputVector,
305 const char *Input) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 // Characters which will be treated as token separators:
Chris Lattner17e57092009-09-20 01:33:46 +0000307 StringRef Delims = " \v\f\t\r\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308
Chris Lattner17e57092009-09-20 01:33:46 +0000309 StringRef WorkStr(Input);
310 while (!WorkStr.empty()) {
311 // If the first character is a delimiter, strip them off.
312 if (Delims.find(WorkStr[0]) != StringRef::npos) {
313 size_t Pos = WorkStr.find_first_not_of(Delims);
314 if (Pos == StringRef::npos) Pos = WorkStr.size();
315 WorkStr = WorkStr.substr(Pos);
316 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 }
Chris Lattner17e57092009-09-20 01:33:46 +0000318
319 // Find position of first delimiter.
320 size_t Pos = WorkStr.find_first_of(Delims);
321 if (Pos == StringRef::npos) Pos = WorkStr.size();
322
323 // Everything from 0 to Pos is the next word to copy.
324 char *NewStr = (char*)malloc(Pos+1);
325 memcpy(NewStr, WorkStr.data(), Pos);
326 NewStr[Pos] = 0;
327 OutputVector.push_back(NewStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329}
330
331/// ParseEnvironmentOptions - An alternative entry point to the
332/// CommandLine library, which allows you to read the program's name
333/// from the caller (as PROGNAME) and its command-line arguments from
334/// an environment variable (whose name is given in ENVVAR).
335///
336void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000337 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338 // Check args.
339 assert(progName && "Program name not specified");
340 assert(envVar && "Environment variable name missing");
341
342 // Get the environment variable they want us to parse options out of.
343 const char *envValue = getenv(envVar);
344 if (!envValue)
345 return;
346
347 // Get program's "name", which we wouldn't know without the caller
348 // telling us.
349 std::vector<char*> newArgv;
350 newArgv.push_back(strdup(progName));
351
352 // Parse the value of the environment variable into a "command line"
353 // and hand it off to ParseCommandLineOptions().
354 ParseCStringVector(newArgv, envValue);
Evan Cheng591bfc82008-05-05 18:30:58 +0000355 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000356 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357
358 // Free all the strdup()ed strings.
359 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
360 i != e; ++i)
Chris Lattner2ee921e2009-09-20 01:11:23 +0000361 free(*i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362}
363
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000364
365/// ExpandResponseFiles - Copy the contents of argv into newArgv,
366/// substituting the contents of the response files for the arguments
367/// of type @file.
368static void ExpandResponseFiles(int argc, char** argv,
369 std::vector<char*>& newArgv) {
370 for (int i = 1; i != argc; ++i) {
371 char* arg = argv[i];
372
373 if (arg[0] == '@') {
374
375 sys::PathWithStatus respFile(++arg);
376
377 // Check that the response file is not empty (mmap'ing empty
378 // files can be problematic).
379 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000380 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000381
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000382 // Mmap the response file into memory.
383 OwningPtr<MemoryBuffer>
384 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000385
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000386 // If we could open the file, parse its contents, otherwise
387 // pass the @file option verbatim.
Mikhail Glushenkovc591ed142009-01-28 03:46:22 +0000388
389 // TODO: we should also support recursive loading of response files,
390 // since this is how gcc behaves. (From their man page: "The file may
391 // itself contain additional @file options; any such options will be
392 // processed recursively.")
393
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000394 if (respFilePtr != 0) {
395 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
396 continue;
397 }
398 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000399 }
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000400 newArgv.push_back(strdup(arg));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000401 }
402}
403
Dan Gohman61db06b2007-10-09 16:04:57 +0000404void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000405 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 // Process all registered options.
407 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000408 std::vector<Option*> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +0000409 StringMap<Option*> Opts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000410 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000411
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 assert((!Opts.empty() || !PositionalOpts.empty()) &&
413 "No options specified!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000414
415 // Expand response files.
416 std::vector<char*> newArgv;
417 if (ReadResponseFiles) {
418 newArgv.push_back(strdup(argv[0]));
419 ExpandResponseFiles(argc, argv, newArgv);
420 argv = &newArgv[0];
Evan Cheng591bfc82008-05-05 18:30:58 +0000421 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000422 }
423
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424 // Copy the program name into ProgName, making sure not to overflow it.
425 std::string ProgName = sys::Path(argv[0]).getLast();
426 if (ProgName.size() > 79) ProgName.resize(79);
427 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000428
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000429 ProgramOverview = Overview;
430 bool ErrorParsing = false;
431
432 // Check out the positional arguments to collect information about them.
433 unsigned NumPositionalRequired = 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000434
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 // Determine whether or not there are an unlimited number of positionals
436 bool HasUnlimitedPositionals = false;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000437
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000438 Option *ConsumeAfterOpt = 0;
439 if (!PositionalOpts.empty()) {
440 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
441 assert(PositionalOpts.size() > 1 &&
442 "Cannot specify cl::ConsumeAfter without a positional argument!");
443 ConsumeAfterOpt = PositionalOpts[0];
444 }
445
446 // Calculate how many positional values are _required_.
447 bool UnboundedFound = false;
Evan Cheng591bfc82008-05-05 18:30:58 +0000448 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449 i != e; ++i) {
450 Option *Opt = PositionalOpts[i];
451 if (RequiresValue(Opt))
452 ++NumPositionalRequired;
453 else if (ConsumeAfterOpt) {
454 // ConsumeAfter cannot be combined with "optional" positional options
455 // unless there is only one positional argument...
456 if (PositionalOpts.size() > 2)
457 ErrorParsing |=
Benjamin Kramer9164c672009-08-02 12:13:02 +0000458 Opt->error("error - this positional option will never be matched, "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459 "because it does not Require a value, and a "
460 "cl::ConsumeAfter option is active!");
461 } else if (UnboundedFound && !Opt->ArgStr[0]) {
462 // This option does not "require" a value... Make sure this option is
463 // not specified after an option that eats all extra arguments, or this
464 // one will never get any!
465 //
Benjamin Kramer9164c672009-08-02 12:13:02 +0000466 ErrorParsing |= Opt->error("error - option can never match, because "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 "another positional argument will match an "
468 "unbounded number of values, and this option"
469 " does not require a value!");
470 }
471 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
472 }
473 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
474 }
475
476 // PositionalVals - A vector of "positional" arguments we accumulate into
Chris Lattner747e01e2009-09-20 00:07:40 +0000477 // the process at the end.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 //
Chris Lattner747e01e2009-09-20 00:07:40 +0000479 SmallVector<std::pair<StringRef,unsigned>, 4> PositionalVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480
481 // If the program has named positional arguments, and the name has been run
482 // across, keep track of which positional argument was named. Otherwise put
483 // the positional args into the PositionalVals list...
484 Option *ActivePositionalArg = 0;
485
486 // Loop over all of the arguments... processing them.
487 bool DashDashFound = false; // Have we read '--'?
488 for (int i = 1; i < argc; ++i) {
489 Option *Handler = 0;
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000490 StringRef Value;
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000491 StringRef ArgName = "";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492
493 // If the option list changed, this means that some command line
494 // option has just been registered or deregistered. This can occur in
495 // response to things like -load, etc. If this happens, rescan the options.
496 if (OptionListChanged) {
497 PositionalOpts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000498 SinkOpts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 Opts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000500 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501 OptionListChanged = false;
502 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000503
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504 // Check to see if this is a positional argument. This argument is
505 // considered to be positional if it doesn't start with '-', if it is "-"
506 // itself, or if we have seen "--" already.
507 //
508 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
509 // Positional argument!
510 if (ActivePositionalArg) {
511 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
512 continue; // We are done!
Chris Lattner157229d2009-09-20 00:40:49 +0000513 }
514
515 if (!PositionalOpts.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 PositionalVals.push_back(std::make_pair(argv[i],i));
517
518 // All of the positional arguments have been fulfulled, give the rest to
519 // the consume after option... if it's specified...
520 //
521 if (PositionalVals.size() >= NumPositionalRequired &&
522 ConsumeAfterOpt != 0) {
523 for (++i; i < argc; ++i)
524 PositionalVals.push_back(std::make_pair(argv[i],i));
525 break; // Handle outside of the argument processing loop...
526 }
527
528 // Delay processing positional arguments until the end...
529 continue;
530 }
531 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
532 !DashDashFound) {
533 DashDashFound = true; // This is the mythical "--"?
534 continue; // Don't try to process it as an argument itself.
535 } else if (ActivePositionalArg &&
536 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
537 // If there is a positional argument eating options, check to see if this
538 // option is another positional argument. If so, treat it as an argument,
539 // otherwise feed it to the eating positional.
540 ArgName = argv[i]+1;
541 Handler = LookupOption(ArgName, Value, Opts);
542 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
543 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
544 continue; // We are done!
545 }
546
Chris Lattner157229d2009-09-20 00:40:49 +0000547 } else { // We start with a '-', must be an argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 ArgName = argv[i]+1;
549 Handler = LookupOption(ArgName, Value, Opts);
550
551 // Check to see if this "option" is really a prefixed or grouped argument.
552 if (Handler == 0) {
Chris Lattner157229d2009-09-20 00:40:49 +0000553 StringRef RealName(ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554 if (RealName.size() > 1) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000555 size_t Length = 0;
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000556 Option *PGOpt =
557 getOptionPred(RealName, Length, isPrefixedOrGrouping, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558
559 // If the option is a prefixed option, then the value is simply the
560 // rest of the name... so fall through to later processing, by
561 // setting up the argument name flags and value fields.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000563 Value = ArgName.substr(Length);
564 assert(Opts.count(ArgName.substr(0, Length)) &&
565 Opts[ArgName.substr(0, Length)] == PGOpt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566 Handler = PGOpt;
567 } else if (PGOpt) {
568 // This must be a grouped option... handle them now.
569 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
570
571 do {
Chris Lattner157229d2009-09-20 00:40:49 +0000572 // Move current arg name out of RealName into RealArgName.
573 StringRef RealArgName = RealName.substr(0, Length);
574 RealName = RealName.substr(Length);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575
576 // Because ValueRequired is an invalid flag for grouped arguments,
Chris Lattner157229d2009-09-20 00:40:49 +0000577 // we don't need to pass argc/argv in.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578 //
579 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
580 "Option can not be cl::Grouping AND cl::ValueRequired!");
581 int Dummy;
Chris Lattner157229d2009-09-20 00:40:49 +0000582 ErrorParsing |= ProvideOption(PGOpt, RealArgName,
Chris Lattner4627c682009-09-20 01:49:31 +0000583 StringRef(), 0, 0, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584
Chris Lattner157229d2009-09-20 00:40:49 +0000585 // Get the next grouping option.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
587 } while (PGOpt && Length != RealName.size());
588
589 Handler = PGOpt; // Ate all of the options.
590 }
591 }
592 }
593 }
594
595 if (Handler == 0) {
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000596 if (SinkOpts.empty()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000597 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000598 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
599 ErrorParsing = true;
600 } else {
601 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
602 E = SinkOpts.end(); I != E ; ++I)
603 (*I)->addOccurrence(i, "", argv[i]);
604 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605 continue;
606 }
607
608 // Check to see if this option accepts a comma separated list of values. If
Chris Lattner4627c682009-09-20 01:49:31 +0000609 // it does, we have to split up the value into multiple values.
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000610 if (Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner4627c682009-09-20 01:49:31 +0000611 StringRef Val(Value);
612 StringRef::size_type Pos = Val.find(',');
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613
Chris Lattner4627c682009-09-20 01:49:31 +0000614 while (Pos != StringRef::npos) {
615 // Process the portion before the comma.
616 ErrorParsing |= ProvideOption(Handler, ArgName, Val.substr(0, Pos),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000617 argc, argv, i);
Chris Lattner4627c682009-09-20 01:49:31 +0000618 // Erase the portion before the comma, AND the comma.
619 Val = Val.substr(Pos+1);
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000620 Value.substr(Pos+1); // Increment the original value pointer as well.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621
Chris Lattner4627c682009-09-20 01:49:31 +0000622 // Check for another comma.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623 Pos = Val.find(',');
624 }
625 }
626
627 // If this is a named positional argument, just remember that it is the
628 // active one...
629 if (Handler->getFormattingFlag() == cl::Positional)
630 ActivePositionalArg = Handler;
Chris Lattner4627c682009-09-20 01:49:31 +0000631 else
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000632 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000633 }
634
635 // Check and handle positional arguments now...
636 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000637 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638 << ": Not enough positional command line arguments specified!\n"
639 << "Must specify at least " << NumPositionalRequired
640 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000641
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000642 ErrorParsing = true;
643 } else if (!HasUnlimitedPositionals
644 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000645 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000646 << ": Too many positional arguments specified!\n"
647 << "Can specify at most " << PositionalOpts.size()
648 << " positional arguments: See: " << argv[0] << " --help\n";
649 ErrorParsing = true;
650
651 } else if (ConsumeAfterOpt == 0) {
652 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng591bfc82008-05-05 18:30:58 +0000653 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
654 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 if (RequiresValue(PositionalOpts[i])) {
656 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
657 PositionalVals[ValNo].second);
658 ValNo++;
659 --NumPositionalRequired; // We fulfilled our duty...
660 }
661
662 // If we _can_ give this option more arguments, do so now, as long as we
663 // do not give it values that others need. 'Done' controls whether the
664 // option even _WANTS_ any more.
665 //
666 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
667 while (NumVals-ValNo > NumPositionalRequired && !Done) {
668 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
669 case cl::Optional:
670 Done = true; // Optional arguments want _at most_ one value
671 // FALL THROUGH
672 case cl::ZeroOrMore: // Zero or more will take all they can get...
673 case cl::OneOrMore: // One or more will take all they can get...
674 ProvidePositionalOption(PositionalOpts[i],
675 PositionalVals[ValNo].first,
676 PositionalVals[ValNo].second);
677 ValNo++;
678 break;
679 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000680 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000681 "positional argument processing!");
682 }
683 }
684 }
685 } else {
686 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
687 unsigned ValNo = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +0000688 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689 if (RequiresValue(PositionalOpts[j])) {
690 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
691 PositionalVals[ValNo].first,
692 PositionalVals[ValNo].second);
693 ValNo++;
694 }
695
696 // Handle the case where there is just one positional option, and it's
697 // optional. In this case, we want to give JUST THE FIRST option to the
698 // positional option and keep the rest for the consume after. The above
699 // loop would have assigned no values to positional options in this case.
700 //
701 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
702 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
703 PositionalVals[ValNo].first,
704 PositionalVals[ValNo].second);
705 ValNo++;
706 }
707
708 // Handle over all of the rest of the arguments to the
709 // cl::ConsumeAfter command line option...
710 for (; ValNo != PositionalVals.size(); ++ValNo)
711 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
712 PositionalVals[ValNo].first,
713 PositionalVals[ValNo].second);
714 }
715
716 // Loop over args and make sure all required args are specified!
Benjamin Kramer48086602009-09-19 10:01:45 +0000717 for (StringMap<Option*>::iterator I = Opts.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718 E = Opts.end(); I != E; ++I) {
719 switch (I->second->getNumOccurrencesFlag()) {
720 case Required:
721 case OneOrMore:
722 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000723 I->second->error("must be specified at least once!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000724 ErrorParsing = true;
725 }
726 // Fall through
727 default:
728 break;
729 }
730 }
731
732 // Free all of the memory allocated to the map. Command line options may only
733 // be processed once!
734 Opts.clear();
735 PositionalOpts.clear();
736 MoreHelp->clear();
737
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000738 // Free the memory allocated by ExpandResponseFiles.
739 if (ReadResponseFiles) {
740 // Free all the strdup()ed strings.
741 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
742 i != e; ++i)
743 free (*i);
744 }
745
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746 // If we had an error processing our arguments, don't let the program execute
747 if (ErrorParsing) exit(1);
748}
749
750//===----------------------------------------------------------------------===//
751// Option Base class implementation
752//
753
Chris Lattner157229d2009-09-20 00:40:49 +0000754bool Option::error(const Twine &Message, StringRef ArgName) {
755 if (ArgName.data() == 0) ArgName = ArgStr;
756 if (ArgName.empty())
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000757 errs() << HelpStr; // Be nice for positional arguments
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758 else
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000759 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000760
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000761 errs() << " option: " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000762 return true;
763}
764
Chris Lattner157229d2009-09-20 00:40:49 +0000765bool Option::addOccurrence(unsigned pos, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000766 StringRef Value, bool MultiArg) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000767 if (!MultiArg)
768 NumOccurrences++; // Increment the number of times we have been seen
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769
770 switch (getNumOccurrencesFlag()) {
771 case Optional:
772 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000773 return error("may only occur zero or one times!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000774 break;
775 case Required:
776 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000777 return error("must occur exactly one time!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 // Fall through
779 case OneOrMore:
780 case ZeroOrMore:
781 case ConsumeAfter: break;
Benjamin Kramer9164c672009-08-02 12:13:02 +0000782 default: return error("bad num occurrences flag value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000783 }
784
785 return handleOccurrence(pos, ArgName, Value);
786}
787
788
789// getValueStr - Get the value description string, using "DefaultMsg" if nothing
790// has been specified yet.
791//
792static const char *getValueStr(const Option &O, const char *DefaultMsg) {
793 if (O.ValueStr[0] == 0) return DefaultMsg;
794 return O.ValueStr;
795}
796
797//===----------------------------------------------------------------------===//
798// cl::alias class implementation
799//
800
801// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000802size_t alias::getOptionWidth() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000803 return std::strlen(ArgStr)+6;
804}
805
806// Print out the option for the alias.
Evan Cheng591bfc82008-05-05 18:30:58 +0000807void alias::printOptionInfo(size_t GlobalWidth) const {
808 size_t L = std::strlen(ArgStr);
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000809 errs() << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
Daniel Dunbar9b3edb62009-07-16 02:06:09 +0000810 << HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811}
812
813
814
815//===----------------------------------------------------------------------===//
816// Parser Implementation code...
817//
818
819// basic_parser implementation
820//
821
822// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000823size_t basic_parser_impl::getOptionWidth(const Option &O) const {
824 size_t Len = std::strlen(O.ArgStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000825 if (const char *ValName = getValueName())
826 Len += std::strlen(getValueStr(O, ValName))+3;
827
828 return Len + 6;
829}
830
831// printOptionInfo - Print out information about this option. The
832// to-be-maintained width is specified.
833//
834void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000835 size_t GlobalWidth) const {
Chris Lattner5febcae2009-08-23 08:43:55 +0000836 outs() << " -" << O.ArgStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837
838 if (const char *ValName = getValueName())
Chris Lattner5febcae2009-08-23 08:43:55 +0000839 outs() << "=<" << getValueStr(O, ValName) << '>';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000840
Chris Lattner5febcae2009-08-23 08:43:55 +0000841 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842}
843
844
845
846
847// parser<bool> implementation
848//
Chris Lattner157229d2009-09-20 00:40:49 +0000849bool parser<bool>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000850 StringRef Arg, bool &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
852 Arg == "1") {
853 Value = true;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000854 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000855 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000856
857 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
858 Value = false;
859 return false;
860 }
861 return O.error("'" + Arg +
862 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863}
864
865// parser<boolOrDefault> implementation
866//
Chris Lattner157229d2009-09-20 00:40:49 +0000867bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000868 StringRef Arg, boolOrDefault &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
870 Arg == "1") {
871 Value = BOU_TRUE;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000872 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000873 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000874 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
875 Value = BOU_FALSE;
876 return false;
877 }
878
879 return O.error("'" + Arg +
880 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000881}
882
883// parser<int> implementation
884//
Chris Lattner157229d2009-09-20 00:40:49 +0000885bool parser<int>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000886 StringRef Arg, int &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000887 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000888 return O.error("'" + Arg + "' value invalid for integer argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889 return false;
890}
891
892// parser<unsigned> implementation
893//
Chris Lattner157229d2009-09-20 00:40:49 +0000894bool parser<unsigned>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000895 StringRef Arg, unsigned &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000896
897 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000898 return O.error("'" + Arg + "' value invalid for uint argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899 return false;
900}
901
902// parser<double>/parser<float> implementation
903//
Chris Lattner47d05cb2009-09-19 18:55:05 +0000904static bool parseDouble(Option &O, StringRef Arg, double &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000905 SmallString<32> TmpStr(Arg.begin(), Arg.end());
906 const char *ArgStart = TmpStr.c_str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000907 char *End;
908 Value = strtod(ArgStart, &End);
909 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000910 return O.error("'" + Arg + "' value invalid for floating point argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 return false;
912}
913
Chris Lattner157229d2009-09-20 00:40:49 +0000914bool parser<double>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000915 StringRef Arg, double &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916 return parseDouble(O, Arg, Val);
917}
918
Chris Lattner157229d2009-09-20 00:40:49 +0000919bool parser<float>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000920 StringRef Arg, float &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000921 double dVal;
922 if (parseDouble(O, Arg, dVal))
923 return true;
924 Val = (float)dVal;
925 return false;
926}
927
928
929
930// generic_parser_base implementation
931//
932
933// findOption - Return the option number corresponding to the specified
934// argument string. If the option is not found, getNumOptions() is returned.
935//
936unsigned generic_parser_base::findOption(const char *Name) {
Benjamin Kramer48086602009-09-19 10:01:45 +0000937 unsigned e = getNumOptions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938
Benjamin Kramer48086602009-09-19 10:01:45 +0000939 for (unsigned i = 0; i != e; ++i) {
940 if (strcmp(getOption(i), Name) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000941 return i;
Benjamin Kramer48086602009-09-19 10:01:45 +0000942 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000943 return e;
944}
945
946
947// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000948size_t generic_parser_base::getOptionWidth(const Option &O) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000950 size_t Size = std::strlen(O.ArgStr)+6;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000951 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000952 Size = std::max(Size, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000953 return Size;
954 } else {
Evan Cheng591bfc82008-05-05 18:30:58 +0000955 size_t BaseSize = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000956 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000957 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958 return BaseSize;
959 }
960}
961
962// printOptionInfo - Print out information about this option. The
963// to-be-maintained width is specified.
964//
965void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000966 size_t GlobalWidth) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000968 size_t L = std::strlen(O.ArgStr);
Chris Lattner5febcae2009-08-23 08:43:55 +0000969 outs() << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
970 << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971
972 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000973 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattner5febcae2009-08-23 08:43:55 +0000974 outs() << " =" << getOption(i) << std::string(NumSpaces, ' ')
975 << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 }
977 } else {
978 if (O.HelpStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +0000979 outs() << " " << O.HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000981 size_t L = std::strlen(getOption(i));
Chris Lattner5febcae2009-08-23 08:43:55 +0000982 outs() << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
983 << " - " << getDescription(i) << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984 }
985 }
986}
987
988
989//===----------------------------------------------------------------------===//
990// --help and --help-hidden option implementation
991//
992
993namespace {
994
995class HelpPrinter {
Evan Cheng591bfc82008-05-05 18:30:58 +0000996 size_t MaxArgLen;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000997 const Option *EmptyArg;
998 const bool ShowHidden;
999
1000 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Benjamin Kramer48086602009-09-19 10:01:45 +00001001 inline static bool isHidden(Option *Opt) {
1002 return Opt->getOptionHiddenFlag() >= Hidden;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001003 }
Benjamin Kramer48086602009-09-19 10:01:45 +00001004 inline static bool isReallyHidden(Option *Opt) {
1005 return Opt->getOptionHiddenFlag() == ReallyHidden;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006 }
1007
1008public:
Dan Gohman40bd38e2008-03-25 22:06:05 +00001009 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010 EmptyArg = 0;
1011 }
1012
1013 void operator=(bool Value) {
1014 if (Value == false) return;
1015
1016 // Get all the options.
1017 std::vector<Option*> PositionalOpts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001018 std::vector<Option*> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +00001019 StringMap<Option*> OptMap;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001020 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001021
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001022 // Copy Options into a vector so we can sort them as we like...
Benjamin Kramer48086602009-09-19 10:01:45 +00001023 std::vector<Option*> Opts;
1024 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1025 I != E; ++I) {
1026 Opts.push_back(I->second);
1027 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028
1029 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
1030 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1031 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1032 Opts.end());
1033
1034 // Eliminate duplicate entries in table (from enum flags options, f.e.)
1035 { // Give OptionSet a scope
1036 std::set<Option*> OptionSet;
1037 for (unsigned i = 0; i != Opts.size(); ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001038 if (OptionSet.count(Opts[i]) == 0)
1039 OptionSet.insert(Opts[i]); // Add new entry to set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001040 else
1041 Opts.erase(Opts.begin()+i--); // Erase duplicate
1042 }
1043
1044 if (ProgramOverview)
Chris Lattner5febcae2009-08-23 08:43:55 +00001045 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046
Chris Lattner5febcae2009-08-23 08:43:55 +00001047 outs() << "USAGE: " << ProgramName << " [options]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048
1049 // Print out the positional options.
1050 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001051 if (!PositionalOpts.empty() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1053 CAOpt = PositionalOpts[0];
1054
Evan Cheng591bfc82008-05-05 18:30:58 +00001055 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 if (PositionalOpts[i]->ArgStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001057 outs() << " --" << PositionalOpts[i]->ArgStr;
1058 outs() << " " << PositionalOpts[i]->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059 }
1060
1061 // Print the consume after option info if it exists...
Chris Lattner5febcae2009-08-23 08:43:55 +00001062 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063
Chris Lattner5febcae2009-08-23 08:43:55 +00001064 outs() << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001065
1066 // Compute the maximum argument length...
1067 MaxArgLen = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +00001068 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001069 MaxArgLen = std::max(MaxArgLen, Opts[i]->getOptionWidth());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070
Chris Lattner5febcae2009-08-23 08:43:55 +00001071 outs() << "OPTIONS:\n";
Evan Cheng591bfc82008-05-05 18:30:58 +00001072 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer48086602009-09-19 10:01:45 +00001073 Opts[i]->printOptionInfo(MaxArgLen);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074
1075 // Print any extra help the user has declared.
1076 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1077 E = MoreHelp->end(); I != E; ++I)
Chris Lattner5febcae2009-08-23 08:43:55 +00001078 outs() << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 MoreHelp->clear();
1080
1081 // Halt the program since help information was printed
1082 exit(1);
1083 }
1084};
1085} // End anonymous namespace
1086
1087// Define the two HelpPrinter instances that are used to print out help, or
1088// help-hidden...
1089//
1090static HelpPrinter NormalPrinter(false);
1091static HelpPrinter HiddenPrinter(true);
1092
1093static cl::opt<HelpPrinter, true, parser<bool> >
1094HOp("help", cl::desc("Display available options (--help-hidden for more)"),
1095 cl::location(NormalPrinter), cl::ValueDisallowed);
1096
1097static cl::opt<HelpPrinter, true, parser<bool> >
1098HHOp("help-hidden", cl::desc("Display all available options"),
1099 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1100
1101static void (*OverrideVersionPrinter)() = 0;
1102
1103namespace {
1104class VersionPrinter {
1105public:
1106 void print() {
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001107 outs() << "Low Level Virtual Machine (http://llvm.org/):\n"
1108 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109#ifdef LLVM_VERSION_INFO
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001110 outs() << LLVM_VERSION_INFO;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001112 outs() << "\n ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113#ifndef __OPTIMIZE__
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001114 outs() << "DEBUG build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001115#else
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001116 outs() << "Optimized build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117#endif
1118#ifndef NDEBUG
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001119 outs() << " with assertions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001120#endif
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001121 outs() << ".\n"
1122 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
Daniel Dunbar401011e2009-09-02 23:52:38 +00001123 << " Host: " << sys::getHostTriple() << "\n"
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001124 << "\n"
1125 << " Registered Targets:\n";
Daniel Dunbar9b3edb62009-07-16 02:06:09 +00001126
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001127 std::vector<std::pair<std::string, const Target*> > Targets;
1128 size_t Width = 0;
1129 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1130 ie = TargetRegistry::end(); it != ie; ++it) {
1131 Targets.push_back(std::make_pair(it->getName(), &*it));
1132 Width = std::max(Width, Targets.back().first.length());
1133 }
1134 std::sort(Targets.begin(), Targets.end());
Daniel Dunbar80329932009-07-26 05:09:50 +00001135
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001136 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
1137 outs() << " " << Targets[i].first
1138 << std::string(Width - Targets[i].first.length(), ' ') << " - "
1139 << Targets[i].second->getShortDescription() << "\n";
1140 }
1141 if (Targets.empty())
1142 outs() << " (none)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001143 }
1144 void operator=(bool OptionWasSpecified) {
1145 if (OptionWasSpecified) {
1146 if (OverrideVersionPrinter == 0) {
1147 print();
1148 exit(1);
1149 } else {
1150 (*OverrideVersionPrinter)();
1151 exit(1);
1152 }
1153 }
1154 }
1155};
1156} // End anonymous namespace
1157
1158
1159// Define the --version option that prints out the LLVM version for the tool
1160static VersionPrinter VersionPrinterInstance;
1161
1162static cl::opt<VersionPrinter, true, parser<bool> >
1163VersOp("version", cl::desc("Display the version of this program"),
1164 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1165
1166// Utility function for printing the help message.
1167void cl::PrintHelpMessage() {
1168 // This looks weird, but it actually prints the help message. The
1169 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1170 // its operator= is invoked. That's because the "normal" usages of the
1171 // help printer is to be assigned true/false depending on whether the
1172 // --help option was given or not. Since we're circumventing that we have
1173 // to make it look like --help was given, so we assign true.
1174 NormalPrinter = true;
1175}
1176
1177/// Utility function for printing version number.
1178void cl::PrintVersionMessage() {
1179 VersionPrinterInstance.print();
1180}
1181
1182void cl::SetVersionPrinter(void (*func)()) {
1183 OverrideVersionPrinter = func;
1184}