[CMake] Install import libraries
[llvm-complete.git] / include / llvm / Option / Arg.h
blobd3623a0c1e4b4c0e51a0b023e0da02225436bf19
1 //===- Arg.h - Parsed Argument Classes --------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 ///
9 /// \file
10 /// Defines the llvm::Arg class for parsed arguments.
11 ///
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"
20 #include <string>
22 namespace llvm {
24 class raw_ostream;
26 namespace opt {
28 class ArgList;
30 /// A concrete instance of a particular driver option.
31 ///
32 /// The Arg class encodes just enough information to be able to
33 /// derive the argument values efficiently.
34 class Arg {
35 private:
36 /// The option this argument is an instance of.
37 const Option Opt;
39 /// The argument this argument was derived from (during tool chain
40 /// argument translation), if any.
41 const Arg *BaseArg;
43 /// How this instance of the option was spelled.
44 StringRef Spelling;
46 /// The index at which this argument appears in the containing
47 /// ArgList.
48 unsigned Index;
50 /// Was this argument used to effect compilation?
51 ///
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;
61 public:
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;
70 ~Arg();
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.
77 ///
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 {
96 return Values[N];
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)
105 return true;
106 return false;
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;
120 void dump() 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