2013-04-08 18:41:23 +00:00
|
|
|
//===--- Arg.cpp - Argument Implementations -------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Option/Arg.h"
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
|
|
|
#include "llvm/Option/ArgList.h"
|
|
|
|
#include "llvm/Option/Option.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2015-12-30 11:46:15 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::opt;
|
|
|
|
|
2015-05-27 18:44:32 +00: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) {}
|
|
|
|
|
|
|
|
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) {
|
2013-04-08 18:41:23 +00:00
|
|
|
Values.push_back(Value0);
|
|
|
|
}
|
|
|
|
|
2015-05-27 18:44:32 +00: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) {
|
2013-04-08 18:41:23 +00: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-30 11:46:15 +00:00
|
|
|
void Arg::print(raw_ostream& O) const {
|
|
|
|
O << "<";
|
2013-04-08 18:41:23 +00:00
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
O << " Opt:";
|
|
|
|
Opt.print(O);
|
2013-04-08 18:41:23 +00:00
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
O << " Index:" << Index;
|
2013-04-08 18:41:23 +00:00
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
O << " Values: [";
|
2013-04-08 18:41:23 +00:00
|
|
|
for (unsigned i = 0, e = Values.size(); i != e; ++i) {
|
2015-12-30 11:46:15 +00:00
|
|
|
if (i) O << ", ";
|
|
|
|
O << "'" << Values[i] << "'";
|
2013-04-08 18:41:23 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
O << "]>\n";
|
2013-04-08 18:41:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 16:01:22 +00:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2015-12-30 11:46:15 +00:00
|
|
|
LLVM_DUMP_METHOD void Arg::dump() const { print(dbgs()); }
|
2017-04-16 16:01:22 +00:00
|
|
|
#endif
|
2015-12-30 11:46:15 +00:00
|
|
|
|
2013-04-08 18:41:23 +00:00
|
|
|
std::string Arg::getAsString(const ArgList &Args) const {
|
|
|
|
SmallString<256> Res;
|
|
|
|
llvm::raw_svector_ostream OS(Res);
|
|
|
|
|
|
|
|
ArgStringList ASL;
|
|
|
|
render(Args, ASL);
|
|
|
|
for (ArgStringList::iterator
|
|
|
|
it = ASL.begin(), ie = ASL.end(); it != ie; ++it) {
|
|
|
|
if (it != ASL.begin())
|
|
|
|
OS << ' ';
|
|
|
|
OS << *it;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OS.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const {
|
|
|
|
if (!getOption().hasNoOptAsInput()) {
|
|
|
|
render(Args, Output);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-27 18:44:32 +00:00
|
|
|
Output.append(Values.begin(), Values.end());
|
2013-04-08 18:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Arg::render(const ArgList &Args, ArgStringList &Output) const {
|
|
|
|
switch (getOption().getRenderStyle()) {
|
|
|
|
case Option::RenderValuesStyle:
|
2015-05-27 18:44:32 +00:00
|
|
|
Output.append(Values.begin(), Values.end());
|
2013-04-08 18:41:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Option::RenderCommaJoinedStyle: {
|
|
|
|
SmallString<256> Res;
|
|
|
|
llvm::raw_svector_ostream OS(Res);
|
|
|
|
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-05-27 18:44:32 +00:00
|
|
|
Output.append(Values.begin() + 1, Values.end());
|
2013-04-08 18:41:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Option::RenderSeparateStyle:
|
|
|
|
Output.push_back(Args.MakeArgString(getSpelling()));
|
2015-05-27 18:44:32 +00:00
|
|
|
Output.append(Values.begin(), Values.end());
|
2013-04-08 18:41:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|