blob: 204145396e4915fffb5c6109988c7989d05b01c1 [file] [log] [blame]
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001//===-- CommandLine.cpp - Command line parser implementation --------------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerdbab15a2001-07-23 17:17:47 +00009//
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//
Chris Lattner03fe1bd2001-07-23 23:04:07 +000014// 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//
Chris Lattnerdbab15a2001-07-23 17:17:47 +000017//===----------------------------------------------------------------------===//
18
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include "llvm/Support/CommandLine.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000020#include "llvm/Support/ErrorHandling.h"
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000021#include "llvm/Support/MemoryBuffer.h"
Chris Lattner90aa8392006-10-04 21:52:35 +000022#include "llvm/Support/ManagedStatic.h"
Chris Lattnerca179342009-08-23 18:09:02 +000023#include "llvm/Support/raw_ostream.h"
Daniel Dunbar603bea32009-07-16 02:06:09 +000024#include "llvm/Target/TargetRegistry.h"
Daniel Dunbar65524782009-09-02 23:52:38 +000025#include "llvm/System/Host.h"
Reid Spencer6f4c6072006-08-23 07:10:06 +000026#include "llvm/System/Path.h"
Chris Lattnerca179342009-08-23 18:09:02 +000027#include "llvm/ADT/OwningPtr.h"
Chris Lattner67aead62009-09-20 05:12:14 +000028#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner970e7df2009-09-19 23:59:02 +000029#include "llvm/ADT/SmallString.h"
Chris Lattner67aead62009-09-20 05:12:14 +000030#include "llvm/ADT/StringMap.h"
Chris Lattnera460beb2009-09-19 18:55:05 +000031#include "llvm/ADT/Twine.h"
Chris Lattnerca179342009-08-23 18:09:02 +000032#include "llvm/Config/config.h"
Brian Gaeke2d6a2362003-10-10 17:01:36 +000033#include <cerrno>
Chris Lattnerca179342009-08-23 18:09:02 +000034#include <cstdlib>
Chris Lattner2cdd21c2003-12-14 21:35:53 +000035using namespace llvm;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000036using namespace cl;
37
Chris Lattner7422a762006-08-27 12:45:47 +000038//===----------------------------------------------------------------------===//
39// Template instantiations and anchors.
40//
41TEMPLATE_INSTANTIATION(class basic_parser<bool>);
Dale Johannesen81da02b2007-05-22 17:14:46 +000042TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
Chris Lattner7422a762006-08-27 12:45:47 +000043TEMPLATE_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 Wendlingb587f962009-04-29 23:26:16 +000048TEMPLATE_INSTANTIATION(class basic_parser<char>);
Chris Lattner7422a762006-08-27 12:45:47 +000049
50TEMPLATE_INSTANTIATION(class opt<unsigned>);
51TEMPLATE_INSTANTIATION(class opt<int>);
52TEMPLATE_INSTANTIATION(class opt<std::string>);
Bill Wendlingb587f962009-04-29 23:26:16 +000053TEMPLATE_INSTANTIATION(class opt<char>);
Chris Lattner7422a762006-08-27 12:45:47 +000054TEMPLATE_INSTANTIATION(class opt<bool>);
55
56void Option::anchor() {}
57void basic_parser_impl::anchor() {}
58void parser<bool>::anchor() {}
Dale Johannesen81da02b2007-05-22 17:14:46 +000059void parser<boolOrDefault>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000060void parser<int>::anchor() {}
61void parser<unsigned>::anchor() {}
62void parser<double>::anchor() {}
63void parser<float>::anchor() {}
64void parser<std::string>::anchor() {}
Bill Wendlingb587f962009-04-29 23:26:16 +000065void parser<char>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000066
67//===----------------------------------------------------------------------===//
68
Chris Lattnerefa3da52006-10-13 00:06:24 +000069// 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>";
Reid Spencere1cc1502004-09-01 04:41:28 +000072static const char *ProgramOverview = 0;
73
Chris Lattnerc540ebb2004-11-19 17:08:15 +000074// This collects additional help to be printed.
Chris Lattner90aa8392006-10-04 21:52:35 +000075static ManagedStatic<std::vector<const char*> > MoreHelp;
Chris Lattnerc540ebb2004-11-19 17:08:15 +000076
Chris Lattner90aa8392006-10-04 21:52:35 +000077extrahelp::extrahelp(const char *Help)
Chris Lattnerc540ebb2004-11-19 17:08:15 +000078 : morehelp(Help) {
Chris Lattner90aa8392006-10-04 21:52:35 +000079 MoreHelp->push_back(Help);
Chris Lattnerc540ebb2004-11-19 17:08:15 +000080}
81
Chris Lattner69d6f132007-04-12 00:36:29 +000082static bool OptionListChanged = false;
83
84// MarkOptionsChanged - Internal helper function.
85void cl::MarkOptionsChanged() {
86 OptionListChanged = true;
87}
88
Chris Lattner9878d6a2007-04-06 21:06:55 +000089/// 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 Glushenkovbeb4d822008-04-28 16:44:25 +000095
Chris Lattner9878d6a2007-04-06 21:06:55 +000096 NextRegistered = RegisteredOptionList;
97 RegisteredOptionList = this;
Chris Lattner69d6f132007-04-12 00:36:29 +000098 MarkOptionsChanged();
Chris Lattner9878d6a2007-04-06 21:06:55 +000099}
100
Chris Lattner69d6f132007-04-12 00:36:29 +0000101
Chris Lattner331de232002-07-22 02:07:59 +0000102//===----------------------------------------------------------------------===//
Chris Lattner7422a762006-08-27 12:45:47 +0000103// Basic, shared command line option processing machinery.
Chris Lattner331de232002-07-22 02:07:59 +0000104//
105
Chris Lattner9878d6a2007-04-06 21:06:55 +0000106/// GetOptionInfo - Scan the list of registered options, turning them into data
107/// structures that are easier to handle.
Chris Lattner49b301c2009-09-20 06:18:38 +0000108static void GetOptionInfo(SmallVectorImpl<Option*> &PositionalOpts,
109 SmallVectorImpl<Option*> &SinkOpts,
Benjamin Kramer461c8762009-09-19 10:01:45 +0000110 StringMap<Option*> &OptionsMap) {
Chris Lattner1908aea2009-09-20 06:21:43 +0000111 SmallVector<const char*, 16> OptionNames;
Chris Lattneree2b3202007-04-07 05:38:53 +0000112 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000113 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 Glushenkovbeb4d822008-04-28 16:44:25 +0000119
Chris Lattner9878d6a2007-04-06 21:06:55 +0000120 // Handle named options.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000121 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000122 // Add argument to the argument map!
Benjamin Kramer461c8762009-09-19 10:01:45 +0000123 if (OptionsMap.GetOrCreateValue(OptionNames[i], O).second != O) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000124 errs() << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman33540ad2008-05-30 13:26:11 +0000125 << OptionNames[i] << "' defined more than once!\n";
Chris Lattner9878d6a2007-04-06 21:06:55 +0000126 }
127 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000128
Chris Lattner9878d6a2007-04-06 21:06:55 +0000129 OptionNames.clear();
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000130
Chris Lattner9878d6a2007-04-06 21:06:55 +0000131 // Remember information about positional options.
132 if (O->getFormattingFlag() == cl::Positional)
133 PositionalOpts.push_back(O);
Dan Gohman61e015f2008-02-23 01:55:25 +0000134 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000135 SinkOpts.push_back(O);
Chris Lattner9878d6a2007-04-06 21:06:55 +0000136 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattneree2b3202007-04-07 05:38:53 +0000137 if (CAOpt)
Chris Lattner9878d6a2007-04-06 21:06:55 +0000138 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
Chris Lattneree2b3202007-04-07 05:38:53 +0000139 CAOpt = O;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000140 }
Chris Lattnere8e258b2002-07-29 20:58:42 +0000141 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000142
Chris Lattneree2b3202007-04-07 05:38:53 +0000143 if (CAOpt)
144 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000145
Chris Lattneree2b3202007-04-07 05:38:53 +0000146 // Make sure that they are in order of registration not backwards.
147 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
Chris Lattnere8e258b2002-07-29 20:58:42 +0000148}
149
Chris Lattner9878d6a2007-04-06 21:06:55 +0000150
Chris Lattneraf035f32007-04-05 21:58:17 +0000151/// LookupOption - Lookup the option specified by the specified option on the
152/// command line. If there is a value specified (after an equal sign) return
Chris Lattnerb1687372009-09-20 05:03:30 +0000153/// that as well. This assumes that leading dashes have already been stripped.
Chris Lattner8a7a0582009-09-20 02:02:24 +0000154static Option *LookupOption(StringRef &Arg, StringRef &Value,
155 const StringMap<Option*> &OptionsMap) {
Chris Lattner8a7a0582009-09-20 02:02:24 +0000156 // Reject all dashes.
157 if (Arg.empty()) return 0;
158
159 size_t EqualPos = Arg.find('=');
160
Chris Lattner4e247ec2009-09-20 01:53:12 +0000161 // If we have an equals sign, remember the value.
Chris Lattnerb1687372009-09-20 05:03:30 +0000162 if (EqualPos == StringRef::npos) {
163 // Look up the option.
164 StringMap<Option*>::const_iterator I = OptionsMap.find(Arg);
165 return I != OptionsMap.end() ? I->second : 0;
Chris Lattner8a7a0582009-09-20 02:02:24 +0000166 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000167
Chris Lattnerb1687372009-09-20 05:03:30 +0000168 // If the argument before the = is a valid option name, we match. If not,
169 // return Arg unmolested.
170 StringMap<Option*>::const_iterator I =
171 OptionsMap.find(Arg.substr(0, EqualPos));
172 if (I == OptionsMap.end()) return 0;
173
174 Value = Arg.substr(EqualPos+1);
175 Arg = Arg.substr(0, EqualPos);
176 return I->second;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000177}
178
Chris Lattnerb1687372009-09-20 05:03:30 +0000179
180
Chris Lattner341620b2009-09-20 01:49:31 +0000181/// ProvideOption - For Value, this differentiates between an empty value ("")
182/// and a null value (StringRef()). The later is accepted for arguments that
183/// don't allow a value (-foo) the former is rejected (-foo=).
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000184static inline bool ProvideOption(Option *Handler, StringRef ArgName,
Chris Lattner341620b2009-09-20 01:49:31 +0000185 StringRef Value, int argc, char **argv,
Chris Lattnercaccd762001-10-27 05:54:17 +0000186 int &i) {
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000187 // Is this a multi-argument option?
188 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
189
Chris Lattnercaccd762001-10-27 05:54:17 +0000190 // Enforce value requirements
191 switch (Handler->getValueExpectedFlag()) {
192 case ValueRequired:
Chris Lattner341620b2009-09-20 01:49:31 +0000193 if (Value.data() == 0) { // No value specified?
Chris Lattnerba112292009-09-20 00:07:40 +0000194 if (i+1 >= argc)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000195 return Handler->error("requires a value!");
Chris Lattnerba112292009-09-20 00:07:40 +0000196 // Steal the next argument, like for '-o filename'
197 Value = argv[++i];
Chris Lattnercaccd762001-10-27 05:54:17 +0000198 }
199 break;
200 case ValueDisallowed:
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000201 if (NumAdditionalVals > 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000202 return Handler->error("multi-valued option specified"
Chris Lattnerba112292009-09-20 00:07:40 +0000203 " with ValueDisallowed modifier!");
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000204
Chris Lattner341620b2009-09-20 01:49:31 +0000205 if (Value.data())
Benjamin Kramere6864c12009-08-02 12:13:02 +0000206 return Handler->error("does not allow a value! '" +
Chris Lattnera460beb2009-09-19 18:55:05 +0000207 Twine(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000208 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000209 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000210 break;
Chris Lattnerba112292009-09-20 00:07:40 +0000211
Misha Brukmanf976c852005-04-21 22:55:34 +0000212 default:
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000213 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000214 << ": Bad ValueMask flag! CommandLine usage error:"
215 << Handler->getValueExpectedFlag() << "\n";
Torok Edwinc23197a2009-07-14 16:55:14 +0000216 llvm_unreachable(0);
Chris Lattnercaccd762001-10-27 05:54:17 +0000217 }
218
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000219 // If this isn't a multi-arg option, just run the handler.
Chris Lattnera460beb2009-09-19 18:55:05 +0000220 if (NumAdditionalVals == 0)
Chris Lattner341620b2009-09-20 01:49:31 +0000221 return Handler->addOccurrence(i, ArgName, Value);
Chris Lattnera460beb2009-09-19 18:55:05 +0000222
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000223 // If it is, run the handle several times.
Chris Lattnera460beb2009-09-19 18:55:05 +0000224 bool MultiArg = false;
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000225
Chris Lattner341620b2009-09-20 01:49:31 +0000226 if (Value.data()) {
Chris Lattnera460beb2009-09-19 18:55:05 +0000227 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
228 return true;
229 --NumAdditionalVals;
230 MultiArg = true;
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000231 }
Chris Lattnera460beb2009-09-19 18:55:05 +0000232
233 while (NumAdditionalVals > 0) {
Chris Lattnera460beb2009-09-19 18:55:05 +0000234 if (i+1 >= argc)
235 return Handler->error("not enough values!");
236 Value = argv[++i];
237
238 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
239 return true;
240 MultiArg = true;
241 --NumAdditionalVals;
242 }
243 return false;
Chris Lattnercaccd762001-10-27 05:54:17 +0000244}
245
Chris Lattnerba112292009-09-20 00:07:40 +0000246static bool ProvidePositionalOption(Option *Handler, StringRef Arg, int i) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000247 int Dummy = i;
Chris Lattner341620b2009-09-20 01:49:31 +0000248 return ProvideOption(Handler, Handler->ArgStr, Arg, 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000249}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000250
Chris Lattner331de232002-07-22 02:07:59 +0000251
252// Option predicates...
253static inline bool isGrouping(const Option *O) {
254 return O->getFormattingFlag() == cl::Grouping;
255}
256static inline bool isPrefixedOrGrouping(const Option *O) {
257 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
258}
259
260// getOptionPred - Check to see if there are any options that satisfy the
261// specified predicate with names that are the prefixes in Name. This is
262// checked by progressively stripping characters off of the name, checking to
263// see if there options that satisfy the predicate. If we find one, return it,
264// otherwise return null.
265//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000266static Option *getOptionPred(StringRef Name, size_t &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000267 bool (*Pred)(const Option*),
Chris Lattnerb1687372009-09-20 05:03:30 +0000268 const StringMap<Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000269
Chris Lattnerb1687372009-09-20 05:03:30 +0000270 StringMap<Option*>::const_iterator OMI = OptionsMap.find(Name);
Chris Lattnerf78032f2001-11-26 18:58:34 +0000271
Chris Lattnerb1687372009-09-20 05:03:30 +0000272 // Loop while we haven't found an option and Name still has at least two
273 // characters in it (so that the next iteration will not be the empty
274 // string.
275 while (OMI == OptionsMap.end() && Name.size() > 1) {
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000276 Name = Name.substr(0, Name.size()-1); // Chop off the last character.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000277 OMI = OptionsMap.find(Name);
Chris Lattnerb1687372009-09-20 05:03:30 +0000278 }
Chris Lattner331de232002-07-22 02:07:59 +0000279
Chris Lattner9878d6a2007-04-06 21:06:55 +0000280 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000281 Length = Name.size();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000282 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000283 }
284 return 0; // No option found!
285}
286
Chris Lattnerb1687372009-09-20 05:03:30 +0000287/// HandlePrefixedOrGroupedOption - The specified argument string (which started
288/// with at least one '-') does not fully match an available option. Check to
289/// see if this is a prefix or grouped option. If so, split arg into output an
290/// Arg/Value pair and return the Option to parse it with.
291static Option *HandlePrefixedOrGroupedOption(StringRef &Arg, StringRef &Value,
292 bool &ErrorParsing,
293 const StringMap<Option*> &OptionsMap) {
294 if (Arg.size() == 1) return 0;
295
296 // Do the lookup!
297 size_t Length = 0;
298 Option *PGOpt = getOptionPred(Arg, Length, isPrefixedOrGrouping, OptionsMap);
299 if (PGOpt == 0) return 0;
300
301 // If the option is a prefixed option, then the value is simply the
302 // rest of the name... so fall through to later processing, by
303 // setting up the argument name flags and value fields.
304 if (PGOpt->getFormattingFlag() == cl::Prefix) {
305 Value = Arg.substr(Length);
306 Arg = Arg.substr(0, Length);
307 assert(OptionsMap.count(Arg) && OptionsMap.find(Arg)->second == PGOpt);
308 return PGOpt;
309 }
310
311 // This must be a grouped option... handle them now. Grouping options can't
312 // have values.
313 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
314
315 do {
316 // Move current arg name out of Arg into OneArgName.
317 StringRef OneArgName = Arg.substr(0, Length);
318 Arg = Arg.substr(Length);
319
320 // Because ValueRequired is an invalid flag for grouped arguments,
321 // we don't need to pass argc/argv in.
322 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
323 "Option can not be cl::Grouping AND cl::ValueRequired!");
324 int Dummy;
325 ErrorParsing |= ProvideOption(PGOpt, OneArgName,
326 StringRef(), 0, 0, Dummy);
327
328 // Get the next grouping option.
329 PGOpt = getOptionPred(Arg, Length, isGrouping, OptionsMap);
330 } while (PGOpt && Length != Arg.size());
331
332 // Return the last option with Arg cut down to just the last one.
333 return PGOpt;
334}
335
336
337
Chris Lattner331de232002-07-22 02:07:59 +0000338static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000339 return O->getNumOccurrencesFlag() == cl::Required ||
340 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000341}
342
343static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000344 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
345 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000346}
Chris Lattnercaccd762001-10-27 05:54:17 +0000347
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000348/// ParseCStringVector - Break INPUT up wherever one or more
349/// whitespace characters are found, and store the resulting tokens in
350/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
Chris Lattnerfb2674d2009-09-20 01:11:23 +0000351/// using strdup(), so it is the caller's responsibility to free()
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000352/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000353///
Jeffrey Yasskin1d75d3a2009-09-24 01:14:07 +0000354static void ParseCStringVector(std::vector<char *> &output,
355 const char *input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000356 // Characters which will be treated as token separators:
Jeffrey Yasskin1d75d3a2009-09-24 01:14:07 +0000357 static const char *const delims = " \v\f\t\r\n";
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000358
Jeffrey Yasskin1d75d3a2009-09-24 01:14:07 +0000359 std::string work(input);
360 // Skip past any delims at head of input string.
361 size_t pos = work.find_first_not_of(delims);
362 // If the string consists entirely of delims, then exit early.
363 if (pos == std::string::npos) return;
364 // Otherwise, jump forward to beginning of first word.
365 work = work.substr(pos);
366 // Find position of first delimiter.
367 pos = work.find_first_of(delims);
368
369 while (!work.empty() && pos != std::string::npos) {
370 // Everything from 0 to POS is the next word to copy.
371 output.push_back(strdup(work.substr(0,pos).c_str()));
372 // Is there another word in the string?
373 size_t nextpos = work.find_first_not_of(delims, pos + 1);
374 if (nextpos != std::string::npos) {
375 // Yes? Then remove delims from beginning ...
376 work = work.substr(work.find_first_not_of(delims, pos + 1));
377 // and find the end of the word.
378 pos = work.find_first_of(delims);
379 } else {
380 // No? (Remainder of string is delims.) End the loop.
381 work = "";
382 pos = std::string::npos;
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000383 }
384 }
Jeffrey Yasskin1d75d3a2009-09-24 01:14:07 +0000385
386 // If `input' ended with non-delim char, then we'll get here with
387 // the last word of `input' in `work'; copy it now.
388 if (!work.empty())
389 output.push_back(strdup(work.c_str()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000390}
391
392/// ParseEnvironmentOptions - An alternative entry point to the
393/// CommandLine library, which allows you to read the program's name
394/// from the caller (as PROGNAME) and its command-line arguments from
395/// an environment variable (whose name is given in ENVVAR).
396///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000397void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000398 const char *Overview, bool ReadResponseFiles) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000399 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000400 assert(progName && "Program name not specified");
401 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000402
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000403 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000404 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000405 if (!envValue)
406 return;
407
Brian Gaeke06b06c52003-08-14 22:00:59 +0000408 // Get program's "name", which we wouldn't know without the caller
409 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000410 std::vector<char*> newArgv;
411 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000412
413 // Parse the value of the environment variable into a "command line"
414 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000415 ParseCStringVector(newArgv, envValue);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000416 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000417 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000418
419 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000420 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
421 i != e; ++i)
Chris Lattnerfb2674d2009-09-20 01:11:23 +0000422 free(*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000423}
424
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000425
426/// ExpandResponseFiles - Copy the contents of argv into newArgv,
427/// substituting the contents of the response files for the arguments
428/// of type @file.
Chris Lattnerb1687372009-09-20 05:03:30 +0000429static void ExpandResponseFiles(unsigned argc, char** argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000430 std::vector<char*>& newArgv) {
Chris Lattnerb1687372009-09-20 05:03:30 +0000431 for (unsigned i = 1; i != argc; ++i) {
432 char *arg = argv[i];
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000433
434 if (arg[0] == '@') {
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000435 sys::PathWithStatus respFile(++arg);
436
437 // Check that the response file is not empty (mmap'ing empty
438 // files can be problematic).
439 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000440 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000441
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000442 // Mmap the response file into memory.
443 OwningPtr<MemoryBuffer>
444 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000445
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000446 // If we could open the file, parse its contents, otherwise
447 // pass the @file option verbatim.
Mikhail Glushenkov6c55b1c2009-01-28 03:46:22 +0000448
449 // TODO: we should also support recursive loading of response files,
450 // since this is how gcc behaves. (From their man page: "The file may
451 // itself contain additional @file options; any such options will be
452 // processed recursively.")
453
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000454 if (respFilePtr != 0) {
455 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
456 continue;
457 }
458 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000459 }
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000460 newArgv.push_back(strdup(arg));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000461 }
462}
463
Dan Gohman9a526322007-10-09 16:04:57 +0000464void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000465 const char *Overview, bool ReadResponseFiles) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000466 // Process all registered options.
Chris Lattner49b301c2009-09-20 06:18:38 +0000467 SmallVector<Option*, 4> PositionalOpts;
468 SmallVector<Option*, 4> SinkOpts;
Benjamin Kramer461c8762009-09-19 10:01:45 +0000469 StringMap<Option*> Opts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000470 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000471
Chris Lattner9878d6a2007-04-06 21:06:55 +0000472 assert((!Opts.empty() || !PositionalOpts.empty()) &&
473 "No options specified!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000474
475 // Expand response files.
476 std::vector<char*> newArgv;
477 if (ReadResponseFiles) {
478 newArgv.push_back(strdup(argv[0]));
479 ExpandResponseFiles(argc, argv, newArgv);
480 argv = &newArgv[0];
Evan Cheng34cd4a42008-05-05 18:30:58 +0000481 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000482 }
483
Chris Lattnerefa3da52006-10-13 00:06:24 +0000484 // Copy the program name into ProgName, making sure not to overflow it.
485 std::string ProgName = sys::Path(argv[0]).getLast();
486 if (ProgName.size() > 79) ProgName.resize(79);
487 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000488
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000489 ProgramOverview = Overview;
490 bool ErrorParsing = false;
491
Chris Lattner331de232002-07-22 02:07:59 +0000492 // Check out the positional arguments to collect information about them.
493 unsigned NumPositionalRequired = 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000494
Chris Lattnerde013242005-08-08 17:25:38 +0000495 // Determine whether or not there are an unlimited number of positionals
496 bool HasUnlimitedPositionals = false;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000497
Chris Lattner331de232002-07-22 02:07:59 +0000498 Option *ConsumeAfterOpt = 0;
499 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000500 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000501 assert(PositionalOpts.size() > 1 &&
502 "Cannot specify cl::ConsumeAfter without a positional argument!");
503 ConsumeAfterOpt = PositionalOpts[0];
504 }
505
506 // Calculate how many positional values are _required_.
507 bool UnboundedFound = false;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000508 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Chris Lattner331de232002-07-22 02:07:59 +0000509 i != e; ++i) {
510 Option *Opt = PositionalOpts[i];
511 if (RequiresValue(Opt))
512 ++NumPositionalRequired;
513 else if (ConsumeAfterOpt) {
514 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000515 // unless there is only one positional argument...
516 if (PositionalOpts.size() > 2)
517 ErrorParsing |=
Benjamin Kramere6864c12009-08-02 12:13:02 +0000518 Opt->error("error - this positional option will never be matched, "
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000519 "because it does not Require a value, and a "
520 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000521 } else if (UnboundedFound && !Opt->ArgStr[0]) {
522 // This option does not "require" a value... Make sure this option is
523 // not specified after an option that eats all extra arguments, or this
524 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000525 //
Benjamin Kramere6864c12009-08-02 12:13:02 +0000526 ErrorParsing |= Opt->error("error - option can never match, because "
Chris Lattner331de232002-07-22 02:07:59 +0000527 "another positional argument will match an "
528 "unbounded number of values, and this option"
529 " does not require a value!");
530 }
531 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
532 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000533 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000534 }
535
Reid Spencer1e13fd22004-08-13 19:47:30 +0000536 // PositionalVals - A vector of "positional" arguments we accumulate into
Chris Lattnerba112292009-09-20 00:07:40 +0000537 // the process at the end.
Chris Lattner331de232002-07-22 02:07:59 +0000538 //
Chris Lattnerba112292009-09-20 00:07:40 +0000539 SmallVector<std::pair<StringRef,unsigned>, 4> PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000540
Chris Lattner9cf3d472003-07-30 17:34:02 +0000541 // If the program has named positional arguments, and the name has been run
542 // across, keep track of which positional argument was named. Otherwise put
543 // the positional args into the PositionalVals list...
544 Option *ActivePositionalArg = 0;
545
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000546 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000547 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000548 for (int i = 1; i < argc; ++i) {
549 Option *Handler = 0;
Chris Lattner4e247ec2009-09-20 01:53:12 +0000550 StringRef Value;
Chris Lattner8a7a0582009-09-20 02:02:24 +0000551 StringRef ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000552
Chris Lattner69d6f132007-04-12 00:36:29 +0000553 // If the option list changed, this means that some command line
Chris Lattner159b0a432007-04-11 15:35:18 +0000554 // option has just been registered or deregistered. This can occur in
555 // response to things like -load, etc. If this happens, rescan the options.
Chris Lattner69d6f132007-04-12 00:36:29 +0000556 if (OptionListChanged) {
Chris Lattner159b0a432007-04-11 15:35:18 +0000557 PositionalOpts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000558 SinkOpts.clear();
Chris Lattner159b0a432007-04-11 15:35:18 +0000559 Opts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000560 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Chris Lattner69d6f132007-04-12 00:36:29 +0000561 OptionListChanged = false;
Chris Lattner159b0a432007-04-11 15:35:18 +0000562 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000563
Chris Lattner331de232002-07-22 02:07:59 +0000564 // Check to see if this is a positional argument. This argument is
565 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000566 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000567 //
568 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
569 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000570 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000571 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000572 continue; // We are done!
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000573 }
574
575 if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000576 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000577
578 // All of the positional arguments have been fulfulled, give the rest to
579 // the consume after option... if it's specified...
580 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000581 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000582 ConsumeAfterOpt != 0) {
583 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000584 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000585 break; // Handle outside of the argument processing loop...
586 }
587
588 // Delay processing positional arguments until the end...
589 continue;
590 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000591 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
592 !DashDashFound) {
593 DashDashFound = true; // This is the mythical "--"?
594 continue; // Don't try to process it as an argument itself.
595 } else if (ActivePositionalArg &&
596 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
597 // If there is a positional argument eating options, check to see if this
598 // option is another positional argument. If so, treat it as an argument,
599 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000600 ArgName = argv[i]+1;
Chris Lattnerb1687372009-09-20 05:03:30 +0000601 // Eat leading dashes.
602 while (!ArgName.empty() && ArgName[0] == '-')
603 ArgName = ArgName.substr(1);
604
Chris Lattner9878d6a2007-04-06 21:06:55 +0000605 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000606 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000607 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000608 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000609 }
610
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000611 } else { // We start with a '-', must be an argument.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000612 ArgName = argv[i]+1;
Chris Lattnerb1687372009-09-20 05:03:30 +0000613 // Eat leading dashes.
614 while (!ArgName.empty() && ArgName[0] == '-')
615 ArgName = ArgName.substr(1);
616
Chris Lattner9878d6a2007-04-06 21:06:55 +0000617 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000618
Chris Lattnerbf455c22004-05-06 22:04:31 +0000619 // Check to see if this "option" is really a prefixed or grouped argument.
Chris Lattnerb1687372009-09-20 05:03:30 +0000620 if (Handler == 0)
621 Handler = HandlePrefixedOrGroupedOption(ArgName, Value,
622 ErrorParsing, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000623 }
624
625 if (Handler == 0) {
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000626 if (SinkOpts.empty()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000627 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000628 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
629 ErrorParsing = true;
630 } else {
Chris Lattner49b301c2009-09-20 06:18:38 +0000631 for (SmallVectorImpl<Option*>::iterator I = SinkOpts.begin(),
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000632 E = SinkOpts.end(); I != E ; ++I)
633 (*I)->addOccurrence(i, "", argv[i]);
634 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000635 continue;
636 }
637
Chris Lattner72fb8e52003-05-22 20:26:17 +0000638 // Check to see if this option accepts a comma separated list of values. If
Chris Lattner341620b2009-09-20 01:49:31 +0000639 // it does, we have to split up the value into multiple values.
Chris Lattner4e247ec2009-09-20 01:53:12 +0000640 if (Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner341620b2009-09-20 01:49:31 +0000641 StringRef Val(Value);
642 StringRef::size_type Pos = Val.find(',');
Chris Lattner72fb8e52003-05-22 20:26:17 +0000643
Chris Lattner341620b2009-09-20 01:49:31 +0000644 while (Pos != StringRef::npos) {
645 // Process the portion before the comma.
646 ErrorParsing |= ProvideOption(Handler, ArgName, Val.substr(0, Pos),
Chris Lattner72fb8e52003-05-22 20:26:17 +0000647 argc, argv, i);
Chris Lattner341620b2009-09-20 01:49:31 +0000648 // Erase the portion before the comma, AND the comma.
649 Val = Val.substr(Pos+1);
Chris Lattner4e247ec2009-09-20 01:53:12 +0000650 Value.substr(Pos+1); // Increment the original value pointer as well.
Chris Lattner72fb8e52003-05-22 20:26:17 +0000651
Chris Lattner341620b2009-09-20 01:49:31 +0000652 // Check for another comma.
Chris Lattner72fb8e52003-05-22 20:26:17 +0000653 Pos = Val.find(',');
654 }
655 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000656
657 // If this is a named positional argument, just remember that it is the
658 // active one...
659 if (Handler->getFormattingFlag() == cl::Positional)
660 ActivePositionalArg = Handler;
Chris Lattner341620b2009-09-20 01:49:31 +0000661 else
Chris Lattner4e247ec2009-09-20 01:53:12 +0000662 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000663 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000664
Chris Lattner331de232002-07-22 02:07:59 +0000665 // Check and handle positional arguments now...
666 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000667 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000668 << ": Not enough positional command line arguments specified!\n"
669 << "Must specify at least " << NumPositionalRequired
670 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000671
Chris Lattner331de232002-07-22 02:07:59 +0000672 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000673 } else if (!HasUnlimitedPositionals
674 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000675 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000676 << ": Too many positional arguments specified!\n"
677 << "Can specify at most " << PositionalOpts.size()
678 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000679 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000680
681 } else if (ConsumeAfterOpt == 0) {
Chris Lattnerb1687372009-09-20 05:03:30 +0000682 // Positional args have already been handled if ConsumeAfter is specified.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000683 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
684 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner331de232002-07-22 02:07:59 +0000685 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000686 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000687 PositionalVals[ValNo].second);
688 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000689 --NumPositionalRequired; // We fulfilled our duty...
690 }
691
692 // If we _can_ give this option more arguments, do so now, as long as we
693 // do not give it values that others need. 'Done' controls whether the
694 // option even _WANTS_ any more.
695 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000696 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000697 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000698 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000699 case cl::Optional:
700 Done = true; // Optional arguments want _at most_ one value
701 // FALL THROUGH
702 case cl::ZeroOrMore: // Zero or more will take all they can get...
703 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000704 ProvidePositionalOption(PositionalOpts[i],
705 PositionalVals[ValNo].first,
706 PositionalVals[ValNo].second);
707 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000708 break;
709 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000710 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000711 "positional argument processing!");
712 }
713 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000714 }
Chris Lattner331de232002-07-22 02:07:59 +0000715 } else {
716 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
717 unsigned ValNo = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000718 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000719 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000720 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000721 PositionalVals[ValNo].first,
722 PositionalVals[ValNo].second);
723 ValNo++;
724 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000725
726 // Handle the case where there is just one positional option, and it's
727 // optional. In this case, we want to give JUST THE FIRST option to the
728 // positional option and keep the rest for the consume after. The above
729 // loop would have assigned no values to positional options in this case.
730 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000731 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000732 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000733 PositionalVals[ValNo].first,
734 PositionalVals[ValNo].second);
735 ValNo++;
736 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000737
Chris Lattner331de232002-07-22 02:07:59 +0000738 // Handle over all of the rest of the arguments to the
739 // cl::ConsumeAfter command line option...
740 for (; ValNo != PositionalVals.size(); ++ValNo)
741 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000742 PositionalVals[ValNo].first,
743 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000744 }
745
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000746 // Loop over args and make sure all required args are specified!
Benjamin Kramer461c8762009-09-19 10:01:45 +0000747 for (StringMap<Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000748 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000749 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000750 case Required:
751 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000752 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000753 I->second->error("must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000754 ErrorParsing = true;
755 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000756 // Fall through
757 default:
758 break;
759 }
760 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000761
Chris Lattner331de232002-07-22 02:07:59 +0000762 // Free all of the memory allocated to the map. Command line options may only
763 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000764 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000765 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000766 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000767
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000768 // Free the memory allocated by ExpandResponseFiles.
769 if (ReadResponseFiles) {
770 // Free all the strdup()ed strings.
771 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
772 i != e; ++i)
Chris Lattnerfd40d032009-09-20 07:16:54 +0000773 free(*i);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000774 }
775
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000776 // If we had an error processing our arguments, don't let the program execute
777 if (ErrorParsing) exit(1);
778}
779
780//===----------------------------------------------------------------------===//
781// Option Base class implementation
782//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000783
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000784bool Option::error(const Twine &Message, StringRef ArgName) {
785 if (ArgName.data() == 0) ArgName = ArgStr;
786 if (ArgName.empty())
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000787 errs() << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000788 else
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000789 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000790
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000791 errs() << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000792 return true;
793}
794
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000795bool Option::addOccurrence(unsigned pos, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000796 StringRef Value, bool MultiArg) {
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000797 if (!MultiArg)
798 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000799
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000800 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000801 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000802 if (NumOccurrences > 1)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000803 return error("may only occur zero or one times!", ArgName);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000804 break;
805 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000806 if (NumOccurrences > 1)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000807 return error("must occur exactly one time!", ArgName);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000808 // Fall through
809 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000810 case ZeroOrMore:
811 case ConsumeAfter: break;
Benjamin Kramere6864c12009-08-02 12:13:02 +0000812 default: return error("bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000813 }
814
Reid Spencer1e13fd22004-08-13 19:47:30 +0000815 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000816}
817
Chris Lattner331de232002-07-22 02:07:59 +0000818
819// getValueStr - Get the value description string, using "DefaultMsg" if nothing
820// has been specified yet.
821//
822static const char *getValueStr(const Option &O, const char *DefaultMsg) {
823 if (O.ValueStr[0] == 0) return DefaultMsg;
824 return O.ValueStr;
825}
826
827//===----------------------------------------------------------------------===//
828// cl::alias class implementation
829//
830
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000831// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000832size_t alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000833 return std::strlen(ArgStr)+6;
834}
835
Chris Lattnera0de8432006-04-28 05:36:25 +0000836// Print out the option for the alias.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000837void alias::printOptionInfo(size_t GlobalWidth) const {
838 size_t L = std::strlen(ArgStr);
Chris Lattnerb1687372009-09-20 05:03:30 +0000839 errs() << " -" << ArgStr;
840 errs().indent(GlobalWidth-L-6) << " - " << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000841}
842
843
Chris Lattner331de232002-07-22 02:07:59 +0000844
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000845//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000846// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000847//
848
Chris Lattner9b14eb52002-08-07 18:36:37 +0000849// basic_parser implementation
850//
851
852// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000853size_t basic_parser_impl::getOptionWidth(const Option &O) const {
854 size_t Len = std::strlen(O.ArgStr);
Chris Lattner9b14eb52002-08-07 18:36:37 +0000855 if (const char *ValName = getValueName())
856 Len += std::strlen(getValueStr(O, ValName))+3;
857
858 return Len + 6;
859}
860
Misha Brukmanf976c852005-04-21 22:55:34 +0000861// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000862// to-be-maintained width is specified.
863//
864void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000865 size_t GlobalWidth) const {
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000866 outs() << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000867
868 if (const char *ValName = getValueName())
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000869 outs() << "=<" << getValueStr(O, ValName) << '>';
Chris Lattner9b14eb52002-08-07 18:36:37 +0000870
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000871 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Chris Lattner9b14eb52002-08-07 18:36:37 +0000872}
873
874
875
876
Chris Lattner331de232002-07-22 02:07:59 +0000877// parser<bool> implementation
878//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000879bool parser<bool>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000880 StringRef Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000881 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000882 Arg == "1") {
883 Value = true;
Chris Lattnera460beb2009-09-19 18:55:05 +0000884 return false;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000885 }
Chris Lattnera460beb2009-09-19 18:55:05 +0000886
887 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
888 Value = false;
889 return false;
890 }
891 return O.error("'" + Arg +
892 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000893}
894
Dale Johannesen81da02b2007-05-22 17:14:46 +0000895// parser<boolOrDefault> implementation
896//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000897bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000898 StringRef Arg, boolOrDefault &Value) {
Dale Johannesen81da02b2007-05-22 17:14:46 +0000899 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
900 Arg == "1") {
901 Value = BOU_TRUE;
Chris Lattnera460beb2009-09-19 18:55:05 +0000902 return false;
Dale Johannesen81da02b2007-05-22 17:14:46 +0000903 }
Chris Lattnera460beb2009-09-19 18:55:05 +0000904 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
905 Value = BOU_FALSE;
906 return false;
907 }
908
909 return O.error("'" + Arg +
910 "' is invalid value for boolean argument! Try 0 or 1");
Dale Johannesen81da02b2007-05-22 17:14:46 +0000911}
912
Chris Lattner331de232002-07-22 02:07:59 +0000913// parser<int> implementation
914//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000915bool parser<int>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000916 StringRef Arg, int &Value) {
Chris Lattner970e7df2009-09-19 23:59:02 +0000917 if (Arg.getAsInteger(0, Value))
Benjamin Kramere6864c12009-08-02 12:13:02 +0000918 return O.error("'" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000919 return false;
920}
921
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000922// parser<unsigned> implementation
923//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000924bool parser<unsigned>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000925 StringRef Arg, unsigned &Value) {
Chris Lattner970e7df2009-09-19 23:59:02 +0000926
927 if (Arg.getAsInteger(0, Value))
Benjamin Kramere6864c12009-08-02 12:13:02 +0000928 return O.error("'" + Arg + "' value invalid for uint argument!");
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000929 return false;
930}
931
Chris Lattner9b14eb52002-08-07 18:36:37 +0000932// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000933//
Chris Lattnera460beb2009-09-19 18:55:05 +0000934static bool parseDouble(Option &O, StringRef Arg, double &Value) {
Chris Lattner970e7df2009-09-19 23:59:02 +0000935 SmallString<32> TmpStr(Arg.begin(), Arg.end());
936 const char *ArgStart = TmpStr.c_str();
Chris Lattner331de232002-07-22 02:07:59 +0000937 char *End;
938 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000939 if (*End != 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000940 return O.error("'" + Arg + "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000941 return false;
942}
943
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000944bool parser<double>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000945 StringRef Arg, double &Val) {
Chris Lattner9b14eb52002-08-07 18:36:37 +0000946 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000947}
948
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000949bool parser<float>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000950 StringRef Arg, float &Val) {
Chris Lattner9b14eb52002-08-07 18:36:37 +0000951 double dVal;
952 if (parseDouble(O, Arg, dVal))
953 return true;
954 Val = (float)dVal;
955 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000956}
957
958
Chris Lattner331de232002-07-22 02:07:59 +0000959
960// generic_parser_base implementation
961//
962
Chris Lattneraa852bb2002-07-23 17:15:12 +0000963// findOption - Return the option number corresponding to the specified
964// argument string. If the option is not found, getNumOptions() is returned.
965//
966unsigned generic_parser_base::findOption(const char *Name) {
Benjamin Kramer461c8762009-09-19 10:01:45 +0000967 unsigned e = getNumOptions();
Chris Lattneraa852bb2002-07-23 17:15:12 +0000968
Benjamin Kramer461c8762009-09-19 10:01:45 +0000969 for (unsigned i = 0; i != e; ++i) {
970 if (strcmp(getOption(i), Name) == 0)
Chris Lattneraa852bb2002-07-23 17:15:12 +0000971 return i;
Benjamin Kramer461c8762009-09-19 10:01:45 +0000972 }
Chris Lattneraa852bb2002-07-23 17:15:12 +0000973 return e;
974}
975
976
Chris Lattner331de232002-07-22 02:07:59 +0000977// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000978size_t generic_parser_base::getOptionWidth(const Option &O) const {
Chris Lattner331de232002-07-22 02:07:59 +0000979 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000980 size_t Size = std::strlen(O.ArgStr)+6;
Chris Lattner331de232002-07-22 02:07:59 +0000981 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000982 Size = std::max(Size, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000983 return Size;
984 } else {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000985 size_t BaseSize = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000986 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000987 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000988 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000989 }
990}
991
Misha Brukmanf976c852005-04-21 22:55:34 +0000992// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +0000993// to-be-maintained width is specified.
994//
995void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000996 size_t GlobalWidth) const {
Chris Lattner331de232002-07-22 02:07:59 +0000997 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000998 size_t L = std::strlen(O.ArgStr);
Chris Lattnerb1687372009-09-20 05:03:30 +0000999 outs() << " -" << O.ArgStr;
1000 outs().indent(GlobalWidth-L-6) << " - " << O.HelpStr << '\n';
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001001
Chris Lattner331de232002-07-22 02:07:59 +00001002 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001003 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattnerb1687372009-09-20 05:03:30 +00001004 outs() << " =" << getOption(i);
1005 outs().indent(NumSpaces) << " - " << getDescription(i) << '\n';
Chris Lattner9c9be482002-01-31 00:42:56 +00001006 }
Chris Lattner331de232002-07-22 02:07:59 +00001007 } else {
1008 if (O.HelpStr[0])
Chris Lattnerb1687372009-09-20 05:03:30 +00001009 outs() << " " << O.HelpStr << '\n';
Chris Lattner331de232002-07-22 02:07:59 +00001010 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001011 size_t L = std::strlen(getOption(i));
Chris Lattnerb1687372009-09-20 05:03:30 +00001012 outs() << " -" << getOption(i);
1013 outs().indent(GlobalWidth-L-8) << " - " << getDescription(i) << '\n';
Chris Lattner331de232002-07-22 02:07:59 +00001014 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001015 }
1016}
1017
1018
1019//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +00001020// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001021//
Reid Spencerad0846b2004-11-14 22:04:00 +00001022
Chris Lattner0fd48b12009-09-20 05:37:24 +00001023static int OptNameCompare(const void *LHS, const void *RHS) {
1024 typedef std::pair<const char *, Option*> pair_ty;
1025
1026 return strcmp(((pair_ty*)LHS)->first, ((pair_ty*)RHS)->first);
1027}
1028
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001029namespace {
1030
Chris Lattner331de232002-07-22 02:07:59 +00001031class HelpPrinter {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001032 size_t MaxArgLen;
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001033 const Option *EmptyArg;
1034 const bool ShowHidden;
1035
Chris Lattner331de232002-07-22 02:07:59 +00001036public:
Dan Gohman950a4c42008-03-25 22:06:05 +00001037 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Chris Lattner331de232002-07-22 02:07:59 +00001038 EmptyArg = 0;
1039 }
1040
1041 void operator=(bool Value) {
1042 if (Value == false) return;
1043
Chris Lattner9878d6a2007-04-06 21:06:55 +00001044 // Get all the options.
Chris Lattner49b301c2009-09-20 06:18:38 +00001045 SmallVector<Option*, 4> PositionalOpts;
1046 SmallVector<Option*, 4> SinkOpts;
Benjamin Kramer461c8762009-09-19 10:01:45 +00001047 StringMap<Option*> OptMap;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001048 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001049
Chris Lattner67aead62009-09-20 05:12:14 +00001050 // Copy Options into a vector so we can sort them as we like.
Chris Lattner0fd48b12009-09-20 05:37:24 +00001051 SmallVector<std::pair<const char *, Option*>, 128> Opts;
Chris Lattnerd0062c62009-09-20 05:22:52 +00001052 SmallPtrSet<Option*, 128> OptionSet; // Duplicate option detection.
1053
Benjamin Kramer461c8762009-09-19 10:01:45 +00001054 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1055 I != E; ++I) {
Chris Lattner081bcb02009-09-20 05:18:28 +00001056 // Ignore really-hidden options.
1057 if (I->second->getOptionHiddenFlag() == ReallyHidden)
1058 continue;
1059
1060 // Unless showhidden is set, ignore hidden flags.
1061 if (I->second->getOptionHiddenFlag() == Hidden && !ShowHidden)
1062 continue;
1063
Chris Lattnerd0062c62009-09-20 05:22:52 +00001064 // If we've already seen this option, don't add it to the list again.
Chris Lattner0fd48b12009-09-20 05:37:24 +00001065 if (!OptionSet.insert(I->second))
Chris Lattnerd0062c62009-09-20 05:22:52 +00001066 continue;
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001067
Chris Lattner0fd48b12009-09-20 05:37:24 +00001068 Opts.push_back(std::pair<const char *, Option*>(I->getKey().data(),
1069 I->second));
Chris Lattner331de232002-07-22 02:07:59 +00001070 }
Chris Lattner0fd48b12009-09-20 05:37:24 +00001071
1072 // Sort the options list alphabetically.
1073 qsort(Opts.data(), Opts.size(), sizeof(Opts[0]), OptNameCompare);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001074
1075 if (ProgramOverview)
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001076 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001077
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001078 outs() << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +00001079
Chris Lattner90aa8392006-10-04 21:52:35 +00001080 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +00001081 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001082 if (!PositionalOpts.empty() &&
Chris Lattner9878d6a2007-04-06 21:06:55 +00001083 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1084 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +00001085
Evan Cheng34cd4a42008-05-05 18:30:58 +00001086 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +00001087 if (PositionalOpts[i]->ArgStr[0])
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001088 outs() << " --" << PositionalOpts[i]->ArgStr;
1089 outs() << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +00001090 }
Chris Lattner331de232002-07-22 02:07:59 +00001091
1092 // Print the consume after option info if it exists...
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001093 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +00001094
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001095 outs() << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001096
1097 // Compute the maximum argument length...
1098 MaxArgLen = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +00001099 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner0fd48b12009-09-20 05:37:24 +00001100 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001101
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001102 outs() << "OPTIONS:\n";
Evan Cheng34cd4a42008-05-05 18:30:58 +00001103 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner0fd48b12009-09-20 05:37:24 +00001104 Opts[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001105
Chris Lattnerc540ebb2004-11-19 17:08:15 +00001106 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +00001107 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1108 E = MoreHelp->end(); I != E; ++I)
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001109 outs() << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +00001110 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +00001111
Reid Spencer9bbba0912004-11-16 06:11:52 +00001112 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +00001113 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001114 }
1115};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001116} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001117
Chris Lattner331de232002-07-22 02:07:59 +00001118// Define the two HelpPrinter instances that are used to print out help, or
1119// help-hidden...
1120//
Chris Lattner500d8bf2006-10-12 22:09:17 +00001121static HelpPrinter NormalPrinter(false);
1122static HelpPrinter HiddenPrinter(true);
Chris Lattner331de232002-07-22 02:07:59 +00001123
Chris Lattner500d8bf2006-10-12 22:09:17 +00001124static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001125HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001126 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +00001127
Chris Lattner500d8bf2006-10-12 22:09:17 +00001128static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001129HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001130 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001131
Chris Lattner500d8bf2006-10-12 22:09:17 +00001132static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +00001133
Chris Lattnerbc2d9d32009-09-20 05:53:47 +00001134static int TargetArraySortFn(const void *LHS, const void *RHS) {
1135 typedef std::pair<const char *, const Target*> pair_ty;
1136 return strcmp(((const pair_ty*)LHS)->first, ((const pair_ty*)RHS)->first);
1137}
1138
Chris Lattner500d8bf2006-10-12 22:09:17 +00001139namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +00001140class VersionPrinter {
1141public:
Devang Patelaed293d2007-02-01 01:43:37 +00001142 void print() {
Chris Lattner49b301c2009-09-20 06:18:38 +00001143 raw_ostream &OS = outs();
1144 OS << "Low Level Virtual Machine (http://llvm.org/):\n"
1145 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001146#ifdef LLVM_VERSION_INFO
Chris Lattner49b301c2009-09-20 06:18:38 +00001147 OS << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +00001148#endif
Chris Lattner49b301c2009-09-20 06:18:38 +00001149 OS << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001150#ifndef __OPTIMIZE__
Chris Lattner49b301c2009-09-20 06:18:38 +00001151 OS << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001152#else
Chris Lattner49b301c2009-09-20 06:18:38 +00001153 OS << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001154#endif
1155#ifndef NDEBUG
Chris Lattner49b301c2009-09-20 06:18:38 +00001156 OS << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001157#endif
Chris Lattner49b301c2009-09-20 06:18:38 +00001158 OS << ".\n"
1159 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
1160 << " Host: " << sys::getHostTriple() << '\n'
1161 << '\n'
1162 << " Registered Targets:\n";
Daniel Dunbar603bea32009-07-16 02:06:09 +00001163
Chris Lattnerbc2d9d32009-09-20 05:53:47 +00001164 std::vector<std::pair<const char *, const Target*> > Targets;
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001165 size_t Width = 0;
1166 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1167 ie = TargetRegistry::end(); it != ie; ++it) {
1168 Targets.push_back(std::make_pair(it->getName(), &*it));
Chris Lattnerbc2d9d32009-09-20 05:53:47 +00001169 Width = std::max(Width, strlen(Targets.back().first));
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001170 }
Chris Lattnerbc2d9d32009-09-20 05:53:47 +00001171 if (!Targets.empty())
1172 qsort(&Targets[0], Targets.size(), sizeof(Targets[0]),
1173 TargetArraySortFn);
Daniel Dunbar77454a22009-07-26 05:09:50 +00001174
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001175 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
Chris Lattner49b301c2009-09-20 06:18:38 +00001176 OS << " " << Targets[i].first;
1177 OS.indent(Width - strlen(Targets[i].first)) << " - "
Chris Lattnerb1687372009-09-20 05:03:30 +00001178 << Targets[i].second->getShortDescription() << '\n';
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001179 }
1180 if (Targets.empty())
Chris Lattner49b301c2009-09-20 06:18:38 +00001181 OS << " (none)\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001182 }
1183 void operator=(bool OptionWasSpecified) {
Chris Lattner043b8b52009-09-20 05:48:01 +00001184 if (!OptionWasSpecified) return;
1185
1186 if (OverrideVersionPrinter == 0) {
1187 print();
1188 exit(1);
Reid Spencer515b5b32006-06-05 16:22:56 +00001189 }
Chris Lattner043b8b52009-09-20 05:48:01 +00001190 (*OverrideVersionPrinter)();
1191 exit(1);
Reid Spencer515b5b32006-06-05 16:22:56 +00001192 }
1193};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001194} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001195
1196
Reid Spencer69105f32004-08-04 00:36:06 +00001197// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001198static VersionPrinter VersionPrinterInstance;
1199
1200static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001201VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001202 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1203
Reid Spencer9bbba0912004-11-16 06:11:52 +00001204// Utility function for printing the help message.
1205void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001206 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001207 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1208 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001209 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001210 // --help option was given or not. Since we're circumventing that we have
1211 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001212 NormalPrinter = true;
1213}
Reid Spencer515b5b32006-06-05 16:22:56 +00001214
Devang Patelaed293d2007-02-01 01:43:37 +00001215/// Utility function for printing version number.
1216void cl::PrintVersionMessage() {
1217 VersionPrinterInstance.print();
1218}
1219
Reid Spencer515b5b32006-06-05 16:22:56 +00001220void cl::SetVersionPrinter(void (*func)()) {
1221 OverrideVersionPrinter = func;
1222}