blob: 54b5631b7c9521a89170a11f3544a777ca0eb9c7 [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"
Benjamin Kramer461c8762009-09-19 10:01:45 +000028#include "llvm/ADT/StringMap.h"
Chris Lattner970e7df2009-09-19 23:59:02 +000029#include "llvm/ADT/SmallString.h"
Chris Lattnera460beb2009-09-19 18:55:05 +000030#include "llvm/ADT/Twine.h"
Chris Lattnerca179342009-08-23 18:09:02 +000031#include "llvm/Config/config.h"
Chris Lattnerdbab15a2001-07-23 17:17:47 +000032#include <set>
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.
108static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000109 std::vector<Option*> &SinkOpts,
Benjamin Kramer461c8762009-09-19 10:01:45 +0000110 StringMap<Option*> &OptionsMap) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000111 std::vector<const char*> 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
153/// that as well.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000154static Option *LookupOption(const char *&Arg, const char *&Value,
Benjamin Kramer461c8762009-09-19 10:01:45 +0000155 StringMap<Option*> &OptionsMap) {
Chris Lattneraf035f32007-04-05 21:58:17 +0000156 while (*Arg == '-') ++Arg; // Eat leading dashes
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000157
Chris Lattneraf035f32007-04-05 21:58:17 +0000158 const char *ArgEnd = Arg;
159 while (*ArgEnd && *ArgEnd != '=')
160 ++ArgEnd; // Scan till end of argument name.
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000161
Chris Lattneraf035f32007-04-05 21:58:17 +0000162 if (*ArgEnd == '=') // If we have an equals sign...
163 Value = ArgEnd+1; // Get the value, not the equals
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000164
165
Chris Lattneraf035f32007-04-05 21:58:17 +0000166 if (*Arg == 0) return 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000167
Chris Lattneraf035f32007-04-05 21:58:17 +0000168 // Look up the option.
Benjamin Kramer461c8762009-09-19 10:01:45 +0000169 StringMap<Option*>::iterator I =
170 OptionsMap.find(llvm::StringRef(Arg, ArgEnd-Arg));
Chris Lattner9878d6a2007-04-06 21:06:55 +0000171 return I != OptionsMap.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000172}
173
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000174static inline bool ProvideOption(Option *Handler, StringRef ArgName,
Chris Lattnercaccd762001-10-27 05:54:17 +0000175 const char *Value, int argc, char **argv,
176 int &i) {
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000177 // Is this a multi-argument option?
178 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
179
Chris Lattnercaccd762001-10-27 05:54:17 +0000180 // Enforce value requirements
181 switch (Handler->getValueExpectedFlag()) {
182 case ValueRequired:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000183 if (Value == 0) { // No value specified?
Chris Lattnerba112292009-09-20 00:07:40 +0000184 if (i+1 >= argc)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000185 return Handler->error("requires a value!");
Chris Lattnerba112292009-09-20 00:07:40 +0000186 // Steal the next argument, like for '-o filename'
187 Value = argv[++i];
Chris Lattnercaccd762001-10-27 05:54:17 +0000188 }
189 break;
190 case ValueDisallowed:
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000191 if (NumAdditionalVals > 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000192 return Handler->error("multi-valued option specified"
Chris Lattnerba112292009-09-20 00:07:40 +0000193 " with ValueDisallowed modifier!");
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000194
Chris Lattner6d5857e2005-05-10 23:20:17 +0000195 if (Value)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000196 return Handler->error("does not allow a value! '" +
Chris Lattnera460beb2009-09-19 18:55:05 +0000197 Twine(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000198 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000199 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000200 break;
Chris Lattnerba112292009-09-20 00:07:40 +0000201
Misha Brukmanf976c852005-04-21 22:55:34 +0000202 default:
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000203 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000204 << ": Bad ValueMask flag! CommandLine usage error:"
205 << Handler->getValueExpectedFlag() << "\n";
Torok Edwinc23197a2009-07-14 16:55:14 +0000206 llvm_unreachable(0);
Chris Lattnercaccd762001-10-27 05:54:17 +0000207 }
208
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000209 // If this isn't a multi-arg option, just run the handler.
Chris Lattnera460beb2009-09-19 18:55:05 +0000210 if (NumAdditionalVals == 0)
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000211 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
Chris Lattnera460beb2009-09-19 18:55:05 +0000212
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000213 // If it is, run the handle several times.
Chris Lattnera460beb2009-09-19 18:55:05 +0000214 bool MultiArg = false;
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000215
Chris Lattnera460beb2009-09-19 18:55:05 +0000216 if (Value) {
217 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
218 return true;
219 --NumAdditionalVals;
220 MultiArg = true;
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000221 }
Chris Lattnera460beb2009-09-19 18:55:05 +0000222
223 while (NumAdditionalVals > 0) {
Chris Lattnera460beb2009-09-19 18:55:05 +0000224 if (i+1 >= argc)
225 return Handler->error("not enough values!");
226 Value = argv[++i];
227
228 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
229 return true;
230 MultiArg = true;
231 --NumAdditionalVals;
232 }
233 return false;
Chris Lattnercaccd762001-10-27 05:54:17 +0000234}
235
Chris Lattnerba112292009-09-20 00:07:40 +0000236static bool ProvidePositionalOption(Option *Handler, StringRef Arg, int i) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000237 int Dummy = i;
Chris Lattnerba112292009-09-20 00:07:40 +0000238 return ProvideOption(Handler, Handler->ArgStr, Arg.data(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000239}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000240
Chris Lattner331de232002-07-22 02:07:59 +0000241
242// Option predicates...
243static inline bool isGrouping(const Option *O) {
244 return O->getFormattingFlag() == cl::Grouping;
245}
246static inline bool isPrefixedOrGrouping(const Option *O) {
247 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
248}
249
250// getOptionPred - Check to see if there are any options that satisfy the
251// specified predicate with names that are the prefixes in Name. This is
252// checked by progressively stripping characters off of the name, checking to
253// see if there options that satisfy the predicate. If we find one, return it,
254// otherwise return null.
255//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000256static Option *getOptionPred(StringRef Name, size_t &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000257 bool (*Pred)(const Option*),
Benjamin Kramer461c8762009-09-19 10:01:45 +0000258 StringMap<Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000259
Benjamin Kramer461c8762009-09-19 10:01:45 +0000260 StringMap<Option*>::iterator OMI = OptionsMap.find(Name);
Chris Lattner9878d6a2007-04-06 21:06:55 +0000261 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000262 Length = Name.size();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000263 return OMI->second;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000264 }
265
Chris Lattner331de232002-07-22 02:07:59 +0000266 if (Name.size() == 1) return 0;
267 do {
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000268 Name = Name.substr(0, Name.size()-1); // Chop off the last character.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000269 OMI = OptionsMap.find(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000270
271 // Loop while we haven't found an option and Name still has at least two
272 // characters in it (so that the next iteration will not be the empty
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000273 // string.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000274 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000275
Chris Lattner9878d6a2007-04-06 21:06:55 +0000276 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000277 Length = Name.size();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000278 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000279 }
280 return 0; // No option found!
281}
282
283static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000284 return O->getNumOccurrencesFlag() == cl::Required ||
285 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000286}
287
288static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000289 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
290 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000291}
Chris Lattnercaccd762001-10-27 05:54:17 +0000292
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000293/// ParseCStringVector - Break INPUT up wherever one or more
294/// whitespace characters are found, and store the resulting tokens in
295/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
Chris Lattnerfb2674d2009-09-20 01:11:23 +0000296/// using strdup(), so it is the caller's responsibility to free()
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000297/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000298///
Chris Lattnerb7b71a32009-09-20 01:33:46 +0000299static void ParseCStringVector(std::vector<char *> &OutputVector,
300 const char *Input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000301 // Characters which will be treated as token separators:
Chris Lattnerb7b71a32009-09-20 01:33:46 +0000302 StringRef Delims = " \v\f\t\r\n";
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000303
Chris Lattnerb7b71a32009-09-20 01:33:46 +0000304 StringRef WorkStr(Input);
305 while (!WorkStr.empty()) {
306 // If the first character is a delimiter, strip them off.
307 if (Delims.find(WorkStr[0]) != StringRef::npos) {
308 size_t Pos = WorkStr.find_first_not_of(Delims);
309 if (Pos == StringRef::npos) Pos = WorkStr.size();
310 WorkStr = WorkStr.substr(Pos);
311 continue;
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000312 }
Chris Lattnerb7b71a32009-09-20 01:33:46 +0000313
314 // Find position of first delimiter.
315 size_t Pos = WorkStr.find_first_of(Delims);
316 if (Pos == StringRef::npos) Pos = WorkStr.size();
317
318 // Everything from 0 to Pos is the next word to copy.
319 char *NewStr = (char*)malloc(Pos+1);
320 memcpy(NewStr, WorkStr.data(), Pos);
321 NewStr[Pos] = 0;
322 OutputVector.push_back(NewStr);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000323 }
Brian Gaeke06b06c52003-08-14 22:00:59 +0000324}
325
326/// ParseEnvironmentOptions - An alternative entry point to the
327/// CommandLine library, which allows you to read the program's name
328/// from the caller (as PROGNAME) and its command-line arguments from
329/// an environment variable (whose name is given in ENVVAR).
330///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000331void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000332 const char *Overview, bool ReadResponseFiles) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000333 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000334 assert(progName && "Program name not specified");
335 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000336
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000337 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000338 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000339 if (!envValue)
340 return;
341
Brian Gaeke06b06c52003-08-14 22:00:59 +0000342 // Get program's "name", which we wouldn't know without the caller
343 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000344 std::vector<char*> newArgv;
345 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000346
347 // Parse the value of the environment variable into a "command line"
348 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000349 ParseCStringVector(newArgv, envValue);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000350 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000351 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000352
353 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000354 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
355 i != e; ++i)
Chris Lattnerfb2674d2009-09-20 01:11:23 +0000356 free(*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000357}
358
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000359
360/// ExpandResponseFiles - Copy the contents of argv into newArgv,
361/// substituting the contents of the response files for the arguments
362/// of type @file.
363static void ExpandResponseFiles(int argc, char** argv,
364 std::vector<char*>& newArgv) {
365 for (int i = 1; i != argc; ++i) {
366 char* arg = argv[i];
367
368 if (arg[0] == '@') {
369
370 sys::PathWithStatus respFile(++arg);
371
372 // Check that the response file is not empty (mmap'ing empty
373 // files can be problematic).
374 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000375 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000376
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000377 // Mmap the response file into memory.
378 OwningPtr<MemoryBuffer>
379 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000380
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000381 // If we could open the file, parse its contents, otherwise
382 // pass the @file option verbatim.
Mikhail Glushenkov6c55b1c2009-01-28 03:46:22 +0000383
384 // TODO: we should also support recursive loading of response files,
385 // since this is how gcc behaves. (From their man page: "The file may
386 // itself contain additional @file options; any such options will be
387 // processed recursively.")
388
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000389 if (respFilePtr != 0) {
390 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
391 continue;
392 }
393 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000394 }
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000395 newArgv.push_back(strdup(arg));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000396 }
397}
398
Dan Gohman9a526322007-10-09 16:04:57 +0000399void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000400 const char *Overview, bool ReadResponseFiles) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000401 // Process all registered options.
402 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000403 std::vector<Option*> SinkOpts;
Benjamin Kramer461c8762009-09-19 10:01:45 +0000404 StringMap<Option*> Opts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000405 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000406
Chris Lattner9878d6a2007-04-06 21:06:55 +0000407 assert((!Opts.empty() || !PositionalOpts.empty()) &&
408 "No options specified!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000409
410 // Expand response files.
411 std::vector<char*> newArgv;
412 if (ReadResponseFiles) {
413 newArgv.push_back(strdup(argv[0]));
414 ExpandResponseFiles(argc, argv, newArgv);
415 argv = &newArgv[0];
Evan Cheng34cd4a42008-05-05 18:30:58 +0000416 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000417 }
418
Chris Lattnerefa3da52006-10-13 00:06:24 +0000419 // Copy the program name into ProgName, making sure not to overflow it.
420 std::string ProgName = sys::Path(argv[0]).getLast();
421 if (ProgName.size() > 79) ProgName.resize(79);
422 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000423
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000424 ProgramOverview = Overview;
425 bool ErrorParsing = false;
426
Chris Lattner331de232002-07-22 02:07:59 +0000427 // Check out the positional arguments to collect information about them.
428 unsigned NumPositionalRequired = 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000429
Chris Lattnerde013242005-08-08 17:25:38 +0000430 // Determine whether or not there are an unlimited number of positionals
431 bool HasUnlimitedPositionals = false;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000432
Chris Lattner331de232002-07-22 02:07:59 +0000433 Option *ConsumeAfterOpt = 0;
434 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000435 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000436 assert(PositionalOpts.size() > 1 &&
437 "Cannot specify cl::ConsumeAfter without a positional argument!");
438 ConsumeAfterOpt = PositionalOpts[0];
439 }
440
441 // Calculate how many positional values are _required_.
442 bool UnboundedFound = false;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000443 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Chris Lattner331de232002-07-22 02:07:59 +0000444 i != e; ++i) {
445 Option *Opt = PositionalOpts[i];
446 if (RequiresValue(Opt))
447 ++NumPositionalRequired;
448 else if (ConsumeAfterOpt) {
449 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000450 // unless there is only one positional argument...
451 if (PositionalOpts.size() > 2)
452 ErrorParsing |=
Benjamin Kramere6864c12009-08-02 12:13:02 +0000453 Opt->error("error - this positional option will never be matched, "
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000454 "because it does not Require a value, and a "
455 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000456 } else if (UnboundedFound && !Opt->ArgStr[0]) {
457 // This option does not "require" a value... Make sure this option is
458 // not specified after an option that eats all extra arguments, or this
459 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000460 //
Benjamin Kramere6864c12009-08-02 12:13:02 +0000461 ErrorParsing |= Opt->error("error - option can never match, because "
Chris Lattner331de232002-07-22 02:07:59 +0000462 "another positional argument will match an "
463 "unbounded number of values, and this option"
464 " does not require a value!");
465 }
466 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
467 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000468 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000469 }
470
Reid Spencer1e13fd22004-08-13 19:47:30 +0000471 // PositionalVals - A vector of "positional" arguments we accumulate into
Chris Lattnerba112292009-09-20 00:07:40 +0000472 // the process at the end.
Chris Lattner331de232002-07-22 02:07:59 +0000473 //
Chris Lattnerba112292009-09-20 00:07:40 +0000474 SmallVector<std::pair<StringRef,unsigned>, 4> PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000475
Chris Lattner9cf3d472003-07-30 17:34:02 +0000476 // If the program has named positional arguments, and the name has been run
477 // across, keep track of which positional argument was named. Otherwise put
478 // the positional args into the PositionalVals list...
479 Option *ActivePositionalArg = 0;
480
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000481 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000482 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000483 for (int i = 1; i < argc; ++i) {
484 Option *Handler = 0;
Chris Lattner6d5857e2005-05-10 23:20:17 +0000485 const char *Value = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000486 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000487
Chris Lattner69d6f132007-04-12 00:36:29 +0000488 // If the option list changed, this means that some command line
Chris Lattner159b0a432007-04-11 15:35:18 +0000489 // option has just been registered or deregistered. This can occur in
490 // response to things like -load, etc. If this happens, rescan the options.
Chris Lattner69d6f132007-04-12 00:36:29 +0000491 if (OptionListChanged) {
Chris Lattner159b0a432007-04-11 15:35:18 +0000492 PositionalOpts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000493 SinkOpts.clear();
Chris Lattner159b0a432007-04-11 15:35:18 +0000494 Opts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000495 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Chris Lattner69d6f132007-04-12 00:36:29 +0000496 OptionListChanged = false;
Chris Lattner159b0a432007-04-11 15:35:18 +0000497 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000498
Chris Lattner331de232002-07-22 02:07:59 +0000499 // Check to see if this is a positional argument. This argument is
500 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000501 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000502 //
503 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
504 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000505 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000506 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000507 continue; // We are done!
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000508 }
509
510 if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000511 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000512
513 // All of the positional arguments have been fulfulled, give the rest to
514 // the consume after option... if it's specified...
515 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000516 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000517 ConsumeAfterOpt != 0) {
518 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000519 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000520 break; // Handle outside of the argument processing loop...
521 }
522
523 // Delay processing positional arguments until the end...
524 continue;
525 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000526 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
527 !DashDashFound) {
528 DashDashFound = true; // This is the mythical "--"?
529 continue; // Don't try to process it as an argument itself.
530 } else if (ActivePositionalArg &&
531 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
532 // If there is a positional argument eating options, check to see if this
533 // option is another positional argument. If so, treat it as an argument,
534 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000535 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000536 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000537 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000538 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000539 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000540 }
541
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000542 } else { // We start with a '-', must be an argument.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000543 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000544 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000545
Chris Lattnerbf455c22004-05-06 22:04:31 +0000546 // Check to see if this "option" is really a prefixed or grouped argument.
Reid Spencer5f8448f2004-11-24 06:13:42 +0000547 if (Handler == 0) {
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000548 StringRef RealName(ArgName);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000549 if (RealName.size() > 1) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000550 size_t Length = 0;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000551 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
552 Opts);
Misha Brukmanf976c852005-04-21 22:55:34 +0000553
Chris Lattner331de232002-07-22 02:07:59 +0000554 // If the option is a prefixed option, then the value is simply the
555 // rest of the name... so fall through to later processing, by
556 // setting up the argument name flags and value fields.
557 //
558 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000559 Value = ArgName+Length;
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000560 assert(Opts.count(StringRef(ArgName, Length)) &&
561 Opts[StringRef(ArgName, Length)] == PGOpt);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000562 Handler = PGOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000563 } else if (PGOpt) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000564 // This must be a grouped option... handle them now.
Chris Lattner331de232002-07-22 02:07:59 +0000565 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000566
Chris Lattner331de232002-07-22 02:07:59 +0000567 do {
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000568 // Move current arg name out of RealName into RealArgName.
569 StringRef RealArgName = RealName.substr(0, Length);
570 RealName = RealName.substr(Length);
Misha Brukmanf976c852005-04-21 22:55:34 +0000571
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000572 // Because ValueRequired is an invalid flag for grouped arguments,
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000573 // we don't need to pass argc/argv in.
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000574 //
Chris Lattner331de232002-07-22 02:07:59 +0000575 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
576 "Option can not be cl::Grouping AND cl::ValueRequired!");
577 int Dummy;
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000578 ErrorParsing |= ProvideOption(PGOpt, RealArgName,
Chris Lattner6d5857e2005-05-10 23:20:17 +0000579 0, 0, 0, Dummy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000580
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000581 // Get the next grouping option.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000582 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000583 } while (PGOpt && Length != RealName.size());
Misha Brukmanf976c852005-04-21 22:55:34 +0000584
Chris Lattnerbf455c22004-05-06 22:04:31 +0000585 Handler = PGOpt; // Ate all of the options.
Chris Lattner331de232002-07-22 02:07:59 +0000586 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000587 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000588 }
589 }
590
591 if (Handler == 0) {
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000592 if (SinkOpts.empty()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000593 errs() << ProgramName << ": Unknown command line argument '"
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000594 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
595 ErrorParsing = true;
596 } else {
597 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
598 E = SinkOpts.end(); I != E ; ++I)
599 (*I)->addOccurrence(i, "", argv[i]);
600 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000601 continue;
602 }
603
Chris Lattner72fb8e52003-05-22 20:26:17 +0000604 // Check to see if this option accepts a comma separated list of values. If
605 // it does, we have to split up the value into multiple values...
Chris Lattner6d5857e2005-05-10 23:20:17 +0000606 if (Value && Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner72fb8e52003-05-22 20:26:17 +0000607 std::string Val(Value);
608 std::string::size_type Pos = Val.find(',');
609
610 while (Pos != std::string::npos) {
611 // Process the portion before the comma...
612 ErrorParsing |= ProvideOption(Handler, ArgName,
613 std::string(Val.begin(),
614 Val.begin()+Pos).c_str(),
615 argc, argv, i);
616 // Erase the portion before the comma, AND the comma...
617 Val.erase(Val.begin(), Val.begin()+Pos+1);
618 Value += Pos+1; // Increment the original value pointer as well...
619
620 // Check for another comma...
621 Pos = Val.find(',');
622 }
623 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000624
625 // If this is a named positional argument, just remember that it is the
626 // active one...
627 if (Handler->getFormattingFlag() == cl::Positional)
628 ActivePositionalArg = Handler;
Misha Brukmanf976c852005-04-21 22:55:34 +0000629 else
Chris Lattner9cf3d472003-07-30 17:34:02 +0000630 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000631 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000632
Chris Lattner331de232002-07-22 02:07:59 +0000633 // Check and handle positional arguments now...
634 if (NumPositionalRequired > PositionalVals.size()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000635 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000636 << ": Not enough positional command line arguments specified!\n"
637 << "Must specify at least " << NumPositionalRequired
638 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000639
Chris Lattner331de232002-07-22 02:07:59 +0000640 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000641 } else if (!HasUnlimitedPositionals
642 && PositionalVals.size() > PositionalOpts.size()) {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000643 errs() << ProgramName
Bill Wendlinge8156192006-12-07 01:30:32 +0000644 << ": Too many positional arguments specified!\n"
645 << "Can specify at most " << PositionalOpts.size()
646 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000647 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000648
649 } else if (ConsumeAfterOpt == 0) {
650 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000651 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
652 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner331de232002-07-22 02:07:59 +0000653 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000654 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000655 PositionalVals[ValNo].second);
656 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000657 --NumPositionalRequired; // We fulfilled our duty...
658 }
659
660 // If we _can_ give this option more arguments, do so now, as long as we
661 // do not give it values that others need. 'Done' controls whether the
662 // option even _WANTS_ any more.
663 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000664 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000665 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000666 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000667 case cl::Optional:
668 Done = true; // Optional arguments want _at most_ one value
669 // FALL THROUGH
670 case cl::ZeroOrMore: // Zero or more will take all they can get...
671 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000672 ProvidePositionalOption(PositionalOpts[i],
673 PositionalVals[ValNo].first,
674 PositionalVals[ValNo].second);
675 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000676 break;
677 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000678 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000679 "positional argument processing!");
680 }
681 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000682 }
Chris Lattner331de232002-07-22 02:07:59 +0000683 } else {
684 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
685 unsigned ValNo = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000686 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000687 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000688 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000689 PositionalVals[ValNo].first,
690 PositionalVals[ValNo].second);
691 ValNo++;
692 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000693
694 // Handle the case where there is just one positional option, and it's
695 // optional. In this case, we want to give JUST THE FIRST option to the
696 // positional option and keep the rest for the consume after. The above
697 // loop would have assigned no values to positional options in this case.
698 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000699 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000700 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000701 PositionalVals[ValNo].first,
702 PositionalVals[ValNo].second);
703 ValNo++;
704 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000705
Chris Lattner331de232002-07-22 02:07:59 +0000706 // Handle over all of the rest of the arguments to the
707 // cl::ConsumeAfter command line option...
708 for (; ValNo != PositionalVals.size(); ++ValNo)
709 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000710 PositionalVals[ValNo].first,
711 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000712 }
713
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000714 // Loop over args and make sure all required args are specified!
Benjamin Kramer461c8762009-09-19 10:01:45 +0000715 for (StringMap<Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000716 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000717 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000718 case Required:
719 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000720 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000721 I->second->error("must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000722 ErrorParsing = true;
723 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000724 // Fall through
725 default:
726 break;
727 }
728 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000729
Chris Lattner331de232002-07-22 02:07:59 +0000730 // Free all of the memory allocated to the map. Command line options may only
731 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000732 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000733 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000734 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000735
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000736 // Free the memory allocated by ExpandResponseFiles.
737 if (ReadResponseFiles) {
738 // Free all the strdup()ed strings.
739 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
740 i != e; ++i)
741 free (*i);
742 }
743
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000744 // If we had an error processing our arguments, don't let the program execute
745 if (ErrorParsing) exit(1);
746}
747
748//===----------------------------------------------------------------------===//
749// Option Base class implementation
750//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000751
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000752bool Option::error(const Twine &Message, StringRef ArgName) {
753 if (ArgName.data() == 0) ArgName = ArgStr;
754 if (ArgName.empty())
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000755 errs() << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000756 else
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000757 errs() << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000758
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000759 errs() << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000760 return true;
761}
762
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000763bool Option::addOccurrence(unsigned pos, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000764 StringRef Value, bool MultiArg) {
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000765 if (!MultiArg)
766 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000767
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000768 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000769 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000770 if (NumOccurrences > 1)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000771 return error("may only occur zero or one times!", ArgName);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000772 break;
773 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000774 if (NumOccurrences > 1)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000775 return error("must occur exactly one time!", ArgName);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000776 // Fall through
777 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000778 case ZeroOrMore:
779 case ConsumeAfter: break;
Benjamin Kramere6864c12009-08-02 12:13:02 +0000780 default: return error("bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000781 }
782
Reid Spencer1e13fd22004-08-13 19:47:30 +0000783 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000784}
785
Chris Lattner331de232002-07-22 02:07:59 +0000786
787// getValueStr - Get the value description string, using "DefaultMsg" if nothing
788// has been specified yet.
789//
790static const char *getValueStr(const Option &O, const char *DefaultMsg) {
791 if (O.ValueStr[0] == 0) return DefaultMsg;
792 return O.ValueStr;
793}
794
795//===----------------------------------------------------------------------===//
796// cl::alias class implementation
797//
798
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000799// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000800size_t alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000801 return std::strlen(ArgStr)+6;
802}
803
Chris Lattnera0de8432006-04-28 05:36:25 +0000804// Print out the option for the alias.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000805void alias::printOptionInfo(size_t GlobalWidth) const {
806 size_t L = std::strlen(ArgStr);
Benjamin Kramerd227a3f2009-08-23 10:01:13 +0000807 errs() << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
Daniel Dunbar603bea32009-07-16 02:06:09 +0000808 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000809}
810
811
Chris Lattner331de232002-07-22 02:07:59 +0000812
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000813//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000814// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000815//
816
Chris Lattner9b14eb52002-08-07 18:36:37 +0000817// basic_parser implementation
818//
819
820// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000821size_t basic_parser_impl::getOptionWidth(const Option &O) const {
822 size_t Len = std::strlen(O.ArgStr);
Chris Lattner9b14eb52002-08-07 18:36:37 +0000823 if (const char *ValName = getValueName())
824 Len += std::strlen(getValueStr(O, ValName))+3;
825
826 return Len + 6;
827}
828
Misha Brukmanf976c852005-04-21 22:55:34 +0000829// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000830// to-be-maintained width is specified.
831//
832void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000833 size_t GlobalWidth) const {
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000834 outs() << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000835
836 if (const char *ValName = getValueName())
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000837 outs() << "=<" << getValueStr(O, ValName) << '>';
Chris Lattner9b14eb52002-08-07 18:36:37 +0000838
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000839 outs().indent(GlobalWidth-getOptionWidth(O)) << " - " << O.HelpStr << '\n';
Chris Lattner9b14eb52002-08-07 18:36:37 +0000840}
841
842
843
844
Chris Lattner331de232002-07-22 02:07:59 +0000845// parser<bool> implementation
846//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000847bool parser<bool>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000848 StringRef Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000849 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000850 Arg == "1") {
851 Value = true;
Chris Lattnera460beb2009-09-19 18:55:05 +0000852 return false;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000853 }
Chris Lattnera460beb2009-09-19 18:55:05 +0000854
855 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
856 Value = false;
857 return false;
858 }
859 return O.error("'" + Arg +
860 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000861}
862
Dale Johannesen81da02b2007-05-22 17:14:46 +0000863// parser<boolOrDefault> implementation
864//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000865bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000866 StringRef Arg, boolOrDefault &Value) {
Dale Johannesen81da02b2007-05-22 17:14:46 +0000867 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
868 Arg == "1") {
869 Value = BOU_TRUE;
Chris Lattnera460beb2009-09-19 18:55:05 +0000870 return false;
Dale Johannesen81da02b2007-05-22 17:14:46 +0000871 }
Chris Lattnera460beb2009-09-19 18:55:05 +0000872 if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
873 Value = BOU_FALSE;
874 return false;
875 }
876
877 return O.error("'" + Arg +
878 "' is invalid value for boolean argument! Try 0 or 1");
Dale Johannesen81da02b2007-05-22 17:14:46 +0000879}
880
Chris Lattner331de232002-07-22 02:07:59 +0000881// parser<int> implementation
882//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000883bool parser<int>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000884 StringRef Arg, int &Value) {
Chris Lattner970e7df2009-09-19 23:59:02 +0000885 if (Arg.getAsInteger(0, Value))
Benjamin Kramere6864c12009-08-02 12:13:02 +0000886 return O.error("'" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000887 return false;
888}
889
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000890// parser<unsigned> implementation
891//
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000892bool parser<unsigned>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000893 StringRef Arg, unsigned &Value) {
Chris Lattner970e7df2009-09-19 23:59:02 +0000894
895 if (Arg.getAsInteger(0, Value))
Benjamin Kramere6864c12009-08-02 12:13:02 +0000896 return O.error("'" + Arg + "' value invalid for uint argument!");
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000897 return false;
898}
899
Chris Lattner9b14eb52002-08-07 18:36:37 +0000900// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000901//
Chris Lattnera460beb2009-09-19 18:55:05 +0000902static bool parseDouble(Option &O, StringRef Arg, double &Value) {
Chris Lattner970e7df2009-09-19 23:59:02 +0000903 SmallString<32> TmpStr(Arg.begin(), Arg.end());
904 const char *ArgStart = TmpStr.c_str();
Chris Lattner331de232002-07-22 02:07:59 +0000905 char *End;
906 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000907 if (*End != 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000908 return O.error("'" + Arg + "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000909 return false;
910}
911
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000912bool parser<double>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000913 StringRef Arg, double &Val) {
Chris Lattner9b14eb52002-08-07 18:36:37 +0000914 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000915}
916
Chris Lattner99c5c7b2009-09-20 00:40:49 +0000917bool parser<float>::parse(Option &O, StringRef ArgName,
Chris Lattnera460beb2009-09-19 18:55:05 +0000918 StringRef Arg, float &Val) {
Chris Lattner9b14eb52002-08-07 18:36:37 +0000919 double dVal;
920 if (parseDouble(O, Arg, dVal))
921 return true;
922 Val = (float)dVal;
923 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000924}
925
926
Chris Lattner331de232002-07-22 02:07:59 +0000927
928// generic_parser_base implementation
929//
930
Chris Lattneraa852bb2002-07-23 17:15:12 +0000931// findOption - Return the option number corresponding to the specified
932// argument string. If the option is not found, getNumOptions() is returned.
933//
934unsigned generic_parser_base::findOption(const char *Name) {
Benjamin Kramer461c8762009-09-19 10:01:45 +0000935 unsigned e = getNumOptions();
Chris Lattneraa852bb2002-07-23 17:15:12 +0000936
Benjamin Kramer461c8762009-09-19 10:01:45 +0000937 for (unsigned i = 0; i != e; ++i) {
938 if (strcmp(getOption(i), Name) == 0)
Chris Lattneraa852bb2002-07-23 17:15:12 +0000939 return i;
Benjamin Kramer461c8762009-09-19 10:01:45 +0000940 }
Chris Lattneraa852bb2002-07-23 17:15:12 +0000941 return e;
942}
943
944
Chris Lattner331de232002-07-22 02:07:59 +0000945// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000946size_t generic_parser_base::getOptionWidth(const Option &O) const {
Chris Lattner331de232002-07-22 02:07:59 +0000947 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000948 size_t Size = std::strlen(O.ArgStr)+6;
Chris Lattner331de232002-07-22 02:07:59 +0000949 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000950 Size = std::max(Size, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000951 return Size;
952 } else {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000953 size_t BaseSize = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000954 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000955 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000956 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000957 }
958}
959
Misha Brukmanf976c852005-04-21 22:55:34 +0000960// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +0000961// to-be-maintained width is specified.
962//
963void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000964 size_t GlobalWidth) const {
Chris Lattner331de232002-07-22 02:07:59 +0000965 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000966 size_t L = std::strlen(O.ArgStr);
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000967 outs() << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
968 << " - " << O.HelpStr << '\n';
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000969
Chris Lattner331de232002-07-22 02:07:59 +0000970 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000971 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000972 outs() << " =" << getOption(i) << std::string(NumSpaces, ' ')
973 << " - " << getDescription(i) << '\n';
Chris Lattner9c9be482002-01-31 00:42:56 +0000974 }
Chris Lattner331de232002-07-22 02:07:59 +0000975 } else {
976 if (O.HelpStr[0])
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000977 outs() << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000978 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000979 size_t L = std::strlen(getOption(i));
Chris Lattnerd9ea85a2009-08-23 08:43:55 +0000980 outs() << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
981 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000982 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000983 }
984}
985
986
987//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000988// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000989//
Reid Spencerad0846b2004-11-14 22:04:00 +0000990
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000991namespace {
992
Chris Lattner331de232002-07-22 02:07:59 +0000993class HelpPrinter {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000994 size_t MaxArgLen;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000995 const Option *EmptyArg;
996 const bool ShowHidden;
997
Chris Lattner331de232002-07-22 02:07:59 +0000998 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Benjamin Kramer461c8762009-09-19 10:01:45 +0000999 inline static bool isHidden(Option *Opt) {
1000 return Opt->getOptionHiddenFlag() >= Hidden;
Chris Lattner331de232002-07-22 02:07:59 +00001001 }
Benjamin Kramer461c8762009-09-19 10:01:45 +00001002 inline static bool isReallyHidden(Option *Opt) {
1003 return Opt->getOptionHiddenFlag() == ReallyHidden;
Chris Lattner331de232002-07-22 02:07:59 +00001004 }
1005
1006public:
Dan Gohman950a4c42008-03-25 22:06:05 +00001007 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Chris Lattner331de232002-07-22 02:07:59 +00001008 EmptyArg = 0;
1009 }
1010
1011 void operator=(bool Value) {
1012 if (Value == false) return;
1013
Chris Lattner9878d6a2007-04-06 21:06:55 +00001014 // Get all the options.
1015 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001016 std::vector<Option*> SinkOpts;
Benjamin Kramer461c8762009-09-19 10:01:45 +00001017 StringMap<Option*> OptMap;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001018 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001019
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001020 // Copy Options into a vector so we can sort them as we like...
Benjamin Kramer461c8762009-09-19 10:01:45 +00001021 std::vector<Option*> Opts;
1022 for (StringMap<Option*>::iterator I = OptMap.begin(), E = OptMap.end();
1023 I != E; ++I) {
1024 Opts.push_back(I->second);
1025 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001026
1027 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner90aa8392006-10-04 21:52:35 +00001028 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1029 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1030 Opts.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001031
1032 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +00001033 { // Give OptionSet a scope
1034 std::set<Option*> OptionSet;
Chris Lattner90aa8392006-10-04 21:52:35 +00001035 for (unsigned i = 0; i != Opts.size(); ++i)
Benjamin Kramer461c8762009-09-19 10:01:45 +00001036 if (OptionSet.count(Opts[i]) == 0)
1037 OptionSet.insert(Opts[i]); // Add new entry to set
Chris Lattner331de232002-07-22 02:07:59 +00001038 else
Chris Lattner90aa8392006-10-04 21:52:35 +00001039 Opts.erase(Opts.begin()+i--); // Erase duplicate
Chris Lattner331de232002-07-22 02:07:59 +00001040 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001041
1042 if (ProgramOverview)
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001043 outs() << "OVERVIEW: " << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001044
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001045 outs() << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +00001046
Chris Lattner90aa8392006-10-04 21:52:35 +00001047 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +00001048 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001049 if (!PositionalOpts.empty() &&
Chris Lattner9878d6a2007-04-06 21:06:55 +00001050 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1051 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +00001052
Evan Cheng34cd4a42008-05-05 18:30:58 +00001053 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +00001054 if (PositionalOpts[i]->ArgStr[0])
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001055 outs() << " --" << PositionalOpts[i]->ArgStr;
1056 outs() << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +00001057 }
Chris Lattner331de232002-07-22 02:07:59 +00001058
1059 // Print the consume after option info if it exists...
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001060 if (CAOpt) outs() << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +00001061
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001062 outs() << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001063
1064 // Compute the maximum argument length...
1065 MaxArgLen = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +00001066 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer461c8762009-09-19 10:01:45 +00001067 MaxArgLen = std::max(MaxArgLen, Opts[i]->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001068
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001069 outs() << "OPTIONS:\n";
Evan Cheng34cd4a42008-05-05 18:30:58 +00001070 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Benjamin Kramer461c8762009-09-19 10:01:45 +00001071 Opts[i]->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001072
Chris Lattnerc540ebb2004-11-19 17:08:15 +00001073 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +00001074 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1075 E = MoreHelp->end(); I != E; ++I)
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00001076 outs() << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +00001077 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +00001078
Reid Spencer9bbba0912004-11-16 06:11:52 +00001079 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +00001080 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001081 }
1082};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001083} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001084
Chris Lattner331de232002-07-22 02:07:59 +00001085// Define the two HelpPrinter instances that are used to print out help, or
1086// help-hidden...
1087//
Chris Lattner500d8bf2006-10-12 22:09:17 +00001088static HelpPrinter NormalPrinter(false);
1089static HelpPrinter HiddenPrinter(true);
Chris Lattner331de232002-07-22 02:07:59 +00001090
Chris Lattner500d8bf2006-10-12 22:09:17 +00001091static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001092HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001093 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +00001094
Chris Lattner500d8bf2006-10-12 22:09:17 +00001095static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001096HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001097 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001098
Chris Lattner500d8bf2006-10-12 22:09:17 +00001099static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +00001100
Chris Lattner500d8bf2006-10-12 22:09:17 +00001101namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +00001102class VersionPrinter {
1103public:
Devang Patelaed293d2007-02-01 01:43:37 +00001104 void print() {
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001105 outs() << "Low Level Virtual Machine (http://llvm.org/):\n"
1106 << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001107#ifdef LLVM_VERSION_INFO
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001108 outs() << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +00001109#endif
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001110 outs() << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001111#ifndef __OPTIMIZE__
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001112 outs() << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001113#else
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001114 outs() << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001115#endif
1116#ifndef NDEBUG
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001117 outs() << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001118#endif
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001119 outs() << ".\n"
1120 << " Built " << __DATE__ << " (" << __TIME__ << ").\n"
Daniel Dunbar65524782009-09-02 23:52:38 +00001121 << " Host: " << sys::getHostTriple() << "\n"
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001122 << "\n"
1123 << " Registered Targets:\n";
Daniel Dunbar603bea32009-07-16 02:06:09 +00001124
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001125 std::vector<std::pair<std::string, const Target*> > Targets;
1126 size_t Width = 0;
1127 for (TargetRegistry::iterator it = TargetRegistry::begin(),
1128 ie = TargetRegistry::end(); it != ie; ++it) {
1129 Targets.push_back(std::make_pair(it->getName(), &*it));
1130 Width = std::max(Width, Targets.back().first.length());
1131 }
1132 std::sort(Targets.begin(), Targets.end());
Daniel Dunbar77454a22009-07-26 05:09:50 +00001133
Benjamin Kramerd227a3f2009-08-23 10:01:13 +00001134 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
1135 outs() << " " << Targets[i].first
1136 << std::string(Width - Targets[i].first.length(), ' ') << " - "
1137 << Targets[i].second->getShortDescription() << "\n";
1138 }
1139 if (Targets.empty())
1140 outs() << " (none)\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001141 }
1142 void operator=(bool OptionWasSpecified) {
1143 if (OptionWasSpecified) {
1144 if (OverrideVersionPrinter == 0) {
1145 print();
Reid Spencer515b5b32006-06-05 16:22:56 +00001146 exit(1);
1147 } else {
1148 (*OverrideVersionPrinter)();
1149 exit(1);
1150 }
1151 }
1152 }
1153};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001154} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001155
1156
Reid Spencer69105f32004-08-04 00:36:06 +00001157// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001158static VersionPrinter VersionPrinterInstance;
1159
1160static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001161VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001162 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1163
Reid Spencer9bbba0912004-11-16 06:11:52 +00001164// Utility function for printing the help message.
1165void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001166 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001167 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1168 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001169 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001170 // --help option was given or not. Since we're circumventing that we have
1171 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001172 NormalPrinter = true;
1173}
Reid Spencer515b5b32006-06-05 16:22:56 +00001174
Devang Patelaed293d2007-02-01 01:43:37 +00001175/// Utility function for printing version number.
1176void cl::PrintVersionMessage() {
1177 VersionPrinterInstance.print();
1178}
1179
Reid Spencer515b5b32006-06-05 16:22:56 +00001180void cl::SetVersionPrinter(void (*func)()) {
1181 OverrideVersionPrinter = func;
1182}