2010-09-24 07:48:20 +08:00
|
|
|
//===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===//
|
2009-03-03 03:59:07 +08: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"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "InputInfo.h"
|
|
|
|
#include "ToolChains.h"
|
|
|
|
#include "clang/Basic/Version.h"
|
2009-03-12 15:58:46 +08:00
|
|
|
#include "clang/Driver/Action.h"
|
2009-03-05 04:49:20 +08:00
|
|
|
#include "clang/Driver/Arg.h"
|
|
|
|
#include "clang/Driver/ArgList.h"
|
|
|
|
#include "clang/Driver/Compilation.h"
|
2009-03-12 16:55:43 +08:00
|
|
|
#include "clang/Driver/DriverDiagnostic.h"
|
2009-03-16 14:56:51 +08:00
|
|
|
#include "clang/Driver/Job.h"
|
2009-11-19 08:15:11 +08:00
|
|
|
#include "clang/Driver/OptTable.h"
|
2009-03-05 14:38:47 +08:00
|
|
|
#include "clang/Driver/Option.h"
|
2009-03-05 04:49:20 +08:00
|
|
|
#include "clang/Driver/Options.h"
|
2009-03-16 14:56:51 +08:00
|
|
|
#include "clang/Driver/Tool.h"
|
|
|
|
#include "clang/Driver/ToolChain.h"
|
2011-03-23 12:04:01 +08:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2010-01-19 09:29:05 +08:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2011-09-23 13:57:42 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-12-18 05:22:22 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-30 02:12:39 +08:00
|
|
|
#include "llvm/Support/Path.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-11-30 02:12:39 +08:00
|
|
|
#include "llvm/Support/Program.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2012-02-02 08:40:14 +08:00
|
|
|
#include <map>
|
2012-02-01 22:25:28 +08:00
|
|
|
|
2012-12-05 12:56:27 +08:00
|
|
|
// FIXME: It would prevent to include llvm-config.h
|
|
|
|
// if it were included before system_error.h.
|
|
|
|
#include "clang/Config/config.h"
|
|
|
|
|
2009-03-05 04:49:20 +08:00
|
|
|
using namespace clang::driver;
|
2009-03-26 13:56:24 +08:00
|
|
|
using namespace clang;
|
2009-03-05 04:49:20 +08:00
|
|
|
|
2011-07-23 18:55:15 +08:00
|
|
|
Driver::Driver(StringRef ClangExecutable,
|
2012-01-14 04:36:46 +08:00
|
|
|
StringRef DefaultTargetTriple,
|
2011-07-23 18:55:15 +08:00
|
|
|
StringRef DefaultImageName,
|
2011-09-26 07:23:43 +08:00
|
|
|
DiagnosticsEngine &Diags)
|
2011-06-04 13:19:42 +08:00
|
|
|
: Opts(createDriverOptTable()), Diags(Diags),
|
2012-04-16 12:16:43 +08:00
|
|
|
ClangExecutable(ClangExecutable), SysRoot(DEFAULT_SYSROOT),
|
|
|
|
UseStdLib(true), DefaultTargetTriple(DefaultTargetTriple),
|
2012-01-14 08:30:11 +08:00
|
|
|
DefaultImageName(DefaultImageName),
|
2012-09-14 11:35:42 +08:00
|
|
|
DriverTitle("clang LLVM compiler"),
|
2011-04-08 02:01:20 +08:00
|
|
|
CCPrintOptionsFilename(0), CCPrintHeadersFilename(0),
|
|
|
|
CCLogDiagnosticsFilename(0), CCCIsCXX(false),
|
2011-03-07 08:09:32 +08:00
|
|
|
CCCIsCPP(false),CCCEcho(false), CCCPrintBindings(false),
|
2011-04-08 02:01:20 +08:00
|
|
|
CCPrintOptions(false), CCPrintHeaders(false), CCLogDiagnostics(false),
|
2011-08-03 01:58:04 +08:00
|
|
|
CCGenDiagnostics(false), CCCGenericGCCName(""), CheckInputsExist(true),
|
2012-11-08 09:03:29 +08:00
|
|
|
CCCUsePCH(true), SuppressMissingInputWarning(false) {
|
2010-01-20 10:35:16 +08:00
|
|
|
|
2010-12-18 12:13:32 +08:00
|
|
|
Name = llvm::sys::path::stem(ClangExecutable);
|
|
|
|
Dir = llvm::sys::path::parent_path(ClangExecutable);
|
2010-07-19 08:44:04 +08:00
|
|
|
|
2010-01-20 10:35:16 +08:00
|
|
|
// Compute the path to the resource directory.
|
2011-07-23 18:55:15 +08:00
|
|
|
StringRef ClangResourceDir(CLANG_RESOURCE_DIR);
|
2012-02-05 10:13:05 +08:00
|
|
|
SmallString<128> P(Dir);
|
2010-12-18 12:13:32 +08:00
|
|
|
if (ClangResourceDir != "")
|
|
|
|
llvm::sys::path::append(P, ClangResourceDir);
|
|
|
|
else
|
|
|
|
llvm::sys::path::append(P, "..", "lib", "clang", CLANG_VERSION_STRING);
|
2010-01-20 10:35:16 +08:00
|
|
|
ResourceDir = P.str();
|
2009-03-03 03:59:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Driver::~Driver() {
|
2009-03-05 04:49:20 +08:00
|
|
|
delete Opts;
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
|
|
|
|
for (llvm::StringMap<ToolChain *>::iterator I = ToolChains.begin(),
|
|
|
|
E = ToolChains.end();
|
|
|
|
I != E; ++I)
|
|
|
|
delete I->second;
|
2009-03-03 03:59:07 +08:00
|
|
|
}
|
|
|
|
|
2011-07-24 01:14:25 +08:00
|
|
|
InputArgList *Driver::ParseArgStrings(ArrayRef<const char *> ArgList) {
|
2009-03-18 09:38:48 +08:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Command line argument parsing");
|
2009-11-19 14:35:06 +08:00
|
|
|
unsigned MissingArgIndex, MissingArgCount;
|
2011-03-23 12:04:01 +08:00
|
|
|
InputArgList *Args = getOpts().ParseArgs(ArgList.begin(), ArgList.end(),
|
2009-11-19 14:35:06 +08:00
|
|
|
MissingArgIndex, MissingArgCount);
|
|
|
|
|
|
|
|
// Check for missing argument error.
|
|
|
|
if (MissingArgCount)
|
|
|
|
Diag(clang::diag::err_drv_missing_argument)
|
|
|
|
<< Args->getArgString(MissingArgIndex) << MissingArgCount;
|
|
|
|
|
|
|
|
// Check for unsupported options.
|
|
|
|
for (ArgList::const_iterator it = Args->begin(), ie = Args->end();
|
|
|
|
it != ie; ++it) {
|
|
|
|
Arg *A = *it;
|
2012-10-20 06:37:06 +08:00
|
|
|
if (A->getOption().hasFlag(options::Unsupported)) {
|
2009-03-23 07:26:43 +08:00
|
|
|
Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(*Args);
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-23 01:55:22 +08:00
|
|
|
|
|
|
|
// Warn about -mcpu= without an argument.
|
2012-07-10 01:31:28 +08:00
|
|
|
if (A->getOption().matches(options::OPT_mcpu_EQ) &&
|
2012-02-23 01:55:22 +08:00
|
|
|
A->containsValue("")) {
|
2012-07-10 01:31:28 +08:00
|
|
|
Diag(clang::diag::warn_drv_empty_joined_argument) <<
|
|
|
|
A->getAsString(*Args);
|
2012-02-23 01:55:22 +08:00
|
|
|
}
|
2009-03-05 14:38:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return Args;
|
|
|
|
}
|
|
|
|
|
2011-07-28 07:36:45 +08: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 {
|
|
|
|
Arg *PhaseArg = 0;
|
|
|
|
phases::ID FinalPhase;
|
2011-08-18 06:59:59 +08:00
|
|
|
|
2011-07-28 07:36:45 +08:00
|
|
|
// -{E,M,MM} only run the preprocessor.
|
|
|
|
if (CCCIsCPP ||
|
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_E)) ||
|
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM))) {
|
|
|
|
FinalPhase = phases::Preprocess;
|
2011-08-18 06:59:59 +08:00
|
|
|
|
2011-07-28 07:36:45 +08:00
|
|
|
// -{fsyntax-only,-analyze,emit-ast,S} only run up to the compiler.
|
|
|
|
} else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
|
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||
|
2012-04-02 23:59:19 +08:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) ||
|
2012-03-07 04:06:33 +08:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT__migrate)) ||
|
2011-07-28 07:36:45 +08:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT__analyze,
|
2012-03-07 07:14:35 +08:00
|
|
|
options::OPT__analyze_auto)) ||
|
2011-07-28 07:36:45 +08:00
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_emit_ast)) ||
|
|
|
|
(PhaseArg = DAL.getLastArg(options::OPT_S))) {
|
|
|
|
FinalPhase = phases::Compile;
|
|
|
|
|
|
|
|
// -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;
|
|
|
|
}
|
|
|
|
|
2010-06-12 06:00:26 +08:00
|
|
|
DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
|
|
|
|
DerivedArgList *DAL = new DerivedArgList(Args);
|
|
|
|
|
2010-09-17 08:45:02 +08:00
|
|
|
bool HasNostdlib = Args.hasArg(options::OPT_nostdlib);
|
2010-06-12 06:00:26 +08:00
|
|
|
for (ArgList::const_iterator it = Args.begin(),
|
2010-06-15 05:23:12 +08:00
|
|
|
ie = Args.end(); it != ie; ++it) {
|
|
|
|
const Arg *A = *it;
|
|
|
|
|
|
|
|
// 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').
|
2010-06-15 05:37:09 +08:00
|
|
|
|
|
|
|
// 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")) {
|
2010-06-15 05:23:12 +08:00
|
|
|
// 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-11-01 12:30:05 +08:00
|
|
|
if (StringRef(A->getValue(i)) != "--no-demangle")
|
2010-06-15 05:23:12 +08:00
|
|
|
DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker),
|
2012-11-01 12:30:05 +08:00
|
|
|
A->getValue(i));
|
2010-06-15 05:23:12 +08:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-06-15 05:37:09 +08:00
|
|
|
// 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-11-01 12:30:05 +08:00
|
|
|
(A->getValue(0) == StringRef("-MD") ||
|
|
|
|
A->getValue(0) == StringRef("-MMD"))) {
|
2010-06-16 04:30:18 +08:00
|
|
|
// Rewrite to -MD/-MMD along with -MF.
|
2012-11-01 12:30:05 +08:00
|
|
|
if (A->getValue(0) == StringRef("-MD"))
|
2010-06-16 04:30:18 +08:00
|
|
|
DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD));
|
|
|
|
else
|
|
|
|
DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD));
|
2012-11-08 07:37:14 +08:00
|
|
|
if (A->getNumValues() == 2)
|
|
|
|
DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF),
|
|
|
|
A->getValue(1));
|
2010-06-15 05:37:09 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-09-18 02:39:08 +08:00
|
|
|
// Rewrite reserved library names.
|
|
|
|
if (A->getOption().matches(options::OPT_l)) {
|
2012-11-01 12:30:05 +08:00
|
|
|
StringRef Value = A->getValue();
|
2010-09-17 08:45:02 +08:00
|
|
|
|
2010-09-18 02:39:08 +08:00
|
|
|
// Rewrite unless -nostdlib is present.
|
|
|
|
if (!HasNostdlib && Value == "stdc++") {
|
2010-09-17 08:45:02 +08:00
|
|
|
DAL->AddFlagArg(A, Opts->getOption(
|
|
|
|
options::OPT_Z_reserved_lib_stdcxx));
|
|
|
|
continue;
|
|
|
|
}
|
2010-09-18 02:39:08 +08:00
|
|
|
|
|
|
|
// Rewrite unconditionally.
|
|
|
|
if (Value == "cc_kext") {
|
|
|
|
DAL->AddFlagArg(A, Opts->getOption(
|
|
|
|
options::OPT_Z_reserved_lib_cckext));
|
|
|
|
continue;
|
|
|
|
}
|
2010-09-17 08:45:02 +08:00
|
|
|
}
|
|
|
|
|
2010-06-12 06:00:26 +08:00
|
|
|
DAL->append(*it);
|
2010-06-15 05:23:12 +08:00
|
|
|
}
|
2010-06-12 06:00:26 +08:00
|
|
|
|
2010-08-12 08:05:12 +08: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);
|
2010-08-18 06:32:45 +08:00
|
|
|
DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim();
|
2010-08-12 08:05:12 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-06-12 06:00:26 +08:00
|
|
|
return DAL;
|
|
|
|
}
|
|
|
|
|
2011-07-24 01:14:25 +08:00
|
|
|
Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
|
2009-03-18 09:38:48 +08:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Compilation construction");
|
|
|
|
|
2011-08-18 06:59:59 +08:00
|
|
|
// FIXME: Handle environment options which affect driver behavior, somewhere
|
2012-03-13 05:24:57 +08:00
|
|
|
// (client?). GCC_EXEC_PREFIX, LPATH, CC_PRINT_OPTIONS.
|
2011-09-14 08:47:55 +08:00
|
|
|
|
|
|
|
if (char *env = ::getenv("COMPILER_PATH")) {
|
|
|
|
StringRef CompilerPath = env;
|
|
|
|
while (!CompilerPath.empty()) {
|
2012-07-10 01:31:28 +08:00
|
|
|
std::pair<StringRef, StringRef> Split = CompilerPath.split(':');
|
2011-09-14 08:47:55 +08:00
|
|
|
PrefixDirs.push_back(Split.first);
|
|
|
|
CompilerPath = Split.second;
|
|
|
|
}
|
|
|
|
}
|
2009-03-13 08:51:18 +08:00
|
|
|
|
|
|
|
// FIXME: What are we going to do with -V and -b?
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// FIXME: This stuff needs to go into the Compilation, not the driver.
|
2009-03-12 15:58:46 +08:00
|
|
|
bool CCCPrintOptions = false, CCCPrintActions = false;
|
2009-03-05 14:38:47 +08:00
|
|
|
|
2011-03-23 12:04:01 +08:00
|
|
|
InputArgList *Args = ParseArgStrings(ArgList.slice(1));
|
2009-12-05 05:55:23 +08:00
|
|
|
|
2009-12-08 02:28:29 +08:00
|
|
|
// -no-canonical-prefixes is used very early in main.
|
|
|
|
Args->ClaimAllArgs(options::OPT_no_canonical_prefixes);
|
|
|
|
|
2010-08-02 10:38:03 +08:00
|
|
|
// Ignore -pipe.
|
|
|
|
Args->ClaimAllArgs(options::OPT_pipe);
|
|
|
|
|
2009-12-05 05:55:23 +08:00
|
|
|
// Extract -ccc args.
|
2009-03-11 04:52:46 +08:00
|
|
|
//
|
2009-09-09 07:36:43 +08: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-05 05:55:23 +08:00
|
|
|
CCCPrintOptions = Args->hasArg(options::OPT_ccc_print_options);
|
|
|
|
CCCPrintActions = Args->hasArg(options::OPT_ccc_print_phases);
|
|
|
|
CCCPrintBindings = Args->hasArg(options::OPT_ccc_print_bindings);
|
2009-12-05 08:13:59 +08:00
|
|
|
CCCIsCXX = Args->hasArg(options::OPT_ccc_cxx) || CCCIsCXX;
|
2009-12-05 05:55:23 +08:00
|
|
|
CCCEcho = Args->hasArg(options::OPT_ccc_echo);
|
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT_ccc_gcc_name))
|
2012-11-01 12:30:05 +08:00
|
|
|
CCCGenericGCCName = A->getValue();
|
2009-12-05 05:55:23 +08:00
|
|
|
CCCUsePCH = Args->hasFlag(options::OPT_ccc_pch_is_pch,
|
|
|
|
options::OPT_ccc_pch_is_pth);
|
2012-02-23 03:15:16 +08:00
|
|
|
// FIXME: DefaultTargetTriple is used by the target-prefixed calls to as/ld
|
|
|
|
// and getToolChain is const.
|
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT_target))
|
2012-11-01 12:30:05 +08:00
|
|
|
DefaultTargetTriple = A->getValue();
|
2009-12-05 05:55:23 +08:00
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT_ccc_install_dir))
|
2012-11-01 12:30:05 +08:00
|
|
|
Dir = InstalledDir = A->getValue();
|
2011-02-09 04:31:42 +08: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-11-01 12:30:05 +08:00
|
|
|
PrefixDirs.push_back(A->getValue(0));
|
2011-02-09 04:31:42 +08:00
|
|
|
}
|
2011-03-21 21:51:29 +08:00
|
|
|
if (const Arg *A = Args->getLastArg(options::OPT__sysroot_EQ))
|
2012-11-01 12:30:05 +08:00
|
|
|
SysRoot = A->getValue();
|
2011-03-21 21:59:26 +08:00
|
|
|
if (Args->hasArg(options::OPT_nostdlib))
|
|
|
|
UseStdLib = false;
|
2009-03-11 04:52:46 +08:00
|
|
|
|
2010-06-12 06:00:26 +08:00
|
|
|
// Perform the default argument translations.
|
|
|
|
DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args);
|
|
|
|
|
2012-01-25 16:49:21 +08:00
|
|
|
// Owned by the host.
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
const ToolChain &TC = getToolChain(*Args);
|
2012-01-25 16:49:21 +08:00
|
|
|
|
2009-03-18 10:55:38 +08:00
|
|
|
// The compilation takes ownership of Args.
|
2012-01-25 16:49:21 +08:00
|
|
|
Compilation *C = new Compilation(*this, TC, Args, TranslatedArgs);
|
2009-03-18 10:55:38 +08:00
|
|
|
|
2009-03-11 04:52:46 +08:00
|
|
|
// FIXME: This behavior shouldn't be here.
|
|
|
|
if (CCCPrintOptions) {
|
2010-06-12 06:43:38 +08:00
|
|
|
PrintOptions(C->getInputArgs());
|
2009-03-18 10:55:38 +08:00
|
|
|
return C;
|
2009-03-11 04:52:46 +08:00
|
|
|
}
|
2009-03-12 15:58:46 +08:00
|
|
|
|
2009-03-18 10:55:38 +08:00
|
|
|
if (!HandleImmediateArgs(*C))
|
|
|
|
return C;
|
2009-03-13 08:51:18 +08:00
|
|
|
|
2011-08-13 06:08:57 +08:00
|
|
|
// Construct the list of inputs.
|
|
|
|
InputList Inputs;
|
|
|
|
BuildInputs(C->getDefaultToolChain(), C->getArgs(), Inputs);
|
|
|
|
|
2012-01-24 18:43:44 +08:00
|
|
|
// Construct the list of abstract actions to perform for this compilation. On
|
|
|
|
// Darwin target OSes this uses the driver-driver and universal actions.
|
2012-01-25 16:49:21 +08:00
|
|
|
if (TC.getTriple().isOSDarwin())
|
2011-03-07 09:15:29 +08:00
|
|
|
BuildUniversalActions(C->getDefaultToolChain(), C->getArgs(),
|
2011-08-13 06:08:57 +08:00
|
|
|
Inputs, C->getActions());
|
2009-03-12 15:58:46 +08:00
|
|
|
else
|
2011-08-13 06:08:57 +08:00
|
|
|
BuildActions(C->getDefaultToolChain(), C->getArgs(), Inputs,
|
|
|
|
C->getActions());
|
2009-03-12 15:58:46 +08:00
|
|
|
|
|
|
|
if (CCCPrintActions) {
|
2009-03-18 11:13:20 +08:00
|
|
|
PrintActions(*C);
|
2009-03-18 10:55:38 +08:00
|
|
|
return C;
|
2009-03-12 15:58:46 +08:00
|
|
|
}
|
2009-03-14 01:24:34 +08:00
|
|
|
|
2009-03-18 10:55:38 +08:00
|
|
|
BuildJobs(*C);
|
2009-03-15 09:38:15 +08:00
|
|
|
|
|
|
|
return C;
|
2009-03-11 04:52:46 +08:00
|
|
|
}
|
|
|
|
|
2011-08-18 06:59:59 +08:00
|
|
|
// When clang crashes, produce diagnostic information including the fully
|
|
|
|
// preprocessed source file(s). Request that the developer attach the
|
2011-08-03 01:58:04 +08:00
|
|
|
// diagnostic information to a bug report.
|
|
|
|
void Driver::generateCompilationDiagnostics(Compilation &C,
|
|
|
|
const Command *FailingCommand) {
|
2012-02-22 08:30:39 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics))
|
2012-07-10 01:31:28 +08:00
|
|
|
return;
|
2012-03-07 08:30:40 +08:00
|
|
|
|
|
|
|
// Don't try to generate diagnostics for link jobs.
|
2012-04-21 01:08:59 +08:00
|
|
|
if (FailingCommand && FailingCommand->getCreator().isLinkJob())
|
2012-02-22 08:30:39 +08:00
|
|
|
return;
|
|
|
|
|
2012-06-20 01:51:34 +08:00
|
|
|
// Print the version of the compiler.
|
|
|
|
PrintVersion(C, llvm::errs());
|
|
|
|
|
2011-08-03 01:58:04 +08:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
2012-06-20 02:39:21 +08:00
|
|
|
<< "PLEASE submit a bug report to " BUG_REPORT_URL " and include the "
|
|
|
|
"crash backtrace, preprocessed source, and associated run script.";
|
2011-08-03 01:58:04 +08:00
|
|
|
|
|
|
|
// Suppress driver output and emit preprocessor output to temp file.
|
|
|
|
CCCIsCPP = true;
|
|
|
|
CCGenDiagnostics = true;
|
2012-06-30 06:03:56 +08:00
|
|
|
C.getArgs().AddFlagArg(0, Opts->getOption(options::OPT_frewrite_includes));
|
2011-08-03 01:58:04 +08:00
|
|
|
|
2011-11-03 05:29:05 +08:00
|
|
|
// Save the original job command(s).
|
|
|
|
std::string Cmd;
|
|
|
|
llvm::raw_string_ostream OS(Cmd);
|
2012-05-04 04:17:15 +08:00
|
|
|
if (FailingCommand)
|
2012-11-01 02:31:33 +08:00
|
|
|
C.PrintDiagnosticJob(OS, *FailingCommand);
|
2012-05-04 04:17:15 +08:00
|
|
|
else
|
2012-07-10 01:31:28 +08:00
|
|
|
// Crash triggered by FORCE_CLANG_DIAGNOSTICS_CRASH, which doesn't have an
|
2012-05-04 04:17:15 +08:00
|
|
|
// associated FailingCommand, so just pass all jobs.
|
2012-11-01 02:31:33 +08:00
|
|
|
C.PrintDiagnosticJob(OS, C.getJobs());
|
2011-11-03 05:29:05 +08:00
|
|
|
OS.flush();
|
|
|
|
|
2011-08-03 01:58:04 +08:00
|
|
|
// Clear stale state and suppress tool output.
|
|
|
|
C.initCompilationForDiagnostics();
|
2011-08-13 06:08:57 +08:00
|
|
|
Diags.Reset();
|
|
|
|
|
|
|
|
// Construct the list of inputs.
|
|
|
|
InputList Inputs;
|
|
|
|
BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs);
|
2011-08-03 01:58:04 +08:00
|
|
|
|
2011-08-13 07:30:05 +08:00
|
|
|
for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
|
2011-08-18 08:22:25 +08:00
|
|
|
bool IgnoreInput = false;
|
|
|
|
|
|
|
|
// Ignore input from stdin or any inputs that cannot be preprocessed.
|
2012-11-01 12:30:05 +08:00
|
|
|
if (!strcmp(it->second->getValue(), "-")) {
|
2011-08-18 08:22:25 +08:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s) - ignoring input from stdin"
|
|
|
|
".";
|
|
|
|
IgnoreInput = true;
|
|
|
|
} else if (types::getPreprocessedType(it->first) == types::TY_INVALID) {
|
|
|
|
IgnoreInput = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IgnoreInput) {
|
2011-08-13 07:30:05 +08:00
|
|
|
it = Inputs.erase(it);
|
|
|
|
ie = Inputs.end();
|
2011-08-18 07:08:45 +08:00
|
|
|
} else {
|
2011-08-13 07:30:05 +08:00
|
|
|
++it;
|
2011-08-18 07:08:45 +08:00
|
|
|
}
|
2011-08-13 07:30:05 +08:00
|
|
|
}
|
2011-08-18 08:22:25 +08:00
|
|
|
|
2011-09-07 07:52:36 +08:00
|
|
|
// Don't attempt to generate preprocessed files if multiple -arch options are
|
2012-02-14 02:16:28 +08:00
|
|
|
// used, unless they're all duplicates.
|
|
|
|
llvm::StringSet<> ArchNames;
|
2011-09-07 07:52:36 +08:00
|
|
|
for (ArgList::const_iterator it = C.getArgs().begin(), ie = C.getArgs().end();
|
|
|
|
it != ie; ++it) {
|
|
|
|
Arg *A = *it;
|
|
|
|
if (A->getOption().matches(options::OPT_arch)) {
|
2012-11-01 12:30:05 +08:00
|
|
|
StringRef ArchName = A->getValue();
|
2012-02-14 02:16:28 +08:00
|
|
|
ArchNames.insert(ArchName);
|
2011-09-07 07:52:36 +08:00
|
|
|
}
|
|
|
|
}
|
2012-02-14 02:16:28 +08: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-09-07 07:52:36 +08:00
|
|
|
|
2011-08-13 07:30:05 +08:00
|
|
|
if (Inputs.empty()) {
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s) - no preprocessable inputs.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-24 18:43:44 +08:00
|
|
|
// Construct the list of abstract actions to perform for this compilation. On
|
|
|
|
// Darwin OSes this uses the driver-driver and builds universal actions.
|
2012-01-25 16:49:21 +08:00
|
|
|
const ToolChain &TC = C.getDefaultToolChain();
|
|
|
|
if (TC.getTriple().isOSDarwin())
|
|
|
|
BuildUniversalActions(TC, C.getArgs(), Inputs, C.getActions());
|
2011-08-03 01:58:04 +08:00
|
|
|
else
|
2012-01-25 16:49:21 +08:00
|
|
|
BuildActions(TC, C.getArgs(), Inputs, C.getActions());
|
2011-08-03 01:58:04 +08:00
|
|
|
|
|
|
|
BuildJobs(C);
|
|
|
|
|
|
|
|
// If there were errors building the compilation, quit now.
|
|
|
|
if (Diags.hasErrorOccurred()) {
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s).";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate preprocessed output.
|
|
|
|
FailingCommand = 0;
|
|
|
|
int Res = C.ExecuteJob(C.getJobs(), FailingCommand);
|
|
|
|
|
|
|
|
// If the command succeeded, we are done.
|
|
|
|
if (Res == 0) {
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
2012-06-20 02:39:21 +08:00
|
|
|
<< "\n********************\n\n"
|
|
|
|
"PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:\n"
|
|
|
|
"Preprocessed source(s) and associated run script(s) are located at:";
|
2011-08-03 01:58:04 +08:00
|
|
|
ArgStringList Files = C.getTempFiles();
|
2011-08-18 06:59:59 +08:00
|
|
|
for (ArgStringList::const_iterator it = Files.begin(), ie = Files.end();
|
2011-11-03 05:29:05 +08:00
|
|
|
it != ie; ++it) {
|
2011-08-03 01:58:04 +08:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg) << *it;
|
2011-11-03 05:29:05 +08:00
|
|
|
|
|
|
|
std::string Err;
|
|
|
|
std::string Script = StringRef(*it).rsplit('.').first;
|
|
|
|
Script += ".sh";
|
|
|
|
llvm::raw_fd_ostream ScriptOS(Script.c_str(), Err,
|
|
|
|
llvm::raw_fd_ostream::F_Excl |
|
|
|
|
llvm::raw_fd_ostream::F_Binary);
|
|
|
|
if (!Err.empty()) {
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating run script: " + Script + " " + Err;
|
|
|
|
} else {
|
2012-05-04 06:38:00 +08:00
|
|
|
// Append the new filename with correct preprocessed suffix.
|
|
|
|
size_t I, E;
|
|
|
|
I = Cmd.find("-main-file-name ");
|
|
|
|
assert (I != std::string::npos && "Expected to find -main-file-name");
|
|
|
|
I += 16;
|
|
|
|
E = Cmd.find(" ", I);
|
|
|
|
assert (E != std::string::npos && "-main-file-name missing argument?");
|
2012-05-04 23:32:05 +08:00
|
|
|
StringRef OldFilename = StringRef(Cmd).slice(I, E);
|
|
|
|
StringRef NewFilename = llvm::sys::path::filename(*it);
|
|
|
|
I = StringRef(Cmd).rfind(OldFilename);
|
|
|
|
E = I + OldFilename.size();
|
|
|
|
I = Cmd.rfind(" ", I) + 1;
|
|
|
|
Cmd.replace(I, E - I, NewFilename.data(), NewFilename.size());
|
2011-11-03 05:29:05 +08:00
|
|
|
ScriptOS << Cmd;
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg) << Script;
|
|
|
|
}
|
|
|
|
}
|
2012-06-20 02:39:21 +08:00
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "\n\n********************";
|
2011-08-03 01:58:04 +08:00
|
|
|
} else {
|
|
|
|
// Failure, remove preprocessed files.
|
|
|
|
if (!C.getArgs().hasArg(options::OPT_save_temps))
|
|
|
|
C.CleanupFileList(C.getTempFiles(), true);
|
|
|
|
|
|
|
|
Diag(clang::diag::note_drv_command_failed_diag_msg)
|
|
|
|
<< "Error generating preprocessed source(s).";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int Driver::ExecuteCompilation(const Compilation &C,
|
|
|
|
const Command *&FailingCommand) const {
|
2009-07-02 04:03:04 +08:00
|
|
|
// Just print if -### was present.
|
|
|
|
if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
|
|
|
|
C.PrintJob(llvm::errs(), C.getJobs(), "\n", true);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there were errors building the compilation, quit now.
|
2011-08-03 01:58:04 +08:00
|
|
|
if (Diags.hasErrorOccurred())
|
2009-07-02 04:03:04 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
int Res = C.ExecuteJob(C.getJobs(), FailingCommand);
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-07-02 04:03:04 +08:00
|
|
|
// Remove temp files.
|
|
|
|
C.CleanupFileList(C.getTempFiles());
|
|
|
|
|
2010-05-22 08:37:20 +08:00
|
|
|
// If the command succeeded, we are done.
|
|
|
|
if (Res == 0)
|
|
|
|
return Res;
|
|
|
|
|
|
|
|
// Otherwise, remove result files as well.
|
2011-11-21 08:01:05 +08:00
|
|
|
if (!C.getArgs().hasArg(options::OPT_save_temps)) {
|
2009-07-02 04:03:04 +08:00
|
|
|
C.CleanupFileList(C.getResultFiles(), true);
|
|
|
|
|
2011-11-21 08:01:05 +08:00
|
|
|
// Failure result files are valid unless we crashed.
|
2012-07-17 13:09:29 +08:00
|
|
|
if (Res < 0)
|
2011-11-21 08:01:05 +08:00
|
|
|
C.CleanupFileList(C.getFailureResultFiles(), true);
|
|
|
|
}
|
|
|
|
|
2009-07-02 04:03:04 +08:00
|
|
|
// Print extra information about abnormal failures, if possible.
|
2010-05-22 08:37:20 +08:00
|
|
|
//
|
|
|
|
// This is ad-hoc, but we don't want to be excessively noisy. If the result
|
|
|
|
// status was 1, assume the command failed normally. In particular, if it 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)
|
2011-11-19 18:24:49 +08:00
|
|
|
<< FailingTool.getShortName();
|
2010-05-22 08:37:20 +08:00
|
|
|
else
|
|
|
|
Diag(clang::diag::err_drv_command_failed)
|
|
|
|
<< FailingTool.getShortName() << Res;
|
2009-07-02 04:03:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
2009-03-13 02:24:49 +08:00
|
|
|
void Driver::PrintOptions(const ArgList &Args) const {
|
2009-03-05 14:38:47 +08:00
|
|
|
unsigned i = 0;
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ArgList::const_iterator it = Args.begin(), ie = Args.end();
|
2009-03-05 14:38:47 +08:00
|
|
|
it != ie; ++it, ++i) {
|
|
|
|
Arg *A = *it;
|
|
|
|
llvm::errs() << "Option " << i << " - "
|
2012-10-23 06:13:48 +08:00
|
|
|
<< "Name: \"" << A->getOption().getPrefixedName() << "\", "
|
2009-03-05 14:38:47 +08:00
|
|
|
<< "Values: {";
|
|
|
|
for (unsigned j = 0; j < A->getNumValues(); ++j) {
|
|
|
|
if (j)
|
|
|
|
llvm::errs() << ", ";
|
2012-11-01 12:30:05 +08:00
|
|
|
llvm::errs() << '"' << A->getValue(j) << '"';
|
2009-03-05 14:38:47 +08:00
|
|
|
}
|
|
|
|
llvm::errs() << "}\n";
|
|
|
|
}
|
2009-03-03 03:59:07 +08:00
|
|
|
}
|
2009-03-11 07:41:59 +08:00
|
|
|
|
2009-04-16 00:34:29 +08:00
|
|
|
void Driver::PrintHelp(bool ShowHidden) const {
|
2010-02-25 11:31:53 +08:00
|
|
|
getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(),
|
2012-11-10 06:36:44 +08:00
|
|
|
/*Include*/0,
|
|
|
|
/*Exclude*/options::NoDriverOption |
|
|
|
|
(ShowHidden ? 0 : options::HelpHidden));
|
2009-04-01 05:38:17 +08:00
|
|
|
}
|
|
|
|
|
2011-07-23 18:55:15 +08:00
|
|
|
void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const {
|
2009-09-09 07:36:43 +08:00
|
|
|
// FIXME: The following handlers should use a callback mechanism, we don't
|
|
|
|
// know what the client would like to do.
|
2010-01-23 10:11:34 +08:00
|
|
|
OS << getClangFullVersion() << '\n';
|
2009-03-27 00:09:13 +08:00
|
|
|
const ToolChain &TC = C.getDefaultToolChain();
|
2009-07-22 04:06:58 +08:00
|
|
|
OS << "Target: " << TC.getTripleString() << '\n';
|
2009-06-17 07:32:58 +08:00
|
|
|
|
|
|
|
// Print the threading model.
|
|
|
|
//
|
|
|
|
// FIXME: Implement correctly.
|
2009-07-22 04:06:58 +08:00
|
|
|
OS << "Thread model: " << "posix" << '\n';
|
2009-03-13 08:51:18 +08:00
|
|
|
}
|
|
|
|
|
2010-05-05 13:53:24 +08:00
|
|
|
/// PrintDiagnosticCategories - Implement the --print-diagnostic-categories
|
|
|
|
/// option.
|
2011-07-23 18:55:15 +08:00
|
|
|
static void PrintDiagnosticCategories(raw_ostream &OS) {
|
2011-05-25 13:05:01 +08:00
|
|
|
// Skip the empty category.
|
|
|
|
for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories();
|
|
|
|
i != max; ++i)
|
|
|
|
OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n';
|
2010-05-05 13:53:24 +08:00
|
|
|
}
|
|
|
|
|
2009-03-18 10:55:38 +08:00
|
|
|
bool Driver::HandleImmediateArgs(const Compilation &C) {
|
2010-06-12 06:00:19 +08:00
|
|
|
// The order these options are handled in gcc is all over the place, but we
|
2009-09-09 07:36:43 +08:00
|
|
|
// don't expect inconsistencies w.r.t. that to matter in practice.
|
2009-04-01 05:38:17 +08:00
|
|
|
|
2010-09-17 10:47:28 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT_dumpmachine)) {
|
|
|
|
llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-04-04 13:17:38 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT_dumpversion)) {
|
2011-01-12 08:43:47 +08: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-04-04 13:17:38 +08:00
|
|
|
return false;
|
|
|
|
}
|
2010-06-15 05:23:12 +08:00
|
|
|
|
2010-05-05 13:53:24 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) {
|
|
|
|
PrintDiagnosticCategories(llvm::outs());
|
|
|
|
return false;
|
|
|
|
}
|
2009-04-04 13:17:38 +08:00
|
|
|
|
2012-05-01 22:57:16 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT_help) ||
|
2009-04-16 00:34:29 +08:00
|
|
|
C.getArgs().hasArg(options::OPT__help_hidden)) {
|
|
|
|
PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden));
|
2009-04-01 05:38:17 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-04-02 23:05:41 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT__version)) {
|
2009-09-09 07:36:43 +08:00
|
|
|
// Follow gcc behavior and use stdout for --version and stderr for -v.
|
2009-07-22 04:06:58 +08:00
|
|
|
PrintVersion(C, llvm::outs());
|
2009-04-02 23:05:41 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT_v) ||
|
2009-03-18 10:55:38 +08:00
|
|
|
C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
|
2009-07-22 04:06:58 +08:00
|
|
|
PrintVersion(C, llvm::errs());
|
2009-03-13 08:51:18 +08:00
|
|
|
SuppressMissingInputWarning = true;
|
|
|
|
}
|
|
|
|
|
2009-03-18 10:55:38 +08:00
|
|
|
const ToolChain &TC = C.getDefaultToolChain();
|
2009-03-20 12:37:21 +08: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-09-06 10:08:31 +08:00
|
|
|
llvm::outs() << "libraries: =" << ResourceDir;
|
2011-07-16 18:50:05 +08:00
|
|
|
|
2012-04-16 12:16:43 +08:00
|
|
|
StringRef sysroot = C.getSysRoot();
|
2011-07-16 18:50:05 +08:00
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ToolChain::path_list::const_iterator it = TC.getFilePaths().begin(),
|
2009-03-20 12:37:21 +08:00
|
|
|
ie = TC.getFilePaths().end(); it != ie; ++it) {
|
2011-09-06 10:08:31 +08:00
|
|
|
llvm::outs() << ':';
|
2011-07-16 18:50:05 +08:00
|
|
|
const char *path = it->c_str();
|
|
|
|
if (path[0] == '=')
|
|
|
|
llvm::outs() << sysroot << path + 1;
|
|
|
|
else
|
|
|
|
llvm::outs() << path;
|
2009-03-20 12:37:21 +08:00
|
|
|
}
|
|
|
|
llvm::outs() << "\n";
|
2009-04-01 05:38:17 +08:00
|
|
|
return false;
|
2009-03-20 12:37:21 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// FIXME: The following handlers should use a callback mechanism, we don't
|
|
|
|
// know what the client would like to do.
|
2009-03-18 10:55:38 +08:00
|
|
|
if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) {
|
2012-11-01 12:30:05 +08:00
|
|
|
llvm::outs() << GetFilePath(A->getValue(), TC) << "\n";
|
2009-03-13 08:51:18 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-03-18 10:55:38 +08:00
|
|
|
if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) {
|
2012-11-01 12:30:05 +08:00
|
|
|
llvm::outs() << GetProgramPath(A->getValue(), TC) << "\n";
|
2009-03-13 08:51:18 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-03-18 10:55:38 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) {
|
2009-09-10 06:33:00 +08:00
|
|
|
llvm::outs() << GetFilePath("libgcc.a", TC) << "\n";
|
2009-03-13 08:51:18 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-17 07:25:22 +08:00
|
|
|
if (C.getArgs().hasArg(options::OPT_print_multi_lib)) {
|
|
|
|
// FIXME: We need tool chain support for this.
|
|
|
|
llvm::outs() << ".;\n";
|
|
|
|
|
|
|
|
switch (C.getDefaultToolChain().getTriple().getArch()) {
|
|
|
|
default:
|
|
|
|
break;
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-06-17 07:25:22 +08:00
|
|
|
case llvm::Triple::x86_64:
|
|
|
|
llvm::outs() << "x86_64;@m64" << "\n";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case llvm::Triple::ppc64:
|
|
|
|
llvm::outs() << "ppc64;@m64" << "\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: What is the difference between print-multi-directory and
|
|
|
|
// print-multi-os-directory?
|
|
|
|
if (C.getArgs().hasArg(options::OPT_print_multi_directory) ||
|
|
|
|
C.getArgs().hasArg(options::OPT_print_multi_os_directory)) {
|
|
|
|
switch (C.getDefaultToolChain().getTriple().getArch()) {
|
|
|
|
default:
|
|
|
|
case llvm::Triple::x86:
|
|
|
|
case llvm::Triple::ppc:
|
|
|
|
llvm::outs() << "." << "\n";
|
|
|
|
break;
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-06-17 07:25:22 +08:00
|
|
|
case llvm::Triple::x86_64:
|
|
|
|
llvm::outs() << "x86_64" << "\n";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case llvm::Triple::ppc64:
|
|
|
|
llvm::outs() << "ppc64" << "\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-03-13 08:51:18 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
static unsigned PrintActions1(const Compilation &C, Action *A,
|
2009-03-13 20:19:02 +08:00
|
|
|
std::map<Action*, unsigned> &Ids) {
|
|
|
|
if (Ids.count(A))
|
|
|
|
return Ids[A];
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-03-13 20:19:02 +08:00
|
|
|
std::string str;
|
|
|
|
llvm::raw_string_ostream os(str);
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-03-13 20:19:02 +08:00
|
|
|
os << Action::getClassName(A->getKind()) << ", ";
|
2009-09-09 07:36:43 +08:00
|
|
|
if (InputAction *IA = dyn_cast<InputAction>(A)) {
|
2012-11-01 12:30:05 +08:00
|
|
|
os << "\"" << IA->getInputArg().getValue() << "\"";
|
2009-03-13 20:19:02 +08:00
|
|
|
} else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) {
|
2012-04-28 03:51:11 +08:00
|
|
|
os << '"' << BIA->getArchName() << '"'
|
2009-03-18 11:13:20 +08:00
|
|
|
<< ", {" << PrintActions1(C, *BIA->begin(), Ids) << "}";
|
2009-03-13 20:19:02 +08:00
|
|
|
} else {
|
|
|
|
os << "{";
|
|
|
|
for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) {
|
2009-03-18 11:13:20 +08:00
|
|
|
os << PrintActions1(C, *it, Ids);
|
2009-03-13 20:19:02 +08:00
|
|
|
++it;
|
|
|
|
if (it != ie)
|
|
|
|
os << ", ";
|
|
|
|
}
|
|
|
|
os << "}";
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned Id = Ids.size();
|
|
|
|
Ids[A] = Id;
|
2009-09-09 07:36:43 +08:00
|
|
|
llvm::errs() << Id << ": " << os.str() << ", "
|
2009-03-13 20:19:02 +08:00
|
|
|
<< types::getTypeName(A->getType()) << "\n";
|
|
|
|
|
|
|
|
return Id;
|
|
|
|
}
|
|
|
|
|
2009-03-18 11:13:20 +08:00
|
|
|
void Driver::PrintActions(const Compilation &C) const {
|
2009-03-13 20:19:02 +08:00
|
|
|
std::map<Action*, unsigned> Ids;
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ActionList::const_iterator it = C.getActions().begin(),
|
2009-03-18 11:13:20 +08:00
|
|
|
ie = C.getActions().end(); it != ie; ++it)
|
|
|
|
PrintActions1(C, *it, Ids);
|
2009-03-12 15:58:46 +08:00
|
|
|
}
|
|
|
|
|
2011-05-06 22:05:11 +08:00
|
|
|
/// \brief Check whether the given input tree contains any compilation or
|
|
|
|
/// assembly actions.
|
|
|
|
static bool ContainsCompileOrAssembleAction(const Action *A) {
|
2010-06-30 00:38:33 +08:00
|
|
|
if (isa<CompileJobAction>(A) || isa<AssembleJobAction>(A))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it)
|
2011-05-06 22:05:11 +08:00
|
|
|
if (ContainsCompileOrAssembleAction(*it))
|
2010-06-30 00:38:33 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-08-02 13:43:51 +08:00
|
|
|
void Driver::BuildUniversalActions(const ToolChain &TC,
|
2011-03-07 09:15:29 +08:00
|
|
|
const DerivedArgList &Args,
|
2011-08-13 06:08:57 +08:00
|
|
|
const InputList &BAInputs,
|
2009-03-18 10:55:38 +08:00
|
|
|
ActionList &Actions) const {
|
2009-09-09 07:36:43 +08: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-03-14 04:33:35 +08:00
|
|
|
llvm::StringSet<> ArchNames;
|
2011-07-23 18:55:15 +08:00
|
|
|
SmallVector<const char *, 4> Archs;
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ArgList::const_iterator it = Args.begin(), ie = Args.end();
|
2009-03-13 02:40:18 +08:00
|
|
|
it != ie; ++it) {
|
|
|
|
Arg *A = *it;
|
|
|
|
|
2009-11-19 11:26:40 +08:00
|
|
|
if (A->getOption().matches(options::OPT_arch)) {
|
2009-09-09 07:37:30 +08: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 =
|
2012-11-01 12:30:05 +08:00
|
|
|
tools::darwin::getArchTypeForDarwinArchName(A->getValue());
|
2009-09-09 07:37:30 +08:00
|
|
|
if (Arch == llvm::Triple::UnknownArch) {
|
|
|
|
Diag(clang::diag::err_drv_invalid_arch_name)
|
|
|
|
<< A->getAsString(Args);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-03-19 15:55:12 +08:00
|
|
|
A->claim();
|
2012-11-01 12:30:05 +08:00
|
|
|
if (ArchNames.insert(A->getValue()))
|
|
|
|
Archs.push_back(A->getValue());
|
2009-03-13 02:40:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08: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-03-18 11:13:20 +08:00
|
|
|
if (!Archs.size())
|
2012-11-08 11:38:26 +08:00
|
|
|
Archs.push_back(Args.MakeArgString(TC.getDefaultUniversalArchName()));
|
2009-03-13 02:40:18 +08:00
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// FIXME: We killed off some others but these aren't yet detected in a
|
|
|
|
// functional manner. If we added information to jobs about which "auxiliary"
|
|
|
|
// files they wrote then we could detect the conflict these cause downstream.
|
2009-03-13 02:40:18 +08:00
|
|
|
if (Archs.size() > 1) {
|
|
|
|
// No recovery needed, the point of this is just to prevent
|
|
|
|
// overwriting the same files.
|
|
|
|
if (const Arg *A = Args.getLastArg(options::OPT_save_temps))
|
2009-09-09 07:36:43 +08:00
|
|
|
Diag(clang::diag::err_drv_invalid_opt_with_multiple_archs)
|
2009-03-20 14:14:23 +08:00
|
|
|
<< A->getAsString(Args);
|
2009-03-13 02:40:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ActionList SingleActions;
|
2011-08-13 06:08:57 +08:00
|
|
|
BuildActions(TC, Args, BAInputs, SingleActions);
|
2009-03-13 02:40:18 +08:00
|
|
|
|
2010-06-05 02:28:41 +08:00
|
|
|
// Add in arch bindings for every top level action, as well as lipo and
|
|
|
|
// dsymutil steps if needed.
|
2009-03-13 02:40:18 +08:00
|
|
|
for (unsigned i = 0, e = SingleActions.size(); i != e; ++i) {
|
|
|
|
Action *Act = SingleActions[i];
|
|
|
|
|
2009-09-09 07:36:43 +08: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-03-13 02:40:18 +08:00
|
|
|
// -save-temps. Compatibility wins for now.
|
|
|
|
|
2009-03-14 01:46:02 +08:00
|
|
|
if (Archs.size() > 1 && !types::canLipoType(Act->getType()))
|
2009-03-13 02:40:18 +08:00
|
|
|
Diag(clang::diag::err_drv_invalid_output_with_multiple_archs)
|
|
|
|
<< types::getTypeName(Act->getType());
|
|
|
|
|
|
|
|
ActionList Inputs;
|
2010-03-12 02:04:58 +08:00
|
|
|
for (unsigned i = 0, e = Archs.size(); i != e; ++i) {
|
2009-03-14 04:33:35 +08:00
|
|
|
Inputs.push_back(new BindArchAction(Act, Archs[i]));
|
2010-03-12 02:04:58 +08:00
|
|
|
if (i != 0)
|
|
|
|
Inputs.back()->setOwnsInputs(false);
|
|
|
|
}
|
2009-03-13 02:40:18 +08:00
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// Lipo if necessary, we do it this way because we need to set the arch flag
|
|
|
|
// so that -Xarch_ gets overwritten.
|
2009-03-13 02:40:18 +08: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-06-05 02:28:41 +08:00
|
|
|
|
2012-02-07 03:43:51 +08:00
|
|
|
// Handle debug info queries.
|
|
|
|
Arg *A = Args.getLastArg(options::OPT_g_Group);
|
2012-04-16 05:22:10 +08:00
|
|
|
if (A && !A->getOption().matches(options::OPT_g0) &&
|
|
|
|
!A->getOption().matches(options::OPT_gstabs) &&
|
|
|
|
ContainsCompileOrAssembleAction(Actions.back())) {
|
2012-07-10 01:31:28 +08:00
|
|
|
|
2012-04-16 05:22:10 +08: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
|
|
|
|
// because the debug info will refer to a temporary object file which is
|
|
|
|
// 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-06-05 02:28:41 +08:00
|
|
|
}
|
2012-04-16 05:22:10 +08:00
|
|
|
|
|
|
|
// Verify the output (debug information only) if we passed '-verify'.
|
|
|
|
if (Args.hasArg(options::OPT_verify)) {
|
|
|
|
ActionList VerifyInputs;
|
|
|
|
VerifyInputs.push_back(Actions.back());
|
|
|
|
Actions.pop_back();
|
|
|
|
Actions.push_back(new VerifyJobAction(VerifyInputs,
|
|
|
|
types::TY_Nothing));
|
|
|
|
}
|
|
|
|
}
|
2009-03-13 02:40:18 +08:00
|
|
|
}
|
2009-03-12 15:58:46 +08:00
|
|
|
}
|
|
|
|
|
2011-08-13 06:08:57 +08:00
|
|
|
// Construct a the list of inputs and their types.
|
|
|
|
void Driver::BuildInputs(const ToolChain &TC, const DerivedArgList &Args,
|
|
|
|
InputList &Inputs) const {
|
2009-09-09 07:36:43 +08: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-03-14 01:57:10 +08:00
|
|
|
types::ID InputType = types::TY_Nothing;
|
|
|
|
Arg *InputTypeArg = 0;
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ArgList::const_iterator it = Args.begin(), ie = Args.end();
|
2009-03-12 15:58:46 +08:00
|
|
|
it != ie; ++it) {
|
|
|
|
Arg *A = *it;
|
|
|
|
|
2012-08-21 05:41:17 +08:00
|
|
|
if (A->getOption().getKind() == Option::InputClass) {
|
2012-11-01 12:30:05 +08:00
|
|
|
const char *Value = A->getValue();
|
2009-03-12 15:58:46 +08:00
|
|
|
types::ID Ty = types::TY_INVALID;
|
|
|
|
|
|
|
|
// Infer the input type if necessary.
|
2009-03-14 01:57:10 +08:00
|
|
|
if (InputType == types::TY_Nothing) {
|
|
|
|
// If there was an explicit arg for this, claim it.
|
|
|
|
if (InputTypeArg)
|
|
|
|
InputTypeArg->claim();
|
|
|
|
|
2009-03-12 15:58:46 +08:00
|
|
|
// stdin must be handled specially.
|
|
|
|
if (memcmp(Value, "-", 2) == 0) {
|
2009-09-09 07:36:43 +08: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-03-12 15:58:46 +08:00
|
|
|
//
|
2009-09-09 07:36:43 +08:00
|
|
|
// Otherwise emit an error but still use a valid type to avoid
|
|
|
|
// spurious errors (e.g., no inputs).
|
2011-03-07 07:31:01 +08:00
|
|
|
if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP)
|
2009-03-12 17:13:48 +08:00
|
|
|
Diag(clang::diag::err_drv_unknown_stdin_type);
|
2009-03-12 15:58:46 +08:00
|
|
|
Ty = types::TY_C;
|
|
|
|
} else {
|
2011-03-17 06:45:02 +08: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-09-09 07:36:43 +08:00
|
|
|
// idea of what .s is.
|
2009-03-12 15:58:46 +08:00
|
|
|
if (const char *Ext = strrchr(Value, '.'))
|
2010-08-02 13:43:56 +08:00
|
|
|
Ty = TC.LookupTypeForExtension(Ext + 1);
|
2009-03-21 07:39:23 +08:00
|
|
|
|
2011-03-17 06:45:02 +08:00
|
|
|
if (Ty == types::TY_INVALID) {
|
|
|
|
if (CCCIsCPP)
|
|
|
|
Ty = types::TY_C;
|
|
|
|
else
|
|
|
|
Ty = types::TY_Object;
|
|
|
|
}
|
2010-02-18 04:32:58 +08:00
|
|
|
|
|
|
|
// If the driver is invoked as C++ compiler (like clang++ or c++) it
|
|
|
|
// should autodetect some input files as C++ for g++ compatibility.
|
|
|
|
if (CCCIsCXX) {
|
|
|
|
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-03-12 15:58:46 +08:00
|
|
|
}
|
|
|
|
|
2009-05-19 05:47:54 +08: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-09-09 07:36:43 +08:00
|
|
|
//
|
2009-05-19 05:47:54 +08:00
|
|
|
// FIXME: Clean this up if we move the phase sequence into the type.
|
2009-03-12 15:58:46 +08:00
|
|
|
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");
|
|
|
|
InputTypeArg->claim();
|
|
|
|
Ty = InputType;
|
|
|
|
}
|
|
|
|
|
2010-01-25 08:44:02 +08:00
|
|
|
// Check that the file exists, if enabled.
|
2010-11-04 06:45:23 +08:00
|
|
|
if (CheckInputsExist && memcmp(Value, "-", 2) != 0) {
|
2012-02-05 10:13:05 +08:00
|
|
|
SmallString<64> Path(Value);
|
2012-02-20 22:13:25 +08:00
|
|
|
if (Arg *WorkDir = Args.getLastArg(options::OPT_working_directory)) {
|
2012-10-27 04:09:24 +08:00
|
|
|
if (!llvm::sys::path::is_absolute(Path.str())) {
|
2012-11-01 12:30:05 +08:00
|
|
|
SmallString<64> Directory(WorkDir->getValue());
|
2012-02-20 22:13:25 +08:00
|
|
|
llvm::sys::path::append(Directory, Value);
|
|
|
|
Path.assign(Directory);
|
2010-11-04 06:45:23 +08:00
|
|
|
}
|
2012-02-20 22:13:25 +08:00
|
|
|
}
|
2010-11-04 06:45:23 +08:00
|
|
|
|
2010-12-18 05:22:22 +08:00
|
|
|
bool exists = false;
|
2012-02-20 22:13:25 +08:00
|
|
|
if (llvm::sys::fs::exists(Path.c_str(), exists) || !exists)
|
2010-11-04 06:45:23 +08:00
|
|
|
Diag(clang::diag::err_drv_no_such_file) << Path.str();
|
|
|
|
else
|
|
|
|
Inputs.push_back(std::make_pair(Ty, A));
|
|
|
|
} else
|
2009-03-12 15:58:46 +08:00
|
|
|
Inputs.push_back(std::make_pair(Ty, A));
|
|
|
|
|
2012-10-20 06:37:06 +08:00
|
|
|
} else if (A->getOption().hasFlag(options::LinkerInput)) {
|
2009-09-09 07:36:43 +08:00
|
|
|
// Just treat as object type, we could make a special type for this if
|
|
|
|
// necessary.
|
2009-03-12 15:58:46 +08:00
|
|
|
Inputs.push_back(std::make_pair(types::TY_Object, A));
|
|
|
|
|
2009-11-19 11:26:40 +08:00
|
|
|
} else if (A->getOption().matches(options::OPT_x)) {
|
2009-09-09 07:36:43 +08:00
|
|
|
InputTypeArg = A;
|
2012-11-01 12:30:05 +08:00
|
|
|
InputType = types::lookupTypeForTypeSpecifier(A->getValue());
|
2012-04-07 08:01:31 +08:00
|
|
|
A->claim();
|
2009-03-12 15:58:46 +08:00
|
|
|
|
|
|
|
// Follow gcc behavior and treat as linker input for invalid -x
|
2009-09-09 07:36:43 +08:00
|
|
|
// options. Its not clear why we shouldn't just revert to unknown; but
|
2010-12-18 05:22:33 +08:00
|
|
|
// this isn't very important, we might as well be bug compatible.
|
2009-03-12 15:58:46 +08:00
|
|
|
if (!InputType) {
|
2012-11-01 12:30:05 +08:00
|
|
|
Diag(clang::diag::err_drv_unknown_language) << A->getValue();
|
2009-03-12 15:58:46 +08:00
|
|
|
InputType = types::TY_Object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-03-07 07:31:01 +08:00
|
|
|
if (CCCIsCPP && Inputs.empty()) {
|
|
|
|
// If called as standalone preprocessor, stdin is processed
|
|
|
|
// if no other input is present.
|
2011-03-07 09:15:29 +08:00
|
|
|
unsigned Index = Args.getBaseArgs().MakeIndex("-");
|
2011-03-07 07:31:01 +08:00
|
|
|
Arg *A = Opts->ParseOneArg(Args, Index);
|
|
|
|
A->claim();
|
|
|
|
Inputs.push_back(std::make_pair(types::TY_C, A));
|
|
|
|
}
|
2011-08-13 06:08:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Driver::BuildActions(const ToolChain &TC, const DerivedArgList &Args,
|
|
|
|
const InputList &Inputs, ActionList &Actions) const {
|
|
|
|
llvm::PrettyStackTraceString CrashInfo("Building compilation actions");
|
2011-03-07 07:31:01 +08:00
|
|
|
|
2009-03-13 08:17:48 +08:00
|
|
|
if (!SuppressMissingInputWarning && Inputs.empty()) {
|
2009-03-13 07:55:14 +08:00
|
|
|
Diag(clang::diag::err_drv_no_input_files);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-07-28 07:36:45 +08:00
|
|
|
Arg *FinalPhaseArg;
|
|
|
|
phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg);
|
2009-03-13 07:55:14 +08:00
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// Reject -Z* at the top level, these options should never have been exposed
|
|
|
|
// by gcc.
|
2009-03-27 00:12:09 +08:00
|
|
|
if (Arg *A = Args.getLastArg(options::OPT_Z_Joined))
|
2009-03-20 14:14:23 +08:00
|
|
|
Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args);
|
2009-03-13 07:55:14 +08:00
|
|
|
|
2009-03-13 19:38:42 +08:00
|
|
|
// Construct the actions to perform.
|
|
|
|
ActionList LinkerInputs;
|
2011-11-05 23:56:33 +08:00
|
|
|
unsigned NumSteps = 0;
|
2009-03-12 15:58:46 +08:00
|
|
|
for (unsigned i = 0, e = Inputs.size(); i != e; ++i) {
|
2009-03-13 19:38:42 +08:00
|
|
|
types::ID InputType = Inputs[i].first;
|
|
|
|
const Arg *InputArg = Inputs[i].second;
|
|
|
|
|
2011-11-05 23:56:33 +08:00
|
|
|
NumSteps = types::getNumCompilationPhases(InputType);
|
2009-03-13 19:38:42 +08:00
|
|
|
assert(NumSteps && "Invalid number of steps!");
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// If the first step comes after the final phase we are doing as part of
|
|
|
|
// this compilation, warn the user about it.
|
2009-03-13 19:38:42 +08:00
|
|
|
phases::ID InitialPhase = types::getCompilationPhase(InputType, 0);
|
|
|
|
if (InitialPhase > FinalPhase) {
|
2009-03-19 15:57:08 +08:00
|
|
|
// Claim here to avoid the more general unused warning.
|
|
|
|
InputArg->claim();
|
2009-09-17 12:13:26 +08:00
|
|
|
|
2011-04-20 23:44:48 +08:00
|
|
|
// Suppress all unused style warnings with -Qunused-arguments
|
|
|
|
if (Args.hasArg(options::OPT_Qunused_arguments))
|
|
|
|
continue;
|
|
|
|
|
2012-08-06 12:09:06 +08:00
|
|
|
// Special case when final phase determined by binary name, rather than
|
|
|
|
// by a command-line argument with a corresponding Arg.
|
|
|
|
if (CCCIsCPP)
|
|
|
|
Diag(clang::diag::warn_drv_input_file_unused_by_cpp)
|
|
|
|
<< InputArg->getAsString(Args)
|
|
|
|
<< getPhaseName(InitialPhase);
|
2009-09-17 12:13:26 +08:00
|
|
|
// Special case '-E' warning on a previously preprocessed file to make
|
|
|
|
// more sense.
|
2012-08-06 12:09:06 +08:00
|
|
|
else if (InitialPhase == phases::Compile &&
|
|
|
|
FinalPhase == phases::Preprocess &&
|
|
|
|
getPreprocessedType(InputType) == types::TY_INVALID)
|
2009-09-17 12:13:26 +08:00
|
|
|
Diag(clang::diag::warn_drv_preprocessed_input_file_unused)
|
|
|
|
<< InputArg->getAsString(Args)
|
2012-08-06 12:09:06 +08:00
|
|
|
<< !!FinalPhaseArg
|
|
|
|
<< FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "";
|
2009-09-17 12:13:26 +08:00
|
|
|
else
|
|
|
|
Diag(clang::diag::warn_drv_input_file_unused)
|
|
|
|
<< InputArg->getAsString(Args)
|
|
|
|
<< getPhaseName(InitialPhase)
|
2012-08-06 12:09:06 +08:00
|
|
|
<< !!FinalPhaseArg
|
|
|
|
<< FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "";
|
2009-03-13 19:38:42 +08:00
|
|
|
continue;
|
|
|
|
}
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-03-13 19:38:42 +08:00
|
|
|
// Build the pipeline for this file.
|
2012-02-05 10:12:40 +08:00
|
|
|
OwningPtr<Action> Current(new InputAction(*InputArg, InputType));
|
2009-03-13 19:38:42 +08:00
|
|
|
for (unsigned i = 0; i != NumSteps; ++i) {
|
|
|
|
phases::ID Phase = types::getCompilationPhase(InputType, i);
|
|
|
|
|
|
|
|
// We are done if this step is past what the user requested.
|
|
|
|
if (Phase > FinalPhase)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Queue linker inputs.
|
|
|
|
if (Phase == phases::Link) {
|
|
|
|
assert(i + 1 == NumSteps && "linking must be final compilation step.");
|
2010-01-19 09:29:05 +08:00
|
|
|
LinkerInputs.push_back(Current.take());
|
2009-03-13 19:38:42 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08: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-03-25 04:17:30 +08:00
|
|
|
if (Phase == phases::Assemble && Current->getType() != types::TY_PP_Asm)
|
|
|
|
continue;
|
|
|
|
|
2009-03-13 19:38:42 +08:00
|
|
|
// Otherwise construct the appropriate action.
|
2010-01-19 09:29:05 +08:00
|
|
|
Current.reset(ConstructPhaseAction(Args, Phase, Current.take()));
|
2009-03-13 19:38:42 +08:00
|
|
|
if (Current->getType() == types::TY_Nothing)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we ended with something, add to the output list.
|
|
|
|
if (Current)
|
2010-01-19 09:29:05 +08:00
|
|
|
Actions.push_back(Current.take());
|
2009-03-12 15:58:46 +08:00
|
|
|
}
|
2009-03-13 19:38:42 +08:00
|
|
|
|
|
|
|
// Add a link action if necessary.
|
|
|
|
if (!LinkerInputs.empty())
|
|
|
|
Actions.push_back(new LinkJobAction(LinkerInputs, types::TY_Image));
|
2009-12-23 07:19:32 +08:00
|
|
|
|
|
|
|
// If we are linking, claim any options which are obviously only used for
|
|
|
|
// compilation.
|
2011-11-05 23:56:33 +08:00
|
|
|
if (FinalPhase == phases::Link && (NumSteps == 1))
|
2009-12-23 07:19:32 +08:00
|
|
|
Args.ClaimAllArgs(options::OPT_CompileOnly_Group);
|
2009-03-13 19:38:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Action *Driver::ConstructPhaseAction(const ArgList &Args, phases::ID Phase,
|
|
|
|
Action *Input) const {
|
2009-03-18 09:38:48 +08:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Constructing phase actions");
|
2009-03-13 19:38:42 +08:00
|
|
|
// Build the appropriate action.
|
|
|
|
switch (Phase) {
|
2011-09-23 13:06:16 +08:00
|
|
|
case phases::Link: llvm_unreachable("link action invalid here.");
|
2009-03-13 19:38:42 +08:00
|
|
|
case phases::Preprocess: {
|
2009-03-30 14:36:42 +08:00
|
|
|
types::ID OutputTy;
|
|
|
|
// -{M, MM} alter the output type.
|
2010-12-09 05:33:40 +08:00
|
|
|
if (Args.hasArg(options::OPT_M, options::OPT_MM)) {
|
2009-03-30 14:36:42 +08:00
|
|
|
OutputTy = types::TY_Dependencies;
|
|
|
|
} else {
|
2012-06-30 06:03:56 +08:00
|
|
|
OutputTy = Input->getType();
|
|
|
|
if (!Args.hasFlag(options::OPT_frewrite_includes,
|
|
|
|
options::OPT_fno_rewrite_includes, false))
|
|
|
|
OutputTy = types::getPreprocessedType(OutputTy);
|
2009-03-30 14:36:42 +08:00
|
|
|
assert(OutputTy != types::TY_INVALID &&
|
|
|
|
"Cannot preprocess this input type!");
|
|
|
|
}
|
2009-03-13 19:38:42 +08:00
|
|
|
return new PreprocessJobAction(Input, OutputTy);
|
|
|
|
}
|
2012-07-31 09:21:00 +08: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;
|
|
|
|
}
|
|
|
|
return new PrecompileJobAction(Input, OutputTy);
|
|
|
|
}
|
2009-03-13 19:38:42 +08:00
|
|
|
case phases::Compile: {
|
|
|
|
if (Args.hasArg(options::OPT_fsyntax_only)) {
|
|
|
|
return new CompileJobAction(Input, types::TY_Nothing);
|
2010-02-11 11:16:21 +08:00
|
|
|
} else if (Args.hasArg(options::OPT_rewrite_objc)) {
|
|
|
|
return new CompileJobAction(Input, types::TY_RewrittenObjC);
|
2012-04-02 23:59:19 +08:00
|
|
|
} else if (Args.hasArg(options::OPT_rewrite_legacy_objc)) {
|
|
|
|
return new CompileJobAction(Input, types::TY_RewrittenLegacyObjC);
|
2009-05-06 10:12:32 +08:00
|
|
|
} else if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto)) {
|
2009-03-13 19:38:42 +08:00
|
|
|
return new AnalyzeJobAction(Input, types::TY_Plist);
|
2012-03-07 04:06:33 +08:00
|
|
|
} else if (Args.hasArg(options::OPT__migrate)) {
|
|
|
|
return new MigrateJobAction(Input, types::TY_Remap);
|
2009-09-02 00:57:46 +08:00
|
|
|
} else if (Args.hasArg(options::OPT_emit_ast)) {
|
|
|
|
return new CompileJobAction(Input, types::TY_AST);
|
2011-06-22 04:55:08 +08:00
|
|
|
} else if (IsUsingLTO(Args)) {
|
2009-09-09 07:36:43 +08:00
|
|
|
types::ID Output =
|
2010-06-08 07:28:45 +08:00
|
|
|
Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC;
|
2009-03-13 19:38:42 +08:00
|
|
|
return new CompileJobAction(Input, Output);
|
|
|
|
} else {
|
|
|
|
return new CompileJobAction(Input, types::TY_PP_Asm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case phases::Assemble:
|
|
|
|
return new AssembleJobAction(Input, types::TY_Object);
|
|
|
|
}
|
|
|
|
|
2011-09-23 13:06:16 +08:00
|
|
|
llvm_unreachable("invalid phase in ConstructPhaseAction");
|
2009-03-12 15:58:46 +08:00
|
|
|
}
|
|
|
|
|
2011-06-22 04:55:08 +08:00
|
|
|
bool Driver::IsUsingLTO(const ArgList &Args) const {
|
|
|
|
// Check for -emit-llvm or -flto.
|
|
|
|
if (Args.hasArg(options::OPT_emit_llvm) ||
|
|
|
|
Args.hasFlag(options::OPT_flto, options::OPT_fno_lto, false))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Check for -O4.
|
|
|
|
if (const Arg *A = Args.getLastArg(options::OPT_O_Group))
|
|
|
|
return A->getOption().matches(options::OPT_O4);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-03-18 10:55:38 +08:00
|
|
|
void Driver::BuildJobs(Compilation &C) const {
|
2009-03-18 09:38:48 +08:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
|
2009-03-16 14:56:51 +08:00
|
|
|
|
|
|
|
Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// It is an error to provide a -o option if we are making multiple output
|
|
|
|
// files.
|
2009-03-16 14:56:51 +08:00
|
|
|
if (FinalOutput) {
|
|
|
|
unsigned NumOutputs = 0;
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ActionList::const_iterator it = C.getActions().begin(),
|
2009-03-18 10:55:38 +08:00
|
|
|
ie = C.getActions().end(); it != ie; ++it)
|
2009-03-16 14:56:51 +08:00
|
|
|
if ((*it)->getType() != types::TY_Nothing)
|
|
|
|
++NumOutputs;
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-03-16 14:56:51 +08:00
|
|
|
if (NumOutputs > 1) {
|
|
|
|
Diag(clang::diag::err_drv_output_argument_with_multiple_files);
|
|
|
|
FinalOutput = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ActionList::const_iterator it = C.getActions().begin(),
|
2009-03-18 10:55:38 +08:00
|
|
|
ie = C.getActions().end(); it != ie; ++it) {
|
2009-03-16 14:56:51 +08:00
|
|
|
Action *A = *it;
|
|
|
|
|
2009-09-09 07:36:43 +08: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-03-16 14:56:51 +08:00
|
|
|
//
|
2009-09-09 07:36:43 +08:00
|
|
|
// FIXME: This is a hack; find a cleaner way to integrate this into the
|
|
|
|
// process.
|
2009-03-16 14:56:51 +08:00
|
|
|
const char *LinkingOutput = 0;
|
2009-03-27 00:12:09 +08:00
|
|
|
if (isa<LipoJobAction>(A)) {
|
2009-03-16 14:56:51 +08:00
|
|
|
if (FinalOutput)
|
2012-11-01 12:30:05 +08:00
|
|
|
LinkingOutput = FinalOutput->getValue();
|
2009-03-16 14:56:51 +08:00
|
|
|
else
|
|
|
|
LinkingOutput = DefaultImageName.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
InputInfo II;
|
2009-09-09 07:36:43 +08:00
|
|
|
BuildJobsForAction(C, A, &C.getDefaultToolChain(),
|
2009-09-10 02:36:01 +08:00
|
|
|
/*BoundArch*/0,
|
2009-03-16 14:56:51 +08:00
|
|
|
/*AtTopLevel*/ true,
|
|
|
|
/*LinkingOutput*/ LinkingOutput,
|
|
|
|
II);
|
|
|
|
}
|
2009-03-16 14:42:30 +08:00
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// If the user passed -Qunused-arguments or there were errors, don't warn
|
|
|
|
// about any unused arguments.
|
2010-11-19 05:47:07 +08:00
|
|
|
if (Diags.hasErrorOccurred() ||
|
2009-04-08 03:04:18 +08:00
|
|
|
C.getArgs().hasArg(options::OPT_Qunused_arguments))
|
2009-03-19 02:03:46 +08:00
|
|
|
return;
|
|
|
|
|
2009-03-30 06:24:54 +08:00
|
|
|
// Claim -### here.
|
|
|
|
(void) C.getArgs().hasArg(options::OPT__HASH_HASH_HASH);
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-03-16 14:42:30 +08:00
|
|
|
for (ArgList::const_iterator it = C.getArgs().begin(), ie = C.getArgs().end();
|
|
|
|
it != ie; ++it) {
|
|
|
|
Arg *A = *it;
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-03-16 14:42:30 +08:00
|
|
|
// FIXME: It would be nice to be able to send the argument to the
|
2011-09-26 07:23:43 +08:00
|
|
|
// DiagnosticsEngine, so that extra values, position, and so on could be
|
|
|
|
// printed.
|
2009-04-04 08:52:26 +08:00
|
|
|
if (!A->isClaimed()) {
|
2012-10-20 06:37:06 +08:00
|
|
|
if (A->getOption().hasFlag(options::NoArgumentUnused))
|
2009-04-08 03:04:18 +08:00
|
|
|
continue;
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// Suppress the warning automatically if this is just a flag, and it is an
|
|
|
|
// instance of an argument we already claimed.
|
2009-04-04 08:52:26 +08:00
|
|
|
const Option &Opt = A->getOption();
|
2012-08-21 05:41:17 +08:00
|
|
|
if (Opt.getKind() == Option::FlagClass) {
|
2009-04-04 08:52:26 +08:00
|
|
|
bool DuplicateClaimed = false;
|
|
|
|
|
2009-11-25 19:53:23 +08:00
|
|
|
for (arg_iterator it = C.getArgs().filtered_begin(&Opt),
|
|
|
|
ie = C.getArgs().filtered_end(); it != ie; ++it) {
|
|
|
|
if ((*it)->isClaimed()) {
|
2009-04-04 08:52:26 +08:00
|
|
|
DuplicateClaimed = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DuplicateClaimed)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
Diag(clang::diag::warn_drv_unused_argument)
|
2009-03-20 14:14:23 +08:00
|
|
|
<< A->getAsString(C.getArgs());
|
2009-04-04 08:52:26 +08:00
|
|
|
}
|
2009-03-16 14:42:30 +08:00
|
|
|
}
|
2009-03-14 06:12:33 +08:00
|
|
|
}
|
|
|
|
|
2010-02-03 11:07:56 +08:00
|
|
|
static const Tool &SelectToolForJob(Compilation &C, const ToolChain *TC,
|
|
|
|
const JobAction *JA,
|
|
|
|
const ActionList *&Inputs) {
|
|
|
|
const Tool *ToolForJob = 0;
|
|
|
|
|
|
|
|
// 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-14 10:03:00 +08:00
|
|
|
|
|
|
|
if (C.getArgs().hasFlag(options::OPT_integrated_as,
|
2011-10-30 08:20:28 +08:00
|
|
|
options::OPT_no_integrated_as,
|
|
|
|
TC->IsIntegratedAssemblerDefault()) &&
|
2010-02-03 11:07:56 +08:00
|
|
|
!C.getArgs().hasArg(options::OPT_save_temps) &&
|
|
|
|
isa<AssembleJobAction>(JA) &&
|
|
|
|
Inputs->size() == 1 && isa<CompileJobAction>(*Inputs->begin())) {
|
2011-03-19 04:14:00 +08:00
|
|
|
const Tool &Compiler = TC->SelectTool(
|
|
|
|
C, cast<JobAction>(**Inputs->begin()), (*Inputs)[0]->getInputs());
|
2010-02-03 11:07:56 +08:00
|
|
|
if (Compiler.hasIntegratedAssembler()) {
|
|
|
|
Inputs = &(*Inputs)[0]->getInputs();
|
|
|
|
ToolForJob = &Compiler;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise use the tool for the current job.
|
|
|
|
if (!ToolForJob)
|
2011-03-19 04:14:00 +08:00
|
|
|
ToolForJob = &TC->SelectTool(C, *JA, *Inputs);
|
2010-02-03 11:07:56 +08: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) &&
|
|
|
|
!C.getArgs().hasArg(options::OPT_save_temps) &&
|
2012-09-29 03:05:17 +08:00
|
|
|
!C.getArgs().hasArg(options::OPT_rewrite_objc) &&
|
2010-02-03 11:07:56 +08:00
|
|
|
ToolForJob->hasIntegratedCPP())
|
|
|
|
Inputs = &(*Inputs)[0]->getInputs();
|
|
|
|
|
|
|
|
return *ToolForJob;
|
|
|
|
}
|
|
|
|
|
2009-03-16 14:56:51 +08:00
|
|
|
void Driver::BuildJobsForAction(Compilation &C,
|
|
|
|
const Action *A,
|
|
|
|
const ToolChain *TC,
|
2009-09-10 02:36:01 +08:00
|
|
|
const char *BoundArch,
|
2009-03-16 14:56:51 +08:00
|
|
|
bool AtTopLevel,
|
|
|
|
const char *LinkingOutput,
|
|
|
|
InputInfo &Result) const {
|
2009-09-09 07:36:43 +08:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
|
2009-03-19 07:18:19 +08:00
|
|
|
|
2009-03-16 14:56:51 +08:00
|
|
|
if (const InputAction *IA = dyn_cast<InputAction>(A)) {
|
2009-09-09 07:36:43 +08:00
|
|
|
// FIXME: It would be nice to not claim this here; maybe the old scheme of
|
|
|
|
// just using Args was better?
|
2009-03-19 15:29:38 +08:00
|
|
|
const Arg &Input = IA->getInputArg();
|
|
|
|
Input.claim();
|
2010-06-10 06:31:08 +08:00
|
|
|
if (Input.getOption().matches(options::OPT_INPUT)) {
|
2012-11-01 12:30:05 +08:00
|
|
|
const char *Name = Input.getValue();
|
2009-03-19 15:29:38 +08:00
|
|
|
Result = InputInfo(Name, A->getType(), Name);
|
|
|
|
} else
|
|
|
|
Result = InputInfo(&Input, A->getType(), "");
|
2009-03-16 14:56:51 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) {
|
2012-04-28 00:50:38 +08:00
|
|
|
const ToolChain *TC;
|
2012-04-28 00:48:16 +08:00
|
|
|
const char *ArchName = BAA->getArchName();
|
2009-09-09 07:37:19 +08:00
|
|
|
|
2012-04-28 00:48:16 +08:00
|
|
|
if (ArchName)
|
|
|
|
TC = &getToolChain(C.getArgs(), ArchName);
|
2012-04-28 00:50:38 +08:00
|
|
|
else
|
|
|
|
TC = &C.getDefaultToolChain();
|
2009-09-09 07:37:19 +08:00
|
|
|
|
2009-09-10 02:36:01 +08:00
|
|
|
BuildJobsForAction(C, *BAA->begin(), TC, BAA->getArchName(),
|
2010-08-02 10:38:12 +08:00
|
|
|
AtTopLevel, LinkingOutput, Result);
|
2009-03-16 14:56:51 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ActionList *Inputs = &A->getInputs();
|
2010-02-03 11:07:56 +08:00
|
|
|
|
|
|
|
const JobAction *JA = cast<JobAction>(A);
|
|
|
|
const Tool &T = SelectToolForJob(C, TC, JA, Inputs);
|
2009-03-16 14:56:51 +08:00
|
|
|
|
|
|
|
// Only use pipes when there is exactly one input.
|
2009-03-18 14:00:36 +08:00
|
|
|
InputInfoList InputInfos;
|
2009-03-16 14:56:51 +08:00
|
|
|
for (ActionList::const_iterator it = Inputs->begin(), ie = Inputs->end();
|
|
|
|
it != ie; ++it) {
|
2010-06-05 02:28:41 +08:00
|
|
|
// Treat dsymutil sub-jobs as being at the top-level too, they shouldn't get
|
|
|
|
// temporary output names.
|
|
|
|
//
|
|
|
|
// FIXME: Clean this up.
|
|
|
|
bool SubJobAtTopLevel = false;
|
|
|
|
if (AtTopLevel && isa<DsymutilJobAction>(A))
|
|
|
|
SubJobAtTopLevel = true;
|
|
|
|
|
2011-08-24 01:56:55 +08:00
|
|
|
// Also treat verify sub-jobs as being at the top-level. They don't
|
|
|
|
// produce any output and so don't need temporary output names.
|
|
|
|
if (AtTopLevel && isa<VerifyJobAction>(A))
|
|
|
|
SubJobAtTopLevel = true;
|
|
|
|
|
2009-03-16 14:56:51 +08:00
|
|
|
InputInfo II;
|
2010-08-02 10:38:12 +08:00
|
|
|
BuildJobsForAction(C, *it, TC, BoundArch,
|
2010-06-05 02:28:41 +08:00
|
|
|
SubJobAtTopLevel, LinkingOutput, II);
|
2009-03-16 14:56:51 +08:00
|
|
|
InputInfos.push_back(II);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always use the first input as the base input.
|
|
|
|
const char *BaseInput = InputInfos[0].getBaseInput();
|
2009-03-18 01:53:55 +08:00
|
|
|
|
2010-06-05 02:28:41 +08:00
|
|
|
// ... except dsymutil actions, which use their actual input as the base
|
|
|
|
// input.
|
|
|
|
if (JA->getType() == types::TY_dSYM)
|
|
|
|
BaseInput = InputInfos[0].getFilename();
|
|
|
|
|
2010-08-02 10:38:15 +08:00
|
|
|
// Determine the place to write output to, if any.
|
2009-03-18 01:53:55 +08:00
|
|
|
if (JA->getType() == types::TY_Nothing) {
|
2009-03-18 06:47:06 +08:00
|
|
|
Result = InputInfo(A->getType(), BaseInput);
|
2009-03-18 01:53:55 +08:00
|
|
|
} else {
|
2009-03-18 06:47:06 +08:00
|
|
|
Result = InputInfo(GetNamedOutputPath(C, *JA, BaseInput, AtTopLevel),
|
|
|
|
A->getType(), BaseInput);
|
2009-03-18 01:53:55 +08:00
|
|
|
}
|
|
|
|
|
2011-08-03 01:58:04 +08:00
|
|
|
if (CCCPrintBindings && !CCGenDiagnostics) {
|
2009-03-30 14:36:42 +08:00
|
|
|
llvm::errs() << "# \"" << T.getToolChain().getTripleString() << '"'
|
|
|
|
<< " - \"" << T.getName() << "\", inputs: [";
|
2009-03-18 06:47:06 +08: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 {
|
2010-08-02 10:38:28 +08:00
|
|
|
T.ConstructJob(C, *JA, Result, InputInfos,
|
2009-09-10 02:36:01 +08:00
|
|
|
C.getArgsForToolChain(TC, BoundArch), LinkingOutput);
|
2009-03-18 06:47:06 +08:00
|
|
|
}
|
2009-03-16 14:56:51 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
const char *Driver::GetNamedOutputPath(Compilation &C,
|
2009-03-18 01:53:55 +08:00
|
|
|
const JobAction &JA,
|
|
|
|
const char *BaseInput,
|
|
|
|
bool AtTopLevel) const {
|
2009-03-18 09:38:48 +08:00
|
|
|
llvm::PrettyStackTraceString CrashInfo("Computing output path");
|
2009-03-18 01:53:55 +08:00
|
|
|
// Output to a user requested destination?
|
2011-08-24 01:56:55 +08:00
|
|
|
if (AtTopLevel && !isa<DsymutilJobAction>(JA) &&
|
|
|
|
!isa<VerifyJobAction>(JA)) {
|
2009-03-18 01:53:55 +08:00
|
|
|
if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o))
|
2012-11-01 12:30:05 +08:00
|
|
|
return C.addResultFile(FinalOutput->getValue());
|
2009-03-18 01:53:55 +08:00
|
|
|
}
|
|
|
|
|
2010-09-24 08:46:53 +08:00
|
|
|
// Default to writing to stdout?
|
2011-08-03 01:58:04 +08:00
|
|
|
if (AtTopLevel && isa<PreprocessJobAction>(JA) && !CCGenDiagnostics)
|
2010-09-24 08:46:53 +08:00
|
|
|
return "-";
|
|
|
|
|
2009-03-18 01:53:55 +08:00
|
|
|
// Output to a temporary file?
|
2011-08-03 01:58:04 +08:00
|
|
|
if ((!AtTopLevel && !C.getArgs().hasArg(options::OPT_save_temps)) ||
|
|
|
|
CCGenDiagnostics) {
|
2011-08-27 06:27:02 +08:00
|
|
|
StringRef Name = llvm::sys::path::filename(BaseInput);
|
|
|
|
std::pair<StringRef, StringRef> Split = Name.split('.');
|
2009-09-09 07:36:43 +08:00
|
|
|
std::string TmpName =
|
2011-08-27 06:27:02 +08:00
|
|
|
GetTemporaryPath(Split.first, types::getTypeTempSuffix(JA.getType()));
|
2009-03-19 03:34:39 +08:00
|
|
|
return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()));
|
2009-03-18 01:53:55 +08:00
|
|
|
}
|
|
|
|
|
2012-02-05 10:13:05 +08:00
|
|
|
SmallString<128> BasePath(BaseInput);
|
2011-07-23 18:55:15 +08:00
|
|
|
StringRef BaseName;
|
2011-03-26 02:16:51 +08:00
|
|
|
|
|
|
|
// Dsymutil actions should use the full path.
|
2011-08-24 01:56:55 +08:00
|
|
|
if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA))
|
2011-03-26 02:16:51 +08:00
|
|
|
BaseName = BasePath;
|
|
|
|
else
|
|
|
|
BaseName = llvm::sys::path::filename(BasePath);
|
2009-03-18 01:53:55 +08:00
|
|
|
|
|
|
|
// Determine what the derived output name should be.
|
|
|
|
const char *NamedOutput;
|
|
|
|
if (JA.getType() == types::TY_Image) {
|
|
|
|
NamedOutput = DefaultImageName.c_str();
|
|
|
|
} else {
|
|
|
|
const char *Suffix = types::getTypeTempSuffix(JA.getType());
|
|
|
|
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('.');
|
|
|
|
std::string Suffixed(BaseName.substr(0, End));
|
|
|
|
Suffixed += '.';
|
|
|
|
Suffixed += Suffix;
|
|
|
|
NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str());
|
|
|
|
}
|
|
|
|
|
2012-07-10 01:31:28 +08:00
|
|
|
// If we're saving temps and the temp file conflicts with the input file,
|
2012-04-21 04:05:08 +08:00
|
|
|
// then avoid overwriting input file.
|
2011-07-16 05:54:29 +08:00
|
|
|
if (!AtTopLevel && C.getArgs().hasArg(options::OPT_save_temps) &&
|
2011-08-27 05:28:44 +08:00
|
|
|
NamedOutput == BaseName) {
|
2012-04-21 04:05:08 +08: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 =
|
|
|
|
GetTemporaryPath(Split.first, types::getTypeTempSuffix(JA.getType()));
|
|
|
|
return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()));
|
|
|
|
}
|
2011-07-16 05:54:29 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// As an annoying special case, PCH generation doesn't strip the pathname.
|
2009-03-18 01:53:55 +08:00
|
|
|
if (JA.getType() == types::TY_PCH) {
|
2010-12-18 08:19:12 +08:00
|
|
|
llvm::sys::path::remove_filename(BasePath);
|
|
|
|
if (BasePath.empty())
|
2009-03-18 17:58:30 +08:00
|
|
|
BasePath = NamedOutput;
|
|
|
|
else
|
2010-12-18 08:19:12 +08:00
|
|
|
llvm::sys::path::append(BasePath, NamedOutput);
|
2009-03-18 01:53:55 +08:00
|
|
|
return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str()));
|
|
|
|
} else {
|
|
|
|
return C.addResultFile(NamedOutput);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-10 06:33:00 +08:00
|
|
|
std::string Driver::GetFilePath(const char *Name, const ToolChain &TC) const {
|
2010-03-22 09:52:07 +08:00
|
|
|
// Respect a limited subset of the '-Bprefix' functionality in GCC by
|
2012-10-04 16:08:56 +08:00
|
|
|
// attempting to use this prefix when looking for file paths.
|
2011-02-09 04:31:42 +08:00
|
|
|
for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(),
|
|
|
|
ie = PrefixDirs.end(); it != ie; ++it) {
|
2011-03-21 21:51:29 +08:00
|
|
|
std::string Dir(*it);
|
|
|
|
if (Dir.empty())
|
|
|
|
continue;
|
|
|
|
if (Dir[0] == '=')
|
|
|
|
Dir = SysRoot + Dir.substr(1);
|
|
|
|
llvm::sys::Path P(Dir);
|
2010-03-22 09:52:07 +08:00
|
|
|
P.appendComponent(Name);
|
2011-01-10 10:34:13 +08:00
|
|
|
bool Exists;
|
|
|
|
if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
|
2010-03-22 09:52:07 +08:00
|
|
|
return P.str();
|
|
|
|
}
|
|
|
|
|
2011-09-06 10:08:31 +08:00
|
|
|
llvm::sys::Path P(ResourceDir);
|
|
|
|
P.appendComponent(Name);
|
|
|
|
bool Exists;
|
|
|
|
if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
|
|
|
|
return P.str();
|
|
|
|
|
2009-03-19 04:26:19 +08:00
|
|
|
const ToolChain::path_list &List = TC.getFilePaths();
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ToolChain::path_list::const_iterator
|
2009-03-19 04:26:19 +08:00
|
|
|
it = List.begin(), ie = List.end(); it != ie; ++it) {
|
2011-03-21 21:51:29 +08:00
|
|
|
std::string Dir(*it);
|
|
|
|
if (Dir.empty())
|
|
|
|
continue;
|
|
|
|
if (Dir[0] == '=')
|
|
|
|
Dir = SysRoot + Dir.substr(1);
|
|
|
|
llvm::sys::Path P(Dir);
|
2009-03-19 04:26:19 +08:00
|
|
|
P.appendComponent(Name);
|
2011-01-10 10:34:13 +08:00
|
|
|
bool Exists;
|
|
|
|
if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
|
2009-09-10 06:33:00 +08:00
|
|
|
return P.str();
|
2009-03-19 04:26:19 +08:00
|
|
|
}
|
|
|
|
|
2009-09-10 06:33:00 +08:00
|
|
|
return Name;
|
2009-03-13 08:51:18 +08:00
|
|
|
}
|
|
|
|
|
2012-10-04 03:52:37 +08:00
|
|
|
std::string Driver::GetProgramPath(const char *Name,
|
|
|
|
const ToolChain &TC) const {
|
2012-02-23 03:15:16 +08:00
|
|
|
// FIXME: Needs a better variable than DefaultTargetTriple
|
2012-01-31 10:21:20 +08:00
|
|
|
std::string TargetSpecificExecutable(DefaultTargetTriple + "-" + Name);
|
2010-03-22 09:52:07 +08:00
|
|
|
// Respect a limited subset of the '-Bprefix' functionality in GCC by
|
2012-10-04 16:08:56 +08:00
|
|
|
// attempting to use this prefix when looking for program paths.
|
2011-02-09 04:31:42 +08:00
|
|
|
for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(),
|
|
|
|
ie = PrefixDirs.end(); it != ie; ++it) {
|
2012-10-31 20:01:53 +08:00
|
|
|
bool IsDirectory;
|
|
|
|
if (!llvm::sys::fs::is_directory(*it, IsDirectory) && IsDirectory) {
|
|
|
|
llvm::sys::Path P(*it);
|
|
|
|
P.appendComponent(TargetSpecificExecutable);
|
|
|
|
if (P.canExecute()) return P.str();
|
|
|
|
P.eraseComponent();
|
|
|
|
P.appendComponent(Name);
|
|
|
|
if (P.canExecute()) return P.str();
|
2012-10-31 22:39:28 +08:00
|
|
|
} else {
|
2012-10-31 20:01:53 +08:00
|
|
|
llvm::sys::Path P(*it + Name);
|
|
|
|
if (P.canExecute()) return P.str();
|
|
|
|
}
|
2010-03-22 09:52:07 +08:00
|
|
|
}
|
|
|
|
|
2009-03-19 04:26:19 +08:00
|
|
|
const ToolChain::path_list &List = TC.getProgramPaths();
|
2009-09-09 07:36:43 +08:00
|
|
|
for (ToolChain::path_list::const_iterator
|
2009-03-19 04:26:19 +08:00
|
|
|
it = List.begin(), ie = List.end(); it != ie; ++it) {
|
|
|
|
llvm::sys::Path P(*it);
|
2011-09-28 06:03:18 +08:00
|
|
|
P.appendComponent(TargetSpecificExecutable);
|
2012-10-04 03:52:37 +08:00
|
|
|
if (P.canExecute()) return P.str();
|
2011-09-28 06:03:18 +08:00
|
|
|
P.eraseComponent();
|
2009-03-19 04:26:19 +08:00
|
|
|
P.appendComponent(Name);
|
2012-10-04 03:52:37 +08:00
|
|
|
if (P.canExecute()) return P.str();
|
2009-03-19 04:26:19 +08:00
|
|
|
}
|
|
|
|
|
2009-03-24 00:15:50 +08:00
|
|
|
// If all else failed, search the path.
|
2011-09-28 06:03:18 +08:00
|
|
|
llvm::sys::Path
|
|
|
|
P(llvm::sys::Program::FindProgramByName(TargetSpecificExecutable));
|
|
|
|
if (!P.empty())
|
|
|
|
return P.str();
|
|
|
|
|
2011-09-28 13:33:02 +08:00
|
|
|
P = llvm::sys::Path(llvm::sys::Program::FindProgramByName(Name));
|
2009-03-19 05:34:08 +08:00
|
|
|
if (!P.empty())
|
2009-09-10 06:33:00 +08:00
|
|
|
return P.str();
|
2009-03-19 05:34:08 +08:00
|
|
|
|
2009-09-10 06:33:00 +08:00
|
|
|
return Name;
|
2009-03-13 08:51:18 +08:00
|
|
|
}
|
|
|
|
|
2012-07-10 01:31:28 +08:00
|
|
|
std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix)
|
2011-08-27 05:28:44 +08:00
|
|
|
const {
|
2009-09-09 07:36:43 +08:00
|
|
|
// FIXME: This is lame; sys::Path should provide this function (in particular,
|
|
|
|
// it should know how to find the temporary files dir).
|
2009-03-19 03:34:39 +08:00
|
|
|
std::string Error;
|
2009-04-21 04:28:21 +08:00
|
|
|
const char *TmpDir = ::getenv("TMPDIR");
|
|
|
|
if (!TmpDir)
|
|
|
|
TmpDir = ::getenv("TEMP");
|
2009-04-21 08:25:10 +08:00
|
|
|
if (!TmpDir)
|
|
|
|
TmpDir = ::getenv("TMP");
|
2009-04-21 04:28:21 +08:00
|
|
|
if (!TmpDir)
|
|
|
|
TmpDir = "/tmp";
|
|
|
|
llvm::sys::Path P(TmpDir);
|
2011-08-27 05:28:44 +08:00
|
|
|
P.appendComponent(Prefix);
|
2009-03-19 03:34:39 +08:00
|
|
|
if (P.makeUnique(false, &Error)) {
|
2012-05-17 04:55:58 +08:00
|
|
|
Diag(clang::diag::err_unable_to_make_temp) << Error;
|
2009-03-19 03:34:39 +08:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08:00
|
|
|
// FIXME: Grumble, makeUnique sometimes leaves the file around!? PR3837.
|
2009-03-19 07:08:52 +08:00
|
|
|
P.eraseFromDisk(false, 0);
|
|
|
|
|
2012-08-07 08:02:30 +08:00
|
|
|
if (Suffix)
|
|
|
|
P.appendSuffix(Suffix);
|
2009-08-24 06:45:33 +08:00
|
|
|
return P.str();
|
2009-03-19 03:34:39 +08:00
|
|
|
}
|
|
|
|
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08: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.
|
2012-01-31 10:21:20 +08:00
|
|
|
static llvm::Triple computeTargetTriple(StringRef DefaultTargetTriple,
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
const ArgList &Args,
|
|
|
|
StringRef DarwinArchName) {
|
2012-02-23 03:15:16 +08:00
|
|
|
// FIXME: Already done in Compilation *Driver::BuildCompilation
|
2012-01-31 10:21:20 +08:00
|
|
|
if (const Arg *A = Args.getLastArg(options::OPT_target))
|
2012-11-01 12:30:05 +08:00
|
|
|
DefaultTargetTriple = A->getValue();
|
2012-01-31 10:21:20 +08:00
|
|
|
|
|
|
|
llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
|
|
|
|
// Handle Darwin-specific options available here.
|
|
|
|
if (Target.isOSDarwin()) {
|
|
|
|
// If an explict Darwin arch name is given, that trumps all.
|
|
|
|
if (!DarwinArchName.empty()) {
|
|
|
|
Target.setArch(
|
2012-11-01 02:51:07 +08:00
|
|
|
tools::darwin::getArchTypeForDarwinArchName(DarwinArchName));
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
return Target;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle the Darwin '-arch' flag.
|
|
|
|
if (Arg *A = Args.getLastArg(options::OPT_arch)) {
|
|
|
|
llvm::Triple::ArchType DarwinArch
|
2012-11-01 12:30:05 +08:00
|
|
|
= tools::darwin::getArchTypeForDarwinArchName(A->getValue());
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
if (DarwinArch != llvm::Triple::UnknownArch)
|
|
|
|
Target.setArch(DarwinArch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip further flag support on OSes which don't support '-m32' or '-m64'.
|
|
|
|
if (Target.getArchName() == "tce" ||
|
|
|
|
Target.getOS() == llvm::Triple::AuroraUX ||
|
|
|
|
Target.getOS() == llvm::Triple::Minix)
|
|
|
|
return Target;
|
|
|
|
|
|
|
|
// Handle pseudo-target flags '-m32' and '-m64'.
|
|
|
|
// FIXME: Should this information be in llvm::Triple?
|
|
|
|
if (Arg *A = Args.getLastArg(options::OPT_m32, options::OPT_m64)) {
|
|
|
|
if (A->getOption().matches(options::OPT_m32)) {
|
|
|
|
if (Target.getArch() == llvm::Triple::x86_64)
|
|
|
|
Target.setArch(llvm::Triple::x86);
|
|
|
|
if (Target.getArch() == llvm::Triple::ppc64)
|
|
|
|
Target.setArch(llvm::Triple::ppc);
|
|
|
|
} else {
|
|
|
|
if (Target.getArch() == llvm::Triple::x86)
|
|
|
|
Target.setArch(llvm::Triple::x86_64);
|
|
|
|
if (Target.getArch() == llvm::Triple::ppc)
|
|
|
|
Target.setArch(llvm::Triple::ppc64);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Target;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ToolChain &Driver::getToolChain(const ArgList &Args,
|
|
|
|
StringRef DarwinArchName) const {
|
2012-01-31 10:21:20 +08:00
|
|
|
llvm::Triple Target = computeTargetTriple(DefaultTargetTriple, Args,
|
|
|
|
DarwinArchName);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
|
2012-01-31 10:21:20 +08:00
|
|
|
ToolChain *&TC = ToolChains[Target.str()];
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
if (!TC) {
|
|
|
|
switch (Target.getOS()) {
|
|
|
|
case llvm::Triple::AuroraUX:
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::AuroraUX(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
case llvm::Triple::Darwin:
|
|
|
|
case llvm::Triple::MacOSX:
|
|
|
|
case llvm::Triple::IOS:
|
|
|
|
if (Target.getArch() == llvm::Triple::x86 ||
|
|
|
|
Target.getArch() == llvm::Triple::x86_64 ||
|
|
|
|
Target.getArch() == llvm::Triple::arm ||
|
|
|
|
Target.getArch() == llvm::Triple::thumb)
|
2012-01-31 10:21:20 +08:00
|
|
|
TC = new toolchains::DarwinClang(*this, Target);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
else
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::Darwin_Generic_GCC(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
case llvm::Triple::DragonFly:
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::DragonFly(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
case llvm::Triple::OpenBSD:
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::OpenBSD(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
2012-08-09 07:57:20 +08:00
|
|
|
case llvm::Triple::Bitrig:
|
|
|
|
TC = new toolchains::Bitrig(*this, Target, Args);
|
|
|
|
break;
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
case llvm::Triple::NetBSD:
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::NetBSD(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
case llvm::Triple::FreeBSD:
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::FreeBSD(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
case llvm::Triple::Minix:
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::Minix(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
case llvm::Triple::Linux:
|
2012-01-26 05:03:58 +08:00
|
|
|
if (Target.getArch() == llvm::Triple::hexagon)
|
2012-01-31 10:21:20 +08:00
|
|
|
TC = new toolchains::Hexagon_TC(*this, Target);
|
2012-01-26 05:03:58 +08:00
|
|
|
else
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::Linux(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
2012-02-15 21:39:01 +08:00
|
|
|
case llvm::Triple::Solaris:
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::Solaris(*this, Target, Args);
|
2012-02-15 21:39:01 +08:00
|
|
|
break;
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
case llvm::Triple::Win32:
|
2012-01-31 10:21:20 +08:00
|
|
|
TC = new toolchains::Windows(*this, Target);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
case llvm::Triple::MinGW32:
|
|
|
|
// FIXME: We need a MinGW toolchain. Fallthrough for now.
|
|
|
|
default:
|
|
|
|
// TCE is an OSless target
|
|
|
|
if (Target.getArchName() == "tce") {
|
2012-01-31 10:21:20 +08:00
|
|
|
TC = new toolchains::TCEToolChain(*this, Target);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-02-19 09:38:32 +08:00
|
|
|
TC = new toolchains::Generic_GCC(*this, Target, Args);
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
break;
|
|
|
|
}
|
2009-05-22 10:53:45 +08:00
|
|
|
}
|
Delete the driver's HostInfo class. This abstraction just never really
did anything. The two big pieces of functionality it tried to provide
was to cache the ToolChain objects for each target, and to figure out
the exact target based on the flag set coming in to an invocation.
However, it had a lot of flaws even with those goals:
- Neither of these have anything to do with the host, or its info.
- The HostInfo class was setup as a full blown class *hierarchy* with
a separate implementation for each "host" OS. This required
dispatching just to create the objects in the first place.
- The hierarchy claimed to represent the host, when in fact it was
based on the target OS.
- Each leaf in the hierarchy was responsible for implementing the flag
processing and caching, resulting in a *lot* of copy-paste code and
quite a few bugs.
- The caching was consistently done based on architecture alone, even
though *any* aspect of the targeted triple might change the behavior
of the configured toolchain.
- Flag processing was already being done in the Driver proper,
separating the flag handling even more than it already is.
Instead of this, we can simply have the dispatch logic in the Driver
which previously created a HostInfo object create the ToolChain objects.
Adding caching in the Driver layer is a tiny amount of code. Finally,
pulling the flag processing into the Driver puts it where it belongs and
consolidates it in one location.
The result is that two functions, and maybe 100 lines of new code
replace over 10 classes and 800 lines of code. Woot.
This also paves the way to introduce more detailed ToolChain objects for
various OSes without threading through a new HostInfo type as well, and
the accompanying boiler plate. That, of course, was the yak I started to
shave that began this entire refactoring escapade. Wheee!
llvm-svn: 148950
2012-01-25 19:01:57 +08:00
|
|
|
return *TC;
|
2009-03-11 07:41:59 +08:00
|
|
|
}
|
2009-03-25 02:57:02 +08:00
|
|
|
|
2012-11-15 13:36:36 +08:00
|
|
|
bool Driver::ShouldUseClangCompiler(const Compilation &C, const JobAction &JA,
|
|
|
|
const llvm::Triple &Triple) const {
|
|
|
|
// Check if user requested no clang, or clang doesn't understand this type (we
|
|
|
|
// only handle single inputs for now).
|
|
|
|
if (JA.size() != 1 ||
|
|
|
|
!types::isAcceptedByClang((*JA.begin())->getType()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Otherwise make sure this is an action clang understands.
|
|
|
|
if (!isa<PreprocessJobAction>(JA) && !isa<PrecompileJobAction>(JA) &&
|
|
|
|
!isa<CompileJobAction>(JA))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-09 07:36:43 +08: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-03-26 23:58:36 +08:00
|
|
|
///
|
2009-09-09 07:36:43 +08: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-03-26 23:58:36 +08:00
|
|
|
unsigned &Minor, unsigned &Micro,
|
|
|
|
bool &HadExtra) {
|
|
|
|
HadExtra = false;
|
|
|
|
|
|
|
|
Major = Minor = Micro = 0;
|
2009-09-09 07:36:43 +08:00
|
|
|
if (*Str == '\0')
|
2009-03-26 23:58:36 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
char *End;
|
|
|
|
Major = (unsigned) strtol(Str, &End, 10);
|
|
|
|
if (*Str != '\0' && *End == '\0')
|
|
|
|
return true;
|
|
|
|
if (*End != '.')
|
|
|
|
return false;
|
2009-09-09 07:36:43 +08:00
|
|
|
|
2009-03-26 23:58:36 +08: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;
|
|
|
|
}
|