2017-06-16 02:43:26 +02:00
|
|
|
//===- Arg.cpp - Argument Implementations ---------------------------------===//
|
2012-12-05 01:29:32 +01:00
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2012-12-05 01:29:32 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
2018-04-30 16:59:11 +02:00
|
|
|
#include "llvm/Config/llvm-config.h"
|
2017-06-16 02:43:26 +02:00
|
|
|
#include "llvm/Option/Arg.h"
|
2012-12-05 01:29:32 +01:00
|
|
|
#include "llvm/Option/ArgList.h"
|
|
|
|
#include "llvm/Option/Option.h"
|
2017-06-16 02:43:26 +02:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2015-12-18 19:55:26 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2017-06-06 13:49:48 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2012-12-05 01:29:32 +01:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::opt;
|
|
|
|
|
2015-03-16 19:06:57 +01:00
|
|
|
Arg::Arg(const Option Opt, StringRef S, unsigned Index, const Arg *BaseArg)
|
|
|
|
: Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false),
|
|
|
|
OwnsValues(false) {}
|
2012-12-05 01:29:32 +01:00
|
|
|
|
2015-03-16 19:06:57 +01:00
|
|
|
Arg::Arg(const Option Opt, StringRef S, unsigned Index, const char *Value0,
|
|
|
|
const Arg *BaseArg)
|
|
|
|
: Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false),
|
|
|
|
OwnsValues(false) {
|
2012-12-05 01:29:32 +01:00
|
|
|
Values.push_back(Value0);
|
|
|
|
}
|
|
|
|
|
2015-03-16 19:06:57 +01:00
|
|
|
Arg::Arg(const Option Opt, StringRef S, unsigned Index, const char *Value0,
|
|
|
|
const char *Value1, const Arg *BaseArg)
|
|
|
|
: Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false),
|
|
|
|
OwnsValues(false) {
|
2012-12-05 01:29:32 +01:00
|
|
|
Values.push_back(Value0);
|
|
|
|
Values.push_back(Value1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Arg::~Arg() {
|
|
|
|
if (OwnsValues) {
|
|
|
|
for (unsigned i = 0, e = Values.size(); i != e; ++i)
|
|
|
|
delete[] Values[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-18 19:55:26 +01:00
|
|
|
void Arg::print(raw_ostream& O) const {
|
|
|
|
O << "<";
|
2012-12-05 01:29:32 +01:00
|
|
|
|
2015-12-18 19:55:26 +01:00
|
|
|
O << " Opt:";
|
|
|
|
Opt.print(O);
|
2012-12-05 01:29:32 +01:00
|
|
|
|
2015-12-18 19:55:26 +01:00
|
|
|
O << " Index:" << Index;
|
2012-12-05 01:29:32 +01:00
|
|
|
|
2015-12-18 19:55:26 +01:00
|
|
|
O << " Values: [";
|
2012-12-05 01:29:32 +01:00
|
|
|
for (unsigned i = 0, e = Values.size(); i != e; ++i) {
|
2015-12-18 19:55:26 +01:00
|
|
|
if (i) O << ", ";
|
|
|
|
O << "'" << Values[i] << "'";
|
2012-12-05 01:29:32 +01:00
|
|
|
}
|
|
|
|
|
2015-12-18 19:55:26 +01:00
|
|
|
O << "]>\n";
|
2012-12-05 01:29:32 +01:00
|
|
|
}
|
|
|
|
|
2017-10-15 16:32:27 +02:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2015-12-18 19:55:26 +01:00
|
|
|
LLVM_DUMP_METHOD void Arg::dump() const { print(dbgs()); }
|
2017-01-28 03:02:38 +01:00
|
|
|
#endif
|
2015-12-18 19:55:26 +01:00
|
|
|
|
2012-12-05 01:29:32 +01:00
|
|
|
std::string Arg::getAsString(const ArgList &Args) const {
|
Let unaliased Args track which Alias they were created from, and use that in Arg::getAsString() for diagnostics
With this, `clang-cl /source-charset:utf-16 test.cc` now prints `invalid
value 'utf-16' in '/source-charset:utf-16'` instead of `invalid value
'utf-16' in '-finput-charset=utf-16'` before, and several other clang-cl
flags produce much less confusing output as well.
Fixes PR29106.
Since an arg and its alias can have different arg types (joined vs not)
and different values (because of AliasArgs<>), I chose to give the Alias
its own Arg object. For convenience, I just store the alias directly in
the unaliased arg – there aren't many arg objects at runtime, so that
seems ok.
Finally, I changed Arg::getAsString() to use the alias's representation
if it's present – that function was already documented as being the
suitable function for diagnostics, and most callers already used it for
diagnostics.
Implementation-wise, Arg::accept() previously used to parse things as
the unaliased option. The core of that switch is now extracted into a
new function acceptInternal() which parses as the _aliased_ option, and
the previously-intermingled unaliasing is now done as an explicit step
afterwards.
(This also changes one place in lld that didn't use getAsString() for
diagnostics, so that that one place now also prints the flag as the user
wrote it, not as it looks after it went through unaliasing.)
Differential Revision: https://reviews.llvm.org/D64253
llvm-svn: 365413
2019-07-09 02:34:08 +02:00
|
|
|
if (Alias)
|
|
|
|
return Alias->getAsString(Args);
|
|
|
|
|
2014-06-27 00:52:05 +02:00
|
|
|
SmallString<256> Res;
|
2017-06-16 02:43:26 +02:00
|
|
|
raw_svector_ostream OS(Res);
|
2012-12-05 01:29:32 +01:00
|
|
|
|
|
|
|
ArgStringList ASL;
|
|
|
|
render(Args, ASL);
|
|
|
|
for (ArgStringList::iterator
|
|
|
|
it = ASL.begin(), ie = ASL.end(); it != ie; ++it) {
|
|
|
|
if (it != ASL.begin())
|
|
|
|
OS << ' ';
|
|
|
|
OS << *it;
|
|
|
|
}
|
|
|
|
|
2020-01-28 20:23:46 +01:00
|
|
|
return std::string(OS.str());
|
2012-12-05 01:29:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const {
|
|
|
|
if (!getOption().hasNoOptAsInput()) {
|
|
|
|
render(Args, Output);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-17 16:29:18 +01:00
|
|
|
Output.append(Values.begin(), Values.end());
|
2012-12-05 01:29:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Arg::render(const ArgList &Args, ArgStringList &Output) const {
|
|
|
|
switch (getOption().getRenderStyle()) {
|
|
|
|
case Option::RenderValuesStyle:
|
2015-02-17 16:29:18 +01:00
|
|
|
Output.append(Values.begin(), Values.end());
|
2012-12-05 01:29:32 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Option::RenderCommaJoinedStyle: {
|
2014-06-27 00:52:05 +02:00
|
|
|
SmallString<256> Res;
|
2017-06-16 02:43:26 +02:00
|
|
|
raw_svector_ostream OS(Res);
|
2012-12-05 01:29:32 +01:00
|
|
|
OS << getSpelling();
|
|
|
|
for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
|
|
|
|
if (i) OS << ',';
|
|
|
|
OS << getValue(i);
|
|
|
|
}
|
|
|
|
Output.push_back(Args.MakeArgString(OS.str()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case Option::RenderJoinedStyle:
|
|
|
|
Output.push_back(Args.GetOrMakeJoinedArgString(
|
|
|
|
getIndex(), getSpelling(), getValue(0)));
|
2015-02-17 16:29:18 +01:00
|
|
|
Output.append(Values.begin() + 1, Values.end());
|
2012-12-05 01:29:32 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Option::RenderSeparateStyle:
|
|
|
|
Output.push_back(Args.MakeArgString(getSpelling()));
|
2015-02-17 16:29:18 +01:00
|
|
|
Output.append(Values.begin(), Values.end());
|
2012-12-05 01:29:32 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|