blob: d3623a0c1e4b4c0e51a0b023e0da02225436bf19 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- Arg.h - Parsed Argument Classes --------------------------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// 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
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8///
9/// \file
Andrew Scullcdfcccc2018-10-05 20:58:37 +010010/// Defines the llvm::Arg class for parsed arguments.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010011///
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_OPTION_ARG_H
15#define LLVM_OPTION_ARG_H
16
17#include "llvm/ADT/SmallVector.h"
18#include "llvm/ADT/StringRef.h"
19#include "llvm/Option/Option.h"
20#include <string>
21
22namespace llvm {
23
24class raw_ostream;
25
26namespace opt {
27
28class ArgList;
29
Andrew Scullcdfcccc2018-10-05 20:58:37 +010030/// A concrete instance of a particular driver option.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010031///
32/// The Arg class encodes just enough information to be able to
33/// derive the argument values efficiently.
34class Arg {
35private:
Andrew Scullcdfcccc2018-10-05 20:58:37 +010036 /// The option this argument is an instance of.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010037 const Option Opt;
38
Andrew Scullcdfcccc2018-10-05 20:58:37 +010039 /// The argument this argument was derived from (during tool chain
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010040 /// argument translation), if any.
41 const Arg *BaseArg;
42
Andrew Scullcdfcccc2018-10-05 20:58:37 +010043 /// How this instance of the option was spelled.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010044 StringRef Spelling;
45
Andrew Scullcdfcccc2018-10-05 20:58:37 +010046 /// The index at which this argument appears in the containing
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010047 /// ArgList.
48 unsigned Index;
49
Andrew Scullcdfcccc2018-10-05 20:58:37 +010050 /// Was this argument used to effect compilation?
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010051 ///
52 /// This is used for generating "argument unused" diagnostics.
53 mutable unsigned Claimed : 1;
54
Andrew Scullcdfcccc2018-10-05 20:58:37 +010055 /// Does this argument own its values?
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010056 mutable unsigned OwnsValues : 1;
57
Andrew Scullcdfcccc2018-10-05 20:58:37 +010058 /// The argument values, as C strings.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010059 SmallVector<const char *, 2> Values;
60
61public:
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();
71
72 const Option &getOption() const { return Opt; }
73 StringRef getSpelling() const { return Spelling; }
74 unsigned getIndex() const { return Index; }
75
Andrew Scullcdfcccc2018-10-05 20:58:37 +010076 /// Return the base argument which generated this arg.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010077 ///
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;
82 }
83 void setBaseArg(const Arg *BaseArg) { this->BaseArg = BaseArg; }
84
85 bool getOwnsValues() const { return OwnsValues; }
86 void setOwnsValues(bool Value) const { OwnsValues = Value; }
87
88 bool isClaimed() const { return getBaseArg().Claimed; }
89
Andrew Scullcdfcccc2018-10-05 20:58:37 +010090 /// Set the Arg claimed bit.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010091 void claim() const { getBaseArg().Claimed = true; }
92
93 unsigned getNumValues() const { return Values.size(); }
94
95 const char *getValue(unsigned N = 0) const {
96 return Values[N];
97 }
98
99 SmallVectorImpl<const char *> &getValues() { return Values; }
100 const SmallVectorImpl<const char *> &getValues() const { return Values; }
101
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;
107 }
108
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100109 /// Append the argument onto the given array as strings.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100110 void render(const ArgList &Args, ArgStringList &Output) const;
111
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100112 /// Append the argument, render as an input, onto the given
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100113 /// array as strings.
114 ///
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;
118
119 void print(raw_ostream &O) const;
120 void dump() const;
121
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100122 /// Return a formatted version of the argument and
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100123 /// its values, for debugging and diagnostics.
124 std::string getAsString(const ArgList &Args) const;
125};
126
127} // end namespace opt
128
129} // end namespace llvm
130
131#endif // LLVM_OPTION_ARG_H