blob: f16acbb42e94da5fc8e8ce94b36a3d8d69399c17 [file] [log] [blame]
Nick Lewyckye47c2452010-09-23 23:48:20 +00001//===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===//
Daniel Dunbar544ecd12009-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 Dunbar544ecd12009-03-02 19:59:07 +000010#include "clang/Driver/Driver.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000011#include "InputInfo.h"
12#include "ToolChains.h"
13#include "clang/Basic/Version.h"
Benjamin Kramerd45b2052015-10-07 15:48:01 +000014#include "clang/Basic/VirtualFileSystem.h"
Alp Toker1d257e12014-06-04 03:28:55 +000015#include "clang/Config/config.h"
Daniel Dunbar1688f1a2009-03-12 07:58:46 +000016#include "clang/Driver/Action.h"
Daniel Dunbarb2cd66b2009-03-04 20:49:20 +000017#include "clang/Driver/Compilation.h"
Daniel Dunbarc0b3e952009-03-12 08:55:43 +000018#include "clang/Driver/DriverDiagnostic.h"
Daniel Dunbare75d8342009-03-16 06:56:51 +000019#include "clang/Driver/Job.h"
Daniel Dunbarb2cd66b2009-03-04 20:49:20 +000020#include "clang/Driver/Options.h"
Peter Collingbournea4ccff32015-02-20 20:30:56 +000021#include "clang/Driver/SanitizerArgs.h"
Daniel Dunbare75d8342009-03-16 06:56:51 +000022#include "clang/Driver/Tool.h"
23#include "clang/Driver/ToolChain.h"
Chris Lattnerce6c42f2011-03-23 04:04:01 +000024#include "llvm/ADT/ArrayRef.h"
Hans Wennborg6ddc6902013-07-27 00:23:45 +000025#include "llvm/ADT/STLExtras.h"
Justin Lebar62907612016-07-06 21:21:39 +000026#include "llvm/ADT/SmallSet.h"
Hans Wennborg23d26a32014-06-18 17:21:50 +000027#include "llvm/ADT/StringExtras.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000028#include "llvm/ADT/StringSet.h"
Hans Wennborg70850d82013-07-18 20:29:38 +000029#include "llvm/ADT/StringSwitch.h"
Reid Kleckner898229a2013-06-14 17:17:23 +000030#include "llvm/Option/Arg.h"
31#include "llvm/Option/ArgList.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000032#include "llvm/Option/OptSpecifier.h"
Reid Kleckner898229a2013-06-14 17:17:23 +000033#include "llvm/Option/OptTable.h"
34#include "llvm/Option/Option.h"
David Blaikie79000202011-09-23 05:57:42 +000035#include "llvm/Support/ErrorHandling.h"
Michael J. Spencerf28df4c2010-12-17 21:22:22 +000036#include "llvm/Support/FileSystem.h"
Michael J. Spencer8aaf4992010-11-29 18:12:39 +000037#include "llvm/Support/Path.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000038#include "llvm/Support/PrettyStackTrace.h"
Hans Wennborg23d26a32014-06-18 17:21:50 +000039#include "llvm/Support/Process.h"
Michael J. Spencer8aaf4992010-11-29 18:12:39 +000040#include "llvm/Support/Program.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000041#include "llvm/Support/raw_ostream.h"
Dylan Noblesmith4f4e7452012-02-02 00:40:14 +000042#include <map>
Ahmed Charlesdfca6f92014-03-09 11:36:40 +000043#include <memory>
Benjamin Kramercfeacf52016-05-27 14:27:13 +000044#include <utility>
Bruno Cardoso Lopes02681c42016-11-17 21:41:22 +000045#if LLVM_ON_UNIX
46#include <unistd.h> // getpid
47#endif
Dylan Noblesmith86780e92012-02-01 14:25:28 +000048
Daniel Dunbarb2cd66b2009-03-04 20:49:20 +000049using namespace clang::driver;
Chris Lattnerada1c912009-03-26 05:56:24 +000050using namespace clang;
Reid Kleckner898229a2013-06-14 17:17:23 +000051using namespace llvm::opt;
Daniel Dunbarb2cd66b2009-03-04 20:49:20 +000052
Reid Kleckner68eb60b2015-02-02 22:41:48 +000053Driver::Driver(StringRef ClangExecutable, StringRef DefaultTargetTriple,
Benjamin Kramerd45b2052015-10-07 15:48:01 +000054 DiagnosticsEngine &Diags,
55 IntrusiveRefCntPtr<vfs::FileSystem> VFS)
Benjamin Kramercfeacf52016-05-27 14:27:13 +000056 : Opts(createDriverOptTable()), Diags(Diags), VFS(std::move(VFS)),
57 Mode(GCCMode), SaveTemps(SaveTempsNone), BitcodeEmbed(EmbedNone),
58 LTOMode(LTOK_None), ClangExecutable(ClangExecutable),
Reid Kleckner68eb60b2015-02-02 22:41:48 +000059 SysRoot(DEFAULT_SYSROOT), UseStdLib(true),
Reid Kleckner68eb60b2015-02-02 22:41:48 +000060 DriverTitle("clang LLVM compiler"), CCPrintOptionsFilename(nullptr),
61 CCPrintHeadersFilename(nullptr), CCLogDiagnosticsFilename(nullptr),
62 CCCPrintBindings(false), CCPrintHeaders(false), CCLogDiagnostics(false),
Vedant Kumarf2030b92016-07-18 19:56:33 +000063 CCGenDiagnostics(false), DefaultTargetTriple(DefaultTargetTriple),
64 CCCGenericGCCName(""), CheckInputsExist(true), CCCUsePCH(true),
65 SuppressMissingInputWarning(false) {
Daniel Dunbar3f3e2cd2010-01-20 02:35:16 +000066
Benjamin Kramerd45b2052015-10-07 15:48:01 +000067 // Provide a sane fallback if no VFS is specified.
68 if (!this->VFS)
69 this->VFS = vfs::getRealFileSystem();
70
Sumanth Gundapaneni3a1592942015-03-03 20:43:12 +000071 Name = llvm::sys::path::filename(ClangExecutable);
Douglas Katzmana67e50c2015-06-26 15:47:46 +000072 Dir = llvm::sys::path::parent_path(ClangExecutable);
Benjamin Kramerf420dda2015-10-13 15:19:32 +000073 InstalledDir = Dir; // Provide a sensible default installed dir.
Bob Wilsona20a1da2013-03-23 05:17:59 +000074
75 // Compute the path to the resource directory.
76 StringRef ClangResourceDir(CLANG_RESOURCE_DIR);
77 SmallString<128> P(Dir);
Chandler Carruthfd3cc702014-12-29 12:09:08 +000078 if (ClangResourceDir != "") {
Bob Wilsona20a1da2013-03-23 05:17:59 +000079 llvm::sys::path::append(P, ClangResourceDir);
Chandler Carruthfd3cc702014-12-29 12:09:08 +000080 } else {
81 StringRef ClangLibdirSuffix(CLANG_LIBDIR_SUFFIX);
82 llvm::sys::path::append(P, "..", Twine("lib") + ClangLibdirSuffix, "clang",
83 CLANG_VERSION_STRING);
84 }
Bob Wilsona20a1da2013-03-23 05:17:59 +000085 ResourceDir = P.str();
Daniel Dunbar544ecd12009-03-02 19:59:07 +000086}
87
Zachary Turneraff19c32016-08-12 17:47:52 +000088void Driver::ParseDriverMode(StringRef ProgramName,
89 ArrayRef<const char *> Args) {
90 auto Default = ToolChain::getTargetAndModeFromProgramName(ProgramName);
91 StringRef DefaultMode(Default.second);
92 setDriverModeFromOption(DefaultMode);
Hans Wennborg70850d82013-07-18 20:29:38 +000093
Douglas Katzman6bbffc42015-06-25 18:51:37 +000094 for (const char *ArgPtr : Args) {
Reid Kleckneraf5fd6a2014-08-22 19:29:30 +000095 // Ingore nullptrs, they are response file's EOL markers
Douglas Katzman6bbffc42015-06-25 18:51:37 +000096 if (ArgPtr == nullptr)
Reid Kleckneraf5fd6a2014-08-22 19:29:30 +000097 continue;
Douglas Katzman6bbffc42015-06-25 18:51:37 +000098 const StringRef Arg = ArgPtr;
Zachary Turneraff19c32016-08-12 17:47:52 +000099 setDriverModeFromOption(Arg);
Hans Wennborg70850d82013-07-18 20:29:38 +0000100 }
101}
102
Zachary Turneraff19c32016-08-12 17:47:52 +0000103void Driver::setDriverModeFromOption(StringRef Opt) {
104 const std::string OptName =
105 getOpts().getOption(options::OPT_driver_mode).getPrefixedName();
106 if (!Opt.startswith(OptName))
107 return;
108 StringRef Value = Opt.drop_front(OptName.size());
109
110 const unsigned M = llvm::StringSwitch<unsigned>(Value)
111 .Case("gcc", GCCMode)
112 .Case("g++", GXXMode)
113 .Case("cpp", CPPMode)
114 .Case("cl", CLMode)
115 .Default(~0U);
116
117 if (M != ~0U)
118 Mode = static_cast<DriverMode>(M);
119 else
120 Diag(diag::err_drv_unsupported_option_argument) << OptName << Value;
121}
122
David Blaikie69a1d8c2015-06-22 22:07:27 +0000123InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings) {
Daniel Dunbar2608c542009-03-18 01:38:48 +0000124 llvm::PrettyStackTraceString CrashInfo("Command line argument parsing");
Hans Wennborg6ddc6902013-07-27 00:23:45 +0000125
126 unsigned IncludedFlagsBitmask;
127 unsigned ExcludedFlagsBitmask;
Benjamin Kramer867ea1d2014-03-02 13:01:17 +0000128 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) =
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000129 getIncludeExcludeOptionFlagMasks();
Hans Wennborg6ddc6902013-07-27 00:23:45 +0000130
Daniel Dunbar52ed5fe2009-11-19 06:35:06 +0000131 unsigned MissingArgIndex, MissingArgCount;
David Blaikie69a1d8c2015-06-22 22:07:27 +0000132 InputArgList Args =
David Blaikie6d492ad2015-06-21 06:32:36 +0000133 getOpts().ParseArgs(ArgStrings, MissingArgIndex, MissingArgCount,
134 IncludedFlagsBitmask, ExcludedFlagsBitmask);
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +0000135
Daniel Dunbar52ed5fe2009-11-19 06:35:06 +0000136 // Check for missing argument error.
137 if (MissingArgCount)
138 Diag(clang::diag::err_drv_missing_argument)
David Blaikie69a1d8c2015-06-22 22:07:27 +0000139 << Args.getArgString(MissingArgIndex) << MissingArgCount;
Daniel Dunbar65229332009-03-13 11:38:42 +0000140
Daniel Dunbar52ed5fe2009-11-19 06:35:06 +0000141 // Check for unsupported options.
David Blaikie69a1d8c2015-06-22 22:07:27 +0000142 for (const Arg *A : Args) {
Michael J. Spencer66e2b202012-10-19 22:37:06 +0000143 if (A->getOption().hasFlag(options::Unsupported)) {
David Blaikie69a1d8c2015-06-22 22:07:27 +0000144 Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(Args);
Daniel Dunbard8500f32009-03-22 23:26:43 +0000145 continue;
146 }
Chad Rosierce975d92012-02-22 17:55:22 +0000147
148 // Warn about -mcpu= without an argument.
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000149 if (A->getOption().matches(options::OPT_mcpu_EQ) && A->containsValue("")) {
David Blaikie69a1d8c2015-06-22 22:07:27 +0000150 Diag(clang::diag::warn_drv_empty_joined_argument) << A->getAsString(Args);
Chad Rosierce975d92012-02-22 17:55:22 +0000151 }
Daniel Dunbard02cb1d2009-03-05 06:38:47 +0000152 }
153
David Blaikie69a1d8c2015-06-22 22:07:27 +0000154 for (const Arg *A : Args.filtered(options::OPT_UNKNOWN))
Ehsan Akhgarid8518332016-01-25 21:14:52 +0000155 Diags.Report(IsCLMode() ? diag::warn_drv_unknown_argument_clang_cl :
156 diag::err_drv_unknown_argument)
157 << A->getAsString(Args);
Rafael Espindola8a2d4962013-09-23 23:55:25 +0000158
Daniel Dunbard02cb1d2009-03-05 06:38:47 +0000159 return Args;
160}
161
Chad Rosier7742b5d2011-07-27 23:36:45 +0000162// Determine which compilation mode we are in. We look for options which
163// affect the phase, starting with the earliest phases, and record which
164// option we used to determine the final phase.
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000165phases::ID Driver::getFinalPhase(const DerivedArgList &DAL,
166 Arg **FinalPhaseArg) const {
Craig Topper92fc2df2014-05-17 16:56:41 +0000167 Arg *PhaseArg = nullptr;
Chad Rosier7742b5d2011-07-27 23:36:45 +0000168 phases::ID FinalPhase;
Eric Christopherf901e852011-08-17 22:59:59 +0000169
Hans Wennborge50cec32014-06-13 20:59:54 +0000170 // -{E,EP,P,M,MM} only run the preprocessor.
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000171 if (CCCIsCPP() || (PhaseArg = DAL.getLastArg(options::OPT_E)) ||
Hans Wennborge50cec32014-06-13 20:59:54 +0000172 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) ||
Hans Wennborge0053472013-12-20 18:40:46 +0000173 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM)) ||
174 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_P))) {
Chad Rosier7742b5d2011-07-27 23:36:45 +0000175 FinalPhase = phases::Preprocess;
Eric Christopherf901e852011-08-17 22:59:59 +0000176
Richard Smithdd4ad3d2016-08-30 19:06:26 +0000177 // --precompile only runs up to precompilation.
178 } else if ((PhaseArg = DAL.getLastArg(options::OPT__precompile))) {
179 FinalPhase = phases::Precompile;
180
Bob Wilson23a55f12014-12-21 07:00:00 +0000181 // -{fsyntax-only,-analyze,emit-ast} only run up to the compiler.
Chad Rosier7742b5d2011-07-27 23:36:45 +0000182 } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000183 (PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) ||
Ben Langmuir2cb4a782014-02-05 22:21:15 +0000184 (PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) ||
Chad Rosier7742b5d2011-07-27 23:36:45 +0000185 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||
Fariborz Jahanian73223bb2012-04-02 15:59:19 +0000186 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) ||
Ted Kremenekf7639e12012-03-06 20:06:33 +0000187 (PhaseArg = DAL.getLastArg(options::OPT__migrate)) ||
Chad Rosier7742b5d2011-07-27 23:36:45 +0000188 (PhaseArg = DAL.getLastArg(options::OPT__analyze,
Chad Rosier1aeb15a2012-03-06 23:14:35 +0000189 options::OPT__analyze_auto)) ||
Bob Wilson23a55f12014-12-21 07:00:00 +0000190 (PhaseArg = DAL.getLastArg(options::OPT_emit_ast))) {
Chad Rosier7742b5d2011-07-27 23:36:45 +0000191 FinalPhase = phases::Compile;
192
Bob Wilson23a55f12014-12-21 07:00:00 +0000193 // -S only runs up to the backend.
194 } else if ((PhaseArg = DAL.getLastArg(options::OPT_S))) {
195 FinalPhase = phases::Backend;
196
Artem Belevich4242f412015-07-28 21:01:21 +0000197 // -c compilation only runs up to the assembler.
198 } else if ((PhaseArg = DAL.getLastArg(options::OPT_c))) {
Chad Rosier7742b5d2011-07-27 23:36:45 +0000199 FinalPhase = phases::Assemble;
200
201 // Otherwise do everything.
202 } else
203 FinalPhase = phases::Link;
204
205 if (FinalPhaseArg)
206 *FinalPhaseArg = PhaseArg;
207
208 return FinalPhase;
209}
210
David Blaikie0aaa7622017-01-13 17:34:15 +0000211static Arg *MakeInputArg(DerivedArgList &Args, OptTable &Opts,
Hans Wennborged1d0722013-08-13 21:32:29 +0000212 StringRef Value) {
David Blaikie0aaa7622017-01-13 17:34:15 +0000213 Arg *A = new Arg(Opts.getOption(options::OPT_INPUT), Value,
Hans Wennborged1d0722013-08-13 21:32:29 +0000214 Args.getBaseArgs().MakeIndex(Value), Value.data());
Hans Wennborg55362852014-05-02 22:55:30 +0000215 Args.AddSynthesizedArg(A);
Hans Wennborged1d0722013-08-13 21:32:29 +0000216 A->claim();
217 return A;
218}
219
Daniel Dunbar775d4062010-06-11 22:00:26 +0000220DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
221 DerivedArgList *DAL = new DerivedArgList(Args);
222
Daniel Dunbar2cc3f172010-09-17 00:45:02 +0000223 bool HasNostdlib = Args.hasArg(options::OPT_nostdlib);
Nirav Daveb0bb6142015-11-24 16:07:21 +0000224 bool HasNodefaultlib = Args.hasArg(options::OPT_nodefaultlibs);
Saleem Abdulrasool688b6bc2014-12-29 19:01:36 +0000225 for (Arg *A : Args) {
Daniel Dunbarfb3d7472010-06-14 21:23:12 +0000226 // Unfortunately, we have to parse some forwarding options (-Xassembler,
227 // -Xlinker, -Xpreprocessor) because we either integrate their functionality
228 // (assembler and preprocessor), or bypass a previous driver ('collect2').
Daniel Dunbar5a9d1832010-06-14 21:37:09 +0000229
230 // Rewrite linker options, to replace --no-demangle with a custom internal
231 // option.
232 if ((A->getOption().matches(options::OPT_Wl_COMMA) ||
233 A->getOption().matches(options::OPT_Xlinker)) &&
234 A->containsValue("--no-demangle")) {
Daniel Dunbarfb3d7472010-06-14 21:23:12 +0000235 // Add the rewritten no-demangle argument.
236 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle));
237
238 // Add the remaining values as Xlinker arguments.
Benjamin Kramer72e64312015-09-24 14:48:49 +0000239 for (StringRef Val : A->getValues())
Douglas Katzmana34b7bf2015-06-30 19:32:57 +0000240 if (Val != "--no-demangle")
241 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker), Val);
Daniel Dunbarfb3d7472010-06-14 21:23:12 +0000242
243 continue;
244 }
245
Daniel Dunbar5a9d1832010-06-14 21:37:09 +0000246 // Rewrite preprocessor options, to replace -Wp,-MD,FOO which is used by
247 // some build systems. We don't try to be complete here because we don't
248 // care to encourage this usage model.
249 if (A->getOption().matches(options::OPT_Wp_COMMA) &&
Richard Smithbd55daf2012-11-01 04:30:05 +0000250 (A->getValue(0) == StringRef("-MD") ||
251 A->getValue(0) == StringRef("-MMD"))) {
Daniel Dunbar3648ba72010-06-15 20:30:18 +0000252 // Rewrite to -MD/-MMD along with -MF.
Richard Smithbd55daf2012-11-01 04:30:05 +0000253 if (A->getValue(0) == StringRef("-MD"))
Daniel Dunbar3648ba72010-06-15 20:30:18 +0000254 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD));
255 else
256 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD));
Michael J. Spencer70d85be2012-11-07 23:37:14 +0000257 if (A->getNumValues() == 2)
258 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF),
259 A->getValue(1));
Daniel Dunbar5a9d1832010-06-14 21:37:09 +0000260 continue;
261 }
262
Shantonu Senafeb03b2010-09-17 18:39:08 +0000263 // Rewrite reserved library names.
264 if (A->getOption().matches(options::OPT_l)) {
Richard Smithbd55daf2012-11-01 04:30:05 +0000265 StringRef Value = A->getValue();
Daniel Dunbar2cc3f172010-09-17 00:45:02 +0000266
Shantonu Senafeb03b2010-09-17 18:39:08 +0000267 // Rewrite unless -nostdlib is present.
Nirav Daveb0bb6142015-11-24 16:07:21 +0000268 if (!HasNostdlib && !HasNodefaultlib && Value == "stdc++") {
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000269 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_reserved_lib_stdcxx));
Daniel Dunbar2cc3f172010-09-17 00:45:02 +0000270 continue;
271 }
Shantonu Senafeb03b2010-09-17 18:39:08 +0000272
273 // Rewrite unconditionally.
274 if (Value == "cc_kext") {
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000275 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_reserved_lib_cckext));
Shantonu Senafeb03b2010-09-17 18:39:08 +0000276 continue;
277 }
Daniel Dunbar2cc3f172010-09-17 00:45:02 +0000278 }
279
Hans Wennborged1d0722013-08-13 21:32:29 +0000280 // Pick up inputs via the -- option.
281 if (A->getOption().matches(options::OPT__DASH_DASH)) {
282 A->claim();
Benjamin Kramer72e64312015-09-24 14:48:49 +0000283 for (StringRef Val : A->getValues())
David Blaikie0aaa7622017-01-13 17:34:15 +0000284 DAL->append(MakeInputArg(*DAL, *Opts, Val));
Hans Wennborged1d0722013-08-13 21:32:29 +0000285 continue;
286 }
287
Saleem Abdulrasool688b6bc2014-12-29 19:01:36 +0000288 DAL->append(A);
Daniel Dunbarfb3d7472010-06-14 21:23:12 +0000289 }
Daniel Dunbar775d4062010-06-11 22:00:26 +0000290
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000291 // Enforce -static if -miamcu is present.
Andrey Turetskiy5fea71c2016-06-29 10:57:17 +0000292 if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false))
293 DAL->AddFlagArg(0, Opts->getOption(options::OPT_static));
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000294
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000295// Add a default value of -mlinker-version=, if one was given and the user
296// didn't specify one.
Daniel Dunbar628fcf42010-08-12 00:05:12 +0000297#if defined(HOST_LINK_VERSION)
Tim Northover018578c2015-06-12 19:21:35 +0000298 if (!Args.hasArg(options::OPT_mlinker_version_EQ) &&
299 strlen(HOST_LINK_VERSION) > 0) {
Daniel Dunbar628fcf42010-08-12 00:05:12 +0000300 DAL->AddJoinedArg(0, Opts->getOption(options::OPT_mlinker_version_EQ),
301 HOST_LINK_VERSION);
Daniel Dunbarb613ffc2010-08-17 22:32:45 +0000302 DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim();
Daniel Dunbar628fcf42010-08-12 00:05:12 +0000303 }
304#endif
305
Daniel Dunbar775d4062010-06-11 22:00:26 +0000306 return DAL;
307}
308
Artem Belevich959e0542015-07-10 19:47:55 +0000309/// \brief Compute target triple from args.
310///
311/// This routine provides the logic to compute a target triple from various
312/// args passed to the driver and the default triple string.
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000313static llvm::Triple computeTargetTriple(const Driver &D,
314 StringRef DefaultTargetTriple,
Artem Belevich959e0542015-07-10 19:47:55 +0000315 const ArgList &Args,
316 StringRef DarwinArchName = "") {
317 // FIXME: Already done in Compilation *Driver::BuildCompilation
318 if (const Arg *A = Args.getLastArg(options::OPT_target))
319 DefaultTargetTriple = A->getValue();
320
321 llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
322
323 // Handle Apple-specific options available here.
324 if (Target.isOSBinFormatMachO()) {
325 // If an explict Darwin arch name is given, that trumps all.
326 if (!DarwinArchName.empty()) {
327 tools::darwin::setTripleTypeForMachOArchName(Target, DarwinArchName);
328 return Target;
329 }
330
331 // Handle the Darwin '-arch' flag.
332 if (Arg *A = Args.getLastArg(options::OPT_arch)) {
333 StringRef ArchName = A->getValue();
334 tools::darwin::setTripleTypeForMachOArchName(Target, ArchName);
335 }
336 }
337
338 // Handle pseudo-target flags '-mlittle-endian'/'-EL' and
339 // '-mbig-endian'/'-EB'.
340 if (Arg *A = Args.getLastArg(options::OPT_mlittle_endian,
341 options::OPT_mbig_endian)) {
342 if (A->getOption().matches(options::OPT_mlittle_endian)) {
343 llvm::Triple LE = Target.getLittleEndianArchVariant();
344 if (LE.getArch() != llvm::Triple::UnknownArch)
345 Target = std::move(LE);
346 } else {
347 llvm::Triple BE = Target.getBigEndianArchVariant();
348 if (BE.getArch() != llvm::Triple::UnknownArch)
349 Target = std::move(BE);
350 }
351 }
352
353 // Skip further flag support on OSes which don't support '-m32' or '-m64'.
Douglas Katzman15a63ed2015-08-12 18:36:12 +0000354 if (Target.getArch() == llvm::Triple::tce ||
355 Target.getOS() == llvm::Triple::Minix)
Artem Belevich959e0542015-07-10 19:47:55 +0000356 return Target;
357
358 // Handle pseudo-target flags '-m64', '-mx32', '-m32' and '-m16'.
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000359 Arg *A = Args.getLastArg(options::OPT_m64, options::OPT_mx32,
360 options::OPT_m32, options::OPT_m16);
361 if (A) {
Artem Belevich959e0542015-07-10 19:47:55 +0000362 llvm::Triple::ArchType AT = llvm::Triple::UnknownArch;
363
364 if (A->getOption().matches(options::OPT_m64)) {
365 AT = Target.get64BitArchVariant().getArch();
366 if (Target.getEnvironment() == llvm::Triple::GNUX32)
367 Target.setEnvironment(llvm::Triple::GNU);
368 } else if (A->getOption().matches(options::OPT_mx32) &&
369 Target.get64BitArchVariant().getArch() == llvm::Triple::x86_64) {
370 AT = llvm::Triple::x86_64;
371 Target.setEnvironment(llvm::Triple::GNUX32);
372 } else if (A->getOption().matches(options::OPT_m32)) {
373 AT = Target.get32BitArchVariant().getArch();
374 if (Target.getEnvironment() == llvm::Triple::GNUX32)
375 Target.setEnvironment(llvm::Triple::GNU);
376 } else if (A->getOption().matches(options::OPT_m16) &&
377 Target.get32BitArchVariant().getArch() == llvm::Triple::x86) {
378 AT = llvm::Triple::x86;
379 Target.setEnvironment(llvm::Triple::CODE16);
380 }
381
382 if (AT != llvm::Triple::UnknownArch && AT != Target.getArch())
383 Target.setArch(AT);
384 }
385
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000386 // Handle -miamcu flag.
Andrey Turetskiy5fea71c2016-06-29 10:57:17 +0000387 if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false)) {
388 if (Target.get32BitArchVariant().getArch() != llvm::Triple::x86)
389 D.Diag(diag::err_drv_unsupported_opt_for_target) << "-miamcu"
390 << Target.str();
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000391
Andrey Turetskiy5fea71c2016-06-29 10:57:17 +0000392 if (A && !A->getOption().matches(options::OPT_m32))
393 D.Diag(diag::err_drv_argument_not_allowed_with)
394 << "-miamcu" << A->getBaseArg().getAsString(Args);
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000395
Andrey Turetskiy5fea71c2016-06-29 10:57:17 +0000396 Target.setArch(llvm::Triple::x86);
397 Target.setArchName("i586");
398 Target.setEnvironment(llvm::Triple::UnknownEnvironment);
399 Target.setEnvironmentName("");
400 Target.setOS(llvm::Triple::ELFIAMCU);
401 Target.setVendor(llvm::Triple::UnknownVendor);
402 Target.setVendorName("intel");
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000403 }
404
Artem Belevich959e0542015-07-10 19:47:55 +0000405 return Target;
406}
407
Teresa Johnson945bc502015-10-15 20:35:53 +0000408// \brief Parse the LTO options and record the type of LTO compilation
409// based on which -f(no-)?lto(=.*)? option occurs last.
410void Driver::setLTOMode(const llvm::opt::ArgList &Args) {
411 LTOMode = LTOK_None;
412 if (!Args.hasFlag(options::OPT_flto, options::OPT_flto_EQ,
413 options::OPT_fno_lto, false))
414 return;
415
416 StringRef LTOName("full");
417
418 const Arg *A = Args.getLastArg(options::OPT_flto_EQ);
Teresa Johnson6ef80dc2015-11-02 18:03:12 +0000419 if (A)
420 LTOName = A->getValue();
Teresa Johnson945bc502015-10-15 20:35:53 +0000421
422 LTOMode = llvm::StringSwitch<LTOKind>(LTOName)
423 .Case("full", LTOK_Full)
424 .Case("thin", LTOK_Thin)
425 .Default(LTOK_Unknown);
426
427 if (LTOMode == LTOK_Unknown) {
428 assert(A);
429 Diag(diag::err_drv_unsupported_option_argument) << A->getOption().getName()
430 << A->getValue();
431 }
432}
433
Samuel Antao39f9da22016-10-27 16:38:05 +0000434/// Compute the desired OpenMP runtime from the flags provided.
435Driver::OpenMPRuntimeKind Driver::getOpenMPRuntime(const ArgList &Args) const {
436 StringRef RuntimeName(CLANG_DEFAULT_OPENMP_RUNTIME);
437
438 const Arg *A = Args.getLastArg(options::OPT_fopenmp_EQ);
439 if (A)
440 RuntimeName = A->getValue();
441
442 auto RT = llvm::StringSwitch<OpenMPRuntimeKind>(RuntimeName)
443 .Case("libomp", OMPRT_OMP)
444 .Case("libgomp", OMPRT_GOMP)
445 .Case("libiomp5", OMPRT_IOMP5)
446 .Default(OMPRT_Unknown);
447
448 if (RT == OMPRT_Unknown) {
449 if (A)
450 Diag(diag::err_drv_unsupported_option_argument)
451 << A->getOption().getName() << A->getValue();
452 else
453 // FIXME: We could use a nicer diagnostic here.
454 Diag(diag::err_drv_unsupported_opt) << "-fopenmp";
455 }
456
457 return RT;
458}
459
Samuel Antaoc1ffba52016-06-13 18:10:57 +0000460void Driver::CreateOffloadingDeviceToolChains(Compilation &C,
461 InputList &Inputs) {
462
463 //
464 // CUDA
465 //
466 // We need to generate a CUDA toolchain if any of the inputs has a CUDA type.
467 if (llvm::any_of(Inputs, [](std::pair<types::ID, const llvm::opt::Arg *> &I) {
468 return types::isCuda(I.first);
469 })) {
Justin Lebar66c4fd72016-11-18 00:41:22 +0000470 const ToolChain *HostTC = C.getSingleOffloadToolChain<Action::OFK_Host>();
471 const llvm::Triple &HostTriple = HostTC->getTriple();
472 llvm::Triple CudaTriple(HostTriple.isArch64Bit() ? "nvptx64-nvidia-cuda"
473 : "nvptx-nvidia-cuda");
474 // Use the CUDA and host triples as the key into the ToolChains map, because
475 // the device toolchain we create depends on both.
David Blaikie6ad71012017-01-13 18:53:43 +0000476 auto &CudaTC = ToolChains[CudaTriple.str() + "/" + HostTriple.str()];
Justin Lebar66c4fd72016-11-18 00:41:22 +0000477 if (!CudaTC) {
David Blaikie6ad71012017-01-13 18:53:43 +0000478 CudaTC = llvm::make_unique<toolchains::CudaToolChain>(
479 *this, CudaTriple, *HostTC, C.getInputArgs());
Justin Lebar66c4fd72016-11-18 00:41:22 +0000480 }
David Blaikie6ad71012017-01-13 18:53:43 +0000481 C.addOffloadDeviceToolChain(CudaTC.get(), Action::OFK_Cuda);
Samuel Antaoc1ffba52016-06-13 18:10:57 +0000482 }
483
484 //
Samuel Antao39f9da22016-10-27 16:38:05 +0000485 // OpenMP
486 //
487 // We need to generate an OpenMP toolchain if the user specified targets with
488 // the -fopenmp-targets option.
489 if (Arg *OpenMPTargets =
490 C.getInputArgs().getLastArg(options::OPT_fopenmp_targets_EQ)) {
491 if (OpenMPTargets->getNumValues()) {
492 // We expect that -fopenmp-targets is always used in conjunction with the
493 // option -fopenmp specifying a valid runtime with offloading support,
494 // i.e. libomp or libiomp.
495 bool HasValidOpenMPRuntime = C.getInputArgs().hasFlag(
496 options::OPT_fopenmp, options::OPT_fopenmp_EQ,
497 options::OPT_fno_openmp, false);
498 if (HasValidOpenMPRuntime) {
499 OpenMPRuntimeKind OpenMPKind = getOpenMPRuntime(C.getInputArgs());
500 HasValidOpenMPRuntime =
501 OpenMPKind == OMPRT_OMP || OpenMPKind == OMPRT_IOMP5;
502 }
503
504 if (HasValidOpenMPRuntime) {
505 llvm::StringMap<const char *> FoundNormalizedTriples;
506 for (const char *Val : OpenMPTargets->getValues()) {
507 llvm::Triple TT(Val);
508 std::string NormalizedName = TT.normalize();
509
510 // Make sure we don't have a duplicate triple.
511 auto Duplicate = FoundNormalizedTriples.find(NormalizedName);
512 if (Duplicate != FoundNormalizedTriples.end()) {
513 Diag(clang::diag::warn_drv_omp_offload_target_duplicate)
514 << Val << Duplicate->second;
515 continue;
516 }
517
518 // Store the current triple so that we can check for duplicates in the
519 // following iterations.
520 FoundNormalizedTriples[NormalizedName] = Val;
521
522 // If the specified target is invalid, emit a diagnostic.
523 if (TT.getArch() == llvm::Triple::UnknownArch)
524 Diag(clang::diag::err_drv_invalid_omp_target) << Val;
525 else {
526 const ToolChain &TC = getToolChain(C.getInputArgs(), TT);
527 C.addOffloadDeviceToolChain(&TC, Action::OFK_OpenMP);
528 }
529 }
530 } else
531 Diag(clang::diag::err_drv_expecting_fopenmp_with_fopenmp_targets);
532 } else
533 Diag(clang::diag::warn_drv_empty_joined_argument)
534 << OpenMPTargets->getAsString(C.getInputArgs());
535 }
536
537 //
Samuel Antaoc1ffba52016-06-13 18:10:57 +0000538 // TODO: Add support for other offloading programming models here.
539 //
540
541 return;
542}
543
Chris Lattner54b16772011-07-23 17:14:25 +0000544Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
Daniel Dunbar2608c542009-03-18 01:38:48 +0000545 llvm::PrettyStackTraceString CrashInfo("Compilation construction");
546
Eric Christopherf901e852011-08-17 22:59:59 +0000547 // FIXME: Handle environment options which affect driver behavior, somewhere
Bill Wendlingadbeb9f2012-03-12 21:24:57 +0000548 // (client?). GCC_EXEC_PREFIX, LPATH, CC_PRINT_OPTIONS.
Chad Rosier82301162011-09-14 00:47:55 +0000549
David Majnemer85c25b42016-07-24 17:44:03 +0000550 if (Optional<std::string> CompilerPathValue =
551 llvm::sys::Process::GetEnv("COMPILER_PATH")) {
552 StringRef CompilerPath = *CompilerPathValue;
Chad Rosier82301162011-09-14 00:47:55 +0000553 while (!CompilerPath.empty()) {
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000554 std::pair<StringRef, StringRef> Split =
555 CompilerPath.split(llvm::sys::EnvPathSeparator);
Chad Rosier82301162011-09-14 00:47:55 +0000556 PrefixDirs.push_back(Split.first);
557 CompilerPath = Split.second;
558 }
559 }
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +0000560
Hans Wennborg70850d82013-07-18 20:29:38 +0000561 // We look for the driver mode option early, because the mode can affect
562 // how other options are parsed.
Zachary Turneraff19c32016-08-12 17:47:52 +0000563 ParseDriverMode(ClangExecutable, ArgList.slice(1));
Hans Wennborg70850d82013-07-18 20:29:38 +0000564
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +0000565 // FIXME: What are we going to do with -V and -b?
566
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +0000567 // FIXME: This stuff needs to go into the Compilation, not the driver.
Douglas Katzmanb7e8ef02015-06-25 19:37:41 +0000568 bool CCCPrintPhases;
Daniel Dunbard02cb1d2009-03-05 06:38:47 +0000569
David Blaikie69a1d8c2015-06-22 22:07:27 +0000570 InputArgList Args = ParseArgStrings(ArgList.slice(1));
Daniel Dunbaracd69572009-12-04 21:55:23 +0000571
Filipe Cabecinhas136f35e2015-07-18 06:35:24 +0000572 // Silence driver warnings if requested
573 Diags.setIgnoreAllWarnings(Args.hasArg(options::OPT_w));
574
Rafael Espindola59ae7992009-12-07 18:28:29 +0000575 // -no-canonical-prefixes is used very early in main.
David Blaikie69a1d8c2015-06-22 22:07:27 +0000576 Args.ClaimAllArgs(options::OPT_no_canonical_prefixes);
Rafael Espindola59ae7992009-12-07 18:28:29 +0000577
Daniel Dunbar926f81f2010-08-02 02:38:03 +0000578 // Ignore -pipe.
David Blaikie69a1d8c2015-06-22 22:07:27 +0000579 Args.ClaimAllArgs(options::OPT_pipe);
Daniel Dunbar926f81f2010-08-02 02:38:03 +0000580
Daniel Dunbaracd69572009-12-04 21:55:23 +0000581 // Extract -ccc args.
Daniel Dunbaree66cf22009-03-10 20:52:46 +0000582 //
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +0000583 // FIXME: We need to figure out where this behavior should live. Most of it
584 // should be outside in the client; the parts that aren't should have proper
585 // options, either by introducing new ones or by overloading gcc ones like -V
586 // or -b.
Douglas Katzmanb7e8ef02015-06-25 19:37:41 +0000587 CCCPrintPhases = Args.hasArg(options::OPT_ccc_print_phases);
David Blaikie69a1d8c2015-06-22 22:07:27 +0000588 CCCPrintBindings = Args.hasArg(options::OPT_ccc_print_bindings);
589 if (const Arg *A = Args.getLastArg(options::OPT_ccc_gcc_name))
Richard Smithbd55daf2012-11-01 04:30:05 +0000590 CCCGenericGCCName = A->getValue();
David Blaikie69a1d8c2015-06-22 22:07:27 +0000591 CCCUsePCH =
592 Args.hasFlag(options::OPT_ccc_pch_is_pch, options::OPT_ccc_pch_is_pth);
Joerg Sonnenberger17d75512012-02-22 19:15:16 +0000593 // FIXME: DefaultTargetTriple is used by the target-prefixed calls to as/ld
594 // and getToolChain is const.
Hans Wennborg2e274592013-08-13 23:38:57 +0000595 if (IsCLMode()) {
Hans Wennborg73609a02014-03-28 01:19:04 +0000596 // clang-cl targets MSVC-style Win32.
Hans Wennborg2e274592013-08-13 23:38:57 +0000597 llvm::Triple T(DefaultTargetTriple);
Hans Wennborg9d9ce7a2014-03-28 20:49:28 +0000598 T.setOS(llvm::Triple::Win32);
Hans Wennborg0f0e8d62015-09-18 17:11:50 +0000599 T.setVendor(llvm::Triple::PC);
Hans Wennborg9d9ce7a2014-03-28 20:49:28 +0000600 T.setEnvironment(llvm::Triple::MSVC);
Hans Wennborg2e274592013-08-13 23:38:57 +0000601 DefaultTargetTriple = T.str();
602 }
David Blaikie69a1d8c2015-06-22 22:07:27 +0000603 if (const Arg *A = Args.getLastArg(options::OPT_target))
Richard Smithbd55daf2012-11-01 04:30:05 +0000604 DefaultTargetTriple = A->getValue();
David Blaikie69a1d8c2015-06-22 22:07:27 +0000605 if (const Arg *A = Args.getLastArg(options::OPT_ccc_install_dir))
Richard Smithbd55daf2012-11-01 04:30:05 +0000606 Dir = InstalledDir = A->getValue();
David Blaikie69a1d8c2015-06-22 22:07:27 +0000607 for (const Arg *A : Args.filtered(options::OPT_B)) {
Benjamin Kramer1a648d12011-02-08 20:31:42 +0000608 A->claim();
Richard Smithbd55daf2012-11-01 04:30:05 +0000609 PrefixDirs.push_back(A->getValue(0));
Benjamin Kramer1a648d12011-02-08 20:31:42 +0000610 }
David Blaikie69a1d8c2015-06-22 22:07:27 +0000611 if (const Arg *A = Args.getLastArg(options::OPT__sysroot_EQ))
Richard Smithbd55daf2012-11-01 04:30:05 +0000612 SysRoot = A->getValue();
David Blaikie69a1d8c2015-06-22 22:07:27 +0000613 if (const Arg *A = Args.getLastArg(options::OPT__dyld_prefix_EQ))
Peter Collingbourne9d9e1fc2013-05-27 21:40:20 +0000614 DyldPrefix = A->getValue();
David Blaikie69a1d8c2015-06-22 22:07:27 +0000615 if (Args.hasArg(options::OPT_nostdlib))
Joerg Sonnenbergerbc923f32011-03-21 13:59:26 +0000616 UseStdLib = false;
Daniel Dunbaree66cf22009-03-10 20:52:46 +0000617
David Blaikie69a1d8c2015-06-22 22:07:27 +0000618 if (const Arg *A = Args.getLastArg(options::OPT_resource_dir))
Bob Wilsona20a1da2013-03-23 05:17:59 +0000619 ResourceDir = A->getValue();
Jim Grosbach061dabf2013-03-12 20:17:58 +0000620
David Blaikie69a1d8c2015-06-22 22:07:27 +0000621 if (const Arg *A = Args.getLastArg(options::OPT_save_temps_EQ)) {
Reid Kleckner68eb60b2015-02-02 22:41:48 +0000622 SaveTemps = llvm::StringSwitch<SaveTempsMode>(A->getValue())
623 .Case("cwd", SaveTempsCwd)
624 .Case("obj", SaveTempsObj)
625 .Default(SaveTempsCwd);
626 }
627
Steven Wu1257cd82016-05-18 17:04:52 +0000628 setLTOMode(Args);
629
Steven Wu844ab6a2016-11-16 06:06:44 +0000630 // Process -fembed-bitcode= flags.
631 if (Arg *A = Args.getLastArg(options::OPT_fembed_bitcode_EQ)) {
632 StringRef Name = A->getValue();
633 unsigned Model = llvm::StringSwitch<unsigned>(Name)
634 .Case("off", EmbedNone)
635 .Case("all", EmbedBitcode)
636 .Case("bitcode", EmbedBitcode)
637 .Case("marker", EmbedMarker)
638 .Default(~0U);
639 if (Model == ~0U) {
640 Diags.Report(diag::err_drv_invalid_value) << A->getAsString(Args)
641 << Name;
642 } else
643 BitcodeEmbed = static_cast<BitcodeEmbedMode>(Model);
Steven Wu574b0f22016-03-01 01:07:58 +0000644 }
645
David Blaikie69a1d8c2015-06-22 22:07:27 +0000646 std::unique_ptr<llvm::opt::InputArgList> UArgs =
647 llvm::make_unique<InputArgList>(std::move(Args));
648
Daniel Dunbar775d4062010-06-11 22:00:26 +0000649 // Perform the default argument translations.
David Blaikie69a1d8c2015-06-22 22:07:27 +0000650 DerivedArgList *TranslatedArgs = TranslateInputArgs(*UArgs);
Daniel Dunbar775d4062010-06-11 22:00:26 +0000651
Chandler Carruthcb916192012-01-25 08:49:21 +0000652 // Owned by the host.
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +0000653 const ToolChain &TC = getToolChain(
654 *UArgs, computeTargetTriple(*this, DefaultTargetTriple, *UArgs));
Chandler Carruthcb916192012-01-25 08:49:21 +0000655
Daniel Dunbar3ce436d2009-03-16 06:42:30 +0000656 // The compilation takes ownership of Args.
David Blaikie69a1d8c2015-06-22 22:07:27 +0000657 Compilation *C = new Compilation(*this, TC, UArgs.release(), TranslatedArgs);
Daniel Dunbarf0eddb82009-03-18 02:55:38 +0000658
Daniel Dunbarf0eddb82009-03-18 02:55:38 +0000659 if (!HandleImmediateArgs(*C))
660 return C;
661
Chad Rosierecdede82011-08-12 22:08:57 +0000662 // Construct the list of inputs.
663 InputList Inputs;
Hans Wennborged1d0722013-08-13 21:32:29 +0000664 BuildInputs(C->getDefaultToolChain(), *TranslatedArgs, Inputs);
Chad Rosierecdede82011-08-12 22:08:57 +0000665
Samuel Antaoc1ffba52016-06-13 18:10:57 +0000666 // Populate the tool chains for the offloading devices, if any.
667 CreateOffloadingDeviceToolChains(*C, Inputs);
Justin Lebar0e450a52016-03-30 23:30:25 +0000668
Chandler Carruth7f1417f2012-01-24 10:43:44 +0000669 // Construct the list of abstract actions to perform for this compilation. On
Tim Northover157d9112014-01-16 08:48:16 +0000670 // MachO targets this uses the driver-driver and universal actions.
671 if (TC.getTriple().isOSBinFormatMachO())
Artem Belevich5e2a3ec2015-11-17 22:28:40 +0000672 BuildUniversalActions(*C, C->getDefaultToolChain(), Inputs);
Daniel Dunbarf0eddb82009-03-18 02:55:38 +0000673 else
Justin Lebar0f3474c2016-02-11 02:00:50 +0000674 BuildActions(*C, C->getArgs(), Inputs, C->getActions());
Daniel Dunbarf0eddb82009-03-18 02:55:38 +0000675
Douglas Katzmanb7e8ef02015-06-25 19:37:41 +0000676 if (CCCPrintPhases) {
Daniel Dunbareb843be2009-03-18 03:13:20 +0000677 PrintActions(*C);
Daniel Dunbarf0eddb82009-03-18 02:55:38 +0000678 return C;
679 }
680
681 BuildJobs(*C);
Daniel Dunbaradc91e62009-03-15 01:38:15 +0000682
683 return C;
Daniel Dunbaree66cf22009-03-10 20:52:46 +0000684}
685
Justin Bognered9cbe02015-07-09 06:58:31 +0000686static void printArgList(raw_ostream &OS, const llvm::opt::ArgList &Args) {
687 llvm::opt::ArgStringList ASL;
688 for (const auto *A : Args)
689 A->render(Args, ASL);
690
691 for (auto I = ASL.begin(), E = ASL.end(); I != E; ++I) {
692 if (I != ASL.begin())
693 OS << ' ';
694 Command::printArg(OS, *I, true);
695 }
696 OS << '\n';
697}
698
Bruno Cardoso Lopes02681c42016-11-17 21:41:22 +0000699bool Driver::getCrashDiagnosticFile(StringRef ReproCrashFilename,
700 SmallString<128> &CrashDiagDir) {
701 using namespace llvm::sys;
702 assert(llvm::Triple(llvm::sys::getProcessTriple()).isOSDarwin() &&
703 "Only knows about .crash files on Darwin");
704
705 // The .crash file can be found on at ~/Library/Logs/DiagnosticReports/
706 // (or /Library/Logs/DiagnosticReports for root) and has the filename pattern
707 // clang-<VERSION>_<YYYY-MM-DD-HHMMSS>_<hostname>.crash.
708 path::home_directory(CrashDiagDir);
709 if (CrashDiagDir.startswith("/var/root"))
710 CrashDiagDir = "/";
711 path::append(CrashDiagDir, "Library/Logs/DiagnosticReports");
712 int PID =
713#if LLVM_ON_UNIX
714 getpid();
715#else
716 0;
717#endif
718 std::error_code EC;
719 fs::file_status FileStatus;
720 TimePoint<> LastAccessTime;
721 SmallString<128> CrashFilePath;
722 // Lookup the .crash files and get the one generated by a subprocess spawned
723 // by this driver invocation.
724 for (fs::directory_iterator File(CrashDiagDir, EC), FileEnd;
725 File != FileEnd && !EC; File.increment(EC)) {
726 StringRef FileName = path::filename(File->path());
727 if (!FileName.startswith(Name))
728 continue;
729 if (fs::status(File->path(), FileStatus))
730 continue;
731 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> CrashFile =
732 llvm::MemoryBuffer::getFile(File->path());
733 if (!CrashFile)
734 continue;
735 // The first line should start with "Process:", otherwise this isn't a real
736 // .crash file.
737 StringRef Data = CrashFile.get()->getBuffer();
738 if (!Data.startswith("Process:"))
739 continue;
740 // Parse parent process pid line, e.g: "Parent Process: clang-4.0 [79141]"
741 size_t ParentProcPos = Data.find("Parent Process:");
742 if (ParentProcPos == StringRef::npos)
743 continue;
744 size_t LineEnd = Data.find_first_of("\n", ParentProcPos);
745 if (LineEnd == StringRef::npos)
746 continue;
747 StringRef ParentProcess = Data.slice(ParentProcPos+15, LineEnd).trim();
748 int OpenBracket = -1, CloseBracket = -1;
749 for (size_t i = 0, e = ParentProcess.size(); i < e; ++i) {
750 if (ParentProcess[i] == '[')
751 OpenBracket = i;
752 if (ParentProcess[i] == ']')
753 CloseBracket = i;
754 }
755 // Extract the parent process PID from the .crash file and check whether
756 // it matches this driver invocation pid.
757 int CrashPID;
758 if (OpenBracket < 0 || CloseBracket < 0 ||
759 ParentProcess.slice(OpenBracket + 1, CloseBracket)
760 .getAsInteger(10, CrashPID) || CrashPID != PID) {
761 continue;
762 }
763
764 // Found a .crash file matching the driver pid. To avoid getting an older
765 // and misleading crash file, continue looking for the most recent.
766 // FIXME: the driver can dispatch multiple cc1 invocations, leading to
767 // multiple crashes poiting to the same parent process. Since the driver
768 // does not collect pid information for the dispatched invocation there's
769 // currently no way to distinguish among them.
770 const auto FileAccessTime = FileStatus.getLastModificationTime();
771 if (FileAccessTime > LastAccessTime) {
772 CrashFilePath.assign(File->path());
773 LastAccessTime = FileAccessTime;
774 }
775 }
776
777 // If found, copy it over to the location of other reproducer files.
778 if (!CrashFilePath.empty()) {
779 EC = fs::copy_file(CrashFilePath, ReproCrashFilename);
780 if (EC)
781 return false;
782 return true;
783 }
784
785 return false;
786}
787
Eric Christopherf901e852011-08-17 22:59:59 +0000788// When clang crashes, produce diagnostic information including the fully
789// preprocessed source file(s). Request that the developer attach the
Chad Rosierbe10f982011-08-02 17:58:04 +0000790// diagnostic information to a bug report.
791void Driver::generateCompilationDiagnostics(Compilation &C,
Justin Bognere1a33d12014-10-20 21:02:05 +0000792 const Command &FailingCommand) {
Chad Rosier877c0a22012-02-22 00:30:39 +0000793 if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics))
Chad Rosier62135492012-07-09 17:31:28 +0000794 return;
Chad Rosierbee5a1d2012-03-07 00:30:40 +0000795
Chad Rosierdbf46a12013-02-01 18:30:26 +0000796 // Don't try to generate diagnostics for link or dsymutil jobs.
Justin Bognere1a33d12014-10-20 21:02:05 +0000797 if (FailingCommand.getCreator().isLinkJob() ||
798 FailingCommand.getCreator().isDsymutilJob())
Chad Rosier877c0a22012-02-22 00:30:39 +0000799 return;
800
Chad Rosier8179f112012-06-19 17:51:34 +0000801 // Print the version of the compiler.
802 PrintVersion(C, llvm::errs());
803
Chad Rosierbe10f982011-08-02 17:58:04 +0000804 Diag(clang::diag::note_drv_command_failed_diag_msg)
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000805 << "PLEASE submit a bug report to " BUG_REPORT_URL " and include the "
806 "crash backtrace, preprocessed source, and associated run script.";
Chad Rosierbe10f982011-08-02 17:58:04 +0000807
808 // Suppress driver output and emit preprocessor output to temp file.
Hans Wennborg70850d82013-07-18 20:29:38 +0000809 Mode = CPPMode;
Chad Rosierbe10f982011-08-02 17:58:04 +0000810 CCGenDiagnostics = true;
811
Chad Rosiercdb008d2011-11-02 21:29:05 +0000812 // Save the original job command(s).
Justin Bogner25645152014-10-21 17:24:44 +0000813 Command Cmd = FailingCommand;
Chad Rosiercdb008d2011-11-02 21:29:05 +0000814
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000815 // Keep track of whether we produce any errors while trying to produce
816 // preprocessed sources.
817 DiagnosticErrorTrap Trap(Diags);
818
819 // Suppress tool output.
Chad Rosierbe10f982011-08-02 17:58:04 +0000820 C.initCompilationForDiagnostics();
Chad Rosierecdede82011-08-12 22:08:57 +0000821
822 // Construct the list of inputs.
823 InputList Inputs;
824 BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs);
Chad Rosierbe10f982011-08-02 17:58:04 +0000825
Chad Rosier4f81fc22011-08-12 23:30:05 +0000826 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
Chad Rosierd57133d2011-08-18 00:22:25 +0000827 bool IgnoreInput = false;
828
829 // Ignore input from stdin or any inputs that cannot be preprocessed.
Paul Robinsonf44157d2014-04-28 22:24:44 +0000830 // Check type first as not all linker inputs have a value.
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000831 if (types::getPreprocessedType(it->first) == types::TY_INVALID) {
Paul Robinsonf44157d2014-04-28 22:24:44 +0000832 IgnoreInput = true;
833 } else if (!strcmp(it->second->getValue(), "-")) {
Chad Rosierd57133d2011-08-18 00:22:25 +0000834 Diag(clang::diag::note_drv_command_failed_diag_msg)
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000835 << "Error generating preprocessed source(s) - "
836 "ignoring input from stdin.";
Chad Rosierd57133d2011-08-18 00:22:25 +0000837 IgnoreInput = true;
Chad Rosierd57133d2011-08-18 00:22:25 +0000838 }
839
840 if (IgnoreInput) {
Chad Rosier4f81fc22011-08-12 23:30:05 +0000841 it = Inputs.erase(it);
842 ie = Inputs.end();
Chad Rosier6fdf38b2011-08-17 23:08:45 +0000843 } else {
Chad Rosier4f81fc22011-08-12 23:30:05 +0000844 ++it;
Chad Rosier6fdf38b2011-08-17 23:08:45 +0000845 }
Chad Rosier4f81fc22011-08-12 23:30:05 +0000846 }
Chad Rosierd57133d2011-08-18 00:22:25 +0000847
Chad Rosierc5103c32013-01-29 23:57:10 +0000848 if (Inputs.empty()) {
849 Diag(clang::diag::note_drv_command_failed_diag_msg)
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000850 << "Error generating preprocessed source(s) - "
851 "no preprocessable inputs.";
Chad Rosierc5103c32013-01-29 23:57:10 +0000852 return;
853 }
854
Chad Rosiere75ef402011-09-06 23:52:36 +0000855 // Don't attempt to generate preprocessed files if multiple -arch options are
Chad Rosier636d2832012-02-13 18:16:28 +0000856 // used, unless they're all duplicates.
857 llvm::StringSet<> ArchNames;
Saleem Abdulrasool688b6bc2014-12-29 19:01:36 +0000858 for (const Arg *A : C.getArgs()) {
Chad Rosiere75ef402011-09-06 23:52:36 +0000859 if (A->getOption().matches(options::OPT_arch)) {
Richard Smithbd55daf2012-11-01 04:30:05 +0000860 StringRef ArchName = A->getValue();
Chad Rosier636d2832012-02-13 18:16:28 +0000861 ArchNames.insert(ArchName);
Chad Rosiere75ef402011-09-06 23:52:36 +0000862 }
863 }
Chad Rosier636d2832012-02-13 18:16:28 +0000864 if (ArchNames.size() > 1) {
865 Diag(clang::diag::note_drv_command_failed_diag_msg)
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000866 << "Error generating preprocessed source(s) - cannot generate "
867 "preprocessed source with multiple -arch options.";
Chad Rosier636d2832012-02-13 18:16:28 +0000868 return;
869 }
Chad Rosiere75ef402011-09-06 23:52:36 +0000870
Chandler Carruth7f1417f2012-01-24 10:43:44 +0000871 // Construct the list of abstract actions to perform for this compilation. On
872 // Darwin OSes this uses the driver-driver and builds universal actions.
Chandler Carruthcb916192012-01-25 08:49:21 +0000873 const ToolChain &TC = C.getDefaultToolChain();
Tim Northover157d9112014-01-16 08:48:16 +0000874 if (TC.getTriple().isOSBinFormatMachO())
Artem Belevich5e2a3ec2015-11-17 22:28:40 +0000875 BuildUniversalActions(C, TC, Inputs);
Chad Rosierbe10f982011-08-02 17:58:04 +0000876 else
Justin Lebar0f3474c2016-02-11 02:00:50 +0000877 BuildActions(C, C.getArgs(), Inputs, C.getActions());
Chad Rosierbe10f982011-08-02 17:58:04 +0000878
879 BuildJobs(C);
880
881 // If there were errors building the compilation, quit now.
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000882 if (Trap.hasErrorOccurred()) {
Chad Rosierbe10f982011-08-02 17:58:04 +0000883 Diag(clang::diag::note_drv_command_failed_diag_msg)
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000884 << "Error generating preprocessed source(s).";
Chad Rosierbe10f982011-08-02 17:58:04 +0000885 return;
886 }
887
888 // Generate preprocessed output.
Chad Rosierdd60e092013-01-29 20:15:05 +0000889 SmallVector<std::pair<int, const Command *>, 4> FailingCommands;
Justin Bogner0cd92482015-07-02 22:52:08 +0000890 C.ExecuteJobs(C.getJobs(), FailingCommands);
Chad Rosierbe10f982011-08-02 17:58:04 +0000891
Justin Bognerbc89b182014-10-20 21:20:27 +0000892 // If any of the preprocessing commands failed, clean up and exit.
893 if (!FailingCommands.empty()) {
Reid Kleckner68eb60b2015-02-02 22:41:48 +0000894 if (!isSaveTempsEnabled())
Chad Rosierbe10f982011-08-02 17:58:04 +0000895 C.CleanupFileList(C.getTempFiles(), true);
896
897 Diag(clang::diag::note_drv_command_failed_diag_msg)
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000898 << "Error generating preprocessed source(s).";
Justin Bognerbc89b182014-10-20 21:20:27 +0000899 return;
Chad Rosierbe10f982011-08-02 17:58:04 +0000900 }
Justin Bognerbc89b182014-10-20 21:20:27 +0000901
Justin Bognerc1fdf7f2014-10-20 21:47:56 +0000902 const ArgStringList &TempFiles = C.getTempFiles();
903 if (TempFiles.empty()) {
904 Diag(clang::diag::note_drv_command_failed_diag_msg)
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000905 << "Error generating preprocessed source(s).";
Justin Bognerc1fdf7f2014-10-20 21:47:56 +0000906 return;
907 }
908
Justin Bognerbc89b182014-10-20 21:20:27 +0000909 Diag(clang::diag::note_drv_command_failed_diag_msg)
910 << "\n********************\n\n"
911 "PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:\n"
912 "Preprocessed source(s) and associated run script(s) are located at:";
Justin Bognerbc89b182014-10-20 21:20:27 +0000913
Justin Bogner659ecc32014-10-20 22:47:23 +0000914 SmallString<128> VFS;
Bruno Cardoso Lopes02681c42016-11-17 21:41:22 +0000915 SmallString<128> ReproCrashFilename;
Justin Bogner659ecc32014-10-20 22:47:23 +0000916 for (const char *TempFile : TempFiles) {
Justin Bognerc1fdf7f2014-10-20 21:47:56 +0000917 Diag(clang::diag::note_drv_command_failed_diag_msg) << TempFile;
Bruno Cardoso Lopes02681c42016-11-17 21:41:22 +0000918 if (ReproCrashFilename.empty()) {
919 ReproCrashFilename = TempFile;
920 llvm::sys::path::replace_extension(ReproCrashFilename, ".crash");
921 }
Justin Bogner659ecc32014-10-20 22:47:23 +0000922 if (StringRef(TempFile).endswith(".cache")) {
923 // In some cases (modules) we'll dump extra data to help with reproducing
924 // the crash into a directory next to the output.
925 VFS = llvm::sys::path::filename(TempFile);
926 llvm::sys::path::append(VFS, "vfs", "vfs.yaml");
927 }
928 }
Justin Bognerc1fdf7f2014-10-20 21:47:56 +0000929
930 // Assume associated files are based off of the first temporary file.
Justin Bogner25645152014-10-21 17:24:44 +0000931 CrashReportInfo CrashInfo(TempFiles[0], VFS);
Justin Bognerc1fdf7f2014-10-20 21:47:56 +0000932
Justin Bogner25645152014-10-21 17:24:44 +0000933 std::string Script = CrashInfo.Filename.rsplit('.').first.str() + ".sh";
Justin Bognerc1fdf7f2014-10-20 21:47:56 +0000934 std::error_code EC;
Justin Bognerc1fdf7f2014-10-20 21:47:56 +0000935 llvm::raw_fd_ostream ScriptOS(Script, EC, llvm::sys::fs::F_Excl);
936 if (EC) {
937 Diag(clang::diag::note_drv_command_failed_diag_msg)
938 << "Error generating run script: " + Script + " " + EC.message();
939 } else {
Justin Bogner42220ed2015-03-12 00:14:35 +0000940 ScriptOS << "# Crash reproducer for " << getClangFullVersion() << "\n"
Justin Bognered9cbe02015-07-09 06:58:31 +0000941 << "# Driver args: ";
942 printArgList(ScriptOS, C.getInputArgs());
943 ScriptOS << "# Original command: ";
Justin Bogner42220ed2015-03-12 00:14:35 +0000944 Cmd.Print(ScriptOS, "\n", /*Quote=*/true);
Justin Bogner33bdbc62014-10-21 18:03:08 +0000945 Cmd.Print(ScriptOS, "\n", /*Quote=*/true, &CrashInfo);
Justin Bognerc1fdf7f2014-10-20 21:47:56 +0000946 Diag(clang::diag::note_drv_command_failed_diag_msg) << Script;
Justin Bognerbc89b182014-10-20 21:20:27 +0000947 }
Saleem Abdulrasool3661a822015-01-12 02:33:09 +0000948
Bruno Cardoso Lopes02681c42016-11-17 21:41:22 +0000949 // On darwin, provide information about the .crash diagnostic report.
950 if (llvm::Triple(llvm::sys::getProcessTriple()).isOSDarwin()) {
951 SmallString<128> CrashDiagDir;
952 if (getCrashDiagnosticFile(ReproCrashFilename, CrashDiagDir)) {
953 Diag(clang::diag::note_drv_command_failed_diag_msg)
954 << ReproCrashFilename.str();
955 } else { // Suggest a directory for the user to look for .crash files.
956 llvm::sys::path::append(CrashDiagDir, Name);
957 CrashDiagDir += "_<YYYY-MM-DD-HHMMSS>_<hostname>.crash";
958 Diag(clang::diag::note_drv_command_failed_diag_msg)
959 << "Crash backtrace is located in";
960 Diag(clang::diag::note_drv_command_failed_diag_msg)
961 << CrashDiagDir.str();
962 Diag(clang::diag::note_drv_command_failed_diag_msg)
963 << "(choose the .crash file that corresponds to your crash)";
964 }
965 }
966
Saleem Abdulrasool3661a822015-01-12 02:33:09 +0000967 for (const auto &A : C.getArgs().filtered(options::OPT_frewrite_map_file,
968 options::OPT_frewrite_map_file_EQ))
969 Diag(clang::diag::note_drv_command_failed_diag_msg) << A->getValue();
970
Justin Bognerbc89b182014-10-20 21:20:27 +0000971 Diag(clang::diag::note_drv_command_failed_diag_msg)
972 << "\n\n********************";
Chad Rosierbe10f982011-08-02 17:58:04 +0000973}
974
Justin Bogner0cd92482015-07-02 22:52:08 +0000975void Driver::setUpResponseFiles(Compilation &C, Command &Cmd) {
Oleg Ranevskyycd516372016-01-05 19:54:39 +0000976 // Since commandLineFitsWithinSystemLimits() may underestimate system's capacity
Reid Kleckner0290c9c2014-09-15 17:45:39 +0000977 // if the tool does not support response files, there is a chance/ that things
978 // will just work without a response file, so we silently just skip it.
Justin Bogner0cd92482015-07-02 22:52:08 +0000979 if (Cmd.getCreator().getResponseFilesSupport() == Tool::RF_None ||
Oleg Ranevskyycd516372016-01-05 19:54:39 +0000980 llvm::sys::commandLineFitsWithinSystemLimits(Cmd.getExecutable(), Cmd.getArguments()))
Reid Kleckner0290c9c2014-09-15 17:45:39 +0000981 return;
982
983 std::string TmpName = GetTemporaryPath("response", "txt");
Malcolm Parsonsf76f6502016-11-02 10:39:27 +0000984 Cmd.setResponseFile(C.addTempFile(C.getArgs().MakeArgString(TmpName)));
Reid Kleckner0290c9c2014-09-15 17:45:39 +0000985}
986
Douglas Katzmana67e50c2015-06-26 15:47:46 +0000987int Driver::ExecuteCompilation(
988 Compilation &C,
989 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) {
Daniel Dunbar38bfda62009-07-01 20:03:04 +0000990 // Just print if -### was present.
991 if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
Hans Wennborgb212b342013-09-12 18:23:34 +0000992 C.getJobs().Print(llvm::errs(), "\n", true);
Daniel Dunbar38bfda62009-07-01 20:03:04 +0000993 return 0;
994 }
995
996 // If there were errors building the compilation, quit now.
Chad Rosierbe10f982011-08-02 17:58:04 +0000997 if (Diags.hasErrorOccurred())
Daniel Dunbar38bfda62009-07-01 20:03:04 +0000998 return 1;
999
Reid Kleckner0290c9c2014-09-15 17:45:39 +00001000 // Set up response file names for each command, if necessary
Justin Bogner0cd92482015-07-02 22:52:08 +00001001 for (auto &Job : C.getJobs())
1002 setUpResponseFiles(C, Job);
Reid Kleckner0290c9c2014-09-15 17:45:39 +00001003
Justin Bogner0cd92482015-07-02 22:52:08 +00001004 C.ExecuteJobs(C.getJobs(), FailingCommands);
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001005
Daniel Dunbar38bfda62009-07-01 20:03:04 +00001006 // Remove temp files.
1007 C.CleanupFileList(C.getTempFiles());
1008
Daniel Dunbar07494792010-05-22 00:37:20 +00001009 // If the command succeeded, we are done.
Chad Rosierdd60e092013-01-29 20:15:05 +00001010 if (FailingCommands.empty())
1011 return 0;
Daniel Dunbar07494792010-05-22 00:37:20 +00001012
Chad Rosierdd60e092013-01-29 20:15:05 +00001013 // Otherwise, remove result files and print extra information about abnormal
1014 // failures.
Douglas Katzman6bbffc42015-06-25 18:51:37 +00001015 for (const auto &CmdPair : FailingCommands) {
1016 int Res = CmdPair.first;
1017 const Command *FailingCommand = CmdPair.second;
Daniel Dunbar38bfda62009-07-01 20:03:04 +00001018
Chad Rosierdd60e092013-01-29 20:15:05 +00001019 // Remove result files if we're not saving temps.
Reid Kleckner68eb60b2015-02-02 22:41:48 +00001020 if (!isSaveTempsEnabled()) {
Chad Rosierdd60e092013-01-29 20:15:05 +00001021 const JobAction *JA = cast<JobAction>(&FailingCommand->getSource());
1022 C.CleanupFileMap(C.getResultFiles(), JA, true);
1023
1024 // Failure result files are valid unless we crashed.
1025 if (Res < 0)
1026 C.CleanupFileMap(C.getFailureResultFiles(), JA, true);
1027 }
1028
1029 // Print extra information about abnormal failures, if possible.
1030 //
1031 // This is ad-hoc, but we don't want to be excessively noisy. If the result
Justin Bogner5aaf2e72014-06-26 20:59:36 +00001032 // status was 1, assume the command failed normally. In particular, if it
Chad Rosierdd60e092013-01-29 20:15:05 +00001033 // was the compiler then assume it gave a reasonable error code. Failures
1034 // in other tools are less common, and they generally have worse
1035 // diagnostics, so always print the diagnostic there.
1036 const Tool &FailingTool = FailingCommand->getCreator();
1037
1038 if (!FailingCommand->getCreator().hasGoodDiagnostics() || Res != 1) {
1039 // FIXME: See FIXME above regarding result code interpretation.
1040 if (Res < 0)
1041 Diag(clang::diag::err_drv_command_signalled)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001042 << FailingTool.getShortName();
Chad Rosierdd60e092013-01-29 20:15:05 +00001043 else
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001044 Diag(clang::diag::err_drv_command_failed) << FailingTool.getShortName()
1045 << Res;
Chad Rosierdd60e092013-01-29 20:15:05 +00001046 }
Peter Collingbourne119cfaa2011-11-21 00:01:05 +00001047 }
Chad Rosierdd60e092013-01-29 20:15:05 +00001048 return 0;
Daniel Dunbar38bfda62009-07-01 20:03:04 +00001049}
1050
Daniel Dunbara7b5e212009-04-15 16:34:29 +00001051void Driver::PrintHelp(bool ShowHidden) const {
Hans Wennborg6ddc6902013-07-27 00:23:45 +00001052 unsigned IncludedFlagsBitmask;
1053 unsigned ExcludedFlagsBitmask;
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00001054 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) =
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001055 getIncludeExcludeOptionFlagMasks();
Hans Wennborg6ddc6902013-07-27 00:23:45 +00001056
1057 ExcludedFlagsBitmask |= options::NoDriverOption;
1058 if (!ShowHidden)
1059 ExcludedFlagsBitmask |= HelpHidden;
1060
1061 getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(),
1062 IncludedFlagsBitmask, ExcludedFlagsBitmask);
Daniel Dunbar7c925282009-03-31 21:38:17 +00001063}
1064
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001065void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001066 // FIXME: The following handlers should use a callback mechanism, we don't
1067 // know what the client would like to do.
Ted Kremenek4c0df3d2010-01-23 02:11:34 +00001068 OS << getClangFullVersion() << '\n';
Daniel Dunbarb10248802009-03-26 16:09:13 +00001069 const ToolChain &TC = C.getDefaultToolChain();
Daniel Dunbar08e41d62009-07-21 20:06:58 +00001070 OS << "Target: " << TC.getTripleString() << '\n';
Daniel Dunbar10978e42009-06-16 23:32:58 +00001071
1072 // Print the threading model.
Jonathan Roelofsb140a102014-10-03 21:57:44 +00001073 if (Arg *A = C.getArgs().getLastArg(options::OPT_mthread_model)) {
1074 // Don't print if the ToolChain would have barfed on it already
1075 if (TC.isThreadModelSupported(A->getValue()))
1076 OS << "Thread model: " << A->getValue();
1077 } else
1078 OS << "Thread model: " << TC.getThreadModel();
1079 OS << '\n';
Chandler Carruth9ade6a92015-08-05 17:07:33 +00001080
1081 // Print out the install directory.
1082 OS << "InstalledDir: " << InstalledDir << '\n';
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +00001083}
1084
Chris Lattner86ed5b02010-05-05 05:53:24 +00001085/// PrintDiagnosticCategories - Implement the --print-diagnostic-categories
1086/// option.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001087static void PrintDiagnosticCategories(raw_ostream &OS) {
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +00001088 // Skip the empty category.
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001089 for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories(); i != max;
1090 ++i)
Argyrios Kyrtzidis0e37afa2011-05-25 05:05:01 +00001091 OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n';
Chris Lattner86ed5b02010-05-05 05:53:24 +00001092}
1093
Daniel Dunbarf0eddb82009-03-18 02:55:38 +00001094bool Driver::HandleImmediateArgs(const Compilation &C) {
Daniel Dunbar18974bd2010-06-11 22:00:19 +00001095 // The order these options are handled in gcc is all over the place, but we
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001096 // don't expect inconsistencies w.r.t. that to matter in practice.
Daniel Dunbar7c925282009-03-31 21:38:17 +00001097
Daniel Dunbar1b09e042010-09-17 02:47:28 +00001098 if (C.getArgs().hasArg(options::OPT_dumpmachine)) {
1099 llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n';
1100 return false;
1101 }
1102
Daniel Dunbara9bbcfa2009-04-04 05:17:38 +00001103 if (C.getArgs().hasArg(options::OPT_dumpversion)) {
Daniel Dunbare26e5002011-01-12 00:43:47 +00001104 // Since -dumpversion is only implemented for pedantic GCC compatibility, we
1105 // return an answer which matches our definition of __VERSION__.
1106 //
1107 // If we want to return a more correct answer some day, then we should
1108 // introduce a non-pedantically GCC compatible mode to Clang in which we
1109 // provide sensible definitions for -dumpversion, __VERSION__, etc.
1110 llvm::outs() << "4.2.1\n";
Daniel Dunbara9bbcfa2009-04-04 05:17:38 +00001111 return false;
1112 }
Daniel Dunbarfb3d7472010-06-14 21:23:12 +00001113
Chris Lattner86ed5b02010-05-05 05:53:24 +00001114 if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) {
1115 PrintDiagnosticCategories(llvm::outs());
1116 return false;
1117 }
Daniel Dunbara9bbcfa2009-04-04 05:17:38 +00001118
James Molloya3c85b82012-05-01 14:57:16 +00001119 if (C.getArgs().hasArg(options::OPT_help) ||
Daniel Dunbara7b5e212009-04-15 16:34:29 +00001120 C.getArgs().hasArg(options::OPT__help_hidden)) {
1121 PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden));
Daniel Dunbar7c925282009-03-31 21:38:17 +00001122 return false;
1123 }
1124
Daniel Dunbarb0006ae2009-04-02 15:05:41 +00001125 if (C.getArgs().hasArg(options::OPT__version)) {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001126 // Follow gcc behavior and use stdout for --version and stderr for -v.
Daniel Dunbar08e41d62009-07-21 20:06:58 +00001127 PrintVersion(C, llvm::outs());
Daniel Dunbarb0006ae2009-04-02 15:05:41 +00001128 return false;
1129 }
1130
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001131 if (C.getArgs().hasArg(options::OPT_v) ||
Daniel Dunbarf0eddb82009-03-18 02:55:38 +00001132 C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
Daniel Dunbar08e41d62009-07-21 20:06:58 +00001133 PrintVersion(C, llvm::errs());
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +00001134 SuppressMissingInputWarning = true;
1135 }
1136
Daniel Dunbarf0eddb82009-03-18 02:55:38 +00001137 const ToolChain &TC = C.getDefaultToolChain();
Chandler Carruth0ae39aa2013-07-30 17:57:09 +00001138
1139 if (C.getArgs().hasArg(options::OPT_v))
1140 TC.printVerboseInfo(llvm::errs());
1141
Daniel Dunbard972e222009-03-20 04:37:21 +00001142 if (C.getArgs().hasArg(options::OPT_print_search_dirs)) {
1143 llvm::outs() << "programs: =";
Douglas Katzman51fe7bf2015-06-23 22:43:50 +00001144 bool separator = false;
1145 for (const std::string &Path : TC.getProgramPaths()) {
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001146 if (separator)
1147 llvm::outs() << ':';
Douglas Katzman51fe7bf2015-06-23 22:43:50 +00001148 llvm::outs() << Path;
1149 separator = true;
Daniel Dunbard972e222009-03-20 04:37:21 +00001150 }
1151 llvm::outs() << "\n";
Peter Collingbournefa9771f2011-09-06 02:08:31 +00001152 llvm::outs() << "libraries: =" << ResourceDir;
Joerg Sonnenberger9c3e69b2011-07-16 10:50:05 +00001153
Sebastian Pop980920a2012-04-16 04:16:43 +00001154 StringRef sysroot = C.getSysRoot();
Joerg Sonnenberger9c3e69b2011-07-16 10:50:05 +00001155
Douglas Katzman51fe7bf2015-06-23 22:43:50 +00001156 for (const std::string &Path : TC.getFilePaths()) {
1157 // Always print a separator. ResourceDir was the first item shown.
Peter Collingbournefa9771f2011-09-06 02:08:31 +00001158 llvm::outs() << ':';
Douglas Katzman51fe7bf2015-06-23 22:43:50 +00001159 // Interpretation of leading '=' is needed only for NetBSD.
1160 if (Path[0] == '=')
Douglas Katzman26eabf62015-06-24 15:10:30 +00001161 llvm::outs() << sysroot << Path.substr(1);
Joerg Sonnenberger9c3e69b2011-07-16 10:50:05 +00001162 else
Douglas Katzman51fe7bf2015-06-23 22:43:50 +00001163 llvm::outs() << Path;
Daniel Dunbard972e222009-03-20 04:37:21 +00001164 }
1165 llvm::outs() << "\n";
Daniel Dunbar7c925282009-03-31 21:38:17 +00001166 return false;
Daniel Dunbard972e222009-03-20 04:37:21 +00001167 }
1168
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001169 // FIXME: The following handlers should use a callback mechanism, we don't
1170 // know what the client would like to do.
Daniel Dunbarf0eddb82009-03-18 02:55:38 +00001171 if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) {
Richard Smithbd55daf2012-11-01 04:30:05 +00001172 llvm::outs() << GetFilePath(A->getValue(), TC) << "\n";
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +00001173 return false;
1174 }
1175
Daniel Dunbarf0eddb82009-03-18 02:55:38 +00001176 if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) {
Richard Smithbd55daf2012-11-01 04:30:05 +00001177 llvm::outs() << GetProgramPath(A->getValue(), TC) << "\n";
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +00001178 return false;
1179 }
1180
Daniel Dunbarf0eddb82009-03-18 02:55:38 +00001181 if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) {
Michal Gorny7cfe4802016-10-10 12:23:40 +00001182 ToolChain::RuntimeLibType RLT = TC.GetRuntimeLibType(C.getArgs());
1183 switch (RLT) {
1184 case ToolChain::RLT_CompilerRT:
1185 llvm::outs() << TC.getCompilerRT(C.getArgs(), "builtins") << "\n";
1186 break;
1187 case ToolChain::RLT_Libgcc:
1188 llvm::outs() << GetFilePath("libgcc.a", TC) << "\n";
1189 break;
1190 }
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +00001191 return false;
1192 }
1193
Daniel Dunbar1b3ec3a2009-06-16 23:25:22 +00001194 if (C.getArgs().hasArg(options::OPT_print_multi_lib)) {
Douglas Katzmana34b7bf2015-06-30 19:32:57 +00001195 for (const Multilib &Multilib : TC.getMultilibs())
1196 llvm::outs() << Multilib << "\n";
Daniel Dunbar1b3ec3a2009-06-16 23:25:22 +00001197 return false;
1198 }
1199
Jonathan Roelofs2cea1be2014-02-12 03:21:20 +00001200 if (C.getArgs().hasArg(options::OPT_print_multi_directory)) {
Douglas Katzmana34b7bf2015-06-30 19:32:57 +00001201 for (const Multilib &Multilib : TC.getMultilibs()) {
Douglas Katzman6bbffc42015-06-25 18:51:37 +00001202 if (Multilib.gccSuffix().empty())
Jonathan Roelofs2cea1be2014-02-12 03:21:20 +00001203 llvm::outs() << ".\n";
1204 else {
Douglas Katzman6bbffc42015-06-25 18:51:37 +00001205 StringRef Suffix(Multilib.gccSuffix());
Jonathan Roelofs2cea1be2014-02-12 03:21:20 +00001206 assert(Suffix.front() == '/');
1207 llvm::outs() << Suffix.substr(1) << "\n";
1208 }
Jonathan Roelofs3fa96d82014-02-12 01:36:51 +00001209 }
Jonathan Roelofs0e7ec602014-02-12 01:29:25 +00001210 return false;
1211 }
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +00001212 return true;
1213}
1214
Douglas Katzmanfd528672015-06-11 15:05:22 +00001215// Display an action graph human-readably. Action A is the "sink" node
1216// and latest-occuring action. Traversal is in pre-order, visiting the
1217// inputs to each action before printing the action itself.
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001218static unsigned PrintActions1(const Compilation &C, Action *A,
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001219 std::map<Action *, unsigned> &Ids) {
Douglas Katzmanfd528672015-06-11 15:05:22 +00001220 if (Ids.count(A)) // A was already visited.
Daniel Dunbaraaf1ea62009-03-13 12:19:02 +00001221 return Ids[A];
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001222
Daniel Dunbaraaf1ea62009-03-13 12:19:02 +00001223 std::string str;
1224 llvm::raw_string_ostream os(str);
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001225
Daniel Dunbaraaf1ea62009-03-13 12:19:02 +00001226 os << Action::getClassName(A->getKind()) << ", ";
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001227 if (InputAction *IA = dyn_cast<InputAction>(A)) {
Richard Smithbd55daf2012-11-01 04:30:05 +00001228 os << "\"" << IA->getInputArg().getValue() << "\"";
Daniel Dunbaraaf1ea62009-03-13 12:19:02 +00001229 } else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) {
Douglas Katzmanb7e8ef02015-06-25 19:37:41 +00001230 os << '"' << BIA->getArchName() << '"' << ", {"
Nico Weber5a459f82016-02-23 19:30:43 +00001231 << PrintActions1(C, *BIA->input_begin(), Ids) << "}";
Samuel Antaod06239d2016-07-15 23:13:27 +00001232 } else if (OffloadAction *OA = dyn_cast<OffloadAction>(A)) {
1233 bool IsFirst = true;
1234 OA->doOnEachDependence(
1235 [&](Action *A, const ToolChain *TC, const char *BoundArch) {
1236 // E.g. for two CUDA device dependences whose bound arch is sm_20 and
1237 // sm_35 this will generate:
1238 // "cuda-device" (nvptx64-nvidia-cuda:sm_20) {#ID}, "cuda-device"
1239 // (nvptx64-nvidia-cuda:sm_35) {#ID}
1240 if (!IsFirst)
1241 os << ", ";
1242 os << '"';
1243 if (TC)
1244 os << A->getOffloadingKindPrefix();
1245 else
1246 os << "host";
1247 os << " (";
1248 os << TC->getTriple().normalize();
1249
1250 if (BoundArch)
1251 os << ":" << BoundArch;
1252 os << ")";
1253 os << '"';
1254 os << " {" << PrintActions1(C, A, Ids) << "}";
1255 IsFirst = false;
1256 });
Daniel Dunbaraaf1ea62009-03-13 12:19:02 +00001257 } else {
Samuel Antaod06239d2016-07-15 23:13:27 +00001258 const ActionList *AL = &A->getInputs();
Artem Belevich0ff05cd2015-07-13 23:27:56 +00001259
Artem Belevich23256752015-09-22 17:23:09 +00001260 if (AL->size()) {
1261 const char *Prefix = "{";
1262 for (Action *PreRequisite : *AL) {
1263 os << Prefix << PrintActions1(C, PreRequisite, Ids);
1264 Prefix = ", ";
1265 }
1266 os << "}";
1267 } else
1268 os << "{}";
Daniel Dunbaraaf1ea62009-03-13 12:19:02 +00001269 }
1270
Samuel Antaod06239d2016-07-15 23:13:27 +00001271 // Append offload info for all options other than the offloading action
1272 // itself (e.g. (cuda-device, sm_20) or (cuda-host)).
1273 std::string offload_str;
1274 llvm::raw_string_ostream offload_os(offload_str);
1275 if (!isa<OffloadAction>(A)) {
1276 auto S = A->getOffloadingKindPrefix();
1277 if (!S.empty()) {
1278 offload_os << ", (" << S;
1279 if (A->getOffloadingArch())
1280 offload_os << ", " << A->getOffloadingArch();
1281 offload_os << ")";
1282 }
1283 }
1284
Daniel Dunbaraaf1ea62009-03-13 12:19:02 +00001285 unsigned Id = Ids.size();
1286 Ids[A] = Id;
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001287 llvm::errs() << Id << ": " << os.str() << ", "
Samuel Antaod06239d2016-07-15 23:13:27 +00001288 << types::getTypeName(A->getType()) << offload_os.str() << "\n";
Daniel Dunbaraaf1ea62009-03-13 12:19:02 +00001289
1290 return Id;
1291}
1292
Douglas Katzmanfd528672015-06-11 15:05:22 +00001293// Print the action graphs in a compilation C.
1294// For example "clang -c file1.c file2.c" is composed of two subgraphs.
Daniel Dunbareb843be2009-03-18 03:13:20 +00001295void Driver::PrintActions(const Compilation &C) const {
Douglas Katzmanb7e8ef02015-06-25 19:37:41 +00001296 std::map<Action *, unsigned> Ids;
1297 for (Action *A : C.getActions())
1298 PrintActions1(C, A, Ids);
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001299}
1300
Joerg Sonnenberger5fe4a7d2011-05-06 14:05:11 +00001301/// \brief Check whether the given input tree contains any compilation or
1302/// assembly actions.
1303static bool ContainsCompileOrAssembleAction(const Action *A) {
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001304 if (isa<CompileJobAction>(A) || isa<BackendJobAction>(A) ||
Bob Wilson23a55f12014-12-21 07:00:00 +00001305 isa<AssembleJobAction>(A))
Daniel Dunbar00d3d8e2010-06-29 16:38:33 +00001306 return true;
1307
Nico Weber5a459f82016-02-23 19:30:43 +00001308 for (const Action *Input : A->inputs())
Nico Weberfb80f962015-09-19 21:36:51 +00001309 if (ContainsCompileOrAssembleAction(Input))
Daniel Dunbar00d3d8e2010-06-29 16:38:33 +00001310 return true;
1311
1312 return false;
1313}
1314
Artem Belevich5e2a3ec2015-11-17 22:28:40 +00001315void Driver::BuildUniversalActions(Compilation &C, const ToolChain &TC,
1316 const InputList &BAInputs) const {
1317 DerivedArgList &Args = C.getArgs();
1318 ActionList &Actions = C.getActions();
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001319 llvm::PrettyStackTraceString CrashInfo("Building universal build actions");
1320 // Collect the list of architectures. Duplicates are allowed, but should only
1321 // be handled once (in the order seen).
Daniel Dunbare5dc4822009-03-13 20:33:35 +00001322 llvm::StringSet<> ArchNames;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001323 SmallVector<const char *, 4> Archs;
Saleem Abdulrasool688b6bc2014-12-29 19:01:36 +00001324 for (Arg *A : Args) {
Daniel Dunbar0bfb21e2009-11-19 03:26:40 +00001325 if (A->getOption().matches(options::OPT_arch)) {
Daniel Dunbar9c3f7c42009-09-08 23:37:30 +00001326 // Validate the option here; we don't save the type here because its
1327 // particular spelling may participate in other driver choices.
1328 llvm::Triple::ArchType Arch =
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001329 tools::darwin::getArchTypeForMachOArchName(A->getValue());
Daniel Dunbar9c3f7c42009-09-08 23:37:30 +00001330 if (Arch == llvm::Triple::UnknownArch) {
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001331 Diag(clang::diag::err_drv_invalid_arch_name) << A->getAsString(Args);
Daniel Dunbar9c3f7c42009-09-08 23:37:30 +00001332 continue;
1333 }
1334
Daniel Dunbar2da02722009-03-19 07:55:12 +00001335 A->claim();
David Blaikie61b86d42014-11-19 02:56:13 +00001336 if (ArchNames.insert(A->getValue()).second)
Richard Smithbd55daf2012-11-01 04:30:05 +00001337 Archs.push_back(A->getValue());
Daniel Dunbarf479c122009-03-12 18:40:18 +00001338 }
1339 }
1340
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001341 // When there is no explicit arch for this platform, make sure we still bind
1342 // the architecture (to the default) so that -Xarch_ is handled correctly.
Daniel Dunbareb843be2009-03-18 03:13:20 +00001343 if (!Archs.size())
Daniel Dunbarc3bd9f52012-11-08 03:38:26 +00001344 Archs.push_back(Args.MakeArgString(TC.getDefaultUniversalArchName()));
Daniel Dunbarf479c122009-03-12 18:40:18 +00001345
Daniel Dunbarf479c122009-03-12 18:40:18 +00001346 ActionList SingleActions;
Justin Lebar0f3474c2016-02-11 02:00:50 +00001347 BuildActions(C, Args, BAInputs, SingleActions);
Daniel Dunbarf479c122009-03-12 18:40:18 +00001348
Daniel Dunbar6beaf512010-06-04 18:28:41 +00001349 // Add in arch bindings for every top level action, as well as lipo and
1350 // dsymutil steps if needed.
Nico Weberfb80f962015-09-19 21:36:51 +00001351 for (Action* Act : SingleActions) {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001352 // Make sure we can lipo this kind of output. If not (and it is an actual
1353 // output) then we disallow, since we can't create an output file with the
1354 // right name without overwriting it. We could remove this oddity by just
1355 // changing the output names to include the arch, which would also fix
Daniel Dunbarf479c122009-03-12 18:40:18 +00001356 // -save-temps. Compatibility wins for now.
1357
Daniel Dunbare2ca3bd2009-03-13 17:46:02 +00001358 if (Archs.size() > 1 && !types::canLipoType(Act->getType()))
Daniel Dunbarf479c122009-03-12 18:40:18 +00001359 Diag(clang::diag::err_drv_invalid_output_with_multiple_archs)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001360 << types::getTypeName(Act->getType());
Daniel Dunbarf479c122009-03-12 18:40:18 +00001361
1362 ActionList Inputs;
Justin Lebar41094612016-01-11 23:07:27 +00001363 for (unsigned i = 0, e = Archs.size(); i != e; ++i)
1364 Inputs.push_back(C.MakeAction<BindArchAction>(Act, Archs[i]));
Daniel Dunbarf479c122009-03-12 18:40:18 +00001365
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001366 // Lipo if necessary, we do it this way because we need to set the arch flag
1367 // so that -Xarch_ gets overwritten.
Daniel Dunbarf479c122009-03-12 18:40:18 +00001368 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing)
1369 Actions.append(Inputs.begin(), Inputs.end());
1370 else
Justin Lebar41094612016-01-11 23:07:27 +00001371 Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType()));
Daniel Dunbar6beaf512010-06-04 18:28:41 +00001372
Eric Christopher65c05fa2012-02-06 19:43:51 +00001373 // Handle debug info queries.
1374 Arg *A = Args.getLastArg(options::OPT_g_Group);
David Blaikie6f9f4eb2012-04-15 21:22:10 +00001375 if (A && !A->getOption().matches(options::OPT_g0) &&
1376 !A->getOption().matches(options::OPT_gstabs) &&
1377 ContainsCompileOrAssembleAction(Actions.back())) {
Chad Rosier62135492012-07-09 17:31:28 +00001378
David Blaikie6f9f4eb2012-04-15 21:22:10 +00001379 // Add a 'dsymutil' step if necessary, when debug info is enabled and we
1380 // have a compile input. We need to run 'dsymutil' ourselves in such cases
Eric Christopher776c26f2013-01-28 17:39:03 +00001381 // because the debug info will refer to a temporary object file which
David Blaikie6f9f4eb2012-04-15 21:22:10 +00001382 // will be removed at the end of the compilation process.
1383 if (Act->getType() == types::TY_Image) {
1384 ActionList Inputs;
1385 Inputs.push_back(Actions.back());
1386 Actions.pop_back();
Justin Lebar41094612016-01-11 23:07:27 +00001387 Actions.push_back(
1388 C.MakeAction<DsymutilJobAction>(Inputs, types::TY_dSYM));
Daniel Dunbar6beaf512010-06-04 18:28:41 +00001389 }
David Blaikie6f9f4eb2012-04-15 21:22:10 +00001390
Ben Langmuir9b9a8d32014-02-06 18:53:25 +00001391 // Verify the debug info output.
Alp Tokere9d2bfc2014-01-17 02:06:23 +00001392 if (Args.hasArg(options::OPT_verify_debug_info)) {
Justin Lebar41094612016-01-11 23:07:27 +00001393 Action* LastAction = Actions.back();
David Blaikie6f9f4eb2012-04-15 21:22:10 +00001394 Actions.pop_back();
Justin Lebar41094612016-01-11 23:07:27 +00001395 Actions.push_back(C.MakeAction<VerifyDebugInfoJobAction>(
1396 LastAction, types::TY_Nothing));
David Blaikie6f9f4eb2012-04-15 21:22:10 +00001397 }
1398 }
Daniel Dunbarf479c122009-03-12 18:40:18 +00001399 }
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001400}
1401
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001402/// \brief Check that the file referenced by Value exists. If it doesn't,
1403/// issue a diagnostic and return false.
Alp Toker8c8a8752013-12-03 06:53:35 +00001404static bool DiagnoseInputExistence(const Driver &D, const DerivedArgList &Args,
Hans Wennborg12f4f8b2016-04-15 01:12:32 +00001405 StringRef Value, types::ID Ty) {
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001406 if (!D.getCheckInputsExist())
1407 return true;
1408
1409 // stdin always exists.
1410 if (Value == "-")
1411 return true;
1412
1413 SmallString<64> Path(Value);
1414 if (Arg *WorkDir = Args.getLastArg(options::OPT_working_directory)) {
Yaron Keren92e1b622015-03-18 10:17:07 +00001415 if (!llvm::sys::path::is_absolute(Path)) {
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001416 SmallString<64> Directory(WorkDir->getValue());
1417 llvm::sys::path::append(Directory, Value);
1418 Path.assign(Directory);
1419 }
1420 }
1421
1422 if (llvm::sys::fs::exists(Twine(Path)))
1423 return true;
1424
Hans Wennborg12f4f8b2016-04-15 01:12:32 +00001425 if (D.IsCLMode()) {
1426 if (!llvm::sys::path::is_absolute(Twine(Path)) &&
1427 llvm::sys::Process::FindInEnvPath("LIB", Value))
1428 return true;
1429
1430 if (Args.hasArg(options::OPT__SLASH_link) && Ty == types::TY_Object) {
1431 // Arguments to the /link flag might cause the linker to search for object
1432 // and library files in paths we don't know about. Don't error in such
1433 // cases.
1434 return true;
1435 }
1436 }
Hans Wennborg23d26a32014-06-18 17:21:50 +00001437
Yaron Keren92e1b622015-03-18 10:17:07 +00001438 D.Diag(clang::diag::err_drv_no_such_file) << Path;
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001439 return false;
1440}
1441
Chad Rosierecdede82011-08-12 22:08:57 +00001442// Construct a the list of inputs and their types.
Hans Wennborg55362852014-05-02 22:55:30 +00001443void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args,
Chad Rosierecdede82011-08-12 22:08:57 +00001444 InputList &Inputs) const {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001445 // Track the current user specified (-x) input. We also explicitly track the
1446 // argument used to set the type; we only want to claim the type when we
1447 // actually use it, so we warn about unused -x arguments.
Daniel Dunbarc5a5ac52009-03-13 17:57:10 +00001448 types::ID InputType = types::TY_Nothing;
Craig Topper92fc2df2014-05-17 16:56:41 +00001449 Arg *InputTypeArg = nullptr;
Daniel Dunbarc5a5ac52009-03-13 17:57:10 +00001450
Hans Wennborg0d0b19c2013-08-12 18:34:17 +00001451 // The last /TC or /TP option sets the input type to C or C++ globally.
Ehsan Akhgaric249abb2014-09-12 21:44:24 +00001452 if (Arg *TCTP = Args.getLastArgNoClaim(options::OPT__SLASH_TC,
1453 options::OPT__SLASH_TP)) {
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001454 InputTypeArg = TCTP;
Hans Wennborg0d0b19c2013-08-12 18:34:17 +00001455 InputType = TCTP->getOption().matches(options::OPT__SLASH_TC)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001456 ? types::TY_C
1457 : types::TY_CXX;
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001458
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001459 arg_iterator it =
1460 Args.filtered_begin(options::OPT__SLASH_TC, options::OPT__SLASH_TP);
Hans Wennborg0d0b19c2013-08-12 18:34:17 +00001461 const arg_iterator ie = Args.filtered_end();
1462 Arg *Previous = *it++;
1463 bool ShowNote = false;
1464 while (it != ie) {
Hans Wennborgd9ad0682013-09-11 16:38:41 +00001465 Diag(clang::diag::warn_drv_overriding_flag_option)
1466 << Previous->getSpelling() << (*it)->getSpelling();
Hans Wennborg0d0b19c2013-08-12 18:34:17 +00001467 Previous = *it++;
1468 ShowNote = true;
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001469 }
Hans Wennborg0d0b19c2013-08-12 18:34:17 +00001470 if (ShowNote)
1471 Diag(clang::diag::note_drv_t_option_is_global);
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001472
1473 // No driver mode exposes -x and /TC or /TP; we don't support mixing them.
1474 assert(!Args.hasArg(options::OPT_x) && "-x and /TC or /TP is not allowed");
1475 }
1476
Saleem Abdulrasool688b6bc2014-12-29 19:01:36 +00001477 for (Arg *A : Args) {
Michael J. Spencerad3ccc32012-08-20 21:41:17 +00001478 if (A->getOption().getKind() == Option::InputClass) {
Richard Smithbd55daf2012-11-01 04:30:05 +00001479 const char *Value = A->getValue();
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001480 types::ID Ty = types::TY_INVALID;
1481
1482 // Infer the input type if necessary.
Daniel Dunbarc5a5ac52009-03-13 17:57:10 +00001483 if (InputType == types::TY_Nothing) {
1484 // If there was an explicit arg for this, claim it.
1485 if (InputTypeArg)
1486 InputTypeArg->claim();
1487
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001488 // stdin must be handled specially.
1489 if (memcmp(Value, "-", 2) == 0) {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001490 // If running with -E, treat as a C input (this changes the builtin
1491 // macros, for example). This may be overridden by -ObjC below.
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001492 //
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001493 // Otherwise emit an error but still use a valid type to avoid
1494 // spurious errors (e.g., no inputs).
Hans Wennborg70850d82013-07-18 20:29:38 +00001495 if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP())
Hans Wennborgcfdd8b52014-01-29 01:04:40 +00001496 Diag(IsCLMode() ? clang::diag::err_drv_unknown_stdin_type_clang_cl
1497 : clang::diag::err_drv_unknown_stdin_type);
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001498 Ty = types::TY_C;
1499 } else {
Joerg Sonnenbergerbdbdf702011-03-16 22:45:02 +00001500 // Otherwise lookup by extension.
1501 // Fallback is C if invoked as C preprocessor or Object otherwise.
1502 // We use a host hook here because Darwin at least has its own
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001503 // idea of what .s is.
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001504 if (const char *Ext = strrchr(Value, '.'))
Daniel Dunbarcc7df6c2010-08-02 05:43:56 +00001505 Ty = TC.LookupTypeForExtension(Ext + 1);
Daniel Dunbarea9f0322009-03-20 23:39:23 +00001506
Joerg Sonnenbergerbdbdf702011-03-16 22:45:02 +00001507 if (Ty == types::TY_INVALID) {
Hans Wennborg70850d82013-07-18 20:29:38 +00001508 if (CCCIsCPP())
Joerg Sonnenbergerbdbdf702011-03-16 22:45:02 +00001509 Ty = types::TY_C;
1510 else
1511 Ty = types::TY_Object;
1512 }
Daniel Dunbar0ac94452010-02-17 20:32:58 +00001513
1514 // If the driver is invoked as C++ compiler (like clang++ or c++) it
1515 // should autodetect some input files as C++ for g++ compatibility.
Hans Wennborg70850d82013-07-18 20:29:38 +00001516 if (CCCIsCXX()) {
Daniel Dunbar0ac94452010-02-17 20:32:58 +00001517 types::ID OldTy = Ty;
1518 Ty = types::lookupCXXTypeForCType(Ty);
1519
1520 if (Ty != OldTy)
1521 Diag(clang::diag::warn_drv_treating_input_as_cxx)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00001522 << getTypeName(OldTy) << getTypeName(Ty);
Daniel Dunbar0ac94452010-02-17 20:32:58 +00001523 }
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001524 }
1525
Daniel Dunbar82b22102009-05-18 21:47:54 +00001526 // -ObjC and -ObjC++ override the default language, but only for "source
1527 // files". We just treat everything that isn't a linker input as a
1528 // source file.
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001529 //
Daniel Dunbar82b22102009-05-18 21:47:54 +00001530 // FIXME: Clean this up if we move the phase sequence into the type.
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001531 if (Ty != types::TY_Object) {
1532 if (Args.hasArg(options::OPT_ObjC))
1533 Ty = types::TY_ObjC;
1534 else if (Args.hasArg(options::OPT_ObjCXX))
1535 Ty = types::TY_ObjCXX;
1536 }
1537 } else {
1538 assert(InputTypeArg && "InputType set w/o InputTypeArg");
Ehsan Akhgari7e954ea2014-09-12 18:15:10 +00001539 if (!InputTypeArg->getOption().matches(options::OPT_x)) {
1540 // If emulating cl.exe, make sure that /TC and /TP don't affect input
1541 // object files.
1542 const char *Ext = strrchr(Value, '.');
1543 if (Ext && TC.LookupTypeForExtension(Ext + 1) == types::TY_Object)
1544 Ty = types::TY_Object;
1545 }
1546 if (Ty == types::TY_INVALID) {
1547 Ty = InputType;
1548 InputTypeArg->claim();
1549 }
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001550 }
1551
Hans Wennborg12f4f8b2016-04-15 01:12:32 +00001552 if (DiagnoseInputExistence(*this, Args, Value, Ty))
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001553 Inputs.push_back(std::make_pair(Ty, A));
1554
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001555 } else if (A->getOption().matches(options::OPT__SLASH_Tc)) {
1556 StringRef Value = A->getValue();
Hans Wennborg12f4f8b2016-04-15 01:12:32 +00001557 if (DiagnoseInputExistence(*this, Args, Value, types::TY_C)) {
David Blaikie0aaa7622017-01-13 17:34:15 +00001558 Arg *InputArg = MakeInputArg(Args, *Opts, A->getValue());
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001559 Inputs.push_back(std::make_pair(types::TY_C, InputArg));
1560 }
1561 A->claim();
1562 } else if (A->getOption().matches(options::OPT__SLASH_Tp)) {
1563 StringRef Value = A->getValue();
Hans Wennborg12f4f8b2016-04-15 01:12:32 +00001564 if (DiagnoseInputExistence(*this, Args, Value, types::TY_CXX)) {
David Blaikie0aaa7622017-01-13 17:34:15 +00001565 Arg *InputArg = MakeInputArg(Args, *Opts, A->getValue());
Hans Wennborg6ee64d52013-08-06 00:20:31 +00001566 Inputs.push_back(std::make_pair(types::TY_CXX, InputArg));
1567 }
1568 A->claim();
Michael J. Spencer66e2b202012-10-19 22:37:06 +00001569 } else if (A->getOption().hasFlag(options::LinkerInput)) {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001570 // Just treat as object type, we could make a special type for this if
1571 // necessary.
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001572 Inputs.push_back(std::make_pair(types::TY_Object, A));
1573
Daniel Dunbar0bfb21e2009-11-19 03:26:40 +00001574 } else if (A->getOption().matches(options::OPT_x)) {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001575 InputTypeArg = A;
Richard Smithbd55daf2012-11-01 04:30:05 +00001576 InputType = types::lookupTypeForTypeSpecifier(A->getValue());
Chad Rosier706c2352012-04-07 00:01:31 +00001577 A->claim();
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001578
1579 // Follow gcc behavior and treat as linker input for invalid -x
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00001580 // options. Its not clear why we shouldn't just revert to unknown; but
Michael J. Spencer1a4fe8c2010-12-17 21:22:33 +00001581 // this isn't very important, we might as well be bug compatible.
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001582 if (!InputType) {
Richard Smithbd55daf2012-11-01 04:30:05 +00001583 Diag(clang::diag::err_drv_unknown_language) << A->getValue();
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00001584 InputType = types::TY_Object;
1585 }
1586 }
1587 }
Hans Wennborg70850d82013-07-18 20:29:38 +00001588 if (CCCIsCPP() && Inputs.empty()) {
Joerg Sonnenbergerb86f5f42011-03-06 23:31:01 +00001589 // If called as standalone preprocessor, stdin is processed
1590 // if no other input is present.
David Blaikie0aaa7622017-01-13 17:34:15 +00001591 Arg *A = MakeInputArg(Args, *Opts, "-");
Joerg Sonnenbergerb86f5f42011-03-06 23:31:01 +00001592 Inputs.push_back(std::make_pair(types::TY_C, A));
1593 }
Chad Rosierecdede82011-08-12 22:08:57 +00001594}
1595
Samuel Antao64e965e2016-09-30 15:34:19 +00001596namespace {
1597/// Provides a convenient interface for different programming models to generate
1598/// the required device actions.
1599class OffloadingActionBuilder final {
1600 /// Flag used to trace errors in the builder.
1601 bool IsValid = false;
1602
1603 /// The compilation that is using this builder.
1604 Compilation &C;
1605
Samuel Antao64e965e2016-09-30 15:34:19 +00001606 /// Map between an input argument and the offload kinds used to process it.
1607 std::map<const Arg *, unsigned> InputArgToOffloadKindMap;
1608
1609 /// Builder interface. It doesn't build anything or keep any state.
1610 class DeviceActionBuilder {
1611 public:
1612 typedef llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PhasesTy;
1613
1614 enum ActionBuilderReturnCode {
1615 // The builder acted successfully on the current action.
1616 ABRT_Success,
1617 // The builder didn't have to act on the current action.
1618 ABRT_Inactive,
1619 // The builder was successful and requested the host action to not be
1620 // generated.
1621 ABRT_Ignore_Host,
1622 };
1623
1624 protected:
1625 /// Compilation associated with this builder.
1626 Compilation &C;
1627
1628 /// Tool chains associated with this builder. The same programming
1629 /// model may have associated one or more tool chains.
1630 SmallVector<const ToolChain *, 2> ToolChains;
1631
1632 /// The derived arguments associated with this builder.
1633 DerivedArgList &Args;
1634
1635 /// The inputs associated with this builder.
1636 const Driver::InputList &Inputs;
1637
1638 /// The associated offload kind.
1639 Action::OffloadKind AssociatedOffloadKind = Action::OFK_None;
1640
1641 public:
1642 DeviceActionBuilder(Compilation &C, DerivedArgList &Args,
1643 const Driver::InputList &Inputs,
1644 Action::OffloadKind AssociatedOffloadKind)
1645 : C(C), Args(Args), Inputs(Inputs),
1646 AssociatedOffloadKind(AssociatedOffloadKind) {}
1647 virtual ~DeviceActionBuilder() {}
1648
1649 /// Fill up the array \a DA with all the device dependences that should be
1650 /// added to the provided host action \a HostAction. By default it is
1651 /// inactive.
1652 virtual ActionBuilderReturnCode
Samuel Antao28c4f182016-10-27 17:08:03 +00001653 getDeviceDependences(OffloadAction::DeviceDependences &DA,
1654 phases::ID CurPhase, phases::ID FinalPhase,
1655 PhasesTy &Phases) {
Samuel Antao64e965e2016-09-30 15:34:19 +00001656 return ABRT_Inactive;
1657 }
1658
1659 /// Update the state to include the provided host action \a HostAction as a
1660 /// dependency of the current device action. By default it is inactive.
1661 virtual ActionBuilderReturnCode addDeviceDepences(Action *HostAction) {
1662 return ABRT_Inactive;
1663 }
1664
1665 /// Append top level actions generated by the builder. Return true if errors
1666 /// were found.
1667 virtual void appendTopLevelActions(ActionList &AL) {}
1668
1669 /// Append linker actions generated by the builder. Return true if errors
1670 /// were found.
1671 virtual void appendLinkDependences(OffloadAction::DeviceDependences &DA) {}
1672
1673 /// Initialize the builder. Return true if any initialization errors are
1674 /// found.
1675 virtual bool initialize() { return false; }
1676
Samuel Antao69d6f312016-10-27 17:50:43 +00001677 /// Return true if the builder can use bundling/unbundling.
1678 virtual bool canUseBundlerUnbundler() const { return false; }
1679
Samuel Antao64e965e2016-09-30 15:34:19 +00001680 /// Return true if this builder is valid. We have a valid builder if we have
1681 /// associated device tool chains.
1682 bool isValid() { return !ToolChains.empty(); }
1683
1684 /// Return the associated offload kind.
1685 Action::OffloadKind getAssociatedOffloadKind() {
1686 return AssociatedOffloadKind;
1687 }
1688 };
1689
1690 /// \brief CUDA action builder. It injects device code in the host backend
1691 /// action.
1692 class CudaActionBuilder final : public DeviceActionBuilder {
1693 /// Flags to signal if the user requested host-only or device-only
1694 /// compilation.
1695 bool CompileHostOnly = false;
1696 bool CompileDeviceOnly = false;
1697
1698 /// List of GPU architectures to use in this compilation.
1699 SmallVector<CudaArch, 4> GpuArchList;
1700
1701 /// The CUDA actions for the current input.
1702 ActionList CudaDeviceActions;
1703
1704 /// The CUDA fat binary if it was generated for the current input.
1705 Action *CudaFatBinary = nullptr;
1706
1707 /// Flag that is set to true if this builder acted on the current input.
1708 bool IsActive = false;
1709
1710 public:
1711 CudaActionBuilder(Compilation &C, DerivedArgList &Args,
1712 const Driver::InputList &Inputs)
1713 : DeviceActionBuilder(C, Args, Inputs, Action::OFK_Cuda) {}
1714
1715 ActionBuilderReturnCode
Samuel Antao28c4f182016-10-27 17:08:03 +00001716 getDeviceDependences(OffloadAction::DeviceDependences &DA,
1717 phases::ID CurPhase, phases::ID FinalPhase,
1718 PhasesTy &Phases) override {
Samuel Antao64e965e2016-09-30 15:34:19 +00001719 if (!IsActive)
1720 return ABRT_Inactive;
1721
1722 // If we don't have more CUDA actions, we don't have any dependences to
1723 // create for the host.
1724 if (CudaDeviceActions.empty())
1725 return ABRT_Success;
1726
1727 assert(CudaDeviceActions.size() == GpuArchList.size() &&
1728 "Expecting one action per GPU architecture.");
1729 assert(!CompileHostOnly &&
1730 "Not expecting CUDA actions in host-only compilation.");
1731
1732 // If we are generating code for the device or we are in a backend phase,
1733 // we attempt to generate the fat binary. We compile each arch to ptx and
1734 // assemble to cubin, then feed the cubin *and* the ptx into a device
1735 // "link" action, which uses fatbinary to combine these cubins into one
1736 // fatbin. The fatbin is then an input to the host action if not in
1737 // device-only mode.
1738 if (CompileDeviceOnly || CurPhase == phases::Backend) {
1739 ActionList DeviceActions;
1740 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I) {
1741 // Produce the device action from the current phase up to the assemble
1742 // phase.
1743 for (auto Ph : Phases) {
1744 // Skip the phases that were already dealt with.
1745 if (Ph < CurPhase)
1746 continue;
1747 // We have to be consistent with the host final phase.
1748 if (Ph > FinalPhase)
1749 break;
1750
1751 CudaDeviceActions[I] = C.getDriver().ConstructPhaseAction(
1752 C, Args, Ph, CudaDeviceActions[I]);
1753
1754 if (Ph == phases::Assemble)
1755 break;
1756 }
1757
1758 // If we didn't reach the assemble phase, we can't generate the fat
1759 // binary. We don't need to generate the fat binary if we are not in
1760 // device-only mode.
1761 if (!isa<AssembleJobAction>(CudaDeviceActions[I]) ||
1762 CompileDeviceOnly)
1763 continue;
1764
1765 Action *AssembleAction = CudaDeviceActions[I];
1766 assert(AssembleAction->getType() == types::TY_Object);
1767 assert(AssembleAction->getInputs().size() == 1);
1768
1769 Action *BackendAction = AssembleAction->getInputs()[0];
1770 assert(BackendAction->getType() == types::TY_PP_Asm);
1771
1772 for (auto &A : {AssembleAction, BackendAction}) {
1773 OffloadAction::DeviceDependences DDep;
1774 DDep.add(*A, *ToolChains.front(), CudaArchToString(GpuArchList[I]),
1775 Action::OFK_Cuda);
1776 DeviceActions.push_back(
1777 C.MakeAction<OffloadAction>(DDep, A->getType()));
1778 }
1779 }
1780
1781 // We generate the fat binary if we have device input actions.
1782 if (!DeviceActions.empty()) {
1783 CudaFatBinary =
1784 C.MakeAction<LinkJobAction>(DeviceActions, types::TY_CUDA_FATBIN);
1785
1786 if (!CompileDeviceOnly) {
1787 DA.add(*CudaFatBinary, *ToolChains.front(), /*BoundArch=*/nullptr,
1788 Action::OFK_Cuda);
1789 // Clear the fat binary, it is already a dependence to an host
1790 // action.
1791 CudaFatBinary = nullptr;
1792 }
1793
1794 // Remove the CUDA actions as they are already connected to an host
1795 // action or fat binary.
1796 CudaDeviceActions.clear();
1797 }
1798
1799 // We avoid creating host action in device-only mode.
1800 return CompileDeviceOnly ? ABRT_Ignore_Host : ABRT_Success;
Samuel Antao5b1a89a2016-10-27 00:53:34 +00001801 } else if (CurPhase > phases::Backend) {
1802 // If we are past the backend phase and still have a device action, we
1803 // don't have to do anything as this action is already a device
1804 // top-level action.
1805 return ABRT_Success;
Samuel Antao64e965e2016-09-30 15:34:19 +00001806 }
1807
1808 assert(CurPhase < phases::Backend && "Generating single CUDA "
1809 "instructions should only occur "
1810 "before the backend phase!");
1811
1812 // By default, we produce an action for each device arch.
1813 for (Action *&A : CudaDeviceActions)
1814 A = C.getDriver().ConstructPhaseAction(C, Args, CurPhase, A);
1815
1816 return ABRT_Success;
1817 }
1818
1819 ActionBuilderReturnCode addDeviceDepences(Action *HostAction) override {
1820 // While generating code for CUDA, we only depend on the host input action
1821 // to trigger the creation of all the CUDA device actions.
1822
1823 // If we are dealing with an input action, replicate it for each GPU
1824 // architecture. If we are in host-only mode we return 'success' so that
1825 // the host uses the CUDA offload kind.
1826 if (auto *IA = dyn_cast<InputAction>(HostAction)) {
1827 assert(!GpuArchList.empty() &&
1828 "We should have at least one GPU architecture.");
1829
1830 // If the host input is not CUDA, we don't need to bother about this
1831 // input.
1832 if (IA->getType() != types::TY_CUDA) {
1833 // The builder will ignore this input.
1834 IsActive = false;
1835 return ABRT_Inactive;
1836 }
1837
1838 // Set the flag to true, so that the builder acts on the current input.
1839 IsActive = true;
1840
1841 if (CompileHostOnly)
1842 return ABRT_Success;
1843
1844 // Replicate inputs for each GPU architecture.
1845 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I)
1846 CudaDeviceActions.push_back(C.MakeAction<InputAction>(
1847 IA->getInputArg(), types::TY_CUDA_DEVICE));
1848
1849 return ABRT_Success;
1850 }
1851
1852 return IsActive ? ABRT_Success : ABRT_Inactive;
1853 }
1854
1855 void appendTopLevelActions(ActionList &AL) override {
1856 // Utility to append actions to the top level list.
1857 auto AddTopLevel = [&](Action *A, CudaArch BoundArch) {
1858 OffloadAction::DeviceDependences Dep;
1859 Dep.add(*A, *ToolChains.front(), CudaArchToString(BoundArch),
1860 Action::OFK_Cuda);
1861 AL.push_back(C.MakeAction<OffloadAction>(Dep, A->getType()));
1862 };
1863
1864 // If we have a fat binary, add it to the list.
1865 if (CudaFatBinary) {
1866 AddTopLevel(CudaFatBinary, CudaArch::UNKNOWN);
1867 CudaDeviceActions.clear();
1868 CudaFatBinary = nullptr;
1869 return;
1870 }
1871
1872 if (CudaDeviceActions.empty())
1873 return;
1874
1875 // If we have CUDA actions at this point, that's because we have a have
1876 // partial compilation, so we should have an action for each GPU
1877 // architecture.
1878 assert(CudaDeviceActions.size() == GpuArchList.size() &&
1879 "Expecting one action per GPU architecture.");
1880 assert(ToolChains.size() == 1 &&
1881 "Expecting to have a sing CUDA toolchain.");
1882 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I)
1883 AddTopLevel(CudaDeviceActions[I], GpuArchList[I]);
1884
1885 CudaDeviceActions.clear();
1886 }
1887
1888 bool initialize() override {
1889 // We don't need to support CUDA.
1890 if (!C.hasOffloadToolChain<Action::OFK_Cuda>())
1891 return false;
1892
1893 const ToolChain *HostTC = C.getSingleOffloadToolChain<Action::OFK_Host>();
1894 assert(HostTC && "No toolchain for host compilation.");
1895 if (HostTC->getTriple().isNVPTX()) {
1896 // We do not support targeting NVPTX for host compilation. Throw
1897 // an error and abort pipeline construction early so we don't trip
1898 // asserts that assume device-side compilation.
1899 C.getDriver().Diag(diag::err_drv_cuda_nvptx_host);
1900 return true;
1901 }
1902
1903 ToolChains.push_back(C.getSingleOffloadToolChain<Action::OFK_Cuda>());
1904
1905 Arg *PartialCompilationArg = Args.getLastArg(
1906 options::OPT_cuda_host_only, options::OPT_cuda_device_only,
1907 options::OPT_cuda_compile_host_device);
1908 CompileHostOnly = PartialCompilationArg &&
1909 PartialCompilationArg->getOption().matches(
1910 options::OPT_cuda_host_only);
1911 CompileDeviceOnly = PartialCompilationArg &&
1912 PartialCompilationArg->getOption().matches(
1913 options::OPT_cuda_device_only);
1914
1915 // Collect all cuda_gpu_arch parameters, removing duplicates.
Artem Belevicha424e882016-12-09 22:59:17 +00001916 std::set<CudaArch> GpuArchs;
Samuel Antao64e965e2016-09-30 15:34:19 +00001917 bool Error = false;
1918 for (Arg *A : Args) {
Artem Belevicha424e882016-12-09 22:59:17 +00001919 if (!(A->getOption().matches(options::OPT_cuda_gpu_arch_EQ) ||
1920 A->getOption().matches(options::OPT_no_cuda_gpu_arch_EQ)))
Samuel Antao64e965e2016-09-30 15:34:19 +00001921 continue;
1922 A->claim();
1923
Artem Belevicha424e882016-12-09 22:59:17 +00001924 const StringRef ArchStr = A->getValue();
1925 if (A->getOption().matches(options::OPT_no_cuda_gpu_arch_EQ) &&
1926 ArchStr == "all") {
1927 GpuArchs.clear();
1928 continue;
1929 }
Samuel Antao64e965e2016-09-30 15:34:19 +00001930 CudaArch Arch = StringToCudaArch(ArchStr);
1931 if (Arch == CudaArch::UNKNOWN) {
1932 C.getDriver().Diag(clang::diag::err_drv_cuda_bad_gpu_arch) << ArchStr;
1933 Error = true;
Artem Belevicha424e882016-12-09 22:59:17 +00001934 } else if (A->getOption().matches(options::OPT_cuda_gpu_arch_EQ))
1935 GpuArchs.insert(Arch);
1936 else if (A->getOption().matches(options::OPT_no_cuda_gpu_arch_EQ))
1937 GpuArchs.erase(Arch);
1938 else
1939 llvm_unreachable("Unexpected option.");
Samuel Antao64e965e2016-09-30 15:34:19 +00001940 }
1941
Artem Belevicha424e882016-12-09 22:59:17 +00001942 // Collect list of GPUs remaining in the set.
1943 for (CudaArch Arch : GpuArchs)
1944 GpuArchList.push_back(Arch);
1945
1946 // Default to sm_20 which is the lowest common denominator for
1947 // supported GPUs. sm_20 code should work correctly, if
1948 // suboptimally, on all newer GPUs.
Samuel Antao64e965e2016-09-30 15:34:19 +00001949 if (GpuArchList.empty())
1950 GpuArchList.push_back(CudaArch::SM_20);
1951
1952 return Error;
1953 }
1954 };
1955
Samuel Antao28c4f182016-10-27 17:08:03 +00001956 /// OpenMP action builder. The host bitcode is passed to the device frontend
1957 /// and all the device linked images are passed to the host link phase.
1958 class OpenMPActionBuilder final : public DeviceActionBuilder {
1959 /// The OpenMP actions for the current input.
1960 ActionList OpenMPDeviceActions;
1961
1962 /// The linker inputs obtained for each toolchain.
1963 SmallVector<ActionList, 8> DeviceLinkerInputs;
1964
1965 public:
1966 OpenMPActionBuilder(Compilation &C, DerivedArgList &Args,
1967 const Driver::InputList &Inputs)
1968 : DeviceActionBuilder(C, Args, Inputs, Action::OFK_OpenMP) {}
1969
1970 ActionBuilderReturnCode
1971 getDeviceDependences(OffloadAction::DeviceDependences &DA,
1972 phases::ID CurPhase, phases::ID FinalPhase,
1973 PhasesTy &Phases) override {
1974
1975 // We should always have an action for each input.
1976 assert(OpenMPDeviceActions.size() == ToolChains.size() &&
1977 "Number of OpenMP actions and toolchains do not match.");
1978
1979 // The host only depends on device action in the linking phase, when all
1980 // the device images have to be embedded in the host image.
1981 if (CurPhase == phases::Link) {
1982 assert(ToolChains.size() == DeviceLinkerInputs.size() &&
1983 "Toolchains and linker inputs sizes do not match.");
1984 auto LI = DeviceLinkerInputs.begin();
1985 for (auto *A : OpenMPDeviceActions) {
1986 LI->push_back(A);
1987 ++LI;
1988 }
1989
1990 // We passed the device action as a host dependence, so we don't need to
1991 // do anything else with them.
1992 OpenMPDeviceActions.clear();
1993 return ABRT_Success;
1994 }
1995
1996 // By default, we produce an action for each device arch.
1997 for (Action *&A : OpenMPDeviceActions)
1998 A = C.getDriver().ConstructPhaseAction(C, Args, CurPhase, A);
1999
2000 return ABRT_Success;
2001 }
2002
2003 ActionBuilderReturnCode addDeviceDepences(Action *HostAction) override {
2004
2005 // If this is an input action replicate it for each OpenMP toolchain.
2006 if (auto *IA = dyn_cast<InputAction>(HostAction)) {
2007 OpenMPDeviceActions.clear();
2008 for (unsigned I = 0; I < ToolChains.size(); ++I)
2009 OpenMPDeviceActions.push_back(
2010 C.MakeAction<InputAction>(IA->getInputArg(), IA->getType()));
2011 return ABRT_Success;
2012 }
2013
Samuel Antaofab4f372016-10-27 18:00:51 +00002014 // If this is an unbundling action use it as is for each OpenMP toolchain.
2015 if (auto *UA = dyn_cast<OffloadUnbundlingJobAction>(HostAction)) {
2016 OpenMPDeviceActions.clear();
2017 for (unsigned I = 0; I < ToolChains.size(); ++I) {
2018 OpenMPDeviceActions.push_back(UA);
2019 UA->registerDependentActionInfo(
2020 ToolChains[I], /*BoundArch=*/StringRef(), Action::OFK_OpenMP);
2021 }
2022 return ABRT_Success;
2023 }
2024
Samuel Antao28c4f182016-10-27 17:08:03 +00002025 // When generating code for OpenMP we use the host compile phase result as
2026 // a dependence to the device compile phase so that it can learn what
2027 // declarations should be emitted. However, this is not the only use for
2028 // the host action, so we prevent it from being collapsed.
2029 if (isa<CompileJobAction>(HostAction)) {
2030 HostAction->setCannotBeCollapsedWithNextDependentAction();
2031 assert(ToolChains.size() == OpenMPDeviceActions.size() &&
2032 "Toolchains and device action sizes do not match.");
2033 OffloadAction::HostDependence HDep(
2034 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(),
2035 /*BoundArch=*/nullptr, Action::OFK_OpenMP);
2036 auto TC = ToolChains.begin();
2037 for (Action *&A : OpenMPDeviceActions) {
2038 assert(isa<CompileJobAction>(A));
2039 OffloadAction::DeviceDependences DDep;
2040 DDep.add(*A, **TC, /*BoundArch=*/nullptr, Action::OFK_OpenMP);
2041 A = C.MakeAction<OffloadAction>(HDep, DDep);
2042 ++TC;
2043 }
2044 }
2045 return ABRT_Success;
2046 }
2047
Samuel Antao69d6f312016-10-27 17:50:43 +00002048 void appendTopLevelActions(ActionList &AL) override {
2049 if (OpenMPDeviceActions.empty())
2050 return;
2051
2052 // We should always have an action for each input.
2053 assert(OpenMPDeviceActions.size() == ToolChains.size() &&
2054 "Number of OpenMP actions and toolchains do not match.");
2055
2056 // Append all device actions followed by the proper offload action.
2057 auto TI = ToolChains.begin();
2058 for (auto *A : OpenMPDeviceActions) {
2059 OffloadAction::DeviceDependences Dep;
2060 Dep.add(*A, **TI, /*BoundArch=*/nullptr, Action::OFK_OpenMP);
2061 AL.push_back(C.MakeAction<OffloadAction>(Dep, A->getType()));
2062 ++TI;
2063 }
2064 // We no longer need the action stored in this builder.
2065 OpenMPDeviceActions.clear();
2066 }
2067
Samuel Antao28c4f182016-10-27 17:08:03 +00002068 void appendLinkDependences(OffloadAction::DeviceDependences &DA) override {
2069 assert(ToolChains.size() == DeviceLinkerInputs.size() &&
2070 "Toolchains and linker inputs sizes do not match.");
2071
2072 // Append a new link action for each device.
2073 auto TC = ToolChains.begin();
2074 for (auto &LI : DeviceLinkerInputs) {
2075 auto *DeviceLinkAction =
2076 C.MakeAction<LinkJobAction>(LI, types::TY_Image);
2077 DA.add(*DeviceLinkAction, **TC, /*BoundArch=*/nullptr,
2078 Action::OFK_OpenMP);
2079 ++TC;
2080 }
2081 }
2082
2083 bool initialize() override {
2084 // Get the OpenMP toolchains. If we don't get any, the action builder will
2085 // know there is nothing to do related to OpenMP offloading.
2086 auto OpenMPTCRange = C.getOffloadToolChains<Action::OFK_OpenMP>();
2087 for (auto TI = OpenMPTCRange.first, TE = OpenMPTCRange.second; TI != TE;
2088 ++TI)
2089 ToolChains.push_back(TI->second);
2090
2091 DeviceLinkerInputs.resize(ToolChains.size());
2092 return false;
2093 }
Samuel Antao69d6f312016-10-27 17:50:43 +00002094
2095 bool canUseBundlerUnbundler() const override {
2096 // OpenMP should use bundled files whenever possible.
2097 return true;
2098 }
Samuel Antao28c4f182016-10-27 17:08:03 +00002099 };
2100
2101 ///
2102 /// TODO: Add the implementation for other specialized builders here.
2103 ///
Samuel Antao64e965e2016-09-30 15:34:19 +00002104
2105 /// Specialized builders being used by this offloading action builder.
2106 SmallVector<DeviceActionBuilder *, 4> SpecializedBuilders;
2107
Samuel Antao69d6f312016-10-27 17:50:43 +00002108 /// Flag set to true if all valid builders allow file bundling/unbundling.
2109 bool CanUseBundler;
2110
Samuel Antao64e965e2016-09-30 15:34:19 +00002111public:
2112 OffloadingActionBuilder(Compilation &C, DerivedArgList &Args,
2113 const Driver::InputList &Inputs)
Samuel Antao10e905c2016-10-27 01:08:58 +00002114 : C(C) {
Samuel Antao64e965e2016-09-30 15:34:19 +00002115 // Create a specialized builder for each device toolchain.
2116
2117 IsValid = true;
2118
2119 // Create a specialized builder for CUDA.
2120 SpecializedBuilders.push_back(new CudaActionBuilder(C, Args, Inputs));
2121
Samuel Antao28c4f182016-10-27 17:08:03 +00002122 // Create a specialized builder for OpenMP.
2123 SpecializedBuilders.push_back(new OpenMPActionBuilder(C, Args, Inputs));
2124
Samuel Antao64e965e2016-09-30 15:34:19 +00002125 //
2126 // TODO: Build other specialized builders here.
2127 //
2128
Samuel Antao69d6f312016-10-27 17:50:43 +00002129 // Initialize all the builders, keeping track of errors. If all valid
2130 // builders agree that we can use bundling, set the flag to true.
2131 unsigned ValidBuilders = 0u;
2132 unsigned ValidBuildersSupportingBundling = 0u;
2133 for (auto *SB : SpecializedBuilders) {
Samuel Antao64e965e2016-09-30 15:34:19 +00002134 IsValid = IsValid && !SB->initialize();
Samuel Antao69d6f312016-10-27 17:50:43 +00002135
2136 // Update the counters if the builder is valid.
2137 if (SB->isValid()) {
2138 ++ValidBuilders;
2139 if (SB->canUseBundlerUnbundler())
2140 ++ValidBuildersSupportingBundling;
2141 }
2142 }
2143 CanUseBundler =
2144 ValidBuilders && ValidBuilders == ValidBuildersSupportingBundling;
Artem Belevichf981e30b2016-08-02 22:37:47 +00002145 }
Justin Lebardc3c5042016-04-19 02:27:07 +00002146
Samuel Antao64e965e2016-09-30 15:34:19 +00002147 ~OffloadingActionBuilder() {
2148 for (auto *SB : SpecializedBuilders)
2149 delete SB;
Samuel Antaod06239d2016-07-15 23:13:27 +00002150 }
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002151
Samuel Antao64e965e2016-09-30 15:34:19 +00002152 /// Generate an action that adds device dependences (if any) to a host action.
2153 /// If no device dependence actions exist, just return the host action \a
2154 /// HostAction. If an error is found or if no builder requires the host action
2155 /// to be generated, return nullptr.
2156 Action *
2157 addDeviceDependencesToHostAction(Action *HostAction, const Arg *InputArg,
2158 phases::ID CurPhase, phases::ID FinalPhase,
2159 DeviceActionBuilder::PhasesTy &Phases) {
2160 if (!IsValid)
2161 return nullptr;
Justin Lebar7bf77982016-01-11 23:27:13 +00002162
Samuel Antao64e965e2016-09-30 15:34:19 +00002163 if (SpecializedBuilders.empty())
2164 return HostAction;
2165
2166 assert(HostAction && "Invalid host action!");
2167
2168 OffloadAction::DeviceDependences DDeps;
2169 // Check if all the programming models agree we should not emit the host
2170 // action. Also, keep track of the offloading kinds employed.
2171 auto &OffloadKind = InputArgToOffloadKindMap[InputArg];
2172 unsigned InactiveBuilders = 0u;
2173 unsigned IgnoringBuilders = 0u;
2174 for (auto *SB : SpecializedBuilders) {
2175 if (!SB->isValid()) {
2176 ++InactiveBuilders;
2177 continue;
2178 }
2179
Samuel Antao28c4f182016-10-27 17:08:03 +00002180 auto RetCode =
2181 SB->getDeviceDependences(DDeps, CurPhase, FinalPhase, Phases);
Samuel Antao64e965e2016-09-30 15:34:19 +00002182
2183 // If the builder explicitly says the host action should be ignored,
2184 // we need to increment the variable that tracks the builders that request
2185 // the host object to be ignored.
2186 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host)
2187 ++IgnoringBuilders;
2188
2189 // Unless the builder was inactive for this action, we have to record the
2190 // offload kind because the host will have to use it.
2191 if (RetCode != DeviceActionBuilder::ABRT_Inactive)
2192 OffloadKind |= SB->getAssociatedOffloadKind();
2193 }
2194
2195 // If all builders agree that the host object should be ignored, just return
2196 // nullptr.
2197 if (IgnoringBuilders &&
2198 SpecializedBuilders.size() == (InactiveBuilders + IgnoringBuilders))
2199 return nullptr;
2200
2201 if (DDeps.getActions().empty())
2202 return HostAction;
2203
2204 // We have dependences we need to bundle together. We use an offload action
2205 // for that.
2206 OffloadAction::HostDependence HDep(
2207 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(),
2208 /*BoundArch=*/nullptr, DDeps);
2209 return C.MakeAction<OffloadAction>(HDep, DDeps);
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002210 }
2211
Samuel Antao64e965e2016-09-30 15:34:19 +00002212 /// Generate an action that adds a host dependence to a device action. The
2213 /// results will be kept in this action builder. Return true if an error was
2214 /// found.
Samuel Antaofab4f372016-10-27 18:00:51 +00002215 bool addHostDependenceToDeviceActions(Action *&HostAction,
Samuel Antao64e965e2016-09-30 15:34:19 +00002216 const Arg *InputArg) {
2217 if (!IsValid)
2218 return true;
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002219
Samuel Antaofab4f372016-10-27 18:00:51 +00002220 // If we are supporting bundling/unbundling and the current action is an
2221 // input action of non-source file, we replace the host action by the
2222 // unbundling action. The bundler tool has the logic to detect if an input
2223 // is a bundle or not and if the input is not a bundle it assumes it is a
2224 // host file. Therefore it is safe to create an unbundling action even if
2225 // the input is not a bundle.
2226 if (CanUseBundler && isa<InputAction>(HostAction) &&
2227 InputArg->getOption().getKind() == llvm::opt::Option::InputClass &&
2228 !types::isSrcFile(HostAction->getType())) {
2229 auto UnbundlingHostAction =
2230 C.MakeAction<OffloadUnbundlingJobAction>(HostAction);
2231 UnbundlingHostAction->registerDependentActionInfo(
2232 C.getSingleOffloadToolChain<Action::OFK_Host>(),
2233 /*BoundArch=*/StringRef(), Action::OFK_Host);
2234 HostAction = UnbundlingHostAction;
2235 }
2236
Samuel Antao64e965e2016-09-30 15:34:19 +00002237 assert(HostAction && "Invalid host action!");
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002238
Samuel Antao64e965e2016-09-30 15:34:19 +00002239 // Register the offload kinds that are used.
2240 auto &OffloadKind = InputArgToOffloadKindMap[InputArg];
2241 for (auto *SB : SpecializedBuilders) {
2242 if (!SB->isValid())
2243 continue;
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002244
Samuel Antao64e965e2016-09-30 15:34:19 +00002245 auto RetCode = SB->addDeviceDepences(HostAction);
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002246
Samuel Antao64e965e2016-09-30 15:34:19 +00002247 // Host dependences for device actions are not compatible with that same
2248 // action being ignored.
2249 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host &&
2250 "Host dependence not expected to be ignored.!");
Samuel Antaod06239d2016-07-15 23:13:27 +00002251
Samuel Antao64e965e2016-09-30 15:34:19 +00002252 // Unless the builder was inactive for this action, we have to record the
2253 // offload kind because the host will have to use it.
2254 if (RetCode != DeviceActionBuilder::ABRT_Inactive)
2255 OffloadKind |= SB->getAssociatedOffloadKind();
2256 }
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002257
Samuel Antao64e965e2016-09-30 15:34:19 +00002258 return false;
2259 }
2260
Samuel Antao69d6f312016-10-27 17:50:43 +00002261 /// Add the offloading top level actions to the provided action list. This
2262 /// function can replace the host action by a bundling action if the
2263 /// programming models allow it.
Samuel Antao64e965e2016-09-30 15:34:19 +00002264 bool appendTopLevelActions(ActionList &AL, Action *HostAction,
2265 const Arg *InputArg) {
Samuel Antao69d6f312016-10-27 17:50:43 +00002266 // Get the device actions to be appended.
2267 ActionList OffloadAL;
Samuel Antao64e965e2016-09-30 15:34:19 +00002268 for (auto *SB : SpecializedBuilders) {
2269 if (!SB->isValid())
2270 continue;
Samuel Antao69d6f312016-10-27 17:50:43 +00002271 SB->appendTopLevelActions(OffloadAL);
Samuel Antao64e965e2016-09-30 15:34:19 +00002272 }
2273
Samuel Antao69d6f312016-10-27 17:50:43 +00002274 // If we can use the bundler, replace the host action by the bundling one in
2275 // the resulting list. Otherwise, just append the device actions.
2276 if (CanUseBundler && !OffloadAL.empty()) {
2277 // Add the host action to the list in order to create the bundling action.
2278 OffloadAL.push_back(HostAction);
2279
2280 // We expect that the host action was just appended to the action list
2281 // before this method was called.
2282 assert(HostAction == AL.back() && "Host action not in the list??");
2283 HostAction = C.MakeAction<OffloadBundlingJobAction>(OffloadAL);
2284 AL.back() = HostAction;
2285 } else
2286 AL.append(OffloadAL.begin(), OffloadAL.end());
2287
Samuel Antao64e965e2016-09-30 15:34:19 +00002288 // Propagate to the current host action (if any) the offload information
2289 // associated with the current input.
2290 if (HostAction)
2291 HostAction->propagateHostOffloadInfo(InputArgToOffloadKindMap[InputArg],
2292 /*BoundArch=*/nullptr);
Samuel Antao64e965e2016-09-30 15:34:19 +00002293 return false;
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002294 }
Artem Belevich5bde4e02015-07-20 20:02:54 +00002295
Samuel Antao64e965e2016-09-30 15:34:19 +00002296 /// Processes the host linker action. This currently consists of replacing it
2297 /// with an offload action if there are device link objects and propagate to
2298 /// the host action all the offload kinds used in the current compilation. The
2299 /// resulting action is returned.
2300 Action *processHostLinkAction(Action *HostAction) {
2301 // Add all the dependences from the device linking actions.
2302 OffloadAction::DeviceDependences DDeps;
2303 for (auto *SB : SpecializedBuilders) {
2304 if (!SB->isValid())
2305 continue;
Justin Lebar21e5d4f2016-01-14 21:41:27 +00002306
Samuel Antao64e965e2016-09-30 15:34:19 +00002307 SB->appendLinkDependences(DDeps);
Justin Lebar21e5d4f2016-01-14 21:41:27 +00002308 }
Samuel Antaod06239d2016-07-15 23:13:27 +00002309
Samuel Antao64e965e2016-09-30 15:34:19 +00002310 // Calculate all the offload kinds used in the current compilation.
2311 unsigned ActiveOffloadKinds = 0u;
2312 for (auto &I : InputArgToOffloadKindMap)
2313 ActiveOffloadKinds |= I.second;
2314
2315 // If we don't have device dependencies, we don't have to create an offload
2316 // action.
2317 if (DDeps.getActions().empty()) {
2318 // Propagate all the active kinds to host action. Given that it is a link
2319 // action it is assumed to depend on all actions generated so far.
2320 HostAction->propagateHostOffloadInfo(ActiveOffloadKinds,
2321 /*BoundArch=*/nullptr);
2322 return HostAction;
2323 }
2324
2325 // Create the offload action with all dependences. When an offload action
2326 // is created the kinds are propagated to the host action, so we don't have
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002327 // to do that explicitly here.
Samuel Antao64e965e2016-09-30 15:34:19 +00002328 OffloadAction::HostDependence HDep(
2329 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(),
2330 /*BoundArch*/ nullptr, ActiveOffloadKinds);
2331 return C.MakeAction<OffloadAction>(HDep, DDeps);
2332 }
2333};
2334} // anonymous namespace.
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002335
Justin Lebar0f3474c2016-02-11 02:00:50 +00002336void Driver::BuildActions(Compilation &C, DerivedArgList &Args,
2337 const InputList &Inputs, ActionList &Actions) const {
Chad Rosierecdede82011-08-12 22:08:57 +00002338 llvm::PrettyStackTraceString CrashInfo("Building compilation actions");
Joerg Sonnenbergerb86f5f42011-03-06 23:31:01 +00002339
Daniel Dunbar34c41872009-03-13 00:17:48 +00002340 if (!SuppressMissingInputWarning && Inputs.empty()) {
Daniel Dunbarbfeec742009-03-12 23:55:14 +00002341 Diag(clang::diag::err_drv_no_input_files);
2342 return;
2343 }
2344
Chad Rosier7742b5d2011-07-27 23:36:45 +00002345 Arg *FinalPhaseArg;
2346 phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg);
Daniel Dunbarbfeec742009-03-12 23:55:14 +00002347
Rafael Espindolae8025642013-08-25 14:27:09 +00002348 if (FinalPhase == phases::Link && Args.hasArg(options::OPT_emit_llvm)) {
2349 Diag(clang::diag::err_drv_emit_llvm_link);
2350 }
2351
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002352 // Reject -Z* at the top level, these options should never have been exposed
2353 // by gcc.
Daniel Dunbardd765242009-03-26 16:12:09 +00002354 if (Arg *A = Args.getLastArg(options::OPT_Z_Joined))
Daniel Dunbar0e759942009-03-20 06:14:23 +00002355 Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args);
Daniel Dunbarbfeec742009-03-12 23:55:14 +00002356
Hans Wennborg13b7fe72013-08-12 23:26:25 +00002357 // Diagnose misuse of /Fo.
2358 if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fo)) {
Hans Wennborg13b7fe72013-08-12 23:26:25 +00002359 StringRef V = A->getValue();
Hans Wennborg61647532014-11-17 19:16:36 +00002360 if (Inputs.size() > 1 && !V.empty() &&
2361 !llvm::sys::path::is_separator(V.back())) {
Hans Wennborg13b7fe72013-08-12 23:26:25 +00002362 // Check whether /Fo tries to name an output file for multiple inputs.
Hans Wennborg9c1659b2013-10-18 22:49:04 +00002363 Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002364 << A->getSpelling() << V;
Hans Wennborg13b7fe72013-08-12 23:26:25 +00002365 Args.eraseArg(options::OPT__SLASH_Fo);
2366 }
2367 }
2368
Hans Wennborg9c1659b2013-10-18 22:49:04 +00002369 // Diagnose misuse of /Fa.
2370 if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fa)) {
2371 StringRef V = A->getValue();
Hans Wennborg61647532014-11-17 19:16:36 +00002372 if (Inputs.size() > 1 && !V.empty() &&
2373 !llvm::sys::path::is_separator(V.back())) {
Hans Wennborg9c1659b2013-10-18 22:49:04 +00002374 // Check whether /Fa tries to name an asm file for multiple inputs.
2375 Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002376 << A->getSpelling() << V;
Hans Wennborg9c1659b2013-10-18 22:49:04 +00002377 Args.eraseArg(options::OPT__SLASH_Fa);
2378 }
2379 }
2380
Ehsan Akhgari81f36b72014-09-11 18:16:21 +00002381 // Diagnose misuse of /o.
2382 if (Arg *A = Args.getLastArg(options::OPT__SLASH_o)) {
2383 if (A->getValue()[0] == '\0') {
2384 // It has to have a value.
2385 Diag(clang::diag::err_drv_missing_argument) << A->getSpelling() << 1;
2386 Args.eraseArg(options::OPT__SLASH_o);
2387 }
2388 }
2389
Nico Weber2ca4be92016-03-01 23:16:44 +00002390 // Diagnose unsupported forms of /Yc /Yu. Ignore /Yc/Yu for now if:
2391 // * no filename after it
2392 // * both /Yc and /Yu passed but with different filenames
2393 // * corresponding file not also passed as /FI
2394 Arg *YcArg = Args.getLastArg(options::OPT__SLASH_Yc);
2395 Arg *YuArg = Args.getLastArg(options::OPT__SLASH_Yu);
2396 if (YcArg && YcArg->getValue()[0] == '\0') {
2397 Diag(clang::diag::warn_drv_ycyu_no_arg_clang_cl) << YcArg->getSpelling();
2398 Args.eraseArg(options::OPT__SLASH_Yc);
2399 YcArg = nullptr;
2400 }
2401 if (YuArg && YuArg->getValue()[0] == '\0') {
2402 Diag(clang::diag::warn_drv_ycyu_no_arg_clang_cl) << YuArg->getSpelling();
2403 Args.eraseArg(options::OPT__SLASH_Yu);
2404 YuArg = nullptr;
2405 }
2406 if (YcArg && YuArg && strcmp(YcArg->getValue(), YuArg->getValue()) != 0) {
2407 Diag(clang::diag::warn_drv_ycyu_different_arg_clang_cl);
2408 Args.eraseArg(options::OPT__SLASH_Yc);
2409 Args.eraseArg(options::OPT__SLASH_Yu);
2410 YcArg = YuArg = nullptr;
2411 }
2412 if (YcArg || YuArg) {
2413 StringRef Val = YcArg ? YcArg->getValue() : YuArg->getValue();
2414 bool FoundMatchingInclude = false;
2415 for (const Arg *Inc : Args.filtered(options::OPT_include)) {
2416 // FIXME: Do case-insensitive matching and consider / and \ as equal.
2417 if (Inc->getValue() == Val)
2418 FoundMatchingInclude = true;
2419 }
2420 if (!FoundMatchingInclude) {
2421 Diag(clang::diag::warn_drv_ycyu_no_fi_arg_clang_cl)
2422 << (YcArg ? YcArg : YuArg)->getSpelling();
2423 Args.eraseArg(options::OPT__SLASH_Yc);
2424 Args.eraseArg(options::OPT__SLASH_Yu);
2425 YcArg = YuArg = nullptr;
2426 }
2427 }
2428 if (YcArg && Inputs.size() > 1) {
2429 Diag(clang::diag::warn_drv_yc_multiple_inputs_clang_cl);
2430 Args.eraseArg(options::OPT__SLASH_Yc);
2431 YcArg = nullptr;
2432 }
2433 if (Args.hasArg(options::OPT__SLASH_Y_)) {
2434 // /Y- disables all pch handling. Rather than check for it everywhere,
2435 // just remove clang-cl pch-related flags here.
2436 Args.eraseArg(options::OPT__SLASH_Fp);
2437 Args.eraseArg(options::OPT__SLASH_Yc);
2438 Args.eraseArg(options::OPT__SLASH_Yu);
2439 YcArg = YuArg = nullptr;
2440 }
Nico Weber2ca4be92016-03-01 23:16:44 +00002441
Samuel Antao64e965e2016-09-30 15:34:19 +00002442 // Builder to be used to build offloading actions.
2443 OffloadingActionBuilder OffloadBuilder(C, Args, Inputs);
Samuel Antaod06239d2016-07-15 23:13:27 +00002444
Daniel Dunbar65229332009-03-13 11:38:42 +00002445 // Construct the actions to perform.
2446 ActionList LinkerInputs;
Alp Toker965f8822013-11-27 05:22:15 +00002447
Matthew Curtis7ab8b2b2013-03-07 12:32:26 +00002448 llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PL;
Artem Belevich5bde4e02015-07-20 20:02:54 +00002449 for (auto &I : Inputs) {
2450 types::ID InputType = I.first;
2451 const Arg *InputArg = I.second;
Daniel Dunbar65229332009-03-13 11:38:42 +00002452
Matthew Curtis7ab8b2b2013-03-07 12:32:26 +00002453 PL.clear();
2454 types::getCompilationPhases(InputType, PL);
Daniel Dunbar65229332009-03-13 11:38:42 +00002455
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002456 // If the first step comes after the final phase we are doing as part of
2457 // this compilation, warn the user about it.
Matthew Curtis7ab8b2b2013-03-07 12:32:26 +00002458 phases::ID InitialPhase = PL[0];
Daniel Dunbar65229332009-03-13 11:38:42 +00002459 if (InitialPhase > FinalPhase) {
Daniel Dunbaradc5c7c2009-03-19 07:57:08 +00002460 // Claim here to avoid the more general unused warning.
2461 InputArg->claim();
Daniel Dunbar07806ca2009-09-17 04:13:26 +00002462
Daniel Dunbar2db3e732011-04-20 15:44:48 +00002463 // Suppress all unused style warnings with -Qunused-arguments
2464 if (Args.hasArg(options::OPT_Qunused_arguments))
2465 continue;
2466
Richard Smith403f76e2012-08-06 04:09:06 +00002467 // Special case when final phase determined by binary name, rather than
2468 // by a command-line argument with a corresponding Arg.
Hans Wennborg70850d82013-07-18 20:29:38 +00002469 if (CCCIsCPP())
Richard Smith403f76e2012-08-06 04:09:06 +00002470 Diag(clang::diag::warn_drv_input_file_unused_by_cpp)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002471 << InputArg->getAsString(Args) << getPhaseName(InitialPhase);
Daniel Dunbar07806ca2009-09-17 04:13:26 +00002472 // Special case '-E' warning on a previously preprocessed file to make
2473 // more sense.
Richard Smith403f76e2012-08-06 04:09:06 +00002474 else if (InitialPhase == phases::Compile &&
2475 FinalPhase == phases::Preprocess &&
2476 getPreprocessedType(InputType) == types::TY_INVALID)
Daniel Dunbar07806ca2009-09-17 04:13:26 +00002477 Diag(clang::diag::warn_drv_preprocessed_input_file_unused)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002478 << InputArg->getAsString(Args) << !!FinalPhaseArg
2479 << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "");
Daniel Dunbar07806ca2009-09-17 04:13:26 +00002480 else
2481 Diag(clang::diag::warn_drv_input_file_unused)
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002482 << InputArg->getAsString(Args) << getPhaseName(InitialPhase)
2483 << !!FinalPhaseArg
2484 << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "");
Daniel Dunbar65229332009-03-13 11:38:42 +00002485 continue;
2486 }
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002487
Nico Weberad2d8f32016-04-21 19:59:10 +00002488 if (YcArg) {
2489 // Add a separate precompile phase for the compile phase.
2490 if (FinalPhase >= phases::Compile) {
Richard Smith8cd452d2016-08-30 18:55:16 +00002491 const types::ID HeaderType = lookupHeaderTypeForSourceType(InputType);
Nico Weberad2d8f32016-04-21 19:59:10 +00002492 llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PCHPL;
Richard Smith8cd452d2016-08-30 18:55:16 +00002493 types::getCompilationPhases(HeaderType, PCHPL);
David Blaikie0aaa7622017-01-13 17:34:15 +00002494 Arg *PchInputArg = MakeInputArg(Args, *Opts, YcArg->getValue());
Nico Weberad2d8f32016-04-21 19:59:10 +00002495
2496 // Build the pipeline for the pch file.
Richard Smith8cd452d2016-08-30 18:55:16 +00002497 Action *ClangClPch =
2498 C.MakeAction<InputAction>(*PchInputArg, HeaderType);
Nico Weberad2d8f32016-04-21 19:59:10 +00002499 for (phases::ID Phase : PCHPL)
2500 ClangClPch = ConstructPhaseAction(C, Args, Phase, ClangClPch);
2501 assert(ClangClPch);
2502 Actions.push_back(ClangClPch);
2503 // The driver currently exits after the first failed command. This
2504 // relies on that behavior, to make sure if the pch generation fails,
2505 // the main compilation won't run.
2506 }
2507 }
2508
Daniel Dunbar65229332009-03-13 11:38:42 +00002509 // Build the pipeline for this file.
Justin Lebar41094612016-01-11 23:07:27 +00002510 Action *Current = C.MakeAction<InputAction>(*InputArg, InputType);
Samuel Antao64e965e2016-09-30 15:34:19 +00002511
2512 // Use the current host action in any of the offloading actions, if
2513 // required.
2514 if (OffloadBuilder.addHostDependenceToDeviceActions(Current, InputArg))
2515 break;
2516
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002517 for (SmallVectorImpl<phases::ID>::iterator i = PL.begin(), e = PL.end();
2518 i != e; ++i) {
Matthew Curtis7ab8b2b2013-03-07 12:32:26 +00002519 phases::ID Phase = *i;
Daniel Dunbar65229332009-03-13 11:38:42 +00002520
2521 // We are done if this step is past what the user requested.
2522 if (Phase > FinalPhase)
2523 break;
2524
Samuel Antao64e965e2016-09-30 15:34:19 +00002525 // Add any offload action the host action depends on.
2526 Current = OffloadBuilder.addDeviceDependencesToHostAction(
2527 Current, InputArg, Phase, FinalPhase, PL);
2528 if (!Current)
2529 break;
2530
Daniel Dunbar65229332009-03-13 11:38:42 +00002531 // Queue linker inputs.
2532 if (Phase == phases::Link) {
Matthew Curtis7ab8b2b2013-03-07 12:32:26 +00002533 assert((i + 1) == e && "linking must be final compilation step.");
Justin Lebar41094612016-01-11 23:07:27 +00002534 LinkerInputs.push_back(Current);
2535 Current = nullptr;
Daniel Dunbar65229332009-03-13 11:38:42 +00002536 break;
2537 }
2538
Samuel Antao64e965e2016-09-30 15:34:19 +00002539 // Otherwise construct the appropriate action.
2540 auto *NewCurrent = ConstructPhaseAction(C, Args, Phase, Current);
2541
2542 // We didn't create a new action, so we will just move to the next phase.
2543 if (NewCurrent == Current)
Daniel Dunbar13864952009-03-24 20:17:30 +00002544 continue;
2545
Samuel Antao64e965e2016-09-30 15:34:19 +00002546 Current = NewCurrent;
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002547
Samuel Antao64e965e2016-09-30 15:34:19 +00002548 // Use the current host action in any of the offloading actions, if
2549 // required.
2550 if (OffloadBuilder.addHostDependenceToDeviceActions(Current, InputArg))
2551 break;
Artem Belevich0ff05cd2015-07-13 23:27:56 +00002552
Daniel Dunbar65229332009-03-13 11:38:42 +00002553 if (Current->getType() == types::TY_Nothing)
2554 break;
2555 }
2556
Samuel Antao64e965e2016-09-30 15:34:19 +00002557 // If we ended with something, add to the output list.
2558 if (Current)
Justin Lebar41094612016-01-11 23:07:27 +00002559 Actions.push_back(Current);
Samuel Antao64e965e2016-09-30 15:34:19 +00002560
2561 // Add any top level actions generated for offloading.
2562 OffloadBuilder.appendTopLevelActions(Actions, Current, InputArg);
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00002563 }
Daniel Dunbar65229332009-03-13 11:38:42 +00002564
Samuel Antao64e965e2016-09-30 15:34:19 +00002565 // Add a link action if necessary.
Samuel Antaod06239d2016-07-15 23:13:27 +00002566 if (!LinkerInputs.empty()) {
Samuel Antao64e965e2016-09-30 15:34:19 +00002567 Action *LA = C.MakeAction<LinkJobAction>(LinkerInputs, types::TY_Image);
2568 LA = OffloadBuilder.processHostLinkAction(LA);
2569 Actions.push_back(LA);
Samuel Antaod06239d2016-07-15 23:13:27 +00002570 }
Daniel Dunbarc7a67b72009-12-22 23:19:32 +00002571
2572 // If we are linking, claim any options which are obviously only used for
2573 // compilation.
Hans Wennborga8ef14f2013-09-17 00:03:41 +00002574 if (FinalPhase == phases::Link && PL.size() == 1) {
Daniel Dunbarc7a67b72009-12-22 23:19:32 +00002575 Args.ClaimAllArgs(options::OPT_CompileOnly_Group);
Hans Wennborga8ef14f2013-09-17 00:03:41 +00002576 Args.ClaimAllArgs(options::OPT_cl_compile_Group);
2577 }
2578
2579 // Claim ignored clang-cl options.
2580 Args.ClaimAllArgs(options::OPT_cl_ignored_Group);
Artem Belevichbaae0932015-07-28 21:01:30 +00002581
Justin Lebardc3c5042016-04-19 02:27:07 +00002582 // Claim --cuda-host-only and --cuda-compile-host-device, which may be passed
2583 // to non-CUDA compilations and should not trigger warnings there.
Artem Belevichbaae0932015-07-28 21:01:30 +00002584 Args.ClaimAllArgs(options::OPT_cuda_host_only);
Justin Lebardc3c5042016-04-19 02:27:07 +00002585 Args.ClaimAllArgs(options::OPT_cuda_compile_host_device);
Daniel Dunbar65229332009-03-13 11:38:42 +00002586}
2587
Justin Lebar0f3474c2016-02-11 02:00:50 +00002588Action *Driver::ConstructPhaseAction(Compilation &C, const ArgList &Args,
2589 phases::ID Phase, Action *Input) const {
Daniel Dunbar2608c542009-03-18 01:38:48 +00002590 llvm::PrettyStackTraceString CrashInfo("Constructing phase actions");
Samuel Antao64e965e2016-09-30 15:34:19 +00002591
2592 // Some types skip the assembler phase (e.g., llvm-bc), but we can't
2593 // encode this in the steps because the intermediate type depends on
2594 // arguments. Just special case here.
2595 if (Phase == phases::Assemble && Input->getType() != types::TY_PP_Asm)
2596 return Input;
2597
Daniel Dunbar65229332009-03-13 11:38:42 +00002598 // Build the appropriate action.
2599 switch (Phase) {
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002600 case phases::Link:
2601 llvm_unreachable("link action invalid here.");
Daniel Dunbar65229332009-03-13 11:38:42 +00002602 case phases::Preprocess: {
Daniel Dunbard67a3222009-03-30 06:36:42 +00002603 types::ID OutputTy;
2604 // -{M, MM} alter the output type.
Daniel Dunbar86aed7d2010-12-08 21:33:40 +00002605 if (Args.hasArg(options::OPT_M, options::OPT_MM)) {
Daniel Dunbard67a3222009-03-30 06:36:42 +00002606 OutputTy = types::TY_Dependencies;
2607 } else {
David Blaikie5d577a22012-06-29 22:03:56 +00002608 OutputTy = Input->getType();
2609 if (!Args.hasFlag(options::OPT_frewrite_includes,
Justin Bognerce8245b2014-06-24 08:01:01 +00002610 options::OPT_fno_rewrite_includes, false) &&
2611 !CCGenDiagnostics)
David Blaikie5d577a22012-06-29 22:03:56 +00002612 OutputTy = types::getPreprocessedType(OutputTy);
Daniel Dunbard67a3222009-03-30 06:36:42 +00002613 assert(OutputTy != types::TY_INVALID &&
2614 "Cannot preprocess this input type!");
2615 }
Justin Lebar41094612016-01-11 23:07:27 +00002616 return C.MakeAction<PreprocessJobAction>(Input, OutputTy);
Daniel Dunbar65229332009-03-13 11:38:42 +00002617 }
Aaron Ballman1f10cc52012-07-31 01:21:00 +00002618 case phases::Precompile: {
Richard Smithdd4ad3d2016-08-30 19:06:26 +00002619 types::ID OutputTy = getPrecompiledType(Input->getType());
2620 assert(OutputTy != types::TY_INVALID &&
2621 "Cannot precompile this input type!");
Aaron Ballman1f10cc52012-07-31 01:21:00 +00002622 if (Args.hasArg(options::OPT_fsyntax_only)) {
2623 // Syntax checks should not emit a PCH file
2624 OutputTy = types::TY_Nothing;
2625 }
Justin Lebar41094612016-01-11 23:07:27 +00002626 return C.MakeAction<PrecompileJobAction>(Input, OutputTy);
Aaron Ballman1f10cc52012-07-31 01:21:00 +00002627 }
Daniel Dunbar65229332009-03-13 11:38:42 +00002628 case phases::Compile: {
David Blaikie486f4402014-08-29 07:25:23 +00002629 if (Args.hasArg(options::OPT_fsyntax_only))
Justin Lebar41094612016-01-11 23:07:27 +00002630 return C.MakeAction<CompileJobAction>(Input, types::TY_Nothing);
David Blaikie486f4402014-08-29 07:25:23 +00002631 if (Args.hasArg(options::OPT_rewrite_objc))
Justin Lebar41094612016-01-11 23:07:27 +00002632 return C.MakeAction<CompileJobAction>(Input, types::TY_RewrittenObjC);
David Blaikie486f4402014-08-29 07:25:23 +00002633 if (Args.hasArg(options::OPT_rewrite_legacy_objc))
Justin Lebar41094612016-01-11 23:07:27 +00002634 return C.MakeAction<CompileJobAction>(Input,
2635 types::TY_RewrittenLegacyObjC);
David Blaikie486f4402014-08-29 07:25:23 +00002636 if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto))
Justin Lebar41094612016-01-11 23:07:27 +00002637 return C.MakeAction<AnalyzeJobAction>(Input, types::TY_Plist);
David Blaikie486f4402014-08-29 07:25:23 +00002638 if (Args.hasArg(options::OPT__migrate))
Justin Lebar41094612016-01-11 23:07:27 +00002639 return C.MakeAction<MigrateJobAction>(Input, types::TY_Remap);
David Blaikie486f4402014-08-29 07:25:23 +00002640 if (Args.hasArg(options::OPT_emit_ast))
Justin Lebar41094612016-01-11 23:07:27 +00002641 return C.MakeAction<CompileJobAction>(Input, types::TY_AST);
David Blaikie486f4402014-08-29 07:25:23 +00002642 if (Args.hasArg(options::OPT_module_file_info))
Justin Lebar41094612016-01-11 23:07:27 +00002643 return C.MakeAction<CompileJobAction>(Input, types::TY_ModuleFile);
David Blaikie486f4402014-08-29 07:25:23 +00002644 if (Args.hasArg(options::OPT_verify_pch))
Justin Lebar41094612016-01-11 23:07:27 +00002645 return C.MakeAction<VerifyPCHJobAction>(Input, types::TY_Nothing);
2646 return C.MakeAction<CompileJobAction>(Input, types::TY_LLVM_BC);
Bob Wilson23a55f12014-12-21 07:00:00 +00002647 }
2648 case phases::Backend: {
Teresa Johnson945bc502015-10-15 20:35:53 +00002649 if (isUsingLTO()) {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002650 types::ID Output =
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002651 Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC;
Justin Lebar41094612016-01-11 23:07:27 +00002652 return C.MakeAction<BackendJobAction>(Input, Output);
David Blaikie486f4402014-08-29 07:25:23 +00002653 }
2654 if (Args.hasArg(options::OPT_emit_llvm)) {
Shuxin Yang4b3c7ff2013-08-23 21:34:57 +00002655 types::ID Output =
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002656 Args.hasArg(options::OPT_S) ? types::TY_LLVM_IR : types::TY_LLVM_BC;
Justin Lebar41094612016-01-11 23:07:27 +00002657 return C.MakeAction<BackendJobAction>(Input, Output);
Daniel Dunbar65229332009-03-13 11:38:42 +00002658 }
Justin Lebar41094612016-01-11 23:07:27 +00002659 return C.MakeAction<BackendJobAction>(Input, types::TY_PP_Asm);
Daniel Dunbar65229332009-03-13 11:38:42 +00002660 }
2661 case phases::Assemble:
Justin Lebar21e5d4f2016-01-14 21:41:27 +00002662 return C.MakeAction<AssembleJobAction>(std::move(Input), types::TY_Object);
Daniel Dunbar65229332009-03-13 11:38:42 +00002663 }
2664
David Blaikie83d382b2011-09-23 05:06:16 +00002665 llvm_unreachable("invalid phase in ConstructPhaseAction");
Daniel Dunbar1688f1a2009-03-12 07:58:46 +00002666}
2667
Daniel Dunbarf0eddb82009-03-18 02:55:38 +00002668void Driver::BuildJobs(Compilation &C) const {
Daniel Dunbar2608c542009-03-18 01:38:48 +00002669 llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
Daniel Dunbare75d8342009-03-16 06:56:51 +00002670
2671 Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
2672
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002673 // It is an error to provide a -o option if we are making multiple output
2674 // files.
Daniel Dunbare75d8342009-03-16 06:56:51 +00002675 if (FinalOutput) {
2676 unsigned NumOutputs = 0;
Saleem Abdulrasoolda3f4e52014-12-29 21:02:47 +00002677 for (const Action *A : C.getActions())
2678 if (A->getType() != types::TY_Nothing)
Daniel Dunbare75d8342009-03-16 06:56:51 +00002679 ++NumOutputs;
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002680
Daniel Dunbare75d8342009-03-16 06:56:51 +00002681 if (NumOutputs > 1) {
2682 Diag(clang::diag::err_drv_output_argument_with_multiple_files);
Craig Topper92fc2df2014-05-17 16:56:41 +00002683 FinalOutput = nullptr;
Daniel Dunbare75d8342009-03-16 06:56:51 +00002684 }
2685 }
2686
Chad Rosier35767232013-04-30 22:01:21 +00002687 // Collect the list of architectures.
2688 llvm::StringSet<> ArchNames;
Saleem Abdulrasool688b6bc2014-12-29 19:01:36 +00002689 if (C.getDefaultToolChain().getTriple().isOSBinFormatMachO())
2690 for (const Arg *A : C.getArgs())
Chad Rosier35767232013-04-30 22:01:21 +00002691 if (A->getOption().matches(options::OPT_arch))
2692 ArchNames.insert(A->getValue());
Chad Rosier35767232013-04-30 22:01:21 +00002693
Justin Lebarb44f6fe2016-01-14 21:41:21 +00002694 // Set of (Action, canonical ToolChain triple) pairs we've built jobs for.
2695 std::map<std::pair<const Action *, std::string>, InputInfo> CachedResults;
Saleem Abdulrasool688b6bc2014-12-29 19:01:36 +00002696 for (Action *A : C.getActions()) {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002697 // If we are linking an image for multiple archs then the linker wants
2698 // -arch_multiple and -final_output <final image name>. Unfortunately, this
2699 // doesn't fit in cleanly because we have to pass this information down.
Daniel Dunbare75d8342009-03-16 06:56:51 +00002700 //
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002701 // FIXME: This is a hack; find a cleaner way to integrate this into the
2702 // process.
Craig Topper92fc2df2014-05-17 16:56:41 +00002703 const char *LinkingOutput = nullptr;
Daniel Dunbardd765242009-03-26 16:12:09 +00002704 if (isa<LipoJobAction>(A)) {
Daniel Dunbare75d8342009-03-16 06:56:51 +00002705 if (FinalOutput)
Richard Smithbd55daf2012-11-01 04:30:05 +00002706 LinkingOutput = FinalOutput->getValue();
Daniel Dunbare75d8342009-03-16 06:56:51 +00002707 else
Hans Wennborga7707222015-01-09 17:38:53 +00002708 LinkingOutput = getDefaultImageName();
Daniel Dunbare75d8342009-03-16 06:56:51 +00002709 }
2710
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002711 BuildJobsForAction(C, A, &C.getDefaultToolChain(),
Mehdi Aminic50b1a22016-10-07 21:27:26 +00002712 /*BoundArch*/ StringRef(),
Daniel Dunbare75d8342009-03-16 06:56:51 +00002713 /*AtTopLevel*/ true,
Chad Rosier35767232013-04-30 22:01:21 +00002714 /*MultipleArchs*/ ArchNames.size() > 1,
Samuel Antaod06239d2016-07-15 23:13:27 +00002715 /*LinkingOutput*/ LinkingOutput, CachedResults,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00002716 /*TargetDeviceOffloadKind*/ Action::OFK_None);
Daniel Dunbare75d8342009-03-16 06:56:51 +00002717 }
Daniel Dunbar3ce436d2009-03-16 06:42:30 +00002718
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002719 // If the user passed -Qunused-arguments or there were errors, don't warn
2720 // about any unused arguments.
Argyrios Kyrtzidis31448a42010-11-18 21:47:07 +00002721 if (Diags.hasErrorOccurred() ||
Daniel Dunbara3cfbe32009-04-07 19:04:18 +00002722 C.getArgs().hasArg(options::OPT_Qunused_arguments))
Daniel Dunbard175d972009-03-18 18:03:46 +00002723 return;
2724
Daniel Dunbar58399ae2009-03-29 22:24:54 +00002725 // Claim -### here.
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002726 (void)C.getArgs().hasArg(options::OPT__HASH_HASH_HASH);
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002727
Nico Weber47bf5052016-04-25 21:15:49 +00002728 // Claim --driver-mode, --rsp-quoting, it was handled earlier.
Douglas Katzmana67e50c2015-06-26 15:47:46 +00002729 (void)C.getArgs().hasArg(options::OPT_driver_mode);
Nico Weber47bf5052016-04-25 21:15:49 +00002730 (void)C.getArgs().hasArg(options::OPT_rsp_quoting);
Hans Wennborg70850d82013-07-18 20:29:38 +00002731
Saleem Abdulrasool688b6bc2014-12-29 19:01:36 +00002732 for (Arg *A : C.getArgs()) {
Daniel Dunbar3ce436d2009-03-16 06:42:30 +00002733 // FIXME: It would be nice to be able to send the argument to the
David Blaikie9c902b52011-09-25 23:23:43 +00002734 // DiagnosticsEngine, so that extra values, position, and so on could be
2735 // printed.
Daniel Dunbar90dd6f42009-04-04 00:52:26 +00002736 if (!A->isClaimed()) {
Michael J. Spencer66e2b202012-10-19 22:37:06 +00002737 if (A->getOption().hasFlag(options::NoArgumentUnused))
Daniel Dunbara3cfbe32009-04-07 19:04:18 +00002738 continue;
2739
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00002740 // Suppress the warning automatically if this is just a flag, and it is an
2741 // instance of an argument we already claimed.
Daniel Dunbar90dd6f42009-04-04 00:52:26 +00002742 const Option &Opt = A->getOption();
Michael J. Spencerad3ccc32012-08-20 21:41:17 +00002743 if (Opt.getKind() == Option::FlagClass) {
Daniel Dunbar90dd6f42009-04-04 00:52:26 +00002744 bool DuplicateClaimed = false;
2745
Sean Silva14facf32015-06-09 01:57:17 +00002746 for (const Arg *AA : C.getArgs().filtered(&Opt)) {
2747 if (AA->isClaimed()) {
Daniel Dunbar90dd6f42009-04-04 00:52:26 +00002748 DuplicateClaimed = true;
2749 break;
2750 }
2751 }
2752
2753 if (DuplicateClaimed)
2754 continue;
2755 }
2756
Ehsan Akhgarid8518332016-01-25 21:14:52 +00002757 // In clang-cl, don't mention unknown arguments here since they have
2758 // already been warned about.
2759 if (!IsCLMode() || !A->getOption().matches(options::OPT_UNKNOWN))
2760 Diag(clang::diag::warn_drv_unused_argument)
2761 << A->getAsString(C.getArgs());
Daniel Dunbar90dd6f42009-04-04 00:52:26 +00002762 }
Daniel Dunbar3ce436d2009-03-16 06:42:30 +00002763 }
Daniel Dunbar95e6b192009-03-13 22:12:33 +00002764}
Daniel Dunbarc4343942010-02-03 03:07:56 +00002765
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002766namespace {
2767/// Utility class to control the collapse of dependent actions and select the
2768/// tools accordingly.
2769class ToolSelector final {
2770 /// The tool chain this selector refers to.
2771 const ToolChain &TC;
Daniel Dunbarf9ff3502010-05-14 02:03:00 +00002772
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002773 /// The compilation this selector refers to.
2774 const Compilation &C;
Samuel Antaod06239d2016-07-15 23:13:27 +00002775
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002776 /// The base action this selector refers to.
2777 const JobAction *BaseAction;
Samuel Antaod06239d2016-07-15 23:13:27 +00002778
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002779 /// Set to true if the current toolchain refers to host actions.
2780 bool IsHostSelector;
Samuel Antaod06239d2016-07-15 23:13:27 +00002781
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002782 /// Set to true if save-temps and embed-bitcode functionalities are active.
2783 bool SaveTemps;
2784 bool EmbedBitcode;
2785
2786 /// Get previous dependent action or null if that does not exist. If
2787 /// \a CanBeCollapsed is false, that action must be legal to collapse or
2788 /// null will be returned.
2789 const JobAction *getPrevDependentAction(const ActionList &Inputs,
2790 ActionList &SavedOffloadAction,
2791 bool CanBeCollapsed = true) {
2792 // An option can be collapsed only if it has a single input.
2793 if (Inputs.size() != 1)
Craig Topper92fc2df2014-05-17 16:56:41 +00002794 return nullptr;
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002795
2796 Action *CurAction = *Inputs.begin();
2797 if (CanBeCollapsed &&
2798 !CurAction->isCollapsingWithNextDependentActionLegal())
2799 return nullptr;
2800
2801 // If the input action is an offload action. Look through it and save any
2802 // offload action that can be dropped in the event of a collapse.
2803 if (auto *OA = dyn_cast<OffloadAction>(CurAction)) {
2804 // If the dependent action is a device action, we will attempt to collapse
2805 // only with other device actions. Otherwise, we would do the same but
2806 // with host actions only.
2807 if (!IsHostSelector) {
2808 if (OA->hasSingleDeviceDependence(/*DoNotConsiderHostActions=*/true)) {
2809 CurAction =
2810 OA->getSingleDeviceDependence(/*DoNotConsiderHostActions=*/true);
2811 if (CanBeCollapsed &&
2812 !CurAction->isCollapsingWithNextDependentActionLegal())
2813 return nullptr;
2814 SavedOffloadAction.push_back(OA);
2815 return dyn_cast<JobAction>(CurAction);
2816 }
2817 } else if (OA->hasHostDependence()) {
2818 CurAction = OA->getHostDependence();
2819 if (CanBeCollapsed &&
2820 !CurAction->isCollapsingWithNextDependentActionLegal())
2821 return nullptr;
2822 SavedOffloadAction.push_back(OA);
2823 return dyn_cast<JobAction>(CurAction);
2824 }
2825 return nullptr;
2826 }
2827
2828 return dyn_cast<JobAction>(CurAction);
2829 }
2830
2831 /// Return true if an assemble action can be collapsed.
2832 bool canCollapseAssembleAction() const {
2833 return TC.useIntegratedAs() && !SaveTemps &&
2834 !C.getArgs().hasArg(options::OPT_via_file_asm) &&
2835 !C.getArgs().hasArg(options::OPT__SLASH_FA) &&
2836 !C.getArgs().hasArg(options::OPT__SLASH_Fa);
2837 }
2838
2839 /// Return true if a preprocessor action can be collapsed.
2840 bool canCollapsePreprocessorAction() const {
2841 return !C.getArgs().hasArg(options::OPT_no_integrated_cpp) &&
2842 !C.getArgs().hasArg(options::OPT_traditional_cpp) && !SaveTemps &&
2843 !C.getArgs().hasArg(options::OPT_rewrite_objc);
2844 }
2845
2846 /// Struct that relates an action with the offload actions that would be
2847 /// collapsed with it.
2848 struct JobActionInfo final {
2849 /// The action this info refers to.
2850 const JobAction *JA = nullptr;
2851 /// The offload actions we need to take care off if this action is
2852 /// collapsed.
2853 ActionList SavedOffloadAction;
2854 };
2855
2856 /// Append collapsed offload actions from the give nnumber of elements in the
2857 /// action info array.
2858 static void AppendCollapsedOffloadAction(ActionList &CollapsedOffloadAction,
2859 ArrayRef<JobActionInfo> &ActionInfo,
2860 unsigned ElementNum) {
2861 assert(ElementNum <= ActionInfo.size() && "Invalid number of elements.");
2862 for (unsigned I = 0; I < ElementNum; ++I)
2863 CollapsedOffloadAction.append(ActionInfo[I].SavedOffloadAction.begin(),
2864 ActionInfo[I].SavedOffloadAction.end());
2865 }
2866
2867 /// Functions that attempt to perform the combining. They detect if that is
2868 /// legal, and if so they update the inputs \a Inputs and the offload action
2869 /// that were collapsed in \a CollapsedOffloadAction. A tool that deals with
2870 /// the combined action is returned. If the combining is not legal or if the
2871 /// tool does not exist, null is returned.
2872 /// Currently three kinds of collapsing are supported:
2873 /// - Assemble + Backend + Compile;
2874 /// - Assemble + Backend ;
2875 /// - Backend + Compile.
2876 const Tool *
2877 combineAssembleBackendCompile(ArrayRef<JobActionInfo> ActionInfo,
2878 const ActionList *&Inputs,
2879 ActionList &CollapsedOffloadAction) {
2880 if (ActionInfo.size() < 3 || !canCollapseAssembleAction())
2881 return nullptr;
2882 auto *AJ = dyn_cast<AssembleJobAction>(ActionInfo[0].JA);
2883 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[1].JA);
2884 auto *CJ = dyn_cast<CompileJobAction>(ActionInfo[2].JA);
2885 if (!AJ || !BJ || !CJ)
2886 return nullptr;
2887
2888 // Get compiler tool.
2889 const Tool *T = TC.SelectTool(*CJ);
2890 if (!T)
2891 return nullptr;
2892
Steven Wu574b0f22016-03-01 01:07:58 +00002893 // When using -fembed-bitcode, it is required to have the same tool (clang)
2894 // for both CompilerJA and BackendJA. Otherwise, combine two stages.
2895 if (EmbedBitcode) {
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002896 const Tool *BT = TC.SelectTool(*BJ);
2897 if (BT == T)
2898 return nullptr;
Steven Wu574b0f22016-03-01 01:07:58 +00002899 }
Bob Wilson23a55f12014-12-21 07:00:00 +00002900
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002901 if (!T->hasIntegratedAssembler())
Bob Wilson23a55f12014-12-21 07:00:00 +00002902 return nullptr;
Samuel Antaod06239d2016-07-15 23:13:27 +00002903
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00002904 Inputs = &CJ->getInputs();
2905 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo,
2906 /*NumElements=*/3);
2907 return T;
2908 }
2909 const Tool *combineAssembleBackend(ArrayRef<JobActionInfo> ActionInfo,
2910 const ActionList *&Inputs,
2911 ActionList &CollapsedOffloadAction) {
2912 if (ActionInfo.size() < 2 || !canCollapseAssembleAction())
2913 return nullptr;
2914 auto *AJ = dyn_cast<AssembleJobAction>(ActionInfo[0].JA);
2915 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[1].JA);
2916 if (!AJ || !BJ)
2917 return nullptr;
2918
2919 // Retrieve the compile job, backend action must always be preceded by one.
2920 ActionList CompileJobOffloadActions;
2921 auto *CJ = getPrevDependentAction(BJ->getInputs(), CompileJobOffloadActions,
2922 /*CanBeCollapsed=*/false);
2923 if (!AJ || !BJ || !CJ)
2924 return nullptr;
2925
2926 assert(isa<CompileJobAction>(CJ) &&
2927 "Expecting compile job preceding backend job.");
2928
2929 // Get compiler tool.
2930 const Tool *T = TC.SelectTool(*CJ);
2931 if (!T)
2932 return nullptr;
2933
2934 if (!T->hasIntegratedAssembler())
2935 return nullptr;
2936
2937 Inputs = &BJ->getInputs();
2938 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo,
2939 /*NumElements=*/2);
2940 return T;
2941 }
2942 const Tool *combineBackendCompile(ArrayRef<JobActionInfo> ActionInfo,
2943 const ActionList *&Inputs,
2944 ActionList &CollapsedOffloadAction) {
2945 if (ActionInfo.size() < 2 || !canCollapsePreprocessorAction())
2946 return nullptr;
2947 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[0].JA);
2948 auto *CJ = dyn_cast<CompileJobAction>(ActionInfo[1].JA);
2949 if (!BJ || !CJ)
2950 return nullptr;
2951
2952 // Get compiler tool.
2953 const Tool *T = TC.SelectTool(*CJ);
2954 if (!T)
2955 return nullptr;
2956
2957 if (T->canEmitIR() && (SaveTemps || EmbedBitcode))
2958 return nullptr;
2959
2960 Inputs = &CJ->getInputs();
2961 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo,
2962 /*NumElements=*/2);
2963 return T;
2964 }
2965
2966 /// Updates the inputs if the obtained tool supports combining with
2967 /// preprocessor action, and the current input is indeed a preprocessor
2968 /// action. If combining results in the collapse of offloading actions, those
2969 /// are appended to \a CollapsedOffloadAction.
2970 void combineWithPreprocessor(const Tool *T, const ActionList *&Inputs,
2971 ActionList &CollapsedOffloadAction) {
2972 if (!T || !canCollapsePreprocessorAction() || !T->hasIntegratedCPP())
2973 return;
2974
2975 // Attempt to get a preprocessor action dependence.
2976 ActionList PreprocessJobOffloadActions;
2977 auto *PJ = getPrevDependentAction(*Inputs, PreprocessJobOffloadActions);
2978 if (!PJ || !isa<PreprocessJobAction>(PJ))
2979 return;
2980
2981 // This is legal to combine. Append any offload action we found and set the
2982 // current inputs to preprocessor inputs.
2983 CollapsedOffloadAction.append(PreprocessJobOffloadActions.begin(),
2984 PreprocessJobOffloadActions.end());
2985 Inputs = &PJ->getInputs();
2986 }
2987
2988public:
2989 ToolSelector(const JobAction *BaseAction, const ToolChain &TC,
2990 const Compilation &C, bool SaveTemps, bool EmbedBitcode)
2991 : TC(TC), C(C), BaseAction(BaseAction), SaveTemps(SaveTemps),
2992 EmbedBitcode(EmbedBitcode) {
2993 assert(BaseAction && "Invalid base action.");
2994 IsHostSelector = BaseAction->getOffloadingDeviceKind() == Action::OFK_None;
2995 }
2996
2997 /// Check if a chain of actions can be combined and return the tool that can
2998 /// handle the combination of actions. The pointer to the current inputs \a
2999 /// Inputs and the list of offload actions \a CollapsedOffloadActions
3000 /// connected to collapsed actions are updated accordingly. The latter enables
3001 /// the caller of the selector to process them afterwards instead of just
3002 /// dropping them. If no suitable tool is found, null will be returned.
3003 const Tool *getTool(const ActionList *&Inputs,
3004 ActionList &CollapsedOffloadAction) {
3005 //
3006 // Get the largest chain of actions that we could combine.
3007 //
3008
3009 SmallVector<JobActionInfo, 5> ActionChain(1);
3010 ActionChain.back().JA = BaseAction;
3011 while (ActionChain.back().JA) {
3012 const Action *CurAction = ActionChain.back().JA;
3013
3014 // Grow the chain by one element.
3015 ActionChain.resize(ActionChain.size() + 1);
3016 JobActionInfo &AI = ActionChain.back();
3017
3018 // Attempt to fill it with the
3019 AI.JA =
3020 getPrevDependentAction(CurAction->getInputs(), AI.SavedOffloadAction);
Daniel Dunbarc4343942010-02-03 03:07:56 +00003021 }
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00003022
3023 // Pop the last action info as it could not be filled.
3024 ActionChain.pop_back();
3025
3026 //
3027 // Attempt to combine actions. If all combining attempts failed, just return
3028 // the tool of the provided action. At the end we attempt to combine the
3029 // action with any preprocessor action it may depend on.
3030 //
3031
3032 const Tool *T = combineAssembleBackendCompile(ActionChain, Inputs,
3033 CollapsedOffloadAction);
3034 if (!T)
3035 T = combineAssembleBackend(ActionChain, Inputs, CollapsedOffloadAction);
3036 if (!T)
3037 T = combineBackendCompile(ActionChain, Inputs, CollapsedOffloadAction);
3038 if (!T) {
3039 Inputs = &BaseAction->getInputs();
3040 T = TC.SelectTool(*BaseAction);
3041 }
3042
3043 combineWithPreprocessor(T, Inputs, CollapsedOffloadAction);
3044 return T;
Daniel Dunbarc4343942010-02-03 03:07:56 +00003045 }
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00003046};
Daniel Dunbarc4343942010-02-03 03:07:56 +00003047}
3048
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003049/// Return a string that uniquely identifies the result of a job. The bound arch
3050/// is not necessarily represented in the toolchain's triple -- for example,
3051/// armv7 and armv7s both map to the same triple -- so we need both in our map.
3052/// Also, we need to add the offloading device kind, as the same tool chain can
3053/// be used for host and device for some programming models, e.g. OpenMP.
3054static std::string GetTriplePlusArchString(const ToolChain *TC,
3055 StringRef BoundArch,
3056 Action::OffloadKind OffloadKind) {
Justin Lebar55c83322016-01-16 03:30:08 +00003057 std::string TriplePlusArch = TC->getTriple().normalize();
Mehdi Aminic50b1a22016-10-07 21:27:26 +00003058 if (!BoundArch.empty()) {
Justin Lebar55c83322016-01-16 03:30:08 +00003059 TriplePlusArch += "-";
3060 TriplePlusArch += BoundArch;
3061 }
Samuel Antao59efaed2016-10-27 17:31:22 +00003062 TriplePlusArch += "-";
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003063 TriplePlusArch += Action::GetOffloadKindName(OffloadKind);
3064 return TriplePlusArch;
3065}
3066
3067InputInfo Driver::BuildJobsForAction(
3068 Compilation &C, const Action *A, const ToolChain *TC, StringRef BoundArch,
3069 bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput,
3070 std::map<std::pair<const Action *, std::string>, InputInfo> &CachedResults,
3071 Action::OffloadKind TargetDeviceOffloadKind) const {
3072 std::pair<const Action *, std::string> ActionTC = {
3073 A, GetTriplePlusArchString(TC, BoundArch, TargetDeviceOffloadKind)};
Justin Lebarb44f6fe2016-01-14 21:41:21 +00003074 auto CachedResult = CachedResults.find(ActionTC);
3075 if (CachedResult != CachedResults.end()) {
3076 return CachedResult->second;
3077 }
Samuel Antaod06239d2016-07-15 23:13:27 +00003078 InputInfo Result = BuildJobsForActionNoCache(
3079 C, A, TC, BoundArch, AtTopLevel, MultipleArchs, LinkingOutput,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003080 CachedResults, TargetDeviceOffloadKind);
Justin Lebarb44f6fe2016-01-14 21:41:21 +00003081 CachedResults[ActionTC] = Result;
3082 return Result;
3083}
3084
3085InputInfo Driver::BuildJobsForActionNoCache(
Mehdi Aminic50b1a22016-10-07 21:27:26 +00003086 Compilation &C, const Action *A, const ToolChain *TC, StringRef BoundArch,
Justin Lebarb44f6fe2016-01-14 21:41:21 +00003087 bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput,
Samuel Antaod06239d2016-07-15 23:13:27 +00003088 std::map<std::pair<const Action *, std::string>, InputInfo> &CachedResults,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003089 Action::OffloadKind TargetDeviceOffloadKind) const {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00003090 llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
Daniel Dunbarc4acf9d2009-03-18 23:18:19 +00003091
Samuel Antaod06239d2016-07-15 23:13:27 +00003092 InputInfoList OffloadDependencesInputInfo;
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003093 bool BuildingForOffloadDevice = TargetDeviceOffloadKind != Action::OFK_None;
Samuel Antaod06239d2016-07-15 23:13:27 +00003094 if (const OffloadAction *OA = dyn_cast<OffloadAction>(A)) {
3095 // The offload action is expected to be used in four different situations.
3096 //
3097 // a) Set a toolchain/architecture/kind for a host action:
3098 // Host Action 1 -> OffloadAction -> Host Action 2
3099 //
3100 // b) Set a toolchain/architecture/kind for a device action;
3101 // Device Action 1 -> OffloadAction -> Device Action 2
3102 //
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00003103 // c) Specify a device dependence to a host action;
Samuel Antaod06239d2016-07-15 23:13:27 +00003104 // Device Action 1 _
3105 // \
3106 // Host Action 1 ---> OffloadAction -> Host Action 2
3107 //
3108 // d) Specify a host dependence to a device action.
3109 // Host Action 1 _
3110 // \
3111 // Device Action 1 ---> OffloadAction -> Device Action 2
3112 //
3113 // For a) and b), we just return the job generated for the dependence. For
3114 // c) and d) we override the current action with the host/device dependence
3115 // if the current toolchain is host/device and set the offload dependences
3116 // info with the jobs obtained from the device/host dependence(s).
3117
3118 // If there is a single device option, just generate the job for it.
3119 if (OA->hasSingleDeviceDependence()) {
3120 InputInfo DevA;
3121 OA->doOnEachDeviceDependence([&](Action *DepA, const ToolChain *DepTC,
3122 const char *DepBoundArch) {
3123 DevA =
3124 BuildJobsForAction(C, DepA, DepTC, DepBoundArch, AtTopLevel,
3125 /*MultipleArchs*/ !!DepBoundArch, LinkingOutput,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003126 CachedResults, DepA->getOffloadingDeviceKind());
Samuel Antaod06239d2016-07-15 23:13:27 +00003127 });
3128 return DevA;
Artem Belevich0ff05cd2015-07-13 23:27:56 +00003129 }
Samuel Antaod06239d2016-07-15 23:13:27 +00003130
3131 // If 'Action 2' is host, we generate jobs for the device dependences and
3132 // override the current action with the host dependence. Otherwise, we
3133 // generate the host dependences and override the action with the device
3134 // dependence. The dependences can't therefore be a top-level action.
3135 OA->doOnEachDependence(
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003136 /*IsHostDependence=*/BuildingForOffloadDevice,
Samuel Antaod06239d2016-07-15 23:13:27 +00003137 [&](Action *DepA, const ToolChain *DepTC, const char *DepBoundArch) {
3138 OffloadDependencesInputInfo.push_back(BuildJobsForAction(
3139 C, DepA, DepTC, DepBoundArch, /*AtTopLevel=*/false,
3140 /*MultipleArchs*/ !!DepBoundArch, LinkingOutput, CachedResults,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003141 DepA->getOffloadingDeviceKind()));
Samuel Antaod06239d2016-07-15 23:13:27 +00003142 });
3143
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003144 A = BuildingForOffloadDevice
Samuel Antaod06239d2016-07-15 23:13:27 +00003145 ? OA->getSingleDeviceDependence(/*DoNotConsiderHostActions=*/true)
3146 : OA->getHostDependence();
Artem Belevich0ff05cd2015-07-13 23:27:56 +00003147 }
3148
Daniel Dunbare75d8342009-03-16 06:56:51 +00003149 if (const InputAction *IA = dyn_cast<InputAction>(A)) {
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00003150 // FIXME: It would be nice to not claim this here; maybe the old scheme of
3151 // just using Args was better?
Daniel Dunbar5cdf3e02009-03-19 07:29:38 +00003152 const Arg &Input = IA->getInputArg();
3153 Input.claim();
Daniel Dunbar35cbfeb2010-06-09 22:31:08 +00003154 if (Input.getOption().matches(options::OPT_INPUT)) {
Richard Smithbd55daf2012-11-01 04:30:05 +00003155 const char *Name = Input.getValue();
Justin Lebard98cea82016-01-11 23:15:21 +00003156 return InputInfo(A, Name, /* BaseInput = */ Name);
Douglas Katzman678d0cb2015-06-16 18:01:24 +00003157 }
Justin Lebard98cea82016-01-11 23:15:21 +00003158 return InputInfo(A, &Input, /* BaseInput = */ "");
Daniel Dunbare75d8342009-03-16 06:56:51 +00003159 }
3160
3161 if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) {
Chad Rosiera78a6eb2012-04-27 16:50:38 +00003162 const ToolChain *TC;
Mehdi Aminic50b1a22016-10-07 21:27:26 +00003163 StringRef ArchName = BAA->getArchName();
Daniel Dunbar1ef3f2a2009-09-08 23:37:19 +00003164
Mehdi Aminic50b1a22016-10-07 21:27:26 +00003165 if (!ArchName.empty())
Andrey Turetskiy6a8b91d2016-04-21 10:16:48 +00003166 TC = &getToolChain(C.getArgs(),
3167 computeTargetTriple(*this, DefaultTargetTriple,
3168 C.getArgs(), ArchName));
Chad Rosiera78a6eb2012-04-27 16:50:38 +00003169 else
3170 TC = &C.getDefaultToolChain();
Daniel Dunbar1ef3f2a2009-09-08 23:37:19 +00003171
Nico Weber5a459f82016-02-23 19:30:43 +00003172 return BuildJobsForAction(C, *BAA->input_begin(), TC, ArchName, AtTopLevel,
Samuel Antaod06239d2016-07-15 23:13:27 +00003173 MultipleArchs, LinkingOutput, CachedResults,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003174 TargetDeviceOffloadKind);
Daniel Dunbare75d8342009-03-16 06:56:51 +00003175 }
3176
Artem Belevich0ff05cd2015-07-13 23:27:56 +00003177
Daniel Dunbare75d8342009-03-16 06:56:51 +00003178 const ActionList *Inputs = &A->getInputs();
Daniel Dunbarc4343942010-02-03 03:07:56 +00003179
3180 const JobAction *JA = cast<JobAction>(A);
Samuel Antaod06239d2016-07-15 23:13:27 +00003181 ActionList CollapsedOffloadActions;
3182
Mehdi Amini6683e222017-01-24 18:12:25 +00003183 ToolSelector TS(JA, *TC, C, isSaveTempsEnabled(),
3184 embedBitcodeInObject() && !isUsingLTO());
Samuel Antao9c9d9cd2016-10-27 16:29:20 +00003185 const Tool *T = TS.getTool(Inputs, CollapsedOffloadActions);
3186
Rafael Espindola79764462013-03-24 15:06:53 +00003187 if (!T)
Justin Lebar9eaa4892016-01-11 23:09:32 +00003188 return InputInfo();
Daniel Dunbare75d8342009-03-16 06:56:51 +00003189
Samuel Antaod06239d2016-07-15 23:13:27 +00003190 // If we've collapsed action list that contained OffloadAction we
3191 // need to build jobs for host/device-side inputs it may have held.
3192 for (const auto *OA : CollapsedOffloadActions)
3193 cast<OffloadAction>(OA)->doOnEachDependence(
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003194 /*IsHostDependence=*/BuildingForOffloadDevice,
Samuel Antaod06239d2016-07-15 23:13:27 +00003195 [&](Action *DepA, const ToolChain *DepTC, const char *DepBoundArch) {
3196 OffloadDependencesInputInfo.push_back(BuildJobsForAction(
Artem Belevichbee2f412016-08-22 18:50:34 +00003197 C, DepA, DepTC, DepBoundArch, /* AtTopLevel */ false,
Samuel Antaod06239d2016-07-15 23:13:27 +00003198 /*MultipleArchs=*/!!DepBoundArch, LinkingOutput, CachedResults,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003199 DepA->getOffloadingDeviceKind()));
Samuel Antaod06239d2016-07-15 23:13:27 +00003200 });
Artem Belevichf8144ab2015-08-27 18:10:41 +00003201
Daniel Dunbare75d8342009-03-16 06:56:51 +00003202 // Only use pipes when there is exactly one input.
Daniel Dunbar1a093d22009-03-18 06:00:36 +00003203 InputInfoList InputInfos;
Saleem Abdulrasoolda3f4e52014-12-29 21:02:47 +00003204 for (const Action *Input : *Inputs) {
Eric Christopher14668dd2013-02-18 00:38:25 +00003205 // Treat dsymutil and verify sub-jobs as being at the top-level too, they
3206 // shouldn't get temporary output names.
Daniel Dunbar6beaf512010-06-04 18:28:41 +00003207 // FIXME: Clean this up.
Justin Lebar9eaa4892016-01-11 23:09:32 +00003208 bool SubJobAtTopLevel =
3209 AtTopLevel && (isa<DsymutilJobAction>(A) || isa<VerifyJobAction>(A));
Samuel Antaod06239d2016-07-15 23:13:27 +00003210 InputInfos.push_back(BuildJobsForAction(
3211 C, Input, TC, BoundArch, SubJobAtTopLevel, MultipleArchs, LinkingOutput,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003212 CachedResults, A->getOffloadingDeviceKind()));
Daniel Dunbare75d8342009-03-16 06:56:51 +00003213 }
3214
Daniel Dunbare75d8342009-03-16 06:56:51 +00003215 // Always use the first input as the base input.
3216 const char *BaseInput = InputInfos[0].getBaseInput();
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003217
Daniel Dunbar6beaf512010-06-04 18:28:41 +00003218 // ... except dsymutil actions, which use their actual input as the base
3219 // input.
3220 if (JA->getType() == types::TY_dSYM)
3221 BaseInput = InputInfos[0].getFilename();
3222
Samuel Antaod06239d2016-07-15 23:13:27 +00003223 // Append outputs of offload device jobs to the input list
3224 if (!OffloadDependencesInputInfo.empty())
3225 InputInfos.append(OffloadDependencesInputInfo.begin(),
3226 OffloadDependencesInputInfo.end());
Artem Belevich0ff05cd2015-07-13 23:27:56 +00003227
Vedant Kumar18286cf2016-07-27 23:02:20 +00003228 // Set the effective triple of the toolchain for the duration of this job.
3229 llvm::Triple EffectiveTriple;
3230 const ToolChain &ToolTC = T->getToolChain();
Samuel Antao31fef982016-10-27 17:39:44 +00003231 const ArgList &Args =
3232 C.getArgsForToolChain(TC, BoundArch, A->getOffloadingDeviceKind());
Vedant Kumar18286cf2016-07-27 23:02:20 +00003233 if (InputInfos.size() != 1) {
3234 EffectiveTriple = llvm::Triple(ToolTC.ComputeEffectiveClangTriple(Args));
3235 } else {
3236 // Pass along the input type if it can be unambiguously determined.
3237 EffectiveTriple = llvm::Triple(
3238 ToolTC.ComputeEffectiveClangTriple(Args, InputInfos[0].getType()));
3239 }
3240 RegisterEffectiveTriple TripleRAII(ToolTC, EffectiveTriple);
3241
Daniel Dunbard00272f2010-08-02 02:38:15 +00003242 // Determine the place to write output to, if any.
Justin Lebar9eaa4892016-01-11 23:09:32 +00003243 InputInfo Result;
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003244 InputInfoList UnbundlingResults;
3245 if (auto *UA = dyn_cast<OffloadUnbundlingJobAction>(JA)) {
3246 // If we have an unbundling job, we need to create results for all the
3247 // outputs. We also update the results cache so that other actions using
3248 // this unbundling action can get the right results.
3249 for (auto &UI : UA->getDependentActionsInfo()) {
3250 assert(UI.DependentOffloadKind != Action::OFK_None &&
3251 "Unbundling with no offloading??");
3252
3253 // Unbundling actions are never at the top level. When we generate the
3254 // offloading prefix, we also do that for the host file because the
3255 // unbundling action does not change the type of the output which can
3256 // cause a overwrite.
3257 std::string OffloadingPrefix = Action::GetOffloadingFileNamePrefix(
3258 UI.DependentOffloadKind,
3259 UI.DependentToolChain->getTriple().normalize(),
3260 /*CreatePrefixForHost=*/true);
3261 auto CurI = InputInfo(
3262 UA, GetNamedOutputPath(C, *UA, BaseInput, UI.DependentBoundArch,
3263 /*AtTopLevel=*/false, MultipleArchs,
3264 OffloadingPrefix),
3265 BaseInput);
3266 // Save the unbundling result.
3267 UnbundlingResults.push_back(CurI);
3268
3269 // Get the unique string identifier for this dependence and cache the
3270 // result.
3271 CachedResults[{A, GetTriplePlusArchString(
3272 UI.DependentToolChain, UI.DependentBoundArch,
3273 UI.DependentOffloadKind)}] = CurI;
3274 }
3275
3276 // Now that we have all the results generated, select the one that should be
3277 // returned for the current depending action.
3278 std::pair<const Action *, std::string> ActionTC = {
3279 A, GetTriplePlusArchString(TC, BoundArch, TargetDeviceOffloadKind)};
3280 assert(CachedResults.find(ActionTC) != CachedResults.end() &&
3281 "Result does not exist??");
3282 Result = CachedResults[ActionTC];
3283 } else if (JA->getType() == types::TY_Nothing)
Justin Lebard98cea82016-01-11 23:15:21 +00003284 Result = InputInfo(A, BaseInput);
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003285 else {
3286 // We only have to generate a prefix for the host if this is not a top-level
3287 // action.
3288 std::string OffloadingPrefix = Action::GetOffloadingFileNamePrefix(
3289 A->getOffloadingDeviceKind(), TC->getTriple().normalize(),
3290 /*CreatePrefixForHost=*/!!A->getOffloadingHostActiveKinds() &&
3291 !AtTopLevel);
Justin Lebard98cea82016-01-11 23:15:21 +00003292 Result = InputInfo(A, GetNamedOutputPath(C, *JA, BaseInput, BoundArch,
Samuel Antaod06239d2016-07-15 23:13:27 +00003293 AtTopLevel, MultipleArchs,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003294 OffloadingPrefix),
Justin Lebard98cea82016-01-11 23:15:21 +00003295 BaseInput);
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003296 }
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003297
Chad Rosierbe10f982011-08-02 17:58:04 +00003298 if (CCCPrintBindings && !CCGenDiagnostics) {
Rafael Espindola79764462013-03-24 15:06:53 +00003299 llvm::errs() << "# \"" << T->getToolChain().getTripleString() << '"'
3300 << " - \"" << T->getName() << "\", inputs: [";
Daniel Dunbarb39cc522009-03-17 22:47:06 +00003301 for (unsigned i = 0, e = InputInfos.size(); i != e; ++i) {
3302 llvm::errs() << InputInfos[i].getAsString();
3303 if (i + 1 != e)
3304 llvm::errs() << ", ";
3305 }
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003306 if (UnbundlingResults.empty())
3307 llvm::errs() << "], output: " << Result.getAsString() << "\n";
3308 else {
3309 llvm::errs() << "], outputs: [";
3310 for (unsigned i = 0, e = UnbundlingResults.size(); i != e; ++i) {
3311 llvm::errs() << UnbundlingResults[i].getAsString();
3312 if (i + 1 != e)
3313 llvm::errs() << ", ";
3314 }
3315 llvm::errs() << "] \n";
3316 }
Daniel Dunbarb39cc522009-03-17 22:47:06 +00003317 } else {
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003318 if (UnbundlingResults.empty())
3319 T->ConstructJob(
3320 C, *JA, Result, InputInfos,
3321 C.getArgsForToolChain(TC, BoundArch, JA->getOffloadingDeviceKind()),
3322 LinkingOutput);
3323 else
Samuel Antao7108bf32016-11-03 15:41:50 +00003324 T->ConstructJobMultipleOutputs(
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003325 C, *JA, UnbundlingResults, InputInfos,
3326 C.getArgsForToolChain(TC, BoundArch, JA->getOffloadingDeviceKind()),
3327 LinkingOutput);
Daniel Dunbarb39cc522009-03-17 22:47:06 +00003328 }
Justin Lebar9eaa4892016-01-11 23:09:32 +00003329 return Result;
Daniel Dunbare75d8342009-03-16 06:56:51 +00003330}
3331
Hans Wennborga7707222015-01-09 17:38:53 +00003332const char *Driver::getDefaultImageName() const {
3333 llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
3334 return Target.isOSWindows() ? "a.exe" : "a.out";
3335}
3336
Hans Wennborg2c21f742013-10-17 16:16:23 +00003337/// \brief Create output filename based on ArgValue, which could either be a
3338/// full filename, filename without extension, or a directory. If ArgValue
3339/// does not provide a filename, then use BaseName, and use the extension
3340/// suitable for FileType.
Hans Wennborg207fcf02013-08-12 21:56:42 +00003341static const char *MakeCLOutputFilename(const ArgList &Args, StringRef ArgValue,
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003342 StringRef BaseName,
3343 types::ID FileType) {
Hans Wennborg207fcf02013-08-12 21:56:42 +00003344 SmallString<128> Filename = ArgValue;
Justin Bogner5aaf2e72014-06-26 20:59:36 +00003345
Hans Wennborgf1a74252013-09-10 20:18:04 +00003346 if (ArgValue.empty()) {
3347 // If the argument is empty, output to BaseName in the current dir.
3348 Filename = BaseName;
3349 } else if (llvm::sys::path::is_separator(Filename.back())) {
Hans Wennborg207fcf02013-08-12 21:56:42 +00003350 // If the argument is a directory, output to BaseName in that dir.
3351 llvm::sys::path::append(Filename, BaseName);
3352 }
3353
3354 if (!llvm::sys::path::has_extension(ArgValue)) {
3355 // If the argument didn't provide an extension, then set it.
3356 const char *Extension = types::getTypeTempSuffix(FileType, true);
Hans Wennborgf1a74252013-09-10 20:18:04 +00003357
3358 if (FileType == types::TY_Image &&
3359 Args.hasArg(options::OPT__SLASH_LD, options::OPT__SLASH_LDd)) {
3360 // The output file is a dll.
3361 Extension = "dll";
3362 }
3363
Hans Wennborg207fcf02013-08-12 21:56:42 +00003364 llvm::sys::path::replace_extension(Filename, Extension);
3365 }
3366
3367 return Args.MakeArgString(Filename.c_str());
3368}
3369
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003370const char *Driver::GetNamedOutputPath(Compilation &C, const JobAction &JA,
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003371 const char *BaseInput,
Mehdi Aminic50b1a22016-10-07 21:27:26 +00003372 StringRef BoundArch, bool AtTopLevel,
Samuel Antaod06239d2016-07-15 23:13:27 +00003373 bool MultipleArchs,
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003374 StringRef OffloadingPrefix) const {
Daniel Dunbar2608c542009-03-18 01:38:48 +00003375 llvm::PrettyStackTraceString CrashInfo("Computing output path");
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003376 // Output to a user requested destination?
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003377 if (AtTopLevel && !isa<DsymutilJobAction>(JA) && !isa<VerifyJobAction>(JA)) {
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003378 if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o))
Chad Rosier633dcdc2013-01-24 19:14:47 +00003379 return C.addResultFile(FinalOutput->getValue(), &JA);
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003380 }
3381
Hans Wennborge0053472013-12-20 18:40:46 +00003382 // For /P, preprocess to file named after BaseInput.
3383 if (C.getArgs().hasArg(options::OPT__SLASH_P)) {
3384 assert(AtTopLevel && isa<PreprocessJobAction>(JA));
3385 StringRef BaseName = llvm::sys::path::filename(BaseInput);
Hans Wennborg04c764f2014-06-17 00:19:12 +00003386 StringRef NameArg;
Greg Bedwell065f70a2015-06-09 10:24:06 +00003387 if (Arg *A = C.getArgs().getLastArg(options::OPT__SLASH_Fi))
Hans Wennborg04c764f2014-06-17 00:19:12 +00003388 NameArg = A->getValue();
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003389 return C.addResultFile(
3390 MakeCLOutputFilename(C.getArgs(), NameArg, BaseName, types::TY_PP_C),
3391 &JA);
Hans Wennborge0053472013-12-20 18:40:46 +00003392 }
3393
Nick Lewycky6e1ce292010-09-24 00:46:53 +00003394 // Default to writing to stdout?
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +00003395 if (AtTopLevel && !CCGenDiagnostics &&
3396 (isa<PreprocessJobAction>(JA) || JA.getType() == types::TY_ModuleFile))
Nick Lewycky6e1ce292010-09-24 00:46:53 +00003397 return "-";
3398
Hans Wennborg2c21f742013-10-17 16:16:23 +00003399 // Is this the assembly listing for /FA?
3400 if (JA.getType() == types::TY_PP_Asm &&
3401 (C.getArgs().hasArg(options::OPT__SLASH_FA) ||
3402 C.getArgs().hasArg(options::OPT__SLASH_Fa))) {
3403 // Use /Fa and the input filename to determine the asm file name.
3404 StringRef BaseName = llvm::sys::path::filename(BaseInput);
3405 StringRef FaValue = C.getArgs().getLastArgValue(options::OPT__SLASH_Fa);
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003406 return C.addResultFile(
3407 MakeCLOutputFilename(C.getArgs(), FaValue, BaseName, JA.getType()),
3408 &JA);
Hans Wennborg2c21f742013-10-17 16:16:23 +00003409 }
3410
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003411 // Output to a temporary file?
Reid Kleckner68eb60b2015-02-02 22:41:48 +00003412 if ((!AtTopLevel && !isSaveTempsEnabled() &&
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003413 !C.getArgs().hasArg(options::OPT__SLASH_Fo)) ||
Chad Rosierbe10f982011-08-02 17:58:04 +00003414 CCGenDiagnostics) {
Chad Rosier97c37372011-08-26 22:27:02 +00003415 StringRef Name = llvm::sys::path::filename(BaseInput);
3416 std::pair<StringRef, StringRef> Split = Name.split('.');
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003417 std::string TmpName = GetTemporaryPath(
3418 Split.first, types::getTypeTempSuffix(JA.getType(), IsCLMode()));
Malcolm Parsonsf76f6502016-11-02 10:39:27 +00003419 return C.addTempFile(C.getArgs().MakeArgString(TmpName));
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003420 }
3421
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00003422 SmallString<128> BasePath(BaseInput);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003423 StringRef BaseName;
Daniel Dunbar67fea712011-03-25 18:16:51 +00003424
3425 // Dsymutil actions should use the full path.
Eric Christopher551ef452011-08-23 17:56:55 +00003426 if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA))
Daniel Dunbar67fea712011-03-25 18:16:51 +00003427 BaseName = BasePath;
3428 else
3429 BaseName = llvm::sys::path::filename(BasePath);
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003430
3431 // Determine what the derived output name should be.
3432 const char *NamedOutput;
Hans Wennborg2b89a262013-08-06 22:11:28 +00003433
Hans Wennborg625fba82016-10-04 21:01:04 +00003434 if ((JA.getType() == types::TY_Object || JA.getType() == types::TY_LTO_BC) &&
Ehsan Akhgari81f36b72014-09-11 18:16:21 +00003435 C.getArgs().hasArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o)) {
3436 // The /Fo or /o flag decides the object filename.
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003437 StringRef Val =
3438 C.getArgs()
3439 .getLastArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o)
3440 ->getValue();
3441 NamedOutput =
3442 MakeCLOutputFilename(C.getArgs(), Val, BaseName, types::TY_Object);
Hans Wennborg207fcf02013-08-12 21:56:42 +00003443 } else if (JA.getType() == types::TY_Image &&
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003444 C.getArgs().hasArg(options::OPT__SLASH_Fe,
3445 options::OPT__SLASH_o)) {
Ehsan Akhgari81f36b72014-09-11 18:16:21 +00003446 // The /Fe or /o flag names the linked file.
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003447 StringRef Val =
3448 C.getArgs()
3449 .getLastArg(options::OPT__SLASH_Fe, options::OPT__SLASH_o)
3450 ->getValue();
3451 NamedOutput =
3452 MakeCLOutputFilename(C.getArgs(), Val, BaseName, types::TY_Image);
Hans Wennborgf1a74252013-09-10 20:18:04 +00003453 } else if (JA.getType() == types::TY_Image) {
Hans Wennborg207fcf02013-08-12 21:56:42 +00003454 if (IsCLMode()) {
3455 // clang-cl uses BaseName for the executable name.
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003456 NamedOutput =
3457 MakeCLOutputFilename(C.getArgs(), "", BaseName, types::TY_Image);
Samuel Antao59efaed2016-10-27 17:31:22 +00003458 } else {
Hans Wennborga7707222015-01-09 17:38:53 +00003459 SmallString<128> Output(getDefaultImageName());
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003460 Output += OffloadingPrefix;
Samuel Antao59efaed2016-10-27 17:31:22 +00003461 if (MultipleArchs && !BoundArch.empty()) {
3462 Output += "-";
3463 Output.append(BoundArch);
3464 }
Chad Rosier35767232013-04-30 22:01:21 +00003465 NamedOutput = C.getArgs().MakeArgString(Output.c_str());
Nico Weber2ca4be92016-03-01 23:16:44 +00003466 }
3467 } else if (JA.getType() == types::TY_PCH && IsCLMode()) {
Malcolm Parsonsf76f6502016-11-02 10:39:27 +00003468 NamedOutput = C.getArgs().MakeArgString(GetClPchPath(C, BaseName));
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003469 } else {
Hans Wennborg0a096a02013-09-05 17:05:56 +00003470 const char *Suffix = types::getTypeTempSuffix(JA.getType(), IsCLMode());
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003471 assert(Suffix && "All types used for output should have a suffix.");
3472
3473 std::string::size_type End = std::string::npos;
3474 if (!types::appendSuffixForType(JA.getType()))
3475 End = BaseName.rfind('.');
Chad Rosier35767232013-04-30 22:01:21 +00003476 SmallString<128> Suffixed(BaseName.substr(0, End));
Samuel Antao3b7e38b2016-10-27 18:14:55 +00003477 Suffixed += OffloadingPrefix;
Mehdi Aminic50b1a22016-10-07 21:27:26 +00003478 if (MultipleArchs && !BoundArch.empty()) {
Chad Rosier35767232013-04-30 22:01:21 +00003479 Suffixed += "-";
3480 Suffixed.append(BoundArch);
3481 }
Bob Wilson23a55f12014-12-21 07:00:00 +00003482 // When using both -save-temps and -emit-llvm, use a ".tmp.bc" suffix for
3483 // the unoptimized bitcode so that it does not get overwritten by the ".bc"
3484 // optimized bitcode output.
3485 if (!AtTopLevel && C.getArgs().hasArg(options::OPT_emit_llvm) &&
3486 JA.getType() == types::TY_LLVM_BC)
3487 Suffixed += ".tmp";
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003488 Suffixed += '.';
3489 Suffixed += Suffix;
3490 NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str());
3491 }
3492
Reid Kleckner68eb60b2015-02-02 22:41:48 +00003493 // Prepend object file path if -save-temps=obj
3494 if (!AtTopLevel && isSaveTempsObj() && C.getArgs().hasArg(options::OPT_o) &&
3495 JA.getType() != types::TY_PCH) {
3496 Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
3497 SmallString<128> TempPath(FinalOutput->getValue());
3498 llvm::sys::path::remove_filename(TempPath);
3499 StringRef OutputFileName = llvm::sys::path::filename(NamedOutput);
3500 llvm::sys::path::append(TempPath, OutputFileName);
3501 NamedOutput = C.getArgs().MakeArgString(TempPath.c_str());
3502 }
3503
Chad Rosier62135492012-07-09 17:31:28 +00003504 // If we're saving temps and the temp file conflicts with the input file,
Chad Rosier5b58af02012-04-20 20:05:08 +00003505 // then avoid overwriting input file.
Reid Kleckner68eb60b2015-02-02 22:41:48 +00003506 if (!AtTopLevel && isSaveTempsEnabled() && NamedOutput == BaseName) {
Chad Rosier5b58af02012-04-20 20:05:08 +00003507 bool SameFile = false;
3508 SmallString<256> Result;
3509 llvm::sys::fs::current_path(Result);
3510 llvm::sys::path::append(Result, BaseName);
3511 llvm::sys::fs::equivalent(BaseInput, Result.c_str(), SameFile);
3512 // Must share the same path to conflict.
3513 if (SameFile) {
3514 StringRef Name = llvm::sys::path::filename(BaseInput);
3515 std::pair<StringRef, StringRef> Split = Name.split('.');
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003516 std::string TmpName = GetTemporaryPath(
3517 Split.first, types::getTypeTempSuffix(JA.getType(), IsCLMode()));
Malcolm Parsonsf76f6502016-11-02 10:39:27 +00003518 return C.addTempFile(C.getArgs().MakeArgString(TmpName));
Chad Rosier5b58af02012-04-20 20:05:08 +00003519 }
Chad Rosierf8412cd2011-07-15 21:54:29 +00003520 }
3521
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00003522 // As an annoying special case, PCH generation doesn't strip the pathname.
Nico Weber8ab92192016-03-02 23:29:29 +00003523 if (JA.getType() == types::TY_PCH && !IsCLMode()) {
Michael J. Spencere1696752010-12-18 00:19:12 +00003524 llvm::sys::path::remove_filename(BasePath);
3525 if (BasePath.empty())
Daniel Dunbare6c83192009-03-18 09:58:30 +00003526 BasePath = NamedOutput;
3527 else
Michael J. Spencere1696752010-12-18 00:19:12 +00003528 llvm::sys::path::append(BasePath, NamedOutput);
Chad Rosier633dcdc2013-01-24 19:14:47 +00003529 return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str()), &JA);
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003530 } else {
Chad Rosier633dcdc2013-01-24 19:14:47 +00003531 return C.addResultFile(NamedOutput, &JA);
Daniel Dunbar7a178a42009-03-17 17:53:55 +00003532 }
3533}
3534
Mehdi Amini12011172016-10-06 05:11:48 +00003535std::string Driver::GetFilePath(StringRef Name, const ToolChain &TC) const {
Chandler Carruth84559242010-03-22 01:52:07 +00003536 // Respect a limited subset of the '-Bprefix' functionality in GCC by
Logan Chiencd679fd2012-10-04 08:08:56 +00003537 // attempting to use this prefix when looking for file paths.
Douglas Katzman26eabf62015-06-24 15:10:30 +00003538 for (const std::string &Dir : PrefixDirs) {
Joerg Sonnenberger6165ab12011-03-21 13:51:29 +00003539 if (Dir.empty())
3540 continue;
Douglas Katzman26eabf62015-06-24 15:10:30 +00003541 SmallString<128> P(Dir[0] == '=' ? SysRoot + Dir.substr(1) : Dir);
Rafael Espindola609a6642013-06-24 18:33:43 +00003542 llvm::sys::path::append(P, Name);
3543 if (llvm::sys::fs::exists(Twine(P)))
Chandler Carruth84559242010-03-22 01:52:07 +00003544 return P.str();
3545 }
3546
Rafael Espindola609a6642013-06-24 18:33:43 +00003547 SmallString<128> P(ResourceDir);
3548 llvm::sys::path::append(P, Name);
3549 if (llvm::sys::fs::exists(Twine(P)))
Peter Collingbournefa9771f2011-09-06 02:08:31 +00003550 return P.str();
3551
Douglas Katzman26eabf62015-06-24 15:10:30 +00003552 for (const std::string &Dir : TC.getFilePaths()) {
Joerg Sonnenberger6165ab12011-03-21 13:51:29 +00003553 if (Dir.empty())
3554 continue;
Douglas Katzman26eabf62015-06-24 15:10:30 +00003555 SmallString<128> P(Dir[0] == '=' ? SysRoot + Dir.substr(1) : Dir);
Rafael Espindola609a6642013-06-24 18:33:43 +00003556 llvm::sys::path::append(P, Name);
3557 if (llvm::sys::fs::exists(Twine(P)))
Daniel Dunbar1ce81532009-09-09 22:33:00 +00003558 return P.str();
Daniel Dunbar68b01a02009-03-18 20:26:19 +00003559 }
3560
Daniel Dunbar1ce81532009-09-09 22:33:00 +00003561 return Name;
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +00003562}
3563
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003564void Driver::generatePrefixedToolNames(
Mehdi Amini12011172016-10-06 05:11:48 +00003565 StringRef Tool, const ToolChain &TC,
Douglas Katzmana67e50c2015-06-26 15:47:46 +00003566 SmallVectorImpl<std::string> &Names) const {
Saleem Abdulrasoolf0ba6ce2014-10-25 23:33:21 +00003567 // FIXME: Needs a better variable than DefaultTargetTriple
Mehdi Amini12011172016-10-06 05:11:48 +00003568 Names.emplace_back((DefaultTargetTriple + "-" + Tool).str());
Benjamin Kramer3204b152015-05-29 19:42:19 +00003569 Names.emplace_back(Tool);
Vasileios Kalintirisc744e122015-11-12 15:26:54 +00003570
3571 // Allow the discovery of tools prefixed with LLVM's default target triple.
3572 std::string LLVMDefaultTargetTriple = llvm::sys::getDefaultTargetTriple();
3573 if (LLVMDefaultTargetTriple != DefaultTargetTriple)
Mehdi Amini12011172016-10-06 05:11:48 +00003574 Names.emplace_back((LLVMDefaultTargetTriple + "-" + Tool).str());
Saleem Abdulrasoolf0ba6ce2014-10-25 23:33:21 +00003575}
3576
Benjamin Kramer7111b912014-11-04 20:26:01 +00003577static bool ScanDirForExecutable(SmallString<128> &Dir,
3578 ArrayRef<std::string> Names) {
Saleem Abdulrasoolf0ba6ce2014-10-25 23:33:21 +00003579 for (const auto &Name : Names) {
3580 llvm::sys::path::append(Dir, Name);
3581 if (llvm::sys::fs::can_execute(Twine(Dir)))
3582 return true;
3583 llvm::sys::path::remove_filename(Dir);
3584 }
3585 return false;
3586}
3587
Mehdi Amini12011172016-10-06 05:11:48 +00003588std::string Driver::GetProgramPath(StringRef Name, const ToolChain &TC) const {
Saleem Abdulrasoolf0ba6ce2014-10-25 23:33:21 +00003589 SmallVector<std::string, 2> TargetSpecificExecutables;
3590 generatePrefixedToolNames(Name, TC, TargetSpecificExecutables);
3591
Chandler Carruth84559242010-03-22 01:52:07 +00003592 // Respect a limited subset of the '-Bprefix' functionality in GCC by
Logan Chiencd679fd2012-10-04 08:08:56 +00003593 // attempting to use this prefix when looking for program paths.
Saleem Abdulrasool23d99b12014-09-16 03:48:32 +00003594 for (const auto &PrefixDir : PrefixDirs) {
3595 if (llvm::sys::fs::is_directory(PrefixDir)) {
3596 SmallString<128> P(PrefixDir);
Saleem Abdulrasoolf0ba6ce2014-10-25 23:33:21 +00003597 if (ScanDirForExecutable(P, TargetSpecificExecutables))
Rafael Espindola8be5c052013-06-19 13:24:29 +00003598 return P.str();
Simon Atanasyana47ba292012-10-31 14:39:28 +00003599 } else {
Mehdi Amini12011172016-10-06 05:11:48 +00003600 SmallString<128> P((PrefixDir + Name).str());
Rafael Espindola609a6642013-06-24 18:33:43 +00003601 if (llvm::sys::fs::can_execute(Twine(P)))
Rafael Espindola8be5c052013-06-19 13:24:29 +00003602 return P.str();
Simon Atanasyan86bdab72012-10-31 12:01:53 +00003603 }
Chandler Carruth84559242010-03-22 01:52:07 +00003604 }
3605
Daniel Dunbar68b01a02009-03-18 20:26:19 +00003606 const ToolChain::path_list &List = TC.getProgramPaths();
Saleem Abdulrasool23d99b12014-09-16 03:48:32 +00003607 for (const auto &Path : List) {
3608 SmallString<128> P(Path);
Saleem Abdulrasoolf0ba6ce2014-10-25 23:33:21 +00003609 if (ScanDirForExecutable(P, TargetSpecificExecutables))
Rafael Espindola8be5c052013-06-19 13:24:29 +00003610 return P.str();
Daniel Dunbar68b01a02009-03-18 20:26:19 +00003611 }
3612
Daniel Dunbar76ce7412009-03-23 16:15:50 +00003613 // If all else failed, search the path.
Michael J. Spencerb011d482014-11-07 21:30:32 +00003614 for (const auto &TargetSpecificExecutable : TargetSpecificExecutables)
3615 if (llvm::ErrorOr<std::string> P =
3616 llvm::sys::findProgramByName(TargetSpecificExecutable))
Michael J. Spencer04162ea2014-11-04 01:30:55 +00003617 return *P;
Daniel Dunbar6f668772009-03-18 21:34:08 +00003618
Daniel Dunbar1ce81532009-09-09 22:33:00 +00003619 return Name;
Daniel Dunbar5e0f6af2009-03-13 00:51:18 +00003620}
3621
Mehdi Amini12011172016-10-06 05:11:48 +00003622std::string Driver::GetTemporaryPath(StringRef Prefix, StringRef Suffix) const {
Rafael Espindola37d229d2013-06-25 04:26:55 +00003623 SmallString<128> Path;
Rafael Espindolac0809172014-06-12 14:02:15 +00003624 std::error_code EC = llvm::sys::fs::createTemporaryFile(Prefix, Suffix, Path);
Rafael Espindola37d229d2013-06-25 04:26:55 +00003625 if (EC) {
3626 Diag(clang::diag::err_unable_to_make_temp) << EC.message();
Daniel Dunbare627c1c2009-03-18 19:34:39 +00003627 return "";
3628 }
3629
Rafael Espindola37d229d2013-06-25 04:26:55 +00003630 return Path.str();
Daniel Dunbare627c1c2009-03-18 19:34:39 +00003631}
3632
Nico Weber2ca4be92016-03-01 23:16:44 +00003633std::string Driver::GetClPchPath(Compilation &C, StringRef BaseName) const {
3634 SmallString<128> Output;
3635 if (Arg *FpArg = C.getArgs().getLastArg(options::OPT__SLASH_Fp)) {
3636 // FIXME: If anybody needs it, implement this obscure rule:
3637 // "If you specify a directory without a file name, the default file name
3638 // is VCx0.pch., where x is the major version of Visual C++ in use."
3639 Output = FpArg->getValue();
3640
3641 // "If you do not specify an extension as part of the path name, an
3642 // extension of .pch is assumed. "
3643 if (!llvm::sys::path::has_extension(Output))
3644 Output += ".pch";
3645 } else {
3646 Output = BaseName;
3647 llvm::sys::path::replace_extension(Output, ".pch");
3648 }
3649 return Output.str();
3650}
3651
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003652const ToolChain &Driver::getToolChain(const ArgList &Args,
Artem Belevich959e0542015-07-10 19:47:55 +00003653 const llvm::Triple &Target) const {
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003654
David Blaikie6ad71012017-01-13 18:53:43 +00003655 auto &TC = ToolChains[Target.str()];
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003656 if (!TC) {
3657 switch (Target.getOS()) {
Reid Kleckner330fb172016-05-11 16:19:05 +00003658 case llvm::Triple::Haiku:
David Blaikie6ad71012017-01-13 18:53:43 +00003659 TC = llvm::make_unique<toolchains::Haiku>(*this, Target, Args);
Reid Kleckner330fb172016-05-11 16:19:05 +00003660 break;
Ed Schouten3c3e58c2015-03-26 11:13:44 +00003661 case llvm::Triple::CloudABI:
David Blaikie6ad71012017-01-13 18:53:43 +00003662 TC = llvm::make_unique<toolchains::CloudABI>(*this, Target, Args);
Ed Schouten3c3e58c2015-03-26 11:13:44 +00003663 break;
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003664 case llvm::Triple::Darwin:
3665 case llvm::Triple::MacOSX:
3666 case llvm::Triple::IOS:
Tim Northover6f3ff222015-10-30 16:30:27 +00003667 case llvm::Triple::TvOS:
3668 case llvm::Triple::WatchOS:
David Blaikie6ad71012017-01-13 18:53:43 +00003669 TC = llvm::make_unique<toolchains::DarwinClang>(*this, Target, Args);
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003670 break;
3671 case llvm::Triple::DragonFly:
David Blaikie6ad71012017-01-13 18:53:43 +00003672 TC = llvm::make_unique<toolchains::DragonFly>(*this, Target, Args);
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003673 break;
3674 case llvm::Triple::OpenBSD:
David Blaikie6ad71012017-01-13 18:53:43 +00003675 TC = llvm::make_unique<toolchains::OpenBSD>(*this, Target, Args);
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003676 break;
Eli Friedman9fa28852012-08-08 23:57:20 +00003677 case llvm::Triple::Bitrig:
David Blaikie6ad71012017-01-13 18:53:43 +00003678 TC = llvm::make_unique<toolchains::Bitrig>(*this, Target, Args);
Eli Friedman9fa28852012-08-08 23:57:20 +00003679 break;
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003680 case llvm::Triple::NetBSD:
David Blaikie6ad71012017-01-13 18:53:43 +00003681 TC = llvm::make_unique<toolchains::NetBSD>(*this, Target, Args);
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003682 break;
3683 case llvm::Triple::FreeBSD:
David Blaikie6ad71012017-01-13 18:53:43 +00003684 TC = llvm::make_unique<toolchains::FreeBSD>(*this, Target, Args);
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003685 break;
3686 case llvm::Triple::Minix:
David Blaikie6ad71012017-01-13 18:53:43 +00003687 TC = llvm::make_unique<toolchains::Minix>(*this, Target, Args);
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003688 break;
3689 case llvm::Triple::Linux:
Andrey Turetskiy4798eb62016-06-16 10:36:09 +00003690 case llvm::Triple::ELFIAMCU:
Chandler Carruthcf705b22012-01-25 21:03:58 +00003691 if (Target.getArch() == llvm::Triple::hexagon)
David Blaikie6ad71012017-01-13 18:53:43 +00003692 TC = llvm::make_unique<toolchains::HexagonToolChain>(*this, Target,
3693 Args);
Vasileios Kalintirisc744e122015-11-12 15:26:54 +00003694 else if ((Target.getVendor() == llvm::Triple::MipsTechnologies) &&
3695 !Target.hasEnvironment())
David Blaikie6ad71012017-01-13 18:53:43 +00003696 TC = llvm::make_unique<toolchains::MipsLLVMToolChain>(*this, Target,
3697 Args);
Chandler Carruthcf705b22012-01-25 21:03:58 +00003698 else
David Blaikie6ad71012017-01-13 18:53:43 +00003699 TC = llvm::make_unique<toolchains::Linux>(*this, Target, Args);
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003700 break;
Derek Schuff6ab52fa2015-03-30 20:31:33 +00003701 case llvm::Triple::NaCl:
David Blaikie6ad71012017-01-13 18:53:43 +00003702 TC = llvm::make_unique<toolchains::NaClToolChain>(*this, Target, Args);
Derek Schuff6ab52fa2015-03-30 20:31:33 +00003703 break;
Petr Hosek62e1d232016-10-06 06:08:09 +00003704 case llvm::Triple::Fuchsia:
David Blaikie6ad71012017-01-13 18:53:43 +00003705 TC = llvm::make_unique<toolchains::Fuchsia>(*this, Target, Args);
Petr Hosek62e1d232016-10-06 06:08:09 +00003706 break;
David Chisnallf571cde2012-02-15 13:39:01 +00003707 case llvm::Triple::Solaris:
David Blaikie6ad71012017-01-13 18:53:43 +00003708 TC = llvm::make_unique<toolchains::Solaris>(*this, Target, Args);
David Chisnallf571cde2012-02-15 13:39:01 +00003709 break;
Tom Stellard8fa33092015-07-18 01:49:05 +00003710 case llvm::Triple::AMDHSA:
David Blaikie6ad71012017-01-13 18:53:43 +00003711 TC = llvm::make_unique<toolchains::AMDGPUToolChain>(*this, Target, Args);
Tom Stellard8fa33092015-07-18 01:49:05 +00003712 break;
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003713 case llvm::Triple::Win32:
Saleem Abdulrasool377066a2014-03-27 22:50:18 +00003714 switch (Target.getEnvironment()) {
3715 default:
3716 if (Target.isOSBinFormatELF())
David Blaikie6ad71012017-01-13 18:53:43 +00003717 TC = llvm::make_unique<toolchains::Generic_ELF>(*this, Target, Args);
Saleem Abdulrasool377066a2014-03-27 22:50:18 +00003718 else if (Target.isOSBinFormatMachO())
David Blaikie6ad71012017-01-13 18:53:43 +00003719 TC = llvm::make_unique<toolchains::MachO>(*this, Target, Args);
Saleem Abdulrasool377066a2014-03-27 22:50:18 +00003720 else
David Blaikie6ad71012017-01-13 18:53:43 +00003721 TC = llvm::make_unique<toolchains::Generic_GCC>(*this, Target, Args);
Saleem Abdulrasool377066a2014-03-27 22:50:18 +00003722 break;
3723 case llvm::Triple::GNU:
David Blaikie6ad71012017-01-13 18:53:43 +00003724 TC = llvm::make_unique<toolchains::MinGW>(*this, Target, Args);
Saleem Abdulrasool377066a2014-03-27 22:50:18 +00003725 break;
Saleem Abdulrasool543a78b2014-10-24 03:13:37 +00003726 case llvm::Triple::Itanium:
David Blaikie6ad71012017-01-13 18:53:43 +00003727 TC = llvm::make_unique<toolchains::CrossWindowsToolChain>(*this, Target,
3728 Args);
Saleem Abdulrasool543a78b2014-10-24 03:13:37 +00003729 break;
Saleem Abdulrasool377066a2014-03-27 22:50:18 +00003730 case llvm::Triple::MSVC:
3731 case llvm::Triple::UnknownEnvironment:
David Blaikie6ad71012017-01-13 18:53:43 +00003732 TC = llvm::make_unique<toolchains::MSVCToolChain>(*this, Target, Args);
Saleem Abdulrasool377066a2014-03-27 22:50:18 +00003733 break;
3734 }
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003735 break;
Filipe Cabecinhasc888e192015-10-14 12:25:43 +00003736 case llvm::Triple::PS4:
David Blaikie6ad71012017-01-13 18:53:43 +00003737 TC = llvm::make_unique<toolchains::PS4CPU>(*this, Target, Args);
Filipe Cabecinhasc888e192015-10-14 12:25:43 +00003738 break;
David L Kreitzerd397ea42016-10-14 20:44:33 +00003739 case llvm::Triple::Contiki:
David Blaikie6ad71012017-01-13 18:53:43 +00003740 TC = llvm::make_unique<toolchains::Contiki>(*this, Target, Args);
David L Kreitzerd397ea42016-10-14 20:44:33 +00003741 break;
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003742 default:
Douglas Katzman9f5e70e2015-05-26 18:01:33 +00003743 // Of these targets, Hexagon is the only one that might have
3744 // an OS of Linux, in which case it got handled above already.
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003745 switch (Target.getArch()) {
3746 case llvm::Triple::tce:
David Blaikie6ad71012017-01-13 18:53:43 +00003747 TC = llvm::make_unique<toolchains::TCEToolChain>(*this, Target, Args);
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003748 break;
Pekka Jaaskelainen67354482016-11-16 15:22:31 +00003749 case llvm::Triple::tcele:
David Blaikie6ad71012017-01-13 18:53:43 +00003750 TC = llvm::make_unique<toolchains::TCELEToolChain>(*this, Target, Args);
Pekka Jaaskelainen67354482016-11-16 15:22:31 +00003751 break;
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003752 case llvm::Triple::hexagon:
David Blaikie6ad71012017-01-13 18:53:43 +00003753 TC = llvm::make_unique<toolchains::HexagonToolChain>(*this, Target,
3754 Args);
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003755 break;
Jacques Pienaard964cc22016-03-28 21:02:54 +00003756 case llvm::Triple::lanai:
David Blaikie6ad71012017-01-13 18:53:43 +00003757 TC = llvm::make_unique<toolchains::LanaiToolChain>(*this, Target, Args);
Jacques Pienaard964cc22016-03-28 21:02:54 +00003758 break;
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003759 case llvm::Triple::xcore:
David Blaikie6ad71012017-01-13 18:53:43 +00003760 TC = llvm::make_unique<toolchains::XCoreToolChain>(*this, Target, Args);
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003761 break;
Dan Gohmanc2853072015-09-03 22:51:53 +00003762 case llvm::Triple::wasm32:
3763 case llvm::Triple::wasm64:
David Blaikie6ad71012017-01-13 18:53:43 +00003764 TC = llvm::make_unique<toolchains::WebAssembly>(*this, Target, Args);
Dan Gohmanc2853072015-09-03 22:51:53 +00003765 break;
Dylan McKay924fa3a2017-01-05 05:20:27 +00003766 case llvm::Triple::avr:
David Blaikie6ad71012017-01-13 18:53:43 +00003767 TC = llvm::make_unique<toolchains::AVRToolChain>(*this, Target, Args);
Dylan McKay924fa3a2017-01-05 05:20:27 +00003768 break;
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003769 default:
Douglas Katzmand6e597c2015-09-17 19:56:40 +00003770 if (Target.getVendor() == llvm::Triple::Myriad)
David Blaikie6ad71012017-01-13 18:53:43 +00003771 TC = llvm::make_unique<toolchains::MyriadToolChain>(*this, Target,
3772 Args);
Douglas Katzmand6e597c2015-09-17 19:56:40 +00003773 else if (Target.isOSBinFormatELF())
David Blaikie6ad71012017-01-13 18:53:43 +00003774 TC = llvm::make_unique<toolchains::Generic_ELF>(*this, Target, Args);
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003775 else if (Target.isOSBinFormatMachO())
David Blaikie6ad71012017-01-13 18:53:43 +00003776 TC = llvm::make_unique<toolchains::MachO>(*this, Target, Args);
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003777 else
David Blaikie6ad71012017-01-13 18:53:43 +00003778 TC = llvm::make_unique<toolchains::Generic_GCC>(*this, Target, Args);
Douglas Katzman15a63ed2015-08-12 18:36:12 +00003779 }
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003780 }
3781 }
Justin Lebar66c4fd72016-11-18 00:41:22 +00003782
3783 // Intentionally omitted from the switch above: llvm::Triple::CUDA. CUDA
3784 // compiles always need two toolchains, the CUDA toolchain and the host
3785 // toolchain. So the only valid way to create a CUDA toolchain is via
3786 // CreateOffloadingDeviceToolChains.
3787
Chandler Carruth2ad5de12012-01-25 11:01:57 +00003788 return *TC;
Daniel Dunbar4dff6a42009-03-10 23:41:59 +00003789}
Daniel Dunbar8fa879d2009-03-24 18:57:02 +00003790
Rafael Espindola2f69d402013-03-18 15:33:26 +00003791bool Driver::ShouldUseClangCompiler(const JobAction &JA) const {
Douglas Katzman00249092015-06-12 15:45:21 +00003792 // Say "no" if there is not exactly one input of a type clang understands.
Nico Weber5a459f82016-02-23 19:30:43 +00003793 if (JA.size() != 1 ||
3794 !types::isAcceptedByClang((*JA.input_begin())->getType()))
Nick Lewycky5cc9ebb2012-11-15 05:36:36 +00003795 return false;
3796
Douglas Katzman00249092015-06-12 15:45:21 +00003797 // And say "no" if this is not a kind of action clang understands.
Nick Lewycky5cc9ebb2012-11-15 05:36:36 +00003798 if (!isa<PreprocessJobAction>(JA) && !isa<PrecompileJobAction>(JA) &&
Bob Wilson23a55f12014-12-21 07:00:00 +00003799 !isa<CompileJobAction>(JA) && !isa<BackendJobAction>(JA))
Nick Lewycky5cc9ebb2012-11-15 05:36:36 +00003800 return false;
3801
3802 return true;
3803}
3804
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00003805/// GetReleaseVersion - Parse (([0-9]+)(.([0-9]+)(.([0-9]+)?))?)? and return the
3806/// grouped values as integers. Numbers which are not provided are set to 0.
Daniel Dunbarc7fd57a2009-03-26 15:58:36 +00003807///
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00003808/// \return True if the entire string was parsed (9.2), or all groups were
3809/// parsed (10.3.5extrastuff).
Mehdi Amini12011172016-10-06 05:11:48 +00003810bool Driver::GetReleaseVersion(StringRef Str, unsigned &Major, unsigned &Minor,
3811 unsigned &Micro, bool &HadExtra) {
Daniel Dunbarc7fd57a2009-03-26 15:58:36 +00003812 HadExtra = false;
3813
3814 Major = Minor = Micro = 0;
Mehdi Amini12011172016-10-06 05:11:48 +00003815 if (Str.empty())
Bob Wilson433cb312015-04-07 01:03:35 +00003816 return false;
Daniel Dunbarc7fd57a2009-03-26 15:58:36 +00003817
Mehdi Amini12011172016-10-06 05:11:48 +00003818 if (Str.consumeInteger(10, Major))
3819 return false;
3820 if (Str.empty())
Daniel Dunbarc7fd57a2009-03-26 15:58:36 +00003821 return true;
Mehdi Amini12011172016-10-06 05:11:48 +00003822 if (Str[0] != '.')
Daniel Dunbarc7fd57a2009-03-26 15:58:36 +00003823 return false;
Daniel Dunbarf26a7ab2009-09-08 23:36:43 +00003824
Mehdi Amini12011172016-10-06 05:11:48 +00003825 Str = Str.drop_front(1);
Daniel Dunbarc7fd57a2009-03-26 15:58:36 +00003826
Mehdi Amini12011172016-10-06 05:11:48 +00003827 if (Str.consumeInteger(10, Minor))
Daniel Dunbarc7fd57a2009-03-26 15:58:36 +00003828 return false;
Mehdi Amini12011172016-10-06 05:11:48 +00003829 if (Str.empty())
3830 return true;
3831 if (Str[0] != '.')
3832 return false;
3833 Str = Str.drop_front(1);
3834
3835 if (Str.consumeInteger(10, Micro))
3836 return false;
3837 if (!Str.empty())
3838 HadExtra = true;
Daniel Dunbarc7fd57a2009-03-26 15:58:36 +00003839 return true;
3840}
Hans Wennborg6ddc6902013-07-27 00:23:45 +00003841
Bruno Cardoso Lopes8ed5cac2016-03-31 02:45:46 +00003842/// Parse digits from a string \p Str and fulfill \p Digits with
3843/// the parsed numbers. This method assumes that the max number of
3844/// digits to look for is equal to Digits.size().
3845///
3846/// \return True if the entire string was parsed and there are
3847/// no extra characters remaining at the end.
Mehdi Amini12011172016-10-06 05:11:48 +00003848bool Driver::GetReleaseVersion(StringRef Str,
Bruno Cardoso Lopes8ed5cac2016-03-31 02:45:46 +00003849 MutableArrayRef<unsigned> Digits) {
Mehdi Amini12011172016-10-06 05:11:48 +00003850 if (Str.empty())
Bruno Cardoso Lopes8ed5cac2016-03-31 02:45:46 +00003851 return false;
3852
Bruno Cardoso Lopes8ed5cac2016-03-31 02:45:46 +00003853 unsigned CurDigit = 0;
3854 while (CurDigit < Digits.size()) {
Mehdi Amini12011172016-10-06 05:11:48 +00003855 unsigned Digit;
3856 if (Str.consumeInteger(10, Digit))
Bruno Cardoso Lopes8ed5cac2016-03-31 02:45:46 +00003857 return false;
Mehdi Amini12011172016-10-06 05:11:48 +00003858 Digits[CurDigit] = Digit;
3859 if (Str.empty())
3860 return true;
3861 if (Str[0] != '.')
3862 return false;
3863 Str = Str.drop_front(1);
Bruno Cardoso Lopes8ed5cac2016-03-31 02:45:46 +00003864 CurDigit++;
3865 }
3866
3867 // More digits than requested, bail out...
3868 return false;
3869}
3870
Hans Wennborg6ddc6902013-07-27 00:23:45 +00003871std::pair<unsigned, unsigned> Driver::getIncludeExcludeOptionFlagMasks() const {
3872 unsigned IncludedFlagsBitmask = 0;
Rafael Espindolacc707bc2013-09-25 15:54:41 +00003873 unsigned ExcludedFlagsBitmask = options::NoDriverOption;
Hans Wennborg6ddc6902013-07-27 00:23:45 +00003874
3875 if (Mode == CLMode) {
Hans Wennborg19076102013-07-31 20:51:53 +00003876 // Include CL and Core options.
3877 IncludedFlagsBitmask |= options::CLOption;
3878 IncludedFlagsBitmask |= options::CoreOption;
Hans Wennborg6ddc6902013-07-27 00:23:45 +00003879 } else {
3880 ExcludedFlagsBitmask |= options::CLOption;
3881 }
3882
3883 return std::make_pair(IncludedFlagsBitmask, ExcludedFlagsBitmask);
3884}
Benjamin Kramerab88f622014-03-25 18:02:07 +00003885
Douglas Katzmanf08fadf2015-06-04 14:40:44 +00003886bool clang::driver::isOptimizationLevelFast(const ArgList &Args) {
Benjamin Kramerab88f622014-03-25 18:02:07 +00003887 return Args.hasFlag(options::OPT_Ofast, options::OPT_O_Group, false);
3888}