blob: 7f85fac0cec5fe40f1af4cb3601744bb9d5d316f [file] [log] [blame]
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001//===-- CommandLine.cpp - Command line parser implementation --------------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerdbab15a2001-07-23 17:17:47 +00009//
10// This class implements a command line argument processor that is useful when
11// creating a tool. It provides a simple, minimalistic interface that is easily
12// extensible and supports nonlocal (library) command line options.
13//
Chris Lattner03fe1bd2001-07-23 23:04:07 +000014// Note that rather than trying to figure out what this code does, you could try
15// reading the library documentation located in docs/CommandLine.html
16//
Chris Lattnerdbab15a2001-07-23 17:17:47 +000017//===----------------------------------------------------------------------===//
18
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include "llvm/Config/config.h"
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000020#include "llvm/ADT/OwningPtr.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000021#include "llvm/Support/CommandLine.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000022#include "llvm/Support/ErrorHandling.h"
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000023#include "llvm/Support/MemoryBuffer.h"
Chris Lattner90aa8392006-10-04 21:52:35 +000024#include "llvm/Support/ManagedStatic.h"
Bill Wendlingfe6b1462006-11-26 10:52:51 +000025#include "llvm/Support/Streams.h"
Daniel Dunbar603bea32009-07-16 02:06:09 +000026#include "llvm/Target/TargetRegistry.h"
Reid Spencer6f4c6072006-08-23 07:10:06 +000027#include "llvm/System/Path.h"
Chris Lattnerdbab15a2001-07-23 17:17:47 +000028#include <algorithm>
Duraid Madina786e3e22005-12-26 04:56:16 +000029#include <functional>
Chris Lattnerdbab15a2001-07-23 17:17:47 +000030#include <map>
Bill Wendling1a097e32006-12-07 23:41:45 +000031#include <ostream>
Chris Lattnerdbab15a2001-07-23 17:17:47 +000032#include <set>
Brian Gaeke2d6a2362003-10-10 17:01:36 +000033#include <cstdlib>
34#include <cerrno>
Chris Lattner51140042004-07-03 01:21:05 +000035#include <cstring>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000036#include <climits>
Chris Lattner2cdd21c2003-12-14 21:35:53 +000037using namespace llvm;
Chris Lattnerdbab15a2001-07-23 17:17:47 +000038using namespace cl;
39
Chris Lattner7422a762006-08-27 12:45:47 +000040//===----------------------------------------------------------------------===//
41// Template instantiations and anchors.
42//
43TEMPLATE_INSTANTIATION(class basic_parser<bool>);
Dale Johannesen81da02b2007-05-22 17:14:46 +000044TEMPLATE_INSTANTIATION(class basic_parser<boolOrDefault>);
Chris Lattner7422a762006-08-27 12:45:47 +000045TEMPLATE_INSTANTIATION(class basic_parser<int>);
46TEMPLATE_INSTANTIATION(class basic_parser<unsigned>);
47TEMPLATE_INSTANTIATION(class basic_parser<double>);
48TEMPLATE_INSTANTIATION(class basic_parser<float>);
49TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
Bill Wendlingb587f962009-04-29 23:26:16 +000050TEMPLATE_INSTANTIATION(class basic_parser<char>);
Chris Lattner7422a762006-08-27 12:45:47 +000051
52TEMPLATE_INSTANTIATION(class opt<unsigned>);
53TEMPLATE_INSTANTIATION(class opt<int>);
54TEMPLATE_INSTANTIATION(class opt<std::string>);
Bill Wendlingb587f962009-04-29 23:26:16 +000055TEMPLATE_INSTANTIATION(class opt<char>);
Chris Lattner7422a762006-08-27 12:45:47 +000056TEMPLATE_INSTANTIATION(class opt<bool>);
57
58void Option::anchor() {}
59void basic_parser_impl::anchor() {}
60void parser<bool>::anchor() {}
Dale Johannesen81da02b2007-05-22 17:14:46 +000061void parser<boolOrDefault>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000062void parser<int>::anchor() {}
63void parser<unsigned>::anchor() {}
64void parser<double>::anchor() {}
65void parser<float>::anchor() {}
66void parser<std::string>::anchor() {}
Bill Wendlingb587f962009-04-29 23:26:16 +000067void parser<char>::anchor() {}
Chris Lattner7422a762006-08-27 12:45:47 +000068
69//===----------------------------------------------------------------------===//
70
Chris Lattnerefa3da52006-10-13 00:06:24 +000071// Globals for name and overview of program. Program name is not a string to
72// avoid static ctor/dtor issues.
73static char ProgramName[80] = "<premain>";
Reid Spencere1cc1502004-09-01 04:41:28 +000074static const char *ProgramOverview = 0;
75
Chris Lattnerc540ebb2004-11-19 17:08:15 +000076// This collects additional help to be printed.
Chris Lattner90aa8392006-10-04 21:52:35 +000077static ManagedStatic<std::vector<const char*> > MoreHelp;
Chris Lattnerc540ebb2004-11-19 17:08:15 +000078
Chris Lattner90aa8392006-10-04 21:52:35 +000079extrahelp::extrahelp(const char *Help)
Chris Lattnerc540ebb2004-11-19 17:08:15 +000080 : morehelp(Help) {
Chris Lattner90aa8392006-10-04 21:52:35 +000081 MoreHelp->push_back(Help);
Chris Lattnerc540ebb2004-11-19 17:08:15 +000082}
83
Chris Lattner69d6f132007-04-12 00:36:29 +000084static bool OptionListChanged = false;
85
86// MarkOptionsChanged - Internal helper function.
87void cl::MarkOptionsChanged() {
88 OptionListChanged = true;
89}
90
Chris Lattner9878d6a2007-04-06 21:06:55 +000091/// RegisteredOptionList - This is the list of the command line options that
92/// have statically constructed themselves.
93static Option *RegisteredOptionList = 0;
94
95void Option::addArgument() {
96 assert(NextRegistered == 0 && "argument multiply registered!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +000097
Chris Lattner9878d6a2007-04-06 21:06:55 +000098 NextRegistered = RegisteredOptionList;
99 RegisteredOptionList = this;
Chris Lattner69d6f132007-04-12 00:36:29 +0000100 MarkOptionsChanged();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000101}
102
Chris Lattner69d6f132007-04-12 00:36:29 +0000103
Chris Lattner331de232002-07-22 02:07:59 +0000104//===----------------------------------------------------------------------===//
Chris Lattner7422a762006-08-27 12:45:47 +0000105// Basic, shared command line option processing machinery.
Chris Lattner331de232002-07-22 02:07:59 +0000106//
107
Chris Lattner9878d6a2007-04-06 21:06:55 +0000108/// GetOptionInfo - Scan the list of registered options, turning them into data
109/// structures that are easier to handle.
110static void GetOptionInfo(std::vector<Option*> &PositionalOpts,
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000111 std::vector<Option*> &SinkOpts,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000112 std::map<std::string, Option*> &OptionsMap) {
113 std::vector<const char*> OptionNames;
Chris Lattneree2b3202007-04-07 05:38:53 +0000114 Option *CAOpt = 0; // The ConsumeAfter option if it exists.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000115 for (Option *O = RegisteredOptionList; O; O = O->getNextRegisteredOption()) {
116 // If this option wants to handle multiple option names, get the full set.
117 // This handles enum options like "-O1 -O2" etc.
118 O->getExtraOptionNames(OptionNames);
119 if (O->ArgStr[0])
120 OptionNames.push_back(O->ArgStr);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000121
Chris Lattner9878d6a2007-04-06 21:06:55 +0000122 // Handle named options.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000123 for (size_t i = 0, e = OptionNames.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000124 // Add argument to the argument map!
125 if (!OptionsMap.insert(std::pair<std::string,Option*>(OptionNames[i],
126 O)).second) {
127 cerr << ProgramName << ": CommandLine Error: Argument '"
Matthijs Kooijman33540ad2008-05-30 13:26:11 +0000128 << OptionNames[i] << "' defined more than once!\n";
Chris Lattner9878d6a2007-04-06 21:06:55 +0000129 }
130 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000131
Chris Lattner9878d6a2007-04-06 21:06:55 +0000132 OptionNames.clear();
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000133
Chris Lattner9878d6a2007-04-06 21:06:55 +0000134 // Remember information about positional options.
135 if (O->getFormattingFlag() == cl::Positional)
136 PositionalOpts.push_back(O);
Dan Gohman61e015f2008-02-23 01:55:25 +0000137 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000138 SinkOpts.push_back(O);
Chris Lattner9878d6a2007-04-06 21:06:55 +0000139 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattneree2b3202007-04-07 05:38:53 +0000140 if (CAOpt)
Chris Lattner9878d6a2007-04-06 21:06:55 +0000141 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
Chris Lattneree2b3202007-04-07 05:38:53 +0000142 CAOpt = O;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000143 }
Chris Lattnere8e258b2002-07-29 20:58:42 +0000144 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000145
Chris Lattneree2b3202007-04-07 05:38:53 +0000146 if (CAOpt)
147 PositionalOpts.push_back(CAOpt);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000148
Chris Lattneree2b3202007-04-07 05:38:53 +0000149 // Make sure that they are in order of registration not backwards.
150 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
Chris Lattnere8e258b2002-07-29 20:58:42 +0000151}
152
Chris Lattner9878d6a2007-04-06 21:06:55 +0000153
Chris Lattneraf035f32007-04-05 21:58:17 +0000154/// LookupOption - Lookup the option specified by the specified option on the
155/// command line. If there is a value specified (after an equal sign) return
156/// that as well.
Chris Lattner9878d6a2007-04-06 21:06:55 +0000157static Option *LookupOption(const char *&Arg, const char *&Value,
158 std::map<std::string, Option*> &OptionsMap) {
Chris Lattneraf035f32007-04-05 21:58:17 +0000159 while (*Arg == '-') ++Arg; // Eat leading dashes
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000160
Chris Lattneraf035f32007-04-05 21:58:17 +0000161 const char *ArgEnd = Arg;
162 while (*ArgEnd && *ArgEnd != '=')
163 ++ArgEnd; // Scan till end of argument name.
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000164
Chris Lattneraf035f32007-04-05 21:58:17 +0000165 if (*ArgEnd == '=') // If we have an equals sign...
166 Value = ArgEnd+1; // Get the value, not the equals
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000167
168
Chris Lattneraf035f32007-04-05 21:58:17 +0000169 if (*Arg == 0) return 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000170
Chris Lattneraf035f32007-04-05 21:58:17 +0000171 // Look up the option.
Chris Lattneraf035f32007-04-05 21:58:17 +0000172 std::map<std::string, Option*>::iterator I =
Chris Lattner9878d6a2007-04-06 21:06:55 +0000173 OptionsMap.find(std::string(Arg, ArgEnd));
174 return I != OptionsMap.end() ? I->second : 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000175}
176
Chris Lattnercaccd762001-10-27 05:54:17 +0000177static inline bool ProvideOption(Option *Handler, const char *ArgName,
178 const char *Value, int argc, char **argv,
179 int &i) {
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000180 // Is this a multi-argument option?
181 unsigned NumAdditionalVals = Handler->getNumAdditionalVals();
182
Chris Lattnercaccd762001-10-27 05:54:17 +0000183 // Enforce value requirements
184 switch (Handler->getValueExpectedFlag()) {
185 case ValueRequired:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000186 if (Value == 0) { // No value specified?
Chris Lattnercaccd762001-10-27 05:54:17 +0000187 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
188 Value = argv[++i];
189 } else {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000190 return Handler->error("requires a value!");
Chris Lattnercaccd762001-10-27 05:54:17 +0000191 }
192 }
193 break;
194 case ValueDisallowed:
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000195 if (NumAdditionalVals > 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000196 return Handler->error("multi-valued option specified"
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000197 " with ValueDisallowed modifier!");
198
Chris Lattner6d5857e2005-05-10 23:20:17 +0000199 if (Value)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000200 return Handler->error("does not allow a value! '" +
Chris Lattnerca6433f2003-05-22 20:06:43 +0000201 std::string(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000202 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000203 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000204 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000205 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000206 cerr << ProgramName
207 << ": Bad ValueMask flag! CommandLine usage error:"
208 << Handler->getValueExpectedFlag() << "\n";
Torok Edwinc23197a2009-07-14 16:55:14 +0000209 llvm_unreachable(0);
Chris Lattnercaccd762001-10-27 05:54:17 +0000210 }
211
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000212 // If this isn't a multi-arg option, just run the handler.
213 if (NumAdditionalVals == 0) {
214 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
215 }
216 // If it is, run the handle several times.
217 else {
218 bool MultiArg = false;
219
220 if (Value) {
221 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
222 return true;
223 --NumAdditionalVals;
224 MultiArg = true;
225 }
226
227 while (NumAdditionalVals > 0) {
228
229 if (i+1 < argc) {
230 Value = argv[++i];
231 } else {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000232 return Handler->error("not enough values!");
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000233 }
234 if (Handler->addOccurrence(i, ArgName, Value, MultiArg))
235 return true;
236 MultiArg = true;
237 --NumAdditionalVals;
238 }
239 return false;
240 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000241}
242
Misha Brukmanf976c852005-04-21 22:55:34 +0000243static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000244 int i) {
245 int Dummy = i;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000246 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000247}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000248
Chris Lattner331de232002-07-22 02:07:59 +0000249
250// Option predicates...
251static inline bool isGrouping(const Option *O) {
252 return O->getFormattingFlag() == cl::Grouping;
253}
254static inline bool isPrefixedOrGrouping(const Option *O) {
255 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
256}
257
258// getOptionPred - Check to see if there are any options that satisfy the
259// specified predicate with names that are the prefixes in Name. This is
260// checked by progressively stripping characters off of the name, checking to
261// see if there options that satisfy the predicate. If we find one, return it,
262// otherwise return null.
263//
Evan Cheng34cd4a42008-05-05 18:30:58 +0000264static Option *getOptionPred(std::string Name, size_t &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000265 bool (*Pred)(const Option*),
266 std::map<std::string, Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000267
Chris Lattner9878d6a2007-04-06 21:06:55 +0000268 std::map<std::string, Option*>::iterator OMI = OptionsMap.find(Name);
269 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000270 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000271 return OMI->second;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000272 }
273
Chris Lattner331de232002-07-22 02:07:59 +0000274 if (Name.size() == 1) return 0;
275 do {
276 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000277 OMI = OptionsMap.find(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000278
279 // Loop while we haven't found an option and Name still has at least two
280 // characters in it (so that the next iteration will not be the empty
281 // string...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000282 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000283
Chris Lattner9878d6a2007-04-06 21:06:55 +0000284 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000285 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000286 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000287 }
288 return 0; // No option found!
289}
290
291static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000292 return O->getNumOccurrencesFlag() == cl::Required ||
293 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000294}
295
296static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000297 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
298 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000299}
Chris Lattnercaccd762001-10-27 05:54:17 +0000300
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000301/// ParseCStringVector - Break INPUT up wherever one or more
302/// whitespace characters are found, and store the resulting tokens in
303/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
304/// using strdup (), so it is the caller's responsibility to free ()
305/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000306///
Chris Lattner23288582006-08-27 22:10:29 +0000307static void ParseCStringVector(std::vector<char *> &output,
308 const char *input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000309 // Characters which will be treated as token separators:
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000310 static const char *const delims = " \v\f\t\r\n";
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000311
312 std::string work (input);
313 // Skip past any delims at head of input string.
314 size_t pos = work.find_first_not_of (delims);
315 // If the string consists entirely of delims, then exit early.
316 if (pos == std::string::npos) return;
317 // Otherwise, jump forward to beginning of first word.
318 work = work.substr (pos);
319 // Find position of first delimiter.
320 pos = work.find_first_of (delims);
321
322 while (!work.empty() && pos != std::string::npos) {
323 // Everything from 0 to POS is the next word to copy.
324 output.push_back (strdup (work.substr (0,pos).c_str ()));
325 // Is there another word in the string?
326 size_t nextpos = work.find_first_not_of (delims, pos + 1);
327 if (nextpos != std::string::npos) {
328 // Yes? Then remove delims from beginning ...
329 work = work.substr (work.find_first_not_of (delims, pos + 1));
330 // and find the end of the word.
331 pos = work.find_first_of (delims);
332 } else {
333 // No? (Remainder of string is delims.) End the loop.
334 work = "";
335 pos = std::string::npos;
336 }
337 }
338
339 // If `input' ended with non-delim char, then we'll get here with
340 // the last word of `input' in `work'; copy it now.
341 if (!work.empty ()) {
342 output.push_back (strdup (work.c_str ()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000343 }
344}
345
346/// ParseEnvironmentOptions - An alternative entry point to the
347/// CommandLine library, which allows you to read the program's name
348/// from the caller (as PROGNAME) and its command-line arguments from
349/// an environment variable (whose name is given in ENVVAR).
350///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000351void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000352 const char *Overview, bool ReadResponseFiles) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000353 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000354 assert(progName && "Program name not specified");
355 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000356
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000357 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000358 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000359 if (!envValue)
360 return;
361
Brian Gaeke06b06c52003-08-14 22:00:59 +0000362 // Get program's "name", which we wouldn't know without the caller
363 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000364 std::vector<char*> newArgv;
365 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000366
367 // Parse the value of the environment variable into a "command line"
368 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000369 ParseCStringVector(newArgv, envValue);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000370 int newArgc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000371 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000372
373 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000374 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
375 i != e; ++i)
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000376 free (*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000377}
378
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000379
380/// ExpandResponseFiles - Copy the contents of argv into newArgv,
381/// substituting the contents of the response files for the arguments
382/// of type @file.
383static void ExpandResponseFiles(int argc, char** argv,
384 std::vector<char*>& newArgv) {
385 for (int i = 1; i != argc; ++i) {
386 char* arg = argv[i];
387
388 if (arg[0] == '@') {
389
390 sys::PathWithStatus respFile(++arg);
391
392 // Check that the response file is not empty (mmap'ing empty
393 // files can be problematic).
394 const sys::FileStatus *FileStat = respFile.getFileStatus();
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000395 if (FileStat && FileStat->getSize() != 0) {
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000396
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000397 // Mmap the response file into memory.
398 OwningPtr<MemoryBuffer>
399 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000400
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000401 // If we could open the file, parse its contents, otherwise
402 // pass the @file option verbatim.
Mikhail Glushenkov6c55b1c2009-01-28 03:46:22 +0000403
404 // TODO: we should also support recursive loading of response files,
405 // since this is how gcc behaves. (From their man page: "The file may
406 // itself contain additional @file options; any such options will be
407 // processed recursively.")
408
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000409 if (respFilePtr != 0) {
410 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
411 continue;
412 }
413 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000414 }
Mikhail Glushenkov1421b7b2009-01-21 13:14:02 +0000415 newArgv.push_back(strdup(arg));
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000416 }
417}
418
Dan Gohman9a526322007-10-09 16:04:57 +0000419void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000420 const char *Overview, bool ReadResponseFiles) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000421 // Process all registered options.
422 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000423 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000424 std::map<std::string, Option*> Opts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000425 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000426
Chris Lattner9878d6a2007-04-06 21:06:55 +0000427 assert((!Opts.empty() || !PositionalOpts.empty()) &&
428 "No options specified!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000429
430 // Expand response files.
431 std::vector<char*> newArgv;
432 if (ReadResponseFiles) {
433 newArgv.push_back(strdup(argv[0]));
434 ExpandResponseFiles(argc, argv, newArgv);
435 argv = &newArgv[0];
Evan Cheng34cd4a42008-05-05 18:30:58 +0000436 argc = static_cast<int>(newArgv.size());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000437 }
438
Chris Lattnerefa3da52006-10-13 00:06:24 +0000439 // Copy the program name into ProgName, making sure not to overflow it.
440 std::string ProgName = sys::Path(argv[0]).getLast();
441 if (ProgName.size() > 79) ProgName.resize(79);
442 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000443
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000444 ProgramOverview = Overview;
445 bool ErrorParsing = false;
446
Chris Lattner331de232002-07-22 02:07:59 +0000447 // Check out the positional arguments to collect information about them.
448 unsigned NumPositionalRequired = 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000449
Chris Lattnerde013242005-08-08 17:25:38 +0000450 // Determine whether or not there are an unlimited number of positionals
451 bool HasUnlimitedPositionals = false;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000452
Chris Lattner331de232002-07-22 02:07:59 +0000453 Option *ConsumeAfterOpt = 0;
454 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000455 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000456 assert(PositionalOpts.size() > 1 &&
457 "Cannot specify cl::ConsumeAfter without a positional argument!");
458 ConsumeAfterOpt = PositionalOpts[0];
459 }
460
461 // Calculate how many positional values are _required_.
462 bool UnboundedFound = false;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000463 for (size_t i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
Chris Lattner331de232002-07-22 02:07:59 +0000464 i != e; ++i) {
465 Option *Opt = PositionalOpts[i];
466 if (RequiresValue(Opt))
467 ++NumPositionalRequired;
468 else if (ConsumeAfterOpt) {
469 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000470 // unless there is only one positional argument...
471 if (PositionalOpts.size() > 2)
472 ErrorParsing |=
Benjamin Kramere6864c12009-08-02 12:13:02 +0000473 Opt->error("error - this positional option will never be matched, "
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000474 "because it does not Require a value, and a "
475 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000476 } else if (UnboundedFound && !Opt->ArgStr[0]) {
477 // This option does not "require" a value... Make sure this option is
478 // not specified after an option that eats all extra arguments, or this
479 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000480 //
Benjamin Kramere6864c12009-08-02 12:13:02 +0000481 ErrorParsing |= Opt->error("error - option can never match, because "
Chris Lattner331de232002-07-22 02:07:59 +0000482 "another positional argument will match an "
483 "unbounded number of values, and this option"
484 " does not require a value!");
485 }
486 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
487 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000488 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000489 }
490
Reid Spencer1e13fd22004-08-13 19:47:30 +0000491 // PositionalVals - A vector of "positional" arguments we accumulate into
492 // the process at the end...
Chris Lattner331de232002-07-22 02:07:59 +0000493 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000494 std::vector<std::pair<std::string,unsigned> > PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000495
Chris Lattner9cf3d472003-07-30 17:34:02 +0000496 // If the program has named positional arguments, and the name has been run
497 // across, keep track of which positional argument was named. Otherwise put
498 // the positional args into the PositionalVals list...
499 Option *ActivePositionalArg = 0;
500
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000501 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000502 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000503 for (int i = 1; i < argc; ++i) {
504 Option *Handler = 0;
Chris Lattner6d5857e2005-05-10 23:20:17 +0000505 const char *Value = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000506 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000507
Chris Lattner69d6f132007-04-12 00:36:29 +0000508 // If the option list changed, this means that some command line
Chris Lattner159b0a432007-04-11 15:35:18 +0000509 // option has just been registered or deregistered. This can occur in
510 // response to things like -load, etc. If this happens, rescan the options.
Chris Lattner69d6f132007-04-12 00:36:29 +0000511 if (OptionListChanged) {
Chris Lattner159b0a432007-04-11 15:35:18 +0000512 PositionalOpts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000513 SinkOpts.clear();
Chris Lattner159b0a432007-04-11 15:35:18 +0000514 Opts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000515 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Chris Lattner69d6f132007-04-12 00:36:29 +0000516 OptionListChanged = false;
Chris Lattner159b0a432007-04-11 15:35:18 +0000517 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000518
Chris Lattner331de232002-07-22 02:07:59 +0000519 // Check to see if this is a positional argument. This argument is
520 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000521 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000522 //
523 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
524 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000525 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000526 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000527 continue; // We are done!
528 } else if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000529 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000530
531 // All of the positional arguments have been fulfulled, give the rest to
532 // the consume after option... if it's specified...
533 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000534 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000535 ConsumeAfterOpt != 0) {
536 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000537 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000538 break; // Handle outside of the argument processing loop...
539 }
540
541 // Delay processing positional arguments until the end...
542 continue;
543 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000544 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
545 !DashDashFound) {
546 DashDashFound = true; // This is the mythical "--"?
547 continue; // Don't try to process it as an argument itself.
548 } else if (ActivePositionalArg &&
549 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
550 // If there is a positional argument eating options, check to see if this
551 // option is another positional argument. If so, treat it as an argument,
552 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000553 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000554 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000555 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000556 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000557 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000558 }
559
Chris Lattnerbf455c22004-05-06 22:04:31 +0000560 } else { // We start with a '-', must be an argument...
561 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000562 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000563
Chris Lattnerbf455c22004-05-06 22:04:31 +0000564 // Check to see if this "option" is really a prefixed or grouped argument.
Reid Spencer5f8448f2004-11-24 06:13:42 +0000565 if (Handler == 0) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000566 std::string RealName(ArgName);
567 if (RealName.size() > 1) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000568 size_t Length = 0;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000569 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
570 Opts);
Misha Brukmanf976c852005-04-21 22:55:34 +0000571
Chris Lattner331de232002-07-22 02:07:59 +0000572 // If the option is a prefixed option, then the value is simply the
573 // rest of the name... so fall through to later processing, by
574 // setting up the argument name flags and value fields.
575 //
576 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000577 Value = ArgName+Length;
578 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
579 Opts.find(std::string(ArgName, Value))->second == PGOpt);
580 Handler = PGOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000581 } else if (PGOpt) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000582 // This must be a grouped option... handle them now.
Chris Lattner331de232002-07-22 02:07:59 +0000583 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000584
Chris Lattner331de232002-07-22 02:07:59 +0000585 do {
586 // Move current arg name out of RealName into RealArgName...
Chris Lattnerbf455c22004-05-06 22:04:31 +0000587 std::string RealArgName(RealName.begin(),
588 RealName.begin() + Length);
589 RealName.erase(RealName.begin(), RealName.begin() + Length);
Misha Brukmanf976c852005-04-21 22:55:34 +0000590
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000591 // Because ValueRequired is an invalid flag for grouped arguments,
592 // we don't need to pass argc/argv in...
593 //
Chris Lattner331de232002-07-22 02:07:59 +0000594 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
595 "Option can not be cl::Grouping AND cl::ValueRequired!");
596 int Dummy;
Chris Lattnerbf455c22004-05-06 22:04:31 +0000597 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
Chris Lattner6d5857e2005-05-10 23:20:17 +0000598 0, 0, 0, Dummy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000599
Chris Lattner331de232002-07-22 02:07:59 +0000600 // Get the next grouping option...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000601 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000602 } while (PGOpt && Length != RealName.size());
Misha Brukmanf976c852005-04-21 22:55:34 +0000603
Chris Lattnerbf455c22004-05-06 22:04:31 +0000604 Handler = PGOpt; // Ate all of the options.
Chris Lattner331de232002-07-22 02:07:59 +0000605 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000606 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000607 }
608 }
609
610 if (Handler == 0) {
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000611 if (SinkOpts.empty()) {
612 cerr << ProgramName << ": Unknown command line argument '"
613 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
614 ErrorParsing = true;
615 } else {
616 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
617 E = SinkOpts.end(); I != E ; ++I)
618 (*I)->addOccurrence(i, "", argv[i]);
619 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000620 continue;
621 }
622
Chris Lattner72fb8e52003-05-22 20:26:17 +0000623 // Check to see if this option accepts a comma separated list of values. If
624 // it does, we have to split up the value into multiple values...
Chris Lattner6d5857e2005-05-10 23:20:17 +0000625 if (Value && Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner72fb8e52003-05-22 20:26:17 +0000626 std::string Val(Value);
627 std::string::size_type Pos = Val.find(',');
628
629 while (Pos != std::string::npos) {
630 // Process the portion before the comma...
631 ErrorParsing |= ProvideOption(Handler, ArgName,
632 std::string(Val.begin(),
633 Val.begin()+Pos).c_str(),
634 argc, argv, i);
635 // Erase the portion before the comma, AND the comma...
636 Val.erase(Val.begin(), Val.begin()+Pos+1);
637 Value += Pos+1; // Increment the original value pointer as well...
638
639 // Check for another comma...
640 Pos = Val.find(',');
641 }
642 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000643
644 // If this is a named positional argument, just remember that it is the
645 // active one...
646 if (Handler->getFormattingFlag() == cl::Positional)
647 ActivePositionalArg = Handler;
Misha Brukmanf976c852005-04-21 22:55:34 +0000648 else
Chris Lattner9cf3d472003-07-30 17:34:02 +0000649 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000650 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000651
Chris Lattner331de232002-07-22 02:07:59 +0000652 // Check and handle positional arguments now...
653 if (NumPositionalRequired > PositionalVals.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000654 cerr << ProgramName
655 << ": Not enough positional command line arguments specified!\n"
656 << "Must specify at least " << NumPositionalRequired
657 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000658
Chris Lattner331de232002-07-22 02:07:59 +0000659 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000660 } else if (!HasUnlimitedPositionals
661 && PositionalVals.size() > PositionalOpts.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000662 cerr << ProgramName
663 << ": Too many positional arguments specified!\n"
664 << "Can specify at most " << PositionalOpts.size()
665 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000666 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000667
668 } else if (ConsumeAfterOpt == 0) {
669 // Positional args have already been handled if ConsumeAfter is specified...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000670 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size());
671 for (size_t i = 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner331de232002-07-22 02:07:59 +0000672 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000673 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000674 PositionalVals[ValNo].second);
675 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000676 --NumPositionalRequired; // We fulfilled our duty...
677 }
678
679 // If we _can_ give this option more arguments, do so now, as long as we
680 // do not give it values that others need. 'Done' controls whether the
681 // option even _WANTS_ any more.
682 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000683 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000684 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000685 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000686 case cl::Optional:
687 Done = true; // Optional arguments want _at most_ one value
688 // FALL THROUGH
689 case cl::ZeroOrMore: // Zero or more will take all they can get...
690 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000691 ProvidePositionalOption(PositionalOpts[i],
692 PositionalVals[ValNo].first,
693 PositionalVals[ValNo].second);
694 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000695 break;
696 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000697 llvm_unreachable("Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000698 "positional argument processing!");
699 }
700 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000701 }
Chris Lattner331de232002-07-22 02:07:59 +0000702 } else {
703 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
704 unsigned ValNo = 0;
Evan Cheng34cd4a42008-05-05 18:30:58 +0000705 for (size_t j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000706 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000707 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000708 PositionalVals[ValNo].first,
709 PositionalVals[ValNo].second);
710 ValNo++;
711 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000712
713 // Handle the case where there is just one positional option, and it's
714 // optional. In this case, we want to give JUST THE FIRST option to the
715 // positional option and keep the rest for the consume after. The above
716 // loop would have assigned no values to positional options in this case.
717 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000718 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000719 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000720 PositionalVals[ValNo].first,
721 PositionalVals[ValNo].second);
722 ValNo++;
723 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000724
Chris Lattner331de232002-07-22 02:07:59 +0000725 // Handle over all of the rest of the arguments to the
726 // cl::ConsumeAfter command line option...
727 for (; ValNo != PositionalVals.size(); ++ValNo)
728 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000729 PositionalVals[ValNo].first,
730 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000731 }
732
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000733 // Loop over args and make sure all required args are specified!
Misha Brukmanf976c852005-04-21 22:55:34 +0000734 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000735 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000736 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000737 case Required:
738 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000739 if (I->second->getNumOccurrences() == 0) {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000740 I->second->error("must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000741 ErrorParsing = true;
742 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000743 // Fall through
744 default:
745 break;
746 }
747 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000748
Chris Lattner331de232002-07-22 02:07:59 +0000749 // Free all of the memory allocated to the map. Command line options may only
750 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000751 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000752 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000753 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000754
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000755 // Free the memory allocated by ExpandResponseFiles.
756 if (ReadResponseFiles) {
757 // Free all the strdup()ed strings.
758 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
759 i != e; ++i)
760 free (*i);
761 }
762
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000763 // If we had an error processing our arguments, don't let the program execute
764 if (ErrorParsing) exit(1);
765}
766
767//===----------------------------------------------------------------------===//
768// Option Base class implementation
769//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000770
Chris Lattnerca6433f2003-05-22 20:06:43 +0000771bool Option::error(std::string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000772 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000773 if (ArgName[0] == 0)
Bill Wendlinge8156192006-12-07 01:30:32 +0000774 cerr << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000775 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000776 cerr << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000777
Bill Wendlinge8156192006-12-07 01:30:32 +0000778 cerr << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000779 return true;
780}
781
Chris Lattner6d5857e2005-05-10 23:20:17 +0000782bool Option::addOccurrence(unsigned pos, const char *ArgName,
Mikhail Glushenkov7059d472009-01-16 22:54:19 +0000783 const std::string &Value,
784 bool MultiArg) {
785 if (!MultiArg)
786 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000787
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000788 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000789 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000790 if (NumOccurrences > 1)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000791 return error("may only occur zero or one times!", ArgName);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000792 break;
793 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000794 if (NumOccurrences > 1)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000795 return error("must occur exactly one time!", ArgName);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000796 // Fall through
797 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000798 case ZeroOrMore:
799 case ConsumeAfter: break;
Benjamin Kramere6864c12009-08-02 12:13:02 +0000800 default: return error("bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000801 }
802
Reid Spencer1e13fd22004-08-13 19:47:30 +0000803 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000804}
805
Chris Lattner331de232002-07-22 02:07:59 +0000806
807// getValueStr - Get the value description string, using "DefaultMsg" if nothing
808// has been specified yet.
809//
810static const char *getValueStr(const Option &O, const char *DefaultMsg) {
811 if (O.ValueStr[0] == 0) return DefaultMsg;
812 return O.ValueStr;
813}
814
815//===----------------------------------------------------------------------===//
816// cl::alias class implementation
817//
818
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000819// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000820size_t alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000821 return std::strlen(ArgStr)+6;
822}
823
Chris Lattnera0de8432006-04-28 05:36:25 +0000824// Print out the option for the alias.
Evan Cheng34cd4a42008-05-05 18:30:58 +0000825void alias::printOptionInfo(size_t GlobalWidth) const {
826 size_t L = std::strlen(ArgStr);
Daniel Dunbar603bea32009-07-16 02:06:09 +0000827 cerr << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
828 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000829}
830
831
Chris Lattner331de232002-07-22 02:07:59 +0000832
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000833//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000834// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000835//
836
Chris Lattner9b14eb52002-08-07 18:36:37 +0000837// basic_parser implementation
838//
839
840// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000841size_t basic_parser_impl::getOptionWidth(const Option &O) const {
842 size_t Len = std::strlen(O.ArgStr);
Chris Lattner9b14eb52002-08-07 18:36:37 +0000843 if (const char *ValName = getValueName())
844 Len += std::strlen(getValueStr(O, ValName))+3;
845
846 return Len + 6;
847}
848
Misha Brukmanf976c852005-04-21 22:55:34 +0000849// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000850// to-be-maintained width is specified.
851//
852void basic_parser_impl::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000853 size_t GlobalWidth) const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000854 cout << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000855
856 if (const char *ValName = getValueName())
Bill Wendlinge8156192006-12-07 01:30:32 +0000857 cout << "=<" << getValueStr(O, ValName) << ">";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000858
Bill Wendlinge8156192006-12-07 01:30:32 +0000859 cout << std::string(GlobalWidth-getOptionWidth(O), ' ') << " - "
860 << O.HelpStr << "\n";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000861}
862
863
864
865
Chris Lattner331de232002-07-22 02:07:59 +0000866// parser<bool> implementation
867//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000868bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000869 const std::string &Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000870 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000871 Arg == "1") {
872 Value = true;
873 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
874 Value = false;
875 } else {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000876 return O.error("'" + Arg +
Chris Lattner331de232002-07-22 02:07:59 +0000877 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000878 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000879 return false;
880}
881
Dale Johannesen81da02b2007-05-22 17:14:46 +0000882// parser<boolOrDefault> implementation
883//
884bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
885 const std::string &Arg, boolOrDefault &Value) {
886 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
887 Arg == "1") {
888 Value = BOU_TRUE;
Mike Stumpd6f175b2009-01-30 08:19:46 +0000889 } else if (Arg == "false" || Arg == "FALSE"
890 || Arg == "False" || Arg == "0") {
Dale Johannesen81da02b2007-05-22 17:14:46 +0000891 Value = BOU_FALSE;
892 } else {
Benjamin Kramere6864c12009-08-02 12:13:02 +0000893 return O.error("'" + Arg +
Dale Johannesen81da02b2007-05-22 17:14:46 +0000894 "' is invalid value for boolean argument! Try 0 or 1");
895 }
896 return false;
897}
898
Chris Lattner331de232002-07-22 02:07:59 +0000899// parser<int> implementation
900//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000901bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000902 const std::string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000903 char *End;
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000904 Value = (int)strtol(Arg.c_str(), &End, 0);
Misha Brukmanf976c852005-04-21 22:55:34 +0000905 if (*End != 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000906 return O.error("'" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000907 return false;
908}
909
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000910// parser<unsigned> implementation
911//
912bool parser<unsigned>::parse(Option &O, const char *ArgName,
913 const std::string &Arg, unsigned &Value) {
914 char *End;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000915 errno = 0;
916 unsigned long V = strtoul(Arg.c_str(), &End, 0);
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000917 Value = (unsigned)V;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000918 if (((V == ULONG_MAX) && (errno == ERANGE))
919 || (*End != 0)
920 || (Value != V))
Benjamin Kramere6864c12009-08-02 12:13:02 +0000921 return O.error("'" + Arg + "' value invalid for uint argument!");
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000922 return false;
923}
924
Chris Lattner9b14eb52002-08-07 18:36:37 +0000925// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000926//
Chris Lattnerca6433f2003-05-22 20:06:43 +0000927static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000928 const char *ArgStart = Arg.c_str();
929 char *End;
930 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000931 if (*End != 0)
Benjamin Kramere6864c12009-08-02 12:13:02 +0000932 return O.error("'" + Arg + "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000933 return false;
934}
935
Chris Lattner9b14eb52002-08-07 18:36:37 +0000936bool parser<double>::parse(Option &O, const char *AN,
937 const std::string &Arg, double &Val) {
938 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000939}
940
Chris Lattner9b14eb52002-08-07 18:36:37 +0000941bool parser<float>::parse(Option &O, const char *AN,
942 const std::string &Arg, float &Val) {
943 double dVal;
944 if (parseDouble(O, Arg, dVal))
945 return true;
946 Val = (float)dVal;
947 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000948}
949
950
Chris Lattner331de232002-07-22 02:07:59 +0000951
952// generic_parser_base implementation
953//
954
Chris Lattneraa852bb2002-07-23 17:15:12 +0000955// findOption - Return the option number corresponding to the specified
956// argument string. If the option is not found, getNumOptions() is returned.
957//
958unsigned generic_parser_base::findOption(const char *Name) {
959 unsigned i = 0, e = getNumOptions();
Chris Lattnerca6433f2003-05-22 20:06:43 +0000960 std::string N(Name);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000961
962 while (i != e)
963 if (getOption(i) == N)
964 return i;
965 else
966 ++i;
967 return e;
968}
969
970
Chris Lattner331de232002-07-22 02:07:59 +0000971// Return the width of the option tag for printing...
Evan Cheng34cd4a42008-05-05 18:30:58 +0000972size_t generic_parser_base::getOptionWidth(const Option &O) const {
Chris Lattner331de232002-07-22 02:07:59 +0000973 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000974 size_t Size = std::strlen(O.ArgStr)+6;
Chris Lattner331de232002-07-22 02:07:59 +0000975 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000976 Size = std::max(Size, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000977 return Size;
978 } else {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000979 size_t BaseSize = 0;
Chris Lattner331de232002-07-22 02:07:59 +0000980 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
Evan Cheng34cd4a42008-05-05 18:30:58 +0000981 BaseSize = std::max(BaseSize, std::strlen(getOption(i))+8);
Chris Lattner331de232002-07-22 02:07:59 +0000982 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000983 }
984}
985
Misha Brukmanf976c852005-04-21 22:55:34 +0000986// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +0000987// to-be-maintained width is specified.
988//
989void generic_parser_base::printOptionInfo(const Option &O,
Evan Cheng34cd4a42008-05-05 18:30:58 +0000990 size_t GlobalWidth) const {
Chris Lattner331de232002-07-22 02:07:59 +0000991 if (O.hasArgStr()) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000992 size_t L = std::strlen(O.ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000993 cout << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
994 << " - " << O.HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000995
Chris Lattner331de232002-07-22 02:07:59 +0000996 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +0000997 size_t NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Bill Wendlinge8156192006-12-07 01:30:32 +0000998 cout << " =" << getOption(i) << std::string(NumSpaces, ' ')
Dan Gohmanb8cab922008-10-14 20:25:08 +0000999 << " - " << getDescription(i) << "\n";
Chris Lattner9c9be482002-01-31 00:42:56 +00001000 }
Chris Lattner331de232002-07-22 02:07:59 +00001001 } else {
1002 if (O.HelpStr[0])
Bill Wendlinge8156192006-12-07 01:30:32 +00001003 cout << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001004 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001005 size_t L = std::strlen(getOption(i));
Bill Wendlinge8156192006-12-07 01:30:32 +00001006 cout << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
1007 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +00001008 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001009 }
1010}
1011
1012
1013//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +00001014// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001015//
Reid Spencerad0846b2004-11-14 22:04:00 +00001016
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001017namespace {
1018
Chris Lattner331de232002-07-22 02:07:59 +00001019class HelpPrinter {
Evan Cheng34cd4a42008-05-05 18:30:58 +00001020 size_t MaxArgLen;
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001021 const Option *EmptyArg;
1022 const bool ShowHidden;
1023
Chris Lattner331de232002-07-22 02:07:59 +00001024 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Chris Lattnerca6433f2003-05-22 20:06:43 +00001025 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001026 return OptPair.second->getOptionHiddenFlag() >= Hidden;
1027 }
Chris Lattnerca6433f2003-05-22 20:06:43 +00001028 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +00001029 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
1030 }
1031
1032public:
Dan Gohman950a4c42008-03-25 22:06:05 +00001033 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Chris Lattner331de232002-07-22 02:07:59 +00001034 EmptyArg = 0;
1035 }
1036
1037 void operator=(bool Value) {
1038 if (Value == false) return;
1039
Chris Lattner9878d6a2007-04-06 21:06:55 +00001040 // Get all the options.
1041 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001042 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001043 std::map<std::string, Option*> OptMap;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001044 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001045
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001046 // Copy Options into a vector so we can sort them as we like...
Chris Lattner90aa8392006-10-04 21:52:35 +00001047 std::vector<std::pair<std::string, Option*> > Opts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001048 copy(OptMap.begin(), OptMap.end(), std::back_inserter(Opts));
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001049
1050 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner90aa8392006-10-04 21:52:35 +00001051 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1052 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1053 Opts.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001054
1055 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +00001056 { // Give OptionSet a scope
1057 std::set<Option*> OptionSet;
Chris Lattner90aa8392006-10-04 21:52:35 +00001058 for (unsigned i = 0; i != Opts.size(); ++i)
1059 if (OptionSet.count(Opts[i].second) == 0)
1060 OptionSet.insert(Opts[i].second); // Add new entry to set
Chris Lattner331de232002-07-22 02:07:59 +00001061 else
Chris Lattner90aa8392006-10-04 21:52:35 +00001062 Opts.erase(Opts.begin()+i--); // Erase duplicate
Chris Lattner331de232002-07-22 02:07:59 +00001063 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001064
1065 if (ProgramOverview)
Dan Gohman82a13c92007-10-08 15:45:12 +00001066 cout << "OVERVIEW: " << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001067
Bill Wendlinge8156192006-12-07 01:30:32 +00001068 cout << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +00001069
Chris Lattner90aa8392006-10-04 21:52:35 +00001070 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +00001071 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001072 if (!PositionalOpts.empty() &&
Chris Lattner9878d6a2007-04-06 21:06:55 +00001073 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1074 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +00001075
Evan Cheng34cd4a42008-05-05 18:30:58 +00001076 for (size_t i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
Chris Lattner9878d6a2007-04-06 21:06:55 +00001077 if (PositionalOpts[i]->ArgStr[0])
1078 cout << " --" << PositionalOpts[i]->ArgStr;
1079 cout << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +00001080 }
Chris Lattner331de232002-07-22 02:07:59 +00001081
1082 // Print the consume after option info if it exists...
Bill Wendlinge8156192006-12-07 01:30:32 +00001083 if (CAOpt) cout << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +00001084
Bill Wendlinge8156192006-12-07 01:30:32 +00001085 cout << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001086
1087 // Compute the maximum argument length...
1088 MaxArgLen = 0;
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 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001091
Bill Wendlinge8156192006-12-07 01:30:32 +00001092 cout << "OPTIONS:\n";
Evan Cheng34cd4a42008-05-05 18:30:58 +00001093 for (size_t i = 0, e = Opts.size(); i != e; ++i)
Chris Lattner90aa8392006-10-04 21:52:35 +00001094 Opts[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001095
Chris Lattnerc540ebb2004-11-19 17:08:15 +00001096 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +00001097 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1098 E = MoreHelp->end(); I != E; ++I)
Bill Wendlinge8156192006-12-07 01:30:32 +00001099 cout << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +00001100 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +00001101
Reid Spencer9bbba0912004-11-16 06:11:52 +00001102 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +00001103 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001104 }
1105};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001106} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001107
Chris Lattner331de232002-07-22 02:07:59 +00001108// Define the two HelpPrinter instances that are used to print out help, or
1109// help-hidden...
1110//
Chris Lattner500d8bf2006-10-12 22:09:17 +00001111static HelpPrinter NormalPrinter(false);
1112static HelpPrinter HiddenPrinter(true);
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 +00001115HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001116 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +00001117
Chris Lattner500d8bf2006-10-12 22:09:17 +00001118static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001119HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001120 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001121
Chris Lattner500d8bf2006-10-12 22:09:17 +00001122static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +00001123
Chris Lattner500d8bf2006-10-12 22:09:17 +00001124namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +00001125class VersionPrinter {
1126public:
Devang Patelaed293d2007-02-01 01:43:37 +00001127 void print() {
Bill Wendlinge8156192006-12-07 01:30:32 +00001128 cout << "Low Level Virtual Machine (http://llvm.org/):\n";
1129 cout << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001130#ifdef LLVM_VERSION_INFO
Bill Wendlinge8156192006-12-07 01:30:32 +00001131 cout << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +00001132#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001133 cout << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001134#ifndef __OPTIMIZE__
Bill Wendlinge8156192006-12-07 01:30:32 +00001135 cout << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001136#else
Bill Wendlinge8156192006-12-07 01:30:32 +00001137 cout << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001138#endif
1139#ifndef NDEBUG
Bill Wendlinge8156192006-12-07 01:30:32 +00001140 cout << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001141#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001142 cout << ".\n";
Steve Naroff1f33f8e2008-12-23 18:41:47 +00001143 cout << " Built " << __DATE__ << "(" << __TIME__ << ").\n";
Daniel Dunbar603bea32009-07-16 02:06:09 +00001144 cout << "\n";
1145 cout << " Registered Targets:\n";
1146
Daniel Dunbar77454a22009-07-26 05:09:50 +00001147 std::vector<std::pair<std::string, const Target*> > Targets;
Daniel Dunbar603bea32009-07-16 02:06:09 +00001148 size_t Width = 0;
1149 for (TargetRegistry::iterator it = TargetRegistry::begin(),
Daniel Dunbar77454a22009-07-26 05:09:50 +00001150 ie = TargetRegistry::end(); it != ie; ++it) {
1151 Targets.push_back(std::make_pair(it->getName(), &*it));
Daniel Dunbar603bea32009-07-16 02:06:09 +00001152 Width = std::max(Width, ::strlen(it->getName()));
Daniel Dunbar603bea32009-07-16 02:06:09 +00001153 }
Daniel Dunbar77454a22009-07-26 05:09:50 +00001154 std::sort(Targets.begin(), Targets.end());
1155
1156 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
1157 const Target *T = Targets[i].second;
1158 cout << " " << T->getName()
1159 << std::string(Width - ::strlen(T->getName()), ' ') << " - "
1160 << T->getShortDescription() << "\n";
1161 }
1162 if (Targets.empty())
Daniel Dunbar603bea32009-07-16 02:06:09 +00001163 cout << " (none)\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001164 }
1165 void operator=(bool OptionWasSpecified) {
1166 if (OptionWasSpecified) {
1167 if (OverrideVersionPrinter == 0) {
1168 print();
Reid Spencer515b5b32006-06-05 16:22:56 +00001169 exit(1);
1170 } else {
1171 (*OverrideVersionPrinter)();
1172 exit(1);
1173 }
1174 }
1175 }
1176};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001177} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001178
1179
Reid Spencer69105f32004-08-04 00:36:06 +00001180// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001181static VersionPrinter VersionPrinterInstance;
1182
1183static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001184VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001185 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1186
Reid Spencer9bbba0912004-11-16 06:11:52 +00001187// Utility function for printing the help message.
1188void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001189 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001190 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1191 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001192 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001193 // --help option was given or not. Since we're circumventing that we have
1194 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001195 NormalPrinter = true;
1196}
Reid Spencer515b5b32006-06-05 16:22:56 +00001197
Devang Patelaed293d2007-02-01 01:43:37 +00001198/// Utility function for printing version number.
1199void cl::PrintVersionMessage() {
1200 VersionPrinterInstance.print();
1201}
1202
Reid Spencer515b5b32006-06-05 16:22:56 +00001203void cl::SetVersionPrinter(void (*func)()) {
1204 OverrideVersionPrinter = func;
1205}