blob: f4594610dffcf801baafb2486106a77ad30027d8 [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.
118 for (unsigned i = 0, e = OptionNames.size(); i != e; ++i) {
119 // 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 '"
123 << OptionNames[0] << "' defined more than once!\n";
124 }
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) {
175 // Enforce value requirements
176 switch (Handler->getValueExpectedFlag()) {
177 case ValueRequired:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000178 if (Value == 0) { // No value specified?
Chris Lattnercaccd762001-10-27 05:54:17 +0000179 if (i+1 < argc) { // Steal the next argument, like for '-o filename'
180 Value = argv[++i];
181 } else {
182 return Handler->error(" requires a value!");
183 }
184 }
185 break;
186 case ValueDisallowed:
Chris Lattner6d5857e2005-05-10 23:20:17 +0000187 if (Value)
Misha Brukmanf976c852005-04-21 22:55:34 +0000188 return Handler->error(" does not allow a value! '" +
Chris Lattnerca6433f2003-05-22 20:06:43 +0000189 std::string(Value) + "' specified.");
Chris Lattnercaccd762001-10-27 05:54:17 +0000190 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000191 case ValueOptional:
Reid Spencere1cc1502004-09-01 04:41:28 +0000192 break;
Misha Brukmanf976c852005-04-21 22:55:34 +0000193 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000194 cerr << ProgramName
195 << ": Bad ValueMask flag! CommandLine usage error:"
196 << Handler->getValueExpectedFlag() << "\n";
Reid Spencere1cc1502004-09-01 04:41:28 +0000197 abort();
198 break;
Chris Lattnercaccd762001-10-27 05:54:17 +0000199 }
200
201 // Run the handler now!
Chris Lattner6d5857e2005-05-10 23:20:17 +0000202 return Handler->addOccurrence(i, ArgName, Value ? Value : "");
Chris Lattnercaccd762001-10-27 05:54:17 +0000203}
204
Misha Brukmanf976c852005-04-21 22:55:34 +0000205static bool ProvidePositionalOption(Option *Handler, const std::string &Arg,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000206 int i) {
207 int Dummy = i;
Chris Lattner9cf3d472003-07-30 17:34:02 +0000208 return ProvideOption(Handler, Handler->ArgStr, Arg.c_str(), 0, 0, Dummy);
Chris Lattner331de232002-07-22 02:07:59 +0000209}
Chris Lattnerf78032f2001-11-26 18:58:34 +0000210
Chris Lattner331de232002-07-22 02:07:59 +0000211
212// Option predicates...
213static inline bool isGrouping(const Option *O) {
214 return O->getFormattingFlag() == cl::Grouping;
215}
216static inline bool isPrefixedOrGrouping(const Option *O) {
217 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
218}
219
220// getOptionPred - Check to see if there are any options that satisfy the
221// specified predicate with names that are the prefixes in Name. This is
222// checked by progressively stripping characters off of the name, checking to
223// see if there options that satisfy the predicate. If we find one, return it,
224// otherwise return null.
225//
226static Option *getOptionPred(std::string Name, unsigned &Length,
Chris Lattner9878d6a2007-04-06 21:06:55 +0000227 bool (*Pred)(const Option*),
228 std::map<std::string, Option*> &OptionsMap) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000229
Chris Lattner9878d6a2007-04-06 21:06:55 +0000230 std::map<std::string, Option*>::iterator OMI = OptionsMap.find(Name);
231 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000232 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000233 return OMI->second;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000234 }
235
Chris Lattner331de232002-07-22 02:07:59 +0000236 if (Name.size() == 1) return 0;
237 do {
238 Name.erase(Name.end()-1, Name.end()); // Chop off the last character...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000239 OMI = OptionsMap.find(Name);
Chris Lattner331de232002-07-22 02:07:59 +0000240
241 // Loop while we haven't found an option and Name still has at least two
242 // characters in it (so that the next iteration will not be the empty
243 // string...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000244 } while ((OMI == OptionsMap.end() || !Pred(OMI->second)) && Name.size() > 1);
Chris Lattner331de232002-07-22 02:07:59 +0000245
Chris Lattner9878d6a2007-04-06 21:06:55 +0000246 if (OMI != OptionsMap.end() && Pred(OMI->second)) {
Chris Lattner331de232002-07-22 02:07:59 +0000247 Length = Name.length();
Chris Lattner9878d6a2007-04-06 21:06:55 +0000248 return OMI->second; // Found one!
Chris Lattner331de232002-07-22 02:07:59 +0000249 }
250 return 0; // No option found!
251}
252
253static bool RequiresValue(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000254 return O->getNumOccurrencesFlag() == cl::Required ||
255 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattner331de232002-07-22 02:07:59 +0000256}
257
258static bool EatsUnboundedNumberOfValues(const Option *O) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000259 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
260 O->getNumOccurrencesFlag() == cl::OneOrMore;
Chris Lattnerf78032f2001-11-26 18:58:34 +0000261}
Chris Lattnercaccd762001-10-27 05:54:17 +0000262
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000263/// ParseCStringVector - Break INPUT up wherever one or more
264/// whitespace characters are found, and store the resulting tokens in
265/// OUTPUT. The tokens stored in OUTPUT are dynamically allocated
266/// using strdup (), so it is the caller's responsibility to free ()
267/// them later.
Brian Gaeke06b06c52003-08-14 22:00:59 +0000268///
Chris Lattner23288582006-08-27 22:10:29 +0000269static void ParseCStringVector(std::vector<char *> &output,
270 const char *input) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000271 // Characters which will be treated as token separators:
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000272 static const char *const delims = " \v\f\t\r\n";
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000273
274 std::string work (input);
275 // Skip past any delims at head of input string.
276 size_t pos = work.find_first_not_of (delims);
277 // If the string consists entirely of delims, then exit early.
278 if (pos == std::string::npos) return;
279 // Otherwise, jump forward to beginning of first word.
280 work = work.substr (pos);
281 // Find position of first delimiter.
282 pos = work.find_first_of (delims);
283
284 while (!work.empty() && pos != std::string::npos) {
285 // Everything from 0 to POS is the next word to copy.
286 output.push_back (strdup (work.substr (0,pos).c_str ()));
287 // Is there another word in the string?
288 size_t nextpos = work.find_first_not_of (delims, pos + 1);
289 if (nextpos != std::string::npos) {
290 // Yes? Then remove delims from beginning ...
291 work = work.substr (work.find_first_not_of (delims, pos + 1));
292 // and find the end of the word.
293 pos = work.find_first_of (delims);
294 } else {
295 // No? (Remainder of string is delims.) End the loop.
296 work = "";
297 pos = std::string::npos;
298 }
299 }
300
301 // If `input' ended with non-delim char, then we'll get here with
302 // the last word of `input' in `work'; copy it now.
303 if (!work.empty ()) {
304 output.push_back (strdup (work.c_str ()));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000305 }
306}
307
308/// ParseEnvironmentOptions - An alternative entry point to the
309/// CommandLine library, which allows you to read the program's name
310/// from the caller (as PROGNAME) and its command-line arguments from
311/// an environment variable (whose name is given in ENVVAR).
312///
Chris Lattnerbf455c22004-05-06 22:04:31 +0000313void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000314 const char *Overview, bool ReadResponseFiles) {
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000315 // Check args.
Chris Lattnerbf455c22004-05-06 22:04:31 +0000316 assert(progName && "Program name not specified");
317 assert(envVar && "Environment variable name missing");
Misha Brukmanf976c852005-04-21 22:55:34 +0000318
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000319 // Get the environment variable they want us to parse options out of.
Chris Lattner23288582006-08-27 22:10:29 +0000320 const char *envValue = getenv(envVar);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000321 if (!envValue)
322 return;
323
Brian Gaeke06b06c52003-08-14 22:00:59 +0000324 // Get program's "name", which we wouldn't know without the caller
325 // telling us.
Chris Lattner23288582006-08-27 22:10:29 +0000326 std::vector<char*> newArgv;
327 newArgv.push_back(strdup(progName));
Brian Gaeke06b06c52003-08-14 22:00:59 +0000328
329 // Parse the value of the environment variable into a "command line"
330 // and hand it off to ParseCommandLineOptions().
Chris Lattner23288582006-08-27 22:10:29 +0000331 ParseCStringVector(newArgv, envValue);
332 int newArgc = newArgv.size();
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000333 ParseCommandLineOptions(newArgc, &newArgv[0], Overview, ReadResponseFiles);
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000334
335 // Free all the strdup()ed strings.
Chris Lattner23288582006-08-27 22:10:29 +0000336 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
337 i != e; ++i)
Brian Gaekec48ef2a2003-08-15 21:05:57 +0000338 free (*i);
Brian Gaeke06b06c52003-08-14 22:00:59 +0000339}
340
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000341
342/// ExpandResponseFiles - Copy the contents of argv into newArgv,
343/// substituting the contents of the response files for the arguments
344/// of type @file.
345static void ExpandResponseFiles(int argc, char** argv,
346 std::vector<char*>& newArgv) {
347 for (int i = 1; i != argc; ++i) {
348 char* arg = argv[i];
349
350 if (arg[0] == '@') {
351
352 sys::PathWithStatus respFile(++arg);
353
354 // Check that the response file is not empty (mmap'ing empty
355 // files can be problematic).
356 const sys::FileStatus *FileStat = respFile.getFileStatus();
357 if (!FileStat)
358 continue;
359 if (FileStat->getSize() == 0)
360 continue;
361
362 // Mmap the response file into memory.
363 OwningPtr<MemoryBuffer>
364 respFilePtr(MemoryBuffer::getFile(respFile.c_str()));
365
366 if (respFilePtr == 0)
367 continue;
368
369 ParseCStringVector(newArgv, respFilePtr->getBufferStart());
370 }
371 else {
372 newArgv.push_back(strdup(arg));
373 }
374 }
375}
376
Dan Gohman9a526322007-10-09 16:04:57 +0000377void cl::ParseCommandLineOptions(int argc, char **argv,
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000378 const char *Overview, bool ReadResponseFiles) {
Chris Lattner9878d6a2007-04-06 21:06:55 +0000379 // Process all registered options.
380 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000381 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000382 std::map<std::string, Option*> Opts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000383 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000384
Chris Lattner9878d6a2007-04-06 21:06:55 +0000385 assert((!Opts.empty() || !PositionalOpts.empty()) &&
386 "No options specified!");
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000387
388 // Expand response files.
389 std::vector<char*> newArgv;
390 if (ReadResponseFiles) {
391 newArgv.push_back(strdup(argv[0]));
392 ExpandResponseFiles(argc, argv, newArgv);
393 argv = &newArgv[0];
394 argc = newArgv.size();
395 }
396
Reid Spencer6f4c6072006-08-23 07:10:06 +0000397 sys::Path progname(argv[0]);
Chris Lattnerefa3da52006-10-13 00:06:24 +0000398
399 // Copy the program name into ProgName, making sure not to overflow it.
400 std::string ProgName = sys::Path(argv[0]).getLast();
401 if (ProgName.size() > 79) ProgName.resize(79);
402 strcpy(ProgramName, ProgName.c_str());
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000403
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000404 ProgramOverview = Overview;
405 bool ErrorParsing = false;
406
Chris Lattner331de232002-07-22 02:07:59 +0000407 // Check out the positional arguments to collect information about them.
408 unsigned NumPositionalRequired = 0;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000409
Chris Lattnerde013242005-08-08 17:25:38 +0000410 // Determine whether or not there are an unlimited number of positionals
411 bool HasUnlimitedPositionals = false;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000412
Chris Lattner331de232002-07-22 02:07:59 +0000413 Option *ConsumeAfterOpt = 0;
414 if (!PositionalOpts.empty()) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000415 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
Chris Lattner331de232002-07-22 02:07:59 +0000416 assert(PositionalOpts.size() > 1 &&
417 "Cannot specify cl::ConsumeAfter without a positional argument!");
418 ConsumeAfterOpt = PositionalOpts[0];
419 }
420
421 // Calculate how many positional values are _required_.
422 bool UnboundedFound = false;
423 for (unsigned i = ConsumeAfterOpt != 0, e = PositionalOpts.size();
424 i != e; ++i) {
425 Option *Opt = PositionalOpts[i];
426 if (RequiresValue(Opt))
427 ++NumPositionalRequired;
428 else if (ConsumeAfterOpt) {
429 // ConsumeAfter cannot be combined with "optional" positional options
Chris Lattner54ec7ae2002-07-22 02:21:57 +0000430 // unless there is only one positional argument...
431 if (PositionalOpts.size() > 2)
432 ErrorParsing |=
433 Opt->error(" error - this positional option will never be matched, "
434 "because it does not Require a value, and a "
435 "cl::ConsumeAfter option is active!");
Chris Lattner9cf3d472003-07-30 17:34:02 +0000436 } else if (UnboundedFound && !Opt->ArgStr[0]) {
437 // This option does not "require" a value... Make sure this option is
438 // not specified after an option that eats all extra arguments, or this
439 // one will never get any!
Chris Lattner331de232002-07-22 02:07:59 +0000440 //
441 ErrorParsing |= Opt->error(" error - option can never match, because "
442 "another positional argument will match an "
443 "unbounded number of values, and this option"
444 " does not require a value!");
445 }
446 UnboundedFound |= EatsUnboundedNumberOfValues(Opt);
447 }
Chris Lattner21e1a792005-08-08 21:57:27 +0000448 HasUnlimitedPositionals = UnboundedFound || ConsumeAfterOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000449 }
450
Reid Spencer1e13fd22004-08-13 19:47:30 +0000451 // PositionalVals - A vector of "positional" arguments we accumulate into
452 // the process at the end...
Chris Lattner331de232002-07-22 02:07:59 +0000453 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000454 std::vector<std::pair<std::string,unsigned> > PositionalVals;
Chris Lattner331de232002-07-22 02:07:59 +0000455
Chris Lattner9cf3d472003-07-30 17:34:02 +0000456 // If the program has named positional arguments, and the name has been run
457 // across, keep track of which positional argument was named. Otherwise put
458 // the positional args into the PositionalVals list...
459 Option *ActivePositionalArg = 0;
460
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000461 // Loop over all of the arguments... processing them.
Chris Lattner331de232002-07-22 02:07:59 +0000462 bool DashDashFound = false; // Have we read '--'?
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000463 for (int i = 1; i < argc; ++i) {
464 Option *Handler = 0;
Chris Lattner6d5857e2005-05-10 23:20:17 +0000465 const char *Value = 0;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000466 const char *ArgName = "";
Chris Lattner331de232002-07-22 02:07:59 +0000467
Chris Lattner69d6f132007-04-12 00:36:29 +0000468 // If the option list changed, this means that some command line
Chris Lattner159b0a432007-04-11 15:35:18 +0000469 // option has just been registered or deregistered. This can occur in
470 // response to things like -load, etc. If this happens, rescan the options.
Chris Lattner69d6f132007-04-12 00:36:29 +0000471 if (OptionListChanged) {
Chris Lattner159b0a432007-04-11 15:35:18 +0000472 PositionalOpts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000473 SinkOpts.clear();
Chris Lattner159b0a432007-04-11 15:35:18 +0000474 Opts.clear();
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000475 GetOptionInfo(PositionalOpts, SinkOpts, Opts);
Chris Lattner69d6f132007-04-12 00:36:29 +0000476 OptionListChanged = false;
Chris Lattner159b0a432007-04-11 15:35:18 +0000477 }
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000478
Chris Lattner331de232002-07-22 02:07:59 +0000479 // Check to see if this is a positional argument. This argument is
480 // considered to be positional if it doesn't start with '-', if it is "-"
Misha Brukman1115e042003-07-10 21:38:28 +0000481 // itself, or if we have seen "--" already.
Chris Lattner331de232002-07-22 02:07:59 +0000482 //
483 if (argv[i][0] != '-' || argv[i][1] == 0 || DashDashFound) {
484 // Positional argument!
Chris Lattner9cf3d472003-07-30 17:34:02 +0000485 if (ActivePositionalArg) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000486 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattner9cf3d472003-07-30 17:34:02 +0000487 continue; // We are done!
488 } else if (!PositionalOpts.empty()) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000489 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000490
491 // All of the positional arguments have been fulfulled, give the rest to
492 // the consume after option... if it's specified...
493 //
Misha Brukmanf976c852005-04-21 22:55:34 +0000494 if (PositionalVals.size() >= NumPositionalRequired &&
Chris Lattner331de232002-07-22 02:07:59 +0000495 ConsumeAfterOpt != 0) {
496 for (++i; i < argc; ++i)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000497 PositionalVals.push_back(std::make_pair(argv[i],i));
Chris Lattner331de232002-07-22 02:07:59 +0000498 break; // Handle outside of the argument processing loop...
499 }
500
501 // Delay processing positional arguments until the end...
502 continue;
503 }
Chris Lattnerbf455c22004-05-06 22:04:31 +0000504 } else if (argv[i][0] == '-' && argv[i][1] == '-' && argv[i][2] == 0 &&
505 !DashDashFound) {
506 DashDashFound = true; // This is the mythical "--"?
507 continue; // Don't try to process it as an argument itself.
508 } else if (ActivePositionalArg &&
509 (ActivePositionalArg->getMiscFlags() & PositionalEatsArgs)) {
510 // If there is a positional argument eating options, check to see if this
511 // option is another positional argument. If so, treat it as an argument,
512 // otherwise feed it to the eating positional.
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000513 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000514 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000515 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
Reid Spencer1e13fd22004-08-13 19:47:30 +0000516 ProvidePositionalOption(ActivePositionalArg, argv[i], i);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000517 continue; // We are done!
Chris Lattner331de232002-07-22 02:07:59 +0000518 }
519
Chris Lattnerbf455c22004-05-06 22:04:31 +0000520 } else { // We start with a '-', must be an argument...
521 ArgName = argv[i]+1;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000522 Handler = LookupOption(ArgName, Value, Opts);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000523
Chris Lattnerbf455c22004-05-06 22:04:31 +0000524 // Check to see if this "option" is really a prefixed or grouped argument.
Reid Spencer5f8448f2004-11-24 06:13:42 +0000525 if (Handler == 0) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000526 std::string RealName(ArgName);
527 if (RealName.size() > 1) {
Chris Lattner331de232002-07-22 02:07:59 +0000528 unsigned Length = 0;
Chris Lattner9878d6a2007-04-06 21:06:55 +0000529 Option *PGOpt = getOptionPred(RealName, Length, isPrefixedOrGrouping,
530 Opts);
Misha Brukmanf976c852005-04-21 22:55:34 +0000531
Chris Lattner331de232002-07-22 02:07:59 +0000532 // If the option is a prefixed option, then the value is simply the
533 // rest of the name... so fall through to later processing, by
534 // setting up the argument name flags and value fields.
535 //
536 if (PGOpt && PGOpt->getFormattingFlag() == cl::Prefix) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000537 Value = ArgName+Length;
538 assert(Opts.find(std::string(ArgName, Value)) != Opts.end() &&
539 Opts.find(std::string(ArgName, Value))->second == PGOpt);
540 Handler = PGOpt;
Chris Lattner331de232002-07-22 02:07:59 +0000541 } else if (PGOpt) {
Chris Lattnerbf455c22004-05-06 22:04:31 +0000542 // This must be a grouped option... handle them now.
Chris Lattner331de232002-07-22 02:07:59 +0000543 assert(isGrouping(PGOpt) && "Broken getOptionPred!");
Misha Brukmanf976c852005-04-21 22:55:34 +0000544
Chris Lattner331de232002-07-22 02:07:59 +0000545 do {
546 // Move current arg name out of RealName into RealArgName...
Chris Lattnerbf455c22004-05-06 22:04:31 +0000547 std::string RealArgName(RealName.begin(),
548 RealName.begin() + Length);
549 RealName.erase(RealName.begin(), RealName.begin() + Length);
Misha Brukmanf976c852005-04-21 22:55:34 +0000550
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000551 // Because ValueRequired is an invalid flag for grouped arguments,
552 // we don't need to pass argc/argv in...
553 //
Chris Lattner331de232002-07-22 02:07:59 +0000554 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
555 "Option can not be cl::Grouping AND cl::ValueRequired!");
556 int Dummy;
Chris Lattnerbf455c22004-05-06 22:04:31 +0000557 ErrorParsing |= ProvideOption(PGOpt, RealArgName.c_str(),
Chris Lattner6d5857e2005-05-10 23:20:17 +0000558 0, 0, 0, Dummy);
Misha Brukmanf976c852005-04-21 22:55:34 +0000559
Chris Lattner331de232002-07-22 02:07:59 +0000560 // Get the next grouping option...
Chris Lattner9878d6a2007-04-06 21:06:55 +0000561 PGOpt = getOptionPred(RealName, Length, isGrouping, Opts);
Chris Lattnerbf455c22004-05-06 22:04:31 +0000562 } while (PGOpt && Length != RealName.size());
Misha Brukmanf976c852005-04-21 22:55:34 +0000563
Chris Lattnerbf455c22004-05-06 22:04:31 +0000564 Handler = PGOpt; // Ate all of the options.
Chris Lattner331de232002-07-22 02:07:59 +0000565 }
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000566 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000567 }
568 }
569
570 if (Handler == 0) {
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000571 if (SinkOpts.empty()) {
572 cerr << ProgramName << ": Unknown command line argument '"
573 << argv[i] << "'. Try: '" << argv[0] << " --help'\n";
574 ErrorParsing = true;
575 } else {
576 for (std::vector<Option*>::iterator I = SinkOpts.begin(),
577 E = SinkOpts.end(); I != E ; ++I)
578 (*I)->addOccurrence(i, "", argv[i]);
579 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000580 continue;
581 }
582
Chris Lattner72fb8e52003-05-22 20:26:17 +0000583 // Check to see if this option accepts a comma separated list of values. If
584 // it does, we have to split up the value into multiple values...
Chris Lattner6d5857e2005-05-10 23:20:17 +0000585 if (Value && Handler->getMiscFlags() & CommaSeparated) {
Chris Lattner72fb8e52003-05-22 20:26:17 +0000586 std::string Val(Value);
587 std::string::size_type Pos = Val.find(',');
588
589 while (Pos != std::string::npos) {
590 // Process the portion before the comma...
591 ErrorParsing |= ProvideOption(Handler, ArgName,
592 std::string(Val.begin(),
593 Val.begin()+Pos).c_str(),
594 argc, argv, i);
595 // Erase the portion before the comma, AND the comma...
596 Val.erase(Val.begin(), Val.begin()+Pos+1);
597 Value += Pos+1; // Increment the original value pointer as well...
598
599 // Check for another comma...
600 Pos = Val.find(',');
601 }
602 }
Chris Lattner9cf3d472003-07-30 17:34:02 +0000603
604 // If this is a named positional argument, just remember that it is the
605 // active one...
606 if (Handler->getFormattingFlag() == cl::Positional)
607 ActivePositionalArg = Handler;
Misha Brukmanf976c852005-04-21 22:55:34 +0000608 else
Chris Lattner9cf3d472003-07-30 17:34:02 +0000609 ErrorParsing |= ProvideOption(Handler, ArgName, Value, argc, argv, i);
Chris Lattner331de232002-07-22 02:07:59 +0000610 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000611
Chris Lattner331de232002-07-22 02:07:59 +0000612 // Check and handle positional arguments now...
613 if (NumPositionalRequired > PositionalVals.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000614 cerr << ProgramName
615 << ": Not enough positional command line arguments specified!\n"
616 << "Must specify at least " << NumPositionalRequired
617 << " positional arguments: See: " << argv[0] << " --help\n";
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000618
Chris Lattner331de232002-07-22 02:07:59 +0000619 ErrorParsing = true;
Chris Lattnerde013242005-08-08 17:25:38 +0000620 } else if (!HasUnlimitedPositionals
621 && PositionalVals.size() > PositionalOpts.size()) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000622 cerr << ProgramName
623 << ": Too many positional arguments specified!\n"
624 << "Can specify at most " << PositionalOpts.size()
625 << " positional arguments: See: " << argv[0] << " --help\n";
Chris Lattnerde013242005-08-08 17:25:38 +0000626 ErrorParsing = true;
Chris Lattner331de232002-07-22 02:07:59 +0000627
628 } else if (ConsumeAfterOpt == 0) {
629 // Positional args have already been handled if ConsumeAfter is specified...
630 unsigned ValNo = 0, NumVals = PositionalVals.size();
631 for (unsigned i = 0, e = PositionalOpts.size(); i != e; ++i) {
632 if (RequiresValue(PositionalOpts[i])) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000633 ProvidePositionalOption(PositionalOpts[i], PositionalVals[ValNo].first,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000634 PositionalVals[ValNo].second);
635 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000636 --NumPositionalRequired; // We fulfilled our duty...
637 }
638
639 // If we _can_ give this option more arguments, do so now, as long as we
640 // do not give it values that others need. 'Done' controls whether the
641 // option even _WANTS_ any more.
642 //
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000643 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
Chris Lattner331de232002-07-22 02:07:59 +0000644 while (NumVals-ValNo > NumPositionalRequired && !Done) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000645 switch (PositionalOpts[i]->getNumOccurrencesFlag()) {
Chris Lattner331de232002-07-22 02:07:59 +0000646 case cl::Optional:
647 Done = true; // Optional arguments want _at most_ one value
648 // FALL THROUGH
649 case cl::ZeroOrMore: // Zero or more will take all they can get...
650 case cl::OneOrMore: // One or more will take all they can get...
Reid Spencer1e13fd22004-08-13 19:47:30 +0000651 ProvidePositionalOption(PositionalOpts[i],
652 PositionalVals[ValNo].first,
653 PositionalVals[ValNo].second);
654 ValNo++;
Chris Lattner331de232002-07-22 02:07:59 +0000655 break;
656 default:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000657 assert(0 && "Internal error, unexpected NumOccurrences flag in "
Chris Lattner331de232002-07-22 02:07:59 +0000658 "positional argument processing!");
659 }
660 }
Chris Lattnercaccd762001-10-27 05:54:17 +0000661 }
Chris Lattner331de232002-07-22 02:07:59 +0000662 } else {
663 assert(ConsumeAfterOpt && NumPositionalRequired <= PositionalVals.size());
664 unsigned ValNo = 0;
665 for (unsigned j = 1, e = PositionalOpts.size(); j != e; ++j)
Reid Spencer1e13fd22004-08-13 19:47:30 +0000666 if (RequiresValue(PositionalOpts[j])) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000667 ErrorParsing |= ProvidePositionalOption(PositionalOpts[j],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000668 PositionalVals[ValNo].first,
669 PositionalVals[ValNo].second);
670 ValNo++;
671 }
Chris Lattnerfaba8092002-07-24 20:15:13 +0000672
673 // Handle the case where there is just one positional option, and it's
674 // optional. In this case, we want to give JUST THE FIRST option to the
675 // positional option and keep the rest for the consume after. The above
676 // loop would have assigned no values to positional options in this case.
677 //
Reid Spencer1e13fd22004-08-13 19:47:30 +0000678 if (PositionalOpts.size() == 2 && ValNo == 0 && !PositionalVals.empty()) {
Chris Lattnerfaba8092002-07-24 20:15:13 +0000679 ErrorParsing |= ProvidePositionalOption(PositionalOpts[1],
Reid Spencer1e13fd22004-08-13 19:47:30 +0000680 PositionalVals[ValNo].first,
681 PositionalVals[ValNo].second);
682 ValNo++;
683 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000684
Chris Lattner331de232002-07-22 02:07:59 +0000685 // Handle over all of the rest of the arguments to the
686 // cl::ConsumeAfter command line option...
687 for (; ValNo != PositionalVals.size(); ++ValNo)
688 ErrorParsing |= ProvidePositionalOption(ConsumeAfterOpt,
Reid Spencer1e13fd22004-08-13 19:47:30 +0000689 PositionalVals[ValNo].first,
690 PositionalVals[ValNo].second);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000691 }
692
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000693 // Loop over args and make sure all required args are specified!
Misha Brukmanf976c852005-04-21 22:55:34 +0000694 for (std::map<std::string, Option*>::iterator I = Opts.begin(),
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000695 E = Opts.end(); I != E; ++I) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000696 switch (I->second->getNumOccurrencesFlag()) {
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000697 case Required:
698 case OneOrMore:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000699 if (I->second->getNumOccurrences() == 0) {
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000700 I->second->error(" must be specified at least once!");
Chris Lattnerf038acb2001-10-24 06:21:56 +0000701 ErrorParsing = true;
702 }
Chris Lattnerdc4693d2001-07-23 23:02:45 +0000703 // Fall through
704 default:
705 break;
706 }
707 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000708
Chris Lattner331de232002-07-22 02:07:59 +0000709 // Free all of the memory allocated to the map. Command line options may only
710 // be processed once!
Chris Lattner90aa8392006-10-04 21:52:35 +0000711 Opts.clear();
Chris Lattner331de232002-07-22 02:07:59 +0000712 PositionalOpts.clear();
Chris Lattner90aa8392006-10-04 21:52:35 +0000713 MoreHelp->clear();
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000714
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000715 // Free the memory allocated by ExpandResponseFiles.
716 if (ReadResponseFiles) {
717 // Free all the strdup()ed strings.
718 for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
719 i != e; ++i)
720 free (*i);
721 }
722
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000723 // If we had an error processing our arguments, don't let the program execute
724 if (ErrorParsing) exit(1);
725}
726
727//===----------------------------------------------------------------------===//
728// Option Base class implementation
729//
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000730
Chris Lattnerca6433f2003-05-22 20:06:43 +0000731bool Option::error(std::string Message, const char *ArgName) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000732 if (ArgName == 0) ArgName = ArgStr;
Chris Lattner331de232002-07-22 02:07:59 +0000733 if (ArgName[0] == 0)
Bill Wendlinge8156192006-12-07 01:30:32 +0000734 cerr << HelpStr; // Be nice for positional arguments
Chris Lattner331de232002-07-22 02:07:59 +0000735 else
Bill Wendlinge8156192006-12-07 01:30:32 +0000736 cerr << ProgramName << ": for the -" << ArgName;
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +0000737
Bill Wendlinge8156192006-12-07 01:30:32 +0000738 cerr << " option: " << Message << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000739 return true;
740}
741
Chris Lattner6d5857e2005-05-10 23:20:17 +0000742bool Option::addOccurrence(unsigned pos, const char *ArgName,
743 const std::string &Value) {
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000744 NumOccurrences++; // Increment the number of times we have been seen
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000745
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000746 switch (getNumOccurrencesFlag()) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000747 case Optional:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000748 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000749 return error(": may only occur zero or one times!", ArgName);
750 break;
751 case Required:
Misha Brukmandd6cb6a2003-07-10 16:49:51 +0000752 if (NumOccurrences > 1)
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000753 return error(": must occur exactly one time!", ArgName);
754 // Fall through
755 case OneOrMore:
Chris Lattnercaccd762001-10-27 05:54:17 +0000756 case ZeroOrMore:
757 case ConsumeAfter: break;
Misha Brukmanb5c520b2003-07-10 17:05:26 +0000758 default: return error(": bad num occurrences flag value!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000759 }
760
Reid Spencer1e13fd22004-08-13 19:47:30 +0000761 return handleOccurrence(pos, ArgName, Value);
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000762}
763
Chris Lattner331de232002-07-22 02:07:59 +0000764
765// getValueStr - Get the value description string, using "DefaultMsg" if nothing
766// has been specified yet.
767//
768static const char *getValueStr(const Option &O, const char *DefaultMsg) {
769 if (O.ValueStr[0] == 0) return DefaultMsg;
770 return O.ValueStr;
771}
772
773//===----------------------------------------------------------------------===//
774// cl::alias class implementation
775//
776
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000777// Return the width of the option tag for printing...
Chris Lattner331de232002-07-22 02:07:59 +0000778unsigned alias::getOptionWidth() const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000779 return std::strlen(ArgStr)+6;
780}
781
Chris Lattnera0de8432006-04-28 05:36:25 +0000782// Print out the option for the alias.
Chris Lattner331de232002-07-22 02:07:59 +0000783void alias::printOptionInfo(unsigned GlobalWidth) const {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000784 unsigned L = std::strlen(ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000785 cout << " -" << ArgStr << std::string(GlobalWidth-L-6, ' ') << " - "
786 << HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000787}
788
789
Chris Lattner331de232002-07-22 02:07:59 +0000790
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000791//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000792// Parser Implementation code...
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000793//
794
Chris Lattner9b14eb52002-08-07 18:36:37 +0000795// basic_parser implementation
796//
797
798// Return the width of the option tag for printing...
799unsigned basic_parser_impl::getOptionWidth(const Option &O) const {
800 unsigned Len = std::strlen(O.ArgStr);
801 if (const char *ValName = getValueName())
802 Len += std::strlen(getValueStr(O, ValName))+3;
803
804 return Len + 6;
805}
806
Misha Brukmanf976c852005-04-21 22:55:34 +0000807// printOptionInfo - Print out information about this option. The
Chris Lattner9b14eb52002-08-07 18:36:37 +0000808// to-be-maintained width is specified.
809//
810void basic_parser_impl::printOptionInfo(const Option &O,
811 unsigned GlobalWidth) const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000812 cout << " -" << O.ArgStr;
Chris Lattner9b14eb52002-08-07 18:36:37 +0000813
814 if (const char *ValName = getValueName())
Bill Wendlinge8156192006-12-07 01:30:32 +0000815 cout << "=<" << getValueStr(O, ValName) << ">";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000816
Bill Wendlinge8156192006-12-07 01:30:32 +0000817 cout << std::string(GlobalWidth-getOptionWidth(O), ' ') << " - "
818 << O.HelpStr << "\n";
Chris Lattner9b14eb52002-08-07 18:36:37 +0000819}
820
821
822
823
Chris Lattner331de232002-07-22 02:07:59 +0000824// parser<bool> implementation
825//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000826bool parser<bool>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000827 const std::string &Arg, bool &Value) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000828 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000829 Arg == "1") {
830 Value = true;
831 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
832 Value = false;
833 } else {
Chris Lattner331de232002-07-22 02:07:59 +0000834 return O.error(": '" + Arg +
835 "' is invalid value for boolean argument! Try 0 or 1");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000836 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000837 return false;
838}
839
Dale Johannesen81da02b2007-05-22 17:14:46 +0000840// parser<boolOrDefault> implementation
841//
842bool parser<boolOrDefault>::parse(Option &O, const char *ArgName,
843 const std::string &Arg, boolOrDefault &Value) {
844 if (Arg == "" || Arg == "true" || Arg == "TRUE" || Arg == "True" ||
845 Arg == "1") {
846 Value = BOU_TRUE;
847 } else if (Arg == "false" || Arg == "FALSE" || Arg == "False" || Arg == "0") {
848 Value = BOU_FALSE;
849 } else {
850 return O.error(": '" + Arg +
851 "' is invalid value for boolean argument! Try 0 or 1");
852 }
853 return false;
854}
855
Chris Lattner331de232002-07-22 02:07:59 +0000856// parser<int> implementation
857//
Chris Lattner9b14eb52002-08-07 18:36:37 +0000858bool parser<int>::parse(Option &O, const char *ArgName,
Chris Lattnerca6433f2003-05-22 20:06:43 +0000859 const std::string &Arg, int &Value) {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000860 char *End;
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000861 Value = (int)strtol(Arg.c_str(), &End, 0);
Misha Brukmanf976c852005-04-21 22:55:34 +0000862 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000863 return O.error(": '" + Arg + "' value invalid for integer argument!");
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000864 return false;
865}
866
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000867// parser<unsigned> implementation
868//
869bool parser<unsigned>::parse(Option &O, const char *ArgName,
870 const std::string &Arg, unsigned &Value) {
871 char *End;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000872 errno = 0;
873 unsigned long V = strtoul(Arg.c_str(), &End, 0);
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000874 Value = (unsigned)V;
Brian Gaeke2d6a2362003-10-10 17:01:36 +0000875 if (((V == ULONG_MAX) && (errno == ERANGE))
876 || (*End != 0)
877 || (Value != V))
Chris Lattnerd2a6fc32003-06-28 15:47:20 +0000878 return O.error(": '" + Arg + "' value invalid for uint argument!");
879 return false;
880}
881
Chris Lattner9b14eb52002-08-07 18:36:37 +0000882// parser<double>/parser<float> implementation
Chris Lattnerd215fd12001-10-13 06:53:19 +0000883//
Chris Lattnerca6433f2003-05-22 20:06:43 +0000884static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
Chris Lattner331de232002-07-22 02:07:59 +0000885 const char *ArgStart = Arg.c_str();
886 char *End;
887 Value = strtod(ArgStart, &End);
Misha Brukmanf976c852005-04-21 22:55:34 +0000888 if (*End != 0)
Chris Lattner331de232002-07-22 02:07:59 +0000889 return O.error(": '" +Arg+ "' value invalid for floating point argument!");
Chris Lattnerd215fd12001-10-13 06:53:19 +0000890 return false;
891}
892
Chris Lattner9b14eb52002-08-07 18:36:37 +0000893bool parser<double>::parse(Option &O, const char *AN,
894 const std::string &Arg, double &Val) {
895 return parseDouble(O, Arg, Val);
Chris Lattner331de232002-07-22 02:07:59 +0000896}
897
Chris Lattner9b14eb52002-08-07 18:36:37 +0000898bool parser<float>::parse(Option &O, const char *AN,
899 const std::string &Arg, float &Val) {
900 double dVal;
901 if (parseDouble(O, Arg, dVal))
902 return true;
903 Val = (float)dVal;
904 return false;
Chris Lattner331de232002-07-22 02:07:59 +0000905}
906
907
Chris Lattner331de232002-07-22 02:07:59 +0000908
909// generic_parser_base implementation
910//
911
Chris Lattneraa852bb2002-07-23 17:15:12 +0000912// findOption - Return the option number corresponding to the specified
913// argument string. If the option is not found, getNumOptions() is returned.
914//
915unsigned generic_parser_base::findOption(const char *Name) {
916 unsigned i = 0, e = getNumOptions();
Chris Lattnerca6433f2003-05-22 20:06:43 +0000917 std::string N(Name);
Chris Lattneraa852bb2002-07-23 17:15:12 +0000918
919 while (i != e)
920 if (getOption(i) == N)
921 return i;
922 else
923 ++i;
924 return e;
925}
926
927
Chris Lattner331de232002-07-22 02:07:59 +0000928// Return the width of the option tag for printing...
929unsigned generic_parser_base::getOptionWidth(const Option &O) const {
930 if (O.hasArgStr()) {
931 unsigned Size = std::strlen(O.ArgStr)+6;
932 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
933 Size = std::max(Size, (unsigned)std::strlen(getOption(i))+8);
934 return Size;
935 } else {
936 unsigned BaseSize = 0;
937 for (unsigned i = 0, e = getNumOptions(); i != e; ++i)
938 BaseSize = std::max(BaseSize, (unsigned)std::strlen(getOption(i))+8);
939 return BaseSize;
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000940 }
941}
942
Misha Brukmanf976c852005-04-21 22:55:34 +0000943// printOptionInfo - Print out information about this option. The
Chris Lattner331de232002-07-22 02:07:59 +0000944// to-be-maintained width is specified.
945//
946void generic_parser_base::printOptionInfo(const Option &O,
947 unsigned GlobalWidth) const {
948 if (O.hasArgStr()) {
949 unsigned L = std::strlen(O.ArgStr);
Bill Wendlinge8156192006-12-07 01:30:32 +0000950 cout << " -" << O.ArgStr << std::string(GlobalWidth-L-6, ' ')
951 << " - " << O.HelpStr << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000952
Chris Lattner331de232002-07-22 02:07:59 +0000953 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
954 unsigned NumSpaces = GlobalWidth-strlen(getOption(i))-8;
Bill Wendlinge8156192006-12-07 01:30:32 +0000955 cout << " =" << getOption(i) << std::string(NumSpaces, ' ')
956 << " - " << getDescription(i) << "\n";
Chris Lattner9c9be482002-01-31 00:42:56 +0000957 }
Chris Lattner331de232002-07-22 02:07:59 +0000958 } else {
959 if (O.HelpStr[0])
Bill Wendlinge8156192006-12-07 01:30:32 +0000960 cout << " " << O.HelpStr << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000961 for (unsigned i = 0, e = getNumOptions(); i != e; ++i) {
962 unsigned L = std::strlen(getOption(i));
Bill Wendlinge8156192006-12-07 01:30:32 +0000963 cout << " -" << getOption(i) << std::string(GlobalWidth-L-8, ' ')
964 << " - " << getDescription(i) << "\n";
Chris Lattner331de232002-07-22 02:07:59 +0000965 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000966 }
967}
968
969
970//===----------------------------------------------------------------------===//
Chris Lattner331de232002-07-22 02:07:59 +0000971// --help and --help-hidden option implementation
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000972//
Reid Spencerad0846b2004-11-14 22:04:00 +0000973
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000974namespace {
975
Chris Lattner331de232002-07-22 02:07:59 +0000976class HelpPrinter {
Chris Lattnerdbab15a2001-07-23 17:17:47 +0000977 unsigned MaxArgLen;
978 const Option *EmptyArg;
979 const bool ShowHidden;
980
Chris Lattner331de232002-07-22 02:07:59 +0000981 // isHidden/isReallyHidden - Predicates to be used to filter down arg lists.
Chris Lattnerca6433f2003-05-22 20:06:43 +0000982 inline static bool isHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +0000983 return OptPair.second->getOptionHiddenFlag() >= Hidden;
984 }
Chris Lattnerca6433f2003-05-22 20:06:43 +0000985 inline static bool isReallyHidden(std::pair<std::string, Option *> &OptPair) {
Chris Lattner331de232002-07-22 02:07:59 +0000986 return OptPair.second->getOptionHiddenFlag() == ReallyHidden;
987 }
988
989public:
Dan Gohman950a4c42008-03-25 22:06:05 +0000990 explicit HelpPrinter(bool showHidden) : ShowHidden(showHidden) {
Chris Lattner331de232002-07-22 02:07:59 +0000991 EmptyArg = 0;
992 }
993
994 void operator=(bool Value) {
995 if (Value == false) return;
996
Chris Lattner9878d6a2007-04-06 21:06:55 +0000997 // Get all the options.
998 std::vector<Option*> PositionalOpts;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +0000999 std::vector<Option*> SinkOpts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001000 std::map<std::string, Option*> OptMap;
Anton Korobeynikovd57160d2008-02-20 12:38:07 +00001001 GetOptionInfo(PositionalOpts, SinkOpts, OptMap);
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001002
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001003 // Copy Options into a vector so we can sort them as we like...
Chris Lattner90aa8392006-10-04 21:52:35 +00001004 std::vector<std::pair<std::string, Option*> > Opts;
Chris Lattner9878d6a2007-04-06 21:06:55 +00001005 copy(OptMap.begin(), OptMap.end(), std::back_inserter(Opts));
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001006
1007 // Eliminate Hidden or ReallyHidden arguments, depending on ShowHidden
Chris Lattner90aa8392006-10-04 21:52:35 +00001008 Opts.erase(std::remove_if(Opts.begin(), Opts.end(),
1009 std::ptr_fun(ShowHidden ? isReallyHidden : isHidden)),
1010 Opts.end());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001011
1012 // Eliminate duplicate entries in table (from enum flags options, f.e.)
Chris Lattner331de232002-07-22 02:07:59 +00001013 { // Give OptionSet a scope
1014 std::set<Option*> OptionSet;
Chris Lattner90aa8392006-10-04 21:52:35 +00001015 for (unsigned i = 0; i != Opts.size(); ++i)
1016 if (OptionSet.count(Opts[i].second) == 0)
1017 OptionSet.insert(Opts[i].second); // Add new entry to set
Chris Lattner331de232002-07-22 02:07:59 +00001018 else
Chris Lattner90aa8392006-10-04 21:52:35 +00001019 Opts.erase(Opts.begin()+i--); // Erase duplicate
Chris Lattner331de232002-07-22 02:07:59 +00001020 }
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001021
1022 if (ProgramOverview)
Dan Gohman82a13c92007-10-08 15:45:12 +00001023 cout << "OVERVIEW: " << ProgramOverview << "\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001024
Bill Wendlinge8156192006-12-07 01:30:32 +00001025 cout << "USAGE: " << ProgramName << " [options]";
Chris Lattner331de232002-07-22 02:07:59 +00001026
Chris Lattner90aa8392006-10-04 21:52:35 +00001027 // Print out the positional options.
Chris Lattner331de232002-07-22 02:07:59 +00001028 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
Mikhail Glushenkovbeb4d822008-04-28 16:44:25 +00001029 if (!PositionalOpts.empty() &&
Chris Lattner9878d6a2007-04-06 21:06:55 +00001030 PositionalOpts[0]->getNumOccurrencesFlag() == ConsumeAfter)
1031 CAOpt = PositionalOpts[0];
Chris Lattner331de232002-07-22 02:07:59 +00001032
Chris Lattner9878d6a2007-04-06 21:06:55 +00001033 for (unsigned i = CAOpt != 0, e = PositionalOpts.size(); i != e; ++i) {
1034 if (PositionalOpts[i]->ArgStr[0])
1035 cout << " --" << PositionalOpts[i]->ArgStr;
1036 cout << " " << PositionalOpts[i]->HelpStr;
Chris Lattner9cf3d472003-07-30 17:34:02 +00001037 }
Chris Lattner331de232002-07-22 02:07:59 +00001038
1039 // Print the consume after option info if it exists...
Bill Wendlinge8156192006-12-07 01:30:32 +00001040 if (CAOpt) cout << " " << CAOpt->HelpStr;
Chris Lattner331de232002-07-22 02:07:59 +00001041
Bill Wendlinge8156192006-12-07 01:30:32 +00001042 cout << "\n\n";
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001043
1044 // Compute the maximum argument length...
1045 MaxArgLen = 0;
Chris Lattner90aa8392006-10-04 21:52:35 +00001046 for (unsigned i = 0, e = Opts.size(); i != e; ++i)
1047 MaxArgLen = std::max(MaxArgLen, Opts[i].second->getOptionWidth());
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001048
Bill Wendlinge8156192006-12-07 01:30:32 +00001049 cout << "OPTIONS:\n";
Chris Lattner90aa8392006-10-04 21:52:35 +00001050 for (unsigned i = 0, e = Opts.size(); i != e; ++i)
1051 Opts[i].second->printOptionInfo(MaxArgLen);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001052
Chris Lattnerc540ebb2004-11-19 17:08:15 +00001053 // Print any extra help the user has declared.
Chris Lattner90aa8392006-10-04 21:52:35 +00001054 for (std::vector<const char *>::iterator I = MoreHelp->begin(),
1055 E = MoreHelp->end(); I != E; ++I)
Bill Wendlinge8156192006-12-07 01:30:32 +00001056 cout << *I;
Chris Lattner90aa8392006-10-04 21:52:35 +00001057 MoreHelp->clear();
Reid Spencerad0846b2004-11-14 22:04:00 +00001058
Reid Spencer9bbba0912004-11-16 06:11:52 +00001059 // Halt the program since help information was printed
Chris Lattner331de232002-07-22 02:07:59 +00001060 exit(1);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001061 }
1062};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001063} // End anonymous namespace
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001064
Chris Lattner331de232002-07-22 02:07:59 +00001065// Define the two HelpPrinter instances that are used to print out help, or
1066// help-hidden...
1067//
Chris Lattner500d8bf2006-10-12 22:09:17 +00001068static HelpPrinter NormalPrinter(false);
1069static HelpPrinter HiddenPrinter(true);
Chris Lattner331de232002-07-22 02:07:59 +00001070
Chris Lattner500d8bf2006-10-12 22:09:17 +00001071static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001072HOp("help", cl::desc("Display available options (--help-hidden for more)"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001073 cl::location(NormalPrinter), cl::ValueDisallowed);
Chris Lattner331de232002-07-22 02:07:59 +00001074
Chris Lattner500d8bf2006-10-12 22:09:17 +00001075static cl::opt<HelpPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001076HHOp("help-hidden", cl::desc("Display all available options"),
Chris Lattner9b14eb52002-08-07 18:36:37 +00001077 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
Chris Lattnerdbab15a2001-07-23 17:17:47 +00001078
Chris Lattner500d8bf2006-10-12 22:09:17 +00001079static void (*OverrideVersionPrinter)() = 0;
Reid Spencer515b5b32006-06-05 16:22:56 +00001080
Chris Lattner500d8bf2006-10-12 22:09:17 +00001081namespace {
Reid Spencer515b5b32006-06-05 16:22:56 +00001082class VersionPrinter {
1083public:
Devang Patelaed293d2007-02-01 01:43:37 +00001084 void print() {
Bill Wendlinge8156192006-12-07 01:30:32 +00001085 cout << "Low Level Virtual Machine (http://llvm.org/):\n";
1086 cout << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001087#ifdef LLVM_VERSION_INFO
Bill Wendlinge8156192006-12-07 01:30:32 +00001088 cout << LLVM_VERSION_INFO;
Reid Spencer515b5b32006-06-05 16:22:56 +00001089#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001090 cout << "\n ";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001091#ifndef __OPTIMIZE__
Bill Wendlinge8156192006-12-07 01:30:32 +00001092 cout << "DEBUG build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001093#else
Bill Wendlinge8156192006-12-07 01:30:32 +00001094 cout << "Optimized build";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001095#endif
1096#ifndef NDEBUG
Bill Wendlinge8156192006-12-07 01:30:32 +00001097 cout << " with assertions";
Chris Lattner3fc2f4e2006-07-06 18:33:03 +00001098#endif
Bill Wendlinge8156192006-12-07 01:30:32 +00001099 cout << ".\n";
Devang Patelaed293d2007-02-01 01:43:37 +00001100 }
1101 void operator=(bool OptionWasSpecified) {
1102 if (OptionWasSpecified) {
1103 if (OverrideVersionPrinter == 0) {
1104 print();
Reid Spencer515b5b32006-06-05 16:22:56 +00001105 exit(1);
1106 } else {
1107 (*OverrideVersionPrinter)();
1108 exit(1);
1109 }
1110 }
1111 }
1112};
Chris Lattner500d8bf2006-10-12 22:09:17 +00001113} // End anonymous namespace
Reid Spencer515b5b32006-06-05 16:22:56 +00001114
1115
Reid Spencer69105f32004-08-04 00:36:06 +00001116// Define the --version option that prints out the LLVM version for the tool
Chris Lattner500d8bf2006-10-12 22:09:17 +00001117static VersionPrinter VersionPrinterInstance;
1118
1119static cl::opt<VersionPrinter, true, parser<bool> >
Chris Lattner4bf7afc2005-05-13 19:49:09 +00001120VersOp("version", cl::desc("Display the version of this program"),
Reid Spencer69105f32004-08-04 00:36:06 +00001121 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1122
Reid Spencer9bbba0912004-11-16 06:11:52 +00001123// Utility function for printing the help message.
1124void cl::PrintHelpMessage() {
Misha Brukmanf976c852005-04-21 22:55:34 +00001125 // This looks weird, but it actually prints the help message. The
Reid Spencer5cc498f2004-11-16 06:50:36 +00001126 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1127 // its operator= is invoked. That's because the "normal" usages of the
Misha Brukmanf976c852005-04-21 22:55:34 +00001128 // help printer is to be assigned true/false depending on whether the
Reid Spencer5cc498f2004-11-16 06:50:36 +00001129 // --help option was given or not. Since we're circumventing that we have
1130 // to make it look like --help was given, so we assign true.
Reid Spencer9bbba0912004-11-16 06:11:52 +00001131 NormalPrinter = true;
1132}
Reid Spencer515b5b32006-06-05 16:22:56 +00001133
Devang Patelaed293d2007-02-01 01:43:37 +00001134/// Utility function for printing version number.
1135void cl::PrintVersionMessage() {
1136 VersionPrinterInstance.print();
1137}
1138
Reid Spencer515b5b32006-06-05 16:22:56 +00001139void cl::SetVersionPrinter(void (*func)()) {
1140 OverrideVersionPrinter = func;
1141}