1 //===- Arg.h - Parsed Argument Classes --------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// Defines the llvm::Arg class for parsed arguments.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_OPTION_ARG_H
15 #define LLVM_OPTION_ARG_H
17 #include "llvm/ADT/SmallVector.h"
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/Option/Option.h"
30 /// A concrete instance of a particular driver option.
32 /// The Arg class encodes just enough information to be able to
33 /// derive the argument values efficiently.
36 /// The option this argument is an instance of.
39 /// The argument this argument was derived from (during tool chain
40 /// argument translation), if any.
43 /// How this instance of the option was spelled.
46 /// The index at which this argument appears in the containing
50 /// Was this argument used to effect compilation?
52 /// This is used for generating "argument unused" diagnostics.
53 mutable unsigned Claimed
: 1;
55 /// Does this argument own its values?
56 mutable unsigned OwnsValues
: 1;
58 /// The argument values, as C strings.
59 SmallVector
<const char *, 2> Values
;
62 Arg(const Option Opt
, StringRef Spelling
, unsigned Index
,
63 const Arg
*BaseArg
= nullptr);
64 Arg(const Option Opt
, StringRef Spelling
, unsigned Index
,
65 const char *Value0
, const Arg
*BaseArg
= nullptr);
66 Arg(const Option Opt
, StringRef Spelling
, unsigned Index
,
67 const char *Value0
, const char *Value1
, const Arg
*BaseArg
= nullptr);
68 Arg(const Arg
&) = delete;
69 Arg
&operator=(const Arg
&) = delete;
72 const Option
&getOption() const { return Opt
; }
73 StringRef
getSpelling() const { return Spelling
; }
74 unsigned getIndex() const { return Index
; }
76 /// Return the base argument which generated this arg.
78 /// This is either the argument itself or the argument it was
79 /// derived from during tool chain specific argument translation.
80 const Arg
&getBaseArg() const {
81 return BaseArg
? *BaseArg
: *this;
83 void setBaseArg(const Arg
*BaseArg
) { this->BaseArg
= BaseArg
; }
85 bool getOwnsValues() const { return OwnsValues
; }
86 void setOwnsValues(bool Value
) const { OwnsValues
= Value
; }
88 bool isClaimed() const { return getBaseArg().Claimed
; }
90 /// Set the Arg claimed bit.
91 void claim() const { getBaseArg().Claimed
= true; }
93 unsigned getNumValues() const { return Values
.size(); }
95 const char *getValue(unsigned N
= 0) const {
99 SmallVectorImpl
<const char *> &getValues() { return Values
; }
100 const SmallVectorImpl
<const char *> &getValues() const { return Values
; }
102 bool containsValue(StringRef Value
) const {
103 for (unsigned i
= 0, e
= getNumValues(); i
!= e
; ++i
)
104 if (Values
[i
] == Value
)
109 /// Append the argument onto the given array as strings.
110 void render(const ArgList
&Args
, ArgStringList
&Output
) const;
112 /// Append the argument, render as an input, onto the given
113 /// array as strings.
115 /// The distinction is that some options only render their values
116 /// when rendered as a input (e.g., Xlinker).
117 void renderAsInput(const ArgList
&Args
, ArgStringList
&Output
) const;
119 void print(raw_ostream
&O
) const;
122 /// Return a formatted version of the argument and
123 /// its values, for debugging and diagnostics.
124 std::string
getAsString(const ArgList
&Args
) const;
127 } // end namespace opt
129 } // end namespace llvm
131 #endif // LLVM_OPTION_ARG_H