]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/llvm/Option/OptTable.h
Vendor import of llvm trunk r307894:
[FreeBSD/FreeBSD.git] / include / llvm / Option / OptTable.h
1 //===- OptTable.h - Option Table --------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_OPTION_OPTTABLE_H
11 #define LLVM_OPTION_OPTTABLE_H
12
13 #include "llvm/ADT/ArrayRef.h"
14 #include "llvm/ADT/StringRef.h"
15 #include "llvm/ADT/StringSet.h"
16 #include "llvm/Option/OptSpecifier.h"
17 #include <cassert>
18 #include <string>
19 #include <vector>
20
21 namespace llvm {
22
23 class raw_ostream;
24
25 namespace opt {
26
27 class Arg;
28 class ArgList;
29 class InputArgList;
30 class Option;
31
32 /// \brief Provide access to the Option info table.
33 ///
34 /// The OptTable class provides a layer of indirection which allows Option
35 /// instance to be created lazily. In the common case, only a few options will
36 /// be needed at runtime; the OptTable class maintains enough information to
37 /// parse command lines without instantiating Options, while letting other
38 /// parts of the driver still use Option instances where convenient.
39 class OptTable {
40 public:
41   /// \brief Entry for a single option instance in the option data table.
42   struct Info {
43     /// A null terminated array of prefix strings to apply to name while
44     /// matching.
45     const char *const *Prefixes;
46     const char *Name;
47     const char *HelpText;
48     const char *MetaVar;
49     unsigned ID;
50     unsigned char Kind;
51     unsigned char Param;
52     unsigned short Flags;
53     unsigned short GroupID;
54     unsigned short AliasID;
55     const char *AliasArgs;
56     const char *Values;
57   };
58
59 private:
60   /// \brief The static option information table.
61   ArrayRef<Info> OptionInfos;
62   bool IgnoreCase;
63
64   unsigned TheInputOptionID = 0;
65   unsigned TheUnknownOptionID = 0;
66
67   /// The index of the first option which can be parsed (i.e., is not a
68   /// special option like 'input' or 'unknown', and is not an option group).
69   unsigned FirstSearchableIndex = 0;
70
71   /// The union of all option prefixes. If an argument does not begin with
72   /// one of these, it is an input.
73   StringSet<> PrefixesUnion;
74   std::string PrefixChars;
75
76 private:
77   const Info &getInfo(OptSpecifier Opt) const {
78     unsigned id = Opt.getID();
79     assert(id > 0 && id - 1 < getNumOptions() && "Invalid Option ID.");
80     return OptionInfos[id - 1];
81   }
82
83 protected:
84   OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
85
86 public:
87   ~OptTable();
88
89   /// \brief Return the total number of option classes.
90   unsigned getNumOptions() const { return OptionInfos.size(); }
91
92   /// \brief Get the given Opt's Option instance, lazily creating it
93   /// if necessary.
94   ///
95   /// \return The option, or null for the INVALID option id.
96   const Option getOption(OptSpecifier Opt) const;
97
98   /// \brief Lookup the name of the given option.
99   const char *getOptionName(OptSpecifier id) const {
100     return getInfo(id).Name;
101   }
102
103   /// \brief Get the kind of the given option.
104   unsigned getOptionKind(OptSpecifier id) const {
105     return getInfo(id).Kind;
106   }
107
108   /// \brief Get the group id for the given option.
109   unsigned getOptionGroupID(OptSpecifier id) const {
110     return getInfo(id).GroupID;
111   }
112
113   /// \brief Get the help text to use to describe this option.
114   const char *getOptionHelpText(OptSpecifier id) const {
115     return getInfo(id).HelpText;
116   }
117
118   /// \brief Get the meta-variable name to use when describing
119   /// this options values in the help text.
120   const char *getOptionMetaVar(OptSpecifier id) const {
121     return getInfo(id).MetaVar;
122   }
123
124   /// Find possible value for given flags. This is used for shell
125   /// autocompletion.
126   ///
127   /// \param [in] Option - Key flag like "-stdlib=" when "-stdlib=l"
128   /// was passed to clang.
129   ///
130   /// \param [in] Arg - Value which we want to autocomplete like "l"
131   /// when "-stdlib=l" was passed to clang.
132   ///
133   /// \return The vector of possible values.
134   std::vector<std::string> suggestValueCompletions(StringRef Option,
135                                                    StringRef Arg) const;
136
137   /// Find flags from OptTable which starts with Cur.
138   ///
139   /// \param [in] Cur - String prefix that all returned flags need
140   //  to start with.
141   ///
142   /// \return The vector of flags which start with Cur.
143   std::vector<std::string> findByPrefix(StringRef Cur,
144                                         unsigned short DisableFlags) const;
145
146   /// \brief Parse a single argument; returning the new argument and
147   /// updating Index.
148   ///
149   /// \param [in,out] Index - The current parsing position in the argument
150   /// string list; on return this will be the index of the next argument
151   /// string to parse.
152   /// \param [in] FlagsToInclude - Only parse options with any of these flags.
153   /// Zero is the default which includes all flags.
154   /// \param [in] FlagsToExclude - Don't parse options with this flag.  Zero
155   /// is the default and means exclude nothing.
156   ///
157   /// \return The parsed argument, or 0 if the argument is missing values
158   /// (in which case Index still points at the conceptual next argument string
159   /// to parse).
160   Arg *ParseOneArg(const ArgList &Args, unsigned &Index,
161                    unsigned FlagsToInclude = 0,
162                    unsigned FlagsToExclude = 0) const;
163
164   /// \brief Parse an list of arguments into an InputArgList.
165   ///
166   /// The resulting InputArgList will reference the strings in [\p ArgBegin,
167   /// \p ArgEnd), and their lifetime should extend past that of the returned
168   /// InputArgList.
169   ///
170   /// The only error that can occur in this routine is if an argument is
171   /// missing values; in this case \p MissingArgCount will be non-zero.
172   ///
173   /// \param MissingArgIndex - On error, the index of the option which could
174   /// not be parsed.
175   /// \param MissingArgCount - On error, the number of missing options.
176   /// \param FlagsToInclude - Only parse options with any of these flags.
177   /// Zero is the default which includes all flags.
178   /// \param FlagsToExclude - Don't parse options with this flag.  Zero
179   /// is the default and means exclude nothing.
180   /// \return An InputArgList; on error this will contain all the options
181   /// which could be parsed.
182   InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
183                          unsigned &MissingArgCount, unsigned FlagsToInclude = 0,
184                          unsigned FlagsToExclude = 0) const;
185
186   /// \brief Render the help text for an option table.
187   ///
188   /// \param OS - The stream to write the help text to.
189   /// \param Name - The name to use in the usage line.
190   /// \param Title - The title to use in the usage line.
191   /// \param FlagsToInclude - If non-zero, only include options with any
192   ///                         of these flags set.
193   /// \param FlagsToExclude - Exclude options with any of these flags set.
194   void PrintHelp(raw_ostream &OS, const char *Name,
195                  const char *Title, unsigned FlagsToInclude,
196                  unsigned FlagsToExclude) const;
197
198   void PrintHelp(raw_ostream &OS, const char *Name,
199                   const char *Title, bool ShowHidden = false) const;
200 };
201
202 } // end namespace opt
203
204 } // end namespace llvm
205
206 #endif // LLVM_OPTION_OPTTABLE_H