blob: e06f324c871573751fd4d66b2d39d17f0c9483b1 [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"
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000022#include "llvm/Support/MemoryBuffer.h"
Chris Lattner90aa8392006-10-04 21:52:35 +000023#include "llvm/Support/ManagedStatic.h"
Bill Wendlingfe6b1462006-11-26 10:52:51 +000024#include "llvm/Support/Streams.h"
Reid Spencer6f4c6072006-08-23 07:10:06 +000025#include "llvm/System/Path.h"
Chris Lattnerdbab15a2001-07-23 17:17:47 +000026#include <algorithm>
Duraid Madina786e3e22005-12-26 04:56:16 +000027#include <functional>
Chris Lattnerdbab15a2001-07-23 17:17:47 +000028#include <map>
Bill Wendling1a097e32006-12-07 23:41:45 +000029#include <ostream>
Chris Lattnerdbab15a2001-07-23 17:17:47 +000030#include <set>
Brian Gaeke2d6a2362003-10-10 17:01:36 +000031#include <cstdlib>
32#include <cerrno>
Chris Lattner51140042004-07-03 01:21:05 +000033#include <cstring>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000034#include <climits>
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>);
Mike Stumpd6f175b2009-01-30 08:19:46 +000043TEMPLATE_INSTANTIATION(class basic_parser<boolInverse>);
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>);
49
50TEMPLATE_INSTANTIATION(class opt<unsigned>);
51TEMPLATE_INSTANTIATION(class opt<int>);
52TEMPLATE_INSTANTIATION(class opt<std::string>);
53TEMPLATE_INSTANTIATION(class opt<bool>);
54
55void Option::anchor() {}
56void basic_parser_impl::anchor() {}
57void parser<bool>::anchor() {}
Dale Johannesen81da02b2007-05-22 17:14:46 +000058void parser<boolOrDefault>::anchor() {}
Mike Stumpd6f175b2009-01-30 08:19:46 +000059void parser<boolInverse>::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() {}
65
66//===----------------------------------------------------------------------===//
67
Chris Lattnerefa3da52006-10-13 00:06:24 +000068// Globals for name and overview of program. Program name is not a string to
69// avoid static ctor/dtor issues.
70static char ProgramName[80] = "<premain>";
Reid Spencere1cc1502004-09-01 04:41:28 +000071static const char *ProgramOverview = 0;
72
Chris Lattnerc540ebb2004-11-19 17:08:15 +000073// This collects additional help to be printed.
Chris Lattner90aa8392006-10-04 21:52:35 +000074static ManagedStatic<std::vector<const char*> > MoreHelp;
Chris Lattnerc540ebb2004-11-19 17:08:15 +000075
Chris Lattner90aa8392006-10-04 21:52:35 +000076extrahelp::extrahelp(const char *Help)
Chris Lattnerc540ebb2004-11-19 17:08:15 +000077 : morehelp(Help) {
Chris Lattner90aa8392006-10-04 21:52:35 +000078 MoreHelp->push_back(Help);
Chris Lattnerc540ebb2004-11-19 17:08:15 +000079}
80
Chris Lattner69d6f132007-04-12 00:36:29 +000081static bool OptionListChanged = false;
82
83// MarkOptionsChanged - Internal helper function.
84void cl::MarkOptionsChanged() {
85 OptionListChanged = true;
86}
87
Chris Lattner9878d6a2007-04-06 21:06:55 +000088/// RegisteredOptionList - This is the list of the command line options that
89/// have statically constructed themselves.
90static Option *RegisteredOptionList = 0;
91
92void Option::addArgument() {
93 assert(NextRegistered == 0 && "argument multiply registered!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000094
Chris Lattner9878d6a2007-04-06 21:06:55 +000095 NextRegistered = RegisteredOptionList;
96 RegisteredOptionList = this;
Chris Lattner69d6f132007-04-12 00:36:29 +000097 MarkOptionsChanged();
Chris Lattner9878d6a2007-04-06 21:06:55 +000098}
99
Chris Lattner69d6f132007-04-12 00:36:29 +0000100
Chris Lattner331de232002-07-22 02:07:59 +0000101//===----------------------------------------------------------------------===//
Chris Lattner7422a762006-08-27 12:45:47 +0000102// Basic, shared command line option processing machinery.
Chris Lattner331de232002-07-22 02:07:59 +0000103//
104
Chris Lattner9878d6a2007-04-06 21:06:55 +0000105/// GetOptionInfo - Scan the list of registered options, turning them into data
106/// structures that are easier to handle.
107static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000108 std::vector<Option*> &SinkOpts,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000109 std::map<std::string, Option*> &OptionsMap) {
110 std::vector<const char*> OptionNames;
Chris Lattneree2b3202007-04-07 05:38:53 +0000111 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000112 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
113 // If this option wants to handle multiple option names, get the full set.
114 // This handles enum options like "-O1 -O2" etc.
115 O->getExtraOptionNames(OptionNames);
116 if (O->ArgStr[0])
117 OptionNames.push_back(O->ArgStr);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000118
Chris Lattner9878d6a2007-04-06 21:06:55 +0000119 // Handle named options.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000120 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000121 // Add argument to the argument map!
122 if (!OptionsMap.insert(std::pair<std::string,Option*>(OptionNames[i],
123 O)).second) {
124 cerr << 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,
155 std::map<std::string, 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.
Chris Lattneraf035f32007-04-05 21:58:17 +0000169 std::map<std::string, Option*>::iterator I =
Chris Lattner9878d6a2007-04-06 21:06:55 +0000170 OptionsMap.find(std::string(Arg, ArgEnd));
171 return I != OptionsMap.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000172}
173
Chris Lattnercaccd762001-10-27 05:54:17 +0000174static inline bool ProvideOption(Option *Handler, const char *ArgName,
175 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 Lattnercaccd762001-10-27 05:54:17 +0000184 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
185 Value = argv[++i];
186 } else {
187 return Handler->error(" requires a value!");
188 }
189 }
190 break;
191 case ValueDisallowed:
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000192 if (NumAdditionalVals > 0)
193 return Handler->error(": multi-valued option specified"
194 " with ValueDisallowed modifier!");
195
Chris Lattner6d5857e2005-05-10 23:20:17 +0000196 if (Value)
Misha Brukmanf976c852005-04-21 22:55:34 +0000197 return Handler->error(" does not allow a value! '" +
Chris Lattnerca6433f2003-05-22 20:06:43 +0000198 std::string(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000199 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000200 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000201 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000202 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000203 cerr << ProgramName
204 << ": Bad ValueMask flag! CommandLine usage error:"
205 << Handler->getValueExpectedFlag() << "\n";
Reid Spencere1cc1502004-09-01 04:41:28 +0000206 abort();
207 break;
Chris Lattnercaccd762001-10-27 05:54:17 +0000208 }
209
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000210 // If this isn't a multi-arg option, just run the handler.
211 if (NumAdditionalVals == 0) {
212 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
213 }
214 // If it is, run the handle several times.
215 else {
216 bool MultiArg = false;
217
218 if (Value) {
219 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
220 return true;
221 --NumAdditionalVals;
222 MultiArg = true;
223 }
224
225 while (NumAdditionalVals > 0) {
226
227 if (i+1 < argc) {
228 Value = argv[++i];
229 } else {
230 return Handler->error(": not enough values!");
231 }
232 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
233 return true;
234 MultiArg = true;
235 --NumAdditionalVals;
236 }
237 return false;
238 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000239}
240
Misha Brukmanf976c852005-04-21 22:55:34 +0000241static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000242 int i) {
243 int Dummy = i;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000244 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000245}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000246
Chris Lattner331de232002-07-22 02:07:59 +0000247
248// Option predicates...
249static inline bool isGrouping(const Option *O) {
250 return O->getFormattingFlag() == cl::Grouping;
251}
252static inline bool isPrefixedOrGrouping(const Option *O) {
253 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
254}
255
256// getOptionPred - Check to see if there are any options that satisfy the
257// specified predicate with names that are the prefixes in Name. This is
258// checked by progressively stripping characters off of the name, checking to
259// see if there options that satisfy the predicate. If we find one, return it,
260// otherwise return null.
261//
Evan Cheng34cd4a42008-05-05 18:30:58 +0000262static Option *getOptionPred(std::string Name, size_t &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000263 bool (*Pred)(const Option*),
264 std::map<std::string, Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000265
Chris Lattner9878d6a2007-04-06 21:06:55 +0000266 std::map<std::string, Option*>::iterator OMI = OptionsMap.find(Name);
267 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000268 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000269 return OMI->second;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000270 }
271
Chris Lattner331de232002-07-22 02:07:59 +0000272 if (Name.size() == 1) return 0;
273 do {
274 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000275 OMI = OptionsMap.find(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000276
277 // Loop while we haven't found an option and Name still has at least two
278 // characters in it (so that the next iteration will not be the empty
279 // string...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000280 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000281
Chris Lattner9878d6a2007-04-06 21:06:55 +0000282 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000283 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000284 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000285 }
286 return 0; // No option found!
287}
288
289static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000290 return O->getNumOccurrencesFlag() == cl::Required ||
291 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000292}
293
294static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000295 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
296 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000297}
Chris Lattnercaccd762001-10-27 05:54:17 +0000298
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000299/// ParseCStringVector - Break INPUT up wherever one or more
300/// whitespace characters are found, and store the resulting tokens in
301/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
302/// using strdup (), so it is the caller's responsibility to free ()
303/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000304///
Chris Lattner23288582006-08-27 22:10:29 +0000305static void ParseCStringVector(std::vector<char *> &output,
306 const char *input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000307 // Characters which will be treated as token separators:
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000308 static const char *const delims = " \v\f\t\r\n";
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000309
310 std::string work (input);
311 // Skip past any delims at head of input string.
312 size_t pos = work.find_first_not_of (delims);
313 // If the string consists entirely of delims, then exit early.
314 if (pos == std::string::npos) return;
315 // Otherwise, jump forward to beginning of first word.
316 work = work.substr (pos);
317 // Find position of first delimiter.
318 pos = work.find_first_of (delims);
319
320 while (!work.empty() && pos != std::string::npos) {
321 // Everything from 0 to POS is the next word to copy.
322 output.push_back (strdup (work.substr (0,pos).c_str ()));
323 // Is there another word in the string?
324 size_t nextpos = work.find_first_not_of (delims, pos + 1);
325 if (nextpos != std::string::npos) {
326 // Yes? Then remove delims from beginning ...
327 work = work.substr (work.find_first_not_of (delims, pos + 1));
328 // and find the end of the word.
329 pos = work.find_first_of (delims);
330 } else {
331 // No? (Remainder of string is delims.) End the loop.
332 work = "";
333 pos = std::string::npos;
334 }
335 }
336
337 // If `input' ended with non-delim char, then we'll get here with
338 // the last word of `input' in `work'; copy it now.
339 if (!work.empty ()) {
340 output.push_back (strdup (work.c_str ()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000341 }
342}
343
344/// ParseEnvironmentOptions - An alternative entry point to the
345/// CommandLine library, which allows you to read the program's name
346/// from the caller (as PROGNAME) and its command-line arguments from
347/// an environment variable (whose name is given in ENVVAR).
348///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000349void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000350 const char *Overview, bool ReadResponseFiles) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000351 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000352 assert(progName && "Program name not specified");
353 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000354
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000355 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000356 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000357 if (!envValue)
358 return;
359
Brian Gaeke06b06c52003-08-14 22:00:59 +0000360 // Get program's "name", which we wouldn't know without the caller
361 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000362 std::vector<char*> newArgv;
363 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000364
365 // Parse the value of the environment variable into a "command line"
366 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000367 ParseCStringVector(newArgv, envValue);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000368 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000369 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000370
371 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000372 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
373 i != e; ++i)
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000374 free (*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000375}
376
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000377
378/// ExpandResponseFiles - Copy the contents of argv into newArgv,
379/// substituting the contents of the response files for the arguments
380/// of type @file.
381static void ExpandResponseFiles(int argc, char** argv,
382 std::vector<char*>& newArgv) {
383 for (int i = 1; i != argc; ++i) {
384 char* arg = argv[i];
385
386 if (arg[0] == '@') {
387
388 sys::PathWithStatus respFile(++arg);
389
390 // Check that the response file is not empty (mmap'ing empty
391 // files can be problematic).
392 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000393 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000394
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000395 // Mmap the response file into memory.
396 OwningPtr<MemoryBuffer>
397 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000398
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000399 // If we could open the file, parse its contents, otherwise
400 // pass the @file option verbatim.
Mikhail Glushenkov6c55b1c2009-01-28 03:46:22 +0000401
402 // TODO: we should also support recursive loading of response files,
403 // since this is how gcc behaves. (From their man page: "The file may
404 // itself contain additional @file options; any such options will be
405 // processed recursively.")
406
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000407 if (respFilePtr != 0) {
408 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
409 continue;
410 }
411 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000412 }
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000413 newArgv.push_back(strdup(arg));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000414 }
415}
416
Dan Gohman9a526322007-10-09 16:04:57 +0000417void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000418 const char *Overview, bool ReadResponseFiles) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000419 // Process all registered options.
420 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000421 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000422 std::map<std::string, Option*> Opts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000423 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000424
Chris Lattner9878d6a2007-04-06 21:06:55 +0000425 assert((!Opts.empty() || !PositionalOpts.empty()) &&
426 "No options specified!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000427
428 // Expand response files.
429 std::vector<char*> newArgv;
430 if (ReadResponseFiles) {
431 newArgv.push_back(strdup(argv[0]));
432 ExpandResponseFiles(argc, argv, newArgv);
433 argv = &newArgv[0];
Evan Cheng34cd4a42008-05-05 18:30:58 +0000434 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000435 }
436
Chris Lattnerefa3da52006-10-13 00:06:24 +0000437 // Copy the program name into ProgName, making sure not to overflow it.
438 std::string ProgName = sys::Path(argv[0]).getLast();
439 if (ProgName.size() > 79) ProgName.resize(79);
440 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000441
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000442 ProgramOverview = Overview;
443 bool ErrorParsing = false;
444
Chris Lattner331de232002-07-22 02:07:59 +0000445 // Check out the positional arguments to collect information about them.
446 unsigned NumPositionalRequired = 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000447
Chris Lattnerde013242005-08-08 17:25:38 +0000448 // Determine whether or not there are an unlimited number of positionals
449 bool HasUnlimitedPositionals = false;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000450
Chris Lattner331de232002-07-22 02:07:59 +0000451 Option *ConsumeAfterOpt = 0;
452 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000453 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000454 assert(PositionalOpts.size() > 1 &&
455 "Cannot specify cl::ConsumeAfter without a positional argument!");
456 ConsumeAfterOpt = PositionalOpts[0];
457 }
458
459 // Calculate how many positional values are _required_.
460 bool UnboundedFound = false;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000461 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Chris Lattner331de232002-07-22 02:07:59 +0000462 i != e; ++i) {
463 Option *Opt = PositionalOpts[i];
464 if (RequiresValue(Opt))
465 ++NumPositionalRequired;
466 else if (ConsumeAfterOpt) {
467 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000468 // unless there is only one positional argument...
469 if (PositionalOpts.size() > 2)
470 ErrorParsing |=
471 Opt->error(" error - this positional option will never be matched, "
472 "because it does not Require a value, and a "
473 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000474 } else if (UnboundedFound && !Opt->ArgStr[0]) {
475 // This option does not "require" a value... Make sure this option is
476 // not specified after an option that eats all extra arguments, or this
477 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000478 //
479 ErrorParsing |= Opt->error(" error - option can never match, because "
480 "another positional argument will match an "
481 "unbounded number of values, and this option"
482 " does not require a value!");
483 }
484 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
485 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000486 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000487 }
488
Reid Spencer1e13fd22004-08-13 19:47:30 +0000489 // PositionalVals - A vector of "positional" arguments we accumulate into
490 // the process at the end...
Chris Lattner331de232002-07-22 02:07:59 +0000491 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000492 std::vector<std::pair<std::string,unsigned> > PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000493
Chris Lattner9cf3d472003-07-30 17:34:02 +0000494 // If the program has named positional arguments, and the name has been run
495 // across, keep track of which positional argument was named. Otherwise put
496 // the positional args into the PositionalVals list...
497 Option *ActivePositionalArg = 0;
498
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000499 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000500 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000501 for (int i = 1; i < argc; ++i) {
502 Option *Handler = 0;
Chris Lattner6d5857e2005-05-10 23:20:17 +0000503 const char *Value = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000504 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000505
Chris Lattner69d6f132007-04-12 00:36:29 +0000506 // If the option list changed, this means that some command line
Chris Lattner159b0a432007-04-11 15:35:18 +0000507 // option has just been registered or deregistered. This can occur in
508 // response to things like -load, etc. If this happens, rescan the options.
Chris Lattner69d6f132007-04-12 00:36:29 +0000509 if (OptionListChanged) {
Chris Lattner159b0a432007-04-11 15:35:18 +0000510 PositionalOpts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000511 SinkOpts.clear();
Chris Lattner159b0a432007-04-11 15:35:18 +0000512 Opts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000513 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Chris Lattner69d6f132007-04-12 00:36:29 +0000514 OptionListChanged = false;
Chris Lattner159b0a432007-04-11 15:35:18 +0000515 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000516
Chris Lattner331de232002-07-22 02:07:59 +0000517 // Check to see if this is a positional argument. This argument is
518 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000519 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000520 //
521 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
522 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000523 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000524 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000525 continue; // We are done!
526 } else if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000527 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000528
529 // All of the positional arguments have been fulfulled, give the rest to
530 // the consume after option... if it's specified...
531 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000532 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000533 ConsumeAfterOpt != 0) {
534 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000535 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000536 break; // Handle outside of the argument processing loop...
537 }
538
539 // Delay processing positional arguments until the end...
540 continue;
541 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000542 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
543 !DashDashFound) {
544 DashDashFound = true; // This is the mythical "--"?
545 continue; // Don't try to process it as an argument itself.
546 } else if (ActivePositionalArg &&
547 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
548 // If there is a positional argument eating options, check to see if this
549 // option is another positional argument. If so, treat it as an argument,
550 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000551 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000552 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000553 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000554 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000555 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000556 }
557
Chris Lattnerbf455c22004-05-06 22:04:31 +0000558 } else { // We start with a '-', must be an argument...
559 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000560 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000561
Chris Lattnerbf455c22004-05-06 22:04:31 +0000562 // Check to see if this "option" is really a prefixed or grouped argument.
Reid Spencer5f8448f2004-11-24 06:13:42 +0000563 if (Handler == 0) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000564 std::string RealName(ArgName);
565 if (RealName.size() > 1) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000566 size_t Length = 0;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000567 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
568 Opts);
Misha Brukmanf976c852005-04-21 22:55:34 +0000569
Chris Lattner331de232002-07-22 02:07:59 +0000570 // If the option is a prefixed option, then the value is simply the
571 // rest of the name... so fall through to later processing, by
572 // setting up the argument name flags and value fields.
573 //
574 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000575 Value = ArgName+Length;
576 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
577 Opts.find(std::string(ArgName, Value))->second == PGOpt);
578 Handler = PGOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000579 } else if (PGOpt) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000580 // This must be a grouped option... handle them now.
Chris Lattner331de232002-07-22 02:07:59 +0000581 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000582
Chris Lattner331de232002-07-22 02:07:59 +0000583 do {
584 // Move current arg name out of RealName into RealArgName...
Chris Lattnerbf455c22004-05-06 22:04:31 +0000585 std::string RealArgName(RealName.begin(),
586 RealName.begin() + Length);
587 RealName.erase(RealName.begin(), RealName.begin() + Length);
Misha Brukmanf976c852005-04-21 22:55:34 +0000588
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000589 // Because ValueRequired is an invalid flag for grouped arguments,
590 // we don't need to pass argc/argv in...
591 //
Chris Lattner331de232002-07-22 02:07:59 +0000592 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
593 "Option can not be cl::Grouping AND cl::ValueRequired!");
594 int Dummy;
Chris Lattnerbf455c22004-05-06 22:04:31 +0000595 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
Chris Lattner6d5857e2005-05-10 23:20:17 +0000596 0, 0, 0, Dummy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000597
Chris Lattner331de232002-07-22 02:07:59 +0000598 // Get the next grouping option...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000599 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000600 } while (PGOpt && Length != RealName.size());
Misha Brukmanf976c852005-04-21 22:55:34 +0000601
Chris Lattnerbf455c22004-05-06 22:04:31 +0000602 Handler = PGOpt; // Ate all of the options.
Chris Lattner331de232002-07-22 02:07:59 +0000603 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000604 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000605 }
606 }
607
608 if (Handler == 0) {
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000609 if (SinkOpts.empty()) {
610 cerr << ProgramName << ": Unknown command line argument '"
611 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
612 ErrorParsing = true;
613 } else {
614 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
615 E = SinkOpts.end(); I != E ; ++I)
616 (*I)->addOccurrence(i, "", argv[i]);
617 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000618 continue;
619 }
620
Chris Lattner72fb8e52003-05-22 20:26:17 +0000621 // Check to see if this option accepts a comma separated list of values. If
622 // it does, we have to split up the value into multiple values...
Chris Lattner6d5857e2005-05-10 23:20:17 +0000623 if (Value && Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner72fb8e52003-05-22 20:26:17 +0000624 std::string Val(Value);
625 std::string::size_type Pos = Val.find(',');
626
627 while (Pos != std::string::npos) {
628 // Process the portion before the comma...
629 ErrorParsing |= ProvideOption(Handler, ArgName,
630 std::string(Val.begin(),
631 Val.begin()+Pos).c_str(),
632 argc, argv, i);
633 // Erase the portion before the comma, AND the comma...
634 Val.erase(Val.begin(), Val.begin()+Pos+1);
635 Value += Pos+1; // Increment the original value pointer as well...
636
637 // Check for another comma...
638 Pos = Val.find(',');
639 }
640 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000641
642 // If this is a named positional argument, just remember that it is the
643 // active one...
644 if (Handler->getFormattingFlag() == cl::Positional)
645 ActivePositionalArg = Handler;
Misha Brukmanf976c852005-04-21 22:55:34 +0000646 else
Chris Lattner9cf3d472003-07-30 17:34:02 +0000647 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000648 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000649
Chris Lattner331de232002-07-22 02:07:59 +0000650 // Check and handle positional arguments now...
651 if (NumPositionalRequired > PositionalVals.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000652 cerr << ProgramName
653 << ": Not enough positional command line arguments specified!\n"
654 << "Must specify at least " << NumPositionalRequired
655 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000656
Chris Lattner331de232002-07-22 02:07:59 +0000657 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000658 } else if (!HasUnlimitedPositionals
659 && PositionalVals.size() > PositionalOpts.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000660 cerr << ProgramName
661 << ": Too many positional arguments specified!\n"
662 << "Can specify at most " << PositionalOpts.size()
663 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000664 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000665
666 } else if (ConsumeAfterOpt == 0) {
667 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000668 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
669 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner331de232002-07-22 02:07:59 +0000670 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000671 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000672 PositionalVals[ValNo].second);
673 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000674 --NumPositionalRequired; // We fulfilled our duty...
675 }
676
677 // If we _can_ give this option more arguments, do so now, as long as we
678 // do not give it values that others need. 'Done' controls whether the
679 // option even _WANTS_ any more.
680 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000681 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000682 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000683 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000684 case cl::Optional:
685 Done = true; // Optional arguments want _at most_ one value
686 // FALL THROUGH
687 case cl::ZeroOrMore: // Zero or more will take all they can get...
688 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000689 ProvidePositionalOption(PositionalOpts[i],
690 PositionalVals[ValNo].first,
691 PositionalVals[ValNo].second);
692 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000693 break;
694 default:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000695 assert(0 && "Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000696 "positional argument processing!");
697 }
698 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000699 }
Chris Lattner331de232002-07-22 02:07:59 +0000700 } else {
701 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
702 unsigned ValNo = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000703 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000704 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000705 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000706 PositionalVals[ValNo].first,
707 PositionalVals[ValNo].second);
708 ValNo++;
709 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000710
711 // Handle the case where there is just one positional option, and it's
712 // optional. In this case, we want to give JUST THE FIRST option to the
713 // positional option and keep the rest for the consume after. The above
714 // loop would have assigned no values to positional options in this case.
715 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000716 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000717 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000718 PositionalVals[ValNo].first,
719 PositionalVals[ValNo].second);
720 ValNo++;
721 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000722
Chris Lattner331de232002-07-22 02:07:59 +0000723 // Handle over all of the rest of the arguments to the
724 // cl::ConsumeAfter command line option...
725 for (; ValNo != PositionalVals.size(); ++ValNo)
726 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000727 PositionalVals[ValNo].first,
728 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000729 }
730
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000731 // Loop over args and make sure all required args are specified!
Misha Brukmanf976c852005-04-21 22:55:34 +0000732 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000733 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000734 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000735 case Required:
736 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000737 if (I->second->getNumOccurrences() == 0) {
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000738 I->second->error(" must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000739 ErrorParsing = true;
740 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000741 // Fall through
742 default:
743 break;
744 }
745 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000746
Chris Lattner331de232002-07-22 02:07:59 +0000747 // Free all of the memory allocated to the map. Command line options may only
748 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000749 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000750 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000751 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000752
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000753 // Free the memory allocated by ExpandResponseFiles.
754 if (ReadResponseFiles) {
755 // Free all the strdup()ed strings.
756 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
757 i != e; ++i)
758 free (*i);
759 }
760
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000761 // If we had an error processing our arguments, don't let the program execute
762 if (ErrorParsing) exit(1);
763}
764
765//===----------------------------------------------------------------------===//
766// Option Base class implementation
767//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000768
Chris Lattnerca6433f2003-05-22 20:06:43 +0000769bool Option::error(std::string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000770 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000771 if (ArgName[0] == 0)
Bill Wendlinge8156192006-12-07 01:30:32 +0000772 cerr << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000773 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000774 cerr << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000775
Bill Wendlinge8156192006-12-07 01:30:32 +0000776 cerr << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000777 return true;
778}
779
Chris Lattner6d5857e2005-05-10 23:20:17 +0000780bool Option::addOccurrence(unsigned pos, const char *ArgName,
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000781 const std::string &Value,
782 bool MultiArg) {
783 if (!MultiArg)
784 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000785
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000786 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000787 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000788 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000789 return error(": may only occur zero or one times!", ArgName);
790 break;
791 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000792 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000793 return error(": must occur exactly one time!", ArgName);
794 // Fall through
795 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000796 case ZeroOrMore:
797 case ConsumeAfter: break;
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000798 default: return error(": bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000799 }
800
Reid Spencer1e13fd22004-08-13 19:47:30 +0000801 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000802}
803
Chris Lattner331de232002-07-22 02:07:59 +0000804
805// getValueStr - Get the value description string, using "DefaultMsg" if nothing
806// has been specified yet.
807//
808static const char *getValueStr(const Option &O, const char *DefaultMsg) {
809 if (O.ValueStr[0] == 0) return DefaultMsg;
810 return O.ValueStr;
811}
812
813//===----------------------------------------------------------------------===//
814// cl::alias class implementation
815//
816
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000817// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000818size_t alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000819 return std::strlen(ArgStr)+6;
820}
821
Chris Lattnera0de8432006-04-28 05:36:25 +0000822// Print out the option for the alias.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000823void alias::printOptionInfo(size_t GlobalWidth) const {
824 size_t L = std::strlen(ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000825 cout << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
826 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000827}
828
829
Chris Lattner331de232002-07-22 02:07:59 +0000830
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000831//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000832// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000833//
834
Chris Lattner9b14eb52002-08-07 18:36:37 +0000835// basic_parser implementation
836//
837
838// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000839size_t basic_parser_impl::getOptionWidth(const Option &O) const {
840 size_t Len = std::strlen(O.ArgStr);
Chris Lattner9b14eb52002-08-07 18:36:37 +0000841 if (const char *ValName = getValueName())
842 Len += std::strlen(getValueStr(O, ValName))+3;
843
844 return Len + 6;
845}
846
Misha Brukmanf976c852005-04-21 22:55:34 +0000847// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000848// to-be-maintained width is specified.
849//
850void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000851 size_t GlobalWidth) const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000852 cout << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000853
854 if (const char *ValName = getValueName())
Bill Wendlinge8156192006-12-07 01:30:32 +0000855 cout << "=<" << getValueStr(O, ValName) << ">";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000856
Bill Wendlinge8156192006-12-07 01:30:32 +0000857 cout << std::string(GlobalWidth-getOptionWidth(O), ' ') << " - "
858 << O.HelpStr << "\n";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000859}
860
861
862
863
Chris Lattner331de232002-07-22 02:07:59 +0000864// parser<bool> implementation
865//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000866bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000867 const std::string &Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000868 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000869 Arg == "1") {
870 Value = true;
871 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
872 Value = false;
873 } else {
Chris Lattner331de232002-07-22 02:07:59 +0000874 return O.error(": '" + Arg +
875 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000876 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000877 return false;
878}
879
Dale Johannesen81da02b2007-05-22 17:14:46 +0000880// parser<boolOrDefault> implementation
881//
882bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
883 const std::string &Arg, boolOrDefault &Value) {
884 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
885 Arg == "1") {
886 Value = BOU_TRUE;
Mike Stumpd6f175b2009-01-30 08:19:46 +0000887 } else if (Arg == "false" || Arg == "FALSE"
888 || Arg == "False" || Arg == "0") {
Dale Johannesen81da02b2007-05-22 17:14:46 +0000889 Value = BOU_FALSE;
890 } else {
891 return O.error(": '" + Arg +
892 "' is invalid value for boolean argument! Try 0 or 1");
893 }
894 return false;
895}
896
Mike Stumpd6f175b2009-01-30 08:19:46 +0000897// parser<boolInverse> implementation
898//
899bool parser<boolInverse>::parse(Option &O, const char *ArgName,
900 const std::string &Arg, bool &Value) {
901 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
902 Arg == "1") {
903 Value = false;
904 } else if (Arg == "false" || Arg == "FALSE"
905 || Arg == "False" || Arg == "0") {
906 Value = true;
907 } else {
908 return O.error(": '" + Arg +
909 "' is invalid value for boolean argument! Try 0 or 1");
910 }
911 return false;
912}
913
Chris Lattner331de232002-07-22 02:07:59 +0000914// parser<int> implementation
915//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000916bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000917 const std::string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000918 char *End;
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000919 Value = (int)strtol(Arg.c_str(), &End, 0);
Misha Brukmanf976c852005-04-21 22:55:34 +0000920 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000921 return O.error(": '" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000922 return false;
923}
924
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000925// parser<unsigned> implementation
926//
927bool parser<unsigned>::parse(Option &O, const char *ArgName,
928 const std::string &Arg, unsigned &Value) {
929 char *End;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000930 errno = 0;
931 unsigned long V = strtoul(Arg.c_str(), &End, 0);
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000932 Value = (unsigned)V;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000933 if (((V == ULONG_MAX) && (errno == ERANGE))
934 || (*End != 0)
935 || (Value != V))
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000936 return O.error(": '" + Arg + "' value invalid for uint argument!");
937 return false;
938}
939
Chris Lattner9b14eb52002-08-07 18:36:37 +0000940// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000941//
Chris Lattnerca6433f2003-05-22 20:06:43 +0000942static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000943 const char *ArgStart = Arg.c_str();
944 char *End;
945 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000946 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000947 return O.error(": '" +Arg+ "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000948 return false;
949}
950
Chris Lattner9b14eb52002-08-07 18:36:37 +0000951bool parser<double>::parse(Option &O, const char *AN,
952 const std::string &Arg, double &Val) {
953 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000954}
955
Chris Lattner9b14eb52002-08-07 18:36:37 +0000956bool parser<float>::parse(Option &O, const char *AN,
957 const std::string &Arg, float &Val) {
958 double dVal;
959 if (parseDouble(O, Arg, dVal))
960 return true;
961 Val = (float)dVal;
962 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000963}
964
965
Chris Lattner331de232002-07-22 02:07:59 +0000966
967// generic_parser_base implementation
968//
969
Chris Lattneraa852bb2002-07-23 17:15:12 +0000970// findOption - Return the option number corresponding to the specified
971// argument string. If the option is not found, getNumOptions() is returned.
972//
973unsigned generic_parser_base::findOption(const char *Name) {
974 unsigned i = 0, e = getNumOptions();
Chris Lattnerca6433f2003-05-22 20:06:43 +0000975 std::string N(Name);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000976
977 while (i != e)
978 if (getOption(i) == N)
979 return i;
980 else
981 ++i;
982 return e;
983}
984
985
Chris Lattner331de232002-07-22 02:07:59 +0000986// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000987size_t generic_parser_base::getOptionWidth(const Option &O) const {
Chris Lattner331de232002-07-22 02:07:59 +0000988 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000989 size_t Size = std::strlen(O.ArgStr)+6;
Chris Lattner331de232002-07-22 02:07:59 +0000990 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000991 Size = std::max(Size, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000992 return Size;
993 } else {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000994 size_t BaseSize = 0;
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 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000997 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000998 }
999}
1000
Misha Brukmanf976c852005-04-21 22:55:34 +00001001// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +00001002// to-be-maintained width is specified.
1003//
1004void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +00001005 size_t GlobalWidth) const {
Chris Lattner331de232002-07-22 02:07:59 +00001006 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001007 size_t L = std::strlen(O.ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +00001008 cout << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
1009 << " - " << O.HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001010
Chris Lattner331de232002-07-22 02:07:59 +00001011 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001012 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Bill Wendlinge8156192006-12-07 01:30:32 +00001013 cout << " =" << getOption(i) << std::string(NumSpaces, ' ')
Dan Gohmanb8cab922008-10-14 20:25:08 +00001014 << " - " << getDescription(i) << "\n";
Chris Lattner9c9be482002-01-31 00:42:56 +00001015 }
Chris Lattner331de232002-07-22 02:07:59 +00001016 } else {
1017 if (O.HelpStr[0])
Bill Wendlinge8156192006-12-07 01:30:32 +00001018 cout << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001019 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001020 size_t L = std::strlen(getOption(i));
Bill Wendlinge8156192006-12-07 01:30:32 +00001021 cout << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
1022 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001023 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001024 }
1025}
1026
1027
1028//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +00001029// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001030//
Reid Spencerad0846b2004-11-14 22:04:00 +00001031
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001032namespace {
1033
Chris Lattner331de232002-07-22 02:07:59 +00001034class HelpPrinter {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001035 size_t MaxArgLen;
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001036 const Option *EmptyArg;
1037 const bool ShowHidden;
1038
Chris Lattner331de232002-07-22 02:07:59 +00001039 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Chris Lattnerca6433f2003-05-22 20:06:43 +00001040 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001041 return OptPair.second->getOptionHiddenFlag() >= Hidden;
1042 }
Chris Lattnerca6433f2003-05-22 20:06:43 +00001043 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001044 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
1045 }
1046
1047public:
Dan Gohman950a4c42008-03-25 22:06:05 +00001048 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Chris Lattner331de232002-07-22 02:07:59 +00001049 EmptyArg = 0;
1050 }
1051
1052 void operator=(bool Value) {
1053 if (Value == false) return;
1054
Chris Lattner9878d6a2007-04-06 21:06:55 +00001055 // Get all the options.
1056 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001057 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001058 std::map<std::string, Option*> OptMap;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001059 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001060
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001061 // Copy Options into a vector so we can sort them as we like...
Chris Lattner90aa8392006-10-04 21:52:35 +00001062 std::vector<std::pair<std::string, Option*> > Opts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001063 copy(OptMap.begin(), OptMap.end(), std::back_inserter(Opts));
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001064
1065 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner90aa8392006-10-04 21:52:35 +00001066 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1067 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1068 Opts.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001069
1070 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +00001071 { // Give OptionSet a scope
1072 std::set<Option*> OptionSet;
Chris Lattner90aa8392006-10-04 21:52:35 +00001073 for (unsigned i = 0; i != Opts.size(); ++i)
1074 if (OptionSet.count(Opts[i].second) == 0)
1075 OptionSet.insert(Opts[i].second); // Add new entry to set
Chris Lattner331de232002-07-22 02:07:59 +00001076 else
Chris Lattner90aa8392006-10-04 21:52:35 +00001077 Opts.erase(Opts.begin()+i--); // Erase duplicate
Chris Lattner331de232002-07-22 02:07:59 +00001078 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001079
1080 if (ProgramOverview)
Dan Gohman82a13c92007-10-08 15:45:12 +00001081 cout << "OVERVIEW: " << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001082
Bill Wendlinge8156192006-12-07 01:30:32 +00001083 cout << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +00001084
Chris Lattner90aa8392006-10-04 21:52:35 +00001085 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +00001086 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001087 if (!PositionalOpts.empty() &&
Chris Lattner9878d6a2007-04-06 21:06:55 +00001088 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1089 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +00001090
Evan Cheng34cd4a42008-05-05 18:30:58 +00001091 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +00001092 if (PositionalOpts[i]->ArgStr[0])
1093 cout << " --" << PositionalOpts[i]->ArgStr;
1094 cout << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +00001095 }
Chris Lattner331de232002-07-22 02:07:59 +00001096
1097 // Print the consume after option info if it exists...
Bill Wendlinge8156192006-12-07 01:30:32 +00001098 if (CAOpt) cout << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +00001099
Bill Wendlinge8156192006-12-07 01:30:32 +00001100 cout << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001101
1102 // Compute the maximum argument length...
1103 MaxArgLen = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +00001104 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001105 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001106
Bill Wendlinge8156192006-12-07 01:30:32 +00001107 cout << "OPTIONS:\n";
Evan Cheng34cd4a42008-05-05 18:30:58 +00001108 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001109 Opts[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001110
Chris Lattnerc540ebb2004-11-19 17:08:15 +00001111 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +00001112 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1113 E = MoreHelp->end(); I != E; ++I)
Bill Wendlinge8156192006-12-07 01:30:32 +00001114 cout << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +00001115 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +00001116
Reid Spencer9bbba0912004-11-16 06:11:52 +00001117 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +00001118 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001119 }
1120};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001121} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001122
Chris Lattner331de232002-07-22 02:07:59 +00001123// Define the two HelpPrinter instances that are used to print out help, or
1124// help-hidden...
1125//
Chris Lattner500d8bf2006-10-12 22:09:17 +00001126static HelpPrinter NormalPrinter(false);
1127static HelpPrinter HiddenPrinter(true);
Chris Lattner331de232002-07-22 02:07:59 +00001128
Chris Lattner500d8bf2006-10-12 22:09:17 +00001129static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001130HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001131 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +00001132
Chris Lattner500d8bf2006-10-12 22:09:17 +00001133static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001134HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001135 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001136
Chris Lattner500d8bf2006-10-12 22:09:17 +00001137static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +00001138
Chris Lattner500d8bf2006-10-12 22:09:17 +00001139namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +00001140class VersionPrinter {
1141public:
Devang Patelaed293d2007-02-01 01:43:37 +00001142 void print() {
Bill Wendlinge8156192006-12-07 01:30:32 +00001143 cout << "Low Level Virtual Machine (http://llvm.org/):\n";
1144 cout << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001145#ifdef LLVM_VERSION_INFO
Bill Wendlinge8156192006-12-07 01:30:32 +00001146 cout << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +00001147#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001148 cout << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001149#ifndef __OPTIMIZE__
Bill Wendlinge8156192006-12-07 01:30:32 +00001150 cout << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001151#else
Bill Wendlinge8156192006-12-07 01:30:32 +00001152 cout << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001153#endif
1154#ifndef NDEBUG
Bill Wendlinge8156192006-12-07 01:30:32 +00001155 cout << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001156#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001157 cout << ".\n";
Steve Naroff1f33f8e2008-12-23 18:41:47 +00001158 cout << " Built " << __DATE__ << "(" << __TIME__ << ").\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001159 }
1160 void operator=(bool OptionWasSpecified) {
1161 if (OptionWasSpecified) {
1162 if (OverrideVersionPrinter == 0) {
1163 print();
Reid Spencer515b5b32006-06-05 16:22:56 +00001164 exit(1);
1165 } else {
1166 (*OverrideVersionPrinter)();
1167 exit(1);
1168 }
1169 }
1170 }
1171};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001172} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001173
1174
Reid Spencer69105f32004-08-04 00:36:06 +00001175// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001176static VersionPrinter VersionPrinterInstance;
1177
1178static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001179VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001180 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1181
Reid Spencer9bbba0912004-11-16 06:11:52 +00001182// Utility function for printing the help message.
1183void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001184 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001185 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1186 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001187 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001188 // --help option was given or not. Since we're circumventing that we have
1189 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001190 NormalPrinter = true;
1191}
Reid Spencer515b5b32006-06-05 16:22:56 +00001192
Devang Patelaed293d2007-02-01 01:43:37 +00001193/// Utility function for printing version number.
1194void cl::PrintVersionMessage() {
1195 VersionPrinterInstance.print();
1196}
1197
Reid Spencer515b5b32006-06-05 16:22:56 +00001198void cl::SetVersionPrinter(void (*func)()) {
1199 OverrideVersionPrinter = func;
1200}