2011-02-20 13:06:31 +00:00
|
|
|
//===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===//
|
2009-06-02 17:58:47 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Driver/Driver.h"
|
2013-04-08 18:45:10 +00:00
|
|
|
#include "InputInfo.h"
|
|
|
|
#include "ToolChains.h"
|
|
|
|
#include "clang/Basic/Version.h"
|
2014-11-24 09:15:30 +00:00
|
|
|
#include "clang/Config/config.h"
|
2009-06-02 17:58:47 +00:00
|
|
|
#include "clang/Driver/Action.h"
|
|
|
|
#include "clang/Driver/Compilation.h"
|
|
|
|
#include "clang/Driver/DriverDiagnostic.h"
|
|
|
|
#include "clang/Driver/Job.h"
|
|
|
|
#include "clang/Driver/Options.h"
|
2015-05-27 18:47:56 +00:00
|
|
|
#include "clang/Driver/SanitizerArgs.h"
|
2009-06-02 17:58:47 +00:00
|
|
|
#include "clang/Driver/Tool.h"
|
|
|
|
#include "clang/Driver/ToolChain.h"
|
2011-05-02 19:39:53 +00:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2013-12-22 00:07:40 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2014-11-24 09:15:30 +00:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2013-04-08 18:45:10 +00:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2013-12-22 00:07:40 +00:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
|
|
#include "llvm/Option/Arg.h"
|
|
|
|
#include "llvm/Option/ArgList.h"
|
2014-11-24 09:15:30 +00:00
|
|
|
#include "llvm/Option/OptSpecifier.h"
|
2013-12-22 00:07:40 +00:00
|
|
|
#include "llvm/Option/OptTable.h"
|
|
|
|
#include "llvm/Option/Option.h"
|
2013-04-08 18:45:10 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2011-10-20 21:14:49 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2011-02-20 13:06:31 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
|
|
|
#include "llvm/Support/Path.h"
|
2013-04-08 18:45:10 +00:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2014-11-24 09:15:30 +00:00
|
|
|
#include "llvm/Support/Process.h"
|
2011-02-20 13:06:31 +00:00
|
|
|
#include "llvm/Support/Program.h"
|
2013-04-08 18:45:10 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-06-02 17:58:47 +00:00
|
|
|
#include <map>
|
2014-11-24 09:15:30 +00:00
|
|
|
#include <memory>
|
2012-04-14 14:01:31 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
using namespace clang::driver;
|
|
|
|
using namespace clang;
|
2013-12-22 00:07:40 +00:00
|
|
|
using namespace llvm::opt;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2015-05-27 18:47:56 +00:00
|
|
|
Driver::Driver(StringRef ClangExecutable, StringRef DefaultTargetTriple,
|
2011-10-20 21:14:49 +00:00
|
|
|
DiagnosticsEngine &Diags)
|
2015-05-27 18:47:56 +00:00
|
|
|
: Opts(createDriverOptTable()), Diags(Diags), Mode(GCCMode),
|
|
|
|
SaveTemps(SaveTempsNone), ClangExecutable(ClangExecutable),
|
|
|
|
SysRoot(DEFAULT_SYSROOT), UseStdLib(true),
|
|
|
|
DefaultTargetTriple(DefaultTargetTriple),
|
|
|
|
DriverTitle("clang LLVM compiler"), CCPrintOptionsFilename(nullptr),
|
|
|
|
CCPrintHeadersFilename(nullptr), CCLogDiagnosticsFilename(nullptr),
|
|
|
|
CCCPrintBindings(false), CCPrintHeaders(false), CCLogDiagnostics(false),
|
|
|
|
CCGenDiagnostics(false), CCCGenericGCCName(""), CheckInputsExist(true),
|
|
|
|
CCCUsePCH(true), SuppressMissingInputWarning(false) {
|
|
|
|
|
|
|
|
Name = llvm::sys::path::filename(ClangExecutable);
|
2011-02-20 13:06:31 +00:00
|
|
|
Dir = llvm::sys::path::parent_path(ClangExecutable);
|
2010-09-17 15:54:40 +00:00
|
|
|
|
2010-01-23 11:10:26 +00:00
|
|
|
// Compute the path to the resource directory.
|
2011-10-20 21:14:49 +00:00
|
|
|
StringRef ClangResourceDir(CLANG_RESOURCE_DIR);
|
2012-04-14 14:01:31 +00:00
|
|
|
SmallString<128> P(Dir);
|
2015-01-18 16:23:48 +00:00
|
|
|
if (ClangResourceDir != "") {
|
2011-02-20 13:06:31 +00:00
|
|
|
llvm::sys::path::append(P, ClangResourceDir);
|
2015-01-18 16:23:48 +00:00
|
|
|
} else {
|
|
|
|
StringRef ClangLibdirSuffix(CLANG_LIBDIR_SUFFIX);
|
|
|
|
llvm::sys::path::append(P, "..", Twine("lib") + ClangLibdirSuffix, "clang",
|
|
|
|
CLANG_VERSION_STRING);
|
|
|
|
}
|
2010-01-23 11:10:26 +00:00
|
|
|
ResourceDir = P.str();
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Driver::~Driver() {
|
|
|
|
delete Opts;
|
2012-04-14 14:01:31 +00:00
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
llvm::DeleteContainerSeconds(ToolChains);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
void Driver::ParseDriverMode(ArrayRef<const char *> Args) {
|
|
|
|
const std::string OptName =
|
|
|
|
getOpts().getOption(options::OPT_driver_mode).getPrefixedName();
|
|
|
|
|
|
|
|
for (size_t I = 0, E = Args.size(); I != E; ++I) {
|
2015-01-18 16:23:48 +00:00
|
|
|
// Ingore nullptrs, they are response file's EOL markers
|
|
|
|
if (Args[I] == nullptr)
|
|
|
|
continue;
|
2013-12-22 00:07:40 +00:00
|
|
|
const StringRef Arg = Args[I];
|
|
|
|
if (!Arg.startswith(OptName))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const StringRef Value = Arg.drop_front(OptName.size());
|
|
|
|
const unsigned M = llvm::StringSwitch<unsigned>(Value)
|
|
|
|
.Case("gcc", GCCMode)
|
|
|
|
.Case("g++", GXXMode)
|
|
|
|
.Case("cpp", CPPMode)
|
|
|
|
.Case("cl", CLMode)
|
|
|
|
.Default(~0U);
|
|
|
|
|
|
|
|
if (M != ~0U)
|
|
|
|
Mode = static_cast<DriverMode>(M);
|
|
|
|
else
|
|
|
|
Diag(diag::err_drv_unsupported_option_argument) << OptName << Value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
InputArgList *Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings) {
|
2009-06-02 17:58:47 +00:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Command line argument parsing");
|
2013-12-22 00:07:40 +00:00
|
|
|
|
|
|
|
unsigned IncludedFlagsBitmask;
|
|
|
|
unsigned ExcludedFlagsBitmask;
|
2014-11-24 09:15:30 +00:00
|
|
|
std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) =
|
2013-12-22 00:07:40 +00:00
|
|
|
getIncludeExcludeOptionFlagMasks();
|
|
|
|
|
2009-11-19 09:00:00 +00:00
|
|
|
unsigned MissingArgIndex, MissingArgCount;
|
2015-01-18 16:23:48 +00:00
|
|
|
InputArgList *Args = getOpts().ParseArgs(ArgStrings.begin(), ArgStrings.end(),
|
2013-12-22 00:07:40 +00:00
|
|
|
MissingArgIndex, MissingArgCount,
|
|
|
|
IncludedFlagsBitmask,
|
|
|
|
ExcludedFlagsBitmask);
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-11-19 09:00:00 +00:00
|
|
|
// Check for missing argument error.
|
|
|
|
if (MissingArgCount)
|
|
|
|
Diag(clang::diag::err_drv_missing_argument)
|
|
|
|
<< Args->getArgString(MissingArgIndex) << MissingArgCount;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2009-11-19 09:00:00 +00:00
|
|
|
// Check for unsupported options.
|
2015-01-18 16:23:48 +00:00
|
|
|
for (const Arg *A : *Args) {
|
2012-12-02 13:20:44 +00:00
|
|
|
if (A->getOption().hasFlag(options::Unsupported)) {
|
2009-06-02 17:58:47 +00:00
|
|
|
Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(*Args);
|
|
|
|
continue;
|
|
|
|
}
|
2012-04-14 14:01:31 +00:00
|
|
|
|
|
|
|
// Warn about -mcpu= without an argument.
|
2012-08-15 20:02:54 +00:00
|
|
|
if (A->getOption().matches(options::OPT_mcpu_EQ) &&
|
2012-04-14 14:01:31 +00:00
|
|
|
A->containsValue("")) {
|
2012-08-15 20:02:54 +00:00
|
|
|
Diag(clang::diag::warn_drv_empty_joined_argument) <<
|
|
|
|
A->getAsString(*Args);
|
2012-04-14 14:01:31 +00:00
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
for (arg_iterator it = Args->filtered_begin(options::OPT_UNKNOWN),
|
|
|
|
ie = Args->filtered_end(); it != ie; ++it) {
|
|
|
|
Diags.Report(diag::err_drv_unknown_argument) << (*it) ->getAsString(*Args);
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
return Args;
|
|
|
|
}
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
// Determine which compilation mode we are in. We look for options which
|
|
|
|
// affect the phase, starting with the earliest phases, and record which
|
|
|
|
// option we used to determine the final phase.
|
|
|
|
phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg)
|
|
|
|
const {
|
2014-11-24 09:15:30 +00:00
|
|
|
Arg *PhaseArg = nullptr;
|
2011-10-20 21:14:49 +00:00
|
|
|
phases::ID FinalPhase;
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
// -{E,EP,P,M,MM} only run the preprocessor.
|
2013-12-22 00:07:40 +00:00
|
|
|
if (CCCIsCPP() ||
|
2011-10-20 21:14:49 +00:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_E)) ||
|
2014-11-24 09:15:30 +00:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) ||
|
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM)) ||
|
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT__SLASH_P))) {
|
2011-10-20 21:14:49 +00:00
|
|
|
FinalPhase = phases::Preprocess;
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
// -{fsyntax-only,-analyze,emit-ast} only run up to the compiler.
|
2011-10-20 21:14:49 +00:00
|
|
|
} else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
|
2013-04-08 18:45:10 +00:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) ||
|
2014-11-24 09:15:30 +00:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) ||
|
2011-10-20 21:14:49 +00:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||
|
2012-04-14 14:01:31 +00:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) ||
|
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT__migrate)) ||
|
2011-10-20 21:14:49 +00:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT__analyze,
|
2012-04-14 14:01:31 +00:00
|
|
|
options::OPT__analyze_auto)) ||
|
2015-01-18 16:23:48 +00:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_emit_ast))) {
|
2011-10-20 21:14:49 +00:00
|
|
|
FinalPhase = phases::Compile;
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
// -S only runs up to the backend.
|
|
|
|
} else if ((PhaseArg = DAL.getLastArg(options::OPT_S))) {
|
|
|
|
FinalPhase = phases::Backend;
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
// -c only runs up to the assembler.
|
|
|
|
} else if ((PhaseArg = DAL.getLastArg(options::OPT_c))) {
|
|
|
|
FinalPhase = phases::Assemble;
|
|
|
|
|
|
|
|
// Otherwise do everything.
|
|
|
|
} else
|
|
|
|
FinalPhase = phases::Link;
|
|
|
|
|
|
|
|
if (FinalPhaseArg)
|
|
|
|
*FinalPhaseArg = PhaseArg;
|
|
|
|
|
|
|
|
return FinalPhase;
|
|
|
|
}
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
static Arg* MakeInputArg(DerivedArgList &Args, OptTable *Opts,
|
2013-12-22 00:07:40 +00:00
|
|
|
StringRef Value) {
|
|
|
|
Arg *A = new Arg(Opts->getOption(options::OPT_INPUT), Value,
|
|
|
|
Args.getBaseArgs().MakeIndex(Value), Value.data());
|
2014-11-24 09:15:30 +00:00
|
|
|
Args.AddSynthesizedArg(A);
|
2013-12-22 00:07:40 +00:00
|
|
|
A->claim();
|
|
|
|
return A;
|
|
|
|
}
|
|
|
|
|
2010-07-13 17:21:42 +00:00
|
|
|
DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
|
|
|
|
DerivedArgList *DAL = new DerivedArgList(Args);
|
|
|
|
|
2011-02-20 13:06:31 +00:00
|
|
|
bool HasNostdlib = Args.hasArg(options::OPT_nostdlib);
|
2015-01-18 16:23:48 +00:00
|
|
|
for (Arg *A : Args) {
|
2010-07-13 17:21:42 +00:00
|
|
|
// Unfortunately, we have to parse some forwarding options (-Xassembler,
|
|
|
|
// -Xlinker, -Xpreprocessor) because we either integrate their functionality
|
|
|
|
// (assembler and preprocessor), or bypass a previous driver ('collect2').
|
|
|
|
|
|
|
|
// Rewrite linker options, to replace --no-demangle with a custom internal
|
|
|
|
// option.
|
|
|
|
if ((A->getOption().matches(options::OPT_Wl_COMMA) ||
|
|
|
|
A->getOption().matches(options::OPT_Xlinker)) &&
|
|
|
|
A->containsValue("--no-demangle")) {
|
|
|
|
// Add the rewritten no-demangle argument.
|
|
|
|
DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle));
|
|
|
|
|
|
|
|
// Add the remaining values as Xlinker arguments.
|
|
|
|
for (unsigned i = 0, e = A->getNumValues(); i != e; ++i)
|
2012-12-02 13:20:44 +00:00
|
|
|
if (StringRef(A->getValue(i)) != "--no-demangle")
|
2010-07-13 17:21:42 +00:00
|
|
|
DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker),
|
2012-12-02 13:20:44 +00:00
|
|
|
A->getValue(i));
|
2010-07-13 17:21:42 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rewrite preprocessor options, to replace -Wp,-MD,FOO which is used by
|
|
|
|
// some build systems. We don't try to be complete here because we don't
|
|
|
|
// care to encourage this usage model.
|
|
|
|
if (A->getOption().matches(options::OPT_Wp_COMMA) &&
|
2012-12-02 13:20:44 +00:00
|
|
|
(A->getValue(0) == StringRef("-MD") ||
|
|
|
|
A->getValue(0) == StringRef("-MMD"))) {
|
2010-07-13 17:21:42 +00:00
|
|
|
// Rewrite to -MD/-MMD along with -MF.
|
2012-12-02 13:20:44 +00:00
|
|
|
if (A->getValue(0) == StringRef("-MD"))
|
2010-07-13 17:21:42 +00:00
|
|
|
DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD));
|
|
|
|
else
|
|
|
|
DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD));
|
2012-12-02 13:20:44 +00:00
|
|
|
if (A->getNumValues() == 2)
|
|
|
|
DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF),
|
|
|
|
A->getValue(1));
|
2010-07-13 17:21:42 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-02-20 13:06:31 +00:00
|
|
|
// Rewrite reserved library names.
|
|
|
|
if (A->getOption().matches(options::OPT_l)) {
|
2012-12-02 13:20:44 +00:00
|
|
|
StringRef Value = A->getValue();
|
2011-02-20 13:06:31 +00:00
|
|
|
|
|
|
|
// Rewrite unless -nostdlib is present.
|
|
|
|
if (!HasNostdlib && Value == "stdc++") {
|
|
|
|
DAL->AddFlagArg(A, Opts->getOption(
|
|
|
|
options::OPT_Z_reserved_lib_stdcxx));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rewrite unconditionally.
|
|
|
|
if (Value == "cc_kext") {
|
|
|
|
DAL->AddFlagArg(A, Opts->getOption(
|
|
|
|
options::OPT_Z_reserved_lib_cckext));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
// Pick up inputs via the -- option.
|
|
|
|
if (A->getOption().matches(options::OPT__DASH_DASH)) {
|
|
|
|
A->claim();
|
|
|
|
for (unsigned i = 0, e = A->getNumValues(); i != e; ++i)
|
|
|
|
DAL->append(MakeInputArg(*DAL, Opts, A->getValue(i)));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
DAL->append(A);
|
2010-07-13 17:21:42 +00:00
|
|
|
}
|
|
|
|
|
2010-09-17 15:54:40 +00:00
|
|
|
// Add a default value of -mlinker-version=, if one was given and the user
|
|
|
|
// didn't specify one.
|
|
|
|
#if defined(HOST_LINK_VERSION)
|
|
|
|
if (!Args.hasArg(options::OPT_mlinker_version_EQ)) {
|
|
|
|
DAL->AddJoinedArg(0, Opts->getOption(options::OPT_mlinker_version_EQ),
|
|
|
|
HOST_LINK_VERSION);
|
|
|
|
DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-07-13 17:21:42 +00:00
|
|
|
return DAL;
|
|
|
|
}
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
|
2009-06-02 17:58:47 +00:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Compilation construction");
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
// FIXME: Handle environment options which affect driver behavior, somewhere
|
2012-04-14 14:01:31 +00:00
|
|
|
// (client?). GCC_EXEC_PREFIX, LPATH, CC_PRINT_OPTIONS.
|
2011-10-20 21:14:49 +00:00
|
|
|
|
|
|
|
if (char *env = ::getenv("COMPILER_PATH")) {
|
|
|
|
StringRef CompilerPath = env;
|
|
|
|
while (!CompilerPath.empty()) {
|
2013-04-08 18:45:10 +00:00
|
|
|
std::pair<StringRef, StringRef> Split
|
2013-12-22 00:07:40 +00:00
|
|
|
= CompilerPath.split(llvm::sys::EnvPathSeparator);
|
2011-10-20 21:14:49 +00:00
|
|
|
PrefixDirs.push_back(Split.first);
|
|
|
|
CompilerPath = Split.second;
|
|
|
|
}
|
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
// We look for the driver mode option early, because the mode can affect
|
|
|
|
// how other options are parsed.
|
|
|
|
ParseDriverMode(ArgList.slice(1));
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// FIXME: What are we going to do with -V and -b?
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// FIXME: This stuff needs to go into the Compilation, not the driver.
|
2013-12-22 00:07:40 +00:00
|
|
|
bool CCCPrintActions;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2011-05-02 19:39:53 +00:00
|
|
|
InputArgList *Args = ParseArgStrings(ArgList.slice(1));
|
2009-12-15 18:49:47 +00:00
|
|
|
|
|
|
|
// -no-canonical-prefixes is used very early in main.
|
|
|
|
Args->ClaimAllArgs(options::OPT_no_canonical_prefixes);
|
|
|
|
|
2010-09-17 15:54:40 +00:00
|
|
|
// Ignore -pipe.
|
|
|
|
Args->ClaimAllArgs(options::OPT_pipe);
|
|
|
|
|
2009-12-15 18:49:47 +00:00
|
|
|
// Extract -ccc args.
|
2009-06-02 17:58:47 +00:00
|
|
|
//
|
2009-10-14 18:03:49 +00:00
|
|
|
// FIXME: We need to figure out where this behavior should live. Most of it
|
|
|
|
// should be outside in the client; the parts that aren't should have proper
|
|
|
|
// options, either by introducing new ones or by overloading gcc ones like -V
|
|
|
|
// or -b.
|
2009-12-15 18:49:47 +00:00
|
|
|
CCCPrintActions = Args->hasArg(options::OPT_ccc_print_phases);
|
|
|
|
CCCPrintBindings = Args->hasArg(options::OPT_ccc_print_bindings);
|
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT_ccc_gcc_name))
|
2012-12-02 13:20:44 +00:00
|
|
|
CCCGenericGCCName = A->getValue();
|
2009-12-15 18:49:47 +00:00
|
|
|
CCCUsePCH = Args->hasFlag(options::OPT_ccc_pch_is_pch,
|
|
|
|
options::OPT_ccc_pch_is_pth);
|
2012-04-14 14:01:31 +00:00
|
|
|
// FIXME: DefaultTargetTriple is used by the target-prefixed calls to as/ld
|
|
|
|
// and getToolChain is const.
|
2013-12-22 00:07:40 +00:00
|
|
|
if (IsCLMode()) {
|
2014-11-24 09:15:30 +00:00
|
|
|
// clang-cl targets MSVC-style Win32.
|
2013-12-22 00:07:40 +00:00
|
|
|
llvm::Triple T(DefaultTargetTriple);
|
2014-11-24 09:15:30 +00:00
|
|
|
T.setOS(llvm::Triple::Win32);
|
|
|
|
T.setEnvironment(llvm::Triple::MSVC);
|
2013-12-22 00:07:40 +00:00
|
|
|
DefaultTargetTriple = T.str();
|
|
|
|
}
|
2012-04-14 14:01:31 +00:00
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT_target))
|
2012-12-02 13:20:44 +00:00
|
|
|
DefaultTargetTriple = A->getValue();
|
2009-12-15 18:49:47 +00:00
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT_ccc_install_dir))
|
2012-12-02 13:20:44 +00:00
|
|
|
Dir = InstalledDir = A->getValue();
|
2011-02-20 13:06:31 +00:00
|
|
|
for (arg_iterator it = Args->filtered_begin(options::OPT_B),
|
|
|
|
ie = Args->filtered_end(); it != ie; ++it) {
|
|
|
|
const Arg *A = *it;
|
|
|
|
A->claim();
|
2012-12-02 13:20:44 +00:00
|
|
|
PrefixDirs.push_back(A->getValue(0));
|
2011-02-20 13:06:31 +00:00
|
|
|
}
|
2011-05-02 19:39:53 +00:00
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT__sysroot_EQ))
|
2012-12-02 13:20:44 +00:00
|
|
|
SysRoot = A->getValue();
|
2013-12-22 00:07:40 +00:00
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT__dyld_prefix_EQ))
|
|
|
|
DyldPrefix = A->getValue();
|
2011-05-02 19:39:53 +00:00
|
|
|
if (Args->hasArg(options::OPT_nostdlib))
|
|
|
|
UseStdLib = false;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT_resource_dir))
|
|
|
|
ResourceDir = A->getValue();
|
|
|
|
|
2015-05-27 18:47:56 +00:00
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT_save_temps_EQ)) {
|
|
|
|
SaveTemps = llvm::StringSwitch<SaveTempsMode>(A->getValue())
|
|
|
|
.Case("cwd", SaveTempsCwd)
|
|
|
|
.Case("obj", SaveTempsObj)
|
|
|
|
.Default(SaveTempsCwd);
|
|
|
|
}
|
|
|
|
|
2010-07-13 17:21:42 +00:00
|
|
|
// Perform the default argument translations.
|
|
|
|
DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args);
|
|
|
|
|
2012-04-14 14:01:31 +00:00
|
|
|
// Owned by the host.
|
|
|
|
const ToolChain &TC = getToolChain(*Args);
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// The compilation takes ownership of Args.
|
2012-04-14 14:01:31 +00:00
|
|
|
Compilation *C = new Compilation(*this, TC, Args, TranslatedArgs);
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
if (!HandleImmediateArgs(*C))
|
|
|
|
return C;
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
// Construct the list of inputs.
|
|
|
|
InputList Inputs;
|
2013-12-22 00:07:40 +00:00
|
|
|
BuildInputs(C->getDefaultToolChain(), *TranslatedArgs, Inputs);
|
2011-10-20 21:14:49 +00:00
|
|
|
|
2012-04-14 14:01:31 +00:00
|
|
|
// Construct the list of abstract actions to perform for this compilation. On
|
2014-11-24 09:15:30 +00:00
|
|
|
// MachO targets this uses the driver-driver and universal actions.
|
|
|
|
if (TC.getTriple().isOSBinFormatMachO())
|
2010-09-17 15:54:40 +00:00
|
|
|
BuildUniversalActions(C->getDefaultToolChain(), C->getArgs(),
|
2011-10-20 21:14:49 +00:00
|
|
|
Inputs, C->getActions());
|
2009-06-02 17:58:47 +00:00
|
|
|
else
|
2011-10-20 21:14:49 +00:00
|
|
|
BuildActions(C->getDefaultToolChain(), C->getArgs(), Inputs,
|
|
|
|
C->getActions());
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
if (CCCPrintActions) {
|
|
|
|
PrintActions(*C);
|
|
|
|
return C;
|
|
|
|
}
|
|
|
|
|
|
|
|
BuildJobs(*C);
|
|
|
|
|
|
|
|
return C;
|
|
|
|
}
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
// When clang crashes, produce diagnostic information including the fully
|
|
|
|
// preprocessed source file(s). Request that the developer attach the
|
|
|
|
// diagnostic information to a bug report.
|
|
|
|
void Driver::generateCompilationDiagnostics(Compilation &C,
|
2015-01-18 16:23:48 +00:00
|
|
|
const Command &FailingCommand) {
|
2012-04-14 14:01:31 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics))
|
2012-08-15 20:02:54 +00:00
|
|
|
return;
|
2012-04-14 14:01:31 +00:00
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// Don't try to generate diagnostics for link or dsymutil jobs.
|
2015-01-18 16:23:48 +00:00
|
|
|
if (FailingCommand.getCreator().isLinkJob() ||
|
|
|
|
FailingCommand.getCreator().isDsymutilJob())
|
2012-04-14 14:01:31 +00:00
|
|
|
return;
|
|
|
|
|
2012-08-15 20:02:54 +00:00
|
|
|
// Print the version of the compiler.
|
|
|
|
PrintVersion(C, llvm::errs());
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
2012-08-15 20:02:54 +00:00
|
|
|
<< "PLEASE submit a bug report to " BUG_REPORT_URL " and include the "
|
|
|
|
"crash backtrace, preprocessed source, and associated run script.";
|
2011-10-20 21:14:49 +00:00
|
|
|
|
|
|
|
// Suppress driver output and emit preprocessor output to temp file.
|
2013-12-22 00:07:40 +00:00
|
|
|
Mode = CPPMode;
|
2011-10-20 21:14:49 +00:00
|
|
|
CCGenDiagnostics = true;
|
|
|
|
|
2012-04-14 14:01:31 +00:00
|
|
|
// Save the original job command(s).
|
2015-01-18 16:23:48 +00:00
|
|
|
Command Cmd = FailingCommand;
|
2012-04-14 14:01:31 +00:00
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// Keep track of whether we produce any errors while trying to produce
|
|
|
|
// preprocessed sources.
|
|
|
|
DiagnosticErrorTrap Trap(Diags);
|
|
|
|
|
|
|
|
// Suppress tool output.
|
2011-10-20 21:14:49 +00:00
|
|
|
C.initCompilationForDiagnostics();
|
|
|
|
|
|
|
|
// Construct the list of inputs.
|
|
|
|
InputList Inputs;
|
|
|
|
BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs);
|
|
|
|
|
|
|
|
for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
|
|
|
|
bool IgnoreInput = false;
|
|
|
|
|
|
|
|
// Ignore input from stdin or any inputs that cannot be preprocessed.
|
2014-11-24 09:15:30 +00:00
|
|
|
// Check type first as not all linker inputs have a value.
|
|
|
|
if (types::getPreprocessedType(it->first) == types::TY_INVALID) {
|
|
|
|
IgnoreInput = true;
|
|
|
|
} else if (!strcmp(it->second->getValue(), "-")) {
|
2011-10-20 21:14:49 +00:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s) - ignoring input from stdin"
|
|
|
|
".";
|
|
|
|
IgnoreInput = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IgnoreInput) {
|
|
|
|
it = Inputs.erase(it);
|
|
|
|
ie = Inputs.end();
|
|
|
|
} else {
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
if (Inputs.empty()) {
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s) - no preprocessable inputs.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
// Don't attempt to generate preprocessed files if multiple -arch options are
|
2012-04-14 14:01:31 +00:00
|
|
|
// used, unless they're all duplicates.
|
|
|
|
llvm::StringSet<> ArchNames;
|
2015-01-18 16:23:48 +00:00
|
|
|
for (const Arg *A : C.getArgs()) {
|
2011-10-20 21:14:49 +00:00
|
|
|
if (A->getOption().matches(options::OPT_arch)) {
|
2012-12-02 13:20:44 +00:00
|
|
|
StringRef ArchName = A->getValue();
|
2012-04-14 14:01:31 +00:00
|
|
|
ArchNames.insert(ArchName);
|
2011-10-20 21:14:49 +00:00
|
|
|
}
|
|
|
|
}
|
2012-04-14 14:01:31 +00:00
|
|
|
if (ArchNames.size() > 1) {
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s) - cannot generate "
|
|
|
|
"preprocessed source with multiple -arch options.";
|
|
|
|
return;
|
|
|
|
}
|
2011-10-20 21:14:49 +00:00
|
|
|
|
2012-04-14 14:01:31 +00:00
|
|
|
// Construct the list of abstract actions to perform for this compilation. On
|
|
|
|
// Darwin OSes this uses the driver-driver and builds universal actions.
|
|
|
|
const ToolChain &TC = C.getDefaultToolChain();
|
2014-11-24 09:15:30 +00:00
|
|
|
if (TC.getTriple().isOSBinFormatMachO())
|
2012-04-14 14:01:31 +00:00
|
|
|
BuildUniversalActions(TC, C.getArgs(), Inputs, C.getActions());
|
2011-10-20 21:14:49 +00:00
|
|
|
else
|
2012-04-14 14:01:31 +00:00
|
|
|
BuildActions(TC, C.getArgs(), Inputs, C.getActions());
|
2011-10-20 21:14:49 +00:00
|
|
|
|
|
|
|
BuildJobs(C);
|
|
|
|
|
|
|
|
// If there were errors building the compilation, quit now.
|
2013-04-08 18:45:10 +00:00
|
|
|
if (Trap.hasErrorOccurred()) {
|
2011-10-20 21:14:49 +00:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s).";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate preprocessed output.
|
2013-04-08 18:45:10 +00:00
|
|
|
SmallVector<std::pair<int, const Command *>, 4> FailingCommands;
|
|
|
|
C.ExecuteJob(C.getJobs(), FailingCommands);
|
2011-10-20 21:14:49 +00:00
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
// If any of the preprocessing commands failed, clean up and exit.
|
|
|
|
if (!FailingCommands.empty()) {
|
2015-05-27 18:47:56 +00:00
|
|
|
if (!isSaveTempsEnabled())
|
2015-01-18 16:23:48 +00:00
|
|
|
C.CleanupFileList(C.getTempFiles(), true);
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
2015-01-18 16:23:48 +00:00
|
|
|
<< "Error generating preprocessed source(s).";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ArgStringList &TempFiles = C.getTempFiles();
|
|
|
|
if (TempFiles.empty()) {
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s).";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
2012-08-15 20:02:54 +00:00
|
|
|
<< "\n********************\n\n"
|
2015-01-18 16:23:48 +00:00
|
|
|
"PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:\n"
|
|
|
|
"Preprocessed source(s) and associated run script(s) are located at:";
|
|
|
|
|
|
|
|
SmallString<128> VFS;
|
|
|
|
for (const char *TempFile : TempFiles) {
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg) << TempFile;
|
|
|
|
if (StringRef(TempFile).endswith(".cache")) {
|
2014-11-24 09:15:30 +00:00
|
|
|
// In some cases (modules) we'll dump extra data to help with reproducing
|
|
|
|
// the crash into a directory next to the output.
|
2015-01-18 16:23:48 +00:00
|
|
|
VFS = llvm::sys::path::filename(TempFile);
|
|
|
|
llvm::sys::path::append(VFS, "vfs", "vfs.yaml");
|
2012-04-14 14:01:31 +00:00
|
|
|
}
|
2015-01-18 16:23:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Assume associated files are based off of the first temporary file.
|
|
|
|
CrashReportInfo CrashInfo(TempFiles[0], VFS);
|
|
|
|
|
|
|
|
std::string Script = CrashInfo.Filename.rsplit('.').first.str() + ".sh";
|
|
|
|
std::error_code EC;
|
|
|
|
llvm::raw_fd_ostream ScriptOS(Script, EC, llvm::sys::fs::F_Excl);
|
|
|
|
if (EC) {
|
2012-08-15 20:02:54 +00:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
2015-01-18 16:23:48 +00:00
|
|
|
<< "Error generating run script: " + Script + " " + EC.message();
|
2011-10-20 21:14:49 +00:00
|
|
|
} else {
|
2015-05-27 18:47:56 +00:00
|
|
|
ScriptOS << "# Crash reproducer for " << getClangFullVersion() << "\n"
|
|
|
|
<< "# Original command: ";
|
|
|
|
Cmd.Print(ScriptOS, "\n", /*Quote=*/true);
|
2015-01-18 16:23:48 +00:00
|
|
|
Cmd.Print(ScriptOS, "\n", /*Quote=*/true, &CrashInfo);
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg) << Script;
|
|
|
|
}
|
2011-10-20 21:14:49 +00:00
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
for (const auto &A : C.getArgs().filtered(options::OPT_frewrite_map_file,
|
|
|
|
options::OPT_frewrite_map_file_EQ))
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg) << A->getValue();
|
|
|
|
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "\n\n********************";
|
|
|
|
}
|
|
|
|
|
|
|
|
void Driver::setUpResponseFiles(Compilation &C, Job &J) {
|
|
|
|
if (JobList *Jobs = dyn_cast<JobList>(&J)) {
|
|
|
|
for (auto &Job : *Jobs)
|
|
|
|
setUpResponseFiles(C, Job);
|
|
|
|
return;
|
2011-10-20 21:14:49 +00:00
|
|
|
}
|
2015-01-18 16:23:48 +00:00
|
|
|
|
|
|
|
Command *CurCommand = dyn_cast<Command>(&J);
|
|
|
|
if (!CurCommand)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Since argumentsFitWithinSystemLimits() may underestimate system's capacity
|
|
|
|
// if the tool does not support response files, there is a chance/ that things
|
|
|
|
// will just work without a response file, so we silently just skip it.
|
|
|
|
if (CurCommand->getCreator().getResponseFilesSupport() == Tool::RF_None ||
|
|
|
|
llvm::sys::argumentsFitWithinSystemLimits(CurCommand->getArguments()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::string TmpName = GetTemporaryPath("response", "txt");
|
|
|
|
CurCommand->setResponseFile(C.addTempFile(C.getArgs().MakeArgString(
|
|
|
|
TmpName.c_str())));
|
2011-10-20 21:14:49 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
int Driver::ExecuteCompilation(Compilation &C,
|
|
|
|
SmallVectorImpl< std::pair<int, const Command *> > &FailingCommands) {
|
2009-07-04 13:58:54 +00:00
|
|
|
// Just print if -### was present.
|
|
|
|
if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
|
2013-12-22 00:07:40 +00:00
|
|
|
C.getJobs().Print(llvm::errs(), "\n", true);
|
2009-07-04 13:58:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there were errors building the compilation, quit now.
|
2011-10-20 21:14:49 +00:00
|
|
|
if (Diags.hasErrorOccurred())
|
2009-07-04 13:58:54 +00:00
|
|
|
return 1;
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
// Set up response file names for each command, if necessary
|
|
|
|
setUpResponseFiles(C, C.getJobs());
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
C.ExecuteJob(C.getJobs(), FailingCommands);
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-07-04 13:58:54 +00:00
|
|
|
// Remove temp files.
|
|
|
|
C.CleanupFileList(C.getTempFiles());
|
|
|
|
|
2010-05-27 15:17:06 +00:00
|
|
|
// If the command succeeded, we are done.
|
2013-04-08 18:45:10 +00:00
|
|
|
if (FailingCommands.empty())
|
|
|
|
return 0;
|
2009-07-04 13:58:54 +00:00
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// Otherwise, remove result files and print extra information about abnormal
|
|
|
|
// failures.
|
|
|
|
for (SmallVectorImpl< std::pair<int, const Command *> >::iterator it =
|
|
|
|
FailingCommands.begin(), ie = FailingCommands.end(); it != ie; ++it) {
|
|
|
|
int Res = it->first;
|
|
|
|
const Command *FailingCommand = it->second;
|
|
|
|
|
|
|
|
// Remove result files if we're not saving temps.
|
2015-05-27 18:47:56 +00:00
|
|
|
if (!isSaveTempsEnabled()) {
|
2013-04-08 18:45:10 +00:00
|
|
|
const JobAction *JA = cast<JobAction>(&FailingCommand->getSource());
|
|
|
|
C.CleanupFileMap(C.getResultFiles(), JA, true);
|
|
|
|
|
|
|
|
// Failure result files are valid unless we crashed.
|
|
|
|
if (Res < 0)
|
|
|
|
C.CleanupFileMap(C.getFailureResultFiles(), JA, true);
|
|
|
|
}
|
2012-04-14 14:01:31 +00:00
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
// Print extra information about abnormal failures, if possible.
|
|
|
|
//
|
|
|
|
// This is ad-hoc, but we don't want to be excessively noisy. If the result
|
2014-11-24 09:15:30 +00:00
|
|
|
// status was 1, assume the command failed normally. In particular, if it
|
2013-04-08 18:45:10 +00:00
|
|
|
// was the compiler then assume it gave a reasonable error code. Failures
|
|
|
|
// in other tools are less common, and they generally have worse
|
|
|
|
// diagnostics, so always print the diagnostic there.
|
|
|
|
const Tool &FailingTool = FailingCommand->getCreator();
|
|
|
|
|
|
|
|
if (!FailingCommand->getCreator().hasGoodDiagnostics() || Res != 1) {
|
|
|
|
// FIXME: See FIXME above regarding result code interpretation.
|
|
|
|
if (Res < 0)
|
|
|
|
Diag(clang::diag::err_drv_command_signalled)
|
|
|
|
<< FailingTool.getShortName();
|
|
|
|
else
|
|
|
|
Diag(clang::diag::err_drv_command_failed)
|
|
|
|
<< FailingTool.getShortName() << Res;
|
|
|
|
}
|
2009-07-04 13:58:54 +00:00
|
|
|
}
|
2013-04-08 18:45:10 +00:00
|
|
|
return 0;
|
2009-07-04 13:58:54 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
void Driver::PrintHelp(bool ShowHidden) const {
|
2013-12-22 00:07:40 +00:00
|
|
|
unsigned IncludedFlagsBitmask;
|
|
|
|
unsigned ExcludedFlagsBitmask;
|
2014-11-24 09:15:30 +00:00
|
|
|
std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) =
|
2013-12-22 00:07:40 +00:00
|
|
|
getIncludeExcludeOptionFlagMasks();
|
|
|
|
|
|
|
|
ExcludedFlagsBitmask |= options::NoDriverOption;
|
|
|
|
if (!ShowHidden)
|
|
|
|
ExcludedFlagsBitmask |= HelpHidden;
|
|
|
|
|
2010-03-03 17:28:16 +00:00
|
|
|
getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(),
|
2013-12-22 00:07:40 +00:00
|
|
|
IncludedFlagsBitmask, ExcludedFlagsBitmask);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const {
|
2009-10-14 18:03:49 +00:00
|
|
|
// FIXME: The following handlers should use a callback mechanism, we don't
|
|
|
|
// know what the client would like to do.
|
2010-01-23 11:10:26 +00:00
|
|
|
OS << getClangFullVersion() << '\n';
|
2009-06-02 17:58:47 +00:00
|
|
|
const ToolChain &TC = C.getDefaultToolChain();
|
2009-10-14 18:03:49 +00:00
|
|
|
OS << "Target: " << TC.getTripleString() << '\n';
|
2009-06-22 08:08:35 +00:00
|
|
|
|
|
|
|
// Print the threading model.
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Arg *A = C.getArgs().getLastArg(options::OPT_mthread_model)) {
|
|
|
|
// Don't print if the ToolChain would have barfed on it already
|
|
|
|
if (TC.isThreadModelSupported(A->getValue()))
|
|
|
|
OS << "Thread model: " << A->getValue();
|
|
|
|
} else
|
|
|
|
OS << "Thread model: " << TC.getThreadModel();
|
|
|
|
OS << '\n';
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2010-05-27 15:17:06 +00:00
|
|
|
/// PrintDiagnosticCategories - Implement the --print-diagnostic-categories
|
|
|
|
/// option.
|
2011-10-20 21:14:49 +00:00
|
|
|
static void PrintDiagnosticCategories(raw_ostream &OS) {
|
2011-06-12 15:46:16 +00:00
|
|
|
// Skip the empty category.
|
|
|
|
for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories();
|
|
|
|
i != max; ++i)
|
|
|
|
OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n';
|
2010-05-27 15:17:06 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
bool Driver::HandleImmediateArgs(const Compilation &C) {
|
2010-07-13 17:21:42 +00:00
|
|
|
// The order these options are handled in gcc is all over the place, but we
|
2009-10-14 18:03:49 +00:00
|
|
|
// don't expect inconsistencies w.r.t. that to matter in practice.
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2011-02-20 13:06:31 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_dumpmachine)) {
|
|
|
|
llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_dumpversion)) {
|
2011-02-20 13:06:31 +00:00
|
|
|
// Since -dumpversion is only implemented for pedantic GCC compatibility, we
|
|
|
|
// return an answer which matches our definition of __VERSION__.
|
|
|
|
//
|
|
|
|
// If we want to return a more correct answer some day, then we should
|
|
|
|
// introduce a non-pedantically GCC compatible mode to Clang in which we
|
|
|
|
// provide sensible definitions for -dumpversion, __VERSION__, etc.
|
|
|
|
llvm::outs() << "4.2.1\n";
|
2009-06-02 17:58:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
2010-07-13 17:21:42 +00:00
|
|
|
|
2010-05-27 15:17:06 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) {
|
|
|
|
PrintDiagnosticCategories(llvm::outs());
|
|
|
|
return false;
|
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2012-08-15 20:02:54 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_help) ||
|
2009-06-02 17:58:47 +00:00
|
|
|
C.getArgs().hasArg(options::OPT__help_hidden)) {
|
|
|
|
PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (C.getArgs().hasArg(options::OPT__version)) {
|
2009-10-14 18:03:49 +00:00
|
|
|
// Follow gcc behavior and use stdout for --version and stderr for -v.
|
|
|
|
PrintVersion(C, llvm::outs());
|
2009-06-02 17:58:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_v) ||
|
2009-06-02 17:58:47 +00:00
|
|
|
C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
|
2009-10-14 18:03:49 +00:00
|
|
|
PrintVersion(C, llvm::errs());
|
2009-06-02 17:58:47 +00:00
|
|
|
SuppressMissingInputWarning = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ToolChain &TC = C.getDefaultToolChain();
|
2013-12-22 00:07:40 +00:00
|
|
|
|
|
|
|
if (C.getArgs().hasArg(options::OPT_v))
|
|
|
|
TC.printVerboseInfo(llvm::errs());
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_print_search_dirs)) {
|
|
|
|
llvm::outs() << "programs: =";
|
|
|
|
for (ToolChain::path_list::const_iterator it = TC.getProgramPaths().begin(),
|
|
|
|
ie = TC.getProgramPaths().end(); it != ie; ++it) {
|
|
|
|
if (it != TC.getProgramPaths().begin())
|
|
|
|
llvm::outs() << ':';
|
|
|
|
llvm::outs() << *it;
|
|
|
|
}
|
|
|
|
llvm::outs() << "\n";
|
2011-10-20 21:14:49 +00:00
|
|
|
llvm::outs() << "libraries: =" << ResourceDir;
|
2011-07-17 15:40:56 +00:00
|
|
|
|
2012-05-03 16:53:59 +00:00
|
|
|
StringRef sysroot = C.getSysRoot();
|
2011-07-17 15:40:56 +00:00
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
for (ToolChain::path_list::const_iterator it = TC.getFilePaths().begin(),
|
2009-06-02 17:58:47 +00:00
|
|
|
ie = TC.getFilePaths().end(); it != ie; ++it) {
|
2011-10-20 21:14:49 +00:00
|
|
|
llvm::outs() << ':';
|
2011-07-17 15:40:56 +00:00
|
|
|
const char *path = it->c_str();
|
|
|
|
if (path[0] == '=')
|
|
|
|
llvm::outs() << sysroot << path + 1;
|
|
|
|
else
|
|
|
|
llvm::outs() << path;
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
llvm::outs() << "\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// FIXME: The following handlers should use a callback mechanism, we don't
|
|
|
|
// know what the client would like to do.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) {
|
2012-12-02 13:20:44 +00:00
|
|
|
llvm::outs() << GetFilePath(A->getValue(), TC) << "\n";
|
2009-06-02 17:58:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) {
|
2012-12-02 13:20:44 +00:00
|
|
|
llvm::outs() << GetProgramPath(A->getValue(), TC) << "\n";
|
2009-06-02 17:58:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) {
|
2009-10-14 18:03:49 +00:00
|
|
|
llvm::outs() << GetFilePath("libgcc.a", TC) << "\n";
|
2009-06-02 17:58:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-22 08:08:35 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_print_multi_lib)) {
|
2014-11-24 09:15:30 +00:00
|
|
|
const MultilibSet &Multilibs = TC.getMultilibs();
|
2009-06-22 08:08:35 +00:00
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
for (MultilibSet::const_iterator I = Multilibs.begin(), E = Multilibs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
llvm::outs() << *I << "\n";
|
2009-06-22 08:08:35 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_print_multi_directory)) {
|
|
|
|
const MultilibSet &Multilibs = TC.getMultilibs();
|
|
|
|
for (MultilibSet::const_iterator I = Multilibs.begin(), E = Multilibs.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (I->gccSuffix().empty())
|
|
|
|
llvm::outs() << ".\n";
|
|
|
|
else {
|
|
|
|
StringRef Suffix(I->gccSuffix());
|
|
|
|
assert(Suffix.front() == '/');
|
|
|
|
llvm::outs() << Suffix.substr(1) << "\n";
|
|
|
|
}
|
2009-06-22 08:08:35 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
if (C.getArgs().hasArg(options::OPT_print_multi_os_directory)) {
|
|
|
|
// FIXME: This should print out "lib/../lib", "lib/../lib64", or
|
|
|
|
// "lib/../lib32" as appropriate for the toolchain. For now, print
|
|
|
|
// nothing because it's not supported yet.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
static unsigned PrintActions1(const Compilation &C, Action *A,
|
2009-06-02 17:58:47 +00:00
|
|
|
std::map<Action*, unsigned> &Ids) {
|
|
|
|
if (Ids.count(A))
|
|
|
|
return Ids[A];
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
std::string str;
|
|
|
|
llvm::raw_string_ostream os(str);
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
os << Action::getClassName(A->getKind()) << ", ";
|
2009-10-14 18:03:49 +00:00
|
|
|
if (InputAction *IA = dyn_cast<InputAction>(A)) {
|
2012-12-02 13:20:44 +00:00
|
|
|
os << "\"" << IA->getInputArg().getValue() << "\"";
|
2009-06-02 17:58:47 +00:00
|
|
|
} else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) {
|
2012-08-15 20:02:54 +00:00
|
|
|
os << '"' << BIA->getArchName() << '"'
|
2009-06-02 17:58:47 +00:00
|
|
|
<< ", {" << PrintActions1(C, *BIA->begin(), Ids) << "}";
|
|
|
|
} else {
|
|
|
|
os << "{";
|
|
|
|
for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) {
|
|
|
|
os << PrintActions1(C, *it, Ids);
|
|
|
|
++it;
|
|
|
|
if (it != ie)
|
|
|
|
os << ", ";
|
|
|
|
}
|
|
|
|
os << "}";
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned Id = Ids.size();
|
|
|
|
Ids[A] = Id;
|
2009-10-14 18:03:49 +00:00
|
|
|
llvm::errs() << Id << ": " << os.str() << ", "
|
2009-06-02 17:58:47 +00:00
|
|
|
<< types::getTypeName(A->getType()) << "\n";
|
|
|
|
|
|
|
|
return Id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Driver::PrintActions(const Compilation &C) const {
|
|
|
|
std::map<Action*, unsigned> Ids;
|
2009-10-14 18:03:49 +00:00
|
|
|
for (ActionList::const_iterator it = C.getActions().begin(),
|
2009-06-02 17:58:47 +00:00
|
|
|
ie = C.getActions().end(); it != ie; ++it)
|
|
|
|
PrintActions1(C, *it, Ids);
|
|
|
|
}
|
|
|
|
|
2011-06-12 15:46:16 +00:00
|
|
|
/// \brief Check whether the given input tree contains any compilation or
|
|
|
|
/// assembly actions.
|
|
|
|
static bool ContainsCompileOrAssembleAction(const Action *A) {
|
2015-01-18 16:23:48 +00:00
|
|
|
if (isa<CompileJobAction>(A) ||
|
|
|
|
isa<BackendJobAction>(A) ||
|
|
|
|
isa<AssembleJobAction>(A))
|
2010-07-13 17:21:42 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it)
|
2011-06-12 15:46:16 +00:00
|
|
|
if (ContainsCompileOrAssembleAction(*it))
|
2010-07-13 17:21:42 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-17 15:54:40 +00:00
|
|
|
void Driver::BuildUniversalActions(const ToolChain &TC,
|
2013-12-22 00:07:40 +00:00
|
|
|
DerivedArgList &Args,
|
2011-10-20 21:14:49 +00:00
|
|
|
const InputList &BAInputs,
|
2009-06-02 17:58:47 +00:00
|
|
|
ActionList &Actions) const {
|
2009-10-14 18:03:49 +00:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Building universal build actions");
|
|
|
|
// Collect the list of architectures. Duplicates are allowed, but should only
|
|
|
|
// be handled once (in the order seen).
|
2009-06-02 17:58:47 +00:00
|
|
|
llvm::StringSet<> ArchNames;
|
2011-10-20 21:14:49 +00:00
|
|
|
SmallVector<const char *, 4> Archs;
|
2015-01-18 16:23:48 +00:00
|
|
|
for (Arg *A : Args) {
|
2009-11-19 09:00:00 +00:00
|
|
|
if (A->getOption().matches(options::OPT_arch)) {
|
2009-10-14 18:03:49 +00:00
|
|
|
// Validate the option here; we don't save the type here because its
|
|
|
|
// particular spelling may participate in other driver choices.
|
|
|
|
llvm::Triple::ArchType Arch =
|
2014-11-24 09:15:30 +00:00
|
|
|
tools::darwin::getArchTypeForMachOArchName(A->getValue());
|
2009-10-14 18:03:49 +00:00
|
|
|
if (Arch == llvm::Triple::UnknownArch) {
|
|
|
|
Diag(clang::diag::err_drv_invalid_arch_name)
|
|
|
|
<< A->getAsString(Args);
|
|
|
|
continue;
|
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
A->claim();
|
2015-01-18 16:23:48 +00:00
|
|
|
if (ArchNames.insert(A->getValue()).second)
|
2012-12-02 13:20:44 +00:00
|
|
|
Archs.push_back(A->getValue());
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// When there is no explicit arch for this platform, make sure we still bind
|
|
|
|
// the architecture (to the default) so that -Xarch_ is handled correctly.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (!Archs.size())
|
2012-12-02 13:20:44 +00:00
|
|
|
Archs.push_back(Args.MakeArgString(TC.getDefaultUniversalArchName()));
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
ActionList SingleActions;
|
2011-10-20 21:14:49 +00:00
|
|
|
BuildActions(TC, Args, BAInputs, SingleActions);
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2010-07-13 17:21:42 +00:00
|
|
|
// Add in arch bindings for every top level action, as well as lipo and
|
|
|
|
// dsymutil steps if needed.
|
2009-06-02 17:58:47 +00:00
|
|
|
for (unsigned i = 0, e = SingleActions.size(); i != e; ++i) {
|
|
|
|
Action *Act = SingleActions[i];
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// Make sure we can lipo this kind of output. If not (and it is an actual
|
|
|
|
// output) then we disallow, since we can't create an output file with the
|
|
|
|
// right name without overwriting it. We could remove this oddity by just
|
|
|
|
// changing the output names to include the arch, which would also fix
|
2009-06-02 17:58:47 +00:00
|
|
|
// -save-temps. Compatibility wins for now.
|
|
|
|
|
|
|
|
if (Archs.size() > 1 && !types::canLipoType(Act->getType()))
|
|
|
|
Diag(clang::diag::err_drv_invalid_output_with_multiple_archs)
|
|
|
|
<< types::getTypeName(Act->getType());
|
|
|
|
|
|
|
|
ActionList Inputs;
|
2010-03-16 16:52:15 +00:00
|
|
|
for (unsigned i = 0, e = Archs.size(); i != e; ++i) {
|
2015-01-18 16:23:48 +00:00
|
|
|
Inputs.push_back(
|
|
|
|
new BindArchAction(std::unique_ptr<Action>(Act), Archs[i]));
|
2010-03-16 16:52:15 +00:00
|
|
|
if (i != 0)
|
|
|
|
Inputs.back()->setOwnsInputs(false);
|
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// Lipo if necessary, we do it this way because we need to set the arch flag
|
|
|
|
// so that -Xarch_ gets overwritten.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing)
|
|
|
|
Actions.append(Inputs.begin(), Inputs.end());
|
|
|
|
else
|
|
|
|
Actions.push_back(new LipoJobAction(Inputs, Act->getType()));
|
2010-07-13 17:21:42 +00:00
|
|
|
|
2012-04-14 14:01:31 +00:00
|
|
|
// Handle debug info queries.
|
|
|
|
Arg *A = Args.getLastArg(options::OPT_g_Group);
|
2012-05-03 16:53:59 +00:00
|
|
|
if (A && !A->getOption().matches(options::OPT_g0) &&
|
|
|
|
!A->getOption().matches(options::OPT_gstabs) &&
|
|
|
|
ContainsCompileOrAssembleAction(Actions.back())) {
|
2012-08-15 20:02:54 +00:00
|
|
|
|
2012-05-03 16:53:59 +00:00
|
|
|
// Add a 'dsymutil' step if necessary, when debug info is enabled and we
|
|
|
|
// have a compile input. We need to run 'dsymutil' ourselves in such cases
|
2013-04-08 18:45:10 +00:00
|
|
|
// because the debug info will refer to a temporary object file which
|
2012-05-03 16:53:59 +00:00
|
|
|
// will be removed at the end of the compilation process.
|
|
|
|
if (Act->getType() == types::TY_Image) {
|
|
|
|
ActionList Inputs;
|
|
|
|
Inputs.push_back(Actions.back());
|
|
|
|
Actions.pop_back();
|
|
|
|
Actions.push_back(new DsymutilJobAction(Inputs, types::TY_dSYM));
|
2010-07-13 17:21:42 +00:00
|
|
|
}
|
2012-05-03 16:53:59 +00:00
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
// Verify the debug info output.
|
|
|
|
if (Args.hasArg(options::OPT_verify_debug_info)) {
|
2015-01-18 16:23:48 +00:00
|
|
|
std::unique_ptr<Action> VerifyInput(Actions.back());
|
2012-05-03 16:53:59 +00:00
|
|
|
Actions.pop_back();
|
2015-01-18 16:23:48 +00:00
|
|
|
Actions.push_back(new VerifyDebugInfoJobAction(std::move(VerifyInput),
|
2014-11-24 09:15:30 +00:00
|
|
|
types::TY_Nothing));
|
2012-05-03 16:53:59 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
/// \brief Check that the file referenced by Value exists. If it doesn't,
|
|
|
|
/// issue a diagnostic and return false.
|
2014-11-24 09:15:30 +00:00
|
|
|
static bool DiagnoseInputExistence(const Driver &D, const DerivedArgList &Args,
|
2013-12-22 00:07:40 +00:00
|
|
|
StringRef Value) {
|
|
|
|
if (!D.getCheckInputsExist())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// stdin always exists.
|
|
|
|
if (Value == "-")
|
|
|
|
return true;
|
|
|
|
|
|
|
|
SmallString<64> Path(Value);
|
|
|
|
if (Arg *WorkDir = Args.getLastArg(options::OPT_working_directory)) {
|
2015-05-27 18:47:56 +00:00
|
|
|
if (!llvm::sys::path::is_absolute(Path)) {
|
2013-12-22 00:07:40 +00:00
|
|
|
SmallString<64> Directory(WorkDir->getValue());
|
|
|
|
llvm::sys::path::append(Directory, Value);
|
|
|
|
Path.assign(Directory);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (llvm::sys::fs::exists(Twine(Path)))
|
|
|
|
return true;
|
|
|
|
|
2015-05-27 18:47:56 +00:00
|
|
|
if (D.IsCLMode() && !llvm::sys::path::is_absolute(Twine(Path)) &&
|
|
|
|
llvm::sys::Process::FindInEnvPath("LIB", Value))
|
2014-11-24 09:15:30 +00:00
|
|
|
return true;
|
|
|
|
|
2015-05-27 18:47:56 +00:00
|
|
|
D.Diag(clang::diag::err_drv_no_such_file) << Path;
|
2013-12-22 00:07:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
// Construct a the list of inputs and their types.
|
2014-11-24 09:15:30 +00:00
|
|
|
void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args,
|
2011-10-20 21:14:49 +00:00
|
|
|
InputList &Inputs) const {
|
2009-10-14 18:03:49 +00:00
|
|
|
// Track the current user specified (-x) input. We also explicitly track the
|
|
|
|
// argument used to set the type; we only want to claim the type when we
|
|
|
|
// actually use it, so we warn about unused -x arguments.
|
2009-06-02 17:58:47 +00:00
|
|
|
types::ID InputType = types::TY_Nothing;
|
2014-11-24 09:15:30 +00:00
|
|
|
Arg *InputTypeArg = nullptr;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
// The last /TC or /TP option sets the input type to C or C++ globally.
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Arg *TCTP = Args.getLastArgNoClaim(options::OPT__SLASH_TC,
|
|
|
|
options::OPT__SLASH_TP)) {
|
2013-12-22 00:07:40 +00:00
|
|
|
InputTypeArg = TCTP;
|
|
|
|
InputType = TCTP->getOption().matches(options::OPT__SLASH_TC)
|
|
|
|
? types::TY_C : types::TY_CXX;
|
|
|
|
|
|
|
|
arg_iterator it = Args.filtered_begin(options::OPT__SLASH_TC,
|
|
|
|
options::OPT__SLASH_TP);
|
|
|
|
const arg_iterator ie = Args.filtered_end();
|
|
|
|
Arg *Previous = *it++;
|
|
|
|
bool ShowNote = false;
|
|
|
|
while (it != ie) {
|
|
|
|
Diag(clang::diag::warn_drv_overriding_flag_option)
|
|
|
|
<< Previous->getSpelling() << (*it)->getSpelling();
|
|
|
|
Previous = *it++;
|
|
|
|
ShowNote = true;
|
|
|
|
}
|
|
|
|
if (ShowNote)
|
|
|
|
Diag(clang::diag::note_drv_t_option_is_global);
|
|
|
|
|
|
|
|
// No driver mode exposes -x and /TC or /TP; we don't support mixing them.
|
|
|
|
assert(!Args.hasArg(options::OPT_x) && "-x and /TC or /TP is not allowed");
|
|
|
|
}
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
for (Arg *A : Args) {
|
2012-12-02 13:20:44 +00:00
|
|
|
if (A->getOption().getKind() == Option::InputClass) {
|
|
|
|
const char *Value = A->getValue();
|
2009-06-02 17:58:47 +00:00
|
|
|
types::ID Ty = types::TY_INVALID;
|
|
|
|
|
|
|
|
// Infer the input type if necessary.
|
|
|
|
if (InputType == types::TY_Nothing) {
|
|
|
|
// If there was an explicit arg for this, claim it.
|
|
|
|
if (InputTypeArg)
|
|
|
|
InputTypeArg->claim();
|
|
|
|
|
|
|
|
// stdin must be handled specially.
|
|
|
|
if (memcmp(Value, "-", 2) == 0) {
|
2009-10-14 18:03:49 +00:00
|
|
|
// If running with -E, treat as a C input (this changes the builtin
|
|
|
|
// macros, for example). This may be overridden by -ObjC below.
|
2009-06-02 17:58:47 +00:00
|
|
|
//
|
2009-10-14 18:03:49 +00:00
|
|
|
// Otherwise emit an error but still use a valid type to avoid
|
|
|
|
// spurious errors (e.g., no inputs).
|
2013-12-22 00:07:40 +00:00
|
|
|
if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP())
|
2014-11-24 09:15:30 +00:00
|
|
|
Diag(IsCLMode() ? clang::diag::err_drv_unknown_stdin_type_clang_cl
|
|
|
|
: clang::diag::err_drv_unknown_stdin_type);
|
2009-06-02 17:58:47 +00:00
|
|
|
Ty = types::TY_C;
|
|
|
|
} else {
|
2011-05-02 19:39:53 +00:00
|
|
|
// Otherwise lookup by extension.
|
|
|
|
// Fallback is C if invoked as C preprocessor or Object otherwise.
|
|
|
|
// We use a host hook here because Darwin at least has its own
|
2009-10-14 18:03:49 +00:00
|
|
|
// idea of what .s is.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (const char *Ext = strrchr(Value, '.'))
|
2010-09-17 15:54:40 +00:00
|
|
|
Ty = TC.LookupTypeForExtension(Ext + 1);
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2011-05-02 19:39:53 +00:00
|
|
|
if (Ty == types::TY_INVALID) {
|
2013-12-22 00:07:40 +00:00
|
|
|
if (CCCIsCPP())
|
2011-05-02 19:39:53 +00:00
|
|
|
Ty = types::TY_C;
|
|
|
|
else
|
|
|
|
Ty = types::TY_Object;
|
|
|
|
}
|
2010-03-03 17:28:16 +00:00
|
|
|
|
|
|
|
// If the driver is invoked as C++ compiler (like clang++ or c++) it
|
|
|
|
// should autodetect some input files as C++ for g++ compatibility.
|
2013-12-22 00:07:40 +00:00
|
|
|
if (CCCIsCXX()) {
|
2010-03-03 17:28:16 +00:00
|
|
|
types::ID OldTy = Ty;
|
|
|
|
Ty = types::lookupCXXTypeForCType(Ty);
|
|
|
|
|
|
|
|
if (Ty != OldTy)
|
|
|
|
Diag(clang::diag::warn_drv_treating_input_as_cxx)
|
|
|
|
<< getTypeName(OldTy) << getTypeName(Ty);
|
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -ObjC and -ObjC++ override the default language, but only for "source
|
|
|
|
// files". We just treat everything that isn't a linker input as a
|
|
|
|
// source file.
|
2009-10-14 18:03:49 +00:00
|
|
|
//
|
2009-06-02 17:58:47 +00:00
|
|
|
// FIXME: Clean this up if we move the phase sequence into the type.
|
|
|
|
if (Ty != types::TY_Object) {
|
|
|
|
if (Args.hasArg(options::OPT_ObjC))
|
|
|
|
Ty = types::TY_ObjC;
|
|
|
|
else if (Args.hasArg(options::OPT_ObjCXX))
|
|
|
|
Ty = types::TY_ObjCXX;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
assert(InputTypeArg && "InputType set w/o InputTypeArg");
|
2015-01-18 16:23:48 +00:00
|
|
|
if (!InputTypeArg->getOption().matches(options::OPT_x)) {
|
|
|
|
// If emulating cl.exe, make sure that /TC and /TP don't affect input
|
|
|
|
// object files.
|
|
|
|
const char *Ext = strrchr(Value, '.');
|
|
|
|
if (Ext && TC.LookupTypeForExtension(Ext + 1) == types::TY_Object)
|
|
|
|
Ty = types::TY_Object;
|
|
|
|
}
|
|
|
|
if (Ty == types::TY_INVALID) {
|
|
|
|
Ty = InputType;
|
|
|
|
InputTypeArg->claim();
|
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
if (DiagnoseInputExistence(*this, Args, Value))
|
2009-06-02 17:58:47 +00:00
|
|
|
Inputs.push_back(std::make_pair(Ty, A));
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
} else if (A->getOption().matches(options::OPT__SLASH_Tc)) {
|
|
|
|
StringRef Value = A->getValue();
|
2014-11-24 09:15:30 +00:00
|
|
|
if (DiagnoseInputExistence(*this, Args, Value)) {
|
2013-12-22 00:07:40 +00:00
|
|
|
Arg *InputArg = MakeInputArg(Args, Opts, A->getValue());
|
|
|
|
Inputs.push_back(std::make_pair(types::TY_C, InputArg));
|
|
|
|
}
|
|
|
|
A->claim();
|
|
|
|
} else if (A->getOption().matches(options::OPT__SLASH_Tp)) {
|
|
|
|
StringRef Value = A->getValue();
|
2014-11-24 09:15:30 +00:00
|
|
|
if (DiagnoseInputExistence(*this, Args, Value)) {
|
2013-12-22 00:07:40 +00:00
|
|
|
Arg *InputArg = MakeInputArg(Args, Opts, A->getValue());
|
|
|
|
Inputs.push_back(std::make_pair(types::TY_CXX, InputArg));
|
|
|
|
}
|
|
|
|
A->claim();
|
2012-12-02 13:20:44 +00:00
|
|
|
} else if (A->getOption().hasFlag(options::LinkerInput)) {
|
2009-10-14 18:03:49 +00:00
|
|
|
// Just treat as object type, we could make a special type for this if
|
|
|
|
// necessary.
|
2009-06-02 17:58:47 +00:00
|
|
|
Inputs.push_back(std::make_pair(types::TY_Object, A));
|
|
|
|
|
2009-11-19 09:00:00 +00:00
|
|
|
} else if (A->getOption().matches(options::OPT_x)) {
|
2009-10-14 18:03:49 +00:00
|
|
|
InputTypeArg = A;
|
2012-12-02 13:20:44 +00:00
|
|
|
InputType = types::lookupTypeForTypeSpecifier(A->getValue());
|
2012-04-14 14:01:31 +00:00
|
|
|
A->claim();
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
// Follow gcc behavior and treat as linker input for invalid -x
|
2009-10-14 18:03:49 +00:00
|
|
|
// options. Its not clear why we shouldn't just revert to unknown; but
|
2011-02-20 13:06:31 +00:00
|
|
|
// this isn't very important, we might as well be bug compatible.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (!InputType) {
|
2012-12-02 13:20:44 +00:00
|
|
|
Diag(clang::diag::err_drv_unknown_language) << A->getValue();
|
2009-06-02 17:58:47 +00:00
|
|
|
InputType = types::TY_Object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-22 00:07:40 +00:00
|
|
|
if (CCCIsCPP() && Inputs.empty()) {
|
2011-05-02 19:39:53 +00:00
|
|
|
// If called as standalone preprocessor, stdin is processed
|
|
|
|
// if no other input is present.
|
2013-12-22 00:07:40 +00:00
|
|
|
Arg *A = MakeInputArg(Args, Opts, "-");
|
2011-05-02 19:39:53 +00:00
|
|
|
Inputs.push_back(std::make_pair(types::TY_C, A));
|
|
|
|
}
|
2011-10-20 21:14:49 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
void Driver::BuildActions(const ToolChain &TC, DerivedArgList &Args,
|
2011-10-20 21:14:49 +00:00
|
|
|
const InputList &Inputs, ActionList &Actions) const {
|
|
|
|
llvm::PrettyStackTraceString CrashInfo("Building compilation actions");
|
2011-05-02 19:39:53 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
if (!SuppressMissingInputWarning && Inputs.empty()) {
|
|
|
|
Diag(clang::diag::err_drv_no_input_files);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
Arg *FinalPhaseArg;
|
|
|
|
phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg);
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
if (FinalPhase == phases::Link && Args.hasArg(options::OPT_emit_llvm)) {
|
|
|
|
Diag(clang::diag::err_drv_emit_llvm_link);
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// Reject -Z* at the top level, these options should never have been exposed
|
|
|
|
// by gcc.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (Arg *A = Args.getLastArg(options::OPT_Z_Joined))
|
|
|
|
Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args);
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
// Diagnose misuse of /Fo.
|
|
|
|
if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fo)) {
|
|
|
|
StringRef V = A->getValue();
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Inputs.size() > 1 && !V.empty() &&
|
|
|
|
!llvm::sys::path::is_separator(V.back())) {
|
2013-12-22 00:07:40 +00:00
|
|
|
// Check whether /Fo tries to name an output file for multiple inputs.
|
|
|
|
Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources)
|
|
|
|
<< A->getSpelling() << V;
|
|
|
|
Args.eraseArg(options::OPT__SLASH_Fo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Diagnose misuse of /Fa.
|
|
|
|
if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fa)) {
|
|
|
|
StringRef V = A->getValue();
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Inputs.size() > 1 && !V.empty() &&
|
|
|
|
!llvm::sys::path::is_separator(V.back())) {
|
2013-12-22 00:07:40 +00:00
|
|
|
// Check whether /Fa tries to name an asm file for multiple inputs.
|
|
|
|
Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources)
|
|
|
|
<< A->getSpelling() << V;
|
|
|
|
Args.eraseArg(options::OPT__SLASH_Fa);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
// Diagnose misuse of /o.
|
|
|
|
if (Arg *A = Args.getLastArg(options::OPT__SLASH_o)) {
|
2013-12-22 00:07:40 +00:00
|
|
|
if (A->getValue()[0] == '\0') {
|
|
|
|
// It has to have a value.
|
|
|
|
Diag(clang::diag::err_drv_missing_argument) << A->getSpelling() << 1;
|
2015-01-18 16:23:48 +00:00
|
|
|
Args.eraseArg(options::OPT__SLASH_o);
|
2013-12-22 00:07:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// Construct the actions to perform.
|
|
|
|
ActionList LinkerInputs;
|
2014-11-24 09:15:30 +00:00
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PL;
|
2009-06-02 17:58:47 +00:00
|
|
|
for (unsigned i = 0, e = Inputs.size(); i != e; ++i) {
|
|
|
|
types::ID InputType = Inputs[i].first;
|
|
|
|
const Arg *InputArg = Inputs[i].second;
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
PL.clear();
|
|
|
|
types::getCompilationPhases(InputType, PL);
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// If the first step comes after the final phase we are doing as part of
|
|
|
|
// this compilation, warn the user about it.
|
2013-04-08 18:45:10 +00:00
|
|
|
phases::ID InitialPhase = PL[0];
|
2009-06-02 17:58:47 +00:00
|
|
|
if (InitialPhase > FinalPhase) {
|
|
|
|
// Claim here to avoid the more general unused warning.
|
|
|
|
InputArg->claim();
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2011-05-02 19:39:53 +00:00
|
|
|
// Suppress all unused style warnings with -Qunused-arguments
|
|
|
|
if (Args.hasArg(options::OPT_Qunused_arguments))
|
|
|
|
continue;
|
|
|
|
|
2012-08-15 20:02:54 +00:00
|
|
|
// Special case when final phase determined by binary name, rather than
|
|
|
|
// by a command-line argument with a corresponding Arg.
|
2013-12-22 00:07:40 +00:00
|
|
|
if (CCCIsCPP())
|
2012-08-15 20:02:54 +00:00
|
|
|
Diag(clang::diag::warn_drv_input_file_unused_by_cpp)
|
|
|
|
<< InputArg->getAsString(Args)
|
|
|
|
<< getPhaseName(InitialPhase);
|
2009-10-14 18:03:49 +00:00
|
|
|
// Special case '-E' warning on a previously preprocessed file to make
|
|
|
|
// more sense.
|
2012-08-15 20:02:54 +00:00
|
|
|
else if (InitialPhase == phases::Compile &&
|
|
|
|
FinalPhase == phases::Preprocess &&
|
|
|
|
getPreprocessedType(InputType) == types::TY_INVALID)
|
2009-10-14 18:03:49 +00:00
|
|
|
Diag(clang::diag::warn_drv_preprocessed_input_file_unused)
|
|
|
|
<< InputArg->getAsString(Args)
|
2012-08-15 20:02:54 +00:00
|
|
|
<< !!FinalPhaseArg
|
2014-11-24 09:15:30 +00:00
|
|
|
<< (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "");
|
2009-10-14 18:03:49 +00:00
|
|
|
else
|
|
|
|
Diag(clang::diag::warn_drv_input_file_unused)
|
|
|
|
<< InputArg->getAsString(Args)
|
|
|
|
<< getPhaseName(InitialPhase)
|
2012-08-15 20:02:54 +00:00
|
|
|
<< !!FinalPhaseArg
|
2014-11-24 09:15:30 +00:00
|
|
|
<< (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "");
|
2009-06-02 17:58:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// Build the pipeline for this file.
|
2014-11-24 09:15:30 +00:00
|
|
|
std::unique_ptr<Action> Current(new InputAction(*InputArg, InputType));
|
2013-12-22 00:07:40 +00:00
|
|
|
for (SmallVectorImpl<phases::ID>::iterator
|
2013-04-08 18:45:10 +00:00
|
|
|
i = PL.begin(), e = PL.end(); i != e; ++i) {
|
|
|
|
phases::ID Phase = *i;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
// We are done if this step is past what the user requested.
|
|
|
|
if (Phase > FinalPhase)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Queue linker inputs.
|
|
|
|
if (Phase == phases::Link) {
|
2013-04-08 18:45:10 +00:00
|
|
|
assert((i + 1) == e && "linking must be final compilation step.");
|
2014-11-24 09:15:30 +00:00
|
|
|
LinkerInputs.push_back(Current.release());
|
2009-06-02 17:58:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// Some types skip the assembler phase (e.g., llvm-bc), but we can't
|
|
|
|
// encode this in the steps because the intermediate type depends on
|
|
|
|
// arguments. Just special case here.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (Phase == phases::Assemble && Current->getType() != types::TY_PP_Asm)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Otherwise construct the appropriate action.
|
2015-05-27 18:47:56 +00:00
|
|
|
Current = ConstructPhaseAction(TC, Args, Phase, std::move(Current));
|
2009-06-02 17:58:47 +00:00
|
|
|
if (Current->getType() == types::TY_Nothing)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we ended with something, add to the output list.
|
|
|
|
if (Current)
|
2014-11-24 09:15:30 +00:00
|
|
|
Actions.push_back(Current.release());
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add a link action if necessary.
|
|
|
|
if (!LinkerInputs.empty())
|
|
|
|
Actions.push_back(new LinkJobAction(LinkerInputs, types::TY_Image));
|
2010-01-01 10:34:51 +00:00
|
|
|
|
|
|
|
// If we are linking, claim any options which are obviously only used for
|
|
|
|
// compilation.
|
2013-12-22 00:07:40 +00:00
|
|
|
if (FinalPhase == phases::Link && PL.size() == 1) {
|
2010-01-01 10:34:51 +00:00
|
|
|
Args.ClaimAllArgs(options::OPT_CompileOnly_Group);
|
2013-12-22 00:07:40 +00:00
|
|
|
Args.ClaimAllArgs(options::OPT_cl_compile_Group);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Claim ignored clang-cl options.
|
|
|
|
Args.ClaimAllArgs(options::OPT_cl_ignored_Group);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
std::unique_ptr<Action>
|
2015-05-27 18:47:56 +00:00
|
|
|
Driver::ConstructPhaseAction(const ToolChain &TC, const ArgList &Args,
|
|
|
|
phases::ID Phase,
|
2015-01-18 16:23:48 +00:00
|
|
|
std::unique_ptr<Action> Input) const {
|
2009-06-02 17:58:47 +00:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Constructing phase actions");
|
|
|
|
// Build the appropriate action.
|
|
|
|
switch (Phase) {
|
2011-10-20 21:14:49 +00:00
|
|
|
case phases::Link: llvm_unreachable("link action invalid here.");
|
2009-06-02 17:58:47 +00:00
|
|
|
case phases::Preprocess: {
|
|
|
|
types::ID OutputTy;
|
|
|
|
// -{M, MM} alter the output type.
|
2011-02-20 13:06:31 +00:00
|
|
|
if (Args.hasArg(options::OPT_M, options::OPT_MM)) {
|
2009-06-02 17:58:47 +00:00
|
|
|
OutputTy = types::TY_Dependencies;
|
|
|
|
} else {
|
2012-08-15 20:02:54 +00:00
|
|
|
OutputTy = Input->getType();
|
|
|
|
if (!Args.hasFlag(options::OPT_frewrite_includes,
|
2014-11-24 09:15:30 +00:00
|
|
|
options::OPT_fno_rewrite_includes, false) &&
|
|
|
|
!CCGenDiagnostics)
|
2012-08-15 20:02:54 +00:00
|
|
|
OutputTy = types::getPreprocessedType(OutputTy);
|
2009-06-02 17:58:47 +00:00
|
|
|
assert(OutputTy != types::TY_INVALID &&
|
|
|
|
"Cannot preprocess this input type!");
|
|
|
|
}
|
2015-01-18 16:23:48 +00:00
|
|
|
return llvm::make_unique<PreprocessJobAction>(std::move(Input), OutputTy);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
2012-08-15 20:02:54 +00:00
|
|
|
case phases::Precompile: {
|
|
|
|
types::ID OutputTy = types::TY_PCH;
|
|
|
|
if (Args.hasArg(options::OPT_fsyntax_only)) {
|
|
|
|
// Syntax checks should not emit a PCH file
|
|
|
|
OutputTy = types::TY_Nothing;
|
|
|
|
}
|
2015-01-18 16:23:48 +00:00
|
|
|
return llvm::make_unique<PrecompileJobAction>(std::move(Input), OutputTy);
|
2012-08-15 20:02:54 +00:00
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
case phases::Compile: {
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Args.hasArg(options::OPT_fsyntax_only))
|
|
|
|
return llvm::make_unique<CompileJobAction>(std::move(Input),
|
|
|
|
types::TY_Nothing);
|
|
|
|
if (Args.hasArg(options::OPT_rewrite_objc))
|
|
|
|
return llvm::make_unique<CompileJobAction>(std::move(Input),
|
|
|
|
types::TY_RewrittenObjC);
|
|
|
|
if (Args.hasArg(options::OPT_rewrite_legacy_objc))
|
|
|
|
return llvm::make_unique<CompileJobAction>(std::move(Input),
|
|
|
|
types::TY_RewrittenLegacyObjC);
|
|
|
|
if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto))
|
|
|
|
return llvm::make_unique<AnalyzeJobAction>(std::move(Input),
|
|
|
|
types::TY_Plist);
|
|
|
|
if (Args.hasArg(options::OPT__migrate))
|
|
|
|
return llvm::make_unique<MigrateJobAction>(std::move(Input),
|
|
|
|
types::TY_Remap);
|
|
|
|
if (Args.hasArg(options::OPT_emit_ast))
|
|
|
|
return llvm::make_unique<CompileJobAction>(std::move(Input),
|
|
|
|
types::TY_AST);
|
|
|
|
if (Args.hasArg(options::OPT_module_file_info))
|
|
|
|
return llvm::make_unique<CompileJobAction>(std::move(Input),
|
|
|
|
types::TY_ModuleFile);
|
|
|
|
if (Args.hasArg(options::OPT_verify_pch))
|
|
|
|
return llvm::make_unique<VerifyPCHJobAction>(std::move(Input),
|
|
|
|
types::TY_Nothing);
|
|
|
|
return llvm::make_unique<CompileJobAction>(std::move(Input),
|
|
|
|
types::TY_LLVM_BC);
|
|
|
|
}
|
|
|
|
case phases::Backend: {
|
2015-05-27 18:47:56 +00:00
|
|
|
if (IsUsingLTO(TC, Args)) {
|
2009-10-14 18:03:49 +00:00
|
|
|
types::ID Output =
|
2010-07-13 17:21:42 +00:00
|
|
|
Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC;
|
2015-01-18 16:23:48 +00:00
|
|
|
return llvm::make_unique<BackendJobAction>(std::move(Input), Output);
|
|
|
|
}
|
|
|
|
if (Args.hasArg(options::OPT_emit_llvm)) {
|
2013-12-22 00:07:40 +00:00
|
|
|
types::ID Output =
|
|
|
|
Args.hasArg(options::OPT_S) ? types::TY_LLVM_IR : types::TY_LLVM_BC;
|
2015-01-18 16:23:48 +00:00
|
|
|
return llvm::make_unique<BackendJobAction>(std::move(Input), Output);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
2015-01-18 16:23:48 +00:00
|
|
|
return llvm::make_unique<BackendJobAction>(std::move(Input),
|
|
|
|
types::TY_PP_Asm);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
case phases::Assemble:
|
2015-01-18 16:23:48 +00:00
|
|
|
return llvm::make_unique<AssembleJobAction>(std::move(Input),
|
|
|
|
types::TY_Object);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
llvm_unreachable("invalid phase in ConstructPhaseAction");
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2015-05-27 18:47:56 +00:00
|
|
|
bool Driver::IsUsingLTO(const ToolChain &TC, const ArgList &Args) const {
|
|
|
|
if (TC.getSanitizerArgs().needsLTO())
|
|
|
|
return true;
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
if (Args.hasFlag(options::OPT_flto, options::OPT_fno_lto, false))
|
2011-07-17 15:40:56 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
void Driver::BuildJobs(Compilation &C) const {
|
|
|
|
llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
|
|
|
|
|
|
|
|
Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// It is an error to provide a -o option if we are making multiple output
|
|
|
|
// files.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (FinalOutput) {
|
|
|
|
unsigned NumOutputs = 0;
|
2015-01-18 16:23:48 +00:00
|
|
|
for (const Action *A : C.getActions())
|
|
|
|
if (A->getType() != types::TY_Nothing)
|
2009-06-02 17:58:47 +00:00
|
|
|
++NumOutputs;
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
if (NumOutputs > 1) {
|
|
|
|
Diag(clang::diag::err_drv_output_argument_with_multiple_files);
|
2014-11-24 09:15:30 +00:00
|
|
|
FinalOutput = nullptr;
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-10 20:45:12 +00:00
|
|
|
// Collect the list of architectures.
|
|
|
|
llvm::StringSet<> ArchNames;
|
2015-01-18 16:23:48 +00:00
|
|
|
if (C.getDefaultToolChain().getTriple().isOSBinFormatMachO())
|
|
|
|
for (const Arg *A : C.getArgs())
|
2013-06-10 20:45:12 +00:00
|
|
|
if (A->getOption().matches(options::OPT_arch))
|
|
|
|
ArchNames.insert(A->getValue());
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
for (Action *A : C.getActions()) {
|
2009-10-14 18:03:49 +00:00
|
|
|
// If we are linking an image for multiple archs then the linker wants
|
|
|
|
// -arch_multiple and -final_output <final image name>. Unfortunately, this
|
|
|
|
// doesn't fit in cleanly because we have to pass this information down.
|
2009-06-02 17:58:47 +00:00
|
|
|
//
|
2009-10-14 18:03:49 +00:00
|
|
|
// FIXME: This is a hack; find a cleaner way to integrate this into the
|
|
|
|
// process.
|
2014-11-24 09:15:30 +00:00
|
|
|
const char *LinkingOutput = nullptr;
|
2009-06-02 17:58:47 +00:00
|
|
|
if (isa<LipoJobAction>(A)) {
|
|
|
|
if (FinalOutput)
|
2012-12-02 13:20:44 +00:00
|
|
|
LinkingOutput = FinalOutput->getValue();
|
2009-06-02 17:58:47 +00:00
|
|
|
else
|
2015-01-18 16:23:48 +00:00
|
|
|
LinkingOutput = getDefaultImageName();
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
InputInfo II;
|
2009-10-14 18:03:49 +00:00
|
|
|
BuildJobsForAction(C, A, &C.getDefaultToolChain(),
|
2014-11-24 09:15:30 +00:00
|
|
|
/*BoundArch*/nullptr,
|
2009-06-02 17:58:47 +00:00
|
|
|
/*AtTopLevel*/ true,
|
2013-06-10 20:45:12 +00:00
|
|
|
/*MultipleArchs*/ ArchNames.size() > 1,
|
2009-06-02 17:58:47 +00:00
|
|
|
/*LinkingOutput*/ LinkingOutput,
|
|
|
|
II);
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// If the user passed -Qunused-arguments or there were errors, don't warn
|
|
|
|
// about any unused arguments.
|
2011-02-20 13:06:31 +00:00
|
|
|
if (Diags.hasErrorOccurred() ||
|
2009-06-02 17:58:47 +00:00
|
|
|
C.getArgs().hasArg(options::OPT_Qunused_arguments))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Claim -### here.
|
|
|
|
(void) C.getArgs().hasArg(options::OPT__HASH_HASH_HASH);
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
// Claim --driver-mode, it was handled earlier.
|
|
|
|
(void) C.getArgs().hasArg(options::OPT_driver_mode);
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
for (Arg *A : C.getArgs()) {
|
2009-06-02 17:58:47 +00:00
|
|
|
// FIXME: It would be nice to be able to send the argument to the
|
2011-10-20 21:14:49 +00:00
|
|
|
// DiagnosticsEngine, so that extra values, position, and so on could be
|
|
|
|
// printed.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (!A->isClaimed()) {
|
2012-12-02 13:20:44 +00:00
|
|
|
if (A->getOption().hasFlag(options::NoArgumentUnused))
|
2009-06-02 17:58:47 +00:00
|
|
|
continue;
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// Suppress the warning automatically if this is just a flag, and it is an
|
|
|
|
// instance of an argument we already claimed.
|
2009-06-02 17:58:47 +00:00
|
|
|
const Option &Opt = A->getOption();
|
2012-12-02 13:20:44 +00:00
|
|
|
if (Opt.getKind() == Option::FlagClass) {
|
2009-06-02 17:58:47 +00:00
|
|
|
bool DuplicateClaimed = false;
|
|
|
|
|
2009-12-01 11:08:04 +00:00
|
|
|
for (arg_iterator it = C.getArgs().filtered_begin(&Opt),
|
|
|
|
ie = C.getArgs().filtered_end(); it != ie; ++it) {
|
|
|
|
if ((*it)->isClaimed()) {
|
2009-06-02 17:58:47 +00:00
|
|
|
DuplicateClaimed = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DuplicateClaimed)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
Diag(clang::diag::warn_drv_unused_argument)
|
2009-06-02 17:58:47 +00:00
|
|
|
<< A->getAsString(C.getArgs());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-27 18:47:56 +00:00
|
|
|
static const Tool *SelectToolForJob(Compilation &C, bool SaveTemps,
|
|
|
|
const ToolChain *TC, const JobAction *JA,
|
2010-02-16 09:31:36 +00:00
|
|
|
const ActionList *&Inputs) {
|
2014-11-24 09:15:30 +00:00
|
|
|
const Tool *ToolForJob = nullptr;
|
2010-02-16 09:31:36 +00:00
|
|
|
|
|
|
|
// See if we should look for a compiler with an integrated assembler. We match
|
|
|
|
// bottom up, so what we are actually looking for is an assembler job with a
|
|
|
|
// compiler input.
|
2010-05-27 15:17:06 +00:00
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
if (TC->useIntegratedAs() &&
|
2015-05-27 18:47:56 +00:00
|
|
|
!SaveTemps &&
|
2014-11-24 09:15:30 +00:00
|
|
|
!C.getArgs().hasArg(options::OPT_via_file_asm) &&
|
2013-12-22 00:07:40 +00:00
|
|
|
!C.getArgs().hasArg(options::OPT__SLASH_FA) &&
|
|
|
|
!C.getArgs().hasArg(options::OPT__SLASH_Fa) &&
|
2010-02-16 09:31:36 +00:00
|
|
|
isa<AssembleJobAction>(JA) &&
|
2015-01-18 16:23:48 +00:00
|
|
|
Inputs->size() == 1 && isa<BackendJobAction>(*Inputs->begin())) {
|
|
|
|
// A BackendJob is always preceded by a CompileJob, and without
|
|
|
|
// -save-temps they will always get combined together, so instead of
|
|
|
|
// checking the backend tool, check if the tool for the CompileJob
|
|
|
|
// has an integrated assembler.
|
|
|
|
const ActionList *BackendInputs = &(*Inputs)[0]->getInputs();
|
|
|
|
JobAction *CompileJA = cast<CompileJobAction>(*BackendInputs->begin());
|
|
|
|
const Tool *Compiler = TC->SelectTool(*CompileJA);
|
2013-04-08 18:45:10 +00:00
|
|
|
if (!Compiler)
|
2014-11-24 09:15:30 +00:00
|
|
|
return nullptr;
|
2013-04-08 18:45:10 +00:00
|
|
|
if (Compiler->hasIntegratedAssembler()) {
|
2015-01-18 16:23:48 +00:00
|
|
|
Inputs = &(*BackendInputs)[0]->getInputs();
|
|
|
|
ToolForJob = Compiler;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// A backend job should always be combined with the preceding compile job
|
|
|
|
// unless OPT_save_temps is enabled and the compiler is capable of emitting
|
|
|
|
// LLVM IR as an intermediate output.
|
|
|
|
if (isa<BackendJobAction>(JA)) {
|
|
|
|
// Check if the compiler supports emitting LLVM IR.
|
|
|
|
assert(Inputs->size() == 1);
|
|
|
|
JobAction *CompileJA = cast<CompileJobAction>(*Inputs->begin());
|
|
|
|
const Tool *Compiler = TC->SelectTool(*CompileJA);
|
|
|
|
if (!Compiler)
|
|
|
|
return nullptr;
|
2015-05-27 18:47:56 +00:00
|
|
|
if (!Compiler->canEmitIR() || !SaveTemps) {
|
2010-02-16 09:31:36 +00:00
|
|
|
Inputs = &(*Inputs)[0]->getInputs();
|
2013-04-08 18:45:10 +00:00
|
|
|
ToolForJob = Compiler;
|
2010-02-16 09:31:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise use the tool for the current job.
|
|
|
|
if (!ToolForJob)
|
2013-04-08 18:45:10 +00:00
|
|
|
ToolForJob = TC->SelectTool(*JA);
|
2010-02-16 09:31:36 +00:00
|
|
|
|
|
|
|
// See if we should use an integrated preprocessor. We do so when we have
|
|
|
|
// exactly one input, since this is the only use case we care about
|
|
|
|
// (irrelevant since we don't support combine yet).
|
|
|
|
if (Inputs->size() == 1 && isa<PreprocessJobAction>(*Inputs->begin()) &&
|
|
|
|
!C.getArgs().hasArg(options::OPT_no_integrated_cpp) &&
|
|
|
|
!C.getArgs().hasArg(options::OPT_traditional_cpp) &&
|
2015-05-27 18:47:56 +00:00
|
|
|
!SaveTemps &&
|
2012-12-02 13:20:44 +00:00
|
|
|
!C.getArgs().hasArg(options::OPT_rewrite_objc) &&
|
2010-02-16 09:31:36 +00:00
|
|
|
ToolForJob->hasIntegratedCPP())
|
|
|
|
Inputs = &(*Inputs)[0]->getInputs();
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
return ToolForJob;
|
2010-02-16 09:31:36 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
void Driver::BuildJobsForAction(Compilation &C,
|
|
|
|
const Action *A,
|
|
|
|
const ToolChain *TC,
|
2009-10-14 18:03:49 +00:00
|
|
|
const char *BoundArch,
|
2009-06-02 17:58:47 +00:00
|
|
|
bool AtTopLevel,
|
2013-06-10 20:45:12 +00:00
|
|
|
bool MultipleArchs,
|
2009-06-02 17:58:47 +00:00
|
|
|
const char *LinkingOutput,
|
|
|
|
InputInfo &Result) const {
|
2009-10-14 18:03:49 +00:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
if (const InputAction *IA = dyn_cast<InputAction>(A)) {
|
2009-10-14 18:03:49 +00:00
|
|
|
// FIXME: It would be nice to not claim this here; maybe the old scheme of
|
|
|
|
// just using Args was better?
|
2009-06-02 17:58:47 +00:00
|
|
|
const Arg &Input = IA->getInputArg();
|
|
|
|
Input.claim();
|
2010-07-13 17:21:42 +00:00
|
|
|
if (Input.getOption().matches(options::OPT_INPUT)) {
|
2012-12-02 13:20:44 +00:00
|
|
|
const char *Name = Input.getValue();
|
2009-06-02 17:58:47 +00:00
|
|
|
Result = InputInfo(Name, A->getType(), Name);
|
|
|
|
} else
|
|
|
|
Result = InputInfo(&Input, A->getType(), "");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) {
|
2012-08-15 20:02:54 +00:00
|
|
|
const ToolChain *TC;
|
|
|
|
const char *ArchName = BAA->getArchName();
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2012-08-15 20:02:54 +00:00
|
|
|
if (ArchName)
|
|
|
|
TC = &getToolChain(C.getArgs(), ArchName);
|
|
|
|
else
|
|
|
|
TC = &C.getDefaultToolChain();
|
2009-10-14 18:03:49 +00:00
|
|
|
|
|
|
|
BuildJobsForAction(C, *BAA->begin(), TC, BAA->getArchName(),
|
2013-06-10 20:45:12 +00:00
|
|
|
AtTopLevel, MultipleArchs, LinkingOutput, Result);
|
2009-06-02 17:58:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ActionList *Inputs = &A->getInputs();
|
2010-02-16 09:31:36 +00:00
|
|
|
|
|
|
|
const JobAction *JA = cast<JobAction>(A);
|
2015-05-27 18:47:56 +00:00
|
|
|
const Tool *T = SelectToolForJob(C, isSaveTempsEnabled(), TC, JA, Inputs);
|
2013-04-08 18:45:10 +00:00
|
|
|
if (!T)
|
|
|
|
return;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
// Only use pipes when there is exactly one input.
|
|
|
|
InputInfoList InputInfos;
|
2015-01-18 16:23:48 +00:00
|
|
|
for (const Action *Input : *Inputs) {
|
2013-04-08 18:45:10 +00:00
|
|
|
// Treat dsymutil and verify sub-jobs as being at the top-level too, they
|
|
|
|
// shouldn't get temporary output names.
|
2010-07-13 17:21:42 +00:00
|
|
|
// FIXME: Clean this up.
|
|
|
|
bool SubJobAtTopLevel = false;
|
2013-04-08 18:45:10 +00:00
|
|
|
if (AtTopLevel && (isa<DsymutilJobAction>(A) || isa<VerifyJobAction>(A)))
|
2011-10-20 21:14:49 +00:00
|
|
|
SubJobAtTopLevel = true;
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
InputInfo II;
|
2015-01-18 16:23:48 +00:00
|
|
|
BuildJobsForAction(C, Input, TC, BoundArch, SubJobAtTopLevel, MultipleArchs,
|
2013-06-10 20:45:12 +00:00
|
|
|
LinkingOutput, II);
|
2009-06-02 17:58:47 +00:00
|
|
|
InputInfos.push_back(II);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always use the first input as the base input.
|
|
|
|
const char *BaseInput = InputInfos[0].getBaseInput();
|
|
|
|
|
2010-07-13 17:21:42 +00:00
|
|
|
// ... except dsymutil actions, which use their actual input as the base
|
|
|
|
// input.
|
|
|
|
if (JA->getType() == types::TY_dSYM)
|
|
|
|
BaseInput = InputInfos[0].getFilename();
|
|
|
|
|
2010-09-17 15:54:40 +00:00
|
|
|
// Determine the place to write output to, if any.
|
2013-04-08 18:45:10 +00:00
|
|
|
if (JA->getType() == types::TY_Nothing)
|
2009-06-02 17:58:47 +00:00
|
|
|
Result = InputInfo(A->getType(), BaseInput);
|
2013-04-08 18:45:10 +00:00
|
|
|
else
|
2013-06-10 20:45:12 +00:00
|
|
|
Result = InputInfo(GetNamedOutputPath(C, *JA, BaseInput, BoundArch,
|
|
|
|
AtTopLevel, MultipleArchs),
|
2009-06-02 17:58:47 +00:00
|
|
|
A->getType(), BaseInput);
|
|
|
|
|
2011-10-20 21:14:49 +00:00
|
|
|
if (CCCPrintBindings && !CCGenDiagnostics) {
|
2013-04-08 18:45:10 +00:00
|
|
|
llvm::errs() << "# \"" << T->getToolChain().getTripleString() << '"'
|
|
|
|
<< " - \"" << T->getName() << "\", inputs: [";
|
2009-06-02 17:58:47 +00:00
|
|
|
for (unsigned i = 0, e = InputInfos.size(); i != e; ++i) {
|
|
|
|
llvm::errs() << InputInfos[i].getAsString();
|
|
|
|
if (i + 1 != e)
|
|
|
|
llvm::errs() << ", ";
|
|
|
|
}
|
|
|
|
llvm::errs() << "], output: " << Result.getAsString() << "\n";
|
|
|
|
} else {
|
2013-04-08 18:45:10 +00:00
|
|
|
T->ConstructJob(C, *JA, Result, InputInfos,
|
|
|
|
C.getArgsForToolChain(TC, BoundArch), LinkingOutput);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
const char *Driver::getDefaultImageName() const {
|
|
|
|
llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
|
|
|
|
return Target.isOSWindows() ? "a.exe" : "a.out";
|
|
|
|
}
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
/// \brief Create output filename based on ArgValue, which could either be a
|
|
|
|
/// full filename, filename without extension, or a directory. If ArgValue
|
|
|
|
/// does not provide a filename, then use BaseName, and use the extension
|
|
|
|
/// suitable for FileType.
|
|
|
|
static const char *MakeCLOutputFilename(const ArgList &Args, StringRef ArgValue,
|
|
|
|
StringRef BaseName, types::ID FileType) {
|
|
|
|
SmallString<128> Filename = ArgValue;
|
2014-11-24 09:15:30 +00:00
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
if (ArgValue.empty()) {
|
|
|
|
// If the argument is empty, output to BaseName in the current dir.
|
|
|
|
Filename = BaseName;
|
|
|
|
} else if (llvm::sys::path::is_separator(Filename.back())) {
|
|
|
|
// If the argument is a directory, output to BaseName in that dir.
|
|
|
|
llvm::sys::path::append(Filename, BaseName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!llvm::sys::path::has_extension(ArgValue)) {
|
|
|
|
// If the argument didn't provide an extension, then set it.
|
|
|
|
const char *Extension = types::getTypeTempSuffix(FileType, true);
|
|
|
|
|
|
|
|
if (FileType == types::TY_Image &&
|
|
|
|
Args.hasArg(options::OPT__SLASH_LD, options::OPT__SLASH_LDd)) {
|
|
|
|
// The output file is a dll.
|
|
|
|
Extension = "dll";
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::sys::path::replace_extension(Filename, Extension);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Args.MakeArgString(Filename.c_str());
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
const char *Driver::GetNamedOutputPath(Compilation &C,
|
2009-06-02 17:58:47 +00:00
|
|
|
const JobAction &JA,
|
|
|
|
const char *BaseInput,
|
2013-06-10 20:45:12 +00:00
|
|
|
const char *BoundArch,
|
|
|
|
bool AtTopLevel,
|
|
|
|
bool MultipleArchs) const {
|
2009-06-02 17:58:47 +00:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Computing output path");
|
|
|
|
// Output to a user requested destination?
|
2011-10-20 21:14:49 +00:00
|
|
|
if (AtTopLevel && !isa<DsymutilJobAction>(JA) &&
|
|
|
|
!isa<VerifyJobAction>(JA)) {
|
2009-06-02 17:58:47 +00:00
|
|
|
if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o))
|
2013-04-08 18:45:10 +00:00
|
|
|
return C.addResultFile(FinalOutput->getValue(), &JA);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
// For /P, preprocess to file named after BaseInput.
|
|
|
|
if (C.getArgs().hasArg(options::OPT__SLASH_P)) {
|
|
|
|
assert(AtTopLevel && isa<PreprocessJobAction>(JA));
|
|
|
|
StringRef BaseName = llvm::sys::path::filename(BaseInput);
|
|
|
|
StringRef NameArg;
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Arg *A = C.getArgs().getLastArg(options::OPT__SLASH_Fi,
|
|
|
|
options::OPT__SLASH_o))
|
2014-11-24 09:15:30 +00:00
|
|
|
NameArg = A->getValue();
|
|
|
|
return C.addResultFile(MakeCLOutputFilename(C.getArgs(), NameArg, BaseName,
|
|
|
|
types::TY_PP_C), &JA);
|
|
|
|
}
|
|
|
|
|
2010-09-17 15:54:40 +00:00
|
|
|
// Default to writing to stdout?
|
2013-04-08 18:45:10 +00:00
|
|
|
if (AtTopLevel && !CCGenDiagnostics &&
|
|
|
|
(isa<PreprocessJobAction>(JA) || JA.getType() == types::TY_ModuleFile))
|
2010-09-17 15:54:40 +00:00
|
|
|
return "-";
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
// Is this the assembly listing for /FA?
|
|
|
|
if (JA.getType() == types::TY_PP_Asm &&
|
|
|
|
(C.getArgs().hasArg(options::OPT__SLASH_FA) ||
|
|
|
|
C.getArgs().hasArg(options::OPT__SLASH_Fa))) {
|
|
|
|
// Use /Fa and the input filename to determine the asm file name.
|
|
|
|
StringRef BaseName = llvm::sys::path::filename(BaseInput);
|
|
|
|
StringRef FaValue = C.getArgs().getLastArgValue(options::OPT__SLASH_Fa);
|
|
|
|
return C.addResultFile(MakeCLOutputFilename(C.getArgs(), FaValue, BaseName,
|
|
|
|
JA.getType()), &JA);
|
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
// Output to a temporary file?
|
2015-05-27 18:47:56 +00:00
|
|
|
if ((!AtTopLevel && !isSaveTempsEnabled() &&
|
2013-12-22 00:07:40 +00:00
|
|
|
!C.getArgs().hasArg(options::OPT__SLASH_Fo)) ||
|
2011-10-20 21:14:49 +00:00
|
|
|
CCGenDiagnostics) {
|
|
|
|
StringRef Name = llvm::sys::path::filename(BaseInput);
|
|
|
|
std::pair<StringRef, StringRef> Split = Name.split('.');
|
2009-10-14 18:03:49 +00:00
|
|
|
std::string TmpName =
|
2013-12-22 00:07:40 +00:00
|
|
|
GetTemporaryPath(Split.first,
|
|
|
|
types::getTypeTempSuffix(JA.getType(), IsCLMode()));
|
2009-06-02 17:58:47 +00:00
|
|
|
return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()));
|
|
|
|
}
|
|
|
|
|
2012-04-14 14:01:31 +00:00
|
|
|
SmallString<128> BasePath(BaseInput);
|
2011-10-20 21:14:49 +00:00
|
|
|
StringRef BaseName;
|
2011-05-02 19:39:53 +00:00
|
|
|
|
|
|
|
// Dsymutil actions should use the full path.
|
2011-10-20 21:14:49 +00:00
|
|
|
if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA))
|
2011-05-02 19:39:53 +00:00
|
|
|
BaseName = BasePath;
|
|
|
|
else
|
|
|
|
BaseName = llvm::sys::path::filename(BasePath);
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
// Determine what the derived output name should be.
|
|
|
|
const char *NamedOutput;
|
2013-12-22 00:07:40 +00:00
|
|
|
|
|
|
|
if (JA.getType() == types::TY_Object &&
|
2015-01-18 16:23:48 +00:00
|
|
|
C.getArgs().hasArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o)) {
|
|
|
|
// The /Fo or /o flag decides the object filename.
|
|
|
|
StringRef Val = C.getArgs().getLastArg(options::OPT__SLASH_Fo,
|
|
|
|
options::OPT__SLASH_o)->getValue();
|
2013-12-22 00:07:40 +00:00
|
|
|
NamedOutput = MakeCLOutputFilename(C.getArgs(), Val, BaseName,
|
|
|
|
types::TY_Object);
|
|
|
|
} else if (JA.getType() == types::TY_Image &&
|
2015-01-18 16:23:48 +00:00
|
|
|
C.getArgs().hasArg(options::OPT__SLASH_Fe, options::OPT__SLASH_o)) {
|
|
|
|
// The /Fe or /o flag names the linked file.
|
|
|
|
StringRef Val = C.getArgs().getLastArg(options::OPT__SLASH_Fe,
|
|
|
|
options::OPT__SLASH_o)->getValue();
|
2013-12-22 00:07:40 +00:00
|
|
|
NamedOutput = MakeCLOutputFilename(C.getArgs(), Val, BaseName,
|
|
|
|
types::TY_Image);
|
|
|
|
} else if (JA.getType() == types::TY_Image) {
|
|
|
|
if (IsCLMode()) {
|
|
|
|
// clang-cl uses BaseName for the executable name.
|
|
|
|
NamedOutput = MakeCLOutputFilename(C.getArgs(), "", BaseName,
|
|
|
|
types::TY_Image);
|
|
|
|
} else if (MultipleArchs && BoundArch) {
|
2015-01-18 16:23:48 +00:00
|
|
|
SmallString<128> Output(getDefaultImageName());
|
2013-06-10 20:45:12 +00:00
|
|
|
Output += "-";
|
|
|
|
Output.append(BoundArch);
|
|
|
|
NamedOutput = C.getArgs().MakeArgString(Output.c_str());
|
|
|
|
} else
|
2015-01-18 16:23:48 +00:00
|
|
|
NamedOutput = getDefaultImageName();
|
2009-06-02 17:58:47 +00:00
|
|
|
} else {
|
2013-12-22 00:07:40 +00:00
|
|
|
const char *Suffix = types::getTypeTempSuffix(JA.getType(), IsCLMode());
|
2009-06-02 17:58:47 +00:00
|
|
|
assert(Suffix && "All types used for output should have a suffix.");
|
|
|
|
|
|
|
|
std::string::size_type End = std::string::npos;
|
|
|
|
if (!types::appendSuffixForType(JA.getType()))
|
|
|
|
End = BaseName.rfind('.');
|
2013-06-10 20:45:12 +00:00
|
|
|
SmallString<128> Suffixed(BaseName.substr(0, End));
|
|
|
|
if (MultipleArchs && BoundArch) {
|
|
|
|
Suffixed += "-";
|
|
|
|
Suffixed.append(BoundArch);
|
|
|
|
}
|
2015-01-18 16:23:48 +00:00
|
|
|
// When using both -save-temps and -emit-llvm, use a ".tmp.bc" suffix for
|
|
|
|
// the unoptimized bitcode so that it does not get overwritten by the ".bc"
|
|
|
|
// optimized bitcode output.
|
|
|
|
if (!AtTopLevel && C.getArgs().hasArg(options::OPT_emit_llvm) &&
|
|
|
|
JA.getType() == types::TY_LLVM_BC)
|
|
|
|
Suffixed += ".tmp";
|
2009-06-02 17:58:47 +00:00
|
|
|
Suffixed += '.';
|
|
|
|
Suffixed += Suffix;
|
|
|
|
NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str());
|
|
|
|
}
|
|
|
|
|
2015-05-27 18:47:56 +00:00
|
|
|
// Prepend object file path if -save-temps=obj
|
|
|
|
if (!AtTopLevel && isSaveTempsObj() && C.getArgs().hasArg(options::OPT_o) &&
|
|
|
|
JA.getType() != types::TY_PCH) {
|
|
|
|
Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
|
|
|
|
SmallString<128> TempPath(FinalOutput->getValue());
|
|
|
|
llvm::sys::path::remove_filename(TempPath);
|
|
|
|
StringRef OutputFileName = llvm::sys::path::filename(NamedOutput);
|
|
|
|
llvm::sys::path::append(TempPath, OutputFileName);
|
|
|
|
NamedOutput = C.getArgs().MakeArgString(TempPath.c_str());
|
|
|
|
}
|
|
|
|
|
2012-08-15 20:02:54 +00:00
|
|
|
// If we're saving temps and the temp file conflicts with the input file,
|
|
|
|
// then avoid overwriting input file.
|
2015-05-27 18:47:56 +00:00
|
|
|
if (!AtTopLevel && isSaveTempsEnabled() && NamedOutput == BaseName) {
|
2012-08-15 20:02:54 +00:00
|
|
|
bool SameFile = false;
|
|
|
|
SmallString<256> Result;
|
|
|
|
llvm::sys::fs::current_path(Result);
|
|
|
|
llvm::sys::path::append(Result, BaseName);
|
|
|
|
llvm::sys::fs::equivalent(BaseInput, Result.c_str(), SameFile);
|
|
|
|
// Must share the same path to conflict.
|
|
|
|
if (SameFile) {
|
|
|
|
StringRef Name = llvm::sys::path::filename(BaseInput);
|
|
|
|
std::pair<StringRef, StringRef> Split = Name.split('.');
|
|
|
|
std::string TmpName =
|
2013-12-22 00:07:40 +00:00
|
|
|
GetTemporaryPath(Split.first,
|
|
|
|
types::getTypeTempSuffix(JA.getType(), IsCLMode()));
|
2012-08-15 20:02:54 +00:00
|
|
|
return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()));
|
|
|
|
}
|
2011-07-17 15:40:56 +00:00
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
// As an annoying special case, PCH generation doesn't strip the pathname.
|
2009-06-02 17:58:47 +00:00
|
|
|
if (JA.getType() == types::TY_PCH) {
|
2011-02-20 13:06:31 +00:00
|
|
|
llvm::sys::path::remove_filename(BasePath);
|
|
|
|
if (BasePath.empty())
|
2009-06-02 17:58:47 +00:00
|
|
|
BasePath = NamedOutput;
|
|
|
|
else
|
2011-02-20 13:06:31 +00:00
|
|
|
llvm::sys::path::append(BasePath, NamedOutput);
|
2013-04-08 18:45:10 +00:00
|
|
|
return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str()), &JA);
|
2009-06-02 17:58:47 +00:00
|
|
|
} else {
|
2013-04-08 18:45:10 +00:00
|
|
|
return C.addResultFile(NamedOutput, &JA);
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
std::string Driver::GetFilePath(const char *Name, const ToolChain &TC) const {
|
2010-04-02 08:55:10 +00:00
|
|
|
// Respect a limited subset of the '-Bprefix' functionality in GCC by
|
2012-12-02 13:20:44 +00:00
|
|
|
// attempting to use this prefix when looking for file paths.
|
2011-02-20 13:06:31 +00:00
|
|
|
for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(),
|
|
|
|
ie = PrefixDirs.end(); it != ie; ++it) {
|
2011-05-02 19:39:53 +00:00
|
|
|
std::string Dir(*it);
|
|
|
|
if (Dir.empty())
|
|
|
|
continue;
|
|
|
|
if (Dir[0] == '=')
|
|
|
|
Dir = SysRoot + Dir.substr(1);
|
2013-12-22 00:07:40 +00:00
|
|
|
SmallString<128> P(Dir);
|
|
|
|
llvm::sys::path::append(P, Name);
|
|
|
|
if (llvm::sys::fs::exists(Twine(P)))
|
2010-04-02 08:55:10 +00:00
|
|
|
return P.str();
|
|
|
|
}
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
SmallString<128> P(ResourceDir);
|
|
|
|
llvm::sys::path::append(P, Name);
|
|
|
|
if (llvm::sys::fs::exists(Twine(P)))
|
2011-10-20 21:14:49 +00:00
|
|
|
return P.str();
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
const ToolChain::path_list &List = TC.getFilePaths();
|
2009-10-14 18:03:49 +00:00
|
|
|
for (ToolChain::path_list::const_iterator
|
2009-06-02 17:58:47 +00:00
|
|
|
it = List.begin(), ie = List.end(); it != ie; ++it) {
|
2011-05-02 19:39:53 +00:00
|
|
|
std::string Dir(*it);
|
|
|
|
if (Dir.empty())
|
|
|
|
continue;
|
|
|
|
if (Dir[0] == '=')
|
|
|
|
Dir = SysRoot + Dir.substr(1);
|
2013-12-22 00:07:40 +00:00
|
|
|
SmallString<128> P(Dir);
|
|
|
|
llvm::sys::path::append(P, Name);
|
|
|
|
if (llvm::sys::fs::exists(Twine(P)))
|
2009-10-14 18:03:49 +00:00
|
|
|
return P.str();
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
return Name;
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
void
|
|
|
|
Driver::generatePrefixedToolNames(const char *Tool, const ToolChain &TC,
|
|
|
|
SmallVectorImpl<std::string> &Names) const {
|
|
|
|
// FIXME: Needs a better variable than DefaultTargetTriple
|
|
|
|
Names.push_back(DefaultTargetTriple + "-" + Tool);
|
|
|
|
Names.push_back(Tool);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool ScanDirForExecutable(SmallString<128> &Dir,
|
|
|
|
ArrayRef<std::string> Names) {
|
|
|
|
for (const auto &Name : Names) {
|
|
|
|
llvm::sys::path::append(Dir, Name);
|
|
|
|
if (llvm::sys::fs::can_execute(Twine(Dir)))
|
|
|
|
return true;
|
|
|
|
llvm::sys::path::remove_filename(Dir);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-02 13:20:44 +00:00
|
|
|
std::string Driver::GetProgramPath(const char *Name,
|
|
|
|
const ToolChain &TC) const {
|
2015-01-18 16:23:48 +00:00
|
|
|
SmallVector<std::string, 2> TargetSpecificExecutables;
|
|
|
|
generatePrefixedToolNames(Name, TC, TargetSpecificExecutables);
|
|
|
|
|
2010-04-02 08:55:10 +00:00
|
|
|
// Respect a limited subset of the '-Bprefix' functionality in GCC by
|
2012-12-02 13:20:44 +00:00
|
|
|
// attempting to use this prefix when looking for program paths.
|
2015-01-18 16:23:48 +00:00
|
|
|
for (const auto &PrefixDir : PrefixDirs) {
|
|
|
|
if (llvm::sys::fs::is_directory(PrefixDir)) {
|
|
|
|
SmallString<128> P(PrefixDir);
|
|
|
|
if (ScanDirForExecutable(P, TargetSpecificExecutables))
|
2013-12-22 00:07:40 +00:00
|
|
|
return P.str();
|
2012-12-02 13:20:44 +00:00
|
|
|
} else {
|
2015-01-18 16:23:48 +00:00
|
|
|
SmallString<128> P(PrefixDir + Name);
|
2013-12-22 00:07:40 +00:00
|
|
|
if (llvm::sys::fs::can_execute(Twine(P)))
|
|
|
|
return P.str();
|
2012-12-02 13:20:44 +00:00
|
|
|
}
|
2010-04-02 08:55:10 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
const ToolChain::path_list &List = TC.getProgramPaths();
|
2015-01-18 16:23:48 +00:00
|
|
|
for (const auto &Path : List) {
|
|
|
|
SmallString<128> P(Path);
|
|
|
|
if (ScanDirForExecutable(P, TargetSpecificExecutables))
|
2013-12-22 00:07:40 +00:00
|
|
|
return P.str();
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If all else failed, search the path.
|
2015-01-18 16:23:48 +00:00
|
|
|
for (const auto &TargetSpecificExecutable : TargetSpecificExecutables)
|
|
|
|
if (llvm::ErrorOr<std::string> P =
|
|
|
|
llvm::sys::findProgramByName(TargetSpecificExecutable))
|
|
|
|
return *P;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
return Name;
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2012-08-15 20:02:54 +00:00
|
|
|
std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix)
|
2011-10-20 21:14:49 +00:00
|
|
|
const {
|
2013-12-22 00:07:40 +00:00
|
|
|
SmallString<128> Path;
|
2014-11-24 09:15:30 +00:00
|
|
|
std::error_code EC = llvm::sys::fs::createTemporaryFile(Prefix, Suffix, Path);
|
2013-12-22 00:07:40 +00:00
|
|
|
if (EC) {
|
|
|
|
Diag(clang::diag::err_unable_to_make_temp) << EC.message();
|
2009-06-02 17:58:47 +00:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2013-12-22 00:07:40 +00:00
|
|
|
return Path.str();
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2012-04-14 14:01:31 +00:00
|
|
|
/// \brief Compute target triple from args.
|
|
|
|
///
|
|
|
|
/// This routine provides the logic to compute a target triple from various
|
|
|
|
/// args passed to the driver and the default triple string.
|
|
|
|
static llvm::Triple computeTargetTriple(StringRef DefaultTargetTriple,
|
|
|
|
const ArgList &Args,
|
|
|
|
StringRef DarwinArchName) {
|
|
|
|
// FIXME: Already done in Compilation *Driver::BuildCompilation
|
|
|
|
if (const Arg *A = Args.getLastArg(options::OPT_target))
|
2012-12-02 13:20:44 +00:00
|
|
|
DefaultTargetTriple = A->getValue();
|
2012-04-14 14:01:31 +00:00
|
|
|
|
|
|
|
llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
// Handle Apple-specific options available here.
|
|
|
|
if (Target.isOSBinFormatMachO()) {
|
2012-04-14 14:01:31 +00:00
|
|
|
// If an explict Darwin arch name is given, that trumps all.
|
|
|
|
if (!DarwinArchName.empty()) {
|
2014-11-24 09:15:30 +00:00
|
|
|
tools::darwin::setTripleTypeForMachOArchName(Target, DarwinArchName);
|
2012-04-14 14:01:31 +00:00
|
|
|
return Target;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle the Darwin '-arch' flag.
|
|
|
|
if (Arg *A = Args.getLastArg(options::OPT_arch)) {
|
2014-11-24 09:15:30 +00:00
|
|
|
StringRef ArchName = A->getValue();
|
|
|
|
tools::darwin::setTripleTypeForMachOArchName(Target, ArchName);
|
2012-04-14 14:01:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
// Handle pseudo-target flags '-mlittle-endian'/'-EL' and
|
|
|
|
// '-mbig-endian'/'-EB'.
|
|
|
|
if (Arg *A = Args.getLastArg(options::OPT_mlittle_endian,
|
|
|
|
options::OPT_mbig_endian)) {
|
|
|
|
if (A->getOption().matches(options::OPT_mlittle_endian)) {
|
2013-04-08 18:45:10 +00:00
|
|
|
if (Target.getArch() == llvm::Triple::mips)
|
|
|
|
Target.setArch(llvm::Triple::mipsel);
|
|
|
|
else if (Target.getArch() == llvm::Triple::mips64)
|
|
|
|
Target.setArch(llvm::Triple::mips64el);
|
2014-11-24 09:15:30 +00:00
|
|
|
else if (Target.getArch() == llvm::Triple::aarch64_be)
|
|
|
|
Target.setArch(llvm::Triple::aarch64);
|
2013-04-08 18:45:10 +00:00
|
|
|
} else {
|
|
|
|
if (Target.getArch() == llvm::Triple::mipsel)
|
|
|
|
Target.setArch(llvm::Triple::mips);
|
|
|
|
else if (Target.getArch() == llvm::Triple::mips64el)
|
|
|
|
Target.setArch(llvm::Triple::mips64);
|
2014-11-24 09:15:30 +00:00
|
|
|
else if (Target.getArch() == llvm::Triple::aarch64)
|
|
|
|
Target.setArch(llvm::Triple::aarch64_be);
|
2013-04-08 18:45:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-14 14:01:31 +00:00
|
|
|
// Skip further flag support on OSes which don't support '-m32' or '-m64'.
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Target.getArchName() == "tce" || Target.getOS() == llvm::Triple::Minix)
|
2012-04-14 14:01:31 +00:00
|
|
|
return Target;
|
|
|
|
|
2014-11-24 09:15:30 +00:00
|
|
|
// Handle pseudo-target flags '-m64', '-mx32', '-m32' and '-m16'.
|
|
|
|
if (Arg *A = Args.getLastArg(options::OPT_m64, options::OPT_mx32,
|
|
|
|
options::OPT_m32, options::OPT_m16)) {
|
|
|
|
llvm::Triple::ArchType AT = llvm::Triple::UnknownArch;
|
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
if (A->getOption().matches(options::OPT_m64)) {
|
2014-11-24 09:15:30 +00:00
|
|
|
AT = Target.get64BitArchVariant().getArch();
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Target.getEnvironment() == llvm::Triple::GNUX32)
|
|
|
|
Target.setEnvironment(llvm::Triple::GNU);
|
|
|
|
} else if (A->getOption().matches(options::OPT_mx32) &&
|
2014-11-24 09:15:30 +00:00
|
|
|
Target.get64BitArchVariant().getArch() == llvm::Triple::x86_64) {
|
|
|
|
AT = llvm::Triple::x86_64;
|
|
|
|
Target.setEnvironment(llvm::Triple::GNUX32);
|
2015-01-18 16:23:48 +00:00
|
|
|
} else if (A->getOption().matches(options::OPT_m32)) {
|
2014-11-24 09:15:30 +00:00
|
|
|
AT = Target.get32BitArchVariant().getArch();
|
2015-01-18 16:23:48 +00:00
|
|
|
if (Target.getEnvironment() == llvm::Triple::GNUX32)
|
|
|
|
Target.setEnvironment(llvm::Triple::GNU);
|
|
|
|
} else if (A->getOption().matches(options::OPT_m16) &&
|
2014-11-24 09:15:30 +00:00
|
|
|
Target.get32BitArchVariant().getArch() == llvm::Triple::x86) {
|
|
|
|
AT = llvm::Triple::x86;
|
|
|
|
Target.setEnvironment(llvm::Triple::CODE16);
|
2012-04-14 14:01:31 +00:00
|
|
|
}
|
2014-11-24 09:15:30 +00:00
|
|
|
|
2015-01-18 16:23:48 +00:00
|
|
|
if (AT != llvm::Triple::UnknownArch && AT != Target.getArch())
|
2014-11-24 09:15:30 +00:00
|
|
|
Target.setArch(AT);
|
2012-04-14 14:01:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Target;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ToolChain &Driver::getToolChain(const ArgList &Args,
|
|
|
|
StringRef DarwinArchName) const {
|
2015-05-27 18:47:56 +00:00
|
|
|
llvm::Triple Target =
|
|
|
|
computeTargetTriple(DefaultTargetTriple, Args, DarwinArchName);
|
2012-04-14 14:01:31 +00:00
|
|
|
|
|
|
|
ToolChain *&TC = ToolChains[Target.str()];
|
|
|
|
if (!TC) {
|
|
|
|
switch (Target.getOS()) {
|
2015-05-27 18:47:56 +00:00
|
|
|
case llvm::Triple::CloudABI:
|
|
|
|
TC = new toolchains::CloudABI(*this, Target, Args);
|
|
|
|
break;
|
2012-04-14 14:01:31 +00:00
|
|
|
case llvm::Triple::Darwin:
|
|
|
|
case llvm::Triple::MacOSX:
|
|
|
|
case llvm::Triple::IOS:
|
2014-11-24 09:15:30 +00:00
|
|
|
TC = new toolchains::DarwinClang(*this, Target, Args);
|
2012-04-14 14:01:31 +00:00
|
|
|
break;
|
|
|
|
case llvm::Triple::DragonFly:
|
|
|
|
TC = new toolchains::DragonFly(*this, Target, Args);
|
|
|
|
break;
|
|
|
|
case llvm::Triple::OpenBSD:
|
|
|
|
TC = new toolchains::OpenBSD(*this, Target, Args);
|
|
|
|
break;
|
2012-08-15 20:02:54 +00:00
|
|
|
case llvm::Triple::Bitrig:
|
|
|
|
TC = new toolchains::Bitrig(*this, Target, Args);
|
|
|
|
break;
|
2012-04-14 14:01:31 +00:00
|
|
|
case llvm::Triple::NetBSD:
|
|
|
|
TC = new toolchains::NetBSD(*this, Target, Args);
|
|
|
|
break;
|
|
|
|
case llvm::Triple::FreeBSD:
|
|
|
|
TC = new toolchains::FreeBSD(*this, Target, Args);
|
|
|
|
break;
|
|
|
|
case llvm::Triple::Minix:
|
|
|
|
TC = new toolchains::Minix(*this, Target, Args);
|
|
|
|
break;
|
|
|
|
case llvm::Triple::Linux:
|
|
|
|
if (Target.getArch() == llvm::Triple::hexagon)
|
2013-04-08 18:45:10 +00:00
|
|
|
TC = new toolchains::Hexagon_TC(*this, Target, Args);
|
2012-04-14 14:01:31 +00:00
|
|
|
else
|
|
|
|
TC = new toolchains::Linux(*this, Target, Args);
|
|
|
|
break;
|
2015-05-27 18:47:56 +00:00
|
|
|
case llvm::Triple::NaCl:
|
|
|
|
TC = new toolchains::NaCl_TC(*this, Target, Args);
|
|
|
|
break;
|
2012-04-14 14:01:31 +00:00
|
|
|
case llvm::Triple::Solaris:
|
|
|
|
TC = new toolchains::Solaris(*this, Target, Args);
|
|
|
|
break;
|
|
|
|
case llvm::Triple::Win32:
|
2014-11-24 09:15:30 +00:00
|
|
|
switch (Target.getEnvironment()) {
|
|
|
|
default:
|
|
|
|
if (Target.isOSBinFormatELF())
|
|
|
|
TC = new toolchains::Generic_ELF(*this, Target, Args);
|
|
|
|
else if (Target.isOSBinFormatMachO())
|
|
|
|
TC = new toolchains::MachO(*this, Target, Args);
|
|
|
|
else
|
|
|
|
TC = new toolchains::Generic_GCC(*this, Target, Args);
|
|
|
|
break;
|
|
|
|
case llvm::Triple::GNU:
|
|
|
|
// FIXME: We need a MinGW toolchain. Use the default Generic_GCC
|
|
|
|
// toolchain for now as the default case would below otherwise.
|
|
|
|
if (Target.isOSBinFormatELF())
|
|
|
|
TC = new toolchains::Generic_ELF(*this, Target, Args);
|
|
|
|
else
|
|
|
|
TC = new toolchains::Generic_GCC(*this, Target, Args);
|
|
|
|
break;
|
2015-01-18 16:23:48 +00:00
|
|
|
case llvm::Triple::Itanium:
|
|
|
|
TC = new toolchains::CrossWindowsToolChain(*this, Target, Args);
|
|
|
|
break;
|
2014-11-24 09:15:30 +00:00
|
|
|
case llvm::Triple::MSVC:
|
|
|
|
case llvm::Triple::UnknownEnvironment:
|
2015-01-18 16:23:48 +00:00
|
|
|
TC = new toolchains::MSVCToolChain(*this, Target, Args);
|
2014-11-24 09:15:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-04-14 14:01:31 +00:00
|
|
|
break;
|
|
|
|
default:
|
2015-05-27 18:47:56 +00:00
|
|
|
// Of these targets, Hexagon is the only one that might have
|
|
|
|
// an OS of Linux, in which case it got handled above already.
|
|
|
|
if (Target.getArchName() == "tce")
|
2013-04-08 18:45:10 +00:00
|
|
|
TC = new toolchains::TCEToolChain(*this, Target, Args);
|
2015-05-27 18:47:56 +00:00
|
|
|
else if (Target.getArch() == llvm::Triple::hexagon)
|
2013-04-08 18:45:10 +00:00
|
|
|
TC = new toolchains::Hexagon_TC(*this, Target, Args);
|
2015-05-27 18:47:56 +00:00
|
|
|
else if (Target.getArch() == llvm::Triple::xcore)
|
2013-12-22 00:07:40 +00:00
|
|
|
TC = new toolchains::XCore(*this, Target, Args);
|
2015-05-27 18:47:56 +00:00
|
|
|
else if (Target.isOSBinFormatELF())
|
2014-11-24 09:15:30 +00:00
|
|
|
TC = new toolchains::Generic_ELF(*this, Target, Args);
|
2015-05-27 18:47:56 +00:00
|
|
|
else if (Target.isOSBinFormatMachO())
|
2014-11-24 09:15:30 +00:00
|
|
|
TC = new toolchains::MachO(*this, Target, Args);
|
2015-05-27 18:47:56 +00:00
|
|
|
else
|
|
|
|
TC = new toolchains::Generic_GCC(*this, Target, Args);
|
2012-04-14 14:01:31 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
2012-04-14 14:01:31 +00:00
|
|
|
return *TC;
|
2009-06-02 17:58:47 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 18:45:10 +00:00
|
|
|
bool Driver::ShouldUseClangCompiler(const JobAction &JA) const {
|
2009-10-14 18:03:49 +00:00
|
|
|
// Check if user requested no clang, or clang doesn't understand this type (we
|
|
|
|
// only handle single inputs for now).
|
2012-12-02 13:20:44 +00:00
|
|
|
if (JA.size() != 1 ||
|
2009-06-02 17:58:47 +00:00
|
|
|
!types::isAcceptedByClang((*JA.begin())->getType()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Otherwise make sure this is an action clang understands.
|
2012-12-02 13:20:44 +00:00
|
|
|
if (!isa<PreprocessJobAction>(JA) && !isa<PrecompileJobAction>(JA) &&
|
2015-01-18 16:23:48 +00:00
|
|
|
!isa<CompileJobAction>(JA) && !isa<BackendJobAction>(JA))
|
2009-06-02 17:58:47 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-10-14 18:03:49 +00:00
|
|
|
/// GetReleaseVersion - Parse (([0-9]+)(.([0-9]+)(.([0-9]+)?))?)? and return the
|
|
|
|
/// grouped values as integers. Numbers which are not provided are set to 0.
|
2009-06-02 17:58:47 +00:00
|
|
|
///
|
2009-10-14 18:03:49 +00:00
|
|
|
/// \return True if the entire string was parsed (9.2), or all groups were
|
|
|
|
/// parsed (10.3.5extrastuff).
|
|
|
|
bool Driver::GetReleaseVersion(const char *Str, unsigned &Major,
|
2009-06-02 17:58:47 +00:00
|
|
|
unsigned &Minor, unsigned &Micro,
|
|
|
|
bool &HadExtra) {
|
|
|
|
HadExtra = false;
|
|
|
|
|
|
|
|
Major = Minor = Micro = 0;
|
2009-10-14 18:03:49 +00:00
|
|
|
if (*Str == '\0')
|
2015-05-27 18:47:56 +00:00
|
|
|
return false;
|
2009-06-02 17:58:47 +00:00
|
|
|
|
|
|
|
char *End;
|
|
|
|
Major = (unsigned) strtol(Str, &End, 10);
|
|
|
|
if (*Str != '\0' && *End == '\0')
|
|
|
|
return true;
|
|
|
|
if (*End != '.')
|
|
|
|
return false;
|
2009-10-14 18:03:49 +00:00
|
|
|
|
2009-06-02 17:58:47 +00:00
|
|
|
Str = End+1;
|
|
|
|
Minor = (unsigned) strtol(Str, &End, 10);
|
|
|
|
if (*Str != '\0' && *End == '\0')
|
|
|
|
return true;
|
|
|
|
if (*End != '.')
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Str = End+1;
|
|
|
|
Micro = (unsigned) strtol(Str, &End, 10);
|
|
|
|
if (*Str != '\0' && *End == '\0')
|
|
|
|
return true;
|
|
|
|
if (Str == End)
|
|
|
|
return false;
|
|
|
|
HadExtra = true;
|
|
|
|
return true;
|
|
|
|
}
|
2013-12-22 00:07:40 +00:00
|
|
|
|
|
|
|
std::pair<unsigned, unsigned> Driver::getIncludeExcludeOptionFlagMasks() const {
|
|
|
|
unsigned IncludedFlagsBitmask = 0;
|
|
|
|
unsigned ExcludedFlagsBitmask = options::NoDriverOption;
|
|
|
|
|
|
|
|
if (Mode == CLMode) {
|
|
|
|
// Include CL and Core options.
|
|
|
|
IncludedFlagsBitmask |= options::CLOption;
|
|
|
|
IncludedFlagsBitmask |= options::CoreOption;
|
|
|
|
} else {
|
|
|
|
ExcludedFlagsBitmask |= options::CLOption;
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_pair(IncludedFlagsBitmask, ExcludedFlagsBitmask);
|
|
|
|
}
|
2014-05-11 18:26:10 +00:00
|
|
|
|
|
|
|
bool clang::driver::isOptimizationLevelFast(const llvm::opt::ArgList &Args) {
|
|
|
|
return Args.hasFlag(options::OPT_Ofast, options::OPT_O_Group, false);
|
|
|
|
}
|