blob: 0fe949c877239c9b3ff9c59d652c85dc608b1d27 [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/Config/config.h"
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000020#include "llvm/ADT/OwningPtr.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000021#include "llvm/Support/CommandLine.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000022#include "llvm/Support/ErrorHandling.h"
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000023#include "llvm/Support/MemoryBuffer.h"
Chris Lattner90aa8392006-10-04 21:52:35 +000024#include "llvm/Support/ManagedStatic.h"
Bill Wendlingfe6b1462006-11-26 10:52:51 +000025#include "llvm/Support/Streams.h"
Reid Spencer6f4c6072006-08-23 07:10:06 +000026#include "llvm/System/Path.h"
Chris Lattnerdbab15a2001-07-23 17:17:47 +000027#include <algorithm>
Duraid Madina786e3e22005-12-26 04:56:16 +000028#include <functional>
Chris Lattnerdbab15a2001-07-23 17:17:47 +000029#include <map>
Bill Wendling1a097e32006-12-07 23:41:45 +000030#include <ostream>
Chris Lattnerdbab15a2001-07-23 17:17:47 +000031#include <set>
Brian Gaeke2d6a2362003-10-10 17:01:36 +000032#include <cstdlib>
33#include <cerrno>
Chris Lattner51140042004-07-03 01:21:05 +000034#include <cstring>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000035#include <climits>
Chris Lattner2cdd21c2003-12-14 21:35:53 +000036using namespace llvm;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000037using namespace cl;
38
Chris Lattner7422a762006-08-27 12:45:47 +000039//===----------------------------------------------------------------------===//
40// Template instantiations and anchors.
41//
42TEMPLATE_INSTANTIATION(class basic_parser<bool>);
Dale Johannesen81da02b2007-05-22 17:14:46 +000043TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
Chris Lattner7422a762006-08-27 12:45:47 +000044TEMPLATE_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 Wendlingb587f962009-04-29 23:26:16 +000049TEMPLATE_INSTANTIATION(class basic_parser<char>);
Chris Lattner7422a762006-08-27 12:45:47 +000050
51TEMPLATE_INSTANTIATION(class opt<unsigned>);
52TEMPLATE_INSTANTIATION(class opt<int>);
53TEMPLATE_INSTANTIATION(class opt<std::string>);
Bill Wendlingb587f962009-04-29 23:26:16 +000054TEMPLATE_INSTANTIATION(class opt<char>);
Chris Lattner7422a762006-08-27 12:45:47 +000055TEMPLATE_INSTANTIATION(class opt<bool>);
56
57void Option::anchor() {}
58void basic_parser_impl::anchor() {}
59void parser<bool>::anchor() {}
Dale Johannesen81da02b2007-05-22 17:14:46 +000060void parser<boolOrDefault>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000061void parser<int>::anchor() {}
62void parser<unsigned>::anchor() {}
63void parser<double>::anchor() {}
64void parser<float>::anchor() {}
65void parser<std::string>::anchor() {}
Bill Wendlingb587f962009-04-29 23:26:16 +000066void parser<char>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000067
68//===----------------------------------------------------------------------===//
69
Chris Lattnerefa3da52006-10-13 00:06:24 +000070// 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>";
Reid Spencere1cc1502004-09-01 04:41:28 +000073static const char *ProgramOverview = 0;
74
Chris Lattnerc540ebb2004-11-19 17:08:15 +000075// This collects additional help to be printed.
Chris Lattner90aa8392006-10-04 21:52:35 +000076static ManagedStatic<std::vector<const char*> > MoreHelp;
Chris Lattnerc540ebb2004-11-19 17:08:15 +000077
Chris Lattner90aa8392006-10-04 21:52:35 +000078extrahelp::extrahelp(const char *Help)
Chris Lattnerc540ebb2004-11-19 17:08:15 +000079 : morehelp(Help) {
Chris Lattner90aa8392006-10-04 21:52:35 +000080 MoreHelp->push_back(Help);
Chris Lattnerc540ebb2004-11-19 17:08:15 +000081}
82
Chris Lattner69d6f132007-04-12 00:36:29 +000083static bool OptionListChanged = false;
84
85// MarkOptionsChanged - Internal helper function.
86void cl::MarkOptionsChanged() {
87 OptionListChanged = true;
88}
89
Chris Lattner9878d6a2007-04-06 21:06:55 +000090/// 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 Glushenkovbeb4d822008-04-28 16:44:25 +000096
Chris Lattner9878d6a2007-04-06 21:06:55 +000097 NextRegistered = RegisteredOptionList;
98 RegisteredOptionList = this;
Chris Lattner69d6f132007-04-12 00:36:29 +000099 MarkOptionsChanged();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000100}
101
Chris Lattner69d6f132007-04-12 00:36:29 +0000102
Chris Lattner331de232002-07-22 02:07:59 +0000103//===----------------------------------------------------------------------===//
Chris Lattner7422a762006-08-27 12:45:47 +0000104// Basic, shared command line option processing machinery.
Chris Lattner331de232002-07-22 02:07:59 +0000105//
106
Chris Lattner9878d6a2007-04-06 21:06:55 +0000107/// GetOptionInfo - Scan the list of registered options, turning them into data
108/// structures that are easier to handle.
109static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000110 std::vector<Option*> &SinkOpts,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000111 std::map<std::string, Option*> &OptionsMap) {
112 std::vector<const char*> OptionNames;
Chris Lattneree2b3202007-04-07 05:38:53 +0000113 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000114 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 Glushenkovbeb4d822008-04-28 16:44:25 +0000120
Chris Lattner9878d6a2007-04-06 21:06:55 +0000121 // Handle named options.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000122 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000123 // Add argument to the argument map!
124 if (!OptionsMap.insert(std::pair<std::string,Option*>(OptionNames[i],
125 O)).second) {
126 cerr << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman33540ad2008-05-30 13:26:11 +0000127 << OptionNames[i] << "' defined more than once!\n";
Chris Lattner9878d6a2007-04-06 21:06:55 +0000128 }
129 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000130
Chris Lattner9878d6a2007-04-06 21:06:55 +0000131 OptionNames.clear();
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000132
Chris Lattner9878d6a2007-04-06 21:06:55 +0000133 // Remember information about positional options.
134 if (O->getFormattingFlag() == cl::Positional)
135 PositionalOpts.push_back(O);
Dan Gohman61e015f2008-02-23 01:55:25 +0000136 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000137 SinkOpts.push_back(O);
Chris Lattner9878d6a2007-04-06 21:06:55 +0000138 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattneree2b3202007-04-07 05:38:53 +0000139 if (CAOpt)
Chris Lattner9878d6a2007-04-06 21:06:55 +0000140 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
Chris Lattneree2b3202007-04-07 05:38:53 +0000141 CAOpt = O;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000142 }
Chris Lattnere8e258b2002-07-29 20:58:42 +0000143 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000144
Chris Lattneree2b3202007-04-07 05:38:53 +0000145 if (CAOpt)
146 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000147
Chris Lattneree2b3202007-04-07 05:38:53 +0000148 // Make sure that they are in order of registration not backwards.
149 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
Chris Lattnere8e258b2002-07-29 20:58:42 +0000150}
151
Chris Lattner9878d6a2007-04-06 21:06:55 +0000152
Chris Lattneraf035f32007-04-05 21:58:17 +0000153/// LookupOption - Lookup the option specified by the specified option on the
154/// command line. If there is a value specified (after an equal sign) return
155/// that as well.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000156static Option *LookupOption(const char *&Arg, const char *&Value,
157 std::map<std::string, Option*> &OptionsMap) {
Chris Lattneraf035f32007-04-05 21:58:17 +0000158 while (*Arg == '-') ++Arg; // Eat leading dashes
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000159
Chris Lattneraf035f32007-04-05 21:58:17 +0000160 const char *ArgEnd = Arg;
161 while (*ArgEnd && *ArgEnd != '=')
162 ++ArgEnd; // Scan till end of argument name.
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000163
Chris Lattneraf035f32007-04-05 21:58:17 +0000164 if (*ArgEnd == '=') // If we have an equals sign...
165 Value = ArgEnd+1; // Get the value, not the equals
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000166
167
Chris Lattneraf035f32007-04-05 21:58:17 +0000168 if (*Arg == 0) return 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000169
Chris Lattneraf035f32007-04-05 21:58:17 +0000170 // Look up the option.
Chris Lattneraf035f32007-04-05 21:58:17 +0000171 std::map<std::string, Option*>::iterator I =
Chris Lattner9878d6a2007-04-06 21:06:55 +0000172 OptionsMap.find(std::string(Arg, ArgEnd));
173 return I != OptionsMap.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000174}
175
Chris Lattnercaccd762001-10-27 05:54:17 +0000176static inline bool ProvideOption(Option *Handler, const char *ArgName,
177 const char *Value, int argc, char **argv,
178 int &i) {
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000179 // Is this a multi-argument option?
180 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
181
Chris Lattnercaccd762001-10-27 05:54:17 +0000182 // Enforce value requirements
183 switch (Handler->getValueExpectedFlag()) {
184 case ValueRequired:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000185 if (Value == 0) { // No value specified?
Chris Lattnercaccd762001-10-27 05:54:17 +0000186 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
187 Value = argv[++i];
188 } else {
189 return Handler->error(" requires a value!");
190 }
191 }
192 break;
193 case ValueDisallowed:
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000194 if (NumAdditionalVals > 0)
195 return Handler->error(": multi-valued option specified"
196 " with ValueDisallowed modifier!");
197
Chris Lattner6d5857e2005-05-10 23:20:17 +0000198 if (Value)
Misha Brukmanf976c852005-04-21 22:55:34 +0000199 return Handler->error(" does not allow a value! '" +
Chris Lattnerca6433f2003-05-22 20:06:43 +0000200 std::string(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000201 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000202 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000203 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000204 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000205 cerr << ProgramName
206 << ": Bad ValueMask flag! CommandLine usage error:"
207 << Handler->getValueExpectedFlag() << "\n";
Torok Edwin7d696d82009-07-11 13:10:19 +0000208 llvm_unreachable();
Chris Lattnercaccd762001-10-27 05:54:17 +0000209 }
210
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000211 // If this isn't a multi-arg option, just run the handler.
212 if (NumAdditionalVals == 0) {
213 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
214 }
215 // If it is, run the handle several times.
216 else {
217 bool MultiArg = false;
218
219 if (Value) {
220 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
221 return true;
222 --NumAdditionalVals;
223 MultiArg = true;
224 }
225
226 while (NumAdditionalVals > 0) {
227
228 if (i+1 < argc) {
229 Value = argv[++i];
230 } else {
231 return Handler->error(": not enough values!");
232 }
233 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
234 return true;
235 MultiArg = true;
236 --NumAdditionalVals;
237 }
238 return false;
239 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000240}
241
Misha Brukmanf976c852005-04-21 22:55:34 +0000242static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000243 int i) {
244 int Dummy = i;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000245 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000246}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000247
Chris Lattner331de232002-07-22 02:07:59 +0000248
249// Option predicates...
250static inline bool isGrouping(const Option *O) {
251 return O->getFormattingFlag() == cl::Grouping;
252}
253static inline bool isPrefixedOrGrouping(const Option *O) {
254 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
255}
256
257// getOptionPred - Check to see if there are any options that satisfy the
258// specified predicate with names that are the prefixes in Name. This is
259// checked by progressively stripping characters off of the name, checking to
260// see if there options that satisfy the predicate. If we find one, return it,
261// otherwise return null.
262//
Evan Cheng34cd4a42008-05-05 18:30:58 +0000263static Option *getOptionPred(std::string Name, size_t &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000264 bool (*Pred)(const Option*),
265 std::map<std::string, Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000266
Chris Lattner9878d6a2007-04-06 21:06:55 +0000267 std::map<std::string, Option*>::iterator OMI = OptionsMap.find(Name);
268 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000269 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000270 return OMI->second;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000271 }
272
Chris Lattner331de232002-07-22 02:07:59 +0000273 if (Name.size() == 1) return 0;
274 do {
275 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000276 OMI = OptionsMap.find(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000277
278 // Loop while we haven't found an option and Name still has at least two
279 // characters in it (so that the next iteration will not be the empty
280 // string...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000281 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000282
Chris Lattner9878d6a2007-04-06 21:06:55 +0000283 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000284 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000285 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000286 }
287 return 0; // No option found!
288}
289
290static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000291 return O->getNumOccurrencesFlag() == cl::Required ||
292 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000293}
294
295static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000296 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
297 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000298}
Chris Lattnercaccd762001-10-27 05:54:17 +0000299
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000300/// ParseCStringVector - Break INPUT up wherever one or more
301/// whitespace characters are found, and store the resulting tokens in
302/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
303/// using strdup (), so it is the caller's responsibility to free ()
304/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000305///
Chris Lattner23288582006-08-27 22:10:29 +0000306static void ParseCStringVector(std::vector<char *> &output,
307 const char *input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000308 // Characters which will be treated as token separators:
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000309 static const char *const delims = " \v\f\t\r\n";
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000310
311 std::string work (input);
312 // Skip past any delims at head of input string.
313 size_t pos = work.find_first_not_of (delims);
314 // If the string consists entirely of delims, then exit early.
315 if (pos == std::string::npos) return;
316 // Otherwise, jump forward to beginning of first word.
317 work = work.substr (pos);
318 // Find position of first delimiter.
319 pos = work.find_first_of (delims);
320
321 while (!work.empty() && pos != std::string::npos) {
322 // Everything from 0 to POS is the next word to copy.
323 output.push_back (strdup (work.substr (0,pos).c_str ()));
324 // Is there another word in the string?
325 size_t nextpos = work.find_first_not_of (delims, pos + 1);
326 if (nextpos != std::string::npos) {
327 // Yes? Then remove delims from beginning ...
328 work = work.substr (work.find_first_not_of (delims, pos + 1));
329 // and find the end of the word.
330 pos = work.find_first_of (delims);
331 } else {
332 // No? (Remainder of string is delims.) End the loop.
333 work = "";
334 pos = std::string::npos;
335 }
336 }
337
338 // If `input' ended with non-delim char, then we'll get here with
339 // the last word of `input' in `work'; copy it now.
340 if (!work.empty ()) {
341 output.push_back (strdup (work.c_str ()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000342 }
343}
344
345/// ParseEnvironmentOptions - An alternative entry point to the
346/// CommandLine library, which allows you to read the program's name
347/// from the caller (as PROGNAME) and its command-line arguments from
348/// an environment variable (whose name is given in ENVVAR).
349///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000350void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000351 const char *Overview, bool ReadResponseFiles) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000352 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000353 assert(progName && "Program name not specified");
354 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000355
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000356 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000357 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000358 if (!envValue)
359 return;
360
Brian Gaeke06b06c52003-08-14 22:00:59 +0000361 // Get program's "name", which we wouldn't know without the caller
362 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000363 std::vector<char*> newArgv;
364 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000365
366 // Parse the value of the environment variable into a "command line"
367 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000368 ParseCStringVector(newArgv, envValue);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000369 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000370 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000371
372 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000373 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
374 i != e; ++i)
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000375 free (*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000376}
377
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000378
379/// ExpandResponseFiles - Copy the contents of argv into newArgv,
380/// substituting the contents of the response files for the arguments
381/// of type @file.
382static void ExpandResponseFiles(int argc, char** argv,
383 std::vector<char*>& newArgv) {
384 for (int i = 1; i != argc; ++i) {
385 char* arg = argv[i];
386
387 if (arg[0] == '@') {
388
389 sys::PathWithStatus respFile(++arg);
390
391 // Check that the response file is not empty (mmap'ing empty
392 // files can be problematic).
393 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000394 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000395
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000396 // Mmap the response file into memory.
397 OwningPtr<MemoryBuffer>
398 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000399
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000400 // If we could open the file, parse its contents, otherwise
401 // pass the @file option verbatim.
Mikhail Glushenkov6c55b1c2009-01-28 03:46:22 +0000402
403 // TODO: we should also support recursive loading of response files,
404 // since this is how gcc behaves. (From their man page: "The file may
405 // itself contain additional @file options; any such options will be
406 // processed recursively.")
407
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000408 if (respFilePtr != 0) {
409 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
410 continue;
411 }
412 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000413 }
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000414 newArgv.push_back(strdup(arg));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000415 }
416}
417
Dan Gohman9a526322007-10-09 16:04:57 +0000418void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000419 const char *Overview, bool ReadResponseFiles) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000420 // Process all registered options.
421 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000422 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000423 std::map<std::string, Option*> Opts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000424 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000425
Chris Lattner9878d6a2007-04-06 21:06:55 +0000426 assert((!Opts.empty() || !PositionalOpts.empty()) &&
427 "No options specified!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000428
429 // Expand response files.
430 std::vector<char*> newArgv;
431 if (ReadResponseFiles) {
432 newArgv.push_back(strdup(argv[0]));
433 ExpandResponseFiles(argc, argv, newArgv);
434 argv = &newArgv[0];
Evan Cheng34cd4a42008-05-05 18:30:58 +0000435 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000436 }
437
Chris Lattnerefa3da52006-10-13 00:06:24 +0000438 // Copy the program name into ProgName, making sure not to overflow it.
439 std::string ProgName = sys::Path(argv[0]).getLast();
440 if (ProgName.size() > 79) ProgName.resize(79);
441 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000442
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000443 ProgramOverview = Overview;
444 bool ErrorParsing = false;
445
Chris Lattner331de232002-07-22 02:07:59 +0000446 // Check out the positional arguments to collect information about them.
447 unsigned NumPositionalRequired = 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000448
Chris Lattnerde013242005-08-08 17:25:38 +0000449 // Determine whether or not there are an unlimited number of positionals
450 bool HasUnlimitedPositionals = false;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000451
Chris Lattner331de232002-07-22 02:07:59 +0000452 Option *ConsumeAfterOpt = 0;
453 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000454 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000455 assert(PositionalOpts.size() > 1 &&
456 "Cannot specify cl::ConsumeAfter without a positional argument!");
457 ConsumeAfterOpt = PositionalOpts[0];
458 }
459
460 // Calculate how many positional values are _required_.
461 bool UnboundedFound = false;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000462 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Chris Lattner331de232002-07-22 02:07:59 +0000463 i != e; ++i) {
464 Option *Opt = PositionalOpts[i];
465 if (RequiresValue(Opt))
466 ++NumPositionalRequired;
467 else if (ConsumeAfterOpt) {
468 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000469 // unless there is only one positional argument...
470 if (PositionalOpts.size() > 2)
471 ErrorParsing |=
472 Opt->error(" error - this positional option will never be matched, "
473 "because it does not Require a value, and a "
474 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000475 } else if (UnboundedFound && !Opt->ArgStr[0]) {
476 // This option does not "require" a value... Make sure this option is
477 // not specified after an option that eats all extra arguments, or this
478 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000479 //
480 ErrorParsing |= Opt->error(" error - option can never match, because "
481 "another positional argument will match an "
482 "unbounded number of values, and this option"
483 " does not require a value!");
484 }
485 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
486 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000487 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000488 }
489
Reid Spencer1e13fd22004-08-13 19:47:30 +0000490 // PositionalVals - A vector of "positional" arguments we accumulate into
491 // the process at the end...
Chris Lattner331de232002-07-22 02:07:59 +0000492 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000493 std::vector<std::pair<std::string,unsigned> > PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000494
Chris Lattner9cf3d472003-07-30 17:34:02 +0000495 // If the program has named positional arguments, and the name has been run
496 // across, keep track of which positional argument was named. Otherwise put
497 // the positional args into the PositionalVals list...
498 Option *ActivePositionalArg = 0;
499
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000500 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000501 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000502 for (int i = 1; i < argc; ++i) {
503 Option *Handler = 0;
Chris Lattner6d5857e2005-05-10 23:20:17 +0000504 const char *Value = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000505 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000506
Chris Lattner69d6f132007-04-12 00:36:29 +0000507 // If the option list changed, this means that some command line
Chris Lattner159b0a432007-04-11 15:35:18 +0000508 // option has just been registered or deregistered. This can occur in
509 // response to things like -load, etc. If this happens, rescan the options.
Chris Lattner69d6f132007-04-12 00:36:29 +0000510 if (OptionListChanged) {
Chris Lattner159b0a432007-04-11 15:35:18 +0000511 PositionalOpts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000512 SinkOpts.clear();
Chris Lattner159b0a432007-04-11 15:35:18 +0000513 Opts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000514 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Chris Lattner69d6f132007-04-12 00:36:29 +0000515 OptionListChanged = false;
Chris Lattner159b0a432007-04-11 15:35:18 +0000516 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000517
Chris Lattner331de232002-07-22 02:07:59 +0000518 // Check to see if this is a positional argument. This argument is
519 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000520 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000521 //
522 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
523 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000524 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000525 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000526 continue; // We are done!
527 } else if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000528 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000529
530 // All of the positional arguments have been fulfulled, give the rest to
531 // the consume after option... if it's specified...
532 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000533 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000534 ConsumeAfterOpt != 0) {
535 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000536 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000537 break; // Handle outside of the argument processing loop...
538 }
539
540 // Delay processing positional arguments until the end...
541 continue;
542 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000543 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
544 !DashDashFound) {
545 DashDashFound = true; // This is the mythical "--"?
546 continue; // Don't try to process it as an argument itself.
547 } else if (ActivePositionalArg &&
548 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
549 // If there is a positional argument eating options, check to see if this
550 // option is another positional argument. If so, treat it as an argument,
551 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000552 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000553 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000554 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000555 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000556 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000557 }
558
Chris Lattnerbf455c22004-05-06 22:04:31 +0000559 } else { // We start with a '-', must be an argument...
560 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000561 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000562
Chris Lattnerbf455c22004-05-06 22:04:31 +0000563 // Check to see if this "option" is really a prefixed or grouped argument.
Reid Spencer5f8448f2004-11-24 06:13:42 +0000564 if (Handler == 0) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000565 std::string RealName(ArgName);
566 if (RealName.size() > 1) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000567 size_t Length = 0;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000568 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
569 Opts);
Misha Brukmanf976c852005-04-21 22:55:34 +0000570
Chris Lattner331de232002-07-22 02:07:59 +0000571 // If the option is a prefixed option, then the value is simply the
572 // rest of the name... so fall through to later processing, by
573 // setting up the argument name flags and value fields.
574 //
575 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000576 Value = ArgName+Length;
577 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
578 Opts.find(std::string(ArgName, Value))->second == PGOpt);
579 Handler = PGOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000580 } else if (PGOpt) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000581 // This must be a grouped option... handle them now.
Chris Lattner331de232002-07-22 02:07:59 +0000582 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000583
Chris Lattner331de232002-07-22 02:07:59 +0000584 do {
585 // Move current arg name out of RealName into RealArgName...
Chris Lattnerbf455c22004-05-06 22:04:31 +0000586 std::string RealArgName(RealName.begin(),
587 RealName.begin() + Length);
588 RealName.erase(RealName.begin(), RealName.begin() + Length);
Misha Brukmanf976c852005-04-21 22:55:34 +0000589
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000590 // Because ValueRequired is an invalid flag for grouped arguments,
591 // we don't need to pass argc/argv in...
592 //
Chris Lattner331de232002-07-22 02:07:59 +0000593 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
594 "Option can not be cl::Grouping AND cl::ValueRequired!");
595 int Dummy;
Chris Lattnerbf455c22004-05-06 22:04:31 +0000596 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
Chris Lattner6d5857e2005-05-10 23:20:17 +0000597 0, 0, 0, Dummy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000598
Chris Lattner331de232002-07-22 02:07:59 +0000599 // Get the next grouping option...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000600 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000601 } while (PGOpt && Length != RealName.size());
Misha Brukmanf976c852005-04-21 22:55:34 +0000602
Chris Lattnerbf455c22004-05-06 22:04:31 +0000603 Handler = PGOpt; // Ate all of the options.
Chris Lattner331de232002-07-22 02:07:59 +0000604 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000605 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000606 }
607 }
608
609 if (Handler == 0) {
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000610 if (SinkOpts.empty()) {
611 cerr << ProgramName << ": Unknown command line argument '"
612 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
613 ErrorParsing = true;
614 } else {
615 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
616 E = SinkOpts.end(); I != E ; ++I)
617 (*I)->addOccurrence(i, "", argv[i]);
618 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000619 continue;
620 }
621
Chris Lattner72fb8e52003-05-22 20:26:17 +0000622 // Check to see if this option accepts a comma separated list of values. If
623 // it does, we have to split up the value into multiple values...
Chris Lattner6d5857e2005-05-10 23:20:17 +0000624 if (Value && Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner72fb8e52003-05-22 20:26:17 +0000625 std::string Val(Value);
626 std::string::size_type Pos = Val.find(',');
627
628 while (Pos != std::string::npos) {
629 // Process the portion before the comma...
630 ErrorParsing |= ProvideOption(Handler, ArgName,
631 std::string(Val.begin(),
632 Val.begin()+Pos).c_str(),
633 argc, argv, i);
634 // Erase the portion before the comma, AND the comma...
635 Val.erase(Val.begin(), Val.begin()+Pos+1);
636 Value += Pos+1; // Increment the original value pointer as well...
637
638 // Check for another comma...
639 Pos = Val.find(',');
640 }
641 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000642
643 // If this is a named positional argument, just remember that it is the
644 // active one...
645 if (Handler->getFormattingFlag() == cl::Positional)
646 ActivePositionalArg = Handler;
Misha Brukmanf976c852005-04-21 22:55:34 +0000647 else
Chris Lattner9cf3d472003-07-30 17:34:02 +0000648 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000649 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000650
Chris Lattner331de232002-07-22 02:07:59 +0000651 // Check and handle positional arguments now...
652 if (NumPositionalRequired > PositionalVals.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000653 cerr << ProgramName
654 << ": Not enough positional command line arguments specified!\n"
655 << "Must specify at least " << NumPositionalRequired
656 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000657
Chris Lattner331de232002-07-22 02:07:59 +0000658 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000659 } else if (!HasUnlimitedPositionals
660 && PositionalVals.size() > PositionalOpts.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000661 cerr << ProgramName
662 << ": Too many positional arguments specified!\n"
663 << "Can specify at most " << PositionalOpts.size()
664 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000665 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000666
667 } else if (ConsumeAfterOpt == 0) {
668 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000669 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
670 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner331de232002-07-22 02:07:59 +0000671 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000672 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000673 PositionalVals[ValNo].second);
674 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000675 --NumPositionalRequired; // We fulfilled our duty...
676 }
677
678 // If we _can_ give this option more arguments, do so now, as long as we
679 // do not give it values that others need. 'Done' controls whether the
680 // option even _WANTS_ any more.
681 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000682 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000683 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000684 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000685 case cl::Optional:
686 Done = true; // Optional arguments want _at most_ one value
687 // FALL THROUGH
688 case cl::ZeroOrMore: // Zero or more will take all they can get...
689 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000690 ProvidePositionalOption(PositionalOpts[i],
691 PositionalVals[ValNo].first,
692 PositionalVals[ValNo].second);
693 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000694 break;
695 default:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000696 assert(0 && "Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000697 "positional argument processing!");
698 }
699 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000700 }
Chris Lattner331de232002-07-22 02:07:59 +0000701 } else {
702 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
703 unsigned ValNo = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000704 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000705 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000706 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000707 PositionalVals[ValNo].first,
708 PositionalVals[ValNo].second);
709 ValNo++;
710 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000711
712 // Handle the case where there is just one positional option, and it's
713 // optional. In this case, we want to give JUST THE FIRST option to the
714 // positional option and keep the rest for the consume after. The above
715 // loop would have assigned no values to positional options in this case.
716 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000717 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000718 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000719 PositionalVals[ValNo].first,
720 PositionalVals[ValNo].second);
721 ValNo++;
722 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000723
Chris Lattner331de232002-07-22 02:07:59 +0000724 // Handle over all of the rest of the arguments to the
725 // cl::ConsumeAfter command line option...
726 for (; ValNo != PositionalVals.size(); ++ValNo)
727 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000728 PositionalVals[ValNo].first,
729 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000730 }
731
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000732 // Loop over args and make sure all required args are specified!
Misha Brukmanf976c852005-04-21 22:55:34 +0000733 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000734 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000735 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000736 case Required:
737 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000738 if (I->second->getNumOccurrences() == 0) {
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000739 I->second->error(" must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000740 ErrorParsing = true;
741 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000742 // Fall through
743 default:
744 break;
745 }
746 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000747
Chris Lattner331de232002-07-22 02:07:59 +0000748 // Free all of the memory allocated to the map. Command line options may only
749 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000750 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000751 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000752 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000753
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000754 // Free the memory allocated by ExpandResponseFiles.
755 if (ReadResponseFiles) {
756 // Free all the strdup()ed strings.
757 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
758 i != e; ++i)
759 free (*i);
760 }
761
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000762 // If we had an error processing our arguments, don't let the program execute
763 if (ErrorParsing) exit(1);
764}
765
766//===----------------------------------------------------------------------===//
767// Option Base class implementation
768//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000769
Chris Lattnerca6433f2003-05-22 20:06:43 +0000770bool Option::error(std::string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000771 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000772 if (ArgName[0] == 0)
Bill Wendlinge8156192006-12-07 01:30:32 +0000773 cerr << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000774 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000775 cerr << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000776
Bill Wendlinge8156192006-12-07 01:30:32 +0000777 cerr << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000778 return true;
779}
780
Chris Lattner6d5857e2005-05-10 23:20:17 +0000781bool Option::addOccurrence(unsigned pos, const char *ArgName,
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000782 const std::string &Value,
783 bool MultiArg) {
784 if (!MultiArg)
785 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000786
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000787 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000788 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000789 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000790 return error(": may only occur zero or one times!", ArgName);
791 break;
792 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000793 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000794 return error(": must occur exactly one time!", ArgName);
795 // Fall through
796 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000797 case ZeroOrMore:
798 case ConsumeAfter: break;
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000799 default: return error(": bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000800 }
801
Reid Spencer1e13fd22004-08-13 19:47:30 +0000802 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000803}
804
Chris Lattner331de232002-07-22 02:07:59 +0000805
806// getValueStr - Get the value description string, using "DefaultMsg" if nothing
807// has been specified yet.
808//
809static const char *getValueStr(const Option &O, const char *DefaultMsg) {
810 if (O.ValueStr[0] == 0) return DefaultMsg;
811 return O.ValueStr;
812}
813
814//===----------------------------------------------------------------------===//
815// cl::alias class implementation
816//
817
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000818// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000819size_t alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000820 return std::strlen(ArgStr)+6;
821}
822
Chris Lattnera0de8432006-04-28 05:36:25 +0000823// Print out the option for the alias.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000824void alias::printOptionInfo(size_t GlobalWidth) const {
825 size_t L = std::strlen(ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000826 cout << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
827 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000828}
829
830
Chris Lattner331de232002-07-22 02:07:59 +0000831
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000832//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000833// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000834//
835
Chris Lattner9b14eb52002-08-07 18:36:37 +0000836// basic_parser implementation
837//
838
839// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000840size_t basic_parser_impl::getOptionWidth(const Option &O) const {
841 size_t Len = std::strlen(O.ArgStr);
Chris Lattner9b14eb52002-08-07 18:36:37 +0000842 if (const char *ValName = getValueName())
843 Len += std::strlen(getValueStr(O, ValName))+3;
844
845 return Len + 6;
846}
847
Misha Brukmanf976c852005-04-21 22:55:34 +0000848// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000849// to-be-maintained width is specified.
850//
851void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000852 size_t GlobalWidth) const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000853 cout << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000854
855 if (const char *ValName = getValueName())
Bill Wendlinge8156192006-12-07 01:30:32 +0000856 cout << "=<" << getValueStr(O, ValName) << ">";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000857
Bill Wendlinge8156192006-12-07 01:30:32 +0000858 cout << std::string(GlobalWidth-getOptionWidth(O), ' ') << " - "
859 << O.HelpStr << "\n";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000860}
861
862
863
864
Chris Lattner331de232002-07-22 02:07:59 +0000865// parser<bool> implementation
866//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000867bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000868 const std::string &Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000869 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000870 Arg == "1") {
871 Value = true;
872 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
873 Value = false;
874 } else {
Chris Lattner331de232002-07-22 02:07:59 +0000875 return O.error(": '" + Arg +
876 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000877 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000878 return false;
879}
880
Dale Johannesen81da02b2007-05-22 17:14:46 +0000881// parser<boolOrDefault> implementation
882//
883bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
884 const std::string &Arg, boolOrDefault &Value) {
885 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
886 Arg == "1") {
887 Value = BOU_TRUE;
Mike Stumpd6f175b2009-01-30 08:19:46 +0000888 } else if (Arg == "false" || Arg == "FALSE"
889 || Arg == "False" || Arg == "0") {
Dale Johannesen81da02b2007-05-22 17:14:46 +0000890 Value = BOU_FALSE;
891 } else {
892 return O.error(": '" + Arg +
893 "' is invalid value for boolean argument! Try 0 or 1");
894 }
895 return false;
896}
897
Chris Lattner331de232002-07-22 02:07:59 +0000898// parser<int> implementation
899//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000900bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000901 const std::string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000902 char *End;
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000903 Value = (int)strtol(Arg.c_str(), &End, 0);
Misha Brukmanf976c852005-04-21 22:55:34 +0000904 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000905 return O.error(": '" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000906 return false;
907}
908
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000909// parser<unsigned> implementation
910//
911bool parser<unsigned>::parse(Option &O, const char *ArgName,
912 const std::string &Arg, unsigned &Value) {
913 char *End;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000914 errno = 0;
915 unsigned long V = strtoul(Arg.c_str(), &End, 0);
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000916 Value = (unsigned)V;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000917 if (((V == ULONG_MAX) && (errno == ERANGE))
918 || (*End != 0)
919 || (Value != V))
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000920 return O.error(": '" + Arg + "' value invalid for uint argument!");
921 return false;
922}
923
Chris Lattner9b14eb52002-08-07 18:36:37 +0000924// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000925//
Chris Lattnerca6433f2003-05-22 20:06:43 +0000926static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000927 const char *ArgStart = Arg.c_str();
928 char *End;
929 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000930 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000931 return O.error(": '" +Arg+ "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000932 return false;
933}
934
Chris Lattner9b14eb52002-08-07 18:36:37 +0000935bool parser<double>::parse(Option &O, const char *AN,
936 const std::string &Arg, double &Val) {
937 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000938}
939
Chris Lattner9b14eb52002-08-07 18:36:37 +0000940bool parser<float>::parse(Option &O, const char *AN,
941 const std::string &Arg, float &Val) {
942 double dVal;
943 if (parseDouble(O, Arg, dVal))
944 return true;
945 Val = (float)dVal;
946 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000947}
948
949
Chris Lattner331de232002-07-22 02:07:59 +0000950
951// generic_parser_base implementation
952//
953
Chris Lattneraa852bb2002-07-23 17:15:12 +0000954// findOption - Return the option number corresponding to the specified
955// argument string. If the option is not found, getNumOptions() is returned.
956//
957unsigned generic_parser_base::findOption(const char *Name) {
958 unsigned i = 0, e = getNumOptions();
Chris Lattnerca6433f2003-05-22 20:06:43 +0000959 std::string N(Name);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000960
961 while (i != e)
962 if (getOption(i) == N)
963 return i;
964 else
965 ++i;
966 return e;
967}
968
969
Chris Lattner331de232002-07-22 02:07:59 +0000970// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000971size_t generic_parser_base::getOptionWidth(const Option &O) const {
Chris Lattner331de232002-07-22 02:07:59 +0000972 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000973 size_t Size = std::strlen(O.ArgStr)+6;
Chris Lattner331de232002-07-22 02:07:59 +0000974 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000975 Size = std::max(Size, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000976 return Size;
977 } else {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000978 size_t BaseSize = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000979 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000980 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000981 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000982 }
983}
984
Misha Brukmanf976c852005-04-21 22:55:34 +0000985// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +0000986// to-be-maintained width is specified.
987//
988void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000989 size_t GlobalWidth) const {
Chris Lattner331de232002-07-22 02:07:59 +0000990 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000991 size_t L = std::strlen(O.ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000992 cout << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
993 << " - " << O.HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000994
Chris Lattner331de232002-07-22 02:07:59 +0000995 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000996 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Bill Wendlinge8156192006-12-07 01:30:32 +0000997 cout << " =" << getOption(i) << std::string(NumSpaces, ' ')
Dan Gohmanb8cab922008-10-14 20:25:08 +0000998 << " - " << getDescription(i) << "\n";
Chris Lattner9c9be482002-01-31 00:42:56 +0000999 }
Chris Lattner331de232002-07-22 02:07:59 +00001000 } else {
1001 if (O.HelpStr[0])
Bill Wendlinge8156192006-12-07 01:30:32 +00001002 cout << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001003 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001004 size_t L = std::strlen(getOption(i));
Bill Wendlinge8156192006-12-07 01:30:32 +00001005 cout << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
1006 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001007 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001008 }
1009}
1010
1011
1012//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +00001013// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001014//
Reid Spencerad0846b2004-11-14 22:04:00 +00001015
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001016namespace {
1017
Chris Lattner331de232002-07-22 02:07:59 +00001018class HelpPrinter {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001019 size_t MaxArgLen;
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001020 const Option *EmptyArg;
1021 const bool ShowHidden;
1022
Chris Lattner331de232002-07-22 02:07:59 +00001023 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Chris Lattnerca6433f2003-05-22 20:06:43 +00001024 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001025 return OptPair.second->getOptionHiddenFlag() >= Hidden;
1026 }
Chris Lattnerca6433f2003-05-22 20:06:43 +00001027 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001028 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
1029 }
1030
1031public:
Dan Gohman950a4c42008-03-25 22:06:05 +00001032 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Chris Lattner331de232002-07-22 02:07:59 +00001033 EmptyArg = 0;
1034 }
1035
1036 void operator=(bool Value) {
1037 if (Value == false) return;
1038
Chris Lattner9878d6a2007-04-06 21:06:55 +00001039 // Get all the options.
1040 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001041 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001042 std::map<std::string, Option*> OptMap;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001043 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001044
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001045 // Copy Options into a vector so we can sort them as we like...
Chris Lattner90aa8392006-10-04 21:52:35 +00001046 std::vector<std::pair<std::string, Option*> > Opts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001047 copy(OptMap.begin(), OptMap.end(), std::back_inserter(Opts));
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001048
1049 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner90aa8392006-10-04 21:52:35 +00001050 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1051 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1052 Opts.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001053
1054 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +00001055 { // Give OptionSet a scope
1056 std::set<Option*> OptionSet;
Chris Lattner90aa8392006-10-04 21:52:35 +00001057 for (unsigned i = 0; i != Opts.size(); ++i)
1058 if (OptionSet.count(Opts[i].second) == 0)
1059 OptionSet.insert(Opts[i].second); // Add new entry to set
Chris Lattner331de232002-07-22 02:07:59 +00001060 else
Chris Lattner90aa8392006-10-04 21:52:35 +00001061 Opts.erase(Opts.begin()+i--); // Erase duplicate
Chris Lattner331de232002-07-22 02:07:59 +00001062 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001063
1064 if (ProgramOverview)
Dan Gohman82a13c92007-10-08 15:45:12 +00001065 cout << "OVERVIEW: " << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001066
Bill Wendlinge8156192006-12-07 01:30:32 +00001067 cout << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +00001068
Chris Lattner90aa8392006-10-04 21:52:35 +00001069 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +00001070 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001071 if (!PositionalOpts.empty() &&
Chris Lattner9878d6a2007-04-06 21:06:55 +00001072 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1073 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +00001074
Evan Cheng34cd4a42008-05-05 18:30:58 +00001075 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +00001076 if (PositionalOpts[i]->ArgStr[0])
1077 cout << " --" << PositionalOpts[i]->ArgStr;
1078 cout << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +00001079 }
Chris Lattner331de232002-07-22 02:07:59 +00001080
1081 // Print the consume after option info if it exists...
Bill Wendlinge8156192006-12-07 01:30:32 +00001082 if (CAOpt) cout << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +00001083
Bill Wendlinge8156192006-12-07 01:30:32 +00001084 cout << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001085
1086 // Compute the maximum argument length...
1087 MaxArgLen = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +00001088 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001089 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001090
Bill Wendlinge8156192006-12-07 01:30:32 +00001091 cout << "OPTIONS:\n";
Evan Cheng34cd4a42008-05-05 18:30:58 +00001092 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001093 Opts[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001094
Chris Lattnerc540ebb2004-11-19 17:08:15 +00001095 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +00001096 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1097 E = MoreHelp->end(); I != E; ++I)
Bill Wendlinge8156192006-12-07 01:30:32 +00001098 cout << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +00001099 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +00001100
Reid Spencer9bbba0912004-11-16 06:11:52 +00001101 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +00001102 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001103 }
1104};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001105} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001106
Chris Lattner331de232002-07-22 02:07:59 +00001107// Define the two HelpPrinter instances that are used to print out help, or
1108// help-hidden...
1109//
Chris Lattner500d8bf2006-10-12 22:09:17 +00001110static HelpPrinter NormalPrinter(false);
1111static HelpPrinter HiddenPrinter(true);
Chris Lattner331de232002-07-22 02:07:59 +00001112
Chris Lattner500d8bf2006-10-12 22:09:17 +00001113static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001114HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001115 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +00001116
Chris Lattner500d8bf2006-10-12 22:09:17 +00001117static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001118HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001119 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001120
Chris Lattner500d8bf2006-10-12 22:09:17 +00001121static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +00001122
Chris Lattner500d8bf2006-10-12 22:09:17 +00001123namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +00001124class VersionPrinter {
1125public:
Devang Patelaed293d2007-02-01 01:43:37 +00001126 void print() {
Bill Wendlinge8156192006-12-07 01:30:32 +00001127 cout << "Low Level Virtual Machine (http://llvm.org/):\n";
1128 cout << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001129#ifdef LLVM_VERSION_INFO
Bill Wendlinge8156192006-12-07 01:30:32 +00001130 cout << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +00001131#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001132 cout << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001133#ifndef __OPTIMIZE__
Bill Wendlinge8156192006-12-07 01:30:32 +00001134 cout << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001135#else
Bill Wendlinge8156192006-12-07 01:30:32 +00001136 cout << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001137#endif
1138#ifndef NDEBUG
Bill Wendlinge8156192006-12-07 01:30:32 +00001139 cout << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001140#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001141 cout << ".\n";
Steve Naroff1f33f8e2008-12-23 18:41:47 +00001142 cout << " Built " << __DATE__ << "(" << __TIME__ << ").\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001143 }
1144 void operator=(bool OptionWasSpecified) {
1145 if (OptionWasSpecified) {
1146 if (OverrideVersionPrinter == 0) {
1147 print();
Reid Spencer515b5b32006-06-05 16:22:56 +00001148 exit(1);
1149 } else {
1150 (*OverrideVersionPrinter)();
1151 exit(1);
1152 }
1153 }
1154 }
1155};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001156} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001157
1158
Reid Spencer69105f32004-08-04 00:36:06 +00001159// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001160static VersionPrinter VersionPrinterInstance;
1161
1162static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001163VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001164 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1165
Reid Spencer9bbba0912004-11-16 06:11:52 +00001166// Utility function for printing the help message.
1167void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001168 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001169 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1170 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001171 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001172 // --help option was given or not. Since we're circumventing that we have
1173 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001174 NormalPrinter = true;
1175}
Reid Spencer515b5b32006-06-05 16:22:56 +00001176
Devang Patelaed293d2007-02-01 01:43:37 +00001177/// Utility function for printing version number.
1178void cl::PrintVersionMessage() {
1179 VersionPrinterInstance.print();
1180}
1181
Reid Spencer515b5b32006-06-05 16:22:56 +00001182void cl::SetVersionPrinter(void (*func)()) {
1183 OverrideVersionPrinter = func;
1184}