1 //===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===//
2 //
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 
10 #include "clang/Driver/Driver.h"
11 #include "InputInfo.h"
12 #include "ToolChains.h"
13 #include "clang/Basic/Version.h"
14 #include "clang/Basic/VirtualFileSystem.h"
15 #include "clang/Config/config.h"
16 #include "clang/Driver/Action.h"
17 #include "clang/Driver/Compilation.h"
18 #include "clang/Driver/DriverDiagnostic.h"
19 #include "clang/Driver/Job.h"
20 #include "clang/Driver/Options.h"
21 #include "clang/Driver/SanitizerArgs.h"
22 #include "clang/Driver/Tool.h"
23 #include "clang/Driver/ToolChain.h"
24 #include "llvm/ADT/ArrayRef.h"
25 #include "llvm/ADT/STLExtras.h"
26 #include "llvm/ADT/SmallSet.h"
27 #include "llvm/ADT/StringExtras.h"
28 #include "llvm/ADT/StringSet.h"
29 #include "llvm/ADT/StringSwitch.h"
30 #include "llvm/Option/Arg.h"
31 #include "llvm/Option/ArgList.h"
32 #include "llvm/Option/OptSpecifier.h"
33 #include "llvm/Option/OptTable.h"
34 #include "llvm/Option/Option.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include "llvm/Support/FileSystem.h"
37 #include "llvm/Support/Path.h"
38 #include "llvm/Support/PrettyStackTrace.h"
39 #include "llvm/Support/Process.h"
40 #include "llvm/Support/Program.h"
41 #include "llvm/Support/raw_ostream.h"
42 #include <map>
43 #include <memory>
44 #include <utility>
45 #if LLVM_ON_UNIX
46 #include <unistd.h> // getpid
47 #endif
48 
49 using namespace clang::driver;
50 using namespace clang;
51 using namespace llvm::opt;
52 
53 Driver::Driver(StringRef ClangExecutable, StringRef DefaultTargetTriple,
54                DiagnosticsEngine &Diags,
55                IntrusiveRefCntPtr<vfs::FileSystem> VFS)
56     : Opts(createDriverOptTable()), Diags(Diags), VFS(std::move(VFS)),
57       Mode(GCCMode), SaveTemps(SaveTempsNone), BitcodeEmbed(EmbedNone),
58       LTOMode(LTOK_None), ClangExecutable(ClangExecutable),
59       SysRoot(DEFAULT_SYSROOT), UseStdLib(true),
60       DriverTitle("clang LLVM compiler"), CCPrintOptionsFilename(nullptr),
61       CCPrintHeadersFilename(nullptr), CCLogDiagnosticsFilename(nullptr),
62       CCCPrintBindings(false), CCPrintHeaders(false), CCLogDiagnostics(false),
63       CCGenDiagnostics(false), DefaultTargetTriple(DefaultTargetTriple),
64       CCCGenericGCCName(""), CheckInputsExist(true), CCCUsePCH(true),
65       SuppressMissingInputWarning(false) {
66 
67   // Provide a sane fallback if no VFS is specified.
68   if (!this->VFS)
69     this->VFS = vfs::getRealFileSystem();
70 
71   Name = llvm::sys::path::filename(ClangExecutable);
72   Dir = llvm::sys::path::parent_path(ClangExecutable);
73   InstalledDir = Dir; // Provide a sensible default installed dir.
74 
75   // Compute the path to the resource directory.
76   StringRef ClangResourceDir(CLANG_RESOURCE_DIR);
77   SmallString<128> P(Dir);
78   if (ClangResourceDir != "") {
79     llvm::sys::path::append(P, ClangResourceDir);
80   } else {
81     StringRef ClangLibdirSuffix(CLANG_LIBDIR_SUFFIX);
82     llvm::sys::path::append(P, "..", Twine("lib") + ClangLibdirSuffix, "clang",
83                             CLANG_VERSION_STRING);
84   }
85   ResourceDir = P.str();
86 }
87 
88 void Driver::ParseDriverMode(StringRef ProgramName,
89                              ArrayRef<const char *> Args) {
90   auto Default = ToolChain::getTargetAndModeFromProgramName(ProgramName);
91   StringRef DefaultMode(Default.second);
92   setDriverModeFromOption(DefaultMode);
93 
94   for (const char *ArgPtr : Args) {
95     // Ingore nullptrs, they are response file's EOL markers
96     if (ArgPtr == nullptr)
97       continue;
98     const StringRef Arg = ArgPtr;
99     setDriverModeFromOption(Arg);
100   }
101 }
102 
103 void 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 
123 InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings) {
124   llvm::PrettyStackTraceString CrashInfo("Command line argument parsing");
125 
126   unsigned IncludedFlagsBitmask;
127   unsigned ExcludedFlagsBitmask;
128   std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) =
129       getIncludeExcludeOptionFlagMasks();
130 
131   unsigned MissingArgIndex, MissingArgCount;
132   InputArgList Args =
133       getOpts().ParseArgs(ArgStrings, MissingArgIndex, MissingArgCount,
134                           IncludedFlagsBitmask, ExcludedFlagsBitmask);
135 
136   // Check for missing argument error.
137   if (MissingArgCount)
138     Diag(clang::diag::err_drv_missing_argument)
139         << Args.getArgString(MissingArgIndex) << MissingArgCount;
140 
141   // Check for unsupported options.
142   for (const Arg *A : Args) {
143     if (A->getOption().hasFlag(options::Unsupported)) {
144       Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(Args);
145       continue;
146     }
147 
148     // Warn about -mcpu= without an argument.
149     if (A->getOption().matches(options::OPT_mcpu_EQ) && A->containsValue("")) {
150       Diag(clang::diag::warn_drv_empty_joined_argument) << A->getAsString(Args);
151     }
152   }
153 
154   for (const Arg *A : Args.filtered(options::OPT_UNKNOWN))
155     Diags.Report(IsCLMode() ? diag::warn_drv_unknown_argument_clang_cl :
156                               diag::err_drv_unknown_argument)
157       << A->getAsString(Args);
158 
159   return Args;
160 }
161 
162 // 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.
165 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL,
166                                  Arg **FinalPhaseArg) const {
167   Arg *PhaseArg = nullptr;
168   phases::ID FinalPhase;
169 
170   // -{E,EP,P,M,MM} only run the preprocessor.
171   if (CCCIsCPP() || (PhaseArg = DAL.getLastArg(options::OPT_E)) ||
172       (PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) ||
173       (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM)) ||
174       (PhaseArg = DAL.getLastArg(options::OPT__SLASH_P))) {
175     FinalPhase = phases::Preprocess;
176 
177     // --precompile only runs up to precompilation.
178   } else if ((PhaseArg = DAL.getLastArg(options::OPT__precompile))) {
179     FinalPhase = phases::Precompile;
180 
181     // -{fsyntax-only,-analyze,emit-ast} only run up to the compiler.
182   } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
183              (PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) ||
184              (PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) ||
185              (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||
186              (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) ||
187              (PhaseArg = DAL.getLastArg(options::OPT__migrate)) ||
188              (PhaseArg = DAL.getLastArg(options::OPT__analyze,
189                                         options::OPT__analyze_auto)) ||
190              (PhaseArg = DAL.getLastArg(options::OPT_emit_ast))) {
191     FinalPhase = phases::Compile;
192 
193     // -S only runs up to the backend.
194   } else if ((PhaseArg = DAL.getLastArg(options::OPT_S))) {
195     FinalPhase = phases::Backend;
196 
197     // -c compilation only runs up to the assembler.
198   } else if ((PhaseArg = DAL.getLastArg(options::OPT_c))) {
199     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 
211 static Arg *MakeInputArg(DerivedArgList &Args, OptTable &Opts,
212                          StringRef Value) {
213   Arg *A = new Arg(Opts.getOption(options::OPT_INPUT), Value,
214                    Args.getBaseArgs().MakeIndex(Value), Value.data());
215   Args.AddSynthesizedArg(A);
216   A->claim();
217   return A;
218 }
219 
220 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
221   DerivedArgList *DAL = new DerivedArgList(Args);
222 
223   bool HasNostdlib = Args.hasArg(options::OPT_nostdlib);
224   bool HasNodefaultlib = Args.hasArg(options::OPT_nodefaultlibs);
225   for (Arg *A : Args) {
226     // 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').
229 
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")) {
235       // 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.
239       for (StringRef Val : A->getValues())
240         if (Val != "--no-demangle")
241           DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker), Val);
242 
243       continue;
244     }
245 
246     // 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) &&
250         (A->getValue(0) == StringRef("-MD") ||
251          A->getValue(0) == StringRef("-MMD"))) {
252       // Rewrite to -MD/-MMD along with -MF.
253       if (A->getValue(0) == StringRef("-MD"))
254         DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD));
255       else
256         DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD));
257       if (A->getNumValues() == 2)
258         DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF),
259                             A->getValue(1));
260       continue;
261     }
262 
263     // Rewrite reserved library names.
264     if (A->getOption().matches(options::OPT_l)) {
265       StringRef Value = A->getValue();
266 
267       // Rewrite unless -nostdlib is present.
268       if (!HasNostdlib && !HasNodefaultlib && Value == "stdc++") {
269         DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_reserved_lib_stdcxx));
270         continue;
271       }
272 
273       // Rewrite unconditionally.
274       if (Value == "cc_kext") {
275         DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_reserved_lib_cckext));
276         continue;
277       }
278     }
279 
280     // Pick up inputs via the -- option.
281     if (A->getOption().matches(options::OPT__DASH_DASH)) {
282       A->claim();
283       for (StringRef Val : A->getValues())
284         DAL->append(MakeInputArg(*DAL, *Opts, Val));
285       continue;
286     }
287 
288     DAL->append(A);
289   }
290 
291   // Enforce -static if -miamcu is present.
292   if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false))
293     DAL->AddFlagArg(0, Opts->getOption(options::OPT_static));
294 
295 // Add a default value of -mlinker-version=, if one was given and the user
296 // didn't specify one.
297 #if defined(HOST_LINK_VERSION)
298   if (!Args.hasArg(options::OPT_mlinker_version_EQ) &&
299       strlen(HOST_LINK_VERSION) > 0) {
300     DAL->AddJoinedArg(0, Opts->getOption(options::OPT_mlinker_version_EQ),
301                       HOST_LINK_VERSION);
302     DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim();
303   }
304 #endif
305 
306   return DAL;
307 }
308 
309 /// \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.
313 static llvm::Triple computeTargetTriple(const Driver &D,
314                                         StringRef DefaultTargetTriple,
315                                         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'.
354   if (Target.getArch() == llvm::Triple::tce ||
355       Target.getOS() == llvm::Triple::Minix)
356     return Target;
357 
358   // Handle pseudo-target flags '-m64', '-mx32', '-m32' and '-m16'.
359   Arg *A = Args.getLastArg(options::OPT_m64, options::OPT_mx32,
360                            options::OPT_m32, options::OPT_m16);
361   if (A) {
362     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 
386   // Handle -miamcu flag.
387   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();
391 
392     if (A && !A->getOption().matches(options::OPT_m32))
393       D.Diag(diag::err_drv_argument_not_allowed_with)
394           << "-miamcu" << A->getBaseArg().getAsString(Args);
395 
396     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");
403   }
404 
405   return Target;
406 }
407 
408 // \brief Parse the LTO options and record the type of LTO compilation
409 // based on which -f(no-)?lto(=.*)? option occurs last.
410 void 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);
419   if (A)
420     LTOName = A->getValue();
421 
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 
434 /// Compute the desired OpenMP runtime from the flags provided.
435 Driver::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 
460 void 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       })) {
470     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.
476     auto &CudaTC = ToolChains[CudaTriple.str() + "/" + HostTriple.str()];
477     if (!CudaTC) {
478       CudaTC = llvm::make_unique<toolchains::CudaToolChain>(
479           *this, CudaTriple, *HostTC, C.getInputArgs());
480     }
481     C.addOffloadDeviceToolChain(CudaTC.get(), Action::OFK_Cuda);
482   }
483 
484   //
485   // 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   //
538   // TODO: Add support for other offloading programming models here.
539   //
540 
541   return;
542 }
543 
544 Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
545   llvm::PrettyStackTraceString CrashInfo("Compilation construction");
546 
547   // FIXME: Handle environment options which affect driver behavior, somewhere
548   // (client?). GCC_EXEC_PREFIX, LPATH, CC_PRINT_OPTIONS.
549 
550   if (Optional<std::string> CompilerPathValue =
551           llvm::sys::Process::GetEnv("COMPILER_PATH")) {
552     StringRef CompilerPath = *CompilerPathValue;
553     while (!CompilerPath.empty()) {
554       std::pair<StringRef, StringRef> Split =
555           CompilerPath.split(llvm::sys::EnvPathSeparator);
556       PrefixDirs.push_back(Split.first);
557       CompilerPath = Split.second;
558     }
559   }
560 
561   // We look for the driver mode option early, because the mode can affect
562   // how other options are parsed.
563   ParseDriverMode(ClangExecutable, ArgList.slice(1));
564 
565   // FIXME: What are we going to do with -V and -b?
566 
567   // FIXME: This stuff needs to go into the Compilation, not the driver.
568   bool CCCPrintPhases;
569 
570   InputArgList Args = ParseArgStrings(ArgList.slice(1));
571 
572   // Silence driver warnings if requested
573   Diags.setIgnoreAllWarnings(Args.hasArg(options::OPT_w));
574 
575   // -no-canonical-prefixes is used very early in main.
576   Args.ClaimAllArgs(options::OPT_no_canonical_prefixes);
577 
578   // Ignore -pipe.
579   Args.ClaimAllArgs(options::OPT_pipe);
580 
581   // Extract -ccc args.
582   //
583   // 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.
587   CCCPrintPhases = Args.hasArg(options::OPT_ccc_print_phases);
588   CCCPrintBindings = Args.hasArg(options::OPT_ccc_print_bindings);
589   if (const Arg *A = Args.getLastArg(options::OPT_ccc_gcc_name))
590     CCCGenericGCCName = A->getValue();
591   CCCUsePCH =
592       Args.hasFlag(options::OPT_ccc_pch_is_pch, options::OPT_ccc_pch_is_pth);
593   // FIXME: DefaultTargetTriple is used by the target-prefixed calls to as/ld
594   // and getToolChain is const.
595   if (IsCLMode()) {
596     // clang-cl targets MSVC-style Win32.
597     llvm::Triple T(DefaultTargetTriple);
598     T.setOS(llvm::Triple::Win32);
599     T.setVendor(llvm::Triple::PC);
600     T.setEnvironment(llvm::Triple::MSVC);
601     DefaultTargetTriple = T.str();
602   }
603   if (const Arg *A = Args.getLastArg(options::OPT_target))
604     DefaultTargetTriple = A->getValue();
605   if (const Arg *A = Args.getLastArg(options::OPT_ccc_install_dir))
606     Dir = InstalledDir = A->getValue();
607   for (const Arg *A : Args.filtered(options::OPT_B)) {
608     A->claim();
609     PrefixDirs.push_back(A->getValue(0));
610   }
611   if (const Arg *A = Args.getLastArg(options::OPT__sysroot_EQ))
612     SysRoot = A->getValue();
613   if (const Arg *A = Args.getLastArg(options::OPT__dyld_prefix_EQ))
614     DyldPrefix = A->getValue();
615   if (Args.hasArg(options::OPT_nostdlib))
616     UseStdLib = false;
617 
618   if (const Arg *A = Args.getLastArg(options::OPT_resource_dir))
619     ResourceDir = A->getValue();
620 
621   if (const Arg *A = Args.getLastArg(options::OPT_save_temps_EQ)) {
622     SaveTemps = llvm::StringSwitch<SaveTempsMode>(A->getValue())
623                     .Case("cwd", SaveTempsCwd)
624                     .Case("obj", SaveTempsObj)
625                     .Default(SaveTempsCwd);
626   }
627 
628   setLTOMode(Args);
629 
630   // 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);
644   }
645 
646   std::unique_ptr<llvm::opt::InputArgList> UArgs =
647       llvm::make_unique<InputArgList>(std::move(Args));
648 
649   // Perform the default argument translations.
650   DerivedArgList *TranslatedArgs = TranslateInputArgs(*UArgs);
651 
652   // Owned by the host.
653   const ToolChain &TC = getToolChain(
654       *UArgs, computeTargetTriple(*this, DefaultTargetTriple, *UArgs));
655 
656   // The compilation takes ownership of Args.
657   Compilation *C = new Compilation(*this, TC, UArgs.release(), TranslatedArgs);
658 
659   if (!HandleImmediateArgs(*C))
660     return C;
661 
662   // Construct the list of inputs.
663   InputList Inputs;
664   BuildInputs(C->getDefaultToolChain(), *TranslatedArgs, Inputs);
665 
666   // Populate the tool chains for the offloading devices, if any.
667   CreateOffloadingDeviceToolChains(*C, Inputs);
668 
669   // Construct the list of abstract actions to perform for this compilation. On
670   // MachO targets this uses the driver-driver and universal actions.
671   if (TC.getTriple().isOSBinFormatMachO())
672     BuildUniversalActions(*C, C->getDefaultToolChain(), Inputs);
673   else
674     BuildActions(*C, C->getArgs(), Inputs, C->getActions());
675 
676   if (CCCPrintPhases) {
677     PrintActions(*C);
678     return C;
679   }
680 
681   BuildJobs(*C);
682 
683   return C;
684 }
685 
686 static 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 
699 bool 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 
788 // When clang crashes, produce diagnostic information including the fully
789 // preprocessed source file(s).  Request that the developer attach the
790 // diagnostic information to a bug report.
791 void Driver::generateCompilationDiagnostics(Compilation &C,
792                                             const Command &FailingCommand) {
793   if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics))
794     return;
795 
796   // Don't try to generate diagnostics for link or dsymutil jobs.
797   if (FailingCommand.getCreator().isLinkJob() ||
798       FailingCommand.getCreator().isDsymutilJob())
799     return;
800 
801   // Print the version of the compiler.
802   PrintVersion(C, llvm::errs());
803 
804   Diag(clang::diag::note_drv_command_failed_diag_msg)
805       << "PLEASE submit a bug report to " BUG_REPORT_URL " and include the "
806          "crash backtrace, preprocessed source, and associated run script.";
807 
808   // Suppress driver output and emit preprocessor output to temp file.
809   Mode = CPPMode;
810   CCGenDiagnostics = true;
811 
812   // Save the original job command(s).
813   Command Cmd = FailingCommand;
814 
815   // Keep track of whether we produce any errors while trying to produce
816   // preprocessed sources.
817   DiagnosticErrorTrap Trap(Diags);
818 
819   // Suppress tool output.
820   C.initCompilationForDiagnostics();
821 
822   // Construct the list of inputs.
823   InputList Inputs;
824   BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs);
825 
826   for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
827     bool IgnoreInput = false;
828 
829     // Ignore input from stdin or any inputs that cannot be preprocessed.
830     // Check type first as not all linker inputs have a value.
831     if (types::getPreprocessedType(it->first) == types::TY_INVALID) {
832       IgnoreInput = true;
833     } else if (!strcmp(it->second->getValue(), "-")) {
834       Diag(clang::diag::note_drv_command_failed_diag_msg)
835           << "Error generating preprocessed source(s) - "
836              "ignoring input from stdin.";
837       IgnoreInput = true;
838     }
839 
840     if (IgnoreInput) {
841       it = Inputs.erase(it);
842       ie = Inputs.end();
843     } else {
844       ++it;
845     }
846   }
847 
848   if (Inputs.empty()) {
849     Diag(clang::diag::note_drv_command_failed_diag_msg)
850         << "Error generating preprocessed source(s) - "
851            "no preprocessable inputs.";
852     return;
853   }
854 
855   // Don't attempt to generate preprocessed files if multiple -arch options are
856   // used, unless they're all duplicates.
857   llvm::StringSet<> ArchNames;
858   for (const Arg *A : C.getArgs()) {
859     if (A->getOption().matches(options::OPT_arch)) {
860       StringRef ArchName = A->getValue();
861       ArchNames.insert(ArchName);
862     }
863   }
864   if (ArchNames.size() > 1) {
865     Diag(clang::diag::note_drv_command_failed_diag_msg)
866         << "Error generating preprocessed source(s) - cannot generate "
867            "preprocessed source with multiple -arch options.";
868     return;
869   }
870 
871   // Construct the list of abstract actions to perform for this compilation. On
872   // Darwin OSes this uses the driver-driver and builds universal actions.
873   const ToolChain &TC = C.getDefaultToolChain();
874   if (TC.getTriple().isOSBinFormatMachO())
875     BuildUniversalActions(C, TC, Inputs);
876   else
877     BuildActions(C, C.getArgs(), Inputs, C.getActions());
878 
879   BuildJobs(C);
880 
881   // If there were errors building the compilation, quit now.
882   if (Trap.hasErrorOccurred()) {
883     Diag(clang::diag::note_drv_command_failed_diag_msg)
884         << "Error generating preprocessed source(s).";
885     return;
886   }
887 
888   // Generate preprocessed output.
889   SmallVector<std::pair<int, const Command *>, 4> FailingCommands;
890   C.ExecuteJobs(C.getJobs(), FailingCommands);
891 
892   // If any of the preprocessing commands failed, clean up and exit.
893   if (!FailingCommands.empty()) {
894     if (!isSaveTempsEnabled())
895       C.CleanupFileList(C.getTempFiles(), true);
896 
897     Diag(clang::diag::note_drv_command_failed_diag_msg)
898         << "Error generating preprocessed source(s).";
899     return;
900   }
901 
902   const ArgStringList &TempFiles = C.getTempFiles();
903   if (TempFiles.empty()) {
904     Diag(clang::diag::note_drv_command_failed_diag_msg)
905         << "Error generating preprocessed source(s).";
906     return;
907   }
908 
909   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:";
913 
914   SmallString<128> VFS;
915   SmallString<128> ReproCrashFilename;
916   for (const char *TempFile : TempFiles) {
917     Diag(clang::diag::note_drv_command_failed_diag_msg) << TempFile;
918     if (ReproCrashFilename.empty()) {
919       ReproCrashFilename = TempFile;
920       llvm::sys::path::replace_extension(ReproCrashFilename, ".crash");
921     }
922     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   }
929 
930   // Assume associated files are based off of the first temporary file.
931   CrashReportInfo CrashInfo(TempFiles[0], VFS);
932 
933   std::string Script = CrashInfo.Filename.rsplit('.').first.str() + ".sh";
934   std::error_code EC;
935   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 {
940     ScriptOS << "# Crash reproducer for " << getClangFullVersion() << "\n"
941              << "# Driver args: ";
942     printArgList(ScriptOS, C.getInputArgs());
943     ScriptOS << "# Original command: ";
944     Cmd.Print(ScriptOS, "\n", /*Quote=*/true);
945     Cmd.Print(ScriptOS, "\n", /*Quote=*/true, &CrashInfo);
946     Diag(clang::diag::note_drv_command_failed_diag_msg) << Script;
947   }
948 
949   // 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 
967   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 
971   Diag(clang::diag::note_drv_command_failed_diag_msg)
972       << "\n\n********************";
973 }
974 
975 void Driver::setUpResponseFiles(Compilation &C, Command &Cmd) {
976   // Since commandLineFitsWithinSystemLimits() may underestimate system's capacity
977   // 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.
979   if (Cmd.getCreator().getResponseFilesSupport() == Tool::RF_None ||
980       llvm::sys::commandLineFitsWithinSystemLimits(Cmd.getExecutable(), Cmd.getArguments()))
981     return;
982 
983   std::string TmpName = GetTemporaryPath("response", "txt");
984   Cmd.setResponseFile(C.addTempFile(C.getArgs().MakeArgString(TmpName)));
985 }
986 
987 int Driver::ExecuteCompilation(
988     Compilation &C,
989     SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) {
990   // Just print if -### was present.
991   if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
992     C.getJobs().Print(llvm::errs(), "\n", true);
993     return 0;
994   }
995 
996   // If there were errors building the compilation, quit now.
997   if (Diags.hasErrorOccurred())
998     return 1;
999 
1000   // Set up response file names for each command, if necessary
1001   for (auto &Job : C.getJobs())
1002     setUpResponseFiles(C, Job);
1003 
1004   C.ExecuteJobs(C.getJobs(), FailingCommands);
1005 
1006   // Remove temp files.
1007   C.CleanupFileList(C.getTempFiles());
1008 
1009   // If the command succeeded, we are done.
1010   if (FailingCommands.empty())
1011     return 0;
1012 
1013   // Otherwise, remove result files and print extra information about abnormal
1014   // failures.
1015   for (const auto &CmdPair : FailingCommands) {
1016     int Res = CmdPair.first;
1017     const Command *FailingCommand = CmdPair.second;
1018 
1019     // Remove result files if we're not saving temps.
1020     if (!isSaveTempsEnabled()) {
1021       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
1032     // status was 1, assume the command failed normally. In particular, if it
1033     // 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)
1042             << FailingTool.getShortName();
1043       else
1044         Diag(clang::diag::err_drv_command_failed) << FailingTool.getShortName()
1045                                                   << Res;
1046     }
1047   }
1048   return 0;
1049 }
1050 
1051 void Driver::PrintHelp(bool ShowHidden) const {
1052   unsigned IncludedFlagsBitmask;
1053   unsigned ExcludedFlagsBitmask;
1054   std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) =
1055       getIncludeExcludeOptionFlagMasks();
1056 
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);
1063 }
1064 
1065 void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const {
1066   // FIXME: The following handlers should use a callback mechanism, we don't
1067   // know what the client would like to do.
1068   OS << getClangFullVersion() << '\n';
1069   const ToolChain &TC = C.getDefaultToolChain();
1070   OS << "Target: " << TC.getTripleString() << '\n';
1071 
1072   // Print the threading model.
1073   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';
1080 
1081   // Print out the install directory.
1082   OS << "InstalledDir: " << InstalledDir << '\n';
1083 }
1084 
1085 /// PrintDiagnosticCategories - Implement the --print-diagnostic-categories
1086 /// option.
1087 static void PrintDiagnosticCategories(raw_ostream &OS) {
1088   // Skip the empty category.
1089   for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories(); i != max;
1090        ++i)
1091     OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n';
1092 }
1093 
1094 bool Driver::HandleImmediateArgs(const Compilation &C) {
1095   // The order these options are handled in gcc is all over the place, but we
1096   // don't expect inconsistencies w.r.t. that to matter in practice.
1097 
1098   if (C.getArgs().hasArg(options::OPT_dumpmachine)) {
1099     llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n';
1100     return false;
1101   }
1102 
1103   if (C.getArgs().hasArg(options::OPT_dumpversion)) {
1104     // 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";
1111     return false;
1112   }
1113 
1114   if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) {
1115     PrintDiagnosticCategories(llvm::outs());
1116     return false;
1117   }
1118 
1119   if (C.getArgs().hasArg(options::OPT_help) ||
1120       C.getArgs().hasArg(options::OPT__help_hidden)) {
1121     PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden));
1122     return false;
1123   }
1124 
1125   if (C.getArgs().hasArg(options::OPT__version)) {
1126     // Follow gcc behavior and use stdout for --version and stderr for -v.
1127     PrintVersion(C, llvm::outs());
1128     return false;
1129   }
1130 
1131   if (C.getArgs().hasArg(options::OPT_v) ||
1132       C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
1133     PrintVersion(C, llvm::errs());
1134     SuppressMissingInputWarning = true;
1135   }
1136 
1137   const ToolChain &TC = C.getDefaultToolChain();
1138 
1139   if (C.getArgs().hasArg(options::OPT_v))
1140     TC.printVerboseInfo(llvm::errs());
1141 
1142   if (C.getArgs().hasArg(options::OPT_print_search_dirs)) {
1143     llvm::outs() << "programs: =";
1144     bool separator = false;
1145     for (const std::string &Path : TC.getProgramPaths()) {
1146       if (separator)
1147         llvm::outs() << ':';
1148       llvm::outs() << Path;
1149       separator = true;
1150     }
1151     llvm::outs() << "\n";
1152     llvm::outs() << "libraries: =" << ResourceDir;
1153 
1154     StringRef sysroot = C.getSysRoot();
1155 
1156     for (const std::string &Path : TC.getFilePaths()) {
1157       // Always print a separator. ResourceDir was the first item shown.
1158       llvm::outs() << ':';
1159       // Interpretation of leading '=' is needed only for NetBSD.
1160       if (Path[0] == '=')
1161         llvm::outs() << sysroot << Path.substr(1);
1162       else
1163         llvm::outs() << Path;
1164     }
1165     llvm::outs() << "\n";
1166     return false;
1167   }
1168 
1169   // FIXME: The following handlers should use a callback mechanism, we don't
1170   // know what the client would like to do.
1171   if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) {
1172     llvm::outs() << GetFilePath(A->getValue(), TC) << "\n";
1173     return false;
1174   }
1175 
1176   if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) {
1177     llvm::outs() << GetProgramPath(A->getValue(), TC) << "\n";
1178     return false;
1179   }
1180 
1181   if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) {
1182     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     }
1191     return false;
1192   }
1193 
1194   if (C.getArgs().hasArg(options::OPT_print_multi_lib)) {
1195     for (const Multilib &Multilib : TC.getMultilibs())
1196       llvm::outs() << Multilib << "\n";
1197     return false;
1198   }
1199 
1200   if (C.getArgs().hasArg(options::OPT_print_multi_directory)) {
1201     for (const Multilib &Multilib : TC.getMultilibs()) {
1202       if (Multilib.gccSuffix().empty())
1203         llvm::outs() << ".\n";
1204       else {
1205         StringRef Suffix(Multilib.gccSuffix());
1206         assert(Suffix.front() == '/');
1207         llvm::outs() << Suffix.substr(1) << "\n";
1208       }
1209     }
1210     return false;
1211   }
1212   return true;
1213 }
1214 
1215 // 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.
1218 static unsigned PrintActions1(const Compilation &C, Action *A,
1219                               std::map<Action *, unsigned> &Ids) {
1220   if (Ids.count(A)) // A was already visited.
1221     return Ids[A];
1222 
1223   std::string str;
1224   llvm::raw_string_ostream os(str);
1225 
1226   os << Action::getClassName(A->getKind()) << ", ";
1227   if (InputAction *IA = dyn_cast<InputAction>(A)) {
1228     os << "\"" << IA->getInputArg().getValue() << "\"";
1229   } else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) {
1230     os << '"' << BIA->getArchName() << '"' << ", {"
1231        << PrintActions1(C, *BIA->input_begin(), Ids) << "}";
1232   } 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         });
1257   } else {
1258     const ActionList *AL = &A->getInputs();
1259 
1260     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 << "{}";
1269   }
1270 
1271   // 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 
1285   unsigned Id = Ids.size();
1286   Ids[A] = Id;
1287   llvm::errs() << Id << ": " << os.str() << ", "
1288                << types::getTypeName(A->getType()) << offload_os.str() << "\n";
1289 
1290   return Id;
1291 }
1292 
1293 // Print the action graphs in a compilation C.
1294 // For example "clang -c file1.c file2.c" is composed of two subgraphs.
1295 void Driver::PrintActions(const Compilation &C) const {
1296   std::map<Action *, unsigned> Ids;
1297   for (Action *A : C.getActions())
1298     PrintActions1(C, A, Ids);
1299 }
1300 
1301 /// \brief Check whether the given input tree contains any compilation or
1302 /// assembly actions.
1303 static bool ContainsCompileOrAssembleAction(const Action *A) {
1304   if (isa<CompileJobAction>(A) || isa<BackendJobAction>(A) ||
1305       isa<AssembleJobAction>(A))
1306     return true;
1307 
1308   for (const Action *Input : A->inputs())
1309     if (ContainsCompileOrAssembleAction(Input))
1310       return true;
1311 
1312   return false;
1313 }
1314 
1315 void Driver::BuildUniversalActions(Compilation &C, const ToolChain &TC,
1316                                    const InputList &BAInputs) const {
1317   DerivedArgList &Args = C.getArgs();
1318   ActionList &Actions = C.getActions();
1319   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).
1322   llvm::StringSet<> ArchNames;
1323   SmallVector<const char *, 4> Archs;
1324   for (Arg *A : Args) {
1325     if (A->getOption().matches(options::OPT_arch)) {
1326       // 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 =
1329           tools::darwin::getArchTypeForMachOArchName(A->getValue());
1330       if (Arch == llvm::Triple::UnknownArch) {
1331         Diag(clang::diag::err_drv_invalid_arch_name) << A->getAsString(Args);
1332         continue;
1333       }
1334 
1335       A->claim();
1336       if (ArchNames.insert(A->getValue()).second)
1337         Archs.push_back(A->getValue());
1338     }
1339   }
1340 
1341   // 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.
1343   if (!Archs.size())
1344     Archs.push_back(Args.MakeArgString(TC.getDefaultUniversalArchName()));
1345 
1346   ActionList SingleActions;
1347   BuildActions(C, Args, BAInputs, SingleActions);
1348 
1349   // Add in arch bindings for every top level action, as well as lipo and
1350   // dsymutil steps if needed.
1351   for (Action* Act : SingleActions) {
1352     // 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
1356     // -save-temps. Compatibility wins for now.
1357 
1358     if (Archs.size() > 1 && !types::canLipoType(Act->getType()))
1359       Diag(clang::diag::err_drv_invalid_output_with_multiple_archs)
1360           << types::getTypeName(Act->getType());
1361 
1362     ActionList Inputs;
1363     for (unsigned i = 0, e = Archs.size(); i != e; ++i)
1364       Inputs.push_back(C.MakeAction<BindArchAction>(Act, Archs[i]));
1365 
1366     // Lipo if necessary, we do it this way because we need to set the arch flag
1367     // so that -Xarch_ gets overwritten.
1368     if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing)
1369       Actions.append(Inputs.begin(), Inputs.end());
1370     else
1371       Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType()));
1372 
1373     // Handle debug info queries.
1374     Arg *A = Args.getLastArg(options::OPT_g_Group);
1375     if (A && !A->getOption().matches(options::OPT_g0) &&
1376         !A->getOption().matches(options::OPT_gstabs) &&
1377         ContainsCompileOrAssembleAction(Actions.back())) {
1378 
1379       // 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
1381       // because the debug info will refer to a temporary object file which
1382       // 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();
1387         Actions.push_back(
1388             C.MakeAction<DsymutilJobAction>(Inputs, types::TY_dSYM));
1389       }
1390 
1391       // Verify the debug info output.
1392       if (Args.hasArg(options::OPT_verify_debug_info)) {
1393         Action* LastAction = Actions.back();
1394         Actions.pop_back();
1395         Actions.push_back(C.MakeAction<VerifyDebugInfoJobAction>(
1396             LastAction, types::TY_Nothing));
1397       }
1398     }
1399   }
1400 }
1401 
1402 /// \brief Check that the file referenced by Value exists. If it doesn't,
1403 /// issue a diagnostic and return false.
1404 static bool DiagnoseInputExistence(const Driver &D, const DerivedArgList &Args,
1405                                    StringRef Value, types::ID Ty) {
1406   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)) {
1415     if (!llvm::sys::path::is_absolute(Path)) {
1416       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 
1425   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   }
1437 
1438   D.Diag(clang::diag::err_drv_no_such_file) << Path;
1439   return false;
1440 }
1441 
1442 // Construct a the list of inputs and their types.
1443 void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args,
1444                          InputList &Inputs) const {
1445   // 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.
1448   types::ID InputType = types::TY_Nothing;
1449   Arg *InputTypeArg = nullptr;
1450 
1451   // The last /TC or /TP option sets the input type to C or C++ globally.
1452   if (Arg *TCTP = Args.getLastArgNoClaim(options::OPT__SLASH_TC,
1453                                          options::OPT__SLASH_TP)) {
1454     InputTypeArg = TCTP;
1455     InputType = TCTP->getOption().matches(options::OPT__SLASH_TC)
1456                     ? types::TY_C
1457                     : types::TY_CXX;
1458 
1459     arg_iterator it =
1460         Args.filtered_begin(options::OPT__SLASH_TC, options::OPT__SLASH_TP);
1461     const arg_iterator ie = Args.filtered_end();
1462     Arg *Previous = *it++;
1463     bool ShowNote = false;
1464     while (it != ie) {
1465       Diag(clang::diag::warn_drv_overriding_flag_option)
1466           << Previous->getSpelling() << (*it)->getSpelling();
1467       Previous = *it++;
1468       ShowNote = true;
1469     }
1470     if (ShowNote)
1471       Diag(clang::diag::note_drv_t_option_is_global);
1472 
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 
1477   for (Arg *A : Args) {
1478     if (A->getOption().getKind() == Option::InputClass) {
1479       const char *Value = A->getValue();
1480       types::ID Ty = types::TY_INVALID;
1481 
1482       // Infer the input type if necessary.
1483       if (InputType == types::TY_Nothing) {
1484         // If there was an explicit arg for this, claim it.
1485         if (InputTypeArg)
1486           InputTypeArg->claim();
1487 
1488         // stdin must be handled specially.
1489         if (memcmp(Value, "-", 2) == 0) {
1490           // If running with -E, treat as a C input (this changes the builtin
1491           // macros, for example). This may be overridden by -ObjC below.
1492           //
1493           // Otherwise emit an error but still use a valid type to avoid
1494           // spurious errors (e.g., no inputs).
1495           if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP())
1496             Diag(IsCLMode() ? clang::diag::err_drv_unknown_stdin_type_clang_cl
1497                             : clang::diag::err_drv_unknown_stdin_type);
1498           Ty = types::TY_C;
1499         } else {
1500           // 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
1503           // idea of what .s is.
1504           if (const char *Ext = strrchr(Value, '.'))
1505             Ty = TC.LookupTypeForExtension(Ext + 1);
1506 
1507           if (Ty == types::TY_INVALID) {
1508             if (CCCIsCPP())
1509               Ty = types::TY_C;
1510             else
1511               Ty = types::TY_Object;
1512           }
1513 
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.
1516           if (CCCIsCXX()) {
1517             types::ID OldTy = Ty;
1518             Ty = types::lookupCXXTypeForCType(Ty);
1519 
1520             if (Ty != OldTy)
1521               Diag(clang::diag::warn_drv_treating_input_as_cxx)
1522                   << getTypeName(OldTy) << getTypeName(Ty);
1523           }
1524         }
1525 
1526         // -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.
1529         //
1530         // FIXME: Clean this up if we move the phase sequence into the type.
1531         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");
1539         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         }
1550       }
1551 
1552       if (DiagnoseInputExistence(*this, Args, Value, Ty))
1553         Inputs.push_back(std::make_pair(Ty, A));
1554 
1555     } else if (A->getOption().matches(options::OPT__SLASH_Tc)) {
1556       StringRef Value = A->getValue();
1557       if (DiagnoseInputExistence(*this, Args, Value, types::TY_C)) {
1558         Arg *InputArg = MakeInputArg(Args, *Opts, A->getValue());
1559         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();
1564       if (DiagnoseInputExistence(*this, Args, Value, types::TY_CXX)) {
1565         Arg *InputArg = MakeInputArg(Args, *Opts, A->getValue());
1566         Inputs.push_back(std::make_pair(types::TY_CXX, InputArg));
1567       }
1568       A->claim();
1569     } else if (A->getOption().hasFlag(options::LinkerInput)) {
1570       // Just treat as object type, we could make a special type for this if
1571       // necessary.
1572       Inputs.push_back(std::make_pair(types::TY_Object, A));
1573 
1574     } else if (A->getOption().matches(options::OPT_x)) {
1575       InputTypeArg = A;
1576       InputType = types::lookupTypeForTypeSpecifier(A->getValue());
1577       A->claim();
1578 
1579       // Follow gcc behavior and treat as linker input for invalid -x
1580       // options. Its not clear why we shouldn't just revert to unknown; but
1581       // this isn't very important, we might as well be bug compatible.
1582       if (!InputType) {
1583         Diag(clang::diag::err_drv_unknown_language) << A->getValue();
1584         InputType = types::TY_Object;
1585       }
1586     }
1587   }
1588   if (CCCIsCPP() && Inputs.empty()) {
1589     // If called as standalone preprocessor, stdin is processed
1590     // if no other input is present.
1591     Arg *A = MakeInputArg(Args, *Opts, "-");
1592     Inputs.push_back(std::make_pair(types::TY_C, A));
1593   }
1594 }
1595 
1596 namespace {
1597 /// Provides a convenient interface for different programming models to generate
1598 /// the required device actions.
1599 class 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 
1606   /// 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
1653     getDeviceDependences(OffloadAction::DeviceDependences &DA,
1654                          phases::ID CurPhase, phases::ID FinalPhase,
1655                          PhasesTy &Phases) {
1656       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 
1677     /// Return true if the builder can use bundling/unbundling.
1678     virtual bool canUseBundlerUnbundler() const { return false; }
1679 
1680     /// 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
1716     getDeviceDependences(OffloadAction::DeviceDependences &DA,
1717                          phases::ID CurPhase, phases::ID FinalPhase,
1718                          PhasesTy &Phases) override {
1719       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;
1801       } 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;
1806       }
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.
1916       std::set<CudaArch> GpuArchs;
1917       bool Error = false;
1918       for (Arg *A : Args) {
1919         if (!(A->getOption().matches(options::OPT_cuda_gpu_arch_EQ) ||
1920               A->getOption().matches(options::OPT_no_cuda_gpu_arch_EQ)))
1921           continue;
1922         A->claim();
1923 
1924         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         }
1930         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;
1934         } 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.");
1940       }
1941 
1942       // 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.
1949       if (GpuArchList.empty())
1950         GpuArchList.push_back(CudaArch::SM_20);
1951 
1952       return Error;
1953     }
1954   };
1955 
1956   /// 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 
2014       // 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 
2025       // 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 
2048     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 
2068     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     }
2094 
2095     bool canUseBundlerUnbundler() const override {
2096       // OpenMP should use bundled files whenever possible.
2097       return true;
2098     }
2099   };
2100 
2101   ///
2102   /// TODO: Add the implementation for other specialized builders here.
2103   ///
2104 
2105   /// Specialized builders being used by this offloading action builder.
2106   SmallVector<DeviceActionBuilder *, 4> SpecializedBuilders;
2107 
2108   /// Flag set to true if all valid builders allow file bundling/unbundling.
2109   bool CanUseBundler;
2110 
2111 public:
2112   OffloadingActionBuilder(Compilation &C, DerivedArgList &Args,
2113                           const Driver::InputList &Inputs)
2114       : C(C) {
2115     // 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 
2122     // Create a specialized builder for OpenMP.
2123     SpecializedBuilders.push_back(new OpenMPActionBuilder(C, Args, Inputs));
2124 
2125     //
2126     // TODO: Build other specialized builders here.
2127     //
2128 
2129     // 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) {
2134       IsValid = IsValid && !SB->initialize();
2135 
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;
2145   }
2146 
2147   ~OffloadingActionBuilder() {
2148     for (auto *SB : SpecializedBuilders)
2149       delete SB;
2150   }
2151 
2152   /// 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;
2162 
2163     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 
2180       auto RetCode =
2181           SB->getDeviceDependences(DDeps, CurPhase, FinalPhase, Phases);
2182 
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);
2210   }
2211 
2212   /// 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.
2215   bool addHostDependenceToDeviceActions(Action *&HostAction,
2216                                         const Arg *InputArg) {
2217     if (!IsValid)
2218       return true;
2219 
2220     // 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 
2237     assert(HostAction && "Invalid host action!");
2238 
2239     // Register the offload kinds that are used.
2240     auto &OffloadKind = InputArgToOffloadKindMap[InputArg];
2241     for (auto *SB : SpecializedBuilders) {
2242       if (!SB->isValid())
2243         continue;
2244 
2245       auto RetCode = SB->addDeviceDepences(HostAction);
2246 
2247       // 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.!");
2251 
2252       // 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     }
2257 
2258     return false;
2259   }
2260 
2261   /// 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.
2264   bool appendTopLevelActions(ActionList &AL, Action *HostAction,
2265                              const Arg *InputArg) {
2266     // Get the device actions to be appended.
2267     ActionList OffloadAL;
2268     for (auto *SB : SpecializedBuilders) {
2269       if (!SB->isValid())
2270         continue;
2271       SB->appendTopLevelActions(OffloadAL);
2272     }
2273 
2274     // 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 
2288     // 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);
2293     return false;
2294   }
2295 
2296   /// 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;
2306 
2307       SB->appendLinkDependences(DDeps);
2308     }
2309 
2310     // 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
2327     // to do that explicitly here.
2328     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.
2335 
2336 void Driver::BuildActions(Compilation &C, DerivedArgList &Args,
2337                           const InputList &Inputs, ActionList &Actions) const {
2338   llvm::PrettyStackTraceString CrashInfo("Building compilation actions");
2339 
2340   if (!SuppressMissingInputWarning && Inputs.empty()) {
2341     Diag(clang::diag::err_drv_no_input_files);
2342     return;
2343   }
2344 
2345   Arg *FinalPhaseArg;
2346   phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg);
2347 
2348   if (FinalPhase == phases::Link && Args.hasArg(options::OPT_emit_llvm)) {
2349     Diag(clang::diag::err_drv_emit_llvm_link);
2350   }
2351 
2352   // Reject -Z* at the top level, these options should never have been exposed
2353   // by gcc.
2354   if (Arg *A = Args.getLastArg(options::OPT_Z_Joined))
2355     Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args);
2356 
2357   // Diagnose misuse of /Fo.
2358   if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fo)) {
2359     StringRef V = A->getValue();
2360     if (Inputs.size() > 1 && !V.empty() &&
2361         !llvm::sys::path::is_separator(V.back())) {
2362       // Check whether /Fo tries to name an output file for multiple inputs.
2363       Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources)
2364           << A->getSpelling() << V;
2365       Args.eraseArg(options::OPT__SLASH_Fo);
2366     }
2367   }
2368 
2369   // Diagnose misuse of /Fa.
2370   if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fa)) {
2371     StringRef V = A->getValue();
2372     if (Inputs.size() > 1 && !V.empty() &&
2373         !llvm::sys::path::is_separator(V.back())) {
2374       // Check whether /Fa tries to name an asm file for multiple inputs.
2375       Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources)
2376           << A->getSpelling() << V;
2377       Args.eraseArg(options::OPT__SLASH_Fa);
2378     }
2379   }
2380 
2381   // 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 
2390   // 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   }
2441 
2442   // Builder to be used to build offloading actions.
2443   OffloadingActionBuilder OffloadBuilder(C, Args, Inputs);
2444 
2445   // Construct the actions to perform.
2446   ActionList LinkerInputs;
2447 
2448   llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PL;
2449   for (auto &I : Inputs) {
2450     types::ID InputType = I.first;
2451     const Arg *InputArg = I.second;
2452 
2453     PL.clear();
2454     types::getCompilationPhases(InputType, PL);
2455 
2456     // If the first step comes after the final phase we are doing as part of
2457     // this compilation, warn the user about it.
2458     phases::ID InitialPhase = PL[0];
2459     if (InitialPhase > FinalPhase) {
2460       // Claim here to avoid the more general unused warning.
2461       InputArg->claim();
2462 
2463       // Suppress all unused style warnings with -Qunused-arguments
2464       if (Args.hasArg(options::OPT_Qunused_arguments))
2465         continue;
2466 
2467       // Special case when final phase determined by binary name, rather than
2468       // by a command-line argument with a corresponding Arg.
2469       if (CCCIsCPP())
2470         Diag(clang::diag::warn_drv_input_file_unused_by_cpp)
2471             << InputArg->getAsString(Args) << getPhaseName(InitialPhase);
2472       // Special case '-E' warning on a previously preprocessed file to make
2473       // more sense.
2474       else if (InitialPhase == phases::Compile &&
2475                FinalPhase == phases::Preprocess &&
2476                getPreprocessedType(InputType) == types::TY_INVALID)
2477         Diag(clang::diag::warn_drv_preprocessed_input_file_unused)
2478             << InputArg->getAsString(Args) << !!FinalPhaseArg
2479             << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "");
2480       else
2481         Diag(clang::diag::warn_drv_input_file_unused)
2482             << InputArg->getAsString(Args) << getPhaseName(InitialPhase)
2483             << !!FinalPhaseArg
2484             << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "");
2485       continue;
2486     }
2487 
2488     if (YcArg) {
2489       // Add a separate precompile phase for the compile phase.
2490       if (FinalPhase >= phases::Compile) {
2491         const types::ID HeaderType = lookupHeaderTypeForSourceType(InputType);
2492         llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PCHPL;
2493         types::getCompilationPhases(HeaderType, PCHPL);
2494         Arg *PchInputArg = MakeInputArg(Args, *Opts, YcArg->getValue());
2495 
2496         // Build the pipeline for the pch file.
2497         Action *ClangClPch =
2498             C.MakeAction<InputAction>(*PchInputArg, HeaderType);
2499         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 
2509     // Build the pipeline for this file.
2510     Action *Current = C.MakeAction<InputAction>(*InputArg, InputType);
2511 
2512     // Use the current host action in any of the offloading actions, if
2513     // required.
2514     if (OffloadBuilder.addHostDependenceToDeviceActions(Current, InputArg))
2515       break;
2516 
2517     for (SmallVectorImpl<phases::ID>::iterator i = PL.begin(), e = PL.end();
2518          i != e; ++i) {
2519       phases::ID Phase = *i;
2520 
2521       // We are done if this step is past what the user requested.
2522       if (Phase > FinalPhase)
2523         break;
2524 
2525       // 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 
2531       // Queue linker inputs.
2532       if (Phase == phases::Link) {
2533         assert((i + 1) == e && "linking must be final compilation step.");
2534         LinkerInputs.push_back(Current);
2535         Current = nullptr;
2536         break;
2537       }
2538 
2539       // 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)
2544         continue;
2545 
2546       Current = NewCurrent;
2547 
2548       // Use the current host action in any of the offloading actions, if
2549       // required.
2550       if (OffloadBuilder.addHostDependenceToDeviceActions(Current, InputArg))
2551         break;
2552 
2553       if (Current->getType() == types::TY_Nothing)
2554         break;
2555     }
2556 
2557     // If we ended with something, add to the output list.
2558     if (Current)
2559       Actions.push_back(Current);
2560 
2561     // Add any top level actions generated for offloading.
2562     OffloadBuilder.appendTopLevelActions(Actions, Current, InputArg);
2563   }
2564 
2565   // Add a link action if necessary.
2566   if (!LinkerInputs.empty()) {
2567     Action *LA = C.MakeAction<LinkJobAction>(LinkerInputs, types::TY_Image);
2568     LA = OffloadBuilder.processHostLinkAction(LA);
2569     Actions.push_back(LA);
2570   }
2571 
2572   // If we are linking, claim any options which are obviously only used for
2573   // compilation.
2574   if (FinalPhase == phases::Link && PL.size() == 1) {
2575     Args.ClaimAllArgs(options::OPT_CompileOnly_Group);
2576     Args.ClaimAllArgs(options::OPT_cl_compile_Group);
2577   }
2578 
2579   // Claim ignored clang-cl options.
2580   Args.ClaimAllArgs(options::OPT_cl_ignored_Group);
2581 
2582   // Claim --cuda-host-only and --cuda-compile-host-device, which may be passed
2583   // to non-CUDA compilations and should not trigger warnings there.
2584   Args.ClaimAllArgs(options::OPT_cuda_host_only);
2585   Args.ClaimAllArgs(options::OPT_cuda_compile_host_device);
2586 }
2587 
2588 Action *Driver::ConstructPhaseAction(Compilation &C, const ArgList &Args,
2589                                      phases::ID Phase, Action *Input) const {
2590   llvm::PrettyStackTraceString CrashInfo("Constructing phase actions");
2591 
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 
2598   // Build the appropriate action.
2599   switch (Phase) {
2600   case phases::Link:
2601     llvm_unreachable("link action invalid here.");
2602   case phases::Preprocess: {
2603     types::ID OutputTy;
2604     // -{M, MM} alter the output type.
2605     if (Args.hasArg(options::OPT_M, options::OPT_MM)) {
2606       OutputTy = types::TY_Dependencies;
2607     } else {
2608       OutputTy = Input->getType();
2609       if (!Args.hasFlag(options::OPT_frewrite_includes,
2610                         options::OPT_fno_rewrite_includes, false) &&
2611           !CCGenDiagnostics)
2612         OutputTy = types::getPreprocessedType(OutputTy);
2613       assert(OutputTy != types::TY_INVALID &&
2614              "Cannot preprocess this input type!");
2615     }
2616     return C.MakeAction<PreprocessJobAction>(Input, OutputTy);
2617   }
2618   case phases::Precompile: {
2619     types::ID OutputTy = getPrecompiledType(Input->getType());
2620     assert(OutputTy != types::TY_INVALID &&
2621            "Cannot precompile this input type!");
2622     if (Args.hasArg(options::OPT_fsyntax_only)) {
2623       // Syntax checks should not emit a PCH file
2624       OutputTy = types::TY_Nothing;
2625     }
2626     return C.MakeAction<PrecompileJobAction>(Input, OutputTy);
2627   }
2628   case phases::Compile: {
2629     if (Args.hasArg(options::OPT_fsyntax_only))
2630       return C.MakeAction<CompileJobAction>(Input, types::TY_Nothing);
2631     if (Args.hasArg(options::OPT_rewrite_objc))
2632       return C.MakeAction<CompileJobAction>(Input, types::TY_RewrittenObjC);
2633     if (Args.hasArg(options::OPT_rewrite_legacy_objc))
2634       return C.MakeAction<CompileJobAction>(Input,
2635                                             types::TY_RewrittenLegacyObjC);
2636     if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto))
2637       return C.MakeAction<AnalyzeJobAction>(Input, types::TY_Plist);
2638     if (Args.hasArg(options::OPT__migrate))
2639       return C.MakeAction<MigrateJobAction>(Input, types::TY_Remap);
2640     if (Args.hasArg(options::OPT_emit_ast))
2641       return C.MakeAction<CompileJobAction>(Input, types::TY_AST);
2642     if (Args.hasArg(options::OPT_module_file_info))
2643       return C.MakeAction<CompileJobAction>(Input, types::TY_ModuleFile);
2644     if (Args.hasArg(options::OPT_verify_pch))
2645       return C.MakeAction<VerifyPCHJobAction>(Input, types::TY_Nothing);
2646     return C.MakeAction<CompileJobAction>(Input, types::TY_LLVM_BC);
2647   }
2648   case phases::Backend: {
2649     if (isUsingLTO()) {
2650       types::ID Output =
2651           Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC;
2652       return C.MakeAction<BackendJobAction>(Input, Output);
2653     }
2654     if (Args.hasArg(options::OPT_emit_llvm)) {
2655       types::ID Output =
2656           Args.hasArg(options::OPT_S) ? types::TY_LLVM_IR : types::TY_LLVM_BC;
2657       return C.MakeAction<BackendJobAction>(Input, Output);
2658     }
2659     return C.MakeAction<BackendJobAction>(Input, types::TY_PP_Asm);
2660   }
2661   case phases::Assemble:
2662     return C.MakeAction<AssembleJobAction>(std::move(Input), types::TY_Object);
2663   }
2664 
2665   llvm_unreachable("invalid phase in ConstructPhaseAction");
2666 }
2667 
2668 void Driver::BuildJobs(Compilation &C) const {
2669   llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
2670 
2671   Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
2672 
2673   // It is an error to provide a -o option if we are making multiple output
2674   // files.
2675   if (FinalOutput) {
2676     unsigned NumOutputs = 0;
2677     for (const Action *A : C.getActions())
2678       if (A->getType() != types::TY_Nothing)
2679         ++NumOutputs;
2680 
2681     if (NumOutputs > 1) {
2682       Diag(clang::diag::err_drv_output_argument_with_multiple_files);
2683       FinalOutput = nullptr;
2684     }
2685   }
2686 
2687   // Collect the list of architectures.
2688   llvm::StringSet<> ArchNames;
2689   if (C.getDefaultToolChain().getTriple().isOSBinFormatMachO())
2690     for (const Arg *A : C.getArgs())
2691       if (A->getOption().matches(options::OPT_arch))
2692         ArchNames.insert(A->getValue());
2693 
2694   // Set of (Action, canonical ToolChain triple) pairs we've built jobs for.
2695   std::map<std::pair<const Action *, std::string>, InputInfo> CachedResults;
2696   for (Action *A : C.getActions()) {
2697     // 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.
2700     //
2701     // FIXME: This is a hack; find a cleaner way to integrate this into the
2702     // process.
2703     const char *LinkingOutput = nullptr;
2704     if (isa<LipoJobAction>(A)) {
2705       if (FinalOutput)
2706         LinkingOutput = FinalOutput->getValue();
2707       else
2708         LinkingOutput = getDefaultImageName();
2709     }
2710 
2711     BuildJobsForAction(C, A, &C.getDefaultToolChain(),
2712                        /*BoundArch*/ StringRef(),
2713                        /*AtTopLevel*/ true,
2714                        /*MultipleArchs*/ ArchNames.size() > 1,
2715                        /*LinkingOutput*/ LinkingOutput, CachedResults,
2716                        /*TargetDeviceOffloadKind*/ Action::OFK_None);
2717   }
2718 
2719   // If the user passed -Qunused-arguments or there were errors, don't warn
2720   // about any unused arguments.
2721   if (Diags.hasErrorOccurred() ||
2722       C.getArgs().hasArg(options::OPT_Qunused_arguments))
2723     return;
2724 
2725   // Claim -### here.
2726   (void)C.getArgs().hasArg(options::OPT__HASH_HASH_HASH);
2727 
2728   // Claim --driver-mode, --rsp-quoting, it was handled earlier.
2729   (void)C.getArgs().hasArg(options::OPT_driver_mode);
2730   (void)C.getArgs().hasArg(options::OPT_rsp_quoting);
2731 
2732   for (Arg *A : C.getArgs()) {
2733     // FIXME: It would be nice to be able to send the argument to the
2734     // DiagnosticsEngine, so that extra values, position, and so on could be
2735     // printed.
2736     if (!A->isClaimed()) {
2737       if (A->getOption().hasFlag(options::NoArgumentUnused))
2738         continue;
2739 
2740       // Suppress the warning automatically if this is just a flag, and it is an
2741       // instance of an argument we already claimed.
2742       const Option &Opt = A->getOption();
2743       if (Opt.getKind() == Option::FlagClass) {
2744         bool DuplicateClaimed = false;
2745 
2746         for (const Arg *AA : C.getArgs().filtered(&Opt)) {
2747           if (AA->isClaimed()) {
2748             DuplicateClaimed = true;
2749             break;
2750           }
2751         }
2752 
2753         if (DuplicateClaimed)
2754           continue;
2755       }
2756 
2757       // 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());
2762     }
2763   }
2764 }
2765 
2766 namespace {
2767 /// Utility class to control the collapse of dependent actions and select the
2768 /// tools accordingly.
2769 class ToolSelector final {
2770   /// The tool chain this selector refers to.
2771   const ToolChain &TC;
2772 
2773   /// The compilation this selector refers to.
2774   const Compilation &C;
2775 
2776   /// The base action this selector refers to.
2777   const JobAction *BaseAction;
2778 
2779   /// Set to true if the current toolchain refers to host actions.
2780   bool IsHostSelector;
2781 
2782   /// 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)
2794       return nullptr;
2795 
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 
2893     // 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) {
2896       const Tool *BT = TC.SelectTool(*BJ);
2897       if (BT == T)
2898         return nullptr;
2899     }
2900 
2901     if (!T->hasIntegratedAssembler())
2902       return nullptr;
2903 
2904     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 
2988 public:
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);
3021     }
3022 
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;
3045   }
3046 };
3047 }
3048 
3049 /// 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.
3054 static std::string GetTriplePlusArchString(const ToolChain *TC,
3055                                            StringRef BoundArch,
3056                                            Action::OffloadKind OffloadKind) {
3057   std::string TriplePlusArch = TC->getTriple().normalize();
3058   if (!BoundArch.empty()) {
3059     TriplePlusArch += "-";
3060     TriplePlusArch += BoundArch;
3061   }
3062   TriplePlusArch += "-";
3063   TriplePlusArch += Action::GetOffloadKindName(OffloadKind);
3064   return TriplePlusArch;
3065 }
3066 
3067 InputInfo 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)};
3074   auto CachedResult = CachedResults.find(ActionTC);
3075   if (CachedResult != CachedResults.end()) {
3076     return CachedResult->second;
3077   }
3078   InputInfo Result = BuildJobsForActionNoCache(
3079       C, A, TC, BoundArch, AtTopLevel, MultipleArchs, LinkingOutput,
3080       CachedResults, TargetDeviceOffloadKind);
3081   CachedResults[ActionTC] = Result;
3082   return Result;
3083 }
3084 
3085 InputInfo Driver::BuildJobsForActionNoCache(
3086     Compilation &C, const Action *A, const ToolChain *TC, StringRef BoundArch,
3087     bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput,
3088     std::map<std::pair<const Action *, std::string>, InputInfo> &CachedResults,
3089     Action::OffloadKind TargetDeviceOffloadKind) const {
3090   llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
3091 
3092   InputInfoList OffloadDependencesInputInfo;
3093   bool BuildingForOffloadDevice = TargetDeviceOffloadKind != Action::OFK_None;
3094   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     //
3103     // c) Specify a device dependence to a host action;
3104     //    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,
3126                                CachedResults, DepA->getOffloadingDeviceKind());
3127       });
3128       return DevA;
3129     }
3130 
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(
3136         /*IsHostDependence=*/BuildingForOffloadDevice,
3137         [&](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,
3141               DepA->getOffloadingDeviceKind()));
3142         });
3143 
3144     A = BuildingForOffloadDevice
3145             ? OA->getSingleDeviceDependence(/*DoNotConsiderHostActions=*/true)
3146             : OA->getHostDependence();
3147   }
3148 
3149   if (const InputAction *IA = dyn_cast<InputAction>(A)) {
3150     // FIXME: It would be nice to not claim this here; maybe the old scheme of
3151     // just using Args was better?
3152     const Arg &Input = IA->getInputArg();
3153     Input.claim();
3154     if (Input.getOption().matches(options::OPT_INPUT)) {
3155       const char *Name = Input.getValue();
3156       return InputInfo(A, Name, /* BaseInput = */ Name);
3157     }
3158     return InputInfo(A, &Input, /* BaseInput = */ "");
3159   }
3160 
3161   if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) {
3162     const ToolChain *TC;
3163     StringRef ArchName = BAA->getArchName();
3164 
3165     if (!ArchName.empty())
3166       TC = &getToolChain(C.getArgs(),
3167                          computeTargetTriple(*this, DefaultTargetTriple,
3168                                              C.getArgs(), ArchName));
3169     else
3170       TC = &C.getDefaultToolChain();
3171 
3172     return BuildJobsForAction(C, *BAA->input_begin(), TC, ArchName, AtTopLevel,
3173                               MultipleArchs, LinkingOutput, CachedResults,
3174                               TargetDeviceOffloadKind);
3175   }
3176 
3177 
3178   const ActionList *Inputs = &A->getInputs();
3179 
3180   const JobAction *JA = cast<JobAction>(A);
3181   ActionList CollapsedOffloadActions;
3182 
3183   ToolSelector TS(JA, *TC, C, isSaveTempsEnabled(),
3184                   embedBitcodeInObject() && !isUsingLTO());
3185   const Tool *T = TS.getTool(Inputs, CollapsedOffloadActions);
3186 
3187   if (!T)
3188     return InputInfo();
3189 
3190   // 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(
3194         /*IsHostDependence=*/BuildingForOffloadDevice,
3195         [&](Action *DepA, const ToolChain *DepTC, const char *DepBoundArch) {
3196           OffloadDependencesInputInfo.push_back(BuildJobsForAction(
3197               C, DepA, DepTC, DepBoundArch, /* AtTopLevel */ false,
3198               /*MultipleArchs=*/!!DepBoundArch, LinkingOutput, CachedResults,
3199               DepA->getOffloadingDeviceKind()));
3200         });
3201 
3202   // Only use pipes when there is exactly one input.
3203   InputInfoList InputInfos;
3204   for (const Action *Input : *Inputs) {
3205     // Treat dsymutil and verify sub-jobs as being at the top-level too, they
3206     // shouldn't get temporary output names.
3207     // FIXME: Clean this up.
3208     bool SubJobAtTopLevel =
3209         AtTopLevel && (isa<DsymutilJobAction>(A) || isa<VerifyJobAction>(A));
3210     InputInfos.push_back(BuildJobsForAction(
3211         C, Input, TC, BoundArch, SubJobAtTopLevel, MultipleArchs, LinkingOutput,
3212         CachedResults, A->getOffloadingDeviceKind()));
3213   }
3214 
3215   // Always use the first input as the base input.
3216   const char *BaseInput = InputInfos[0].getBaseInput();
3217 
3218   // ... 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 
3223   // Append outputs of offload device jobs to the input list
3224   if (!OffloadDependencesInputInfo.empty())
3225     InputInfos.append(OffloadDependencesInputInfo.begin(),
3226                       OffloadDependencesInputInfo.end());
3227 
3228   // Set the effective triple of the toolchain for the duration of this job.
3229   llvm::Triple EffectiveTriple;
3230   const ToolChain &ToolTC = T->getToolChain();
3231   const ArgList &Args =
3232       C.getArgsForToolChain(TC, BoundArch, A->getOffloadingDeviceKind());
3233   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 
3242   // Determine the place to write output to, if any.
3243   InputInfo Result;
3244   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)
3284     Result = InputInfo(A, BaseInput);
3285   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);
3292     Result = InputInfo(A, GetNamedOutputPath(C, *JA, BaseInput, BoundArch,
3293                                              AtTopLevel, MultipleArchs,
3294                                              OffloadingPrefix),
3295                        BaseInput);
3296   }
3297 
3298   if (CCCPrintBindings && !CCGenDiagnostics) {
3299     llvm::errs() << "# \"" << T->getToolChain().getTripleString() << '"'
3300                  << " - \"" << T->getName() << "\", inputs: [";
3301     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     }
3306     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     }
3317   } else {
3318     if (UnbundlingResults.empty())
3319       T->ConstructJob(
3320           C, *JA, Result, InputInfos,
3321           C.getArgsForToolChain(TC, BoundArch, JA->getOffloadingDeviceKind()),
3322           LinkingOutput);
3323     else
3324       T->ConstructJobMultipleOutputs(
3325           C, *JA, UnbundlingResults, InputInfos,
3326           C.getArgsForToolChain(TC, BoundArch, JA->getOffloadingDeviceKind()),
3327           LinkingOutput);
3328   }
3329   return Result;
3330 }
3331 
3332 const char *Driver::getDefaultImageName() const {
3333   llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
3334   return Target.isOSWindows() ? "a.exe" : "a.out";
3335 }
3336 
3337 /// \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.
3341 static const char *MakeCLOutputFilename(const ArgList &Args, StringRef ArgValue,
3342                                         StringRef BaseName,
3343                                         types::ID FileType) {
3344   SmallString<128> Filename = ArgValue;
3345 
3346   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())) {
3350     // 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);
3357 
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 
3364     llvm::sys::path::replace_extension(Filename, Extension);
3365   }
3366 
3367   return Args.MakeArgString(Filename.c_str());
3368 }
3369 
3370 const char *Driver::GetNamedOutputPath(Compilation &C, const JobAction &JA,
3371                                        const char *BaseInput,
3372                                        StringRef BoundArch, bool AtTopLevel,
3373                                        bool MultipleArchs,
3374                                        StringRef OffloadingPrefix) const {
3375   llvm::PrettyStackTraceString CrashInfo("Computing output path");
3376   // Output to a user requested destination?
3377   if (AtTopLevel && !isa<DsymutilJobAction>(JA) && !isa<VerifyJobAction>(JA)) {
3378     if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o))
3379       return C.addResultFile(FinalOutput->getValue(), &JA);
3380   }
3381 
3382   // 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);
3386     StringRef NameArg;
3387     if (Arg *A = C.getArgs().getLastArg(options::OPT__SLASH_Fi))
3388       NameArg = A->getValue();
3389     return C.addResultFile(
3390         MakeCLOutputFilename(C.getArgs(), NameArg, BaseName, types::TY_PP_C),
3391         &JA);
3392   }
3393 
3394   // Default to writing to stdout?
3395   if (AtTopLevel && !CCGenDiagnostics &&
3396       (isa<PreprocessJobAction>(JA) || JA.getType() == types::TY_ModuleFile))
3397     return "-";
3398 
3399   // 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);
3406     return C.addResultFile(
3407         MakeCLOutputFilename(C.getArgs(), FaValue, BaseName, JA.getType()),
3408         &JA);
3409   }
3410 
3411   // Output to a temporary file?
3412   if ((!AtTopLevel && !isSaveTempsEnabled() &&
3413        !C.getArgs().hasArg(options::OPT__SLASH_Fo)) ||
3414       CCGenDiagnostics) {
3415     StringRef Name = llvm::sys::path::filename(BaseInput);
3416     std::pair<StringRef, StringRef> Split = Name.split('.');
3417     std::string TmpName = GetTemporaryPath(
3418         Split.first, types::getTypeTempSuffix(JA.getType(), IsCLMode()));
3419     return C.addTempFile(C.getArgs().MakeArgString(TmpName));
3420   }
3421 
3422   SmallString<128> BasePath(BaseInput);
3423   StringRef BaseName;
3424 
3425   // Dsymutil actions should use the full path.
3426   if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA))
3427     BaseName = BasePath;
3428   else
3429     BaseName = llvm::sys::path::filename(BasePath);
3430 
3431   // Determine what the derived output name should be.
3432   const char *NamedOutput;
3433 
3434   if ((JA.getType() == types::TY_Object || JA.getType() == types::TY_LTO_BC) &&
3435       C.getArgs().hasArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o)) {
3436     // The /Fo or /o flag decides the object filename.
3437     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);
3443   } else if (JA.getType() == types::TY_Image &&
3444              C.getArgs().hasArg(options::OPT__SLASH_Fe,
3445                                 options::OPT__SLASH_o)) {
3446     // The /Fe or /o flag names the linked file.
3447     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);
3453   } else if (JA.getType() == types::TY_Image) {
3454     if (IsCLMode()) {
3455       // clang-cl uses BaseName for the executable name.
3456       NamedOutput =
3457           MakeCLOutputFilename(C.getArgs(), "", BaseName, types::TY_Image);
3458     } else {
3459       SmallString<128> Output(getDefaultImageName());
3460       Output += OffloadingPrefix;
3461       if (MultipleArchs && !BoundArch.empty()) {
3462         Output += "-";
3463         Output.append(BoundArch);
3464       }
3465       NamedOutput = C.getArgs().MakeArgString(Output.c_str());
3466     }
3467   } else if (JA.getType() == types::TY_PCH && IsCLMode()) {
3468     NamedOutput = C.getArgs().MakeArgString(GetClPchPath(C, BaseName));
3469   } else {
3470     const char *Suffix = types::getTypeTempSuffix(JA.getType(), IsCLMode());
3471     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('.');
3476     SmallString<128> Suffixed(BaseName.substr(0, End));
3477     Suffixed += OffloadingPrefix;
3478     if (MultipleArchs && !BoundArch.empty()) {
3479       Suffixed += "-";
3480       Suffixed.append(BoundArch);
3481     }
3482     // 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";
3488     Suffixed += '.';
3489     Suffixed += Suffix;
3490     NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str());
3491   }
3492 
3493   // 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 
3504   // If we're saving temps and the temp file conflicts with the input file,
3505   // then avoid overwriting input file.
3506   if (!AtTopLevel && isSaveTempsEnabled() && NamedOutput == BaseName) {
3507     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('.');
3516       std::string TmpName = GetTemporaryPath(
3517           Split.first, types::getTypeTempSuffix(JA.getType(), IsCLMode()));
3518       return C.addTempFile(C.getArgs().MakeArgString(TmpName));
3519     }
3520   }
3521 
3522   // As an annoying special case, PCH generation doesn't strip the pathname.
3523   if (JA.getType() == types::TY_PCH && !IsCLMode()) {
3524     llvm::sys::path::remove_filename(BasePath);
3525     if (BasePath.empty())
3526       BasePath = NamedOutput;
3527     else
3528       llvm::sys::path::append(BasePath, NamedOutput);
3529     return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str()), &JA);
3530   } else {
3531     return C.addResultFile(NamedOutput, &JA);
3532   }
3533 }
3534 
3535 std::string Driver::GetFilePath(StringRef Name, const ToolChain &TC) const {
3536   // Respect a limited subset of the '-Bprefix' functionality in GCC by
3537   // attempting to use this prefix when looking for file paths.
3538   for (const std::string &Dir : PrefixDirs) {
3539     if (Dir.empty())
3540       continue;
3541     SmallString<128> P(Dir[0] == '=' ? SysRoot + Dir.substr(1) : Dir);
3542     llvm::sys::path::append(P, Name);
3543     if (llvm::sys::fs::exists(Twine(P)))
3544       return P.str();
3545   }
3546 
3547   SmallString<128> P(ResourceDir);
3548   llvm::sys::path::append(P, Name);
3549   if (llvm::sys::fs::exists(Twine(P)))
3550     return P.str();
3551 
3552   for (const std::string &Dir : TC.getFilePaths()) {
3553     if (Dir.empty())
3554       continue;
3555     SmallString<128> P(Dir[0] == '=' ? SysRoot + Dir.substr(1) : Dir);
3556     llvm::sys::path::append(P, Name);
3557     if (llvm::sys::fs::exists(Twine(P)))
3558       return P.str();
3559   }
3560 
3561   return Name;
3562 }
3563 
3564 void Driver::generatePrefixedToolNames(
3565     StringRef Tool, const ToolChain &TC,
3566     SmallVectorImpl<std::string> &Names) const {
3567   // FIXME: Needs a better variable than DefaultTargetTriple
3568   Names.emplace_back((DefaultTargetTriple + "-" + Tool).str());
3569   Names.emplace_back(Tool);
3570 
3571   // Allow the discovery of tools prefixed with LLVM's default target triple.
3572   std::string LLVMDefaultTargetTriple = llvm::sys::getDefaultTargetTriple();
3573   if (LLVMDefaultTargetTriple != DefaultTargetTriple)
3574     Names.emplace_back((LLVMDefaultTargetTriple + "-" + Tool).str());
3575 }
3576 
3577 static bool ScanDirForExecutable(SmallString<128> &Dir,
3578                                  ArrayRef<std::string> Names) {
3579   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 
3588 std::string Driver::GetProgramPath(StringRef Name, const ToolChain &TC) const {
3589   SmallVector<std::string, 2> TargetSpecificExecutables;
3590   generatePrefixedToolNames(Name, TC, TargetSpecificExecutables);
3591 
3592   // Respect a limited subset of the '-Bprefix' functionality in GCC by
3593   // attempting to use this prefix when looking for program paths.
3594   for (const auto &PrefixDir : PrefixDirs) {
3595     if (llvm::sys::fs::is_directory(PrefixDir)) {
3596       SmallString<128> P(PrefixDir);
3597       if (ScanDirForExecutable(P, TargetSpecificExecutables))
3598         return P.str();
3599     } else {
3600       SmallString<128> P((PrefixDir + Name).str());
3601       if (llvm::sys::fs::can_execute(Twine(P)))
3602         return P.str();
3603     }
3604   }
3605 
3606   const ToolChain::path_list &List = TC.getProgramPaths();
3607   for (const auto &Path : List) {
3608     SmallString<128> P(Path);
3609     if (ScanDirForExecutable(P, TargetSpecificExecutables))
3610       return P.str();
3611   }
3612 
3613   // If all else failed, search the path.
3614   for (const auto &TargetSpecificExecutable : TargetSpecificExecutables)
3615     if (llvm::ErrorOr<std::string> P =
3616             llvm::sys::findProgramByName(TargetSpecificExecutable))
3617       return *P;
3618 
3619   return Name;
3620 }
3621 
3622 std::string Driver::GetTemporaryPath(StringRef Prefix, StringRef Suffix) const {
3623   SmallString<128> Path;
3624   std::error_code EC = llvm::sys::fs::createTemporaryFile(Prefix, Suffix, Path);
3625   if (EC) {
3626     Diag(clang::diag::err_unable_to_make_temp) << EC.message();
3627     return "";
3628   }
3629 
3630   return Path.str();
3631 }
3632 
3633 std::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 
3652 const ToolChain &Driver::getToolChain(const ArgList &Args,
3653                                       const llvm::Triple &Target) const {
3654 
3655   auto &TC = ToolChains[Target.str()];
3656   if (!TC) {
3657     switch (Target.getOS()) {
3658     case llvm::Triple::Haiku:
3659       TC = llvm::make_unique<toolchains::Haiku>(*this, Target, Args);
3660       break;
3661     case llvm::Triple::CloudABI:
3662       TC = llvm::make_unique<toolchains::CloudABI>(*this, Target, Args);
3663       break;
3664     case llvm::Triple::Darwin:
3665     case llvm::Triple::MacOSX:
3666     case llvm::Triple::IOS:
3667     case llvm::Triple::TvOS:
3668     case llvm::Triple::WatchOS:
3669       TC = llvm::make_unique<toolchains::DarwinClang>(*this, Target, Args);
3670       break;
3671     case llvm::Triple::DragonFly:
3672       TC = llvm::make_unique<toolchains::DragonFly>(*this, Target, Args);
3673       break;
3674     case llvm::Triple::OpenBSD:
3675       TC = llvm::make_unique<toolchains::OpenBSD>(*this, Target, Args);
3676       break;
3677     case llvm::Triple::Bitrig:
3678       TC = llvm::make_unique<toolchains::Bitrig>(*this, Target, Args);
3679       break;
3680     case llvm::Triple::NetBSD:
3681       TC = llvm::make_unique<toolchains::NetBSD>(*this, Target, Args);
3682       break;
3683     case llvm::Triple::FreeBSD:
3684       TC = llvm::make_unique<toolchains::FreeBSD>(*this, Target, Args);
3685       break;
3686     case llvm::Triple::Minix:
3687       TC = llvm::make_unique<toolchains::Minix>(*this, Target, Args);
3688       break;
3689     case llvm::Triple::Linux:
3690     case llvm::Triple::ELFIAMCU:
3691       if (Target.getArch() == llvm::Triple::hexagon)
3692         TC = llvm::make_unique<toolchains::HexagonToolChain>(*this, Target,
3693                                                              Args);
3694       else if ((Target.getVendor() == llvm::Triple::MipsTechnologies) &&
3695                !Target.hasEnvironment())
3696         TC = llvm::make_unique<toolchains::MipsLLVMToolChain>(*this, Target,
3697                                                               Args);
3698       else
3699         TC = llvm::make_unique<toolchains::Linux>(*this, Target, Args);
3700       break;
3701     case llvm::Triple::NaCl:
3702       TC = llvm::make_unique<toolchains::NaClToolChain>(*this, Target, Args);
3703       break;
3704     case llvm::Triple::Fuchsia:
3705       TC = llvm::make_unique<toolchains::Fuchsia>(*this, Target, Args);
3706       break;
3707     case llvm::Triple::Solaris:
3708       TC = llvm::make_unique<toolchains::Solaris>(*this, Target, Args);
3709       break;
3710     case llvm::Triple::AMDHSA:
3711       TC = llvm::make_unique<toolchains::AMDGPUToolChain>(*this, Target, Args);
3712       break;
3713     case llvm::Triple::Win32:
3714       switch (Target.getEnvironment()) {
3715       default:
3716         if (Target.isOSBinFormatELF())
3717           TC = llvm::make_unique<toolchains::Generic_ELF>(*this, Target, Args);
3718         else if (Target.isOSBinFormatMachO())
3719           TC = llvm::make_unique<toolchains::MachO>(*this, Target, Args);
3720         else
3721           TC = llvm::make_unique<toolchains::Generic_GCC>(*this, Target, Args);
3722         break;
3723       case llvm::Triple::GNU:
3724         TC = llvm::make_unique<toolchains::MinGW>(*this, Target, Args);
3725         break;
3726       case llvm::Triple::Itanium:
3727         TC = llvm::make_unique<toolchains::CrossWindowsToolChain>(*this, Target,
3728                                                                   Args);
3729         break;
3730       case llvm::Triple::MSVC:
3731       case llvm::Triple::UnknownEnvironment:
3732         TC = llvm::make_unique<toolchains::MSVCToolChain>(*this, Target, Args);
3733         break;
3734       }
3735       break;
3736     case llvm::Triple::PS4:
3737       TC = llvm::make_unique<toolchains::PS4CPU>(*this, Target, Args);
3738       break;
3739     case llvm::Triple::Contiki:
3740       TC = llvm::make_unique<toolchains::Contiki>(*this, Target, Args);
3741       break;
3742     default:
3743       // Of these targets, Hexagon is the only one that might have
3744       // an OS of Linux, in which case it got handled above already.
3745       switch (Target.getArch()) {
3746       case llvm::Triple::tce:
3747         TC = llvm::make_unique<toolchains::TCEToolChain>(*this, Target, Args);
3748         break;
3749       case llvm::Triple::tcele:
3750         TC = llvm::make_unique<toolchains::TCELEToolChain>(*this, Target, Args);
3751         break;
3752       case llvm::Triple::hexagon:
3753         TC = llvm::make_unique<toolchains::HexagonToolChain>(*this, Target,
3754                                                              Args);
3755         break;
3756       case llvm::Triple::lanai:
3757         TC = llvm::make_unique<toolchains::LanaiToolChain>(*this, Target, Args);
3758         break;
3759       case llvm::Triple::xcore:
3760         TC = llvm::make_unique<toolchains::XCoreToolChain>(*this, Target, Args);
3761         break;
3762       case llvm::Triple::wasm32:
3763       case llvm::Triple::wasm64:
3764         TC = llvm::make_unique<toolchains::WebAssembly>(*this, Target, Args);
3765         break;
3766       case llvm::Triple::avr:
3767         TC = llvm::make_unique<toolchains::AVRToolChain>(*this, Target, Args);
3768         break;
3769       default:
3770         if (Target.getVendor() == llvm::Triple::Myriad)
3771           TC = llvm::make_unique<toolchains::MyriadToolChain>(*this, Target,
3772                                                               Args);
3773         else if (Target.isOSBinFormatELF())
3774           TC = llvm::make_unique<toolchains::Generic_ELF>(*this, Target, Args);
3775         else if (Target.isOSBinFormatMachO())
3776           TC = llvm::make_unique<toolchains::MachO>(*this, Target, Args);
3777         else
3778           TC = llvm::make_unique<toolchains::Generic_GCC>(*this, Target, Args);
3779       }
3780     }
3781   }
3782 
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 
3788   return *TC;
3789 }
3790 
3791 bool Driver::ShouldUseClangCompiler(const JobAction &JA) const {
3792   // Say "no" if there is not exactly one input of a type clang understands.
3793   if (JA.size() != 1 ||
3794       !types::isAcceptedByClang((*JA.input_begin())->getType()))
3795     return false;
3796 
3797   // And say "no" if this is not a kind of action clang understands.
3798   if (!isa<PreprocessJobAction>(JA) && !isa<PrecompileJobAction>(JA) &&
3799       !isa<CompileJobAction>(JA) && !isa<BackendJobAction>(JA))
3800     return false;
3801 
3802   return true;
3803 }
3804 
3805 /// 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.
3807 ///
3808 /// \return True if the entire string was parsed (9.2), or all groups were
3809 /// parsed (10.3.5extrastuff).
3810 bool Driver::GetReleaseVersion(StringRef Str, unsigned &Major, unsigned &Minor,
3811                                unsigned &Micro, bool &HadExtra) {
3812   HadExtra = false;
3813 
3814   Major = Minor = Micro = 0;
3815   if (Str.empty())
3816     return false;
3817 
3818   if (Str.consumeInteger(10, Major))
3819     return false;
3820   if (Str.empty())
3821     return true;
3822   if (Str[0] != '.')
3823     return false;
3824 
3825   Str = Str.drop_front(1);
3826 
3827   if (Str.consumeInteger(10, Minor))
3828     return false;
3829   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;
3839   return true;
3840 }
3841 
3842 /// 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.
3848 bool Driver::GetReleaseVersion(StringRef Str,
3849                                MutableArrayRef<unsigned> Digits) {
3850   if (Str.empty())
3851     return false;
3852 
3853   unsigned CurDigit = 0;
3854   while (CurDigit < Digits.size()) {
3855     unsigned Digit;
3856     if (Str.consumeInteger(10, Digit))
3857       return false;
3858     Digits[CurDigit] = Digit;
3859     if (Str.empty())
3860       return true;
3861     if (Str[0] != '.')
3862       return false;
3863     Str = Str.drop_front(1);
3864     CurDigit++;
3865   }
3866 
3867   // More digits than requested, bail out...
3868   return false;
3869 }
3870 
3871 std::pair<unsigned, unsigned> Driver::getIncludeExcludeOptionFlagMasks() const {
3872   unsigned IncludedFlagsBitmask = 0;
3873   unsigned ExcludedFlagsBitmask = options::NoDriverOption;
3874 
3875   if (Mode == CLMode) {
3876     // Include CL and Core options.
3877     IncludedFlagsBitmask |= options::CLOption;
3878     IncludedFlagsBitmask |= options::CoreOption;
3879   } else {
3880     ExcludedFlagsBitmask |= options::CLOption;
3881   }
3882 
3883   return std::make_pair(IncludedFlagsBitmask, ExcludedFlagsBitmask);
3884 }
3885 
3886 bool clang::driver::isOptimizationLevelFast(const ArgList &Args) {
3887   return Args.hasFlag(options::OPT_Ofast, options::OPT_O_Group, false);
3888 }
3889