blob: 12f76171ed80f88a3cde94087cad6ff45cdfc5b7 [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"
Sandeep Patel8e51aeb2009-11-11 03:23:46 +000020#include "llvm/Support/Debug.h"
Edwin Törökced9ff82009-07-11 13:10:19 +000021#include "llvm/Support/ErrorHandling.h"
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +000022#include "llvm/Support/MemoryBuffer.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/Support/ManagedStatic.h"
Chris Lattner9cb435b2009-08-23 18:09:02 +000024#include "llvm/Support/raw_ostream.h"
Daniel Dunbar9b3edb62009-07-16 02:06:09 +000025#include "llvm/Target/TargetRegistry.h"
Daniel Dunbar401011e2009-09-02 23:52:38 +000026#include "llvm/System/Host.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/System/Path.h"
Chris Lattner9cb435b2009-08-23 18:09:02 +000028#include "llvm/ADT/OwningPtr.h"
Chris Lattner97be18f2009-09-20 05:12:14 +000029#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner717f7732009-09-19 23:59:02 +000030#include "llvm/ADT/SmallString.h"
Chris Lattner97be18f2009-09-20 05:12:14 +000031#include "llvm/ADT/StringMap.h"
Chris Lattner47d05cb2009-09-19 18:55:05 +000032#include "llvm/ADT/Twine.h"
Chris Lattner9cb435b2009-08-23 18:09:02 +000033#include "llvm/Config/config.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include <cerrno>
Chris Lattner9cb435b2009-08-23 18:09:02 +000035#include <cstdlib>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036using namespace llvm;
37using namespace cl;
38
39//===----------------------------------------------------------------------===//
40// Template instantiations and anchors.
41//
42TEMPLATE_INSTANTIATION(class basic_parser<bool>);
43TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
44TEMPLATE_INSTANTIATION(class basic_parser<int>);
45TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
46TEMPLATE_INSTANTIATION(class basic_parser<double>);
47TEMPLATE_INSTANTIATION(class basic_parser<float>);
48TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
Bill Wendlingf0d2d952009-04-29 23:26:16 +000049TEMPLATE_INSTANTIATION(class basic_parser<char>);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050
51TEMPLATE_INSTANTIATION(class opt<unsigned>);
52TEMPLATE_INSTANTIATION(class opt<int>);
53TEMPLATE_INSTANTIATION(class opt<std::string>);
Bill Wendlingf0d2d952009-04-29 23:26:16 +000054TEMPLATE_INSTANTIATION(class opt<char>);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055TEMPLATE_INSTANTIATION(class opt<bool>);
56
57void Option::anchor() {}
58void basic_parser_impl::anchor() {}
59void parser<bool>::anchor() {}
60void parser<boolOrDefault>::anchor() {}
61void parser<int>::anchor() {}
62void parser<unsigned>::anchor() {}
63void parser<double>::anchor() {}
64void parser<float>::anchor() {}
65void parser<std::string>::anchor() {}
Bill Wendlingf0d2d952009-04-29 23:26:16 +000066void parser<char>::anchor() {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067
68//===----------------------------------------------------------------------===//
69
70// Globals for name and overview of program. Program name is not a string to
71// avoid static ctor/dtor issues.
72static char ProgramName[80] = "<premain>";
73static const char *ProgramOverview = 0;
74
75// This collects additional help to be printed.
76static ManagedStatic<std::vector<const char*> > MoreHelp;
77
78extrahelp::extrahelp(const char *Help)
79 : morehelp(Help) {
80 MoreHelp->push_back(Help);
81}
82
83static bool OptionListChanged = false;
84
85// MarkOptionsChanged - Internal helper function.
86void cl::MarkOptionsChanged() {
87 OptionListChanged = true;
88}
89
90/// RegisteredOptionList - This is the list of the command line options that
91/// have statically constructed themselves.
92static Option *RegisteredOptionList = 0;
93
94void Option::addArgument() {
95 assert(NextRegistered == 0 && "argument multiply registered!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +000096
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097 NextRegistered = RegisteredOptionList;
98 RegisteredOptionList = this;
99 MarkOptionsChanged();
100}
101
102
103//===----------------------------------------------------------------------===//
104// Basic, shared command line option processing machinery.
105//
106
107/// GetOptionInfo - Scan the list of registered options, turning them into data
108/// structures that are easier to handle.
Chris Lattner3d211b22009-09-20 06:18:38 +0000109static void GetOptionInfo(SmallVectorImpl<Option*> &PositionalOpts,
110 SmallVectorImpl<Option*> &SinkOpts,
Benjamin Kramer48086602009-09-19 10:01:45 +0000111 StringMap<Option*> &OptionsMap) {
Chris Lattnere4a6ac92009-09-20 06:21:43 +0000112 SmallVector<const char*, 16> OptionNames;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
114 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
115 // If this option wants to handle multiple option names, get the full set.
116 // This handles enum options like "-O1 -O2" etc.
117 O->getExtraOptionNames(OptionNames);
118 if (O->ArgStr[0])
119 OptionNames.push_back(O->ArgStr);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000120
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121 // Handle named options.
Evan Cheng591bfc82008-05-05 18:30:58 +0000122 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 // Add argument to the argument map!
Benjamin Kramer48086602009-09-19 10:01:45 +0000124 if (OptionsMap.GetOrCreateValue(OptionNames[i], O).second != O) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000125 errs() << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman5e270092008-05-30 13:26:11 +0000126 << OptionNames[i] << "' defined more than once!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 }
128 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000129
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 OptionNames.clear();
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000131
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 // Remember information about positional options.
133 if (O->getFormattingFlag() == cl::Positional)
134 PositionalOpts.push_back(O);
Dan Gohmane411a2d2008-02-23 01:55:25 +0000135 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000136 SinkOpts.push_back(O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
138 if (CAOpt)
139 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
140 CAOpt = O;
141 }
142 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000143
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000144 if (CAOpt)
145 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000146
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 // Make sure that they are in order of registration not backwards.
148 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
149}
150
151
152/// LookupOption - Lookup the option specified by the specified option on the
153/// command line. If there is a value specified (after an equal sign) return
Chris Lattnerd516d022009-09-20 05:03:30 +0000154/// that as well. This assumes that leading dashes have already been stripped.
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000155static Option *LookupOption(StringRef &Arg, StringRef &Value,
156 const StringMap<Option*> &OptionsMap) {
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000157 // Reject all dashes.
158 if (Arg.empty()) return 0;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000159
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000160 size_t EqualPos = Arg.find('=');
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000161
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000162 // If we have an equals sign, remember the value.
Chris Lattnerd516d022009-09-20 05:03:30 +0000163 if (EqualPos == StringRef::npos) {
164 // Look up the option.
165 StringMap<Option*>::const_iterator I = OptionsMap.find(Arg);
166 return I != OptionsMap.end() ? I->second : 0;
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000167 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000168
Chris Lattnerd516d022009-09-20 05:03:30 +0000169 // If the argument before the = is a valid option name, we match. If not,
170 // return Arg unmolested.
171 StringMap<Option*>::const_iterator I =
172 OptionsMap.find(Arg.substr(0, EqualPos));
173 if (I == OptionsMap.end()) return 0;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000174
Chris Lattnerd516d022009-09-20 05:03:30 +0000175 Value = Arg.substr(EqualPos+1);
176 Arg = Arg.substr(0, EqualPos);
177 return I->second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178}
179
Mikhail Glushenkovc8cb0d92009-11-20 17:23:17 +0000180/// CommaSeparateAndAddOccurence - A wrapper around Handler->addOccurence() that
181/// does special handling of cl::CommaSeparated options.
182static bool CommaSeparateAndAddOccurence(Option *Handler, unsigned pos,
183 StringRef ArgName,
184 StringRef Value, bool MultiArg = false)
185{
186 // Check to see if this option accepts a comma separated list of values. If
187 // it does, we have to split up the value into multiple values.
188 if (Handler->getMiscFlags() & CommaSeparated) {
189 StringRef Val(Value);
190 StringRef::size_type Pos = Val.find(',');
Chris Lattnerd516d022009-09-20 05:03:30 +0000191
Mikhail Glushenkovc8cb0d92009-11-20 17:23:17 +0000192 while (Pos != StringRef::npos) {
193 // Process the portion before the comma.
194 if (Handler->addOccurrence(pos, ArgName, Val.substr(0, Pos), MultiArg))
195 return true;
196 // Erase the portion before the comma, AND the comma.
197 Val = Val.substr(Pos+1);
198 Value.substr(Pos+1); // Increment the original value pointer as well.
199 // Check for another comma.
200 Pos = Val.find(',');
201 }
202
203 Value = Val;
204 }
205
206 if (Handler->addOccurrence(pos, ArgName, Value, MultiArg))
207 return true;
208
209 return false;
210}
Chris Lattnerd516d022009-09-20 05:03:30 +0000211
Chris Lattner4627c682009-09-20 01:49:31 +0000212/// ProvideOption - For Value, this differentiates between an empty value ("")
213/// and a null value (StringRef()). The later is accepted for arguments that
214/// don't allow a value (-foo) the former is rejected (-foo=).
Chris Lattner157229d2009-09-20 00:40:49 +0000215static inline bool ProvideOption(Option *Handler, StringRef ArgName,
Chris Lattner4627c682009-09-20 01:49:31 +0000216 StringRef Value, int argc, char **argv,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 int &i) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000218 // Is this a multi-argument option?
219 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
220
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 // Enforce value requirements
222 switch (Handler->getValueExpectedFlag()) {
223 case ValueRequired:
Chris Lattner4627c682009-09-20 01:49:31 +0000224 if (Value.data() == 0) { // No value specified?
Chris Lattner747e01e2009-09-20 00:07:40 +0000225 if (i+1 >= argc)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000226 return Handler->error("requires a value!");
Chris Lattner747e01e2009-09-20 00:07:40 +0000227 // Steal the next argument, like for '-o filename'
228 Value = argv[++i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 }
230 break;
231 case ValueDisallowed:
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000232 if (NumAdditionalVals > 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000233 return Handler->error("multi-valued option specified"
Chris Lattner747e01e2009-09-20 00:07:40 +0000234 " with ValueDisallowed modifier!");
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000235
Chris Lattner4627c682009-09-20 01:49:31 +0000236 if (Value.data())
Benjamin Kramer9164c672009-08-02 12:13:02 +0000237 return Handler->error("does not allow a value! '" +
Chris Lattner47d05cb2009-09-19 18:55:05 +0000238 Twine(Value) + "' specified.");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239 break;
240 case ValueOptional:
241 break;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000242
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 default:
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000244 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 << ": Bad ValueMask flag! CommandLine usage error:"
246 << Handler->getValueExpectedFlag() << "\n";
Edwin Törökbd448e32009-07-14 16:55:14 +0000247 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248 }
249
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000250 // If this isn't a multi-arg option, just run the handler.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000251 if (NumAdditionalVals == 0)
Mikhail Glushenkovc8cb0d92009-11-20 17:23:17 +0000252 return CommaSeparateAndAddOccurence(Handler, i, ArgName, Value);
Chris Lattner47d05cb2009-09-19 18:55:05 +0000253
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000254 // If it is, run the handle several times.
Chris Lattner47d05cb2009-09-19 18:55:05 +0000255 bool MultiArg = false;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000256
Chris Lattner4627c682009-09-20 01:49:31 +0000257 if (Value.data()) {
Mikhail Glushenkovc8cb0d92009-11-20 17:23:17 +0000258 if (CommaSeparateAndAddOccurence(Handler, i, ArgName, Value, MultiArg))
Chris Lattner47d05cb2009-09-19 18:55:05 +0000259 return true;
260 --NumAdditionalVals;
261 MultiArg = true;
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000262 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000263
264 while (NumAdditionalVals > 0) {
Chris Lattner47d05cb2009-09-19 18:55:05 +0000265 if (i+1 >= argc)
266 return Handler->error("not enough values!");
267 Value = argv[++i];
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000268
Mikhail Glushenkovc8cb0d92009-11-20 17:23:17 +0000269 if (CommaSeparateAndAddOccurence(Handler, i, ArgName, Value, MultiArg))
Chris Lattner47d05cb2009-09-19 18:55:05 +0000270 return true;
271 MultiArg = true;
272 --NumAdditionalVals;
273 }
274 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275}
276
Chris Lattner747e01e2009-09-20 00:07:40 +0000277static bool ProvidePositionalOption(Option *Handler, StringRef Arg, int i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 int Dummy = i;
Chris Lattner4627c682009-09-20 01:49:31 +0000279 return ProvideOption(Handler, Handler->ArgStr, Arg, 0, 0, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000280}
281
282
283// Option predicates...
284static inline bool isGrouping(const Option *O) {
285 return O->getFormattingFlag() == cl::Grouping;
286}
287static inline bool isPrefixedOrGrouping(const Option *O) {
288 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
289}
290
291// getOptionPred - Check to see if there are any options that satisfy the
292// specified predicate with names that are the prefixes in Name. This is
293// checked by progressively stripping characters off of the name, checking to
294// see if there options that satisfy the predicate. If we find one, return it,
295// otherwise return null.
296//
Chris Lattner157229d2009-09-20 00:40:49 +0000297static Option *getOptionPred(StringRef Name, size_t &Length,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000298 bool (*Pred)(const Option*),
Chris Lattnerd516d022009-09-20 05:03:30 +0000299 const StringMap<Option*> &OptionsMap) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300
Chris Lattnerd516d022009-09-20 05:03:30 +0000301 StringMap<Option*>::const_iterator OMI = OptionsMap.find(Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302
Chris Lattnerd516d022009-09-20 05:03:30 +0000303 // Loop while we haven't found an option and Name still has at least two
304 // characters in it (so that the next iteration will not be the empty
305 // string.
306 while (OMI == OptionsMap.end() && Name.size() > 1) {
Chris Lattner157229d2009-09-20 00:40:49 +0000307 Name = Name.substr(0, Name.size()-1); // Chop off the last character.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308 OMI = OptionsMap.find(Name);
Chris Lattnerd516d022009-09-20 05:03:30 +0000309 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000310
311 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner157229d2009-09-20 00:40:49 +0000312 Length = Name.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313 return OMI->second; // Found one!
314 }
315 return 0; // No option found!
316}
317
Chris Lattnerd516d022009-09-20 05:03:30 +0000318/// HandlePrefixedOrGroupedOption - The specified argument string (which started
319/// with at least one '-') does not fully match an available option. Check to
320/// see if this is a prefix or grouped option. If so, split arg into output an
321/// Arg/Value pair and return the Option to parse it with.
322static Option *HandlePrefixedOrGroupedOption(StringRef &Arg, StringRef &Value,
323 bool &ErrorParsing,
324 const StringMap<Option*> &OptionsMap) {
325 if (Arg.size() == 1) return 0;
326
327 // Do the lookup!
328 size_t Length = 0;
329 Option *PGOpt = getOptionPred(Arg, Length, isPrefixedOrGrouping, OptionsMap);
330 if (PGOpt == 0) return 0;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000331
Chris Lattnerd516d022009-09-20 05:03:30 +0000332 // If the option is a prefixed option, then the value is simply the
333 // rest of the name... so fall through to later processing, by
334 // setting up the argument name flags and value fields.
335 if (PGOpt->getFormattingFlag() == cl::Prefix) {
336 Value = Arg.substr(Length);
337 Arg = Arg.substr(0, Length);
338 assert(OptionsMap.count(Arg) && OptionsMap.find(Arg)->second == PGOpt);
339 return PGOpt;
340 }
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000341
Chris Lattnerd516d022009-09-20 05:03:30 +0000342 // This must be a grouped option... handle them now. Grouping options can't
343 // have values.
344 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000345
Chris Lattnerd516d022009-09-20 05:03:30 +0000346 do {
347 // Move current arg name out of Arg into OneArgName.
348 StringRef OneArgName = Arg.substr(0, Length);
349 Arg = Arg.substr(Length);
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000350
Chris Lattnerd516d022009-09-20 05:03:30 +0000351 // Because ValueRequired is an invalid flag for grouped arguments,
352 // we don't need to pass argc/argv in.
353 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
354 "Option can not be cl::Grouping AND cl::ValueRequired!");
355 int Dummy;
356 ErrorParsing |= ProvideOption(PGOpt, OneArgName,
357 StringRef(), 0, 0, Dummy);
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000358
Chris Lattnerd516d022009-09-20 05:03:30 +0000359 // Get the next grouping option.
360 PGOpt = getOptionPred(Arg, Length, isGrouping, OptionsMap);
361 } while (PGOpt && Length != Arg.size());
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000362
Chris Lattnerd516d022009-09-20 05:03:30 +0000363 // Return the last option with Arg cut down to just the last one.
364 return PGOpt;
365}
366
367
368
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369static bool RequiresValue(const Option *O) {
370 return O->getNumOccurrencesFlag() == cl::Required ||
371 O->getNumOccurrencesFlag() == cl::OneOrMore;
372}
373
374static bool EatsUnboundedNumberOfValues(const Option *O) {
375 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
376 O->getNumOccurrencesFlag() == cl::OneOrMore;
377}
378
379/// ParseCStringVector - Break INPUT up wherever one or more
380/// whitespace characters are found, and store the resulting tokens in
381/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
Chris Lattner2ee921e2009-09-20 01:11:23 +0000382/// using strdup(), so it is the caller's responsibility to free()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383/// them later.
384///
Chris Lattnerc8b70662009-09-24 05:38:36 +0000385static void ParseCStringVector(std::vector<char *> &OutputVector,
386 const char *Input) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387 // Characters which will be treated as token separators:
Chris Lattnerc8b70662009-09-24 05:38:36 +0000388 StringRef Delims = " \v\f\t\r\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389
Chris Lattnerc8b70662009-09-24 05:38:36 +0000390 StringRef WorkStr(Input);
391 while (!WorkStr.empty()) {
392 // If the first character is a delimiter, strip them off.
393 if (Delims.find(WorkStr[0]) != StringRef::npos) {
394 size_t Pos = WorkStr.find_first_not_of(Delims);
395 if (Pos == StringRef::npos) Pos = WorkStr.size();
396 WorkStr = WorkStr.substr(Pos);
397 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 }
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000399
Chris Lattnerc8b70662009-09-24 05:38:36 +0000400 // Find position of first delimiter.
401 size_t Pos = WorkStr.find_first_of(Delims);
402 if (Pos == StringRef::npos) Pos = WorkStr.size();
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000403
Chris Lattnerc8b70662009-09-24 05:38:36 +0000404 // Everything from 0 to Pos is the next word to copy.
405 char *NewStr = (char*)malloc(Pos+1);
406 memcpy(NewStr, WorkStr.data(), Pos);
407 NewStr[Pos] = 0;
408 OutputVector.push_back(NewStr);
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000409
Chris Lattnerc8b70662009-09-24 05:38:36 +0000410 WorkStr = WorkStr.substr(Pos);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412}
413
414/// ParseEnvironmentOptions - An alternative entry point to the
415/// CommandLine library, which allows you to read the program's name
416/// from the caller (as PROGNAME) and its command-line arguments from
417/// an environment variable (whose name is given in ENVVAR).
418///
419void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000420 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000421 // Check args.
422 assert(progName && "Program name not specified");
423 assert(envVar && "Environment variable name missing");
424
425 // Get the environment variable they want us to parse options out of.
426 const char *envValue = getenv(envVar);
427 if (!envValue)
428 return;
429
430 // Get program's "name", which we wouldn't know without the caller
431 // telling us.
432 std::vector<char*> newArgv;
433 newArgv.push_back(strdup(progName));
434
435 // Parse the value of the environment variable into a "command line"
436 // and hand it off to ParseCommandLineOptions().
437 ParseCStringVector(newArgv, envValue);
Evan Cheng591bfc82008-05-05 18:30:58 +0000438 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000439 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440
441 // Free all the strdup()ed strings.
442 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
443 i != e; ++i)
Chris Lattner2ee921e2009-09-20 01:11:23 +0000444 free(*i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445}
446
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000447
448/// ExpandResponseFiles - Copy the contents of argv into newArgv,
449/// substituting the contents of the response files for the arguments
450/// of type @file.
Chris Lattnerd516d022009-09-20 05:03:30 +0000451static void ExpandResponseFiles(unsigned argc, char** argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000452 std::vector<char*>& newArgv) {
Chris Lattnerd516d022009-09-20 05:03:30 +0000453 for (unsigned i = 1; i != argc; ++i) {
454 char *arg = argv[i];
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000455
456 if (arg[0] == '@') {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000457 sys::PathWithStatus respFile(++arg);
458
459 // Check that the response file is not empty (mmap'ing empty
460 // files can be problematic).
461 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000462 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000463
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000464 // Mmap the response file into memory.
465 OwningPtr<MemoryBuffer>
466 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000467
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000468 // If we could open the file, parse its contents, otherwise
469 // pass the @file option verbatim.
Mikhail Glushenkovc591ed142009-01-28 03:46:22 +0000470
471 // TODO: we should also support recursive loading of response files,
472 // since this is how gcc behaves. (From their man page: "The file may
473 // itself contain additional @file options; any such options will be
474 // processed recursively.")
475
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000476 if (respFilePtr != 0) {
477 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
478 continue;
479 }
480 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000481 }
Mikhail Glushenkov0215ec22009-01-21 13:14:02 +0000482 newArgv.push_back(strdup(arg));
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000483 }
484}
485
Dan Gohman61db06b2007-10-09 16:04:57 +0000486void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000487 const char *Overview, bool ReadResponseFiles) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488 // Process all registered options.
Chris Lattner3d211b22009-09-20 06:18:38 +0000489 SmallVector<Option*, 4> PositionalOpts;
490 SmallVector<Option*, 4> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +0000491 StringMap<Option*> Opts;
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000492 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000493
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494 assert((!Opts.empty() || !PositionalOpts.empty()) &&
495 "No options specified!");
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000496
497 // Expand response files.
498 std::vector<char*> newArgv;
499 if (ReadResponseFiles) {
500 newArgv.push_back(strdup(argv[0]));
501 ExpandResponseFiles(argc, argv, newArgv);
502 argv = &newArgv[0];
Evan Cheng591bfc82008-05-05 18:30:58 +0000503 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000504 }
505
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506 // Copy the program name into ProgName, making sure not to overflow it.
507 std::string ProgName = sys::Path(argv[0]).getLast();
508 if (ProgName.size() > 79) ProgName.resize(79);
509 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000510
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 ProgramOverview = Overview;
512 bool ErrorParsing = false;
513
514 // Check out the positional arguments to collect information about them.
515 unsigned NumPositionalRequired = 0;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000516
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 // Determine whether or not there are an unlimited number of positionals
518 bool HasUnlimitedPositionals = false;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000519
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 Option *ConsumeAfterOpt = 0;
521 if (!PositionalOpts.empty()) {
522 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
523 assert(PositionalOpts.size() > 1 &&
524 "Cannot specify cl::ConsumeAfter without a positional argument!");
525 ConsumeAfterOpt = PositionalOpts[0];
526 }
527
528 // Calculate how many positional values are _required_.
529 bool UnboundedFound = false;
Evan Cheng591bfc82008-05-05 18:30:58 +0000530 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 i != e; ++i) {
532 Option *Opt = PositionalOpts[i];
533 if (RequiresValue(Opt))
534 ++NumPositionalRequired;
535 else if (ConsumeAfterOpt) {
536 // ConsumeAfter cannot be combined with "optional" positional options
537 // unless there is only one positional argument...
538 if (PositionalOpts.size() > 2)
539 ErrorParsing |=
Benjamin Kramer9164c672009-08-02 12:13:02 +0000540 Opt->error("error - this positional option will never be matched, "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000541 "because it does not Require a value, and a "
542 "cl::ConsumeAfter option is active!");
543 } else if (UnboundedFound && !Opt->ArgStr[0]) {
544 // This option does not "require" a value... Make sure this option is
545 // not specified after an option that eats all extra arguments, or this
546 // one will never get any!
547 //
Benjamin Kramer9164c672009-08-02 12:13:02 +0000548 ErrorParsing |= Opt->error("error - option can never match, because "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549 "another positional argument will match an "
550 "unbounded number of values, and this option"
551 " does not require a value!");
552 }
553 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
554 }
555 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
556 }
557
558 // PositionalVals - A vector of "positional" arguments we accumulate into
Chris Lattner747e01e2009-09-20 00:07:40 +0000559 // the process at the end.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560 //
Chris Lattner747e01e2009-09-20 00:07:40 +0000561 SmallVector<std::pair<StringRef,unsigned>, 4> PositionalVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562
563 // If the program has named positional arguments, and the name has been run
564 // across, keep track of which positional argument was named. Otherwise put
565 // the positional args into the PositionalVals list...
566 Option *ActivePositionalArg = 0;
567
568 // Loop over all of the arguments... processing them.
569 bool DashDashFound = false; // Have we read '--'?
570 for (int i = 1; i < argc; ++i) {
571 Option *Handler = 0;
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000572 StringRef Value;
Chris Lattner0a5bcfc2009-09-20 02:02:24 +0000573 StringRef ArgName = "";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574
575 // If the option list changed, this means that some command line
576 // option has just been registered or deregistered. This can occur in
577 // response to things like -load, etc. If this happens, rescan the options.
578 if (OptionListChanged) {
579 PositionalOpts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000580 SinkOpts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 Opts.clear();
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000582 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 OptionListChanged = false;
584 }
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000585
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 // Check to see if this is a positional argument. This argument is
587 // considered to be positional if it doesn't start with '-', if it is "-"
588 // itself, or if we have seen "--" already.
589 //
590 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
591 // Positional argument!
592 if (ActivePositionalArg) {
593 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
594 continue; // We are done!
Chris Lattner157229d2009-09-20 00:40:49 +0000595 }
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000596
Chris Lattner157229d2009-09-20 00:40:49 +0000597 if (!PositionalOpts.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000598 PositionalVals.push_back(std::make_pair(argv[i],i));
599
600 // All of the positional arguments have been fulfulled, give the rest to
601 // the consume after option... if it's specified...
602 //
603 if (PositionalVals.size() >= NumPositionalRequired &&
604 ConsumeAfterOpt != 0) {
605 for (++i; i < argc; ++i)
606 PositionalVals.push_back(std::make_pair(argv[i],i));
607 break; // Handle outside of the argument processing loop...
608 }
609
610 // Delay processing positional arguments until the end...
611 continue;
612 }
613 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
614 !DashDashFound) {
615 DashDashFound = true; // This is the mythical "--"?
616 continue; // Don't try to process it as an argument itself.
617 } else if (ActivePositionalArg &&
618 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
619 // If there is a positional argument eating options, check to see if this
620 // option is another positional argument. If so, treat it as an argument,
621 // otherwise feed it to the eating positional.
622 ArgName = argv[i]+1;
Chris Lattnerd516d022009-09-20 05:03:30 +0000623 // Eat leading dashes.
624 while (!ArgName.empty() && ArgName[0] == '-')
625 ArgName = ArgName.substr(1);
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000626
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627 Handler = LookupOption(ArgName, Value, Opts);
628 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
629 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
630 continue; // We are done!
631 }
632
Chris Lattner157229d2009-09-20 00:40:49 +0000633 } else { // We start with a '-', must be an argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 ArgName = argv[i]+1;
Chris Lattnerd516d022009-09-20 05:03:30 +0000635 // Eat leading dashes.
636 while (!ArgName.empty() && ArgName[0] == '-')
637 ArgName = ArgName.substr(1);
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000638
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 Handler = LookupOption(ArgName, Value, Opts);
640
641 // Check to see if this "option" is really a prefixed or grouped argument.
Chris Lattnerd516d022009-09-20 05:03:30 +0000642 if (Handler == 0)
643 Handler = HandlePrefixedOrGroupedOption(ArgName, Value,
644 ErrorParsing, Opts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645 }
646
647 if (Handler == 0) {
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000648 if (SinkOpts.empty()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000649 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000650 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
651 ErrorParsing = true;
652 } else {
Chris Lattner3d211b22009-09-20 06:18:38 +0000653 for (SmallVectorImpl<Option*>::iterator I = SinkOpts.begin(),
Anton Korobeynikov6288e922008-02-20 12:38:07 +0000654 E = SinkOpts.end(); I != E ; ++I)
655 (*I)->addOccurrence(i, "", argv[i]);
656 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 continue;
658 }
659
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660 // If this is a named positional argument, just remember that it is the
661 // active one...
662 if (Handler->getFormattingFlag() == cl::Positional)
663 ActivePositionalArg = Handler;
Chris Lattner4627c682009-09-20 01:49:31 +0000664 else
Chris Lattnerd8168dd2009-09-20 01:53:12 +0000665 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666 }
667
668 // Check and handle positional arguments now...
669 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000670 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000671 << ": Not enough positional command line arguments specified!\n"
672 << "Must specify at least " << NumPositionalRequired
673 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000674
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000675 ErrorParsing = true;
676 } else if (!HasUnlimitedPositionals
677 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000678 errs() << ProgramName
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679 << ": Too many positional arguments specified!\n"
680 << "Can specify at most " << PositionalOpts.size()
681 << " positional arguments: See: " << argv[0] << " --help\n";
682 ErrorParsing = true;
683
684 } else if (ConsumeAfterOpt == 0) {
Chris Lattnerd516d022009-09-20 05:03:30 +0000685 // Positional args have already been handled if ConsumeAfter is specified.
Evan Cheng591bfc82008-05-05 18:30:58 +0000686 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
687 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688 if (RequiresValue(PositionalOpts[i])) {
689 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
690 PositionalVals[ValNo].second);
691 ValNo++;
692 --NumPositionalRequired; // We fulfilled our duty...
693 }
694
695 // If we _can_ give this option more arguments, do so now, as long as we
696 // do not give it values that others need. 'Done' controls whether the
697 // option even _WANTS_ any more.
698 //
699 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
700 while (NumVals-ValNo > NumPositionalRequired && !Done) {
701 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
702 case cl::Optional:
703 Done = true; // Optional arguments want _at most_ one value
704 // FALL THROUGH
705 case cl::ZeroOrMore: // Zero or more will take all they can get...
706 case cl::OneOrMore: // One or more will take all they can get...
707 ProvidePositionalOption(PositionalOpts[i],
708 PositionalVals[ValNo].first,
709 PositionalVals[ValNo].second);
710 ValNo++;
711 break;
712 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000713 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 "positional argument processing!");
715 }
716 }
717 }
718 } else {
719 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
720 unsigned ValNo = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +0000721 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722 if (RequiresValue(PositionalOpts[j])) {
723 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
724 PositionalVals[ValNo].first,
725 PositionalVals[ValNo].second);
726 ValNo++;
727 }
728
729 // Handle the case where there is just one positional option, and it's
730 // optional. In this case, we want to give JUST THE FIRST option to the
731 // positional option and keep the rest for the consume after. The above
732 // loop would have assigned no values to positional options in this case.
733 //
734 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
735 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
736 PositionalVals[ValNo].first,
737 PositionalVals[ValNo].second);
738 ValNo++;
739 }
740
741 // Handle over all of the rest of the arguments to the
742 // cl::ConsumeAfter command line option...
743 for (; ValNo != PositionalVals.size(); ++ValNo)
744 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
745 PositionalVals[ValNo].first,
746 PositionalVals[ValNo].second);
747 }
748
749 // Loop over args and make sure all required args are specified!
Benjamin Kramer48086602009-09-19 10:01:45 +0000750 for (StringMap<Option*>::iterator I = Opts.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751 E = Opts.end(); I != E; ++I) {
752 switch (I->second->getNumOccurrencesFlag()) {
753 case Required:
754 case OneOrMore:
755 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramer9164c672009-08-02 12:13:02 +0000756 I->second->error("must be specified at least once!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 ErrorParsing = true;
758 }
759 // Fall through
760 default:
761 break;
762 }
763 }
764
765 // Free all of the memory allocated to the map. Command line options may only
766 // be processed once!
767 Opts.clear();
768 PositionalOpts.clear();
769 MoreHelp->clear();
770
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000771 // Free the memory allocated by ExpandResponseFiles.
772 if (ReadResponseFiles) {
773 // Free all the strdup()ed strings.
774 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
775 i != e; ++i)
Chris Lattnera77caae2009-09-20 07:16:54 +0000776 free(*i);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000777 }
778
Sandeep Patel8e51aeb2009-11-11 03:23:46 +0000779 DEBUG(errs() << "\nArgs: ";
780 for (int i = 0; i < argc; ++i)
781 errs() << argv[i] << ' ';
782 );
783
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 // If we had an error processing our arguments, don't let the program execute
785 if (ErrorParsing) exit(1);
786}
787
788//===----------------------------------------------------------------------===//
789// Option Base class implementation
790//
791
Chris Lattner157229d2009-09-20 00:40:49 +0000792bool Option::error(const Twine &Message, StringRef ArgName) {
793 if (ArgName.data() == 0) ArgName = ArgStr;
794 if (ArgName.empty())
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000795 errs() << HelpStr; // Be nice for positional arguments
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796 else
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000797 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +0000798
Benjamin Kramer32dd0232009-08-23 10:01:13 +0000799 errs() << " option: " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800 return true;
801}
802
Chris Lattner157229d2009-09-20 00:40:49 +0000803bool Option::addOccurrence(unsigned pos, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000804 StringRef Value, bool MultiArg) {
Mikhail Glushenkovad6fc7f2009-01-16 22:54:19 +0000805 if (!MultiArg)
806 NumOccurrences++; // Increment the number of times we have been seen
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000807
808 switch (getNumOccurrencesFlag()) {
809 case Optional:
810 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000811 return error("may only occur zero or one times!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812 break;
813 case Required:
814 if (NumOccurrences > 1)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000815 return error("must occur exactly one time!", ArgName);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000816 // Fall through
817 case OneOrMore:
818 case ZeroOrMore:
819 case ConsumeAfter: break;
Benjamin Kramer9164c672009-08-02 12:13:02 +0000820 default: return error("bad num occurrences flag value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000821 }
822
823 return handleOccurrence(pos, ArgName, Value);
824}
825
826
827// getValueStr - Get the value description string, using "DefaultMsg" if nothing
828// has been specified yet.
829//
830static const char *getValueStr(const Option &O, const char *DefaultMsg) {
831 if (O.ValueStr[0] == 0) return DefaultMsg;
832 return O.ValueStr;
833}
834
835//===----------------------------------------------------------------------===//
836// cl::alias class implementation
837//
838
839// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000840size_t alias::getOptionWidth() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 return std::strlen(ArgStr)+6;
842}
843
844// Print out the option for the alias.
Evan Cheng591bfc82008-05-05 18:30:58 +0000845void alias::printOptionInfo(size_t GlobalWidth) const {
846 size_t L = std::strlen(ArgStr);
Chris Lattnerd516d022009-09-20 05:03:30 +0000847 errs() << " -" << ArgStr;
848 errs().indent(GlobalWidth-L-6) << " - " << HelpStr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000849}
850
851
852
853//===----------------------------------------------------------------------===//
854// Parser Implementation code...
855//
856
857// basic_parser implementation
858//
859
860// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000861size_t basic_parser_impl::getOptionWidth(const Option &O) const {
862 size_t Len = std::strlen(O.ArgStr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863 if (const char *ValName = getValueName())
864 Len += std::strlen(getValueStr(O, ValName))+3;
865
866 return Len + 6;
867}
868
869// printOptionInfo - Print out information about this option. The
870// to-be-maintained width is specified.
871//
872void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +0000873 size_t GlobalWidth) const {
Chris Lattner5febcae2009-08-23 08:43:55 +0000874 outs() << " -" << O.ArgStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875
876 if (const char *ValName = getValueName())
Chris Lattner5febcae2009-08-23 08:43:55 +0000877 outs() << "=<" << getValueStr(O, ValName) << '>';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000878
Chris Lattner5febcae2009-08-23 08:43:55 +0000879 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880}
881
882
883
884
885// parser<bool> implementation
886//
Chris Lattner157229d2009-09-20 00:40:49 +0000887bool parser<bool>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000888 StringRef Arg, bool &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
890 Arg == "1") {
891 Value = true;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000892 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000893 }
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000894
Chris Lattner47d05cb2009-09-19 18:55:05 +0000895 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
896 Value = false;
897 return false;
898 }
899 return O.error("'" + Arg +
900 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000901}
902
903// parser<boolOrDefault> implementation
904//
Chris Lattner157229d2009-09-20 00:40:49 +0000905bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000906 StringRef Arg, boolOrDefault &Value) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000907 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
908 Arg == "1") {
909 Value = BOU_TRUE;
Chris Lattner47d05cb2009-09-19 18:55:05 +0000910 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 }
Chris Lattner47d05cb2009-09-19 18:55:05 +0000912 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
913 Value = BOU_FALSE;
914 return false;
915 }
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +0000916
Chris Lattner47d05cb2009-09-19 18:55:05 +0000917 return O.error("'" + Arg +
918 "' is invalid value for boolean argument! Try 0 or 1");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919}
920
921// parser<int> implementation
922//
Chris Lattner157229d2009-09-20 00:40:49 +0000923bool parser<int>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000924 StringRef Arg, int &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000925 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000926 return O.error("'" + Arg + "' value invalid for integer argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927 return false;
928}
929
930// parser<unsigned> implementation
931//
Chris Lattner157229d2009-09-20 00:40:49 +0000932bool parser<unsigned>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000933 StringRef Arg, unsigned &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000934
935 if (Arg.getAsInteger(0, Value))
Benjamin Kramer9164c672009-08-02 12:13:02 +0000936 return O.error("'" + Arg + "' value invalid for uint argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000937 return false;
938}
939
940// parser<double>/parser<float> implementation
941//
Chris Lattner47d05cb2009-09-19 18:55:05 +0000942static bool parseDouble(Option &O, StringRef Arg, double &Value) {
Chris Lattner717f7732009-09-19 23:59:02 +0000943 SmallString<32> TmpStr(Arg.begin(), Arg.end());
944 const char *ArgStart = TmpStr.c_str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 char *End;
946 Value = strtod(ArgStart, &End);
947 if (*End != 0)
Benjamin Kramer9164c672009-08-02 12:13:02 +0000948 return O.error("'" + Arg + "' value invalid for floating point argument!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 return false;
950}
951
Chris Lattner157229d2009-09-20 00:40:49 +0000952bool parser<double>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000953 StringRef Arg, double &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 return parseDouble(O, Arg, Val);
955}
956
Chris Lattner157229d2009-09-20 00:40:49 +0000957bool parser<float>::parse(Option &O, StringRef ArgName,
Chris Lattner47d05cb2009-09-19 18:55:05 +0000958 StringRef Arg, float &Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000959 double dVal;
960 if (parseDouble(O, Arg, dVal))
961 return true;
962 Val = (float)dVal;
963 return false;
964}
965
966
967
968// generic_parser_base implementation
969//
970
971// findOption - Return the option number corresponding to the specified
972// argument string. If the option is not found, getNumOptions() is returned.
973//
974unsigned generic_parser_base::findOption(const char *Name) {
Benjamin Kramer48086602009-09-19 10:01:45 +0000975 unsigned e = getNumOptions();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976
Benjamin Kramer48086602009-09-19 10:01:45 +0000977 for (unsigned i = 0; i != e; ++i) {
978 if (strcmp(getOption(i), Name) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 return i;
Benjamin Kramer48086602009-09-19 10:01:45 +0000980 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981 return e;
982}
983
984
985// Return the width of the option tag for printing...
Evan Cheng591bfc82008-05-05 18:30:58 +0000986size_t generic_parser_base::getOptionWidth(const Option &O) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +0000988 size_t Size = std::strlen(O.ArgStr)+6;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000990 Size = std::max(Size, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 return Size;
992 } else {
Evan Cheng591bfc82008-05-05 18:30:58 +0000993 size_t BaseSize = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000994 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng591bfc82008-05-05 18:30:58 +0000995 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000996 return BaseSize;
997 }
998}
999
1000// printOptionInfo - Print out information about this option. The
1001// to-be-maintained width is specified.
1002//
1003void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng591bfc82008-05-05 18:30:58 +00001004 size_t GlobalWidth) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001005 if (O.hasArgStr()) {
Evan Cheng591bfc82008-05-05 18:30:58 +00001006 size_t L = std::strlen(O.ArgStr);
Chris Lattnerd516d022009-09-20 05:03:30 +00001007 outs() << " -" << O.ArgStr;
1008 outs().indent(GlobalWidth-L-6) << " - " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001009
1010 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +00001011 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattnerd516d022009-09-20 05:03:30 +00001012 outs() << " =" << getOption(i);
1013 outs().indent(NumSpaces) << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 }
1015 } else {
1016 if (O.HelpStr[0])
Chris Lattnerd516d022009-09-20 05:03:30 +00001017 outs() << " " << O.HelpStr << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001018 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng591bfc82008-05-05 18:30:58 +00001019 size_t L = std::strlen(getOption(i));
Chris Lattnerd516d022009-09-20 05:03:30 +00001020 outs() << " -" << getOption(i);
1021 outs().indent(GlobalWidth-L-8) << " - " << getDescription(i) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001022 }
1023 }
1024}
1025
1026
1027//===----------------------------------------------------------------------===//
1028// --help and --help-hidden option implementation
1029//
1030
Chris Lattner0d9aff42009-09-20 05:37:24 +00001031static int OptNameCompare(const void *LHS, const void *RHS) {
1032 typedef std::pair<const char *, Option*> pair_ty;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +00001033
Chris Lattner0d9aff42009-09-20 05:37:24 +00001034 return strcmp(((pair_ty*)LHS)->first, ((pair_ty*)RHS)->first);
1035}
1036
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037namespace {
1038
1039class HelpPrinter {
Evan Cheng591bfc82008-05-05 18:30:58 +00001040 size_t MaxArgLen;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041 const Option *EmptyArg;
1042 const bool ShowHidden;
1043
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044public:
Dan Gohman40bd38e2008-03-25 22:06:05 +00001045 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046 EmptyArg = 0;
1047 }
1048
1049 void operator=(bool Value) {
1050 if (Value == false) return;
1051
1052 // Get all the options.
Chris Lattner3d211b22009-09-20 06:18:38 +00001053 SmallVector<Option*, 4> PositionalOpts;
1054 SmallVector<Option*, 4> SinkOpts;
Benjamin Kramer48086602009-09-19 10:01:45 +00001055 StringMap<Option*> OptMap;
Anton Korobeynikov6288e922008-02-20 12:38:07 +00001056 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001057
Chris Lattner97be18f2009-09-20 05:12:14 +00001058 // Copy Options into a vector so we can sort them as we like.
Chris Lattner0d9aff42009-09-20 05:37:24 +00001059 SmallVector<std::pair<const char *, Option*>, 128> Opts;
Chris Lattnerc8240962009-09-20 05:22:52 +00001060 SmallPtrSet<Option*, 128> OptionSet; // Duplicate option detection.
1061
Benjamin Kramer48086602009-09-19 10:01:45 +00001062 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1063 I != E; ++I) {
Chris Lattner34bbc242009-09-20 05:18:28 +00001064 // Ignore really-hidden options.
1065 if (I->second->getOptionHiddenFlag() == ReallyHidden)
1066 continue;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +00001067
Chris Lattner34bbc242009-09-20 05:18:28 +00001068 // Unless showhidden is set, ignore hidden flags.
1069 if (I->second->getOptionHiddenFlag() == Hidden && !ShowHidden)
1070 continue;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +00001071
Chris Lattnerc8240962009-09-20 05:22:52 +00001072 // If we've already seen this option, don't add it to the list again.
Chris Lattner0d9aff42009-09-20 05:37:24 +00001073 if (!OptionSet.insert(I->second))
Chris Lattnerc8240962009-09-20 05:22:52 +00001074 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075
Chris Lattner0d9aff42009-09-20 05:37:24 +00001076 Opts.push_back(std::pair<const char *, Option*>(I->getKey().data(),
1077 I->second));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 }
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +00001079
Chris Lattner0d9aff42009-09-20 05:37:24 +00001080 // Sort the options list alphabetically.
1081 qsort(Opts.data(), Opts.size(), sizeof(Opts[0]), OptNameCompare);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001082
1083 if (ProgramOverview)
Chris Lattner5febcae2009-08-23 08:43:55 +00001084 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085
Chris Lattner5febcae2009-08-23 08:43:55 +00001086 outs() << "USAGE: " << ProgramName << " [options]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087
1088 // Print out the positional options.
1089 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkov7015ef82008-04-28 16:44:25 +00001090 if (!PositionalOpts.empty() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1092 CAOpt = PositionalOpts[0];
1093
Evan Cheng591bfc82008-05-05 18:30:58 +00001094 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001095 if (PositionalOpts[i]->ArgStr[0])
Chris Lattner5febcae2009-08-23 08:43:55 +00001096 outs() << " --" << PositionalOpts[i]->ArgStr;
1097 outs() << " " << PositionalOpts[i]->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098 }
1099
1100 // Print the consume after option info if it exists...
Chris Lattner5febcae2009-08-23 08:43:55 +00001101 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001102
Chris Lattner5febcae2009-08-23 08:43:55 +00001103 outs() << "\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104
1105 // Compute the maximum argument length...
1106 MaxArgLen = 0;
Evan Cheng591bfc82008-05-05 18:30:58 +00001107 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner0d9aff42009-09-20 05:37:24 +00001108 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109
Chris Lattner5febcae2009-08-23 08:43:55 +00001110 outs() << "OPTIONS:\n";
Evan Cheng591bfc82008-05-05 18:30:58 +00001111 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner0d9aff42009-09-20 05:37:24 +00001112 Opts[i].second->printOptionInfo(MaxArgLen);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113
1114 // Print any extra help the user has declared.
1115 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1116 E = MoreHelp->end(); I != E; ++I)
Chris Lattner5febcae2009-08-23 08:43:55 +00001117 outs() << *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001118 MoreHelp->clear();
1119
1120 // Halt the program since help information was printed
1121 exit(1);
1122 }
1123};
1124} // End anonymous namespace
1125
1126// Define the two HelpPrinter instances that are used to print out help, or
1127// help-hidden...
1128//
1129static HelpPrinter NormalPrinter(false);
1130static HelpPrinter HiddenPrinter(true);
1131
1132static cl::opt<HelpPrinter, true, parser<bool> >
1133HOp("help", cl::desc("Display available options (--help-hidden for more)"),
1134 cl::location(NormalPrinter), cl::ValueDisallowed);
1135
1136static cl::opt<HelpPrinter, true, parser<bool> >
1137HHOp("help-hidden", cl::desc("Display all available options"),
1138 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1139
1140static void (*OverrideVersionPrinter)() = 0;
1141
Chris Lattner8748d232009-09-20 05:53:47 +00001142static int TargetArraySortFn(const void *LHS, const void *RHS) {
1143 typedef std::pair<const char *, const Target*> pair_ty;
1144 return strcmp(((const pair_ty*)LHS)->first, ((const pair_ty*)RHS)->first);
1145}
1146
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147namespace {
1148class VersionPrinter {
1149public:
1150 void print() {
Chris Lattner3d211b22009-09-20 06:18:38 +00001151 raw_ostream &OS = outs();
1152 OS << "Low Level Virtual Machine (http://llvm.org/):\n"
1153 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001154#ifdef LLVM_VERSION_INFO
Chris Lattner3d211b22009-09-20 06:18:38 +00001155 OS << LLVM_VERSION_INFO;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156#endif
Chris Lattner3d211b22009-09-20 06:18:38 +00001157 OS << "\n ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001158#ifndef __OPTIMIZE__
Chris Lattner3d211b22009-09-20 06:18:38 +00001159 OS << "DEBUG build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001160#else
Chris Lattner3d211b22009-09-20 06:18:38 +00001161 OS << "Optimized build";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001162#endif
1163#ifndef NDEBUG
Chris Lattner3d211b22009-09-20 06:18:38 +00001164 OS << " with assertions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165#endif
Daniel Dunbard31559c2009-11-14 21:36:07 +00001166 std::string CPU = sys::getHostCPUName();
Benjamin Kramerc77d9a42009-11-17 17:57:04 +00001167 if (CPU == "generic") CPU = "(unknown)";
Chris Lattner3d211b22009-09-20 06:18:38 +00001168 OS << ".\n"
1169 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
1170 << " Host: " << sys::getHostTriple() << '\n'
Daniel Dunbard31559c2009-11-14 21:36:07 +00001171 << " Host CPU: " << CPU << '\n'
Chris Lattner3d211b22009-09-20 06:18:38 +00001172 << '\n'
1173 << " Registered Targets:\n";
Daniel Dunbar9b3edb62009-07-16 02:06:09 +00001174
Chris Lattner8748d232009-09-20 05:53:47 +00001175 std::vector<std::pair<const char *, const Target*> > Targets;
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001176 size_t Width = 0;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +00001177 for (TargetRegistry::iterator it = TargetRegistry::begin(),
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001178 ie = TargetRegistry::end(); it != ie; ++it) {
1179 Targets.push_back(std::make_pair(it->getName(), &*it));
Chris Lattner8748d232009-09-20 05:53:47 +00001180 Width = std::max(Width, strlen(Targets.back().first));
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001181 }
Chris Lattner8748d232009-09-20 05:53:47 +00001182 if (!Targets.empty())
1183 qsort(&Targets[0], Targets.size(), sizeof(Targets[0]),
1184 TargetArraySortFn);
Daniel Dunbar80329932009-07-26 05:09:50 +00001185
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001186 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
Chris Lattner3d211b22009-09-20 06:18:38 +00001187 OS << " " << Targets[i].first;
1188 OS.indent(Width - strlen(Targets[i].first)) << " - "
Chris Lattnerd516d022009-09-20 05:03:30 +00001189 << Targets[i].second->getShortDescription() << '\n';
Benjamin Kramer32dd0232009-08-23 10:01:13 +00001190 }
1191 if (Targets.empty())
Chris Lattner3d211b22009-09-20 06:18:38 +00001192 OS << " (none)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001193 }
1194 void operator=(bool OptionWasSpecified) {
Chris Lattnera8165362009-09-20 05:48:01 +00001195 if (!OptionWasSpecified) return;
Mikhail Glushenkov766a36d2009-11-19 17:29:36 +00001196
Chris Lattnera8165362009-09-20 05:48:01 +00001197 if (OverrideVersionPrinter == 0) {
1198 print();
1199 exit(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001200 }
Chris Lattnera8165362009-09-20 05:48:01 +00001201 (*OverrideVersionPrinter)();
1202 exit(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001203 }
1204};
1205} // End anonymous namespace
1206
1207
1208// Define the --version option that prints out the LLVM version for the tool
1209static VersionPrinter VersionPrinterInstance;
1210
1211static cl::opt<VersionPrinter, true, parser<bool> >
1212VersOp("version", cl::desc("Display the version of this program"),
1213 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1214
1215// Utility function for printing the help message.
1216void cl::PrintHelpMessage() {
1217 // This looks weird, but it actually prints the help message. The
1218 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1219 // its operator= is invoked. That's because the "normal" usages of the
1220 // help printer is to be assigned true/false depending on whether the
1221 // --help option was given or not. Since we're circumventing that we have
1222 // to make it look like --help was given, so we assign true.
1223 NormalPrinter = true;
1224}
1225
1226/// Utility function for printing version number.
1227void cl::PrintVersionMessage() {
1228 VersionPrinterInstance.print();
1229}
1230
1231void cl::SetVersionPrinter(void (*func)()) {
1232 OverrideVersionPrinter = func;
1233}