blob: e4f65ba1de94885fe7e2f92941efabf424f528e6 [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>);
Chris Lattner7422a762006-08-27 12:45:47 +000043TEMPLATE_INSTANTIATION(class basic_parser<int>);
44TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
45TEMPLATE_INSTANTIATION(class basic_parser<double>);
46TEMPLATE_INSTANTIATION(class basic_parser<float>);
47TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
48
49TEMPLATE_INSTANTIATION(class opt<unsigned>);
50TEMPLATE_INSTANTIATION(class opt<int>);
51TEMPLATE_INSTANTIATION(class opt<std::string>);
52TEMPLATE_INSTANTIATION(class opt<bool>);
53
54void Option::anchor() {}
55void basic_parser_impl::anchor() {}
56void parser<bool>::anchor() {}
Dale Johannesen81da02b2007-05-22 17:14:46 +000057void parser<boolOrDefault>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000058void parser<int>::anchor() {}
59void parser<unsigned>::anchor() {}
60void parser<double>::anchor() {}
61void parser<float>::anchor() {}
62void parser<std::string>::anchor() {}
63
64//===----------------------------------------------------------------------===//
65
Chris Lattnerefa3da52006-10-13 00:06:24 +000066// Globals for name and overview of program. Program name is not a string to
67// avoid static ctor/dtor issues.
68static char ProgramName[80] = "<premain>";
Reid Spencere1cc1502004-09-01 04:41:28 +000069static const char *ProgramOverview = 0;
70
Chris Lattnerc540ebb2004-11-19 17:08:15 +000071// This collects additional help to be printed.
Chris Lattner90aa8392006-10-04 21:52:35 +000072static ManagedStatic<std::vector<const char*> > MoreHelp;
Chris Lattnerc540ebb2004-11-19 17:08:15 +000073
Chris Lattner90aa8392006-10-04 21:52:35 +000074extrahelp::extrahelp(const char *Help)
Chris Lattnerc540ebb2004-11-19 17:08:15 +000075 : morehelp(Help) {
Chris Lattner90aa8392006-10-04 21:52:35 +000076 MoreHelp->push_back(Help);
Chris Lattnerc540ebb2004-11-19 17:08:15 +000077}
78
Chris Lattner69d6f132007-04-12 00:36:29 +000079static bool OptionListChanged = false;
80
81// MarkOptionsChanged - Internal helper function.
82void cl::MarkOptionsChanged() {
83 OptionListChanged = true;
84}
85
Chris Lattner9878d6a2007-04-06 21:06:55 +000086/// RegisteredOptionList - This is the list of the command line options that
87/// have statically constructed themselves.
88static Option *RegisteredOptionList = 0;
89
90void Option::addArgument() {
91 assert(NextRegistered == 0 && "argument multiply registered!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000092
Chris Lattner9878d6a2007-04-06 21:06:55 +000093 NextRegistered = RegisteredOptionList;
94 RegisteredOptionList = this;
Chris Lattner69d6f132007-04-12 00:36:29 +000095 MarkOptionsChanged();
Chris Lattner9878d6a2007-04-06 21:06:55 +000096}
97
Chris Lattner69d6f132007-04-12 00:36:29 +000098
Chris Lattner331de232002-07-22 02:07:59 +000099//===----------------------------------------------------------------------===//
Chris Lattner7422a762006-08-27 12:45:47 +0000100// Basic, shared command line option processing machinery.
Chris Lattner331de232002-07-22 02:07:59 +0000101//
102
Chris Lattner9878d6a2007-04-06 21:06:55 +0000103/// GetOptionInfo - Scan the list of registered options, turning them into data
104/// structures that are easier to handle.
105static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000106 std::vector<Option*> &SinkOpts,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000107 std::map<std::string, Option*> &OptionsMap) {
108 std::vector<const char*> OptionNames;
Chris Lattneree2b3202007-04-07 05:38:53 +0000109 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000110 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
111 // If this option wants to handle multiple option names, get the full set.
112 // This handles enum options like "-O1 -O2" etc.
113 O->getExtraOptionNames(OptionNames);
114 if (O->ArgStr[0])
115 OptionNames.push_back(O->ArgStr);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000116
Chris Lattner9878d6a2007-04-06 21:06:55 +0000117 // Handle named options.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000118 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000119 // Add argument to the argument map!
120 if (!OptionsMap.insert(std::pair<std::string,Option*>(OptionNames[i],
121 O)).second) {
122 cerr << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman33540ad2008-05-30 13:26:11 +0000123 << OptionNames[i] << "' defined more than once!\n";
Chris Lattner9878d6a2007-04-06 21:06:55 +0000124 }
125 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000126
Chris Lattner9878d6a2007-04-06 21:06:55 +0000127 OptionNames.clear();
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000128
Chris Lattner9878d6a2007-04-06 21:06:55 +0000129 // Remember information about positional options.
130 if (O->getFormattingFlag() == cl::Positional)
131 PositionalOpts.push_back(O);
Dan Gohman61e015f2008-02-23 01:55:25 +0000132 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000133 SinkOpts.push_back(O);
Chris Lattner9878d6a2007-04-06 21:06:55 +0000134 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattneree2b3202007-04-07 05:38:53 +0000135 if (CAOpt)
Chris Lattner9878d6a2007-04-06 21:06:55 +0000136 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
Chris Lattneree2b3202007-04-07 05:38:53 +0000137 CAOpt = O;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000138 }
Chris Lattnere8e258b2002-07-29 20:58:42 +0000139 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000140
Chris Lattneree2b3202007-04-07 05:38:53 +0000141 if (CAOpt)
142 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000143
Chris Lattneree2b3202007-04-07 05:38:53 +0000144 // Make sure that they are in order of registration not backwards.
145 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
Chris Lattnere8e258b2002-07-29 20:58:42 +0000146}
147
Chris Lattner9878d6a2007-04-06 21:06:55 +0000148
Chris Lattneraf035f32007-04-05 21:58:17 +0000149/// LookupOption - Lookup the option specified by the specified option on the
150/// command line. If there is a value specified (after an equal sign) return
151/// that as well.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000152static Option *LookupOption(const char *&Arg, const char *&Value,
153 std::map<std::string, Option*> &OptionsMap) {
Chris Lattneraf035f32007-04-05 21:58:17 +0000154 while (*Arg == '-') ++Arg; // Eat leading dashes
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000155
Chris Lattneraf035f32007-04-05 21:58:17 +0000156 const char *ArgEnd = Arg;
157 while (*ArgEnd && *ArgEnd != '=')
158 ++ArgEnd; // Scan till end of argument name.
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000159
Chris Lattneraf035f32007-04-05 21:58:17 +0000160 if (*ArgEnd == '=') // If we have an equals sign...
161 Value = ArgEnd+1; // Get the value, not the equals
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000162
163
Chris Lattneraf035f32007-04-05 21:58:17 +0000164 if (*Arg == 0) return 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000165
Chris Lattneraf035f32007-04-05 21:58:17 +0000166 // Look up the option.
Chris Lattneraf035f32007-04-05 21:58:17 +0000167 std::map<std::string, Option*>::iterator I =
Chris Lattner9878d6a2007-04-06 21:06:55 +0000168 OptionsMap.find(std::string(Arg, ArgEnd));
169 return I != OptionsMap.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000170}
171
Chris Lattnercaccd762001-10-27 05:54:17 +0000172static inline bool ProvideOption(Option *Handler, const char *ArgName,
173 const char *Value, int argc, char **argv,
174 int &i) {
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000175 // Is this a multi-argument option?
176 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
177
Chris Lattnercaccd762001-10-27 05:54:17 +0000178 // Enforce value requirements
179 switch (Handler->getValueExpectedFlag()) {
180 case ValueRequired:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000181 if (Value == 0) { // No value specified?
Chris Lattnercaccd762001-10-27 05:54:17 +0000182 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
183 Value = argv[++i];
184 } else {
185 return Handler->error(" requires a value!");
186 }
187 }
188 break;
189 case ValueDisallowed:
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000190 if (NumAdditionalVals > 0)
191 return Handler->error(": multi-valued option specified"
192 " with ValueDisallowed modifier!");
193
Chris Lattner6d5857e2005-05-10 23:20:17 +0000194 if (Value)
Misha Brukmanf976c852005-04-21 22:55:34 +0000195 return Handler->error(" does not allow a value! '" +
Chris Lattnerca6433f2003-05-22 20:06:43 +0000196 std::string(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000197 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000198 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000199 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000200 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000201 cerr << ProgramName
202 << ": Bad ValueMask flag! CommandLine usage error:"
203 << Handler->getValueExpectedFlag() << "\n";
Reid Spencere1cc1502004-09-01 04:41:28 +0000204 abort();
205 break;
Chris Lattnercaccd762001-10-27 05:54:17 +0000206 }
207
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000208 // If this isn't a multi-arg option, just run the handler.
209 if (NumAdditionalVals == 0) {
210 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
211 }
212 // If it is, run the handle several times.
213 else {
214 bool MultiArg = false;
215
216 if (Value) {
217 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
218 return true;
219 --NumAdditionalVals;
220 MultiArg = true;
221 }
222
223 while (NumAdditionalVals > 0) {
224
225 if (i+1 < argc) {
226 Value = argv[++i];
227 } else {
228 return Handler->error(": not enough values!");
229 }
230 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
231 return true;
232 MultiArg = true;
233 --NumAdditionalVals;
234 }
235 return false;
236 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000237}
238
Misha Brukmanf976c852005-04-21 22:55:34 +0000239static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000240 int i) {
241 int Dummy = i;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000242 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000243}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000244
Chris Lattner331de232002-07-22 02:07:59 +0000245
246// Option predicates...
247static inline bool isGrouping(const Option *O) {
248 return O->getFormattingFlag() == cl::Grouping;
249}
250static inline bool isPrefixedOrGrouping(const Option *O) {
251 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
252}
253
254// getOptionPred - Check to see if there are any options that satisfy the
255// specified predicate with names that are the prefixes in Name. This is
256// checked by progressively stripping characters off of the name, checking to
257// see if there options that satisfy the predicate. If we find one, return it,
258// otherwise return null.
259//
Evan Cheng34cd4a42008-05-05 18:30:58 +0000260static Option *getOptionPred(std::string Name, size_t &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000261 bool (*Pred)(const Option*),
262 std::map<std::string, Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000263
Chris Lattner9878d6a2007-04-06 21:06:55 +0000264 std::map<std::string, Option*>::iterator OMI = OptionsMap.find(Name);
265 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000266 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000267 return OMI->second;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000268 }
269
Chris Lattner331de232002-07-22 02:07:59 +0000270 if (Name.size() == 1) return 0;
271 do {
272 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000273 OMI = OptionsMap.find(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000274
275 // Loop while we haven't found an option and Name still has at least two
276 // characters in it (so that the next iteration will not be the empty
277 // string...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000278 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000279
Chris Lattner9878d6a2007-04-06 21:06:55 +0000280 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000281 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000282 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000283 }
284 return 0; // No option found!
285}
286
287static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000288 return O->getNumOccurrencesFlag() == cl::Required ||
289 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000290}
291
292static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000293 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
294 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000295}
Chris Lattnercaccd762001-10-27 05:54:17 +0000296
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000297/// ParseCStringVector - Break INPUT up wherever one or more
298/// whitespace characters are found, and store the resulting tokens in
299/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
300/// using strdup (), so it is the caller's responsibility to free ()
301/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000302///
Chris Lattner23288582006-08-27 22:10:29 +0000303static void ParseCStringVector(std::vector<char *> &output,
304 const char *input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000305 // Characters which will be treated as token separators:
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000306 static const char *const delims = " \v\f\t\r\n";
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000307
308 std::string work (input);
309 // Skip past any delims at head of input string.
310 size_t pos = work.find_first_not_of (delims);
311 // If the string consists entirely of delims, then exit early.
312 if (pos == std::string::npos) return;
313 // Otherwise, jump forward to beginning of first word.
314 work = work.substr (pos);
315 // Find position of first delimiter.
316 pos = work.find_first_of (delims);
317
318 while (!work.empty() && pos != std::string::npos) {
319 // Everything from 0 to POS is the next word to copy.
320 output.push_back (strdup (work.substr (0,pos).c_str ()));
321 // Is there another word in the string?
322 size_t nextpos = work.find_first_not_of (delims, pos + 1);
323 if (nextpos != std::string::npos) {
324 // Yes? Then remove delims from beginning ...
325 work = work.substr (work.find_first_not_of (delims, pos + 1));
326 // and find the end of the word.
327 pos = work.find_first_of (delims);
328 } else {
329 // No? (Remainder of string is delims.) End the loop.
330 work = "";
331 pos = std::string::npos;
332 }
333 }
334
335 // If `input' ended with non-delim char, then we'll get here with
336 // the last word of `input' in `work'; copy it now.
337 if (!work.empty ()) {
338 output.push_back (strdup (work.c_str ()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000339 }
340}
341
342/// ParseEnvironmentOptions - An alternative entry point to the
343/// CommandLine library, which allows you to read the program's name
344/// from the caller (as PROGNAME) and its command-line arguments from
345/// an environment variable (whose name is given in ENVVAR).
346///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000347void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000348 const char *Overview, bool ReadResponseFiles) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000349 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000350 assert(progName && "Program name not specified");
351 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000352
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000353 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000354 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000355 if (!envValue)
356 return;
357
Brian Gaeke06b06c52003-08-14 22:00:59 +0000358 // Get program's "name", which we wouldn't know without the caller
359 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000360 std::vector<char*> newArgv;
361 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000362
363 // Parse the value of the environment variable into a "command line"
364 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000365 ParseCStringVector(newArgv, envValue);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000366 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000367 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000368
369 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000370 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
371 i != e; ++i)
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000372 free (*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000373}
374
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000375
376/// ExpandResponseFiles - Copy the contents of argv into newArgv,
377/// substituting the contents of the response files for the arguments
378/// of type @file.
379static void ExpandResponseFiles(int argc, char** argv,
380 std::vector<char*>& newArgv) {
381 for (int i = 1; i != argc; ++i) {
382 char* arg = argv[i];
383
384 if (arg[0] == '@') {
385
386 sys::PathWithStatus respFile(++arg);
387
388 // Check that the response file is not empty (mmap'ing empty
389 // files can be problematic).
390 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000391 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000392
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000393 // Mmap the response file into memory.
394 OwningPtr<MemoryBuffer>
395 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000396
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000397 // If we could open the file, parse its contents, otherwise
398 // pass the @file option verbatim.
Mikhail Glushenkov6c55b1c2009-01-28 03:46:22 +0000399
400 // TODO: we should also support recursive loading of response files,
401 // since this is how gcc behaves. (From their man page: "The file may
402 // itself contain additional @file options; any such options will be
403 // processed recursively.")
404
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000405 if (respFilePtr != 0) {
406 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
407 continue;
408 }
409 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000410 }
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000411 newArgv.push_back(strdup(arg));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000412 }
413}
414
Dan Gohman9a526322007-10-09 16:04:57 +0000415void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000416 const char *Overview, bool ReadResponseFiles) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000417 // Process all registered options.
418 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000419 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000420 std::map<std::string, Option*> Opts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000421 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000422
Chris Lattner9878d6a2007-04-06 21:06:55 +0000423 assert((!Opts.empty() || !PositionalOpts.empty()) &&
424 "No options specified!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000425
426 // Expand response files.
427 std::vector<char*> newArgv;
428 if (ReadResponseFiles) {
429 newArgv.push_back(strdup(argv[0]));
430 ExpandResponseFiles(argc, argv, newArgv);
431 argv = &newArgv[0];
Evan Cheng34cd4a42008-05-05 18:30:58 +0000432 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000433 }
434
Chris Lattnerefa3da52006-10-13 00:06:24 +0000435 // Copy the program name into ProgName, making sure not to overflow it.
436 std::string ProgName = sys::Path(argv[0]).getLast();
437 if (ProgName.size() > 79) ProgName.resize(79);
438 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000439
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000440 ProgramOverview = Overview;
441 bool ErrorParsing = false;
442
Chris Lattner331de232002-07-22 02:07:59 +0000443 // Check out the positional arguments to collect information about them.
444 unsigned NumPositionalRequired = 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000445
Chris Lattnerde013242005-08-08 17:25:38 +0000446 // Determine whether or not there are an unlimited number of positionals
447 bool HasUnlimitedPositionals = false;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000448
Chris Lattner331de232002-07-22 02:07:59 +0000449 Option *ConsumeAfterOpt = 0;
450 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000451 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000452 assert(PositionalOpts.size() > 1 &&
453 "Cannot specify cl::ConsumeAfter without a positional argument!");
454 ConsumeAfterOpt = PositionalOpts[0];
455 }
456
457 // Calculate how many positional values are _required_.
458 bool UnboundedFound = false;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000459 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Chris Lattner331de232002-07-22 02:07:59 +0000460 i != e; ++i) {
461 Option *Opt = PositionalOpts[i];
462 if (RequiresValue(Opt))
463 ++NumPositionalRequired;
464 else if (ConsumeAfterOpt) {
465 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000466 // unless there is only one positional argument...
467 if (PositionalOpts.size() > 2)
468 ErrorParsing |=
469 Opt->error(" error - this positional option will never be matched, "
470 "because it does not Require a value, and a "
471 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000472 } else if (UnboundedFound && !Opt->ArgStr[0]) {
473 // This option does not "require" a value... Make sure this option is
474 // not specified after an option that eats all extra arguments, or this
475 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000476 //
477 ErrorParsing |= Opt->error(" error - option can never match, because "
478 "another positional argument will match an "
479 "unbounded number of values, and this option"
480 " does not require a value!");
481 }
482 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
483 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000484 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000485 }
486
Reid Spencer1e13fd22004-08-13 19:47:30 +0000487 // PositionalVals - A vector of "positional" arguments we accumulate into
488 // the process at the end...
Chris Lattner331de232002-07-22 02:07:59 +0000489 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000490 std::vector<std::pair<std::string,unsigned> > PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000491
Chris Lattner9cf3d472003-07-30 17:34:02 +0000492 // If the program has named positional arguments, and the name has been run
493 // across, keep track of which positional argument was named. Otherwise put
494 // the positional args into the PositionalVals list...
495 Option *ActivePositionalArg = 0;
496
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000497 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000498 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000499 for (int i = 1; i < argc; ++i) {
500 Option *Handler = 0;
Chris Lattner6d5857e2005-05-10 23:20:17 +0000501 const char *Value = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000502 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000503
Chris Lattner69d6f132007-04-12 00:36:29 +0000504 // If the option list changed, this means that some command line
Chris Lattner159b0a432007-04-11 15:35:18 +0000505 // option has just been registered or deregistered. This can occur in
506 // response to things like -load, etc. If this happens, rescan the options.
Chris Lattner69d6f132007-04-12 00:36:29 +0000507 if (OptionListChanged) {
Chris Lattner159b0a432007-04-11 15:35:18 +0000508 PositionalOpts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000509 SinkOpts.clear();
Chris Lattner159b0a432007-04-11 15:35:18 +0000510 Opts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000511 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Chris Lattner69d6f132007-04-12 00:36:29 +0000512 OptionListChanged = false;
Chris Lattner159b0a432007-04-11 15:35:18 +0000513 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000514
Chris Lattner331de232002-07-22 02:07:59 +0000515 // Check to see if this is a positional argument. This argument is
516 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000517 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000518 //
519 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
520 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000521 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000522 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000523 continue; // We are done!
524 } else if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000525 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000526
527 // All of the positional arguments have been fulfulled, give the rest to
528 // the consume after option... if it's specified...
529 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000530 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000531 ConsumeAfterOpt != 0) {
532 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000533 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000534 break; // Handle outside of the argument processing loop...
535 }
536
537 // Delay processing positional arguments until the end...
538 continue;
539 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000540 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
541 !DashDashFound) {
542 DashDashFound = true; // This is the mythical "--"?
543 continue; // Don't try to process it as an argument itself.
544 } else if (ActivePositionalArg &&
545 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
546 // If there is a positional argument eating options, check to see if this
547 // option is another positional argument. If so, treat it as an argument,
548 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000549 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000550 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000551 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000552 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000553 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000554 }
555
Chris Lattnerbf455c22004-05-06 22:04:31 +0000556 } else { // We start with a '-', must be an argument...
557 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000558 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000559
Chris Lattnerbf455c22004-05-06 22:04:31 +0000560 // Check to see if this "option" is really a prefixed or grouped argument.
Reid Spencer5f8448f2004-11-24 06:13:42 +0000561 if (Handler == 0) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000562 std::string RealName(ArgName);
563 if (RealName.size() > 1) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000564 size_t Length = 0;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000565 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
566 Opts);
Misha Brukmanf976c852005-04-21 22:55:34 +0000567
Chris Lattner331de232002-07-22 02:07:59 +0000568 // If the option is a prefixed option, then the value is simply the
569 // rest of the name... so fall through to later processing, by
570 // setting up the argument name flags and value fields.
571 //
572 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000573 Value = ArgName+Length;
574 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
575 Opts.find(std::string(ArgName, Value))->second == PGOpt);
576 Handler = PGOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000577 } else if (PGOpt) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000578 // This must be a grouped option... handle them now.
Chris Lattner331de232002-07-22 02:07:59 +0000579 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000580
Chris Lattner331de232002-07-22 02:07:59 +0000581 do {
582 // Move current arg name out of RealName into RealArgName...
Chris Lattnerbf455c22004-05-06 22:04:31 +0000583 std::string RealArgName(RealName.begin(),
584 RealName.begin() + Length);
585 RealName.erase(RealName.begin(), RealName.begin() + Length);
Misha Brukmanf976c852005-04-21 22:55:34 +0000586
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000587 // Because ValueRequired is an invalid flag for grouped arguments,
588 // we don't need to pass argc/argv in...
589 //
Chris Lattner331de232002-07-22 02:07:59 +0000590 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
591 "Option can not be cl::Grouping AND cl::ValueRequired!");
592 int Dummy;
Chris Lattnerbf455c22004-05-06 22:04:31 +0000593 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
Chris Lattner6d5857e2005-05-10 23:20:17 +0000594 0, 0, 0, Dummy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000595
Chris Lattner331de232002-07-22 02:07:59 +0000596 // Get the next grouping option...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000597 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000598 } while (PGOpt && Length != RealName.size());
Misha Brukmanf976c852005-04-21 22:55:34 +0000599
Chris Lattnerbf455c22004-05-06 22:04:31 +0000600 Handler = PGOpt; // Ate all of the options.
Chris Lattner331de232002-07-22 02:07:59 +0000601 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000602 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000603 }
604 }
605
606 if (Handler == 0) {
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000607 if (SinkOpts.empty()) {
608 cerr << ProgramName << ": Unknown command line argument '"
609 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
610 ErrorParsing = true;
611 } else {
612 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
613 E = SinkOpts.end(); I != E ; ++I)
614 (*I)->addOccurrence(i, "", argv[i]);
615 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000616 continue;
617 }
618
Chris Lattner72fb8e52003-05-22 20:26:17 +0000619 // Check to see if this option accepts a comma separated list of values. If
620 // it does, we have to split up the value into multiple values...
Chris Lattner6d5857e2005-05-10 23:20:17 +0000621 if (Value && Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner72fb8e52003-05-22 20:26:17 +0000622 std::string Val(Value);
623 std::string::size_type Pos = Val.find(',');
624
625 while (Pos != std::string::npos) {
626 // Process the portion before the comma...
627 ErrorParsing |= ProvideOption(Handler, ArgName,
628 std::string(Val.begin(),
629 Val.begin()+Pos).c_str(),
630 argc, argv, i);
631 // Erase the portion before the comma, AND the comma...
632 Val.erase(Val.begin(), Val.begin()+Pos+1);
633 Value += Pos+1; // Increment the original value pointer as well...
634
635 // Check for another comma...
636 Pos = Val.find(',');
637 }
638 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000639
640 // If this is a named positional argument, just remember that it is the
641 // active one...
642 if (Handler->getFormattingFlag() == cl::Positional)
643 ActivePositionalArg = Handler;
Misha Brukmanf976c852005-04-21 22:55:34 +0000644 else
Chris Lattner9cf3d472003-07-30 17:34:02 +0000645 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000646 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000647
Chris Lattner331de232002-07-22 02:07:59 +0000648 // Check and handle positional arguments now...
649 if (NumPositionalRequired > PositionalVals.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000650 cerr << ProgramName
651 << ": Not enough positional command line arguments specified!\n"
652 << "Must specify at least " << NumPositionalRequired
653 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000654
Chris Lattner331de232002-07-22 02:07:59 +0000655 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000656 } else if (!HasUnlimitedPositionals
657 && PositionalVals.size() > PositionalOpts.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000658 cerr << ProgramName
659 << ": Too many positional arguments specified!\n"
660 << "Can specify at most " << PositionalOpts.size()
661 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000662 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000663
664 } else if (ConsumeAfterOpt == 0) {
665 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000666 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
667 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner331de232002-07-22 02:07:59 +0000668 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000669 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000670 PositionalVals[ValNo].second);
671 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000672 --NumPositionalRequired; // We fulfilled our duty...
673 }
674
675 // If we _can_ give this option more arguments, do so now, as long as we
676 // do not give it values that others need. 'Done' controls whether the
677 // option even _WANTS_ any more.
678 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000679 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000680 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000681 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000682 case cl::Optional:
683 Done = true; // Optional arguments want _at most_ one value
684 // FALL THROUGH
685 case cl::ZeroOrMore: // Zero or more will take all they can get...
686 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000687 ProvidePositionalOption(PositionalOpts[i],
688 PositionalVals[ValNo].first,
689 PositionalVals[ValNo].second);
690 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000691 break;
692 default:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000693 assert(0 && "Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000694 "positional argument processing!");
695 }
696 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000697 }
Chris Lattner331de232002-07-22 02:07:59 +0000698 } else {
699 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
700 unsigned ValNo = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000701 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000702 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000703 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000704 PositionalVals[ValNo].first,
705 PositionalVals[ValNo].second);
706 ValNo++;
707 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000708
709 // Handle the case where there is just one positional option, and it's
710 // optional. In this case, we want to give JUST THE FIRST option to the
711 // positional option and keep the rest for the consume after. The above
712 // loop would have assigned no values to positional options in this case.
713 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000714 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000715 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000716 PositionalVals[ValNo].first,
717 PositionalVals[ValNo].second);
718 ValNo++;
719 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000720
Chris Lattner331de232002-07-22 02:07:59 +0000721 // Handle over all of the rest of the arguments to the
722 // cl::ConsumeAfter command line option...
723 for (; ValNo != PositionalVals.size(); ++ValNo)
724 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000725 PositionalVals[ValNo].first,
726 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000727 }
728
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000729 // Loop over args and make sure all required args are specified!
Misha Brukmanf976c852005-04-21 22:55:34 +0000730 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000731 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000732 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000733 case Required:
734 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000735 if (I->second->getNumOccurrences() == 0) {
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000736 I->second->error(" must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000737 ErrorParsing = true;
738 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000739 // Fall through
740 default:
741 break;
742 }
743 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000744
Chris Lattner331de232002-07-22 02:07:59 +0000745 // Free all of the memory allocated to the map. Command line options may only
746 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000747 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000748 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000749 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000750
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000751 // Free the memory allocated by ExpandResponseFiles.
752 if (ReadResponseFiles) {
753 // Free all the strdup()ed strings.
754 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
755 i != e; ++i)
756 free (*i);
757 }
758
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000759 // If we had an error processing our arguments, don't let the program execute
760 if (ErrorParsing) exit(1);
761}
762
763//===----------------------------------------------------------------------===//
764// Option Base class implementation
765//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000766
Chris Lattnerca6433f2003-05-22 20:06:43 +0000767bool Option::error(std::string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000768 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000769 if (ArgName[0] == 0)
Bill Wendlinge8156192006-12-07 01:30:32 +0000770 cerr << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000771 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000772 cerr << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000773
Bill Wendlinge8156192006-12-07 01:30:32 +0000774 cerr << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000775 return true;
776}
777
Chris Lattner6d5857e2005-05-10 23:20:17 +0000778bool Option::addOccurrence(unsigned pos, const char *ArgName,
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000779 const std::string &Value,
780 bool MultiArg) {
781 if (!MultiArg)
782 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000783
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000784 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000785 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000786 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000787 return error(": may only occur zero or one times!", ArgName);
788 break;
789 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000790 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000791 return error(": must occur exactly one time!", ArgName);
792 // Fall through
793 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000794 case ZeroOrMore:
795 case ConsumeAfter: break;
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000796 default: return error(": bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000797 }
798
Reid Spencer1e13fd22004-08-13 19:47:30 +0000799 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000800}
801
Chris Lattner331de232002-07-22 02:07:59 +0000802
803// getValueStr - Get the value description string, using "DefaultMsg" if nothing
804// has been specified yet.
805//
806static const char *getValueStr(const Option &O, const char *DefaultMsg) {
807 if (O.ValueStr[0] == 0) return DefaultMsg;
808 return O.ValueStr;
809}
810
811//===----------------------------------------------------------------------===//
812// cl::alias class implementation
813//
814
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000815// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000816size_t alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000817 return std::strlen(ArgStr)+6;
818}
819
Chris Lattnera0de8432006-04-28 05:36:25 +0000820// Print out the option for the alias.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000821void alias::printOptionInfo(size_t GlobalWidth) const {
822 size_t L = std::strlen(ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000823 cout << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
824 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000825}
826
827
Chris Lattner331de232002-07-22 02:07:59 +0000828
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000829//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000830// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000831//
832
Chris Lattner9b14eb52002-08-07 18:36:37 +0000833// basic_parser implementation
834//
835
836// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000837size_t basic_parser_impl::getOptionWidth(const Option &O) const {
838 size_t Len = std::strlen(O.ArgStr);
Chris Lattner9b14eb52002-08-07 18:36:37 +0000839 if (const char *ValName = getValueName())
840 Len += std::strlen(getValueStr(O, ValName))+3;
841
842 return Len + 6;
843}
844
Misha Brukmanf976c852005-04-21 22:55:34 +0000845// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000846// to-be-maintained width is specified.
847//
848void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000849 size_t GlobalWidth) const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000850 cout << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000851
852 if (const char *ValName = getValueName())
Bill Wendlinge8156192006-12-07 01:30:32 +0000853 cout << "=<" << getValueStr(O, ValName) << ">";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000854
Bill Wendlinge8156192006-12-07 01:30:32 +0000855 cout << std::string(GlobalWidth-getOptionWidth(O), ' ') << " - "
856 << O.HelpStr << "\n";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000857}
858
859
860
861
Chris Lattner331de232002-07-22 02:07:59 +0000862// parser<bool> implementation
863//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000864bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000865 const std::string &Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000866 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000867 Arg == "1") {
868 Value = true;
869 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
870 Value = false;
871 } else {
Chris Lattner331de232002-07-22 02:07:59 +0000872 return O.error(": '" + Arg +
873 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000874 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000875 return false;
876}
877
Dale Johannesen81da02b2007-05-22 17:14:46 +0000878// parser<boolOrDefault> implementation
879//
880bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
881 const std::string &Arg, boolOrDefault &Value) {
882 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
883 Arg == "1") {
884 Value = BOU_TRUE;
Mike Stumpd6f175b2009-01-30 08:19:46 +0000885 } else if (Arg == "false" || Arg == "FALSE"
886 || Arg == "False" || Arg == "0") {
Dale Johannesen81da02b2007-05-22 17:14:46 +0000887 Value = BOU_FALSE;
888 } else {
889 return O.error(": '" + Arg +
890 "' is invalid value for boolean argument! Try 0 or 1");
891 }
892 return false;
893}
894
Chris Lattner331de232002-07-22 02:07:59 +0000895// parser<int> implementation
896//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000897bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000898 const std::string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000899 char *End;
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000900 Value = (int)strtol(Arg.c_str(), &End, 0);
Misha Brukmanf976c852005-04-21 22:55:34 +0000901 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000902 return O.error(": '" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000903 return false;
904}
905
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000906// parser<unsigned> implementation
907//
908bool parser<unsigned>::parse(Option &O, const char *ArgName,
909 const std::string &Arg, unsigned &Value) {
910 char *End;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000911 errno = 0;
912 unsigned long V = strtoul(Arg.c_str(), &End, 0);
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000913 Value = (unsigned)V;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000914 if (((V == ULONG_MAX) && (errno == ERANGE))
915 || (*End != 0)
916 || (Value != V))
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000917 return O.error(": '" + Arg + "' value invalid for uint argument!");
918 return false;
919}
920
Chris Lattner9b14eb52002-08-07 18:36:37 +0000921// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000922//
Chris Lattnerca6433f2003-05-22 20:06:43 +0000923static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000924 const char *ArgStart = Arg.c_str();
925 char *End;
926 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000927 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000928 return O.error(": '" +Arg+ "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000929 return false;
930}
931
Chris Lattner9b14eb52002-08-07 18:36:37 +0000932bool parser<double>::parse(Option &O, const char *AN,
933 const std::string &Arg, double &Val) {
934 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000935}
936
Chris Lattner9b14eb52002-08-07 18:36:37 +0000937bool parser<float>::parse(Option &O, const char *AN,
938 const std::string &Arg, float &Val) {
939 double dVal;
940 if (parseDouble(O, Arg, dVal))
941 return true;
942 Val = (float)dVal;
943 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000944}
945
946
Chris Lattner331de232002-07-22 02:07:59 +0000947
948// generic_parser_base implementation
949//
950
Chris Lattneraa852bb2002-07-23 17:15:12 +0000951// findOption - Return the option number corresponding to the specified
952// argument string. If the option is not found, getNumOptions() is returned.
953//
954unsigned generic_parser_base::findOption(const char *Name) {
955 unsigned i = 0, e = getNumOptions();
Chris Lattnerca6433f2003-05-22 20:06:43 +0000956 std::string N(Name);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000957
958 while (i != e)
959 if (getOption(i) == N)
960 return i;
961 else
962 ++i;
963 return e;
964}
965
966
Chris Lattner331de232002-07-22 02:07:59 +0000967// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000968size_t generic_parser_base::getOptionWidth(const Option &O) const {
Chris Lattner331de232002-07-22 02:07:59 +0000969 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000970 size_t Size = std::strlen(O.ArgStr)+6;
Chris Lattner331de232002-07-22 02:07:59 +0000971 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000972 Size = std::max(Size, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000973 return Size;
974 } else {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000975 size_t BaseSize = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000976 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000977 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000978 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000979 }
980}
981
Misha Brukmanf976c852005-04-21 22:55:34 +0000982// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +0000983// to-be-maintained width is specified.
984//
985void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000986 size_t GlobalWidth) const {
Chris Lattner331de232002-07-22 02:07:59 +0000987 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000988 size_t L = std::strlen(O.ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000989 cout << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
990 << " - " << O.HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000991
Chris Lattner331de232002-07-22 02:07:59 +0000992 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000993 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Bill Wendlinge8156192006-12-07 01:30:32 +0000994 cout << " =" << getOption(i) << std::string(NumSpaces, ' ')
Dan Gohmanb8cab922008-10-14 20:25:08 +0000995 << " - " << getDescription(i) << "\n";
Chris Lattner9c9be482002-01-31 00:42:56 +0000996 }
Chris Lattner331de232002-07-22 02:07:59 +0000997 } else {
998 if (O.HelpStr[0])
Bill Wendlinge8156192006-12-07 01:30:32 +0000999 cout << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001000 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001001 size_t L = std::strlen(getOption(i));
Bill Wendlinge8156192006-12-07 01:30:32 +00001002 cout << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
1003 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001004 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001005 }
1006}
1007
1008
1009//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +00001010// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001011//
Reid Spencerad0846b2004-11-14 22:04:00 +00001012
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001013namespace {
1014
Chris Lattner331de232002-07-22 02:07:59 +00001015class HelpPrinter {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001016 size_t MaxArgLen;
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001017 const Option *EmptyArg;
1018 const bool ShowHidden;
1019
Chris Lattner331de232002-07-22 02:07:59 +00001020 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Chris Lattnerca6433f2003-05-22 20:06:43 +00001021 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001022 return OptPair.second->getOptionHiddenFlag() >= Hidden;
1023 }
Chris Lattnerca6433f2003-05-22 20:06:43 +00001024 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001025 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
1026 }
1027
1028public:
Dan Gohman950a4c42008-03-25 22:06:05 +00001029 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Chris Lattner331de232002-07-22 02:07:59 +00001030 EmptyArg = 0;
1031 }
1032
1033 void operator=(bool Value) {
1034 if (Value == false) return;
1035
Chris Lattner9878d6a2007-04-06 21:06:55 +00001036 // Get all the options.
1037 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001038 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001039 std::map<std::string, Option*> OptMap;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001040 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001041
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001042 // Copy Options into a vector so we can sort them as we like...
Chris Lattner90aa8392006-10-04 21:52:35 +00001043 std::vector<std::pair<std::string, Option*> > Opts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001044 copy(OptMap.begin(), OptMap.end(), std::back_inserter(Opts));
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001045
1046 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner90aa8392006-10-04 21:52:35 +00001047 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1048 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1049 Opts.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001050
1051 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +00001052 { // Give OptionSet a scope
1053 std::set<Option*> OptionSet;
Chris Lattner90aa8392006-10-04 21:52:35 +00001054 for (unsigned i = 0; i != Opts.size(); ++i)
1055 if (OptionSet.count(Opts[i].second) == 0)
1056 OptionSet.insert(Opts[i].second); // Add new entry to set
Chris Lattner331de232002-07-22 02:07:59 +00001057 else
Chris Lattner90aa8392006-10-04 21:52:35 +00001058 Opts.erase(Opts.begin()+i--); // Erase duplicate
Chris Lattner331de232002-07-22 02:07:59 +00001059 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001060
1061 if (ProgramOverview)
Dan Gohman82a13c92007-10-08 15:45:12 +00001062 cout << "OVERVIEW: " << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001063
Bill Wendlinge8156192006-12-07 01:30:32 +00001064 cout << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +00001065
Chris Lattner90aa8392006-10-04 21:52:35 +00001066 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +00001067 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001068 if (!PositionalOpts.empty() &&
Chris Lattner9878d6a2007-04-06 21:06:55 +00001069 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1070 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +00001071
Evan Cheng34cd4a42008-05-05 18:30:58 +00001072 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +00001073 if (PositionalOpts[i]->ArgStr[0])
1074 cout << " --" << PositionalOpts[i]->ArgStr;
1075 cout << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +00001076 }
Chris Lattner331de232002-07-22 02:07:59 +00001077
1078 // Print the consume after option info if it exists...
Bill Wendlinge8156192006-12-07 01:30:32 +00001079 if (CAOpt) cout << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +00001080
Bill Wendlinge8156192006-12-07 01:30:32 +00001081 cout << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001082
1083 // Compute the maximum argument length...
1084 MaxArgLen = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +00001085 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001086 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001087
Bill Wendlinge8156192006-12-07 01:30:32 +00001088 cout << "OPTIONS:\n";
Evan Cheng34cd4a42008-05-05 18:30:58 +00001089 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001090 Opts[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001091
Chris Lattnerc540ebb2004-11-19 17:08:15 +00001092 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +00001093 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1094 E = MoreHelp->end(); I != E; ++I)
Bill Wendlinge8156192006-12-07 01:30:32 +00001095 cout << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +00001096 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +00001097
Reid Spencer9bbba0912004-11-16 06:11:52 +00001098 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +00001099 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001100 }
1101};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001102} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001103
Chris Lattner331de232002-07-22 02:07:59 +00001104// Define the two HelpPrinter instances that are used to print out help, or
1105// help-hidden...
1106//
Chris Lattner500d8bf2006-10-12 22:09:17 +00001107static HelpPrinter NormalPrinter(false);
1108static HelpPrinter HiddenPrinter(true);
Chris Lattner331de232002-07-22 02:07:59 +00001109
Chris Lattner500d8bf2006-10-12 22:09:17 +00001110static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001111HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001112 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +00001113
Chris Lattner500d8bf2006-10-12 22:09:17 +00001114static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001115HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001116 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001117
Chris Lattner500d8bf2006-10-12 22:09:17 +00001118static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +00001119
Chris Lattner500d8bf2006-10-12 22:09:17 +00001120namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +00001121class VersionPrinter {
1122public:
Devang Patelaed293d2007-02-01 01:43:37 +00001123 void print() {
Bill Wendlinge8156192006-12-07 01:30:32 +00001124 cout << "Low Level Virtual Machine (http://llvm.org/):\n";
1125 cout << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001126#ifdef LLVM_VERSION_INFO
Bill Wendlinge8156192006-12-07 01:30:32 +00001127 cout << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +00001128#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001129 cout << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001130#ifndef __OPTIMIZE__
Bill Wendlinge8156192006-12-07 01:30:32 +00001131 cout << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001132#else
Bill Wendlinge8156192006-12-07 01:30:32 +00001133 cout << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001134#endif
1135#ifndef NDEBUG
Bill Wendlinge8156192006-12-07 01:30:32 +00001136 cout << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001137#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001138 cout << ".\n";
Steve Naroff1f33f8e2008-12-23 18:41:47 +00001139 cout << " Built " << __DATE__ << "(" << __TIME__ << ").\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001140 }
1141 void operator=(bool OptionWasSpecified) {
1142 if (OptionWasSpecified) {
1143 if (OverrideVersionPrinter == 0) {
1144 print();
Reid Spencer515b5b32006-06-05 16:22:56 +00001145 exit(1);
1146 } else {
1147 (*OverrideVersionPrinter)();
1148 exit(1);
1149 }
1150 }
1151 }
1152};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001153} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001154
1155
Reid Spencer69105f32004-08-04 00:36:06 +00001156// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001157static VersionPrinter VersionPrinterInstance;
1158
1159static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001160VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001161 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1162
Reid Spencer9bbba0912004-11-16 06:11:52 +00001163// Utility function for printing the help message.
1164void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001165 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001166 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1167 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001168 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001169 // --help option was given or not. Since we're circumventing that we have
1170 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001171 NormalPrinter = true;
1172}
Reid Spencer515b5b32006-06-05 16:22:56 +00001173
Devang Patelaed293d2007-02-01 01:43:37 +00001174/// Utility function for printing version number.
1175void cl::PrintVersionMessage() {
1176 VersionPrinterInstance.print();
1177}
1178
Reid Spencer515b5b32006-06-05 16:22:56 +00001179void cl::SetVersionPrinter(void (*func)()) {
1180 OverrideVersionPrinter = func;
1181}