blob: a74ead6b358812d79a805030880ddaf37b7395f9 [file] [log] [blame]
Michael J. Spencer41ee0412012-12-05 00:29:32 +00001//===--- ArgList.cpp - Argument List Management ---------------------------===//
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#include "llvm/Option/ArgList.h"
David Blaikief70b21a2014-04-20 22:37:46 +000011#include "llvm/ADT/STLExtras.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000012#include "llvm/ADT/SmallString.h"
Michael J. Spencer41ee0412012-12-05 00:29:32 +000013#include "llvm/ADT/Twine.h"
14#include "llvm/Option/Arg.h"
15#include "llvm/Option/Option.h"
16#include "llvm/Support/raw_ostream.h"
17
18using namespace llvm;
19using namespace llvm::opt;
20
21void arg_iterator::SkipToNextArg() {
22 for (; Current != Args.end(); ++Current) {
23 // Done if there are no filters.
24 if (!Id0.isValid())
25 break;
26
27 // Otherwise require a match.
28 const Option &O = (*Current)->getOption();
29 if (O.matches(Id0) ||
30 (Id1.isValid() && O.matches(Id1)) ||
31 (Id2.isValid() && O.matches(Id2)))
32 break;
33 }
34}
35
Michael J. Spencer41ee0412012-12-05 00:29:32 +000036void ArgList::append(Arg *A) {
37 Args.push_back(A);
38}
39
40void ArgList::eraseArg(OptSpecifier Id) {
Benjamin Kramerf9d2d512014-05-18 15:14:13 +000041 Args.erase(std::remove_if(begin(), end(),
42 [=](Arg *A) { return A->getOption().matches(Id); }),
43 end());
Michael J. Spencer41ee0412012-12-05 00:29:32 +000044}
45
46Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
47 // FIXME: Make search efficient?
48 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
49 if ((*it)->getOption().matches(Id))
50 return *it;
Craig Topper2617dcc2014-04-15 06:32:26 +000051 return nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +000052}
53
Ehsan Akhgari63e3a292014-09-12 19:42:53 +000054Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1) const {
55 // FIXME: Make search efficient?
56 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
57 if ((*it)->getOption().matches(Id0) ||
58 (*it)->getOption().matches(Id1))
59 return *it;
60 return nullptr;
61}
62
Filipe Cabecinhas008067a2015-03-20 23:32:58 +000063Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1,
64 OptSpecifier Id2) const {
65 // FIXME: Make search efficient?
66 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
67 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) ||
68 (*it)->getOption().matches(Id2))
69 return *it;
70 return nullptr;
71}
72
73Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1,
74 OptSpecifier Id2, OptSpecifier Id3) const {
75 // FIXME: Make search efficient?
76 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
77 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) ||
78 (*it)->getOption().matches(Id2) || (*it)->getOption().matches(Id3))
79 return *it;
80 return nullptr;
81}
82
Michael J. Spencer41ee0412012-12-05 00:29:32 +000083Arg *ArgList::getLastArg(OptSpecifier Id) const {
Craig Topper2617dcc2014-04-15 06:32:26 +000084 Arg *Res = nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +000085 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
86 if ((*it)->getOption().matches(Id)) {
87 Res = *it;
88 Res->claim();
89 }
90 }
91
92 return Res;
93}
94
95Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const {
Craig Topper2617dcc2014-04-15 06:32:26 +000096 Arg *Res = nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +000097 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
98 if ((*it)->getOption().matches(Id0) ||
99 (*it)->getOption().matches(Id1)) {
100 Res = *it;
101 Res->claim();
102
103 }
104 }
105
106 return Res;
107}
108
109Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
110 OptSpecifier Id2) const {
Craig Topper2617dcc2014-04-15 06:32:26 +0000111 Arg *Res = nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000112 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
113 if ((*it)->getOption().matches(Id0) ||
114 (*it)->getOption().matches(Id1) ||
115 (*it)->getOption().matches(Id2)) {
116 Res = *it;
117 Res->claim();
118 }
119 }
120
121 return Res;
122}
123
124Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
125 OptSpecifier Id2, OptSpecifier Id3) const {
Craig Topper2617dcc2014-04-15 06:32:26 +0000126 Arg *Res = nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000127 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
128 if ((*it)->getOption().matches(Id0) ||
129 (*it)->getOption().matches(Id1) ||
130 (*it)->getOption().matches(Id2) ||
131 (*it)->getOption().matches(Id3)) {
132 Res = *it;
133 Res->claim();
134 }
135 }
136
137 return Res;
138}
139
140Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
141 OptSpecifier Id2, OptSpecifier Id3,
142 OptSpecifier Id4) const {
Craig Topper2617dcc2014-04-15 06:32:26 +0000143 Arg *Res = nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000144 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
145 if ((*it)->getOption().matches(Id0) ||
146 (*it)->getOption().matches(Id1) ||
147 (*it)->getOption().matches(Id2) ||
148 (*it)->getOption().matches(Id3) ||
149 (*it)->getOption().matches(Id4)) {
150 Res = *it;
151 Res->claim();
152 }
153 }
154
155 return Res;
156}
157
158Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
159 OptSpecifier Id2, OptSpecifier Id3,
160 OptSpecifier Id4, OptSpecifier Id5) const {
Craig Topper2617dcc2014-04-15 06:32:26 +0000161 Arg *Res = nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000162 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
163 if ((*it)->getOption().matches(Id0) ||
164 (*it)->getOption().matches(Id1) ||
165 (*it)->getOption().matches(Id2) ||
166 (*it)->getOption().matches(Id3) ||
167 (*it)->getOption().matches(Id4) ||
168 (*it)->getOption().matches(Id5)) {
169 Res = *it;
170 Res->claim();
171 }
172 }
173
174 return Res;
175}
176
177Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
178 OptSpecifier Id2, OptSpecifier Id3,
179 OptSpecifier Id4, OptSpecifier Id5,
180 OptSpecifier Id6) const {
Craig Topper2617dcc2014-04-15 06:32:26 +0000181 Arg *Res = nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000182 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
183 if ((*it)->getOption().matches(Id0) ||
184 (*it)->getOption().matches(Id1) ||
185 (*it)->getOption().matches(Id2) ||
186 (*it)->getOption().matches(Id3) ||
187 (*it)->getOption().matches(Id4) ||
188 (*it)->getOption().matches(Id5) ||
189 (*it)->getOption().matches(Id6)) {
190 Res = *it;
191 Res->claim();
192 }
193 }
194
195 return Res;
196}
197
198Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
199 OptSpecifier Id2, OptSpecifier Id3,
200 OptSpecifier Id4, OptSpecifier Id5,
201 OptSpecifier Id6, OptSpecifier Id7) const {
Craig Topper2617dcc2014-04-15 06:32:26 +0000202 Arg *Res = nullptr;
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000203 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
204 if ((*it)->getOption().matches(Id0) ||
205 (*it)->getOption().matches(Id1) ||
206 (*it)->getOption().matches(Id2) ||
207 (*it)->getOption().matches(Id3) ||
208 (*it)->getOption().matches(Id4) ||
209 (*it)->getOption().matches(Id5) ||
210 (*it)->getOption().matches(Id6) ||
211 (*it)->getOption().matches(Id7)) {
212 Res = *it;
213 Res->claim();
214 }
215 }
216
217 return Res;
218}
219
220bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const {
221 if (Arg *A = getLastArg(Pos, Neg))
222 return A->getOption().matches(Pos);
223 return Default;
224}
225
Reid Kleckner12e03322013-06-13 18:12:12 +0000226bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg,
227 bool Default) const {
228 if (Arg *A = getLastArg(Pos, PosAlias, Neg))
229 return A->getOption().matches(Pos) || A->getOption().matches(PosAlias);
230 return Default;
231}
232
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000233StringRef ArgList::getLastArgValue(OptSpecifier Id,
234 StringRef Default) const {
235 if (Arg *A = getLastArg(Id))
236 return A->getValue();
237 return Default;
238}
239
240std::vector<std::string> ArgList::getAllArgValues(OptSpecifier Id) const {
241 SmallVector<const char *, 16> Values;
242 AddAllArgValues(Values, Id);
243 return std::vector<std::string>(Values.begin(), Values.end());
244}
245
246void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id) const {
247 if (Arg *A = getLastArg(Id)) {
248 A->claim();
249 A->render(*this, Output);
250 }
251}
252
Reid Kleckner12e03322013-06-13 18:12:12 +0000253void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id0,
254 OptSpecifier Id1) const {
255 if (Arg *A = getLastArg(Id0, Id1)) {
256 A->claim();
257 A->render(*this, Output);
258 }
259}
260
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000261void ArgList::AddAllArgs(ArgStringList &Output, OptSpecifier Id0,
262 OptSpecifier Id1, OptSpecifier Id2) const {
Tim Northoverac002d32014-07-09 13:03:37 +0000263 for (auto Arg: filtered(Id0, Id1, Id2)) {
264 Arg->claim();
265 Arg->render(*this, Output);
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000266 }
267}
268
269void ArgList::AddAllArgValues(ArgStringList &Output, OptSpecifier Id0,
270 OptSpecifier Id1, OptSpecifier Id2) const {
Tim Northoverac002d32014-07-09 13:03:37 +0000271 for (auto Arg : filtered(Id0, Id1, Id2)) {
272 Arg->claim();
Benjamin Kramer6cd780f2015-02-17 15:29:18 +0000273 const auto &Values = Arg->getValues();
274 Output.append(Values.begin(), Values.end());
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000275 }
276}
277
278void ArgList::AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0,
279 const char *Translation,
280 bool Joined) const {
Tim Northoverac002d32014-07-09 13:03:37 +0000281 for (auto Arg: filtered(Id0)) {
282 Arg->claim();
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000283
284 if (Joined) {
285 Output.push_back(MakeArgString(StringRef(Translation) +
Tim Northoverac002d32014-07-09 13:03:37 +0000286 Arg->getValue(0)));
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000287 } else {
288 Output.push_back(Translation);
Tim Northoverac002d32014-07-09 13:03:37 +0000289 Output.push_back(Arg->getValue(0));
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000290 }
291 }
292}
293
294void ArgList::ClaimAllArgs(OptSpecifier Id0) const {
Tim Northoverac002d32014-07-09 13:03:37 +0000295 for (auto Arg : filtered(Id0))
296 Arg->claim();
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000297}
298
299void ArgList::ClaimAllArgs() const {
300 for (const_iterator it = begin(), ie = end(); it != ie; ++it)
301 if (!(*it)->isClaimed())
302 (*it)->claim();
303}
304
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000305const char *ArgList::GetOrMakeJoinedArgString(unsigned Index,
306 StringRef LHS,
307 StringRef RHS) const {
308 StringRef Cur = getArgString(Index);
309 if (Cur.size() == LHS.size() + RHS.size() &&
310 Cur.startswith(LHS) && Cur.endswith(RHS))
311 return Cur.data();
312
313 return MakeArgString(LHS + RHS);
314}
315
316//
317
Benjamin Kramer49381be2015-06-23 15:28:10 +0000318void InputArgList::releaseMemory() {
319 // An InputArgList always owns its arguments.
320 for (Arg *A : *this)
321 delete A;
322}
323
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000324InputArgList::InputArgList(const char* const *ArgBegin,
325 const char* const *ArgEnd)
326 : NumInputArgStrings(ArgEnd - ArgBegin) {
327 ArgStrings.append(ArgBegin, ArgEnd);
328}
329
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000330unsigned InputArgList::MakeIndex(StringRef String0) const {
331 unsigned Index = ArgStrings.size();
332
333 // Tuck away so we have a reliable const char *.
Reid Klecknera75eba92013-07-15 16:40:52 +0000334 SynthesizedStrings.push_back(String0);
335 ArgStrings.push_back(SynthesizedStrings.back().c_str());
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000336
337 return Index;
338}
339
340unsigned InputArgList::MakeIndex(StringRef String0,
341 StringRef String1) const {
342 unsigned Index0 = MakeIndex(String0);
343 unsigned Index1 = MakeIndex(String1);
344 assert(Index0 + 1 == Index1 && "Unexpected non-consecutive indices!");
345 (void) Index1;
346 return Index0;
347}
348
Yaron Keren1ee89fc2015-03-17 09:51:17 +0000349const char *InputArgList::MakeArgStringRef(StringRef Str) const {
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000350 return getArgString(MakeIndex(Str));
351}
352
353//
354
David Blaikie9f380a32015-03-16 18:06:57 +0000355DerivedArgList::DerivedArgList(const InputArgList &BaseArgs)
356 : BaseArgs(BaseArgs) {}
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000357
Yaron Keren1ee89fc2015-03-17 09:51:17 +0000358const char *DerivedArgList::MakeArgStringRef(StringRef Str) const {
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000359 return BaseArgs.MakeArgString(Str);
360}
361
David Blaikief70b21a2014-04-20 22:37:46 +0000362void DerivedArgList::AddSynthesizedArg(Arg *A) {
363 SynthesizedArgs.push_back(std::unique_ptr<Arg>(A));
364}
365
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000366Arg *DerivedArgList::MakeFlagArg(const Arg *BaseArg, const Option Opt) const {
Justin Bogner6f070462014-06-20 04:36:29 +0000367 SynthesizedArgs.push_back(
368 make_unique<Arg>(Opt, MakeArgString(Opt.getPrefix() + Opt.getName()),
369 BaseArgs.MakeIndex(Opt.getName()), BaseArg));
David Blaikief70b21a2014-04-20 22:37:46 +0000370 return SynthesizedArgs.back().get();
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000371}
372
373Arg *DerivedArgList::MakePositionalArg(const Arg *BaseArg, const Option Opt,
374 StringRef Value) const {
375 unsigned Index = BaseArgs.MakeIndex(Value);
Justin Bogner6f070462014-06-20 04:36:29 +0000376 SynthesizedArgs.push_back(
377 make_unique<Arg>(Opt, MakeArgString(Opt.getPrefix() + Opt.getName()),
378 Index, BaseArgs.getArgString(Index), BaseArg));
David Blaikief70b21a2014-04-20 22:37:46 +0000379 return SynthesizedArgs.back().get();
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000380}
381
382Arg *DerivedArgList::MakeSeparateArg(const Arg *BaseArg, const Option Opt,
383 StringRef Value) const {
384 unsigned Index = BaseArgs.MakeIndex(Opt.getName(), Value);
Justin Bogner6f070462014-06-20 04:36:29 +0000385 SynthesizedArgs.push_back(
386 make_unique<Arg>(Opt, MakeArgString(Opt.getPrefix() + Opt.getName()),
387 Index, BaseArgs.getArgString(Index + 1), BaseArg));
David Blaikief70b21a2014-04-20 22:37:46 +0000388 return SynthesizedArgs.back().get();
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000389}
390
391Arg *DerivedArgList::MakeJoinedArg(const Arg *BaseArg, const Option Opt,
392 StringRef Value) const {
Yaron Keren075759a2015-03-30 15:42:36 +0000393 unsigned Index = BaseArgs.MakeIndex((Opt.getName() + Value).str());
David Blaikief70b21a2014-04-20 22:37:46 +0000394 SynthesizedArgs.push_back(make_unique<Arg>(
Justin Bogner6f070462014-06-20 04:36:29 +0000395 Opt, MakeArgString(Opt.getPrefix() + Opt.getName()), Index,
396 BaseArgs.getArgString(Index) + Opt.getName().size(), BaseArg));
David Blaikief70b21a2014-04-20 22:37:46 +0000397 return SynthesizedArgs.back().get();
Michael J. Spencer41ee0412012-12-05 00:29:32 +0000398}