1 //===--- Option.h - Abstract Driver Options ---------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_OPTION_OPTION_H
11 #define LLVM_OPTION_OPTION_H
13 #include "llvm/ADT/SmallVector.h"
14 #include "llvm/ADT/StringRef.h"
15 #include "llvm/Option/OptTable.h"
16 #include "llvm/Support/ErrorHandling.h"
22 /// ArgStringList - Type used for constructing argv lists for subprocesses.
23 typedef SmallVector<const char*, 16> ArgStringList;
25 /// Base flags for all options. Custom flags may be added after.
27 HelpHidden = (1 << 0),
28 RenderAsInput = (1 << 1),
29 RenderJoined = (1 << 2),
30 RenderSeparate = (1 << 3)
33 /// Option - Abstract representation for a single form of driver
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.
56 JoinedOrSeparateClass,
57 JoinedAndSeparateClass
60 enum RenderStyleKind {
61 RenderCommaJoinedStyle,
68 const OptTable::Info *Info;
69 const OptTable *Owner;
72 Option(const OptTable::Info *Info, const OptTable *Owner);
74 bool isValid() const {
75 return Info != nullptr;
78 unsigned getID() const {
79 assert(Info && "Must have a valid info!");
83 OptionClass getKind() const {
84 assert(Info && "Must have a valid info!");
85 return OptionClass(Info->Kind);
88 /// \brief Get the name of this option without any prefix.
89 StringRef getName() const {
90 assert(Info && "Must have a valid info!");
94 const Option getGroup() const {
95 assert(Info && "Must have a valid info!");
96 assert(Owner && "Must have a valid owner!");
97 return Owner->getOption(Info->GroupID);
100 const Option getAlias() const {
101 assert(Info && "Must have a valid info!");
102 assert(Owner && "Must have a valid owner!");
103 return Owner->getOption(Info->AliasID);
106 /// \brief Get the alias arguments as a \0 separated list.
107 /// E.g. ["foo", "bar"] would be returned as "foo\0bar\0".
108 const char *getAliasArgs() const {
109 assert(Info && "Must have a valid info!");
110 assert((!Info->AliasArgs || Info->AliasArgs[0] != 0) &&
111 "AliasArgs should be either 0 or non-empty.");
113 return Info->AliasArgs;
116 /// \brief Get the default prefix for this option.
117 StringRef getPrefix() const {
118 const char *Prefix = *Info->Prefixes;
119 return Prefix ? Prefix : StringRef();
122 /// \brief Get the name of this option with the default prefix.
123 std::string getPrefixedName() const {
124 std::string Ret = getPrefix();
129 unsigned getNumArgs() const { return Info->Param; }
131 bool hasNoOptAsInput() const { return Info->Flags & RenderAsInput;}
133 RenderStyleKind getRenderStyle() const {
134 if (Info->Flags & RenderJoined)
135 return RenderJoinedStyle;
136 if (Info->Flags & RenderSeparate)
137 return RenderSeparateStyle;
142 return RenderValuesStyle;
144 case JoinedAndSeparateClass:
145 return RenderJoinedStyle;
146 case CommaJoinedClass:
147 return RenderCommaJoinedStyle;
151 case JoinedOrSeparateClass:
152 case RemainingArgsClass:
153 return RenderSeparateStyle;
155 llvm_unreachable("Unexpected kind!");
158 /// Test if this option has the flag \a Val.
159 bool hasFlag(unsigned Val) const {
160 return Info->Flags & Val;
163 /// getUnaliasedOption - Return the final option this option
164 /// aliases (itself, if the option has no alias).
165 const Option getUnaliasedOption() const {
166 const Option Alias = getAlias();
167 if (Alias.isValid()) return Alias.getUnaliasedOption();
171 /// getRenderName - Return the name to use when rendering this
173 StringRef getRenderName() const {
174 return getUnaliasedOption().getName();
177 /// matches - Predicate for whether this option is part of the
178 /// given option (which may be a group).
180 /// Note that matches against options which are an alias should never be
181 /// done -- aliases do not participate in matching and so such a query will
183 bool matches(OptSpecifier ID) const;
185 /// accept - Potentially accept the current argument, returning a
186 /// new Arg instance, or 0 if the option does not accept this
187 /// argument (or the argument is missing values).
189 /// If the option accepts the current argument, accept() sets
190 /// Index to the position where argument parsing should resume
191 /// (even if the argument is missing values).
193 /// \param ArgSize The number of bytes taken up by the matched Option prefix
194 /// and name. This is used to determine where joined values
196 Arg *accept(const ArgList &Args, unsigned &Index, unsigned ArgSize) const;
201 } // end namespace opt
202 } // end namespace llvm