blob: 07a5e42cb1397ec91fe46df3f7bc2ff830e78426 [file] [log] [blame]
Nick Lewyckye3365aa2010-09-23 23:48:20 +00001//===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===//
Daniel Dunbar3ede8d02009-03-02 19:59:07 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000010#include "clang/Driver/Driver.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000011#include "InputInfo.h"
12#include "ToolChains.h"
13#include "clang/Basic/Version.h"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070014#include "clang/Config/config.h"
Daniel Dunbar53ec5522009-03-12 07:58:46 +000015#include "clang/Driver/Action.h"
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000016#include "clang/Driver/Compilation.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000017#include "clang/Driver/DriverDiagnostic.h"
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000018#include "clang/Driver/Job.h"
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000019#include "clang/Driver/Options.h"
Stephen Hines0e2c34f2015-03-23 12:09:02 -070020#include "clang/Driver/SanitizerArgs.h"
Daniel Dunbarf353c8c2009-03-16 06:56:51 +000021#include "clang/Driver/Tool.h"
22#include "clang/Driver/ToolChain.h"
Chris Lattner7f9fc3f2011-03-23 04:04:01 +000023#include "llvm/ADT/ArrayRef.h"
Hans Wennborg69813302013-07-27 00:23:45 +000024#include "llvm/ADT/STLExtras.h"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070025#include "llvm/ADT/StringExtras.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000026#include "llvm/ADT/StringSet.h"
Hans Wennborg76b86c22013-07-18 20:29:38 +000027#include "llvm/ADT/StringSwitch.h"
Reid Klecknerb1e25a12013-06-14 17:17:23 +000028#include "llvm/Option/Arg.h"
29#include "llvm/Option/ArgList.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070030#include "llvm/Option/OptSpecifier.h"
Reid Klecknerb1e25a12013-06-14 17:17:23 +000031#include "llvm/Option/OptTable.h"
32#include "llvm/Option/Option.h"
Eric Christopherc706c8e2013-02-05 07:29:57 +000033#include "llvm/Support/Debug.h"
David Blaikie548f6c82011-09-23 05:57:42 +000034#include "llvm/Support/ErrorHandling.h"
Michael J. Spencer256053b2010-12-17 21:22:22 +000035#include "llvm/Support/FileSystem.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000036#include "llvm/Support/Path.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000037#include "llvm/Support/PrettyStackTrace.h"
Stephen Hinesc568f1e2014-07-21 00:47:37 -070038#include "llvm/Support/Process.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000039#include "llvm/Support/Program.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000040#include "llvm/Support/raw_ostream.h"
Dylan Noblesmithf2462be2012-02-02 00:40:14 +000041#include <map>
Stephen Hines651f13c2014-04-23 16:59:28 -070042#include <memory>
Dylan Noblesmith69d3b4f2012-02-01 14:25:28 +000043
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000044using namespace clang::driver;
Chris Lattner92b36992009-03-26 05:56:24 +000045using namespace clang;
Reid Klecknerb1e25a12013-06-14 17:17:23 +000046using namespace llvm::opt;
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000047
Stephen Hines0e2c34f2015-03-23 12:09:02 -070048Driver::Driver(StringRef ClangExecutable, StringRef DefaultTargetTriple,
David Blaikied6471f72011-09-25 23:23:43 +000049 DiagnosticsEngine &Diags)
Stephen Hines0e2c34f2015-03-23 12:09:02 -070050 : Opts(createDriverOptTable()), Diags(Diags), Mode(GCCMode),
51 SaveTemps(SaveTempsNone), ClangExecutable(ClangExecutable),
52 SysRoot(DEFAULT_SYSROOT), UseStdLib(true),
53 DefaultTargetTriple(DefaultTargetTriple),
54 DriverTitle("clang LLVM compiler"), CCPrintOptionsFilename(nullptr),
55 CCPrintHeadersFilename(nullptr), CCLogDiagnosticsFilename(nullptr),
56 CCCPrintBindings(false), CCPrintHeaders(false), CCLogDiagnostics(false),
57 CCGenDiagnostics(false), CCCGenericGCCName(""), CheckInputsExist(true),
58 CCCUsePCH(true), SuppressMissingInputWarning(false) {
Daniel Dunbar225c4172010-01-20 02:35:16 +000059
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070060 Name = llvm::sys::path::filename(ClangExecutable);
Michael J. Spencerd5b08be2010-12-18 04:13:32 +000061 Dir = llvm::sys::path::parent_path(ClangExecutable);
Bob Wilson4a792962013-03-23 05:17:59 +000062
63 // Compute the path to the resource directory.
64 StringRef ClangResourceDir(CLANG_RESOURCE_DIR);
65 SmallString<128> P(Dir);
Stephen Hines0e2c34f2015-03-23 12:09:02 -070066 if (ClangResourceDir != "") {
Bob Wilson4a792962013-03-23 05:17:59 +000067 llvm::sys::path::append(P, ClangResourceDir);
Stephen Hines0e2c34f2015-03-23 12:09:02 -070068 } else {
69 StringRef ClangLibdirSuffix(CLANG_LIBDIR_SUFFIX);
70 llvm::sys::path::append(P, "..", Twine("lib") + ClangLibdirSuffix, "clang",
71 CLANG_VERSION_STRING);
72 }
Bob Wilson4a792962013-03-23 05:17:59 +000073 ResourceDir = P.str();
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000074}
75
76Driver::~Driver() {
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000077 delete Opts;
Chandler Carruth18d7f3a2012-01-25 11:01:57 +000078
Stephen Hines651f13c2014-04-23 16:59:28 -070079 llvm::DeleteContainerSeconds(ToolChains);
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000080}
81
Hans Wennborg76b86c22013-07-18 20:29:38 +000082void Driver::ParseDriverMode(ArrayRef<const char *> Args) {
83 const std::string OptName =
84 getOpts().getOption(options::OPT_driver_mode).getPrefixedName();
85
86 for (size_t I = 0, E = Args.size(); I != E; ++I) {
Stephen Hines176edba2014-12-01 14:53:08 -080087 // Ingore nullptrs, they are response file's EOL markers
88 if (Args[I] == nullptr)
89 continue;
Hans Wennborg76b86c22013-07-18 20:29:38 +000090 const StringRef Arg = Args[I];
91 if (!Arg.startswith(OptName))
92 continue;
93
94 const StringRef Value = Arg.drop_front(OptName.size());
95 const unsigned M = llvm::StringSwitch<unsigned>(Value)
96 .Case("gcc", GCCMode)
97 .Case("g++", GXXMode)
98 .Case("cpp", CPPMode)
Hans Wennborgc2f531a2013-07-19 20:33:20 +000099 .Case("cl", CLMode)
Hans Wennborg76b86c22013-07-18 20:29:38 +0000100 .Default(~0U);
101
102 if (M != ~0U)
103 Mode = static_cast<DriverMode>(M);
104 else
105 Diag(diag::err_drv_unsupported_option_argument) << OptName << Value;
106 }
107}
108
Stephen Hines176edba2014-12-01 14:53:08 -0800109InputArgList *Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings) {
Daniel Dunbar8f25c792009-03-18 01:38:48 +0000110 llvm::PrettyStackTraceString CrashInfo("Command line argument parsing");
Hans Wennborg69813302013-07-27 00:23:45 +0000111
112 unsigned IncludedFlagsBitmask;
113 unsigned ExcludedFlagsBitmask;
Stephen Hines651f13c2014-04-23 16:59:28 -0700114 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) =
Hans Wennborg69813302013-07-27 00:23:45 +0000115 getIncludeExcludeOptionFlagMasks();
116
Daniel Dunbar847abaa2009-11-19 06:35:06 +0000117 unsigned MissingArgIndex, MissingArgCount;
Stephen Hines176edba2014-12-01 14:53:08 -0800118 InputArgList *Args = getOpts().ParseArgs(ArgStrings.begin(), ArgStrings.end(),
Hans Wennborg69813302013-07-27 00:23:45 +0000119 MissingArgIndex, MissingArgCount,
120 IncludedFlagsBitmask,
121 ExcludedFlagsBitmask);
Daniel Dunbara8231832009-09-08 23:36:43 +0000122
Daniel Dunbar847abaa2009-11-19 06:35:06 +0000123 // Check for missing argument error.
124 if (MissingArgCount)
125 Diag(clang::diag::err_drv_missing_argument)
126 << Args->getArgString(MissingArgIndex) << MissingArgCount;
Daniel Dunbarad2a9af2009-03-13 11:38:42 +0000127
Daniel Dunbar847abaa2009-11-19 06:35:06 +0000128 // Check for unsupported options.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700129 for (const Arg *A : *Args) {
Michael J. Spencer91e06da2012-10-19 22:37:06 +0000130 if (A->getOption().hasFlag(options::Unsupported)) {
Daniel Dunbarb0c4df52009-03-22 23:26:43 +0000131 Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(*Args);
132 continue;
133 }
Chad Rosier2dd17a12012-02-22 17:55:22 +0000134
135 // Warn about -mcpu= without an argument.
Chad Rosier6467c9b2012-07-09 17:31:28 +0000136 if (A->getOption().matches(options::OPT_mcpu_EQ) &&
Chad Rosier2dd17a12012-02-22 17:55:22 +0000137 A->containsValue("")) {
Chad Rosier6467c9b2012-07-09 17:31:28 +0000138 Diag(clang::diag::warn_drv_empty_joined_argument) <<
139 A->getAsString(*Args);
Chad Rosier2dd17a12012-02-22 17:55:22 +0000140 }
Daniel Dunbar06482622009-03-05 06:38:47 +0000141 }
142
Rafael Espindola06b52b42013-09-23 23:55:25 +0000143 for (arg_iterator it = Args->filtered_begin(options::OPT_UNKNOWN),
144 ie = Args->filtered_end(); it != ie; ++it) {
145 Diags.Report(diag::err_drv_unknown_argument) << (*it) ->getAsString(*Args);
146 }
147
Daniel Dunbar06482622009-03-05 06:38:47 +0000148 return Args;
149}
150
Chad Rosier1fc1de42011-07-27 23:36:45 +0000151// Determine which compilation mode we are in. We look for options which
152// affect the phase, starting with the earliest phases, and record which
153// option we used to determine the final phase.
154phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg)
155const {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700156 Arg *PhaseArg = nullptr;
Chad Rosier1fc1de42011-07-27 23:36:45 +0000157 phases::ID FinalPhase;
Eric Christopher59f9b262011-08-17 22:59:59 +0000158
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700159 // -{E,EP,P,M,MM} only run the preprocessor.
Hans Wennborg76b86c22013-07-18 20:29:38 +0000160 if (CCCIsCPP() ||
Chad Rosier1fc1de42011-07-27 23:36:45 +0000161 (PhaseArg = DAL.getLastArg(options::OPT_E)) ||
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700162 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) ||
Stephen Hines651f13c2014-04-23 16:59:28 -0700163 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM)) ||
164 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_P))) {
Chad Rosier1fc1de42011-07-27 23:36:45 +0000165 FinalPhase = phases::Preprocess;
Eric Christopher59f9b262011-08-17 22:59:59 +0000166
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700167 // -{fsyntax-only,-analyze,emit-ast} only run up to the compiler.
Chad Rosier1fc1de42011-07-27 23:36:45 +0000168 } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
Douglas Gregorc544ba02013-03-27 16:47:18 +0000169 (PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) ||
Stephen Hines651f13c2014-04-23 16:59:28 -0700170 (PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) ||
Chad Rosier1fc1de42011-07-27 23:36:45 +0000171 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||
Fariborz Jahanian582b3952012-04-02 15:59:19 +0000172 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) ||
Ted Kremenek30660a82012-03-06 20:06:33 +0000173 (PhaseArg = DAL.getLastArg(options::OPT__migrate)) ||
Chad Rosier1fc1de42011-07-27 23:36:45 +0000174 (PhaseArg = DAL.getLastArg(options::OPT__analyze,
Chad Rosier53cb2b42012-03-06 23:14:35 +0000175 options::OPT__analyze_auto)) ||
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700176 (PhaseArg = DAL.getLastArg(options::OPT_emit_ast))) {
Chad Rosier1fc1de42011-07-27 23:36:45 +0000177 FinalPhase = phases::Compile;
178
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700179 // -S only runs up to the backend.
180 } else if ((PhaseArg = DAL.getLastArg(options::OPT_S))) {
181 FinalPhase = phases::Backend;
182
Chad Rosier1fc1de42011-07-27 23:36:45 +0000183 // -c only runs up to the assembler.
184 } else if ((PhaseArg = DAL.getLastArg(options::OPT_c))) {
185 FinalPhase = phases::Assemble;
186
187 // Otherwise do everything.
188 } else
189 FinalPhase = phases::Link;
190
191 if (FinalPhaseArg)
192 *FinalPhaseArg = PhaseArg;
193
194 return FinalPhase;
195}
196
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700197static Arg* MakeInputArg(DerivedArgList &Args, OptTable *Opts,
Hans Wennborg73052bf2013-08-13 21:32:29 +0000198 StringRef Value) {
199 Arg *A = new Arg(Opts->getOption(options::OPT_INPUT), Value,
200 Args.getBaseArgs().MakeIndex(Value), Value.data());
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700201 Args.AddSynthesizedArg(A);
Hans Wennborg73052bf2013-08-13 21:32:29 +0000202 A->claim();
203 return A;
204}
205
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000206DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
207 DerivedArgList *DAL = new DerivedArgList(Args);
208
Daniel Dunbare5a37f42010-09-17 00:45:02 +0000209 bool HasNostdlib = Args.hasArg(options::OPT_nostdlib);
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700210 for (Arg *A : Args) {
Daniel Dunbarf78925f2010-06-14 21:23:12 +0000211 // Unfortunately, we have to parse some forwarding options (-Xassembler,
212 // -Xlinker, -Xpreprocessor) because we either integrate their functionality
213 // (assembler and preprocessor), or bypass a previous driver ('collect2').
Daniel Dunbareda3f702010-06-14 21:37:09 +0000214
215 // Rewrite linker options, to replace --no-demangle with a custom internal
216 // option.
217 if ((A->getOption().matches(options::OPT_Wl_COMMA) ||
218 A->getOption().matches(options::OPT_Xlinker)) &&
219 A->containsValue("--no-demangle")) {
Daniel Dunbarf78925f2010-06-14 21:23:12 +0000220 // Add the rewritten no-demangle argument.
221 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle));
222
223 // Add the remaining values as Xlinker arguments.
224 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i)
Richard Smith1d489cf2012-11-01 04:30:05 +0000225 if (StringRef(A->getValue(i)) != "--no-demangle")
Daniel Dunbarf78925f2010-06-14 21:23:12 +0000226 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker),
Richard Smith1d489cf2012-11-01 04:30:05 +0000227 A->getValue(i));
Daniel Dunbarf78925f2010-06-14 21:23:12 +0000228
229 continue;
230 }
231
Daniel Dunbareda3f702010-06-14 21:37:09 +0000232 // Rewrite preprocessor options, to replace -Wp,-MD,FOO which is used by
233 // some build systems. We don't try to be complete here because we don't
234 // care to encourage this usage model.
235 if (A->getOption().matches(options::OPT_Wp_COMMA) &&
Richard Smith1d489cf2012-11-01 04:30:05 +0000236 (A->getValue(0) == StringRef("-MD") ||
237 A->getValue(0) == StringRef("-MMD"))) {
Daniel Dunbar212df322010-06-15 20:30:18 +0000238 // Rewrite to -MD/-MMD along with -MF.
Richard Smith1d489cf2012-11-01 04:30:05 +0000239 if (A->getValue(0) == StringRef("-MD"))
Daniel Dunbar212df322010-06-15 20:30:18 +0000240 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD));
241 else
242 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD));
Michael J. Spencerda05df72012-11-07 23:37:14 +0000243 if (A->getNumValues() == 2)
244 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF),
245 A->getValue(1));
Daniel Dunbareda3f702010-06-14 21:37:09 +0000246 continue;
247 }
248
Shantonu Sen7433fed2010-09-17 18:39:08 +0000249 // Rewrite reserved library names.
250 if (A->getOption().matches(options::OPT_l)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000251 StringRef Value = A->getValue();
Daniel Dunbare5a37f42010-09-17 00:45:02 +0000252
Shantonu Sen7433fed2010-09-17 18:39:08 +0000253 // Rewrite unless -nostdlib is present.
254 if (!HasNostdlib && Value == "stdc++") {
Daniel Dunbare5a37f42010-09-17 00:45:02 +0000255 DAL->AddFlagArg(A, Opts->getOption(
256 options::OPT_Z_reserved_lib_stdcxx));
257 continue;
258 }
Shantonu Sen7433fed2010-09-17 18:39:08 +0000259
260 // Rewrite unconditionally.
261 if (Value == "cc_kext") {
262 DAL->AddFlagArg(A, Opts->getOption(
263 options::OPT_Z_reserved_lib_cckext));
264 continue;
265 }
Daniel Dunbare5a37f42010-09-17 00:45:02 +0000266 }
267
Hans Wennborg73052bf2013-08-13 21:32:29 +0000268 // Pick up inputs via the -- option.
269 if (A->getOption().matches(options::OPT__DASH_DASH)) {
270 A->claim();
271 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i)
272 DAL->append(MakeInputArg(*DAL, Opts, A->getValue(i)));
273 continue;
274 }
275
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700276 DAL->append(A);
Daniel Dunbarf78925f2010-06-14 21:23:12 +0000277 }
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000278
Daniel Dunbara77a7232010-08-12 00:05:12 +0000279 // Add a default value of -mlinker-version=, if one was given and the user
280 // didn't specify one.
281#if defined(HOST_LINK_VERSION)
282 if (!Args.hasArg(options::OPT_mlinker_version_EQ)) {
283 DAL->AddJoinedArg(0, Opts->getOption(options::OPT_mlinker_version_EQ),
284 HOST_LINK_VERSION);
Daniel Dunbarc326b642010-08-17 22:32:45 +0000285 DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim();
Daniel Dunbara77a7232010-08-12 00:05:12 +0000286 }
287#endif
288
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000289 return DAL;
290}
291
Chris Lattner2d3ba4f2011-07-23 17:14:25 +0000292Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
Daniel Dunbar8f25c792009-03-18 01:38:48 +0000293 llvm::PrettyStackTraceString CrashInfo("Compilation construction");
294
Eric Christopher59f9b262011-08-17 22:59:59 +0000295 // FIXME: Handle environment options which affect driver behavior, somewhere
Bill Wendlinge8cb5542012-03-12 21:24:57 +0000296 // (client?). GCC_EXEC_PREFIX, LPATH, CC_PRINT_OPTIONS.
Chad Rosier815eb6b2011-09-14 00:47:55 +0000297
298 if (char *env = ::getenv("COMPILER_PATH")) {
299 StringRef CompilerPath = env;
300 while (!CompilerPath.empty()) {
NAKAMURA Takumi04ee66e2012-12-12 06:22:22 +0000301 std::pair<StringRef, StringRef> Split
Rafael Espindolafa093832013-06-25 01:11:59 +0000302 = CompilerPath.split(llvm::sys::EnvPathSeparator);
Chad Rosier815eb6b2011-09-14 00:47:55 +0000303 PrefixDirs.push_back(Split.first);
304 CompilerPath = Split.second;
305 }
306 }
Daniel Dunbarcb881672009-03-13 00:51:18 +0000307
Hans Wennborg76b86c22013-07-18 20:29:38 +0000308 // We look for the driver mode option early, because the mode can affect
309 // how other options are parsed.
310 ParseDriverMode(ArgList.slice(1));
311
Daniel Dunbarcb881672009-03-13 00:51:18 +0000312 // FIXME: What are we going to do with -V and -b?
313
Daniel Dunbara8231832009-09-08 23:36:43 +0000314 // FIXME: This stuff needs to go into the Compilation, not the driver.
Rafael Espindolaa673dbd2013-09-03 13:26:49 +0000315 bool CCCPrintActions;
Daniel Dunbar06482622009-03-05 06:38:47 +0000316
Chris Lattner7f9fc3f2011-03-23 04:04:01 +0000317 InputArgList *Args = ParseArgStrings(ArgList.slice(1));
Daniel Dunbar8477ee92009-12-04 21:55:23 +0000318
Rafael Espindola7ca79872009-12-07 18:28:29 +0000319 // -no-canonical-prefixes is used very early in main.
320 Args->ClaimAllArgs(options::OPT_no_canonical_prefixes);
321
Daniel Dunbarc19a12d2010-08-02 02:38:03 +0000322 // Ignore -pipe.
323 Args->ClaimAllArgs(options::OPT_pipe);
324
Daniel Dunbar8477ee92009-12-04 21:55:23 +0000325 // Extract -ccc args.
Daniel Dunbar365c02f2009-03-10 20:52:46 +0000326 //
Daniel Dunbara8231832009-09-08 23:36:43 +0000327 // FIXME: We need to figure out where this behavior should live. Most of it
328 // should be outside in the client; the parts that aren't should have proper
329 // options, either by introducing new ones or by overloading gcc ones like -V
330 // or -b.
Daniel Dunbar8477ee92009-12-04 21:55:23 +0000331 CCCPrintActions = Args->hasArg(options::OPT_ccc_print_phases);
332 CCCPrintBindings = Args->hasArg(options::OPT_ccc_print_bindings);
Daniel Dunbar8477ee92009-12-04 21:55:23 +0000333 if (const Arg *A = Args->getLastArg(options::OPT_ccc_gcc_name))
Richard Smith1d489cf2012-11-01 04:30:05 +0000334 CCCGenericGCCName = A->getValue();
Daniel Dunbar8477ee92009-12-04 21:55:23 +0000335 CCCUsePCH = Args->hasFlag(options::OPT_ccc_pch_is_pch,
336 options::OPT_ccc_pch_is_pth);
Joerg Sonnenberger8a988c32012-02-22 19:15:16 +0000337 // FIXME: DefaultTargetTriple is used by the target-prefixed calls to as/ld
338 // and getToolChain is const.
Hans Wennborg5db95272013-08-13 23:38:57 +0000339 if (IsCLMode()) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700340 // clang-cl targets MSVC-style Win32.
Hans Wennborg5db95272013-08-13 23:38:57 +0000341 llvm::Triple T(DefaultTargetTriple);
Stephen Hines651f13c2014-04-23 16:59:28 -0700342 T.setOS(llvm::Triple::Win32);
343 T.setEnvironment(llvm::Triple::MSVC);
Hans Wennborg5db95272013-08-13 23:38:57 +0000344 DefaultTargetTriple = T.str();
345 }
Joerg Sonnenberger8a988c32012-02-22 19:15:16 +0000346 if (const Arg *A = Args->getLastArg(options::OPT_target))
Richard Smith1d489cf2012-11-01 04:30:05 +0000347 DefaultTargetTriple = A->getValue();
Daniel Dunbar8477ee92009-12-04 21:55:23 +0000348 if (const Arg *A = Args->getLastArg(options::OPT_ccc_install_dir))
Richard Smith1d489cf2012-11-01 04:30:05 +0000349 Dir = InstalledDir = A->getValue();
Benjamin Kramer09982ce2011-02-08 20:31:42 +0000350 for (arg_iterator it = Args->filtered_begin(options::OPT_B),
351 ie = Args->filtered_end(); it != ie; ++it) {
352 const Arg *A = *it;
353 A->claim();
Richard Smith1d489cf2012-11-01 04:30:05 +0000354 PrefixDirs.push_back(A->getValue(0));
Benjamin Kramer09982ce2011-02-08 20:31:42 +0000355 }
Joerg Sonnenberger8ab2bdc2011-03-21 13:51:29 +0000356 if (const Arg *A = Args->getLastArg(options::OPT__sysroot_EQ))
Richard Smith1d489cf2012-11-01 04:30:05 +0000357 SysRoot = A->getValue();
Peter Collingbournebdaa1342013-05-27 21:40:20 +0000358 if (const Arg *A = Args->getLastArg(options::OPT__dyld_prefix_EQ))
359 DyldPrefix = A->getValue();
Joerg Sonnenberger05e59302011-03-21 13:59:26 +0000360 if (Args->hasArg(options::OPT_nostdlib))
361 UseStdLib = false;
Daniel Dunbar365c02f2009-03-10 20:52:46 +0000362
Richard Smith76e6e132013-03-23 00:30:08 +0000363 if (const Arg *A = Args->getLastArg(options::OPT_resource_dir))
Bob Wilson4a792962013-03-23 05:17:59 +0000364 ResourceDir = A->getValue();
Jim Grosbach61d16c12013-03-12 20:17:58 +0000365
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700366 if (const Arg *A = Args->getLastArg(options::OPT_save_temps_EQ)) {
367 SaveTemps = llvm::StringSwitch<SaveTempsMode>(A->getValue())
368 .Case("cwd", SaveTempsCwd)
369 .Case("obj", SaveTempsObj)
370 .Default(SaveTempsCwd);
371 }
372
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000373 // Perform the default argument translations.
374 DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args);
375
Chandler Carruth08386a92012-01-25 08:49:21 +0000376 // Owned by the host.
Chandler Carruth18d7f3a2012-01-25 11:01:57 +0000377 const ToolChain &TC = getToolChain(*Args);
Chandler Carruth08386a92012-01-25 08:49:21 +0000378
Daniel Dunbar586dc232009-03-16 06:42:30 +0000379 // The compilation takes ownership of Args.
Chandler Carruth08386a92012-01-25 08:49:21 +0000380 Compilation *C = new Compilation(*this, TC, Args, TranslatedArgs);
Daniel Dunbar21549232009-03-18 02:55:38 +0000381
Daniel Dunbar21549232009-03-18 02:55:38 +0000382 if (!HandleImmediateArgs(*C))
383 return C;
384
Chad Rosierbe69f602011-08-12 22:08:57 +0000385 // Construct the list of inputs.
386 InputList Inputs;
Hans Wennborg73052bf2013-08-13 21:32:29 +0000387 BuildInputs(C->getDefaultToolChain(), *TranslatedArgs, Inputs);
Chad Rosierbe69f602011-08-12 22:08:57 +0000388
Chandler Carruth4a04d0b2012-01-24 10:43:44 +0000389 // Construct the list of abstract actions to perform for this compilation. On
Stephen Hines651f13c2014-04-23 16:59:28 -0700390 // MachO targets this uses the driver-driver and universal actions.
391 if (TC.getTriple().isOSBinFormatMachO())
Joerg Sonnenberger65f71652011-03-07 01:15:29 +0000392 BuildUniversalActions(C->getDefaultToolChain(), C->getArgs(),
Chad Rosierbe69f602011-08-12 22:08:57 +0000393 Inputs, C->getActions());
Daniel Dunbar21549232009-03-18 02:55:38 +0000394 else
Chad Rosierbe69f602011-08-12 22:08:57 +0000395 BuildActions(C->getDefaultToolChain(), C->getArgs(), Inputs,
396 C->getActions());
Daniel Dunbar21549232009-03-18 02:55:38 +0000397
398 if (CCCPrintActions) {
Daniel Dunbar10ffa9a2009-03-18 03:13:20 +0000399 PrintActions(*C);
Daniel Dunbar21549232009-03-18 02:55:38 +0000400 return C;
401 }
402
403 BuildJobs(*C);
Daniel Dunbar8d2554a2009-03-15 01:38:15 +0000404
405 return C;
Daniel Dunbar365c02f2009-03-10 20:52:46 +0000406}
407
Eric Christopher59f9b262011-08-17 22:59:59 +0000408// When clang crashes, produce diagnostic information including the fully
409// preprocessed source file(s). Request that the developer attach the
Chad Rosier2b819102011-08-02 17:58:04 +0000410// diagnostic information to a bug report.
411void Driver::generateCompilationDiagnostics(Compilation &C,
Stephen Hines176edba2014-12-01 14:53:08 -0800412 const Command &FailingCommand) {
Chad Rosier2639ac62012-02-22 00:30:39 +0000413 if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics))
Chad Rosier6467c9b2012-07-09 17:31:28 +0000414 return;
Chad Rosier8ba9a622012-03-07 00:30:40 +0000415
Chad Rosier75dbc712013-02-01 18:30:26 +0000416 // Don't try to generate diagnostics for link or dsymutil jobs.
Stephen Hines176edba2014-12-01 14:53:08 -0800417 if (FailingCommand.getCreator().isLinkJob() ||
418 FailingCommand.getCreator().isDsymutilJob())
Chad Rosier2639ac62012-02-22 00:30:39 +0000419 return;
420
Chad Rosier4f6a4b42012-06-19 17:51:34 +0000421 // Print the version of the compiler.
422 PrintVersion(C, llvm::errs());
423
Chad Rosier2b819102011-08-02 17:58:04 +0000424 Diag(clang::diag::note_drv_command_failed_diag_msg)
Chad Rosier13223072012-06-19 18:39:21 +0000425 << "PLEASE submit a bug report to " BUG_REPORT_URL " and include the "
426 "crash backtrace, preprocessed source, and associated run script.";
Chad Rosier2b819102011-08-02 17:58:04 +0000427
428 // Suppress driver output and emit preprocessor output to temp file.
Hans Wennborg76b86c22013-07-18 20:29:38 +0000429 Mode = CPPMode;
Chad Rosier2b819102011-08-02 17:58:04 +0000430 CCGenDiagnostics = true;
431
Chad Rosierce50c552011-11-02 21:29:05 +0000432 // Save the original job command(s).
Stephen Hines176edba2014-12-01 14:53:08 -0800433 Command Cmd = FailingCommand;
Chad Rosierce50c552011-11-02 21:29:05 +0000434
Richard Smith5b9268f2012-12-20 02:22:15 +0000435 // Keep track of whether we produce any errors while trying to produce
436 // preprocessed sources.
437 DiagnosticErrorTrap Trap(Diags);
438
439 // Suppress tool output.
Chad Rosier2b819102011-08-02 17:58:04 +0000440 C.initCompilationForDiagnostics();
Chad Rosierbe69f602011-08-12 22:08:57 +0000441
442 // Construct the list of inputs.
443 InputList Inputs;
444 BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs);
Chad Rosier2b819102011-08-02 17:58:04 +0000445
Chad Rosier137a20b2011-08-12 23:30:05 +0000446 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
Chad Rosier90c88022011-08-18 00:22:25 +0000447 bool IgnoreInput = false;
448
449 // Ignore input from stdin or any inputs that cannot be preprocessed.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700450 // Check type first as not all linker inputs have a value.
451 if (types::getPreprocessedType(it->first) == types::TY_INVALID) {
452 IgnoreInput = true;
453 } else if (!strcmp(it->second->getValue(), "-")) {
Chad Rosier90c88022011-08-18 00:22:25 +0000454 Diag(clang::diag::note_drv_command_failed_diag_msg)
455 << "Error generating preprocessed source(s) - ignoring input from stdin"
456 ".";
457 IgnoreInput = true;
Chad Rosier90c88022011-08-18 00:22:25 +0000458 }
459
460 if (IgnoreInput) {
Chad Rosier137a20b2011-08-12 23:30:05 +0000461 it = Inputs.erase(it);
462 ie = Inputs.end();
Chad Rosier30601782011-08-17 23:08:45 +0000463 } else {
Chad Rosier137a20b2011-08-12 23:30:05 +0000464 ++it;
Chad Rosier30601782011-08-17 23:08:45 +0000465 }
Chad Rosier137a20b2011-08-12 23:30:05 +0000466 }
Chad Rosier90c88022011-08-18 00:22:25 +0000467
Chad Rosier8425a542013-01-29 23:57:10 +0000468 if (Inputs.empty()) {
469 Diag(clang::diag::note_drv_command_failed_diag_msg)
470 << "Error generating preprocessed source(s) - no preprocessable inputs.";
471 return;
472 }
473
Chad Rosier46e39082011-09-06 23:52:36 +0000474 // Don't attempt to generate preprocessed files if multiple -arch options are
Chad Rosierc5638912012-02-13 18:16:28 +0000475 // used, unless they're all duplicates.
476 llvm::StringSet<> ArchNames;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700477 for (const Arg *A : C.getArgs()) {
Chad Rosier46e39082011-09-06 23:52:36 +0000478 if (A->getOption().matches(options::OPT_arch)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000479 StringRef ArchName = A->getValue();
Chad Rosierc5638912012-02-13 18:16:28 +0000480 ArchNames.insert(ArchName);
Chad Rosier46e39082011-09-06 23:52:36 +0000481 }
482 }
Chad Rosierc5638912012-02-13 18:16:28 +0000483 if (ArchNames.size() > 1) {
484 Diag(clang::diag::note_drv_command_failed_diag_msg)
485 << "Error generating preprocessed source(s) - cannot generate "
486 "preprocessed source with multiple -arch options.";
487 return;
488 }
Chad Rosier46e39082011-09-06 23:52:36 +0000489
Chandler Carruth4a04d0b2012-01-24 10:43:44 +0000490 // Construct the list of abstract actions to perform for this compilation. On
491 // Darwin OSes this uses the driver-driver and builds universal actions.
Chandler Carruth08386a92012-01-25 08:49:21 +0000492 const ToolChain &TC = C.getDefaultToolChain();
Stephen Hines651f13c2014-04-23 16:59:28 -0700493 if (TC.getTriple().isOSBinFormatMachO())
Chandler Carruth08386a92012-01-25 08:49:21 +0000494 BuildUniversalActions(TC, C.getArgs(), Inputs, C.getActions());
Chad Rosier2b819102011-08-02 17:58:04 +0000495 else
Chandler Carruth08386a92012-01-25 08:49:21 +0000496 BuildActions(TC, C.getArgs(), Inputs, C.getActions());
Chad Rosier2b819102011-08-02 17:58:04 +0000497
498 BuildJobs(C);
499
500 // If there were errors building the compilation, quit now.
Richard Smith5b9268f2012-12-20 02:22:15 +0000501 if (Trap.hasErrorOccurred()) {
Chad Rosier2b819102011-08-02 17:58:04 +0000502 Diag(clang::diag::note_drv_command_failed_diag_msg)
503 << "Error generating preprocessed source(s).";
504 return;
505 }
506
507 // Generate preprocessed output.
Chad Rosiera16355c2013-01-29 20:15:05 +0000508 SmallVector<std::pair<int, const Command *>, 4> FailingCommands;
509 C.ExecuteJob(C.getJobs(), FailingCommands);
Chad Rosier2b819102011-08-02 17:58:04 +0000510
Stephen Hines176edba2014-12-01 14:53:08 -0800511 // If any of the preprocessing commands failed, clean up and exit.
512 if (!FailingCommands.empty()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700513 if (!isSaveTempsEnabled())
Chad Rosier2b819102011-08-02 17:58:04 +0000514 C.CleanupFileList(C.getTempFiles(), true);
515
516 Diag(clang::diag::note_drv_command_failed_diag_msg)
517 << "Error generating preprocessed source(s).";
Stephen Hines176edba2014-12-01 14:53:08 -0800518 return;
Chad Rosier2b819102011-08-02 17:58:04 +0000519 }
Stephen Hines176edba2014-12-01 14:53:08 -0800520
521 const ArgStringList &TempFiles = C.getTempFiles();
522 if (TempFiles.empty()) {
523 Diag(clang::diag::note_drv_command_failed_diag_msg)
524 << "Error generating preprocessed source(s).";
525 return;
526 }
527
528 Diag(clang::diag::note_drv_command_failed_diag_msg)
529 << "\n********************\n\n"
530 "PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:\n"
531 "Preprocessed source(s) and associated run script(s) are located at:";
532
533 SmallString<128> VFS;
534 for (const char *TempFile : TempFiles) {
535 Diag(clang::diag::note_drv_command_failed_diag_msg) << TempFile;
536 if (StringRef(TempFile).endswith(".cache")) {
537 // In some cases (modules) we'll dump extra data to help with reproducing
538 // the crash into a directory next to the output.
539 VFS = llvm::sys::path::filename(TempFile);
540 llvm::sys::path::append(VFS, "vfs", "vfs.yaml");
541 }
542 }
543
544 // Assume associated files are based off of the first temporary file.
545 CrashReportInfo CrashInfo(TempFiles[0], VFS);
546
547 std::string Script = CrashInfo.Filename.rsplit('.').first.str() + ".sh";
548 std::error_code EC;
549 llvm::raw_fd_ostream ScriptOS(Script, EC, llvm::sys::fs::F_Excl);
550 if (EC) {
551 Diag(clang::diag::note_drv_command_failed_diag_msg)
552 << "Error generating run script: " + Script + " " + EC.message();
553 } else {
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700554 ScriptOS << "# Crash reproducer for " << getClangFullVersion() << "\n"
555 << "# Original command: ";
556 Cmd.Print(ScriptOS, "\n", /*Quote=*/true);
Stephen Hines176edba2014-12-01 14:53:08 -0800557 Cmd.Print(ScriptOS, "\n", /*Quote=*/true, &CrashInfo);
558 Diag(clang::diag::note_drv_command_failed_diag_msg) << Script;
559 }
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700560
561 for (const auto &A : C.getArgs().filtered(options::OPT_frewrite_map_file,
562 options::OPT_frewrite_map_file_EQ))
563 Diag(clang::diag::note_drv_command_failed_diag_msg) << A->getValue();
564
Stephen Hines176edba2014-12-01 14:53:08 -0800565 Diag(clang::diag::note_drv_command_failed_diag_msg)
566 << "\n\n********************";
Chad Rosier2b819102011-08-02 17:58:04 +0000567}
568
Stephen Hines176edba2014-12-01 14:53:08 -0800569void Driver::setUpResponseFiles(Compilation &C, Job &J) {
570 if (JobList *Jobs = dyn_cast<JobList>(&J)) {
571 for (auto &Job : *Jobs)
572 setUpResponseFiles(C, Job);
573 return;
574 }
575
576 Command *CurCommand = dyn_cast<Command>(&J);
577 if (!CurCommand)
578 return;
579
580 // Since argumentsFitWithinSystemLimits() may underestimate system's capacity
581 // if the tool does not support response files, there is a chance/ that things
582 // will just work without a response file, so we silently just skip it.
583 if (CurCommand->getCreator().getResponseFilesSupport() == Tool::RF_None ||
584 llvm::sys::argumentsFitWithinSystemLimits(CurCommand->getArguments()))
585 return;
586
587 std::string TmpName = GetTemporaryPath("response", "txt");
588 CurCommand->setResponseFile(C.addTempFile(C.getArgs().MakeArgString(
589 TmpName.c_str())));
590}
591
592int Driver::ExecuteCompilation(Compilation &C,
593 SmallVectorImpl< std::pair<int, const Command *> > &FailingCommands) {
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000594 // Just print if -### was present.
595 if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
Hans Wennborgfc338972013-09-12 18:23:34 +0000596 C.getJobs().Print(llvm::errs(), "\n", true);
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000597 return 0;
598 }
599
600 // If there were errors building the compilation, quit now.
Chad Rosier2b819102011-08-02 17:58:04 +0000601 if (Diags.hasErrorOccurred())
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000602 return 1;
603
Stephen Hines176edba2014-12-01 14:53:08 -0800604 // Set up response file names for each command, if necessary
605 setUpResponseFiles(C, C.getJobs());
606
Chad Rosiera16355c2013-01-29 20:15:05 +0000607 C.ExecuteJob(C.getJobs(), FailingCommands);
Daniel Dunbara8231832009-09-08 23:36:43 +0000608
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000609 // Remove temp files.
610 C.CleanupFileList(C.getTempFiles());
611
Daniel Dunbar9fcbc052010-05-22 00:37:20 +0000612 // If the command succeeded, we are done.
Chad Rosiera16355c2013-01-29 20:15:05 +0000613 if (FailingCommands.empty())
614 return 0;
Daniel Dunbar9fcbc052010-05-22 00:37:20 +0000615
Chad Rosiera16355c2013-01-29 20:15:05 +0000616 // Otherwise, remove result files and print extra information about abnormal
617 // failures.
618 for (SmallVectorImpl< std::pair<int, const Command *> >::iterator it =
619 FailingCommands.begin(), ie = FailingCommands.end(); it != ie; ++it) {
620 int Res = it->first;
621 const Command *FailingCommand = it->second;
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000622
Chad Rosiera16355c2013-01-29 20:15:05 +0000623 // Remove result files if we're not saving temps.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700624 if (!isSaveTempsEnabled()) {
Chad Rosiera16355c2013-01-29 20:15:05 +0000625 const JobAction *JA = cast<JobAction>(&FailingCommand->getSource());
626 C.CleanupFileMap(C.getResultFiles(), JA, true);
627
628 // Failure result files are valid unless we crashed.
629 if (Res < 0)
630 C.CleanupFileMap(C.getFailureResultFiles(), JA, true);
631 }
632
633 // Print extra information about abnormal failures, if possible.
634 //
635 // This is ad-hoc, but we don't want to be excessively noisy. If the result
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700636 // status was 1, assume the command failed normally. In particular, if it
Chad Rosiera16355c2013-01-29 20:15:05 +0000637 // was the compiler then assume it gave a reasonable error code. Failures
638 // in other tools are less common, and they generally have worse
639 // diagnostics, so always print the diagnostic there.
640 const Tool &FailingTool = FailingCommand->getCreator();
641
642 if (!FailingCommand->getCreator().hasGoodDiagnostics() || Res != 1) {
643 // FIXME: See FIXME above regarding result code interpretation.
644 if (Res < 0)
645 Diag(clang::diag::err_drv_command_signalled)
646 << FailingTool.getShortName();
647 else
648 Diag(clang::diag::err_drv_command_failed)
649 << FailingTool.getShortName() << Res;
650 }
Peter Collingbourne5d4d9802011-11-21 00:01:05 +0000651 }
Chad Rosiera16355c2013-01-29 20:15:05 +0000652 return 0;
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000653}
654
Daniel Dunbarc35d71f2009-04-15 16:34:29 +0000655void Driver::PrintHelp(bool ShowHidden) const {
Hans Wennborg69813302013-07-27 00:23:45 +0000656 unsigned IncludedFlagsBitmask;
657 unsigned ExcludedFlagsBitmask;
Stephen Hines651f13c2014-04-23 16:59:28 -0700658 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) =
Hans Wennborg69813302013-07-27 00:23:45 +0000659 getIncludeExcludeOptionFlagMasks();
660
661 ExcludedFlagsBitmask |= options::NoDriverOption;
662 if (!ShowHidden)
663 ExcludedFlagsBitmask |= HelpHidden;
664
665 getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(),
666 IncludedFlagsBitmask, ExcludedFlagsBitmask);
Daniel Dunbar91e28af2009-03-31 21:38:17 +0000667}
668
Chris Lattner5f9e2722011-07-23 10:55:15 +0000669void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const {
Daniel Dunbara8231832009-09-08 23:36:43 +0000670 // FIXME: The following handlers should use a callback mechanism, we don't
671 // know what the client would like to do.
Ted Kremeneka18f1b82010-01-23 02:11:34 +0000672 OS << getClangFullVersion() << '\n';
Daniel Dunbar70c8db12009-03-26 16:09:13 +0000673 const ToolChain &TC = C.getDefaultToolChain();
Daniel Dunbar79300722009-07-21 20:06:58 +0000674 OS << "Target: " << TC.getTripleString() << '\n';
Daniel Dunbar3ee96ba2009-06-16 23:32:58 +0000675
676 // Print the threading model.
Stephen Hines176edba2014-12-01 14:53:08 -0800677 if (Arg *A = C.getArgs().getLastArg(options::OPT_mthread_model)) {
678 // Don't print if the ToolChain would have barfed on it already
679 if (TC.isThreadModelSupported(A->getValue()))
680 OS << "Thread model: " << A->getValue();
681 } else
682 OS << "Thread model: " << TC.getThreadModel();
683 OS << '\n';
Daniel Dunbarcb881672009-03-13 00:51:18 +0000684}
685
Chris Lattnerc3d26cc2010-05-05 05:53:24 +0000686/// PrintDiagnosticCategories - Implement the --print-diagnostic-categories
687/// option.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000688static void PrintDiagnosticCategories(raw_ostream &OS) {
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +0000689 // Skip the empty category.
690 for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories();
691 i != max; ++i)
692 OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n';
Chris Lattnerc3d26cc2010-05-05 05:53:24 +0000693}
694
Daniel Dunbar21549232009-03-18 02:55:38 +0000695bool Driver::HandleImmediateArgs(const Compilation &C) {
Daniel Dunbare82ec0b2010-06-11 22:00:19 +0000696 // The order these options are handled in gcc is all over the place, but we
Daniel Dunbara8231832009-09-08 23:36:43 +0000697 // don't expect inconsistencies w.r.t. that to matter in practice.
Daniel Dunbar91e28af2009-03-31 21:38:17 +0000698
Daniel Dunbard8299502010-09-17 02:47:28 +0000699 if (C.getArgs().hasArg(options::OPT_dumpmachine)) {
700 llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n';
701 return false;
702 }
703
Daniel Dunbare06dc212009-04-04 05:17:38 +0000704 if (C.getArgs().hasArg(options::OPT_dumpversion)) {
Daniel Dunbar95a907f2011-01-12 00:43:47 +0000705 // Since -dumpversion is only implemented for pedantic GCC compatibility, we
706 // return an answer which matches our definition of __VERSION__.
707 //
708 // If we want to return a more correct answer some day, then we should
709 // introduce a non-pedantically GCC compatible mode to Clang in which we
710 // provide sensible definitions for -dumpversion, __VERSION__, etc.
711 llvm::outs() << "4.2.1\n";
Daniel Dunbare06dc212009-04-04 05:17:38 +0000712 return false;
713 }
Daniel Dunbarf78925f2010-06-14 21:23:12 +0000714
Chris Lattnerc3d26cc2010-05-05 05:53:24 +0000715 if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) {
716 PrintDiagnosticCategories(llvm::outs());
717 return false;
718 }
Daniel Dunbare06dc212009-04-04 05:17:38 +0000719
James Molloybfd7a522012-05-01 14:57:16 +0000720 if (C.getArgs().hasArg(options::OPT_help) ||
Daniel Dunbarc35d71f2009-04-15 16:34:29 +0000721 C.getArgs().hasArg(options::OPT__help_hidden)) {
722 PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden));
Daniel Dunbar91e28af2009-03-31 21:38:17 +0000723 return false;
724 }
725
Daniel Dunbar6cc73de2009-04-02 15:05:41 +0000726 if (C.getArgs().hasArg(options::OPT__version)) {
Daniel Dunbara8231832009-09-08 23:36:43 +0000727 // Follow gcc behavior and use stdout for --version and stderr for -v.
Daniel Dunbar79300722009-07-21 20:06:58 +0000728 PrintVersion(C, llvm::outs());
Daniel Dunbar6cc73de2009-04-02 15:05:41 +0000729 return false;
730 }
731
Daniel Dunbara8231832009-09-08 23:36:43 +0000732 if (C.getArgs().hasArg(options::OPT_v) ||
Daniel Dunbar21549232009-03-18 02:55:38 +0000733 C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
Daniel Dunbar79300722009-07-21 20:06:58 +0000734 PrintVersion(C, llvm::errs());
Daniel Dunbarcb881672009-03-13 00:51:18 +0000735 SuppressMissingInputWarning = true;
736 }
737
Daniel Dunbar21549232009-03-18 02:55:38 +0000738 const ToolChain &TC = C.getDefaultToolChain();
Chandler Carruth6365ab92013-07-30 17:57:09 +0000739
740 if (C.getArgs().hasArg(options::OPT_v))
741 TC.printVerboseInfo(llvm::errs());
742
Daniel Dunbarca3459e2009-03-20 04:37:21 +0000743 if (C.getArgs().hasArg(options::OPT_print_search_dirs)) {
744 llvm::outs() << "programs: =";
745 for (ToolChain::path_list::const_iterator it = TC.getProgramPaths().begin(),
746 ie = TC.getProgramPaths().end(); it != ie; ++it) {
747 if (it != TC.getProgramPaths().begin())
748 llvm::outs() << ':';
749 llvm::outs() << *it;
750 }
751 llvm::outs() << "\n";
Peter Collingbourne41ee7a32011-09-06 02:08:31 +0000752 llvm::outs() << "libraries: =" << ResourceDir;
Joerg Sonnenberger59c84572011-07-16 10:50:05 +0000753
Sebastian Pop4762a2d2012-04-16 04:16:43 +0000754 StringRef sysroot = C.getSysRoot();
Joerg Sonnenberger59c84572011-07-16 10:50:05 +0000755
Daniel Dunbara8231832009-09-08 23:36:43 +0000756 for (ToolChain::path_list::const_iterator it = TC.getFilePaths().begin(),
Daniel Dunbarca3459e2009-03-20 04:37:21 +0000757 ie = TC.getFilePaths().end(); it != ie; ++it) {
Peter Collingbourne41ee7a32011-09-06 02:08:31 +0000758 llvm::outs() << ':';
Joerg Sonnenberger59c84572011-07-16 10:50:05 +0000759 const char *path = it->c_str();
760 if (path[0] == '=')
761 llvm::outs() << sysroot << path + 1;
762 else
763 llvm::outs() << path;
Daniel Dunbarca3459e2009-03-20 04:37:21 +0000764 }
765 llvm::outs() << "\n";
Daniel Dunbar91e28af2009-03-31 21:38:17 +0000766 return false;
Daniel Dunbarca3459e2009-03-20 04:37:21 +0000767 }
768
Daniel Dunbara8231832009-09-08 23:36:43 +0000769 // FIXME: The following handlers should use a callback mechanism, we don't
770 // know what the client would like to do.
Daniel Dunbar21549232009-03-18 02:55:38 +0000771 if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000772 llvm::outs() << GetFilePath(A->getValue(), TC) << "\n";
Daniel Dunbarcb881672009-03-13 00:51:18 +0000773 return false;
774 }
775
Daniel Dunbar21549232009-03-18 02:55:38 +0000776 if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000777 llvm::outs() << GetProgramPath(A->getValue(), TC) << "\n";
Daniel Dunbarcb881672009-03-13 00:51:18 +0000778 return false;
779 }
780
Daniel Dunbar21549232009-03-18 02:55:38 +0000781 if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) {
Daniel Dunbar5ed34f42009-09-09 22:33:00 +0000782 llvm::outs() << GetFilePath("libgcc.a", TC) << "\n";
Daniel Dunbarcb881672009-03-13 00:51:18 +0000783 return false;
784 }
785
Daniel Dunbar12cfe032009-06-16 23:25:22 +0000786 if (C.getArgs().hasArg(options::OPT_print_multi_lib)) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700787 const MultilibSet &Multilibs = TC.getMultilibs();
Daniel Dunbar12cfe032009-06-16 23:25:22 +0000788
Stephen Hines651f13c2014-04-23 16:59:28 -0700789 for (MultilibSet::const_iterator I = Multilibs.begin(), E = Multilibs.end();
790 I != E; ++I) {
791 llvm::outs() << *I << "\n";
Daniel Dunbar12cfe032009-06-16 23:25:22 +0000792 }
793 return false;
794 }
795
Stephen Hines651f13c2014-04-23 16:59:28 -0700796 if (C.getArgs().hasArg(options::OPT_print_multi_directory)) {
797 const MultilibSet &Multilibs = TC.getMultilibs();
798 for (MultilibSet::const_iterator I = Multilibs.begin(), E = Multilibs.end();
799 I != E; ++I) {
800 if (I->gccSuffix().empty())
801 llvm::outs() << ".\n";
802 else {
803 StringRef Suffix(I->gccSuffix());
804 assert(Suffix.front() == '/');
805 llvm::outs() << Suffix.substr(1) << "\n";
806 }
Daniel Dunbar12cfe032009-06-16 23:25:22 +0000807 }
808 return false;
809 }
810
Stephen Hines651f13c2014-04-23 16:59:28 -0700811 if (C.getArgs().hasArg(options::OPT_print_multi_os_directory)) {
812 // FIXME: This should print out "lib/../lib", "lib/../lib64", or
813 // "lib/../lib32" as appropriate for the toolchain. For now, print
814 // nothing because it's not supported yet.
815 return false;
816 }
817
Daniel Dunbarcb881672009-03-13 00:51:18 +0000818 return true;
819}
820
Daniel Dunbara8231832009-09-08 23:36:43 +0000821static unsigned PrintActions1(const Compilation &C, Action *A,
Daniel Dunbarba102132009-03-13 12:19:02 +0000822 std::map<Action*, unsigned> &Ids) {
823 if (Ids.count(A))
824 return Ids[A];
Daniel Dunbara8231832009-09-08 23:36:43 +0000825
Daniel Dunbarba102132009-03-13 12:19:02 +0000826 std::string str;
827 llvm::raw_string_ostream os(str);
Daniel Dunbara8231832009-09-08 23:36:43 +0000828
Daniel Dunbarba102132009-03-13 12:19:02 +0000829 os << Action::getClassName(A->getKind()) << ", ";
Daniel Dunbara8231832009-09-08 23:36:43 +0000830 if (InputAction *IA = dyn_cast<InputAction>(A)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000831 os << "\"" << IA->getInputArg().getValue() << "\"";
Daniel Dunbarba102132009-03-13 12:19:02 +0000832 } else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) {
Chad Rosier8202fb82012-04-27 19:51:11 +0000833 os << '"' << BIA->getArchName() << '"'
Daniel Dunbar10ffa9a2009-03-18 03:13:20 +0000834 << ", {" << PrintActions1(C, *BIA->begin(), Ids) << "}";
Daniel Dunbarba102132009-03-13 12:19:02 +0000835 } else {
836 os << "{";
837 for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) {
Daniel Dunbar10ffa9a2009-03-18 03:13:20 +0000838 os << PrintActions1(C, *it, Ids);
Daniel Dunbarba102132009-03-13 12:19:02 +0000839 ++it;
840 if (it != ie)
841 os << ", ";
842 }
843 os << "}";
844 }
845
846 unsigned Id = Ids.size();
847 Ids[A] = Id;
Daniel Dunbara8231832009-09-08 23:36:43 +0000848 llvm::errs() << Id << ": " << os.str() << ", "
Daniel Dunbarba102132009-03-13 12:19:02 +0000849 << types::getTypeName(A->getType()) << "\n";
850
851 return Id;
852}
853
Daniel Dunbar10ffa9a2009-03-18 03:13:20 +0000854void Driver::PrintActions(const Compilation &C) const {
Daniel Dunbarba102132009-03-13 12:19:02 +0000855 std::map<Action*, unsigned> Ids;
Daniel Dunbara8231832009-09-08 23:36:43 +0000856 for (ActionList::const_iterator it = C.getActions().begin(),
Daniel Dunbar10ffa9a2009-03-18 03:13:20 +0000857 ie = C.getActions().end(); it != ie; ++it)
858 PrintActions1(C, *it, Ids);
Daniel Dunbar53ec5522009-03-12 07:58:46 +0000859}
860
Joerg Sonnenberger9d0fbea2011-05-06 14:05:11 +0000861/// \brief Check whether the given input tree contains any compilation or
862/// assembly actions.
863static bool ContainsCompileOrAssembleAction(const Action *A) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700864 if (isa<CompileJobAction>(A) ||
865 isa<BackendJobAction>(A) ||
866 isa<AssembleJobAction>(A))
Daniel Dunbarb5e2f692010-06-29 16:38:33 +0000867 return true;
868
869 for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it)
Joerg Sonnenberger9d0fbea2011-05-06 14:05:11 +0000870 if (ContainsCompileOrAssembleAction(*it))
Daniel Dunbarb5e2f692010-06-29 16:38:33 +0000871 return true;
872
873 return false;
874}
875
Daniel Dunbar74edcea2010-08-02 05:43:51 +0000876void Driver::BuildUniversalActions(const ToolChain &TC,
Hans Wennborg9c0ed912013-08-12 23:26:25 +0000877 DerivedArgList &Args,
Chad Rosierbe69f602011-08-12 22:08:57 +0000878 const InputList &BAInputs,
Daniel Dunbar21549232009-03-18 02:55:38 +0000879 ActionList &Actions) const {
Daniel Dunbara8231832009-09-08 23:36:43 +0000880 llvm::PrettyStackTraceString CrashInfo("Building universal build actions");
881 // Collect the list of architectures. Duplicates are allowed, but should only
882 // be handled once (in the order seen).
Daniel Dunbar13689542009-03-13 20:33:35 +0000883 llvm::StringSet<> ArchNames;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000884 SmallVector<const char *, 4> Archs;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700885 for (Arg *A : Args) {
Daniel Dunbarb827a052009-11-19 03:26:40 +0000886 if (A->getOption().matches(options::OPT_arch)) {
Daniel Dunbar36df2902009-09-08 23:37:30 +0000887 // Validate the option here; we don't save the type here because its
888 // particular spelling may participate in other driver choices.
889 llvm::Triple::ArchType Arch =
Stephen Hines651f13c2014-04-23 16:59:28 -0700890 tools::darwin::getArchTypeForMachOArchName(A->getValue());
Daniel Dunbar36df2902009-09-08 23:37:30 +0000891 if (Arch == llvm::Triple::UnknownArch) {
892 Diag(clang::diag::err_drv_invalid_arch_name)
893 << A->getAsString(Args);
894 continue;
895 }
896
Daniel Dunbar75877192009-03-19 07:55:12 +0000897 A->claim();
Stephen Hines176edba2014-12-01 14:53:08 -0800898 if (ArchNames.insert(A->getValue()).second)
Richard Smith1d489cf2012-11-01 04:30:05 +0000899 Archs.push_back(A->getValue());
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000900 }
901 }
902
Daniel Dunbara8231832009-09-08 23:36:43 +0000903 // When there is no explicit arch for this platform, make sure we still bind
904 // the architecture (to the default) so that -Xarch_ is handled correctly.
Daniel Dunbar10ffa9a2009-03-18 03:13:20 +0000905 if (!Archs.size())
Daniel Dunbard2a527e2012-11-08 03:38:26 +0000906 Archs.push_back(Args.MakeArgString(TC.getDefaultUniversalArchName()));
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000907
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000908 ActionList SingleActions;
Chad Rosierbe69f602011-08-12 22:08:57 +0000909 BuildActions(TC, Args, BAInputs, SingleActions);
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000910
Daniel Dunbarbe1cc3e2010-06-04 18:28:41 +0000911 // Add in arch bindings for every top level action, as well as lipo and
912 // dsymutil steps if needed.
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000913 for (unsigned i = 0, e = SingleActions.size(); i != e; ++i) {
914 Action *Act = SingleActions[i];
915
Daniel Dunbara8231832009-09-08 23:36:43 +0000916 // Make sure we can lipo this kind of output. If not (and it is an actual
917 // output) then we disallow, since we can't create an output file with the
918 // right name without overwriting it. We could remove this oddity by just
919 // changing the output names to include the arch, which would also fix
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000920 // -save-temps. Compatibility wins for now.
921
Daniel Dunbar3dbd6c52009-03-13 17:46:02 +0000922 if (Archs.size() > 1 && !types::canLipoType(Act->getType()))
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000923 Diag(clang::diag::err_drv_invalid_output_with_multiple_archs)
924 << types::getTypeName(Act->getType());
925
926 ActionList Inputs;
Daniel Dunbar32c1a2a2010-03-11 18:04:58 +0000927 for (unsigned i = 0, e = Archs.size(); i != e; ++i) {
Stephen Hines176edba2014-12-01 14:53:08 -0800928 Inputs.push_back(
929 new BindArchAction(std::unique_ptr<Action>(Act), Archs[i]));
Daniel Dunbar32c1a2a2010-03-11 18:04:58 +0000930 if (i != 0)
931 Inputs.back()->setOwnsInputs(false);
932 }
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000933
Daniel Dunbara8231832009-09-08 23:36:43 +0000934 // Lipo if necessary, we do it this way because we need to set the arch flag
935 // so that -Xarch_ gets overwritten.
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000936 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing)
937 Actions.append(Inputs.begin(), Inputs.end());
938 else
939 Actions.push_back(new LipoJobAction(Inputs, Act->getType()));
Daniel Dunbarbe1cc3e2010-06-04 18:28:41 +0000940
Eric Christopherb822f722012-02-06 19:43:51 +0000941 // Handle debug info queries.
942 Arg *A = Args.getLastArg(options::OPT_g_Group);
David Blaikie6c229392012-04-15 21:22:10 +0000943 if (A && !A->getOption().matches(options::OPT_g0) &&
944 !A->getOption().matches(options::OPT_gstabs) &&
945 ContainsCompileOrAssembleAction(Actions.back())) {
Chad Rosier6467c9b2012-07-09 17:31:28 +0000946
David Blaikie6c229392012-04-15 21:22:10 +0000947 // Add a 'dsymutil' step if necessary, when debug info is enabled and we
948 // have a compile input. We need to run 'dsymutil' ourselves in such cases
Eric Christophera5229872013-01-28 17:39:03 +0000949 // because the debug info will refer to a temporary object file which
David Blaikie6c229392012-04-15 21:22:10 +0000950 // will be removed at the end of the compilation process.
951 if (Act->getType() == types::TY_Image) {
952 ActionList Inputs;
953 Inputs.push_back(Actions.back());
954 Actions.pop_back();
955 Actions.push_back(new DsymutilJobAction(Inputs, types::TY_dSYM));
Daniel Dunbarbe1cc3e2010-06-04 18:28:41 +0000956 }
David Blaikie6c229392012-04-15 21:22:10 +0000957
Stephen Hines651f13c2014-04-23 16:59:28 -0700958 // Verify the debug info output.
959 if (Args.hasArg(options::OPT_verify_debug_info)) {
Stephen Hines176edba2014-12-01 14:53:08 -0800960 std::unique_ptr<Action> VerifyInput(Actions.back());
David Blaikie6c229392012-04-15 21:22:10 +0000961 Actions.pop_back();
Stephen Hines176edba2014-12-01 14:53:08 -0800962 Actions.push_back(new VerifyDebugInfoJobAction(std::move(VerifyInput),
Stephen Hines651f13c2014-04-23 16:59:28 -0700963 types::TY_Nothing));
David Blaikie6c229392012-04-15 21:22:10 +0000964 }
965 }
Daniel Dunbar2fe63e62009-03-12 18:40:18 +0000966 }
Daniel Dunbar53ec5522009-03-12 07:58:46 +0000967}
968
Hans Wennborg4c587532013-08-06 00:20:31 +0000969/// \brief Check that the file referenced by Value exists. If it doesn't,
970/// issue a diagnostic and return false.
Stephen Hines651f13c2014-04-23 16:59:28 -0700971static bool DiagnoseInputExistence(const Driver &D, const DerivedArgList &Args,
Hans Wennborg4c587532013-08-06 00:20:31 +0000972 StringRef Value) {
973 if (!D.getCheckInputsExist())
974 return true;
975
976 // stdin always exists.
977 if (Value == "-")
978 return true;
979
980 SmallString<64> Path(Value);
981 if (Arg *WorkDir = Args.getLastArg(options::OPT_working_directory)) {
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700982 if (!llvm::sys::path::is_absolute(Path)) {
Hans Wennborg4c587532013-08-06 00:20:31 +0000983 SmallString<64> Directory(WorkDir->getValue());
984 llvm::sys::path::append(Directory, Value);
985 Path.assign(Directory);
986 }
987 }
988
989 if (llvm::sys::fs::exists(Twine(Path)))
990 return true;
991
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700992 if (D.IsCLMode() && llvm::sys::Process::FindInEnvPath("LIB", Value))
993 return true;
994
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700995 D.Diag(clang::diag::err_drv_no_such_file) << Path;
Hans Wennborg4c587532013-08-06 00:20:31 +0000996 return false;
997}
998
Chad Rosierbe69f602011-08-12 22:08:57 +0000999// Construct a the list of inputs and their types.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001000void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args,
Chad Rosierbe69f602011-08-12 22:08:57 +00001001 InputList &Inputs) const {
Daniel Dunbara8231832009-09-08 23:36:43 +00001002 // Track the current user specified (-x) input. We also explicitly track the
1003 // argument used to set the type; we only want to claim the type when we
1004 // actually use it, so we warn about unused -x arguments.
Daniel Dunbar83dd21f2009-03-13 17:57:10 +00001005 types::ID InputType = types::TY_Nothing;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001006 Arg *InputTypeArg = nullptr;
Daniel Dunbar83dd21f2009-03-13 17:57:10 +00001007
Hans Wennborgf86c1392013-08-12 18:34:17 +00001008 // The last /TC or /TP option sets the input type to C or C++ globally.
Stephen Hines176edba2014-12-01 14:53:08 -08001009 if (Arg *TCTP = Args.getLastArgNoClaim(options::OPT__SLASH_TC,
1010 options::OPT__SLASH_TP)) {
Hans Wennborg4c587532013-08-06 00:20:31 +00001011 InputTypeArg = TCTP;
Hans Wennborgf86c1392013-08-12 18:34:17 +00001012 InputType = TCTP->getOption().matches(options::OPT__SLASH_TC)
1013 ? types::TY_C : types::TY_CXX;
Hans Wennborg4c587532013-08-06 00:20:31 +00001014
Hans Wennborgf86c1392013-08-12 18:34:17 +00001015 arg_iterator it = Args.filtered_begin(options::OPT__SLASH_TC,
1016 options::OPT__SLASH_TP);
1017 const arg_iterator ie = Args.filtered_end();
1018 Arg *Previous = *it++;
1019 bool ShowNote = false;
1020 while (it != ie) {
Hans Wennborg42ade492013-09-11 16:38:41 +00001021 Diag(clang::diag::warn_drv_overriding_flag_option)
1022 << Previous->getSpelling() << (*it)->getSpelling();
Hans Wennborgf86c1392013-08-12 18:34:17 +00001023 Previous = *it++;
1024 ShowNote = true;
Hans Wennborg4c587532013-08-06 00:20:31 +00001025 }
Hans Wennborgf86c1392013-08-12 18:34:17 +00001026 if (ShowNote)
1027 Diag(clang::diag::note_drv_t_option_is_global);
Hans Wennborg4c587532013-08-06 00:20:31 +00001028
1029 // No driver mode exposes -x and /TC or /TP; we don't support mixing them.
1030 assert(!Args.hasArg(options::OPT_x) && "-x and /TC or /TP is not allowed");
1031 }
1032
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001033 for (Arg *A : Args) {
Michael J. Spencer43275572012-08-20 21:41:17 +00001034 if (A->getOption().getKind() == Option::InputClass) {
Richard Smith1d489cf2012-11-01 04:30:05 +00001035 const char *Value = A->getValue();
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001036 types::ID Ty = types::TY_INVALID;
1037
1038 // Infer the input type if necessary.
Daniel Dunbar83dd21f2009-03-13 17:57:10 +00001039 if (InputType == types::TY_Nothing) {
1040 // If there was an explicit arg for this, claim it.
1041 if (InputTypeArg)
1042 InputTypeArg->claim();
1043
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001044 // stdin must be handled specially.
1045 if (memcmp(Value, "-", 2) == 0) {
Daniel Dunbara8231832009-09-08 23:36:43 +00001046 // If running with -E, treat as a C input (this changes the builtin
1047 // macros, for example). This may be overridden by -ObjC below.
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001048 //
Daniel Dunbara8231832009-09-08 23:36:43 +00001049 // Otherwise emit an error but still use a valid type to avoid
1050 // spurious errors (e.g., no inputs).
Hans Wennborg76b86c22013-07-18 20:29:38 +00001051 if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP())
Stephen Hines651f13c2014-04-23 16:59:28 -07001052 Diag(IsCLMode() ? clang::diag::err_drv_unknown_stdin_type_clang_cl
1053 : clang::diag::err_drv_unknown_stdin_type);
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001054 Ty = types::TY_C;
1055 } else {
Joerg Sonnenberger9a2927c2011-03-16 22:45:02 +00001056 // Otherwise lookup by extension.
1057 // Fallback is C if invoked as C preprocessor or Object otherwise.
1058 // We use a host hook here because Darwin at least has its own
Daniel Dunbara8231832009-09-08 23:36:43 +00001059 // idea of what .s is.
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001060 if (const char *Ext = strrchr(Value, '.'))
Daniel Dunbar41800112010-08-02 05:43:56 +00001061 Ty = TC.LookupTypeForExtension(Ext + 1);
Daniel Dunbare33bea42009-03-20 23:39:23 +00001062
Joerg Sonnenberger9a2927c2011-03-16 22:45:02 +00001063 if (Ty == types::TY_INVALID) {
Hans Wennborg76b86c22013-07-18 20:29:38 +00001064 if (CCCIsCPP())
Joerg Sonnenberger9a2927c2011-03-16 22:45:02 +00001065 Ty = types::TY_C;
1066 else
1067 Ty = types::TY_Object;
1068 }
Daniel Dunbar51679c52010-02-17 20:32:58 +00001069
1070 // If the driver is invoked as C++ compiler (like clang++ or c++) it
1071 // should autodetect some input files as C++ for g++ compatibility.
Hans Wennborg76b86c22013-07-18 20:29:38 +00001072 if (CCCIsCXX()) {
Daniel Dunbar51679c52010-02-17 20:32:58 +00001073 types::ID OldTy = Ty;
1074 Ty = types::lookupCXXTypeForCType(Ty);
1075
1076 if (Ty != OldTy)
1077 Diag(clang::diag::warn_drv_treating_input_as_cxx)
1078 << getTypeName(OldTy) << getTypeName(Ty);
1079 }
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001080 }
1081
Daniel Dunbar683ca382009-05-18 21:47:54 +00001082 // -ObjC and -ObjC++ override the default language, but only for "source
1083 // files". We just treat everything that isn't a linker input as a
1084 // source file.
Daniel Dunbara8231832009-09-08 23:36:43 +00001085 //
Daniel Dunbar683ca382009-05-18 21:47:54 +00001086 // FIXME: Clean this up if we move the phase sequence into the type.
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001087 if (Ty != types::TY_Object) {
1088 if (Args.hasArg(options::OPT_ObjC))
1089 Ty = types::TY_ObjC;
1090 else if (Args.hasArg(options::OPT_ObjCXX))
1091 Ty = types::TY_ObjCXX;
1092 }
1093 } else {
1094 assert(InputTypeArg && "InputType set w/o InputTypeArg");
Stephen Hines176edba2014-12-01 14:53:08 -08001095 if (!InputTypeArg->getOption().matches(options::OPT_x)) {
1096 // If emulating cl.exe, make sure that /TC and /TP don't affect input
1097 // object files.
1098 const char *Ext = strrchr(Value, '.');
1099 if (Ext && TC.LookupTypeForExtension(Ext + 1) == types::TY_Object)
1100 Ty = types::TY_Object;
1101 }
1102 if (Ty == types::TY_INVALID) {
1103 Ty = InputType;
1104 InputTypeArg->claim();
1105 }
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001106 }
1107
Stephen Hines651f13c2014-04-23 16:59:28 -07001108 if (DiagnoseInputExistence(*this, Args, Value))
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001109 Inputs.push_back(std::make_pair(Ty, A));
1110
Hans Wennborg4c587532013-08-06 00:20:31 +00001111 } else if (A->getOption().matches(options::OPT__SLASH_Tc)) {
1112 StringRef Value = A->getValue();
Stephen Hines651f13c2014-04-23 16:59:28 -07001113 if (DiagnoseInputExistence(*this, Args, Value)) {
Hans Wennborg4c587532013-08-06 00:20:31 +00001114 Arg *InputArg = MakeInputArg(Args, Opts, A->getValue());
1115 Inputs.push_back(std::make_pair(types::TY_C, InputArg));
1116 }
1117 A->claim();
1118 } else if (A->getOption().matches(options::OPT__SLASH_Tp)) {
1119 StringRef Value = A->getValue();
Stephen Hines651f13c2014-04-23 16:59:28 -07001120 if (DiagnoseInputExistence(*this, Args, Value)) {
Hans Wennborg4c587532013-08-06 00:20:31 +00001121 Arg *InputArg = MakeInputArg(Args, Opts, A->getValue());
1122 Inputs.push_back(std::make_pair(types::TY_CXX, InputArg));
1123 }
1124 A->claim();
Michael J. Spencer91e06da2012-10-19 22:37:06 +00001125 } else if (A->getOption().hasFlag(options::LinkerInput)) {
Daniel Dunbara8231832009-09-08 23:36:43 +00001126 // Just treat as object type, we could make a special type for this if
1127 // necessary.
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001128 Inputs.push_back(std::make_pair(types::TY_Object, A));
1129
Daniel Dunbarb827a052009-11-19 03:26:40 +00001130 } else if (A->getOption().matches(options::OPT_x)) {
Daniel Dunbara8231832009-09-08 23:36:43 +00001131 InputTypeArg = A;
Richard Smith1d489cf2012-11-01 04:30:05 +00001132 InputType = types::lookupTypeForTypeSpecifier(A->getValue());
Chad Rosiera53ab5c2012-04-07 00:01:31 +00001133 A->claim();
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001134
1135 // Follow gcc behavior and treat as linker input for invalid -x
Daniel Dunbara8231832009-09-08 23:36:43 +00001136 // options. Its not clear why we shouldn't just revert to unknown; but
Michael J. Spencer74cae0c2010-12-17 21:22:33 +00001137 // this isn't very important, we might as well be bug compatible.
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001138 if (!InputType) {
Richard Smith1d489cf2012-11-01 04:30:05 +00001139 Diag(clang::diag::err_drv_unknown_language) << A->getValue();
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001140 InputType = types::TY_Object;
1141 }
1142 }
1143 }
Hans Wennborg76b86c22013-07-18 20:29:38 +00001144 if (CCCIsCPP() && Inputs.empty()) {
Joerg Sonnenberger9ade4ae2011-03-06 23:31:01 +00001145 // If called as standalone preprocessor, stdin is processed
1146 // if no other input is present.
Hans Wennborg4c587532013-08-06 00:20:31 +00001147 Arg *A = MakeInputArg(Args, Opts, "-");
Joerg Sonnenberger9ade4ae2011-03-06 23:31:01 +00001148 Inputs.push_back(std::make_pair(types::TY_C, A));
1149 }
Chad Rosierbe69f602011-08-12 22:08:57 +00001150}
1151
Hans Wennborg9c0ed912013-08-12 23:26:25 +00001152void Driver::BuildActions(const ToolChain &TC, DerivedArgList &Args,
Chad Rosierbe69f602011-08-12 22:08:57 +00001153 const InputList &Inputs, ActionList &Actions) const {
1154 llvm::PrettyStackTraceString CrashInfo("Building compilation actions");
Joerg Sonnenberger9ade4ae2011-03-06 23:31:01 +00001155
Daniel Dunbar8b1604e2009-03-13 00:17:48 +00001156 if (!SuppressMissingInputWarning && Inputs.empty()) {
Daniel Dunbaraf61c712009-03-12 23:55:14 +00001157 Diag(clang::diag::err_drv_no_input_files);
1158 return;
1159 }
1160
Chad Rosier1fc1de42011-07-27 23:36:45 +00001161 Arg *FinalPhaseArg;
1162 phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg);
Daniel Dunbaraf61c712009-03-12 23:55:14 +00001163
Rafael Espindola6db90882013-08-25 14:27:09 +00001164 if (FinalPhase == phases::Link && Args.hasArg(options::OPT_emit_llvm)) {
1165 Diag(clang::diag::err_drv_emit_llvm_link);
1166 }
1167
Daniel Dunbara8231832009-09-08 23:36:43 +00001168 // Reject -Z* at the top level, these options should never have been exposed
1169 // by gcc.
Daniel Dunbard7b88c22009-03-26 16:12:09 +00001170 if (Arg *A = Args.getLastArg(options::OPT_Z_Joined))
Daniel Dunbar38dd3d52009-03-20 06:14:23 +00001171 Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args);
Daniel Dunbaraf61c712009-03-12 23:55:14 +00001172
Hans Wennborg9c0ed912013-08-12 23:26:25 +00001173 // Diagnose misuse of /Fo.
1174 if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fo)) {
Hans Wennborg9c0ed912013-08-12 23:26:25 +00001175 StringRef V = A->getValue();
Stephen Hines176edba2014-12-01 14:53:08 -08001176 if (Inputs.size() > 1 && !V.empty() &&
1177 !llvm::sys::path::is_separator(V.back())) {
Hans Wennborg9c0ed912013-08-12 23:26:25 +00001178 // Check whether /Fo tries to name an output file for multiple inputs.
Hans Wennborgb405c952013-10-18 22:49:04 +00001179 Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources)
Hans Wennborg9c0ed912013-08-12 23:26:25 +00001180 << A->getSpelling() << V;
1181 Args.eraseArg(options::OPT__SLASH_Fo);
1182 }
1183 }
1184
Hans Wennborgb405c952013-10-18 22:49:04 +00001185 // Diagnose misuse of /Fa.
1186 if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fa)) {
1187 StringRef V = A->getValue();
Stephen Hines176edba2014-12-01 14:53:08 -08001188 if (Inputs.size() > 1 && !V.empty() &&
1189 !llvm::sys::path::is_separator(V.back())) {
Hans Wennborgb405c952013-10-18 22:49:04 +00001190 // Check whether /Fa tries to name an asm file for multiple inputs.
1191 Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources)
1192 << A->getSpelling() << V;
1193 Args.eraseArg(options::OPT__SLASH_Fa);
1194 }
1195 }
1196
Stephen Hines176edba2014-12-01 14:53:08 -08001197 // Diagnose misuse of /o.
1198 if (Arg *A = Args.getLastArg(options::OPT__SLASH_o)) {
Hans Wennborg9c0ed912013-08-12 23:26:25 +00001199 if (A->getValue()[0] == '\0') {
1200 // It has to have a value.
1201 Diag(clang::diag::err_drv_missing_argument) << A->getSpelling() << 1;
Stephen Hines176edba2014-12-01 14:53:08 -08001202 Args.eraseArg(options::OPT__SLASH_o);
Hans Wennborg9c0ed912013-08-12 23:26:25 +00001203 }
1204 }
1205
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001206 // Construct the actions to perform.
1207 ActionList LinkerInputs;
Stephen Hines651f13c2014-04-23 16:59:28 -07001208
Matthew Curtisb9aa6732013-03-07 12:32:26 +00001209 llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PL;
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001210 for (unsigned i = 0, e = Inputs.size(); i != e; ++i) {
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001211 types::ID InputType = Inputs[i].first;
1212 const Arg *InputArg = Inputs[i].second;
1213
Matthew Curtisb9aa6732013-03-07 12:32:26 +00001214 PL.clear();
1215 types::getCompilationPhases(InputType, PL);
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001216
Daniel Dunbara8231832009-09-08 23:36:43 +00001217 // If the first step comes after the final phase we are doing as part of
1218 // this compilation, warn the user about it.
Matthew Curtisb9aa6732013-03-07 12:32:26 +00001219 phases::ID InitialPhase = PL[0];
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001220 if (InitialPhase > FinalPhase) {
Daniel Dunbar05494a72009-03-19 07:57:08 +00001221 // Claim here to avoid the more general unused warning.
1222 InputArg->claim();
Daniel Dunbar634b2452009-09-17 04:13:26 +00001223
Daniel Dunbar32c8cb62011-04-20 15:44:48 +00001224 // Suppress all unused style warnings with -Qunused-arguments
1225 if (Args.hasArg(options::OPT_Qunused_arguments))
1226 continue;
1227
Richard Smith04c3a252012-08-06 04:09:06 +00001228 // Special case when final phase determined by binary name, rather than
1229 // by a command-line argument with a corresponding Arg.
Hans Wennborg76b86c22013-07-18 20:29:38 +00001230 if (CCCIsCPP())
Richard Smith04c3a252012-08-06 04:09:06 +00001231 Diag(clang::diag::warn_drv_input_file_unused_by_cpp)
1232 << InputArg->getAsString(Args)
1233 << getPhaseName(InitialPhase);
Daniel Dunbar634b2452009-09-17 04:13:26 +00001234 // Special case '-E' warning on a previously preprocessed file to make
1235 // more sense.
Richard Smith04c3a252012-08-06 04:09:06 +00001236 else if (InitialPhase == phases::Compile &&
1237 FinalPhase == phases::Preprocess &&
1238 getPreprocessedType(InputType) == types::TY_INVALID)
Daniel Dunbar634b2452009-09-17 04:13:26 +00001239 Diag(clang::diag::warn_drv_preprocessed_input_file_unused)
1240 << InputArg->getAsString(Args)
Richard Smith04c3a252012-08-06 04:09:06 +00001241 << !!FinalPhaseArg
Stephen Hines651f13c2014-04-23 16:59:28 -07001242 << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "");
Daniel Dunbar634b2452009-09-17 04:13:26 +00001243 else
1244 Diag(clang::diag::warn_drv_input_file_unused)
1245 << InputArg->getAsString(Args)
1246 << getPhaseName(InitialPhase)
Richard Smith04c3a252012-08-06 04:09:06 +00001247 << !!FinalPhaseArg
Stephen Hines651f13c2014-04-23 16:59:28 -07001248 << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "");
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001249 continue;
1250 }
Daniel Dunbara8231832009-09-08 23:36:43 +00001251
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001252 // Build the pipeline for this file.
Stephen Hines651f13c2014-04-23 16:59:28 -07001253 std::unique_ptr<Action> Current(new InputAction(*InputArg, InputType));
Craig Topper09d19ef2013-07-04 03:08:24 +00001254 for (SmallVectorImpl<phases::ID>::iterator
Matthew Curtisb9aa6732013-03-07 12:32:26 +00001255 i = PL.begin(), e = PL.end(); i != e; ++i) {
1256 phases::ID Phase = *i;
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001257
1258 // We are done if this step is past what the user requested.
1259 if (Phase > FinalPhase)
1260 break;
1261
1262 // Queue linker inputs.
1263 if (Phase == phases::Link) {
Matthew Curtisb9aa6732013-03-07 12:32:26 +00001264 assert((i + 1) == e && "linking must be final compilation step.");
Stephen Hines651f13c2014-04-23 16:59:28 -07001265 LinkerInputs.push_back(Current.release());
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001266 break;
1267 }
1268
Daniel Dunbara8231832009-09-08 23:36:43 +00001269 // Some types skip the assembler phase (e.g., llvm-bc), but we can't
1270 // encode this in the steps because the intermediate type depends on
1271 // arguments. Just special case here.
Daniel Dunbar337a6272009-03-24 20:17:30 +00001272 if (Phase == phases::Assemble && Current->getType() != types::TY_PP_Asm)
1273 continue;
1274
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001275 // Otherwise construct the appropriate action.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001276 Current = ConstructPhaseAction(TC, Args, Phase, std::move(Current));
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001277 if (Current->getType() == types::TY_Nothing)
1278 break;
1279 }
1280
1281 // If we ended with something, add to the output list.
1282 if (Current)
Stephen Hines651f13c2014-04-23 16:59:28 -07001283 Actions.push_back(Current.release());
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001284 }
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001285
1286 // Add a link action if necessary.
1287 if (!LinkerInputs.empty())
1288 Actions.push_back(new LinkJobAction(LinkerInputs, types::TY_Image));
Daniel Dunbarf3601382009-12-22 23:19:32 +00001289
1290 // If we are linking, claim any options which are obviously only used for
1291 // compilation.
Hans Wennborgd8df3f72013-09-17 00:03:41 +00001292 if (FinalPhase == phases::Link && PL.size() == 1) {
Daniel Dunbarf3601382009-12-22 23:19:32 +00001293 Args.ClaimAllArgs(options::OPT_CompileOnly_Group);
Hans Wennborgd8df3f72013-09-17 00:03:41 +00001294 Args.ClaimAllArgs(options::OPT_cl_compile_Group);
1295 }
1296
1297 // Claim ignored clang-cl options.
1298 Args.ClaimAllArgs(options::OPT_cl_ignored_Group);
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001299}
1300
Stephen Hines176edba2014-12-01 14:53:08 -08001301std::unique_ptr<Action>
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001302Driver::ConstructPhaseAction(const ToolChain &TC, const ArgList &Args,
1303 phases::ID Phase,
Stephen Hines176edba2014-12-01 14:53:08 -08001304 std::unique_ptr<Action> Input) const {
Daniel Dunbar8f25c792009-03-18 01:38:48 +00001305 llvm::PrettyStackTraceString CrashInfo("Constructing phase actions");
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001306 // Build the appropriate action.
1307 switch (Phase) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001308 case phases::Link: llvm_unreachable("link action invalid here.");
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001309 case phases::Preprocess: {
Daniel Dunbarcd8e4c42009-03-30 06:36:42 +00001310 types::ID OutputTy;
1311 // -{M, MM} alter the output type.
Daniel Dunbar9eb93b02010-12-08 21:33:40 +00001312 if (Args.hasArg(options::OPT_M, options::OPT_MM)) {
Daniel Dunbarcd8e4c42009-03-30 06:36:42 +00001313 OutputTy = types::TY_Dependencies;
1314 } else {
David Blaikiee75d9cf2012-06-29 22:03:56 +00001315 OutputTy = Input->getType();
1316 if (!Args.hasFlag(options::OPT_frewrite_includes,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001317 options::OPT_fno_rewrite_includes, false) &&
1318 !CCGenDiagnostics)
David Blaikiee75d9cf2012-06-29 22:03:56 +00001319 OutputTy = types::getPreprocessedType(OutputTy);
Daniel Dunbarcd8e4c42009-03-30 06:36:42 +00001320 assert(OutputTy != types::TY_INVALID &&
1321 "Cannot preprocess this input type!");
1322 }
Stephen Hines176edba2014-12-01 14:53:08 -08001323 return llvm::make_unique<PreprocessJobAction>(std::move(Input), OutputTy);
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001324 }
Aaron Ballman761322b2012-07-31 01:21:00 +00001325 case phases::Precompile: {
1326 types::ID OutputTy = types::TY_PCH;
1327 if (Args.hasArg(options::OPT_fsyntax_only)) {
1328 // Syntax checks should not emit a PCH file
1329 OutputTy = types::TY_Nothing;
1330 }
Stephen Hines176edba2014-12-01 14:53:08 -08001331 return llvm::make_unique<PrecompileJobAction>(std::move(Input), OutputTy);
Aaron Ballman761322b2012-07-31 01:21:00 +00001332 }
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001333 case phases::Compile: {
Stephen Hines176edba2014-12-01 14:53:08 -08001334 if (Args.hasArg(options::OPT_fsyntax_only))
1335 return llvm::make_unique<CompileJobAction>(std::move(Input),
1336 types::TY_Nothing);
1337 if (Args.hasArg(options::OPT_rewrite_objc))
1338 return llvm::make_unique<CompileJobAction>(std::move(Input),
1339 types::TY_RewrittenObjC);
1340 if (Args.hasArg(options::OPT_rewrite_legacy_objc))
1341 return llvm::make_unique<CompileJobAction>(std::move(Input),
1342 types::TY_RewrittenLegacyObjC);
1343 if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto))
1344 return llvm::make_unique<AnalyzeJobAction>(std::move(Input),
1345 types::TY_Plist);
1346 if (Args.hasArg(options::OPT__migrate))
1347 return llvm::make_unique<MigrateJobAction>(std::move(Input),
1348 types::TY_Remap);
1349 if (Args.hasArg(options::OPT_emit_ast))
1350 return llvm::make_unique<CompileJobAction>(std::move(Input),
1351 types::TY_AST);
1352 if (Args.hasArg(options::OPT_module_file_info))
1353 return llvm::make_unique<CompileJobAction>(std::move(Input),
1354 types::TY_ModuleFile);
1355 if (Args.hasArg(options::OPT_verify_pch))
1356 return llvm::make_unique<VerifyPCHJobAction>(std::move(Input),
1357 types::TY_Nothing);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001358 return llvm::make_unique<CompileJobAction>(std::move(Input),
1359 types::TY_LLVM_BC);
1360 }
1361 case phases::Backend: {
1362 if (IsUsingLTO(TC, Args)) {
Daniel Dunbara8231832009-09-08 23:36:43 +00001363 types::ID Output =
Daniel Dunbar6c6424b2010-06-07 23:28:45 +00001364 Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001365 return llvm::make_unique<BackendJobAction>(std::move(Input), Output);
Stephen Hines176edba2014-12-01 14:53:08 -08001366 }
1367 if (Args.hasArg(options::OPT_emit_llvm)) {
Shuxin Yang223ccb42013-08-23 21:34:57 +00001368 types::ID Output =
1369 Args.hasArg(options::OPT_S) ? types::TY_LLVM_IR : types::TY_LLVM_BC;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001370 return llvm::make_unique<BackendJobAction>(std::move(Input), Output);
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001371 }
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001372 return llvm::make_unique<BackendJobAction>(std::move(Input),
Stephen Hines176edba2014-12-01 14:53:08 -08001373 types::TY_PP_Asm);
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001374 }
1375 case phases::Assemble:
Stephen Hines176edba2014-12-01 14:53:08 -08001376 return llvm::make_unique<AssembleJobAction>(std::move(Input),
1377 types::TY_Object);
Daniel Dunbarad2a9af2009-03-13 11:38:42 +00001378 }
1379
David Blaikieb219cfc2011-09-23 05:06:16 +00001380 llvm_unreachable("invalid phase in ConstructPhaseAction");
Daniel Dunbar53ec5522009-03-12 07:58:46 +00001381}
1382
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001383bool Driver::IsUsingLTO(const ToolChain &TC, const ArgList &Args) const {
1384 if (TC.getSanitizerArgs().needsLTO())
1385 return true;
1386
Shuxin Yang223ccb42013-08-23 21:34:57 +00001387 if (Args.hasFlag(options::OPT_flto, options::OPT_fno_lto, false))
Daniel Dunbared798952011-06-21 20:55:08 +00001388 return true;
1389
Daniel Dunbared798952011-06-21 20:55:08 +00001390 return false;
1391}
1392
Daniel Dunbar21549232009-03-18 02:55:38 +00001393void Driver::BuildJobs(Compilation &C) const {
Daniel Dunbar8f25c792009-03-18 01:38:48 +00001394 llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001395
1396 Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
1397
Daniel Dunbara8231832009-09-08 23:36:43 +00001398 // It is an error to provide a -o option if we are making multiple output
1399 // files.
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001400 if (FinalOutput) {
1401 unsigned NumOutputs = 0;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001402 for (const Action *A : C.getActions())
1403 if (A->getType() != types::TY_Nothing)
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001404 ++NumOutputs;
Daniel Dunbara8231832009-09-08 23:36:43 +00001405
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001406 if (NumOutputs > 1) {
1407 Diag(clang::diag::err_drv_output_argument_with_multiple_files);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001408 FinalOutput = nullptr;
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001409 }
1410 }
1411
Chad Rosier1c187592013-04-30 22:01:21 +00001412 // Collect the list of architectures.
1413 llvm::StringSet<> ArchNames;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001414 if (C.getDefaultToolChain().getTriple().isOSBinFormatMachO())
1415 for (const Arg *A : C.getArgs())
Chad Rosier1c187592013-04-30 22:01:21 +00001416 if (A->getOption().matches(options::OPT_arch))
1417 ArchNames.insert(A->getValue());
Chad Rosier1c187592013-04-30 22:01:21 +00001418
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001419 for (Action *A : C.getActions()) {
Daniel Dunbara8231832009-09-08 23:36:43 +00001420 // If we are linking an image for multiple archs then the linker wants
1421 // -arch_multiple and -final_output <final image name>. Unfortunately, this
1422 // doesn't fit in cleanly because we have to pass this information down.
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001423 //
Daniel Dunbara8231832009-09-08 23:36:43 +00001424 // FIXME: This is a hack; find a cleaner way to integrate this into the
1425 // process.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001426 const char *LinkingOutput = nullptr;
Daniel Dunbard7b88c22009-03-26 16:12:09 +00001427 if (isa<LipoJobAction>(A)) {
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001428 if (FinalOutput)
Richard Smith1d489cf2012-11-01 04:30:05 +00001429 LinkingOutput = FinalOutput->getValue();
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001430 else
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001431 LinkingOutput = getDefaultImageName();
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001432 }
1433
1434 InputInfo II;
Daniel Dunbara8231832009-09-08 23:36:43 +00001435 BuildJobsForAction(C, A, &C.getDefaultToolChain(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001436 /*BoundArch*/nullptr,
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001437 /*AtTopLevel*/ true,
Chad Rosier1c187592013-04-30 22:01:21 +00001438 /*MultipleArchs*/ ArchNames.size() > 1,
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001439 /*LinkingOutput*/ LinkingOutput,
1440 II);
1441 }
Daniel Dunbar586dc232009-03-16 06:42:30 +00001442
Daniel Dunbara8231832009-09-08 23:36:43 +00001443 // If the user passed -Qunused-arguments or there were errors, don't warn
1444 // about any unused arguments.
Argyrios Kyrtzidisbe3aab62010-11-18 21:47:07 +00001445 if (Diags.hasErrorOccurred() ||
Daniel Dunbar1e23f5f2009-04-07 19:04:18 +00001446 C.getArgs().hasArg(options::OPT_Qunused_arguments))
Daniel Dunbaraf2e4ba2009-03-18 18:03:46 +00001447 return;
1448
Daniel Dunbara2094e72009-03-29 22:24:54 +00001449 // Claim -### here.
1450 (void) C.getArgs().hasArg(options::OPT__HASH_HASH_HASH);
Daniel Dunbara8231832009-09-08 23:36:43 +00001451
Hans Wennborg76b86c22013-07-18 20:29:38 +00001452 // Claim --driver-mode, it was handled earlier.
1453 (void) C.getArgs().hasArg(options::OPT_driver_mode);
1454
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001455 for (Arg *A : C.getArgs()) {
Daniel Dunbar586dc232009-03-16 06:42:30 +00001456 // FIXME: It would be nice to be able to send the argument to the
David Blaikied6471f72011-09-25 23:23:43 +00001457 // DiagnosticsEngine, so that extra values, position, and so on could be
1458 // printed.
Daniel Dunbar4f53b292009-04-04 00:52:26 +00001459 if (!A->isClaimed()) {
Michael J. Spencer91e06da2012-10-19 22:37:06 +00001460 if (A->getOption().hasFlag(options::NoArgumentUnused))
Daniel Dunbar1e23f5f2009-04-07 19:04:18 +00001461 continue;
1462
Daniel Dunbara8231832009-09-08 23:36:43 +00001463 // Suppress the warning automatically if this is just a flag, and it is an
1464 // instance of an argument we already claimed.
Daniel Dunbar4f53b292009-04-04 00:52:26 +00001465 const Option &Opt = A->getOption();
Michael J. Spencer43275572012-08-20 21:41:17 +00001466 if (Opt.getKind() == Option::FlagClass) {
Daniel Dunbar4f53b292009-04-04 00:52:26 +00001467 bool DuplicateClaimed = false;
1468
Daniel Dunbarcdd96862009-11-25 11:53:23 +00001469 for (arg_iterator it = C.getArgs().filtered_begin(&Opt),
1470 ie = C.getArgs().filtered_end(); it != ie; ++it) {
1471 if ((*it)->isClaimed()) {
Daniel Dunbar4f53b292009-04-04 00:52:26 +00001472 DuplicateClaimed = true;
1473 break;
1474 }
1475 }
1476
1477 if (DuplicateClaimed)
1478 continue;
1479 }
1480
Daniel Dunbara8231832009-09-08 23:36:43 +00001481 Diag(clang::diag::warn_drv_unused_argument)
Daniel Dunbar38dd3d52009-03-20 06:14:23 +00001482 << A->getAsString(C.getArgs());
Daniel Dunbar4f53b292009-04-04 00:52:26 +00001483 }
Daniel Dunbar586dc232009-03-16 06:42:30 +00001484 }
Daniel Dunbar57b704d2009-03-13 22:12:33 +00001485}
1486
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001487static const Tool *SelectToolForJob(Compilation &C, bool SaveTemps,
1488 const ToolChain *TC, const JobAction *JA,
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001489 const ActionList *&Inputs) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001490 const Tool *ToolForJob = nullptr;
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001491
1492 // See if we should look for a compiler with an integrated assembler. We match
1493 // bottom up, so what we are actually looking for is an assembler job with a
1494 // compiler input.
Daniel Dunbareb840bd2010-05-14 02:03:00 +00001495
Rafael Espindolaaf370e62013-03-18 18:10:27 +00001496 if (TC->useIntegratedAs() &&
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001497 !SaveTemps &&
Stephen Hines651f13c2014-04-23 16:59:28 -07001498 !C.getArgs().hasArg(options::OPT_via_file_asm) &&
Hans Wennborg82a29112013-10-17 16:16:23 +00001499 !C.getArgs().hasArg(options::OPT__SLASH_FA) &&
1500 !C.getArgs().hasArg(options::OPT__SLASH_Fa) &&
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001501 isa<AssembleJobAction>(JA) &&
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001502 Inputs->size() == 1 && isa<BackendJobAction>(*Inputs->begin())) {
1503 // A BackendJob is always preceded by a CompileJob, and without
1504 // -save-temps they will always get combined together, so instead of
1505 // checking the backend tool, check if the tool for the CompileJob
1506 // has an integrated assembler.
1507 const ActionList *BackendInputs = &(*Inputs)[0]->getInputs();
1508 JobAction *CompileJA = cast<CompileJobAction>(*BackendInputs->begin());
1509 const Tool *Compiler = TC->SelectTool(*CompileJA);
Rafael Espindola29511872013-03-24 15:06:53 +00001510 if (!Compiler)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001511 return nullptr;
Rafael Espindola29511872013-03-24 15:06:53 +00001512 if (Compiler->hasIntegratedAssembler()) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001513 Inputs = &(*BackendInputs)[0]->getInputs();
1514 ToolForJob = Compiler;
1515 }
1516 }
1517
1518 // A backend job should always be combined with the preceding compile job
1519 // unless OPT_save_temps is enabled and the compiler is capable of emitting
1520 // LLVM IR as an intermediate output.
1521 if (isa<BackendJobAction>(JA)) {
1522 // Check if the compiler supports emitting LLVM IR.
1523 assert(Inputs->size() == 1);
1524 JobAction *CompileJA = cast<CompileJobAction>(*Inputs->begin());
1525 const Tool *Compiler = TC->SelectTool(*CompileJA);
1526 if (!Compiler)
1527 return nullptr;
1528 if (!Compiler->canEmitIR() || !SaveTemps) {
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001529 Inputs = &(*Inputs)[0]->getInputs();
Rafael Espindola29511872013-03-24 15:06:53 +00001530 ToolForJob = Compiler;
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001531 }
1532 }
1533
1534 // Otherwise use the tool for the current job.
1535 if (!ToolForJob)
Rafael Espindola29511872013-03-24 15:06:53 +00001536 ToolForJob = TC->SelectTool(*JA);
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001537
1538 // See if we should use an integrated preprocessor. We do so when we have
1539 // exactly one input, since this is the only use case we care about
1540 // (irrelevant since we don't support combine yet).
1541 if (Inputs->size() == 1 && isa<PreprocessJobAction>(*Inputs->begin()) &&
1542 !C.getArgs().hasArg(options::OPT_no_integrated_cpp) &&
1543 !C.getArgs().hasArg(options::OPT_traditional_cpp) &&
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001544 !SaveTemps &&
Fariborz Jahaniana5ee0892012-09-28 19:05:17 +00001545 !C.getArgs().hasArg(options::OPT_rewrite_objc) &&
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001546 ToolForJob->hasIntegratedCPP())
1547 Inputs = &(*Inputs)[0]->getInputs();
1548
Rafael Espindola29511872013-03-24 15:06:53 +00001549 return ToolForJob;
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001550}
1551
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001552void Driver::BuildJobsForAction(Compilation &C,
1553 const Action *A,
1554 const ToolChain *TC,
Daniel Dunbar49540182009-09-09 18:36:01 +00001555 const char *BoundArch,
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001556 bool AtTopLevel,
Chad Rosier1c187592013-04-30 22:01:21 +00001557 bool MultipleArchs,
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001558 const char *LinkingOutput,
1559 InputInfo &Result) const {
Daniel Dunbara8231832009-09-08 23:36:43 +00001560 llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
Daniel Dunbar60ccc762009-03-18 23:18:19 +00001561
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001562 if (const InputAction *IA = dyn_cast<InputAction>(A)) {
Daniel Dunbara8231832009-09-08 23:36:43 +00001563 // FIXME: It would be nice to not claim this here; maybe the old scheme of
1564 // just using Args was better?
Daniel Dunbar115a7922009-03-19 07:29:38 +00001565 const Arg &Input = IA->getInputArg();
1566 Input.claim();
Daniel Dunbar532c1ec2010-06-09 22:31:08 +00001567 if (Input.getOption().matches(options::OPT_INPUT)) {
Richard Smith1d489cf2012-11-01 04:30:05 +00001568 const char *Name = Input.getValue();
Daniel Dunbar115a7922009-03-19 07:29:38 +00001569 Result = InputInfo(Name, A->getType(), Name);
1570 } else
1571 Result = InputInfo(&Input, A->getType(), "");
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001572 return;
1573 }
1574
1575 if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) {
Chad Rosier4e47dee2012-04-27 16:50:38 +00001576 const ToolChain *TC;
Chad Rosier1dcfe342012-04-27 16:48:16 +00001577 const char *ArchName = BAA->getArchName();
Daniel Dunbard7502d02009-09-08 23:37:19 +00001578
Chad Rosier1dcfe342012-04-27 16:48:16 +00001579 if (ArchName)
1580 TC = &getToolChain(C.getArgs(), ArchName);
Chad Rosier4e47dee2012-04-27 16:50:38 +00001581 else
1582 TC = &C.getDefaultToolChain();
Daniel Dunbard7502d02009-09-08 23:37:19 +00001583
Daniel Dunbar49540182009-09-09 18:36:01 +00001584 BuildJobsForAction(C, *BAA->begin(), TC, BAA->getArchName(),
Chad Rosier1c187592013-04-30 22:01:21 +00001585 AtTopLevel, MultipleArchs, LinkingOutput, Result);
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001586 return;
1587 }
1588
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001589 const ActionList *Inputs = &A->getInputs();
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001590
1591 const JobAction *JA = cast<JobAction>(A);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001592 const Tool *T = SelectToolForJob(C, isSaveTempsEnabled(), TC, JA, Inputs);
Rafael Espindola29511872013-03-24 15:06:53 +00001593 if (!T)
1594 return;
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001595
1596 // Only use pipes when there is exactly one input.
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00001597 InputInfoList InputInfos;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001598 for (const Action *Input : *Inputs) {
Eric Christopher0798b692013-02-18 00:38:25 +00001599 // Treat dsymutil and verify sub-jobs as being at the top-level too, they
1600 // shouldn't get temporary output names.
Daniel Dunbarbe1cc3e2010-06-04 18:28:41 +00001601 // FIXME: Clean this up.
1602 bool SubJobAtTopLevel = false;
Eric Christopher0798b692013-02-18 00:38:25 +00001603 if (AtTopLevel && (isa<DsymutilJobAction>(A) || isa<VerifyJobAction>(A)))
Eric Christopherf8571862011-08-23 17:56:55 +00001604 SubJobAtTopLevel = true;
1605
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001606 InputInfo II;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001607 BuildJobsForAction(C, Input, TC, BoundArch, SubJobAtTopLevel, MultipleArchs,
Chad Rosier1c187592013-04-30 22:01:21 +00001608 LinkingOutput, II);
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001609 InputInfos.push_back(II);
1610 }
1611
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001612 // Always use the first input as the base input.
1613 const char *BaseInput = InputInfos[0].getBaseInput();
Daniel Dunbar441d0602009-03-17 17:53:55 +00001614
Daniel Dunbarbe1cc3e2010-06-04 18:28:41 +00001615 // ... except dsymutil actions, which use their actual input as the base
1616 // input.
1617 if (JA->getType() == types::TY_dSYM)
1618 BaseInput = InputInfos[0].getFilename();
1619
Daniel Dunbar9b18cca2010-08-02 02:38:15 +00001620 // Determine the place to write output to, if any.
Eric Christopherc706c8e2013-02-05 07:29:57 +00001621 if (JA->getType() == types::TY_Nothing)
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +00001622 Result = InputInfo(A->getType(), BaseInput);
Eric Christopherc706c8e2013-02-05 07:29:57 +00001623 else
Chad Rosier1c187592013-04-30 22:01:21 +00001624 Result = InputInfo(GetNamedOutputPath(C, *JA, BaseInput, BoundArch,
1625 AtTopLevel, MultipleArchs),
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +00001626 A->getType(), BaseInput);
Daniel Dunbar441d0602009-03-17 17:53:55 +00001627
Chad Rosier2b819102011-08-02 17:58:04 +00001628 if (CCCPrintBindings && !CCGenDiagnostics) {
Rafael Espindola29511872013-03-24 15:06:53 +00001629 llvm::errs() << "# \"" << T->getToolChain().getTripleString() << '"'
1630 << " - \"" << T->getName() << "\", inputs: [";
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +00001631 for (unsigned i = 0, e = InputInfos.size(); i != e; ++i) {
1632 llvm::errs() << InputInfos[i].getAsString();
1633 if (i + 1 != e)
1634 llvm::errs() << ", ";
1635 }
1636 llvm::errs() << "], output: " << Result.getAsString() << "\n";
1637 } else {
Rafael Espindola29511872013-03-24 15:06:53 +00001638 T->ConstructJob(C, *JA, Result, InputInfos,
1639 C.getArgsForToolChain(TC, BoundArch), LinkingOutput);
Daniel Dunbar5c3c1d72009-03-17 22:47:06 +00001640 }
Daniel Dunbarf353c8c2009-03-16 06:56:51 +00001641}
1642
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001643const char *Driver::getDefaultImageName() const {
1644 llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
1645 return Target.isOSWindows() ? "a.exe" : "a.out";
1646}
1647
Hans Wennborg82a29112013-10-17 16:16:23 +00001648/// \brief Create output filename based on ArgValue, which could either be a
1649/// full filename, filename without extension, or a directory. If ArgValue
1650/// does not provide a filename, then use BaseName, and use the extension
1651/// suitable for FileType.
Hans Wennborgc65c72d2013-08-12 21:56:42 +00001652static const char *MakeCLOutputFilename(const ArgList &Args, StringRef ArgValue,
1653 StringRef BaseName, types::ID FileType) {
1654 SmallString<128> Filename = ArgValue;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001655
Hans Wennborg6d0a8d52013-09-10 20:18:04 +00001656 if (ArgValue.empty()) {
1657 // If the argument is empty, output to BaseName in the current dir.
1658 Filename = BaseName;
1659 } else if (llvm::sys::path::is_separator(Filename.back())) {
Hans Wennborgc65c72d2013-08-12 21:56:42 +00001660 // If the argument is a directory, output to BaseName in that dir.
1661 llvm::sys::path::append(Filename, BaseName);
1662 }
1663
1664 if (!llvm::sys::path::has_extension(ArgValue)) {
1665 // If the argument didn't provide an extension, then set it.
1666 const char *Extension = types::getTypeTempSuffix(FileType, true);
Hans Wennborg6d0a8d52013-09-10 20:18:04 +00001667
1668 if (FileType == types::TY_Image &&
1669 Args.hasArg(options::OPT__SLASH_LD, options::OPT__SLASH_LDd)) {
1670 // The output file is a dll.
1671 Extension = "dll";
1672 }
1673
Hans Wennborgc65c72d2013-08-12 21:56:42 +00001674 llvm::sys::path::replace_extension(Filename, Extension);
1675 }
1676
1677 return Args.MakeArgString(Filename.c_str());
1678}
1679
Daniel Dunbara8231832009-09-08 23:36:43 +00001680const char *Driver::GetNamedOutputPath(Compilation &C,
Daniel Dunbar441d0602009-03-17 17:53:55 +00001681 const JobAction &JA,
1682 const char *BaseInput,
Chad Rosier1c187592013-04-30 22:01:21 +00001683 const char *BoundArch,
1684 bool AtTopLevel,
1685 bool MultipleArchs) const {
Daniel Dunbar8f25c792009-03-18 01:38:48 +00001686 llvm::PrettyStackTraceString CrashInfo("Computing output path");
Daniel Dunbar441d0602009-03-17 17:53:55 +00001687 // Output to a user requested destination?
Eric Christopherf8571862011-08-23 17:56:55 +00001688 if (AtTopLevel && !isa<DsymutilJobAction>(JA) &&
1689 !isa<VerifyJobAction>(JA)) {
Daniel Dunbar441d0602009-03-17 17:53:55 +00001690 if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o))
Chad Rosier9d718632013-01-24 19:14:47 +00001691 return C.addResultFile(FinalOutput->getValue(), &JA);
Daniel Dunbar441d0602009-03-17 17:53:55 +00001692 }
1693
Stephen Hines651f13c2014-04-23 16:59:28 -07001694 // For /P, preprocess to file named after BaseInput.
1695 if (C.getArgs().hasArg(options::OPT__SLASH_P)) {
1696 assert(AtTopLevel && isa<PreprocessJobAction>(JA));
1697 StringRef BaseName = llvm::sys::path::filename(BaseInput);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001698 StringRef NameArg;
Stephen Hines176edba2014-12-01 14:53:08 -08001699 if (Arg *A = C.getArgs().getLastArg(options::OPT__SLASH_Fi,
1700 options::OPT__SLASH_o))
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001701 NameArg = A->getValue();
1702 return C.addResultFile(MakeCLOutputFilename(C.getArgs(), NameArg, BaseName,
Stephen Hines651f13c2014-04-23 16:59:28 -07001703 types::TY_PP_C), &JA);
1704 }
1705
Nick Lewyckybfd21242010-09-24 00:46:53 +00001706 // Default to writing to stdout?
Douglas Gregorc544ba02013-03-27 16:47:18 +00001707 if (AtTopLevel && !CCGenDiagnostics &&
1708 (isa<PreprocessJobAction>(JA) || JA.getType() == types::TY_ModuleFile))
Nick Lewyckybfd21242010-09-24 00:46:53 +00001709 return "-";
1710
Hans Wennborg82a29112013-10-17 16:16:23 +00001711 // Is this the assembly listing for /FA?
1712 if (JA.getType() == types::TY_PP_Asm &&
1713 (C.getArgs().hasArg(options::OPT__SLASH_FA) ||
1714 C.getArgs().hasArg(options::OPT__SLASH_Fa))) {
1715 // Use /Fa and the input filename to determine the asm file name.
1716 StringRef BaseName = llvm::sys::path::filename(BaseInput);
1717 StringRef FaValue = C.getArgs().getLastArgValue(options::OPT__SLASH_Fa);
1718 return C.addResultFile(MakeCLOutputFilename(C.getArgs(), FaValue, BaseName,
1719 JA.getType()), &JA);
1720 }
1721
Daniel Dunbar441d0602009-03-17 17:53:55 +00001722 // Output to a temporary file?
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001723 if ((!AtTopLevel && !isSaveTempsEnabled() &&
Hans Wennborgab50ccd2013-08-06 22:11:28 +00001724 !C.getArgs().hasArg(options::OPT__SLASH_Fo)) ||
Chad Rosier2b819102011-08-02 17:58:04 +00001725 CCGenDiagnostics) {
Chad Rosierf43b5e82011-08-26 22:27:02 +00001726 StringRef Name = llvm::sys::path::filename(BaseInput);
1727 std::pair<StringRef, StringRef> Split = Name.split('.');
Daniel Dunbara8231832009-09-08 23:36:43 +00001728 std::string TmpName =
Hans Wennborg909930f2013-08-07 00:32:15 +00001729 GetTemporaryPath(Split.first,
1730 types::getTypeTempSuffix(JA.getType(), IsCLMode()));
Daniel Dunbar214399e2009-03-18 19:34:39 +00001731 return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()));
Daniel Dunbar441d0602009-03-17 17:53:55 +00001732 }
1733
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001734 SmallString<128> BasePath(BaseInput);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001735 StringRef BaseName;
Daniel Dunbar59f90462011-03-25 18:16:51 +00001736
1737 // Dsymutil actions should use the full path.
Eric Christopherf8571862011-08-23 17:56:55 +00001738 if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA))
Daniel Dunbar59f90462011-03-25 18:16:51 +00001739 BaseName = BasePath;
1740 else
1741 BaseName = llvm::sys::path::filename(BasePath);
Daniel Dunbar441d0602009-03-17 17:53:55 +00001742
1743 // Determine what the derived output name should be.
1744 const char *NamedOutput;
Hans Wennborgab50ccd2013-08-06 22:11:28 +00001745
1746 if (JA.getType() == types::TY_Object &&
Stephen Hines176edba2014-12-01 14:53:08 -08001747 C.getArgs().hasArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o)) {
1748 // The /Fo or /o flag decides the object filename.
1749 StringRef Val = C.getArgs().getLastArg(options::OPT__SLASH_Fo,
1750 options::OPT__SLASH_o)->getValue();
Hans Wennborgc65c72d2013-08-12 21:56:42 +00001751 NamedOutput = MakeCLOutputFilename(C.getArgs(), Val, BaseName,
1752 types::TY_Object);
1753 } else if (JA.getType() == types::TY_Image &&
Stephen Hines176edba2014-12-01 14:53:08 -08001754 C.getArgs().hasArg(options::OPT__SLASH_Fe, options::OPT__SLASH_o)) {
1755 // The /Fe or /o flag names the linked file.
1756 StringRef Val = C.getArgs().getLastArg(options::OPT__SLASH_Fe,
1757 options::OPT__SLASH_o)->getValue();
Hans Wennborgc65c72d2013-08-12 21:56:42 +00001758 NamedOutput = MakeCLOutputFilename(C.getArgs(), Val, BaseName,
1759 types::TY_Image);
Hans Wennborg6d0a8d52013-09-10 20:18:04 +00001760 } else if (JA.getType() == types::TY_Image) {
Hans Wennborgc65c72d2013-08-12 21:56:42 +00001761 if (IsCLMode()) {
1762 // clang-cl uses BaseName for the executable name.
Hans Wennborg6d0a8d52013-09-10 20:18:04 +00001763 NamedOutput = MakeCLOutputFilename(C.getArgs(), "", BaseName,
1764 types::TY_Image);
Hans Wennborgc65c72d2013-08-12 21:56:42 +00001765 } else if (MultipleArchs && BoundArch) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001766 SmallString<128> Output(getDefaultImageName());
Chad Rosier1c187592013-04-30 22:01:21 +00001767 Output += "-";
1768 Output.append(BoundArch);
1769 NamedOutput = C.getArgs().MakeArgString(Output.c_str());
1770 } else
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001771 NamedOutput = getDefaultImageName();
Daniel Dunbar441d0602009-03-17 17:53:55 +00001772 } else {
Hans Wennborga6e7e492013-09-05 17:05:56 +00001773 const char *Suffix = types::getTypeTempSuffix(JA.getType(), IsCLMode());
Daniel Dunbar441d0602009-03-17 17:53:55 +00001774 assert(Suffix && "All types used for output should have a suffix.");
1775
1776 std::string::size_type End = std::string::npos;
1777 if (!types::appendSuffixForType(JA.getType()))
1778 End = BaseName.rfind('.');
Chad Rosier1c187592013-04-30 22:01:21 +00001779 SmallString<128> Suffixed(BaseName.substr(0, End));
1780 if (MultipleArchs && BoundArch) {
1781 Suffixed += "-";
1782 Suffixed.append(BoundArch);
1783 }
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001784 // When using both -save-temps and -emit-llvm, use a ".tmp.bc" suffix for
1785 // the unoptimized bitcode so that it does not get overwritten by the ".bc"
1786 // optimized bitcode output.
1787 if (!AtTopLevel && C.getArgs().hasArg(options::OPT_emit_llvm) &&
1788 JA.getType() == types::TY_LLVM_BC)
1789 Suffixed += ".tmp";
Daniel Dunbar441d0602009-03-17 17:53:55 +00001790 Suffixed += '.';
1791 Suffixed += Suffix;
1792 NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str());
1793 }
1794
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001795 // Prepend object file path if -save-temps=obj
1796 if (!AtTopLevel && isSaveTempsObj() && C.getArgs().hasArg(options::OPT_o) &&
1797 JA.getType() != types::TY_PCH) {
1798 Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
1799 SmallString<128> TempPath(FinalOutput->getValue());
1800 llvm::sys::path::remove_filename(TempPath);
1801 StringRef OutputFileName = llvm::sys::path::filename(NamedOutput);
1802 llvm::sys::path::append(TempPath, OutputFileName);
1803 NamedOutput = C.getArgs().MakeArgString(TempPath.c_str());
1804 }
1805
Chad Rosier6467c9b2012-07-09 17:31:28 +00001806 // If we're saving temps and the temp file conflicts with the input file,
Chad Rosier61ada0a2012-04-20 20:05:08 +00001807 // then avoid overwriting input file.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001808 if (!AtTopLevel && isSaveTempsEnabled() && NamedOutput == BaseName) {
Chad Rosier61ada0a2012-04-20 20:05:08 +00001809 bool SameFile = false;
1810 SmallString<256> Result;
1811 llvm::sys::fs::current_path(Result);
1812 llvm::sys::path::append(Result, BaseName);
1813 llvm::sys::fs::equivalent(BaseInput, Result.c_str(), SameFile);
1814 // Must share the same path to conflict.
1815 if (SameFile) {
1816 StringRef Name = llvm::sys::path::filename(BaseInput);
1817 std::pair<StringRef, StringRef> Split = Name.split('.');
1818 std::string TmpName =
Hans Wennborg909930f2013-08-07 00:32:15 +00001819 GetTemporaryPath(Split.first,
1820 types::getTypeTempSuffix(JA.getType(), IsCLMode()));
Chad Rosier61ada0a2012-04-20 20:05:08 +00001821 return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()));
1822 }
Chad Rosier3e4d1092011-07-15 21:54:29 +00001823 }
1824
Daniel Dunbara8231832009-09-08 23:36:43 +00001825 // As an annoying special case, PCH generation doesn't strip the pathname.
Daniel Dunbar441d0602009-03-17 17:53:55 +00001826 if (JA.getType() == types::TY_PCH) {
Michael J. Spencer472ccff2010-12-18 00:19:12 +00001827 llvm::sys::path::remove_filename(BasePath);
1828 if (BasePath.empty())
Daniel Dunbar56c55942009-03-18 09:58:30 +00001829 BasePath = NamedOutput;
1830 else
Michael J. Spencer472ccff2010-12-18 00:19:12 +00001831 llvm::sys::path::append(BasePath, NamedOutput);
Chad Rosier9d718632013-01-24 19:14:47 +00001832 return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str()), &JA);
Daniel Dunbar441d0602009-03-17 17:53:55 +00001833 } else {
Chad Rosier9d718632013-01-24 19:14:47 +00001834 return C.addResultFile(NamedOutput, &JA);
Daniel Dunbar441d0602009-03-17 17:53:55 +00001835 }
1836}
1837
Daniel Dunbar5ed34f42009-09-09 22:33:00 +00001838std::string Driver::GetFilePath(const char *Name, const ToolChain &TC) const {
Chandler Carruth48ad6092010-03-22 01:52:07 +00001839 // Respect a limited subset of the '-Bprefix' functionality in GCC by
Logan Chien429fce92012-10-04 08:08:56 +00001840 // attempting to use this prefix when looking for file paths.
Benjamin Kramer09982ce2011-02-08 20:31:42 +00001841 for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(),
1842 ie = PrefixDirs.end(); it != ie; ++it) {
Joerg Sonnenberger8ab2bdc2011-03-21 13:51:29 +00001843 std::string Dir(*it);
1844 if (Dir.empty())
1845 continue;
1846 if (Dir[0] == '=')
1847 Dir = SysRoot + Dir.substr(1);
Rafael Espindolae8486302013-06-24 18:33:43 +00001848 SmallString<128> P(Dir);
1849 llvm::sys::path::append(P, Name);
1850 if (llvm::sys::fs::exists(Twine(P)))
Chandler Carruth48ad6092010-03-22 01:52:07 +00001851 return P.str();
1852 }
1853
Rafael Espindolae8486302013-06-24 18:33:43 +00001854 SmallString<128> P(ResourceDir);
1855 llvm::sys::path::append(P, Name);
1856 if (llvm::sys::fs::exists(Twine(P)))
Peter Collingbourne41ee7a32011-09-06 02:08:31 +00001857 return P.str();
1858
Daniel Dunbar0edefeb2009-03-18 20:26:19 +00001859 const ToolChain::path_list &List = TC.getFilePaths();
Daniel Dunbara8231832009-09-08 23:36:43 +00001860 for (ToolChain::path_list::const_iterator
Daniel Dunbar0edefeb2009-03-18 20:26:19 +00001861 it = List.begin(), ie = List.end(); it != ie; ++it) {
Joerg Sonnenberger8ab2bdc2011-03-21 13:51:29 +00001862 std::string Dir(*it);
1863 if (Dir.empty())
1864 continue;
1865 if (Dir[0] == '=')
1866 Dir = SysRoot + Dir.substr(1);
Rafael Espindolae8486302013-06-24 18:33:43 +00001867 SmallString<128> P(Dir);
1868 llvm::sys::path::append(P, Name);
1869 if (llvm::sys::fs::exists(Twine(P)))
Daniel Dunbar5ed34f42009-09-09 22:33:00 +00001870 return P.str();
Daniel Dunbar0edefeb2009-03-18 20:26:19 +00001871 }
1872
Daniel Dunbar5ed34f42009-09-09 22:33:00 +00001873 return Name;
Daniel Dunbarcb881672009-03-13 00:51:18 +00001874}
1875
Stephen Hines176edba2014-12-01 14:53:08 -08001876void
1877Driver::generatePrefixedToolNames(const char *Tool, const ToolChain &TC,
1878 SmallVectorImpl<std::string> &Names) const {
1879 // FIXME: Needs a better variable than DefaultTargetTriple
1880 Names.push_back(DefaultTargetTriple + "-" + Tool);
1881 Names.push_back(Tool);
1882}
1883
1884static bool ScanDirForExecutable(SmallString<128> &Dir,
1885 ArrayRef<std::string> Names) {
1886 for (const auto &Name : Names) {
1887 llvm::sys::path::append(Dir, Name);
1888 if (llvm::sys::fs::can_execute(Twine(Dir)))
1889 return true;
1890 llvm::sys::path::remove_filename(Dir);
1891 }
1892 return false;
1893}
1894
Simon Atanasyanfc44e882012-10-03 19:52:37 +00001895std::string Driver::GetProgramPath(const char *Name,
1896 const ToolChain &TC) const {
Stephen Hines176edba2014-12-01 14:53:08 -08001897 SmallVector<std::string, 2> TargetSpecificExecutables;
1898 generatePrefixedToolNames(Name, TC, TargetSpecificExecutables);
1899
Chandler Carruth48ad6092010-03-22 01:52:07 +00001900 // Respect a limited subset of the '-Bprefix' functionality in GCC by
Logan Chien429fce92012-10-04 08:08:56 +00001901 // attempting to use this prefix when looking for program paths.
Stephen Hines176edba2014-12-01 14:53:08 -08001902 for (const auto &PrefixDir : PrefixDirs) {
1903 if (llvm::sys::fs::is_directory(PrefixDir)) {
1904 SmallString<128> P(PrefixDir);
1905 if (ScanDirForExecutable(P, TargetSpecificExecutables))
Rafael Espindola9ff463e2013-06-19 13:24:29 +00001906 return P.str();
Simon Atanasyanbfd452e2012-10-31 14:39:28 +00001907 } else {
Stephen Hines176edba2014-12-01 14:53:08 -08001908 SmallString<128> P(PrefixDir + Name);
Rafael Espindolae8486302013-06-24 18:33:43 +00001909 if (llvm::sys::fs::can_execute(Twine(P)))
Rafael Espindola9ff463e2013-06-19 13:24:29 +00001910 return P.str();
Simon Atanasyane0157542012-10-31 12:01:53 +00001911 }
Chandler Carruth48ad6092010-03-22 01:52:07 +00001912 }
1913
Daniel Dunbar0edefeb2009-03-18 20:26:19 +00001914 const ToolChain::path_list &List = TC.getProgramPaths();
Stephen Hines176edba2014-12-01 14:53:08 -08001915 for (const auto &Path : List) {
1916 SmallString<128> P(Path);
1917 if (ScanDirForExecutable(P, TargetSpecificExecutables))
Rafael Espindola9ff463e2013-06-19 13:24:29 +00001918 return P.str();
Daniel Dunbar0edefeb2009-03-18 20:26:19 +00001919 }
1920
Daniel Dunbarc50b00d2009-03-23 16:15:50 +00001921 // If all else failed, search the path.
Stephen Hines176edba2014-12-01 14:53:08 -08001922 for (const auto &TargetSpecificExecutable : TargetSpecificExecutables)
1923 if (llvm::ErrorOr<std::string> P =
1924 llvm::sys::findProgramByName(TargetSpecificExecutable))
1925 return *P;
Daniel Dunbar632f50e2009-03-18 21:34:08 +00001926
Daniel Dunbar5ed34f42009-09-09 22:33:00 +00001927 return Name;
Daniel Dunbarcb881672009-03-13 00:51:18 +00001928}
1929
Chad Rosier6467c9b2012-07-09 17:31:28 +00001930std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix)
Chad Rosierfe87fc72011-08-26 21:28:44 +00001931 const {
Rafael Espindola4ea53ae2013-06-25 04:26:55 +00001932 SmallString<128> Path;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001933 std::error_code EC = llvm::sys::fs::createTemporaryFile(Prefix, Suffix, Path);
Rafael Espindola4ea53ae2013-06-25 04:26:55 +00001934 if (EC) {
1935 Diag(clang::diag::err_unable_to_make_temp) << EC.message();
Daniel Dunbar214399e2009-03-18 19:34:39 +00001936 return "";
1937 }
1938
Rafael Espindola4ea53ae2013-06-25 04:26:55 +00001939 return Path.str();
Daniel Dunbar214399e2009-03-18 19:34:39 +00001940}
1941
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00001942/// \brief Compute target triple from args.
1943///
1944/// This routine provides the logic to compute a target triple from various
1945/// args passed to the driver and the default triple string.
Chandler Carruth1d16f0f2012-01-31 02:21:20 +00001946static llvm::Triple computeTargetTriple(StringRef DefaultTargetTriple,
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00001947 const ArgList &Args,
1948 StringRef DarwinArchName) {
Joerg Sonnenberger8a988c32012-02-22 19:15:16 +00001949 // FIXME: Already done in Compilation *Driver::BuildCompilation
Chandler Carruth1d16f0f2012-01-31 02:21:20 +00001950 if (const Arg *A = Args.getLastArg(options::OPT_target))
Richard Smith1d489cf2012-11-01 04:30:05 +00001951 DefaultTargetTriple = A->getValue();
Chandler Carruth1d16f0f2012-01-31 02:21:20 +00001952
1953 llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
Chris Lattner3a47c4e2010-03-04 21:07:38 +00001954
Stephen Hines651f13c2014-04-23 16:59:28 -07001955 // Handle Apple-specific options available here.
1956 if (Target.isOSBinFormatMachO()) {
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00001957 // If an explict Darwin arch name is given, that trumps all.
1958 if (!DarwinArchName.empty()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001959 tools::darwin::setTripleTypeForMachOArchName(Target, DarwinArchName);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00001960 return Target;
1961 }
1962
1963 // Handle the Darwin '-arch' flag.
1964 if (Arg *A = Args.getLastArg(options::OPT_arch)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001965 StringRef ArchName = A->getValue();
1966 tools::darwin::setTripleTypeForMachOArchName(Target, ArchName);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00001967 }
Daniel Dunbarcb8ab232009-05-22 02:53:45 +00001968 }
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00001969
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001970 // Handle pseudo-target flags '-mlittle-endian'/'-EL' and
1971 // '-mbig-endian'/'-EB'.
1972 if (Arg *A = Args.getLastArg(options::OPT_mlittle_endian,
1973 options::OPT_mbig_endian)) {
1974 if (A->getOption().matches(options::OPT_mlittle_endian)) {
Simon Atanasyan286f3e62013-03-28 11:36:22 +00001975 if (Target.getArch() == llvm::Triple::mips)
1976 Target.setArch(llvm::Triple::mipsel);
1977 else if (Target.getArch() == llvm::Triple::mips64)
1978 Target.setArch(llvm::Triple::mips64el);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001979 else if (Target.getArch() == llvm::Triple::aarch64_be)
1980 Target.setArch(llvm::Triple::aarch64);
Simon Atanasyan286f3e62013-03-28 11:36:22 +00001981 } else {
1982 if (Target.getArch() == llvm::Triple::mipsel)
1983 Target.setArch(llvm::Triple::mips);
1984 else if (Target.getArch() == llvm::Triple::mips64el)
1985 Target.setArch(llvm::Triple::mips64);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001986 else if (Target.getArch() == llvm::Triple::aarch64)
1987 Target.setArch(llvm::Triple::aarch64_be);
Simon Atanasyan286f3e62013-03-28 11:36:22 +00001988 }
1989 }
1990
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00001991 // Skip further flag support on OSes which don't support '-m32' or '-m64'.
Stephen Hines176edba2014-12-01 14:53:08 -08001992 if (Target.getArchName() == "tce" || Target.getOS() == llvm::Triple::Minix)
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00001993 return Target;
1994
Stephen Hines176edba2014-12-01 14:53:08 -08001995 // Handle pseudo-target flags '-m64', '-mx32', '-m32' and '-m16'.
1996 if (Arg *A = Args.getLastArg(options::OPT_m64, options::OPT_mx32,
1997 options::OPT_m32, options::OPT_m16)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001998 llvm::Triple::ArchType AT = llvm::Triple::UnknownArch;
1999
Stephen Hines176edba2014-12-01 14:53:08 -08002000 if (A->getOption().matches(options::OPT_m64)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002001 AT = Target.get64BitArchVariant().getArch();
Stephen Hines176edba2014-12-01 14:53:08 -08002002 if (Target.getEnvironment() == llvm::Triple::GNUX32)
2003 Target.setEnvironment(llvm::Triple::GNU);
2004 } else if (A->getOption().matches(options::OPT_mx32) &&
2005 Target.get64BitArchVariant().getArch() == llvm::Triple::x86_64) {
2006 AT = llvm::Triple::x86_64;
2007 Target.setEnvironment(llvm::Triple::GNUX32);
2008 } else if (A->getOption().matches(options::OPT_m32)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002009 AT = Target.get32BitArchVariant().getArch();
Stephen Hines176edba2014-12-01 14:53:08 -08002010 if (Target.getEnvironment() == llvm::Triple::GNUX32)
2011 Target.setEnvironment(llvm::Triple::GNU);
2012 } else if (A->getOption().matches(options::OPT_m16) &&
Stephen Hines651f13c2014-04-23 16:59:28 -07002013 Target.get32BitArchVariant().getArch() == llvm::Triple::x86) {
2014 AT = llvm::Triple::x86;
2015 Target.setEnvironment(llvm::Triple::CODE16);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002016 }
Stephen Hines651f13c2014-04-23 16:59:28 -07002017
Stephen Hines176edba2014-12-01 14:53:08 -08002018 if (AT != llvm::Triple::UnknownArch && AT != Target.getArch())
Stephen Hines651f13c2014-04-23 16:59:28 -07002019 Target.setArch(AT);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002020 }
2021
2022 return Target;
2023}
2024
2025const ToolChain &Driver::getToolChain(const ArgList &Args,
2026 StringRef DarwinArchName) const {
Chandler Carruth1d16f0f2012-01-31 02:21:20 +00002027 llvm::Triple Target = computeTargetTriple(DefaultTargetTriple, Args,
2028 DarwinArchName);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002029
Chandler Carruth1d16f0f2012-01-31 02:21:20 +00002030 ToolChain *&TC = ToolChains[Target.str()];
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002031 if (!TC) {
2032 switch (Target.getOS()) {
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07002033 case llvm::Triple::CloudABI:
2034 TC = new toolchains::CloudABI(*this, Target, Args);
2035 break;
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002036 case llvm::Triple::Darwin:
2037 case llvm::Triple::MacOSX:
2038 case llvm::Triple::IOS:
Stephen Hines651f13c2014-04-23 16:59:28 -07002039 TC = new toolchains::DarwinClang(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002040 break;
2041 case llvm::Triple::DragonFly:
Rafael Espindola0e659592012-02-19 01:38:32 +00002042 TC = new toolchains::DragonFly(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002043 break;
2044 case llvm::Triple::OpenBSD:
Rafael Espindola0e659592012-02-19 01:38:32 +00002045 TC = new toolchains::OpenBSD(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002046 break;
Eli Friedman42f74f22012-08-08 23:57:20 +00002047 case llvm::Triple::Bitrig:
2048 TC = new toolchains::Bitrig(*this, Target, Args);
2049 break;
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002050 case llvm::Triple::NetBSD:
Rafael Espindola0e659592012-02-19 01:38:32 +00002051 TC = new toolchains::NetBSD(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002052 break;
2053 case llvm::Triple::FreeBSD:
Rafael Espindola0e659592012-02-19 01:38:32 +00002054 TC = new toolchains::FreeBSD(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002055 break;
2056 case llvm::Triple::Minix:
Rafael Espindola0e659592012-02-19 01:38:32 +00002057 TC = new toolchains::Minix(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002058 break;
2059 case llvm::Triple::Linux:
Chandler Carruth1621e752012-01-25 21:03:58 +00002060 if (Target.getArch() == llvm::Triple::hexagon)
Matthew Curtisb3489a02012-12-06 12:43:18 +00002061 TC = new toolchains::Hexagon_TC(*this, Target, Args);
Chandler Carruth1621e752012-01-25 21:03:58 +00002062 else
Rafael Espindola0e659592012-02-19 01:38:32 +00002063 TC = new toolchains::Linux(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002064 break;
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07002065 case llvm::Triple::NaCl:
2066 TC = new toolchains::NaCl_TC(*this, Target, Args);
2067 break;
David Chisnall31c46902012-02-15 13:39:01 +00002068 case llvm::Triple::Solaris:
Rafael Espindola0e659592012-02-19 01:38:32 +00002069 TC = new toolchains::Solaris(*this, Target, Args);
David Chisnall31c46902012-02-15 13:39:01 +00002070 break;
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002071 case llvm::Triple::Win32:
Stephen Hines651f13c2014-04-23 16:59:28 -07002072 switch (Target.getEnvironment()) {
2073 default:
2074 if (Target.isOSBinFormatELF())
2075 TC = new toolchains::Generic_ELF(*this, Target, Args);
2076 else if (Target.isOSBinFormatMachO())
2077 TC = new toolchains::MachO(*this, Target, Args);
2078 else
2079 TC = new toolchains::Generic_GCC(*this, Target, Args);
2080 break;
2081 case llvm::Triple::GNU:
2082 // FIXME: We need a MinGW toolchain. Use the default Generic_GCC
2083 // toolchain for now as the default case would below otherwise.
2084 if (Target.isOSBinFormatELF())
2085 TC = new toolchains::Generic_ELF(*this, Target, Args);
2086 else
2087 TC = new toolchains::Generic_GCC(*this, Target, Args);
2088 break;
Stephen Hines176edba2014-12-01 14:53:08 -08002089 case llvm::Triple::Itanium:
2090 TC = new toolchains::CrossWindowsToolChain(*this, Target, Args);
2091 break;
Stephen Hines651f13c2014-04-23 16:59:28 -07002092 case llvm::Triple::MSVC:
2093 case llvm::Triple::UnknownEnvironment:
Stephen Hines176edba2014-12-01 14:53:08 -08002094 TC = new toolchains::MSVCToolChain(*this, Target, Args);
Stephen Hines651f13c2014-04-23 16:59:28 -07002095 break;
2096 }
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002097 break;
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002098 default:
2099 // TCE is an OSless target
2100 if (Target.getArchName() == "tce") {
Rafael Espindolaaf370e62013-03-18 18:10:27 +00002101 TC = new toolchains::TCEToolChain(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002102 break;
2103 }
Jyotsna Verma073f5e82013-03-29 19:09:20 +00002104 // If Hexagon is configured as an OSless target
2105 if (Target.getArch() == llvm::Triple::hexagon) {
2106 TC = new toolchains::Hexagon_TC(*this, Target, Args);
2107 break;
2108 }
Robert Lytton4e490e22013-10-11 10:29:40 +00002109 if (Target.getArch() == llvm::Triple::xcore) {
2110 TC = new toolchains::XCore(*this, Target, Args);
2111 break;
2112 }
Stephen Hines651f13c2014-04-23 16:59:28 -07002113 if (Target.isOSBinFormatELF()) {
2114 TC = new toolchains::Generic_ELF(*this, Target, Args);
2115 break;
2116 }
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002117 if (Target.isOSBinFormatMachO()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002118 TC = new toolchains::MachO(*this, Target, Args);
2119 break;
2120 }
Rafael Espindola0e659592012-02-19 01:38:32 +00002121 TC = new toolchains::Generic_GCC(*this, Target, Args);
Chandler Carruth18d7f3a2012-01-25 11:01:57 +00002122 break;
2123 }
2124 }
2125 return *TC;
Daniel Dunbardd98e2c2009-03-10 23:41:59 +00002126}
Daniel Dunbaraf80e1f2009-03-24 18:57:02 +00002127
Rafael Espindolad5320182013-03-18 15:33:26 +00002128bool Driver::ShouldUseClangCompiler(const JobAction &JA) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00002129 // Check if user requested no clang, or clang doesn't understand this type (we
2130 // only handle single inputs for now).
2131 if (JA.size() != 1 ||
2132 !types::isAcceptedByClang((*JA.begin())->getType()))
2133 return false;
2134
2135 // Otherwise make sure this is an action clang understands.
2136 if (!isa<PreprocessJobAction>(JA) && !isa<PrecompileJobAction>(JA) &&
Stephen Hines0e2c34f2015-03-23 12:09:02 -07002137 !isa<CompileJobAction>(JA) && !isa<BackendJobAction>(JA))
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00002138 return false;
2139
2140 return true;
2141}
2142
Daniel Dunbara8231832009-09-08 23:36:43 +00002143/// GetReleaseVersion - Parse (([0-9]+)(.([0-9]+)(.([0-9]+)?))?)? and return the
2144/// grouped values as integers. Numbers which are not provided are set to 0.
Daniel Dunbard73fe9b2009-03-26 15:58:36 +00002145///
Daniel Dunbara8231832009-09-08 23:36:43 +00002146/// \return True if the entire string was parsed (9.2), or all groups were
2147/// parsed (10.3.5extrastuff).
2148bool Driver::GetReleaseVersion(const char *Str, unsigned &Major,
Daniel Dunbard73fe9b2009-03-26 15:58:36 +00002149 unsigned &Minor, unsigned &Micro,
2150 bool &HadExtra) {
2151 HadExtra = false;
2152
2153 Major = Minor = Micro = 0;
Daniel Dunbara8231832009-09-08 23:36:43 +00002154 if (*Str == '\0')
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07002155 return false;
Daniel Dunbard73fe9b2009-03-26 15:58:36 +00002156
2157 char *End;
2158 Major = (unsigned) strtol(Str, &End, 10);
2159 if (*Str != '\0' && *End == '\0')
2160 return true;
2161 if (*End != '.')
2162 return false;
Daniel Dunbara8231832009-09-08 23:36:43 +00002163
Daniel Dunbard73fe9b2009-03-26 15:58:36 +00002164 Str = End+1;
2165 Minor = (unsigned) strtol(Str, &End, 10);
2166 if (*Str != '\0' && *End == '\0')
2167 return true;
2168 if (*End != '.')
2169 return false;
2170
2171 Str = End+1;
2172 Micro = (unsigned) strtol(Str, &End, 10);
2173 if (*Str != '\0' && *End == '\0')
2174 return true;
2175 if (Str == End)
2176 return false;
2177 HadExtra = true;
2178 return true;
2179}
Hans Wennborg69813302013-07-27 00:23:45 +00002180
2181std::pair<unsigned, unsigned> Driver::getIncludeExcludeOptionFlagMasks() const {
2182 unsigned IncludedFlagsBitmask = 0;
Rafael Espindola4ab39de2013-09-25 15:54:41 +00002183 unsigned ExcludedFlagsBitmask = options::NoDriverOption;
Hans Wennborg69813302013-07-27 00:23:45 +00002184
2185 if (Mode == CLMode) {
Hans Wennborg78d0fbf2013-07-31 20:51:53 +00002186 // Include CL and Core options.
2187 IncludedFlagsBitmask |= options::CLOption;
2188 IncludedFlagsBitmask |= options::CoreOption;
Hans Wennborg69813302013-07-27 00:23:45 +00002189 } else {
2190 ExcludedFlagsBitmask |= options::CLOption;
2191 }
2192
2193 return std::make_pair(IncludedFlagsBitmask, ExcludedFlagsBitmask);
2194}
Stephen Hines651f13c2014-04-23 16:59:28 -07002195
2196bool clang::driver::isOptimizationLevelFast(const llvm::opt::ArgList &Args) {
2197 return Args.hasFlag(options::OPT_Ofast, options::OPT_O_Group, false);
2198}