LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Option.h
Go to the documentation of this file.
1 //===--- Option.h - Abstract Driver Options ---------------------*- 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_OPTION_H
11 #define LLVM_OPTION_OPTION_H
12 
13 #include "llvm/ADT/SmallVector.h"
14 #include "llvm/ADT/StringRef.h"
15 #include "llvm/Option/OptTable.h"
17 
18 namespace llvm {
19 namespace opt {
20 class Arg;
21 class ArgList;
22 /// ArgStringList - Type used for constructing argv lists for subprocesses.
24 
25 /// Base flags for all options. Custom flags may be added after.
26 enum DriverFlag {
27  HelpHidden = (1 << 0),
28  RenderAsInput = (1 << 1),
29  RenderJoined = (1 << 2),
30  RenderSeparate = (1 << 3)
31 };
32 
33 /// Option - Abstract representation for a single form of driver
34 /// argument.
35 ///
36 /// An Option class represents a form of option that the driver
37 /// takes, for example how many arguments the option has and how
38 /// they can be provided. Individual option instances store
39 /// additional information about what group the option is a member
40 /// of (if any), if the option is an alias, and a number of
41 /// flags. At runtime the driver parses the command line into
42 /// concrete Arg instances, each of which corresponds to a
43 /// particular Option instance.
44 class Option {
45 public:
46  enum OptionClass {
58  };
59 
65  };
66 
67 protected:
69  const OptTable *Owner;
70 
71 public:
72  Option(const OptTable::Info *Info, const OptTable *Owner);
73  ~Option();
74 
75  bool isValid() const {
76  return Info != 0;
77  }
78 
79  unsigned getID() const {
80  assert(Info && "Must have a valid info!");
81  return Info->ID;
82  }
83 
84  OptionClass getKind() const {
85  assert(Info && "Must have a valid info!");
86  return OptionClass(Info->Kind);
87  }
88 
89  /// \brief Get the name of this option without any prefix.
90  StringRef getName() const {
91  assert(Info && "Must have a valid info!");
92  return Info->Name;
93  }
94 
95  const Option getGroup() const {
96  assert(Info && "Must have a valid info!");
97  assert(Owner && "Must have a valid owner!");
98  return Owner->getOption(Info->GroupID);
99  }
100 
101  const Option getAlias() const {
102  assert(Info && "Must have a valid info!");
103  assert(Owner && "Must have a valid owner!");
104  return Owner->getOption(Info->AliasID);
105  }
106 
107  /// \brief Get the alias arguments as a \0 separated list.
108  /// E.g. ["foo", "bar"] would be returned as "foo\0bar\0".
109  const char *getAliasArgs() const {
110  assert(Info && "Must have a valid info!");
111  assert((!Info->AliasArgs || Info->AliasArgs[0] != 0) &&
112  "AliasArgs should be either 0 or non-empty.");
113 
114  return Info->AliasArgs;
115  }
116 
117  /// \brief Get the default prefix for this option.
119  const char *Prefix = *Info->Prefixes;
120  return Prefix ? Prefix : StringRef();
121  }
122 
123  /// \brief Get the name of this option with the default prefix.
124  std::string getPrefixedName() const {
125  std::string Ret = getPrefix();
126  Ret += getName();
127  return Ret;
128  }
129 
130  unsigned getNumArgs() const { return Info->Param; }
131 
132  bool hasNoOptAsInput() const { return Info->Flags & RenderAsInput;}
133 
135  if (Info->Flags & RenderJoined)
136  return RenderJoinedStyle;
137  if (Info->Flags & RenderSeparate)
138  return RenderSeparateStyle;
139  switch (getKind()) {
140  case GroupClass:
141  case InputClass:
142  case UnknownClass:
143  return RenderValuesStyle;
144  case JoinedClass:
146  return RenderJoinedStyle;
147  case CommaJoinedClass:
148  return RenderCommaJoinedStyle;
149  case FlagClass:
150  case SeparateClass:
151  case MultiArgClass:
153  case RemainingArgsClass:
154  return RenderSeparateStyle;
155  }
156  llvm_unreachable("Unexpected kind!");
157  }
158 
159  /// Test if this option has the flag \a Val.
160  bool hasFlag(unsigned Val) const {
161  return Info->Flags & Val;
162  }
163 
164  /// getUnaliasedOption - Return the final option this option
165  /// aliases (itself, if the option has no alias).
166  const Option getUnaliasedOption() const {
167  const Option Alias = getAlias();
168  if (Alias.isValid()) return Alias.getUnaliasedOption();
169  return *this;
170  }
171 
172  /// getRenderName - Return the name to use when rendering this
173  /// option.
175  return getUnaliasedOption().getName();
176  }
177 
178  /// matches - Predicate for whether this option is part of the
179  /// given option (which may be a group).
180  ///
181  /// Note that matches against options which are an alias should never be
182  /// done -- aliases do not participate in matching and so such a query will
183  /// always be false.
184  bool matches(OptSpecifier ID) const;
185 
186  /// accept - Potentially accept the current argument, returning a
187  /// new Arg instance, or 0 if the option does not accept this
188  /// argument (or the argument is missing values).
189  ///
190  /// If the option accepts the current argument, accept() sets
191  /// Index to the position where argument parsing should resume
192  /// (even if the argument is missing values).
193  ///
194  /// \param ArgSize The number of bytes taken up by the matched Option prefix
195  /// and name. This is used to determine where joined values
196  /// start.
197  Arg *accept(const ArgList &Args, unsigned &Index, unsigned ArgSize) const;
198 
199  void dump() const;
200 };
201 
202 } // end namespace opt
203 } // end namespace llvm
204 
205 #endif
void dump() const
Definition: Option.cpp:41
bool matches(OptSpecifier ID) const
Definition: Option.cpp:87
const char * AliasArgs
Definition: OptTable.h:47
unsigned short GroupID
Definition: OptTable.h:45
unsigned short Flags
Definition: OptTable.h:44
StringRef getName() const
Get the name of this option without any prefix.
Definition: Option.h:90
bool hasFlag(unsigned Val) const
Test if this option has the flag Val.
Definition: Option.h:160
const OptTable::Info * Info
Definition: Option.h:68
DriverFlag
Base flags for all options. Custom flags may be added after.
Definition: Option.h:26
const Option getAlias() const
Definition: Option.h:101
OptionClass getKind() const
Definition: Option.h:84
unsigned getID() const
Definition: Option.h:79
unsigned char Param
Definition: OptTable.h:43
RenderStyleKind getRenderStyle() const
Definition: Option.h:134
#define llvm_unreachable(msg)
unsigned short AliasID
Definition: OptTable.h:46
const Option getGroup() const
Definition: Option.h:95
ID
LLVM Calling Convention Representation.
Definition: CallingConv.h:26
unsigned char Kind
Definition: OptTable.h:42
unsigned getNumArgs() const
Definition: Option.h:130
bool hasNoOptAsInput() const
Definition: Option.h:132
A concrete instance of a particular driver option.
Definition: Arg.h:34
Provide access to the Option info table.
Definition: OptTable.h:31
std::string getPrefixedName() const
Get the name of this option with the default prefix.
Definition: Option.h:124
const char *const * Prefixes
Definition: OptTable.h:37
StringRef getPrefix() const
Get the default prefix for this option.
Definition: Option.h:118
bool isValid() const
Definition: Option.h:75
Option(const OptTable::Info *Info, const OptTable *Owner)
Definition: Option.cpp:22
const Option getUnaliasedOption() const
Definition: Option.h:166
OptSpecifier - Wrapper class for abstracting references to option IDs.
Definition: OptSpecifier.h:18
const Option getOption(OptSpecifier Opt) const
Get the given Opt's Option instance, lazily creating it if necessary.
Definition: OptTable.cpp:160
Entry for a single option instance in the option data table.
Definition: OptTable.h:34
const char * getAliasArgs() const
Get the alias arguments as a \0 separated list. E.g. ["foo", "bar"] would be returned as "foo\0bar\0"...
Definition: Option.h:109
StringRef getRenderName() const
Definition: Option.h:174
Arg * accept(const ArgList &Args, unsigned &Index, unsigned ArgSize) const
Definition: Option.cpp:103
SmallVector< const char *, 16 > ArgStringList
ArgStringList - Type used for constructing argv lists for subprocesses.
Definition: Option.h:21
const OptTable * Owner
Definition: Option.h:69