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/Driver/Action.h"
15 #include "clang/Driver/Arg.h"
16 #include "clang/Driver/ArgList.h"
17 #include "clang/Driver/Compilation.h"
18 #include "clang/Driver/DriverDiagnostic.h"
19 #include "clang/Driver/Job.h"
20 #include "clang/Driver/OptTable.h"
21 #include "clang/Driver/Option.h"
22 #include "clang/Driver/Options.h"
23 #include "clang/Driver/Tool.h"
24 #include "clang/Driver/ToolChain.h"
25 #include "llvm/ADT/ArrayRef.h"
26 #include "llvm/ADT/OwningPtr.h"
27 #include "llvm/ADT/StringSet.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/Support/ErrorHandling.h"
30 #include "llvm/Support/FileSystem.h"
31 #include "llvm/Support/Path.h"
32 #include "llvm/Support/PrettyStackTrace.h"
33 #include "llvm/Support/Program.h"
34 #include "llvm/Support/raw_ostream.h"
35 #include <map>
36 
37 // FIXME: It would prevent us from including llvm-config.h
38 // if config.h were included before system_error.h.
39 #include "clang/Config/config.h"
40 
41 using namespace clang::driver;
42 using namespace clang;
43 
44 Driver::Driver(StringRef ClangExecutable,
45                StringRef DefaultTargetTriple,
46                StringRef DefaultImageName,
47                DiagnosticsEngine &Diags)
48   : Opts(createDriverOptTable()), Diags(Diags),
49     ClangExecutable(ClangExecutable), SysRoot(DEFAULT_SYSROOT),
50     UseStdLib(true), DefaultTargetTriple(DefaultTargetTriple),
51     DefaultImageName(DefaultImageName),
52     DriverTitle("clang LLVM compiler"),
53     CCPrintOptionsFilename(0), CCPrintHeadersFilename(0),
54     CCLogDiagnosticsFilename(0), CCCIsCXX(false),
55     CCCIsCPP(false),CCCEcho(false), CCCPrintBindings(false),
56     CCPrintOptions(false), CCPrintHeaders(false), CCLogDiagnostics(false),
57     CCGenDiagnostics(false), CCCGenericGCCName(""), CheckInputsExist(true),
58     CCCUsePCH(true), SuppressMissingInputWarning(false) {
59 
60   Name = llvm::sys::path::stem(ClangExecutable);
61   Dir  = llvm::sys::path::parent_path(ClangExecutable);
62 
63   // Compute the path to the resource directory.
64   StringRef ClangResourceDir(CLANG_RESOURCE_DIR);
65   SmallString<128> P(Dir);
66   if (ClangResourceDir != "")
67     llvm::sys::path::append(P, ClangResourceDir);
68   else
69     llvm::sys::path::append(P, "..", "lib", "clang", CLANG_VERSION_STRING);
70   ResourceDir = P.str();
71 }
72 
73 Driver::~Driver() {
74   delete Opts;
75 
76   for (llvm::StringMap<ToolChain *>::iterator I = ToolChains.begin(),
77                                               E = ToolChains.end();
78        I != E; ++I)
79     delete I->second;
80 }
81 
82 InputArgList *Driver::ParseArgStrings(ArrayRef<const char *> ArgList) {
83   llvm::PrettyStackTraceString CrashInfo("Command line argument parsing");
84   unsigned MissingArgIndex, MissingArgCount;
85   InputArgList *Args = getOpts().ParseArgs(ArgList.begin(), ArgList.end(),
86                                            MissingArgIndex, MissingArgCount);
87 
88   // Check for missing argument error.
89   if (MissingArgCount)
90     Diag(clang::diag::err_drv_missing_argument)
91       << Args->getArgString(MissingArgIndex) << MissingArgCount;
92 
93   // Check for unsupported options.
94   for (ArgList::const_iterator it = Args->begin(), ie = Args->end();
95        it != ie; ++it) {
96     Arg *A = *it;
97     if (A->getOption().hasFlag(options::Unsupported)) {
98       Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(*Args);
99       continue;
100     }
101 
102     // Warn about -mcpu= without an argument.
103     if (A->getOption().matches(options::OPT_mcpu_EQ) &&
104         A->containsValue("")) {
105       Diag(clang::diag::warn_drv_empty_joined_argument) <<
106         A->getAsString(*Args);
107     }
108   }
109 
110   return Args;
111 }
112 
113 // Determine which compilation mode we are in. We look for options which
114 // affect the phase, starting with the earliest phases, and record which
115 // option we used to determine the final phase.
116 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg)
117 const {
118   Arg *PhaseArg = 0;
119   phases::ID FinalPhase;
120 
121   // -{E,M,MM} only run the preprocessor.
122   if (CCCIsCPP ||
123       (PhaseArg = DAL.getLastArg(options::OPT_E)) ||
124       (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM))) {
125     FinalPhase = phases::Preprocess;
126 
127     // -{fsyntax-only,-analyze,emit-ast,S} only run up to the compiler.
128   } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
129              (PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) ||
130              (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||
131              (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) ||
132              (PhaseArg = DAL.getLastArg(options::OPT__migrate)) ||
133              (PhaseArg = DAL.getLastArg(options::OPT__analyze,
134                                         options::OPT__analyze_auto)) ||
135              (PhaseArg = DAL.getLastArg(options::OPT_emit_ast)) ||
136              (PhaseArg = DAL.getLastArg(options::OPT_S))) {
137     FinalPhase = phases::Compile;
138 
139     // -c only runs up to the assembler.
140   } else if ((PhaseArg = DAL.getLastArg(options::OPT_c))) {
141     FinalPhase = phases::Assemble;
142 
143     // Otherwise do everything.
144   } else
145     FinalPhase = phases::Link;
146 
147   if (FinalPhaseArg)
148     *FinalPhaseArg = PhaseArg;
149 
150   return FinalPhase;
151 }
152 
153 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
154   DerivedArgList *DAL = new DerivedArgList(Args);
155 
156   bool HasNostdlib = Args.hasArg(options::OPT_nostdlib);
157   for (ArgList::const_iterator it = Args.begin(),
158          ie = Args.end(); it != ie; ++it) {
159     const Arg *A = *it;
160 
161     // Unfortunately, we have to parse some forwarding options (-Xassembler,
162     // -Xlinker, -Xpreprocessor) because we either integrate their functionality
163     // (assembler and preprocessor), or bypass a previous driver ('collect2').
164 
165     // Rewrite linker options, to replace --no-demangle with a custom internal
166     // option.
167     if ((A->getOption().matches(options::OPT_Wl_COMMA) ||
168          A->getOption().matches(options::OPT_Xlinker)) &&
169         A->containsValue("--no-demangle")) {
170       // Add the rewritten no-demangle argument.
171       DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle));
172 
173       // Add the remaining values as Xlinker arguments.
174       for (unsigned i = 0, e = A->getNumValues(); i != e; ++i)
175         if (StringRef(A->getValue(i)) != "--no-demangle")
176           DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker),
177                               A->getValue(i));
178 
179       continue;
180     }
181 
182     // Rewrite preprocessor options, to replace -Wp,-MD,FOO which is used by
183     // some build systems. We don't try to be complete here because we don't
184     // care to encourage this usage model.
185     if (A->getOption().matches(options::OPT_Wp_COMMA) &&
186         (A->getValue(0) == StringRef("-MD") ||
187          A->getValue(0) == StringRef("-MMD"))) {
188       // Rewrite to -MD/-MMD along with -MF.
189       if (A->getValue(0) == StringRef("-MD"))
190         DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD));
191       else
192         DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD));
193       if (A->getNumValues() == 2)
194         DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF),
195                             A->getValue(1));
196       continue;
197     }
198 
199     // Rewrite reserved library names.
200     if (A->getOption().matches(options::OPT_l)) {
201       StringRef Value = A->getValue();
202 
203       // Rewrite unless -nostdlib is present.
204       if (!HasNostdlib && Value == "stdc++") {
205         DAL->AddFlagArg(A, Opts->getOption(
206                               options::OPT_Z_reserved_lib_stdcxx));
207         continue;
208       }
209 
210       // Rewrite unconditionally.
211       if (Value == "cc_kext") {
212         DAL->AddFlagArg(A, Opts->getOption(
213                               options::OPT_Z_reserved_lib_cckext));
214         continue;
215       }
216     }
217 
218     DAL->append(*it);
219   }
220 
221   // Add a default value of -mlinker-version=, if one was given and the user
222   // didn't specify one.
223 #if defined(HOST_LINK_VERSION)
224   if (!Args.hasArg(options::OPT_mlinker_version_EQ)) {
225     DAL->AddJoinedArg(0, Opts->getOption(options::OPT_mlinker_version_EQ),
226                       HOST_LINK_VERSION);
227     DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim();
228   }
229 #endif
230 
231   return DAL;
232 }
233 
234 Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
235   llvm::PrettyStackTraceString CrashInfo("Compilation construction");
236 
237   // FIXME: Handle environment options which affect driver behavior, somewhere
238   // (client?). GCC_EXEC_PREFIX, LPATH, CC_PRINT_OPTIONS.
239 
240   if (char *env = ::getenv("COMPILER_PATH")) {
241     StringRef CompilerPath = env;
242     while (!CompilerPath.empty()) {
243       std::pair<StringRef, StringRef> Split
244         = CompilerPath.split(llvm::sys::PathSeparator);
245       PrefixDirs.push_back(Split.first);
246       CompilerPath = Split.second;
247     }
248   }
249 
250   // FIXME: What are we going to do with -V and -b?
251 
252   // FIXME: This stuff needs to go into the Compilation, not the driver.
253   bool CCCPrintOptions, CCCPrintActions;
254 
255   InputArgList *Args = ParseArgStrings(ArgList.slice(1));
256 
257   // -no-canonical-prefixes is used very early in main.
258   Args->ClaimAllArgs(options::OPT_no_canonical_prefixes);
259 
260   // Ignore -pipe.
261   Args->ClaimAllArgs(options::OPT_pipe);
262 
263   // Extract -ccc args.
264   //
265   // FIXME: We need to figure out where this behavior should live. Most of it
266   // should be outside in the client; the parts that aren't should have proper
267   // options, either by introducing new ones or by overloading gcc ones like -V
268   // or -b.
269   CCCPrintOptions = Args->hasArg(options::OPT_ccc_print_options);
270   CCCPrintActions = Args->hasArg(options::OPT_ccc_print_phases);
271   CCCPrintBindings = Args->hasArg(options::OPT_ccc_print_bindings);
272   CCCIsCXX = Args->hasArg(options::OPT_ccc_cxx) || CCCIsCXX;
273   CCCEcho = Args->hasArg(options::OPT_ccc_echo);
274   if (const Arg *A = Args->getLastArg(options::OPT_ccc_gcc_name))
275     CCCGenericGCCName = A->getValue();
276   CCCUsePCH = Args->hasFlag(options::OPT_ccc_pch_is_pch,
277                             options::OPT_ccc_pch_is_pth);
278   // FIXME: DefaultTargetTriple is used by the target-prefixed calls to as/ld
279   // and getToolChain is const.
280   if (const Arg *A = Args->getLastArg(options::OPT_target))
281     DefaultTargetTriple = A->getValue();
282   if (const Arg *A = Args->getLastArg(options::OPT_ccc_install_dir))
283     Dir = InstalledDir = A->getValue();
284   for (arg_iterator it = Args->filtered_begin(options::OPT_B),
285          ie = Args->filtered_end(); it != ie; ++it) {
286     const Arg *A = *it;
287     A->claim();
288     PrefixDirs.push_back(A->getValue(0));
289   }
290   if (const Arg *A = Args->getLastArg(options::OPT__sysroot_EQ))
291     SysRoot = A->getValue();
292   if (Args->hasArg(options::OPT_nostdlib))
293     UseStdLib = false;
294 
295   if (const Arg *A = Args->getLastArg(options::OPT_resource_dir))
296     ResourceDir = A->getValue();
297 
298   // Perform the default argument translations.
299   DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args);
300 
301   // Owned by the host.
302   const ToolChain &TC = getToolChain(*Args);
303 
304   // The compilation takes ownership of Args.
305   Compilation *C = new Compilation(*this, TC, Args, TranslatedArgs);
306 
307   // FIXME: This behavior shouldn't be here.
308   if (CCCPrintOptions) {
309     PrintOptions(C->getInputArgs());
310     return C;
311   }
312 
313   if (!HandleImmediateArgs(*C))
314     return C;
315 
316   // Construct the list of inputs.
317   InputList Inputs;
318   BuildInputs(C->getDefaultToolChain(), C->getArgs(), Inputs);
319 
320   // Construct the list of abstract actions to perform for this compilation. On
321   // Darwin target OSes this uses the driver-driver and universal actions.
322   if (TC.getTriple().isOSDarwin())
323     BuildUniversalActions(C->getDefaultToolChain(), C->getArgs(),
324                           Inputs, C->getActions());
325   else
326     BuildActions(C->getDefaultToolChain(), C->getArgs(), Inputs,
327                  C->getActions());
328 
329   if (CCCPrintActions) {
330     PrintActions(*C);
331     return C;
332   }
333 
334   BuildJobs(*C);
335 
336   return C;
337 }
338 
339 // When clang crashes, produce diagnostic information including the fully
340 // preprocessed source file(s).  Request that the developer attach the
341 // diagnostic information to a bug report.
342 void Driver::generateCompilationDiagnostics(Compilation &C,
343                                             const Command *FailingCommand) {
344   if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics))
345     return;
346 
347   // Don't try to generate diagnostics for link or dsymutil jobs.
348   if (FailingCommand && (FailingCommand->getCreator().isLinkJob() ||
349                          FailingCommand->getCreator().isDsymutilJob()))
350     return;
351 
352   // Print the version of the compiler.
353   PrintVersion(C, llvm::errs());
354 
355   Diag(clang::diag::note_drv_command_failed_diag_msg)
356     << "PLEASE submit a bug report to " BUG_REPORT_URL " and include the "
357     "crash backtrace, preprocessed source, and associated run script.";
358 
359   // Suppress driver output and emit preprocessor output to temp file.
360   CCCIsCPP = true;
361   CCGenDiagnostics = true;
362   C.getArgs().AddFlagArg(0, Opts->getOption(options::OPT_frewrite_includes));
363 
364   // Save the original job command(s).
365   std::string Cmd;
366   llvm::raw_string_ostream OS(Cmd);
367   if (FailingCommand)
368     C.PrintDiagnosticJob(OS, *FailingCommand);
369   else
370     // Crash triggered by FORCE_CLANG_DIAGNOSTICS_CRASH, which doesn't have an
371     // associated FailingCommand, so just pass all jobs.
372     C.PrintDiagnosticJob(OS, C.getJobs());
373   OS.flush();
374 
375   // Keep track of whether we produce any errors while trying to produce
376   // preprocessed sources.
377   DiagnosticErrorTrap Trap(Diags);
378 
379   // Suppress tool output.
380   C.initCompilationForDiagnostics();
381 
382   // Construct the list of inputs.
383   InputList Inputs;
384   BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs);
385 
386   for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) {
387     bool IgnoreInput = false;
388 
389     // Ignore input from stdin or any inputs that cannot be preprocessed.
390     if (!strcmp(it->second->getValue(), "-")) {
391       Diag(clang::diag::note_drv_command_failed_diag_msg)
392         << "Error generating preprocessed source(s) - ignoring input from stdin"
393         ".";
394       IgnoreInput = true;
395     } else if (types::getPreprocessedType(it->first) == types::TY_INVALID) {
396       IgnoreInput = true;
397     }
398 
399     if (IgnoreInput) {
400       it = Inputs.erase(it);
401       ie = Inputs.end();
402     } else {
403       ++it;
404     }
405   }
406 
407   if (Inputs.empty()) {
408     Diag(clang::diag::note_drv_command_failed_diag_msg)
409       << "Error generating preprocessed source(s) - no preprocessable inputs.";
410     return;
411   }
412 
413   // Don't attempt to generate preprocessed files if multiple -arch options are
414   // used, unless they're all duplicates.
415   llvm::StringSet<> ArchNames;
416   for (ArgList::const_iterator it = C.getArgs().begin(), ie = C.getArgs().end();
417        it != ie; ++it) {
418     Arg *A = *it;
419     if (A->getOption().matches(options::OPT_arch)) {
420       StringRef ArchName = A->getValue();
421       ArchNames.insert(ArchName);
422     }
423   }
424   if (ArchNames.size() > 1) {
425     Diag(clang::diag::note_drv_command_failed_diag_msg)
426       << "Error generating preprocessed source(s) - cannot generate "
427       "preprocessed source with multiple -arch options.";
428     return;
429   }
430 
431   // Construct the list of abstract actions to perform for this compilation. On
432   // Darwin OSes this uses the driver-driver and builds universal actions.
433   const ToolChain &TC = C.getDefaultToolChain();
434   if (TC.getTriple().isOSDarwin())
435     BuildUniversalActions(TC, C.getArgs(), Inputs, C.getActions());
436   else
437     BuildActions(TC, C.getArgs(), Inputs, C.getActions());
438 
439   BuildJobs(C);
440 
441   // If there were errors building the compilation, quit now.
442   if (Trap.hasErrorOccurred()) {
443     Diag(clang::diag::note_drv_command_failed_diag_msg)
444       << "Error generating preprocessed source(s).";
445     return;
446   }
447 
448   // Generate preprocessed output.
449   SmallVector<std::pair<int, const Command *>, 4> FailingCommands;
450   C.ExecuteJob(C.getJobs(), FailingCommands);
451 
452   // If the command succeeded, we are done.
453   if (FailingCommands.empty()) {
454     Diag(clang::diag::note_drv_command_failed_diag_msg)
455       << "\n********************\n\n"
456       "PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:\n"
457       "Preprocessed source(s) and associated run script(s) are located at:";
458     ArgStringList Files = C.getTempFiles();
459     for (ArgStringList::const_iterator it = Files.begin(), ie = Files.end();
460          it != ie; ++it) {
461       Diag(clang::diag::note_drv_command_failed_diag_msg) << *it;
462 
463       std::string Err;
464       std::string Script = StringRef(*it).rsplit('.').first;
465       Script += ".sh";
466       llvm::raw_fd_ostream ScriptOS(Script.c_str(), Err,
467                                     llvm::raw_fd_ostream::F_Excl |
468                                     llvm::raw_fd_ostream::F_Binary);
469       if (!Err.empty()) {
470         Diag(clang::diag::note_drv_command_failed_diag_msg)
471           << "Error generating run script: " + Script + " " + Err;
472       } else {
473         // Append the new filename with correct preprocessed suffix.
474         size_t I, E;
475         I = Cmd.find("-main-file-name ");
476         assert (I != std::string::npos && "Expected to find -main-file-name");
477         I += 16;
478         E = Cmd.find(" ", I);
479         assert (E != std::string::npos && "-main-file-name missing argument?");
480         StringRef OldFilename = StringRef(Cmd).slice(I, E);
481         StringRef NewFilename = llvm::sys::path::filename(*it);
482         I = StringRef(Cmd).rfind(OldFilename);
483         E = I + OldFilename.size();
484         I = Cmd.rfind(" ", I) + 1;
485         Cmd.replace(I, E - I, NewFilename.data(), NewFilename.size());
486         ScriptOS << Cmd;
487         Diag(clang::diag::note_drv_command_failed_diag_msg) << Script;
488       }
489     }
490     Diag(clang::diag::note_drv_command_failed_diag_msg)
491       << "\n\n********************";
492   } else {
493     // Failure, remove preprocessed files.
494     if (!C.getArgs().hasArg(options::OPT_save_temps)) {
495       C.CleanupFileList(C.getTempFiles(), true);
496     }
497 
498     Diag(clang::diag::note_drv_command_failed_diag_msg)
499       << "Error generating preprocessed source(s).";
500   }
501 }
502 
503 int Driver::ExecuteCompilation(const Compilation &C,
504     SmallVectorImpl< std::pair<int, const Command *> > &FailingCommands) const {
505   // Just print if -### was present.
506   if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
507     C.PrintJob(llvm::errs(), C.getJobs(), "\n", true);
508     return 0;
509   }
510 
511   // If there were errors building the compilation, quit now.
512   if (Diags.hasErrorOccurred())
513     return 1;
514 
515   C.ExecuteJob(C.getJobs(), FailingCommands);
516 
517   // Remove temp files.
518   C.CleanupFileList(C.getTempFiles());
519 
520   // If the command succeeded, we are done.
521   if (FailingCommands.empty())
522     return 0;
523 
524   // Otherwise, remove result files and print extra information about abnormal
525   // failures.
526   for (SmallVectorImpl< std::pair<int, const Command *> >::iterator it =
527          FailingCommands.begin(), ie = FailingCommands.end(); it != ie; ++it) {
528     int Res = it->first;
529     const Command *FailingCommand = it->second;
530 
531     // Remove result files if we're not saving temps.
532     if (!C.getArgs().hasArg(options::OPT_save_temps)) {
533       const JobAction *JA = cast<JobAction>(&FailingCommand->getSource());
534       C.CleanupFileMap(C.getResultFiles(), JA, true);
535 
536       // Failure result files are valid unless we crashed.
537       if (Res < 0)
538         C.CleanupFileMap(C.getFailureResultFiles(), JA, true);
539     }
540 
541     // Print extra information about abnormal failures, if possible.
542     //
543     // This is ad-hoc, but we don't want to be excessively noisy. If the result
544     // status was 1, assume the command failed normally. In particular, if it
545     // was the compiler then assume it gave a reasonable error code. Failures
546     // in other tools are less common, and they generally have worse
547     // diagnostics, so always print the diagnostic there.
548     const Tool &FailingTool = FailingCommand->getCreator();
549 
550     if (!FailingCommand->getCreator().hasGoodDiagnostics() || Res != 1) {
551       // FIXME: See FIXME above regarding result code interpretation.
552       if (Res < 0)
553         Diag(clang::diag::err_drv_command_signalled)
554           << FailingTool.getShortName();
555       else
556         Diag(clang::diag::err_drv_command_failed)
557           << FailingTool.getShortName() << Res;
558     }
559   }
560   return 0;
561 }
562 
563 void Driver::PrintOptions(const ArgList &Args) const {
564   unsigned i = 0;
565   for (ArgList::const_iterator it = Args.begin(), ie = Args.end();
566        it != ie; ++it, ++i) {
567     Arg *A = *it;
568     llvm::errs() << "Option " << i << " - "
569                  << "Name: \"" << A->getOption().getPrefixedName() << "\", "
570                  << "Values: {";
571     for (unsigned j = 0; j < A->getNumValues(); ++j) {
572       if (j)
573         llvm::errs() << ", ";
574       llvm::errs() << '"' << A->getValue(j) << '"';
575     }
576     llvm::errs() << "}\n";
577   }
578 }
579 
580 void Driver::PrintHelp(bool ShowHidden) const {
581   getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(),
582                       /*Include*/0,
583                       /*Exclude*/options::NoDriverOption |
584                       (ShowHidden ? 0 : options::HelpHidden));
585 }
586 
587 void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const {
588   // FIXME: The following handlers should use a callback mechanism, we don't
589   // know what the client would like to do.
590   OS << getClangFullVersion() << '\n';
591   const ToolChain &TC = C.getDefaultToolChain();
592   OS << "Target: " << TC.getTripleString() << '\n';
593 
594   // Print the threading model.
595   //
596   // FIXME: Implement correctly.
597   OS << "Thread model: " << "posix" << '\n';
598 }
599 
600 /// PrintDiagnosticCategories - Implement the --print-diagnostic-categories
601 /// option.
602 static void PrintDiagnosticCategories(raw_ostream &OS) {
603   // Skip the empty category.
604   for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories();
605        i != max; ++i)
606     OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n';
607 }
608 
609 bool Driver::HandleImmediateArgs(const Compilation &C) {
610   // The order these options are handled in gcc is all over the place, but we
611   // don't expect inconsistencies w.r.t. that to matter in practice.
612 
613   if (C.getArgs().hasArg(options::OPT_dumpmachine)) {
614     llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n';
615     return false;
616   }
617 
618   if (C.getArgs().hasArg(options::OPT_dumpversion)) {
619     // Since -dumpversion is only implemented for pedantic GCC compatibility, we
620     // return an answer which matches our definition of __VERSION__.
621     //
622     // If we want to return a more correct answer some day, then we should
623     // introduce a non-pedantically GCC compatible mode to Clang in which we
624     // provide sensible definitions for -dumpversion, __VERSION__, etc.
625     llvm::outs() << "4.2.1\n";
626     return false;
627   }
628 
629   if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) {
630     PrintDiagnosticCategories(llvm::outs());
631     return false;
632   }
633 
634   if (C.getArgs().hasArg(options::OPT_help) ||
635       C.getArgs().hasArg(options::OPT__help_hidden)) {
636     PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden));
637     return false;
638   }
639 
640   if (C.getArgs().hasArg(options::OPT__version)) {
641     // Follow gcc behavior and use stdout for --version and stderr for -v.
642     PrintVersion(C, llvm::outs());
643     return false;
644   }
645 
646   if (C.getArgs().hasArg(options::OPT_v) ||
647       C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) {
648     PrintVersion(C, llvm::errs());
649     SuppressMissingInputWarning = true;
650   }
651 
652   const ToolChain &TC = C.getDefaultToolChain();
653   if (C.getArgs().hasArg(options::OPT_print_search_dirs)) {
654     llvm::outs() << "programs: =";
655     for (ToolChain::path_list::const_iterator it = TC.getProgramPaths().begin(),
656            ie = TC.getProgramPaths().end(); it != ie; ++it) {
657       if (it != TC.getProgramPaths().begin())
658         llvm::outs() << ':';
659       llvm::outs() << *it;
660     }
661     llvm::outs() << "\n";
662     llvm::outs() << "libraries: =" << ResourceDir;
663 
664     StringRef sysroot = C.getSysRoot();
665 
666     for (ToolChain::path_list::const_iterator it = TC.getFilePaths().begin(),
667            ie = TC.getFilePaths().end(); it != ie; ++it) {
668       llvm::outs() << ':';
669       const char *path = it->c_str();
670       if (path[0] == '=')
671         llvm::outs() << sysroot << path + 1;
672       else
673         llvm::outs() << path;
674     }
675     llvm::outs() << "\n";
676     return false;
677   }
678 
679   // FIXME: The following handlers should use a callback mechanism, we don't
680   // know what the client would like to do.
681   if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) {
682     llvm::outs() << GetFilePath(A->getValue(), TC) << "\n";
683     return false;
684   }
685 
686   if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) {
687     llvm::outs() << GetProgramPath(A->getValue(), TC) << "\n";
688     return false;
689   }
690 
691   if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) {
692     llvm::outs() << GetFilePath("libgcc.a", TC) << "\n";
693     return false;
694   }
695 
696   if (C.getArgs().hasArg(options::OPT_print_multi_lib)) {
697     // FIXME: We need tool chain support for this.
698     llvm::outs() << ".;\n";
699 
700     switch (C.getDefaultToolChain().getTriple().getArch()) {
701     default:
702       break;
703 
704     case llvm::Triple::x86_64:
705       llvm::outs() << "x86_64;@m64" << "\n";
706       break;
707 
708     case llvm::Triple::ppc64:
709       llvm::outs() << "ppc64;@m64" << "\n";
710       break;
711     }
712     return false;
713   }
714 
715   // FIXME: What is the difference between print-multi-directory and
716   // print-multi-os-directory?
717   if (C.getArgs().hasArg(options::OPT_print_multi_directory) ||
718       C.getArgs().hasArg(options::OPT_print_multi_os_directory)) {
719     switch (C.getDefaultToolChain().getTriple().getArch()) {
720     default:
721     case llvm::Triple::x86:
722     case llvm::Triple::ppc:
723       llvm::outs() << "." << "\n";
724       break;
725 
726     case llvm::Triple::x86_64:
727       llvm::outs() << "x86_64" << "\n";
728       break;
729 
730     case llvm::Triple::ppc64:
731       llvm::outs() << "ppc64" << "\n";
732       break;
733     }
734     return false;
735   }
736 
737   return true;
738 }
739 
740 static unsigned PrintActions1(const Compilation &C, Action *A,
741                               std::map<Action*, unsigned> &Ids) {
742   if (Ids.count(A))
743     return Ids[A];
744 
745   std::string str;
746   llvm::raw_string_ostream os(str);
747 
748   os << Action::getClassName(A->getKind()) << ", ";
749   if (InputAction *IA = dyn_cast<InputAction>(A)) {
750     os << "\"" << IA->getInputArg().getValue() << "\"";
751   } else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) {
752     os << '"' << BIA->getArchName() << '"'
753        << ", {" << PrintActions1(C, *BIA->begin(), Ids) << "}";
754   } else {
755     os << "{";
756     for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) {
757       os << PrintActions1(C, *it, Ids);
758       ++it;
759       if (it != ie)
760         os << ", ";
761     }
762     os << "}";
763   }
764 
765   unsigned Id = Ids.size();
766   Ids[A] = Id;
767   llvm::errs() << Id << ": " << os.str() << ", "
768                << types::getTypeName(A->getType()) << "\n";
769 
770   return Id;
771 }
772 
773 void Driver::PrintActions(const Compilation &C) const {
774   std::map<Action*, unsigned> Ids;
775   for (ActionList::const_iterator it = C.getActions().begin(),
776          ie = C.getActions().end(); it != ie; ++it)
777     PrintActions1(C, *it, Ids);
778 }
779 
780 /// \brief Check whether the given input tree contains any compilation or
781 /// assembly actions.
782 static bool ContainsCompileOrAssembleAction(const Action *A) {
783   if (isa<CompileJobAction>(A) || isa<AssembleJobAction>(A))
784     return true;
785 
786   for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it)
787     if (ContainsCompileOrAssembleAction(*it))
788       return true;
789 
790   return false;
791 }
792 
793 void Driver::BuildUniversalActions(const ToolChain &TC,
794                                    const DerivedArgList &Args,
795                                    const InputList &BAInputs,
796                                    ActionList &Actions) const {
797   llvm::PrettyStackTraceString CrashInfo("Building universal build actions");
798   // Collect the list of architectures. Duplicates are allowed, but should only
799   // be handled once (in the order seen).
800   llvm::StringSet<> ArchNames;
801   SmallVector<const char *, 4> Archs;
802   for (ArgList::const_iterator it = Args.begin(), ie = Args.end();
803        it != ie; ++it) {
804     Arg *A = *it;
805 
806     if (A->getOption().matches(options::OPT_arch)) {
807       // Validate the option here; we don't save the type here because its
808       // particular spelling may participate in other driver choices.
809       llvm::Triple::ArchType Arch =
810         tools::darwin::getArchTypeForDarwinArchName(A->getValue());
811       if (Arch == llvm::Triple::UnknownArch) {
812         Diag(clang::diag::err_drv_invalid_arch_name)
813           << A->getAsString(Args);
814         continue;
815       }
816 
817       A->claim();
818       if (ArchNames.insert(A->getValue()))
819         Archs.push_back(A->getValue());
820     }
821   }
822 
823   // When there is no explicit arch for this platform, make sure we still bind
824   // the architecture (to the default) so that -Xarch_ is handled correctly.
825   if (!Archs.size())
826     Archs.push_back(Args.MakeArgString(TC.getDefaultUniversalArchName()));
827 
828   // FIXME: We killed off some others but these aren't yet detected in a
829   // functional manner. If we added information to jobs about which "auxiliary"
830   // files they wrote then we could detect the conflict these cause downstream.
831   if (Archs.size() > 1) {
832     // No recovery needed, the point of this is just to prevent
833     // overwriting the same files.
834     if (const Arg *A = Args.getLastArg(options::OPT_save_temps))
835       Diag(clang::diag::err_drv_invalid_opt_with_multiple_archs)
836         << A->getAsString(Args);
837   }
838 
839   ActionList SingleActions;
840   BuildActions(TC, Args, BAInputs, SingleActions);
841 
842   // Add in arch bindings for every top level action, as well as lipo and
843   // dsymutil steps if needed.
844   for (unsigned i = 0, e = SingleActions.size(); i != e; ++i) {
845     Action *Act = SingleActions[i];
846 
847     // Make sure we can lipo this kind of output. If not (and it is an actual
848     // output) then we disallow, since we can't create an output file with the
849     // right name without overwriting it. We could remove this oddity by just
850     // changing the output names to include the arch, which would also fix
851     // -save-temps. Compatibility wins for now.
852 
853     if (Archs.size() > 1 && !types::canLipoType(Act->getType()))
854       Diag(clang::diag::err_drv_invalid_output_with_multiple_archs)
855         << types::getTypeName(Act->getType());
856 
857     ActionList Inputs;
858     for (unsigned i = 0, e = Archs.size(); i != e; ++i) {
859       Inputs.push_back(new BindArchAction(Act, Archs[i]));
860       if (i != 0)
861         Inputs.back()->setOwnsInputs(false);
862     }
863 
864     // Lipo if necessary, we do it this way because we need to set the arch flag
865     // so that -Xarch_ gets overwritten.
866     if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing)
867       Actions.append(Inputs.begin(), Inputs.end());
868     else
869       Actions.push_back(new LipoJobAction(Inputs, Act->getType()));
870 
871     // Handle debug info queries.
872     Arg *A = Args.getLastArg(options::OPT_g_Group);
873     if (A && !A->getOption().matches(options::OPT_g0) &&
874         !A->getOption().matches(options::OPT_gstabs) &&
875         ContainsCompileOrAssembleAction(Actions.back())) {
876 
877       // Add a 'dsymutil' step if necessary, when debug info is enabled and we
878       // have a compile input. We need to run 'dsymutil' ourselves in such cases
879       // because the debug info will refer to a temporary object file which
880       // will be removed at the end of the compilation process.
881       if (Act->getType() == types::TY_Image) {
882         ActionList Inputs;
883         Inputs.push_back(Actions.back());
884         Actions.pop_back();
885         Actions.push_back(new DsymutilJobAction(Inputs, types::TY_dSYM));
886       }
887 
888       // Verify the output (debug information only) if we passed '-verify'.
889       if (Args.hasArg(options::OPT_verify)) {
890         ActionList VerifyInputs;
891         VerifyInputs.push_back(Actions.back());
892         Actions.pop_back();
893         Actions.push_back(new VerifyJobAction(VerifyInputs,
894                                               types::TY_Nothing));
895       }
896     }
897   }
898 }
899 
900 // Construct a the list of inputs and their types.
901 void Driver::BuildInputs(const ToolChain &TC, const DerivedArgList &Args,
902                          InputList &Inputs) const {
903   // Track the current user specified (-x) input. We also explicitly track the
904   // argument used to set the type; we only want to claim the type when we
905   // actually use it, so we warn about unused -x arguments.
906   types::ID InputType = types::TY_Nothing;
907   Arg *InputTypeArg = 0;
908 
909   for (ArgList::const_iterator it = Args.begin(), ie = Args.end();
910        it != ie; ++it) {
911     Arg *A = *it;
912 
913     if (A->getOption().getKind() == Option::InputClass) {
914       const char *Value = A->getValue();
915       types::ID Ty = types::TY_INVALID;
916 
917       // Infer the input type if necessary.
918       if (InputType == types::TY_Nothing) {
919         // If there was an explicit arg for this, claim it.
920         if (InputTypeArg)
921           InputTypeArg->claim();
922 
923         // stdin must be handled specially.
924         if (memcmp(Value, "-", 2) == 0) {
925           // If running with -E, treat as a C input (this changes the builtin
926           // macros, for example). This may be overridden by -ObjC below.
927           //
928           // Otherwise emit an error but still use a valid type to avoid
929           // spurious errors (e.g., no inputs).
930           if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP)
931             Diag(clang::diag::err_drv_unknown_stdin_type);
932           Ty = types::TY_C;
933         } else {
934           // Otherwise lookup by extension.
935           // Fallback is C if invoked as C preprocessor or Object otherwise.
936           // We use a host hook here because Darwin at least has its own
937           // idea of what .s is.
938           if (const char *Ext = strrchr(Value, '.'))
939             Ty = TC.LookupTypeForExtension(Ext + 1);
940 
941           if (Ty == types::TY_INVALID) {
942             if (CCCIsCPP)
943               Ty = types::TY_C;
944             else
945               Ty = types::TY_Object;
946           }
947 
948           // If the driver is invoked as C++ compiler (like clang++ or c++) it
949           // should autodetect some input files as C++ for g++ compatibility.
950           if (CCCIsCXX) {
951             types::ID OldTy = Ty;
952             Ty = types::lookupCXXTypeForCType(Ty);
953 
954             if (Ty != OldTy)
955               Diag(clang::diag::warn_drv_treating_input_as_cxx)
956                 << getTypeName(OldTy) << getTypeName(Ty);
957           }
958         }
959 
960         // -ObjC and -ObjC++ override the default language, but only for "source
961         // files". We just treat everything that isn't a linker input as a
962         // source file.
963         //
964         // FIXME: Clean this up if we move the phase sequence into the type.
965         if (Ty != types::TY_Object) {
966           if (Args.hasArg(options::OPT_ObjC))
967             Ty = types::TY_ObjC;
968           else if (Args.hasArg(options::OPT_ObjCXX))
969             Ty = types::TY_ObjCXX;
970         }
971       } else {
972         assert(InputTypeArg && "InputType set w/o InputTypeArg");
973         InputTypeArg->claim();
974         Ty = InputType;
975       }
976 
977       // Check that the file exists, if enabled.
978       if (CheckInputsExist && memcmp(Value, "-", 2) != 0) {
979         SmallString<64> Path(Value);
980         if (Arg *WorkDir = Args.getLastArg(options::OPT_working_directory)) {
981           if (!llvm::sys::path::is_absolute(Path.str())) {
982             SmallString<64> Directory(WorkDir->getValue());
983             llvm::sys::path::append(Directory, Value);
984             Path.assign(Directory);
985           }
986         }
987 
988         bool exists = false;
989         if (llvm::sys::fs::exists(Path.c_str(), exists) || !exists)
990           Diag(clang::diag::err_drv_no_such_file) << Path.str();
991         else
992           Inputs.push_back(std::make_pair(Ty, A));
993       } else
994         Inputs.push_back(std::make_pair(Ty, A));
995 
996     } else if (A->getOption().hasFlag(options::LinkerInput)) {
997       // Just treat as object type, we could make a special type for this if
998       // necessary.
999       Inputs.push_back(std::make_pair(types::TY_Object, A));
1000 
1001     } else if (A->getOption().matches(options::OPT_x)) {
1002       InputTypeArg = A;
1003       InputType = types::lookupTypeForTypeSpecifier(A->getValue());
1004       A->claim();
1005 
1006       // Follow gcc behavior and treat as linker input for invalid -x
1007       // options. Its not clear why we shouldn't just revert to unknown; but
1008       // this isn't very important, we might as well be bug compatible.
1009       if (!InputType) {
1010         Diag(clang::diag::err_drv_unknown_language) << A->getValue();
1011         InputType = types::TY_Object;
1012       }
1013     }
1014   }
1015   if (CCCIsCPP && Inputs.empty()) {
1016     // If called as standalone preprocessor, stdin is processed
1017     // if no other input is present.
1018     unsigned Index = Args.getBaseArgs().MakeIndex("-");
1019     Arg *A = Opts->ParseOneArg(Args, Index);
1020     A->claim();
1021     Inputs.push_back(std::make_pair(types::TY_C, A));
1022   }
1023 }
1024 
1025 void Driver::BuildActions(const ToolChain &TC, const DerivedArgList &Args,
1026                           const InputList &Inputs, ActionList &Actions) const {
1027   llvm::PrettyStackTraceString CrashInfo("Building compilation actions");
1028 
1029   if (!SuppressMissingInputWarning && Inputs.empty()) {
1030     Diag(clang::diag::err_drv_no_input_files);
1031     return;
1032   }
1033 
1034   Arg *FinalPhaseArg;
1035   phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg);
1036 
1037   // Reject -Z* at the top level, these options should never have been exposed
1038   // by gcc.
1039   if (Arg *A = Args.getLastArg(options::OPT_Z_Joined))
1040     Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args);
1041 
1042   // Construct the actions to perform.
1043   ActionList LinkerInputs;
1044   ActionList SplitInputs;
1045   llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PL;
1046   for (unsigned i = 0, e = Inputs.size(); i != e; ++i) {
1047     types::ID InputType = Inputs[i].first;
1048     const Arg *InputArg = Inputs[i].second;
1049 
1050     PL.clear();
1051     types::getCompilationPhases(InputType, PL);
1052 
1053     // If the first step comes after the final phase we are doing as part of
1054     // this compilation, warn the user about it.
1055     phases::ID InitialPhase = PL[0];
1056     if (InitialPhase > FinalPhase) {
1057       // Claim here to avoid the more general unused warning.
1058       InputArg->claim();
1059 
1060       // Suppress all unused style warnings with -Qunused-arguments
1061       if (Args.hasArg(options::OPT_Qunused_arguments))
1062         continue;
1063 
1064       // Special case when final phase determined by binary name, rather than
1065       // by a command-line argument with a corresponding Arg.
1066       if (CCCIsCPP)
1067         Diag(clang::diag::warn_drv_input_file_unused_by_cpp)
1068           << InputArg->getAsString(Args)
1069           << getPhaseName(InitialPhase);
1070       // Special case '-E' warning on a previously preprocessed file to make
1071       // more sense.
1072       else if (InitialPhase == phases::Compile &&
1073                FinalPhase == phases::Preprocess &&
1074                getPreprocessedType(InputType) == types::TY_INVALID)
1075         Diag(clang::diag::warn_drv_preprocessed_input_file_unused)
1076           << InputArg->getAsString(Args)
1077           << !!FinalPhaseArg
1078           << FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "";
1079       else
1080         Diag(clang::diag::warn_drv_input_file_unused)
1081           << InputArg->getAsString(Args)
1082           << getPhaseName(InitialPhase)
1083           << !!FinalPhaseArg
1084           << FinalPhaseArg ? FinalPhaseArg->getOption().getName() : "";
1085       continue;
1086     }
1087 
1088     // Build the pipeline for this file.
1089     OwningPtr<Action> Current(new InputAction(*InputArg, InputType));
1090     for (llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases>::iterator
1091            i = PL.begin(), e = PL.end(); i != e; ++i) {
1092       phases::ID Phase = *i;
1093 
1094       // We are done if this step is past what the user requested.
1095       if (Phase > FinalPhase)
1096         break;
1097 
1098       // Queue linker inputs.
1099       if (Phase == phases::Link) {
1100         assert((i + 1) == e && "linking must be final compilation step.");
1101         LinkerInputs.push_back(Current.take());
1102         break;
1103       }
1104 
1105       // Some types skip the assembler phase (e.g., llvm-bc), but we can't
1106       // encode this in the steps because the intermediate type depends on
1107       // arguments. Just special case here.
1108       if (Phase == phases::Assemble && Current->getType() != types::TY_PP_Asm)
1109         continue;
1110 
1111       // Otherwise construct the appropriate action.
1112       Current.reset(ConstructPhaseAction(Args, Phase, Current.take()));
1113       if (Current->getType() == types::TY_Nothing)
1114         break;
1115     }
1116 
1117     // If we ended with something, add to the output list.
1118     if (Current)
1119       Actions.push_back(Current.take());
1120   }
1121 
1122   // Add a link action if necessary.
1123   if (!LinkerInputs.empty())
1124     Actions.push_back(new LinkJobAction(LinkerInputs, types::TY_Image));
1125 
1126   // If we are linking, claim any options which are obviously only used for
1127   // compilation.
1128   if (FinalPhase == phases::Link && PL.size() == 1)
1129     Args.ClaimAllArgs(options::OPT_CompileOnly_Group);
1130 }
1131 
1132 Action *Driver::ConstructPhaseAction(const ArgList &Args, phases::ID Phase,
1133                                      Action *Input) const {
1134   llvm::PrettyStackTraceString CrashInfo("Constructing phase actions");
1135   // Build the appropriate action.
1136   switch (Phase) {
1137   case phases::Link: llvm_unreachable("link action invalid here.");
1138   case phases::Preprocess: {
1139     types::ID OutputTy;
1140     // -{M, MM} alter the output type.
1141     if (Args.hasArg(options::OPT_M, options::OPT_MM)) {
1142       OutputTy = types::TY_Dependencies;
1143     } else {
1144       OutputTy = Input->getType();
1145       if (!Args.hasFlag(options::OPT_frewrite_includes,
1146                         options::OPT_fno_rewrite_includes, false))
1147         OutputTy = types::getPreprocessedType(OutputTy);
1148       assert(OutputTy != types::TY_INVALID &&
1149              "Cannot preprocess this input type!");
1150     }
1151     return new PreprocessJobAction(Input, OutputTy);
1152   }
1153   case phases::Precompile: {
1154     types::ID OutputTy = types::TY_PCH;
1155     if (Args.hasArg(options::OPT_fsyntax_only)) {
1156       // Syntax checks should not emit a PCH file
1157       OutputTy = types::TY_Nothing;
1158     }
1159     return new PrecompileJobAction(Input, OutputTy);
1160   }
1161   case phases::Compile: {
1162     if (Args.hasArg(options::OPT_fsyntax_only)) {
1163       return new CompileJobAction(Input, types::TY_Nothing);
1164     } else if (Args.hasArg(options::OPT_rewrite_objc)) {
1165       return new CompileJobAction(Input, types::TY_RewrittenObjC);
1166     } else if (Args.hasArg(options::OPT_rewrite_legacy_objc)) {
1167       return new CompileJobAction(Input, types::TY_RewrittenLegacyObjC);
1168     } else if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto)) {
1169       return new AnalyzeJobAction(Input, types::TY_Plist);
1170     } else if (Args.hasArg(options::OPT__migrate)) {
1171       return new MigrateJobAction(Input, types::TY_Remap);
1172     } else if (Args.hasArg(options::OPT_emit_ast)) {
1173       return new CompileJobAction(Input, types::TY_AST);
1174     } else if (Args.hasArg(options::OPT_module_file_info)) {
1175       return new CompileJobAction(Input, types::TY_ModuleFile);
1176     } else if (IsUsingLTO(Args)) {
1177       types::ID Output =
1178         Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC;
1179       return new CompileJobAction(Input, Output);
1180     } else {
1181       return new CompileJobAction(Input, types::TY_PP_Asm);
1182     }
1183   }
1184   case phases::Assemble:
1185     return new AssembleJobAction(Input, types::TY_Object);
1186   }
1187 
1188   llvm_unreachable("invalid phase in ConstructPhaseAction");
1189 }
1190 
1191 bool Driver::IsUsingLTO(const ArgList &Args) const {
1192   // Check for -emit-llvm or -flto.
1193   if (Args.hasArg(options::OPT_emit_llvm) ||
1194       Args.hasFlag(options::OPT_flto, options::OPT_fno_lto, false))
1195     return true;
1196 
1197   // Check for -O4.
1198   if (const Arg *A = Args.getLastArg(options::OPT_O_Group))
1199       return A->getOption().matches(options::OPT_O4);
1200 
1201   return false;
1202 }
1203 
1204 void Driver::BuildJobs(Compilation &C) const {
1205   llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
1206 
1207   Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o);
1208 
1209   // It is an error to provide a -o option if we are making multiple output
1210   // files.
1211   if (FinalOutput) {
1212     unsigned NumOutputs = 0;
1213     for (ActionList::const_iterator it = C.getActions().begin(),
1214            ie = C.getActions().end(); it != ie; ++it)
1215       if ((*it)->getType() != types::TY_Nothing)
1216         ++NumOutputs;
1217 
1218     if (NumOutputs > 1) {
1219       Diag(clang::diag::err_drv_output_argument_with_multiple_files);
1220       FinalOutput = 0;
1221     }
1222   }
1223 
1224   for (ActionList::const_iterator it = C.getActions().begin(),
1225          ie = C.getActions().end(); it != ie; ++it) {
1226     Action *A = *it;
1227 
1228     // If we are linking an image for multiple archs then the linker wants
1229     // -arch_multiple and -final_output <final image name>. Unfortunately, this
1230     // doesn't fit in cleanly because we have to pass this information down.
1231     //
1232     // FIXME: This is a hack; find a cleaner way to integrate this into the
1233     // process.
1234     const char *LinkingOutput = 0;
1235     if (isa<LipoJobAction>(A)) {
1236       if (FinalOutput)
1237         LinkingOutput = FinalOutput->getValue();
1238       else
1239         LinkingOutput = DefaultImageName.c_str();
1240     }
1241 
1242     InputInfo II;
1243     BuildJobsForAction(C, A, &C.getDefaultToolChain(),
1244                        /*BoundArch*/0,
1245                        /*AtTopLevel*/ true,
1246                        /*LinkingOutput*/ LinkingOutput,
1247                        II);
1248   }
1249 
1250   // If the user passed -Qunused-arguments or there were errors, don't warn
1251   // about any unused arguments.
1252   if (Diags.hasErrorOccurred() ||
1253       C.getArgs().hasArg(options::OPT_Qunused_arguments))
1254     return;
1255 
1256   // Claim -### here.
1257   (void) C.getArgs().hasArg(options::OPT__HASH_HASH_HASH);
1258 
1259   for (ArgList::const_iterator it = C.getArgs().begin(), ie = C.getArgs().end();
1260        it != ie; ++it) {
1261     Arg *A = *it;
1262 
1263     // FIXME: It would be nice to be able to send the argument to the
1264     // DiagnosticsEngine, so that extra values, position, and so on could be
1265     // printed.
1266     if (!A->isClaimed()) {
1267       if (A->getOption().hasFlag(options::NoArgumentUnused))
1268         continue;
1269 
1270       // Suppress the warning automatically if this is just a flag, and it is an
1271       // instance of an argument we already claimed.
1272       const Option &Opt = A->getOption();
1273       if (Opt.getKind() == Option::FlagClass) {
1274         bool DuplicateClaimed = false;
1275 
1276         for (arg_iterator it = C.getArgs().filtered_begin(&Opt),
1277                ie = C.getArgs().filtered_end(); it != ie; ++it) {
1278           if ((*it)->isClaimed()) {
1279             DuplicateClaimed = true;
1280             break;
1281           }
1282         }
1283 
1284         if (DuplicateClaimed)
1285           continue;
1286       }
1287 
1288       Diag(clang::diag::warn_drv_unused_argument)
1289         << A->getAsString(C.getArgs());
1290     }
1291   }
1292 }
1293 
1294 static const Tool *SelectToolForJob(Compilation &C, const ToolChain *TC,
1295                                     const JobAction *JA,
1296                                     const ActionList *&Inputs) {
1297   const Tool *ToolForJob = 0;
1298 
1299   // See if we should look for a compiler with an integrated assembler. We match
1300   // bottom up, so what we are actually looking for is an assembler job with a
1301   // compiler input.
1302 
1303   if (TC->useIntegratedAs() &&
1304       !C.getArgs().hasArg(options::OPT_save_temps) &&
1305       isa<AssembleJobAction>(JA) &&
1306       Inputs->size() == 1 && isa<CompileJobAction>(*Inputs->begin())) {
1307     const Tool *Compiler =
1308       TC->SelectTool(cast<JobAction>(**Inputs->begin()));
1309     if (!Compiler)
1310       return NULL;
1311     if (Compiler->hasIntegratedAssembler()) {
1312       Inputs = &(*Inputs)[0]->getInputs();
1313       ToolForJob = Compiler;
1314     }
1315   }
1316 
1317   // Otherwise use the tool for the current job.
1318   if (!ToolForJob)
1319     ToolForJob = TC->SelectTool(*JA);
1320 
1321   // See if we should use an integrated preprocessor. We do so when we have
1322   // exactly one input, since this is the only use case we care about
1323   // (irrelevant since we don't support combine yet).
1324   if (Inputs->size() == 1 && isa<PreprocessJobAction>(*Inputs->begin()) &&
1325       !C.getArgs().hasArg(options::OPT_no_integrated_cpp) &&
1326       !C.getArgs().hasArg(options::OPT_traditional_cpp) &&
1327       !C.getArgs().hasArg(options::OPT_save_temps) &&
1328       !C.getArgs().hasArg(options::OPT_rewrite_objc) &&
1329       ToolForJob->hasIntegratedCPP())
1330     Inputs = &(*Inputs)[0]->getInputs();
1331 
1332   return ToolForJob;
1333 }
1334 
1335 void Driver::BuildJobsForAction(Compilation &C,
1336                                 const Action *A,
1337                                 const ToolChain *TC,
1338                                 const char *BoundArch,
1339                                 bool AtTopLevel,
1340                                 const char *LinkingOutput,
1341                                 InputInfo &Result) const {
1342   llvm::PrettyStackTraceString CrashInfo("Building compilation jobs");
1343 
1344   if (const InputAction *IA = dyn_cast<InputAction>(A)) {
1345     // FIXME: It would be nice to not claim this here; maybe the old scheme of
1346     // just using Args was better?
1347     const Arg &Input = IA->getInputArg();
1348     Input.claim();
1349     if (Input.getOption().matches(options::OPT_INPUT)) {
1350       const char *Name = Input.getValue();
1351       Result = InputInfo(Name, A->getType(), Name);
1352     } else
1353       Result = InputInfo(&Input, A->getType(), "");
1354     return;
1355   }
1356 
1357   if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) {
1358     const ToolChain *TC;
1359     const char *ArchName = BAA->getArchName();
1360 
1361     if (ArchName)
1362       TC = &getToolChain(C.getArgs(), ArchName);
1363     else
1364       TC = &C.getDefaultToolChain();
1365 
1366     BuildJobsForAction(C, *BAA->begin(), TC, BAA->getArchName(),
1367                        AtTopLevel, LinkingOutput, Result);
1368     return;
1369   }
1370 
1371   const ActionList *Inputs = &A->getInputs();
1372 
1373   const JobAction *JA = cast<JobAction>(A);
1374   const Tool *T = SelectToolForJob(C, TC, JA, Inputs);
1375   if (!T)
1376     return;
1377 
1378   // Only use pipes when there is exactly one input.
1379   InputInfoList InputInfos;
1380   for (ActionList::const_iterator it = Inputs->begin(), ie = Inputs->end();
1381        it != ie; ++it) {
1382     // Treat dsymutil and verify sub-jobs as being at the top-level too, they
1383     // shouldn't get temporary output names.
1384     // FIXME: Clean this up.
1385     bool SubJobAtTopLevel = false;
1386     if (AtTopLevel && (isa<DsymutilJobAction>(A) || isa<VerifyJobAction>(A)))
1387       SubJobAtTopLevel = true;
1388 
1389     InputInfo II;
1390     BuildJobsForAction(C, *it, TC, BoundArch,
1391                        SubJobAtTopLevel, LinkingOutput, II);
1392     InputInfos.push_back(II);
1393   }
1394 
1395   // Always use the first input as the base input.
1396   const char *BaseInput = InputInfos[0].getBaseInput();
1397 
1398   // ... except dsymutil actions, which use their actual input as the base
1399   // input.
1400   if (JA->getType() == types::TY_dSYM)
1401     BaseInput = InputInfos[0].getFilename();
1402 
1403   // Determine the place to write output to, if any.
1404   if (JA->getType() == types::TY_Nothing)
1405     Result = InputInfo(A->getType(), BaseInput);
1406   else
1407     Result = InputInfo(GetNamedOutputPath(C, *JA, BaseInput, AtTopLevel),
1408                        A->getType(), BaseInput);
1409 
1410   if (CCCPrintBindings && !CCGenDiagnostics) {
1411     llvm::errs() << "# \"" << T->getToolChain().getTripleString() << '"'
1412                  << " - \"" << T->getName() << "\", inputs: [";
1413     for (unsigned i = 0, e = InputInfos.size(); i != e; ++i) {
1414       llvm::errs() << InputInfos[i].getAsString();
1415       if (i + 1 != e)
1416         llvm::errs() << ", ";
1417     }
1418     llvm::errs() << "], output: " << Result.getAsString() << "\n";
1419   } else {
1420     T->ConstructJob(C, *JA, Result, InputInfos,
1421                     C.getArgsForToolChain(TC, BoundArch), LinkingOutput);
1422   }
1423 }
1424 
1425 const char *Driver::GetNamedOutputPath(Compilation &C,
1426                                        const JobAction &JA,
1427                                        const char *BaseInput,
1428                                        bool AtTopLevel) const {
1429   llvm::PrettyStackTraceString CrashInfo("Computing output path");
1430   // Output to a user requested destination?
1431   if (AtTopLevel && !isa<DsymutilJobAction>(JA) &&
1432       !isa<VerifyJobAction>(JA)) {
1433     if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o))
1434       return C.addResultFile(FinalOutput->getValue(), &JA);
1435   }
1436 
1437   // Default to writing to stdout?
1438   if (AtTopLevel && !CCGenDiagnostics &&
1439       (isa<PreprocessJobAction>(JA) || JA.getType() == types::TY_ModuleFile))
1440     return "-";
1441 
1442   // Output to a temporary file?
1443   if ((!AtTopLevel && !C.getArgs().hasArg(options::OPT_save_temps)) ||
1444       CCGenDiagnostics) {
1445     StringRef Name = llvm::sys::path::filename(BaseInput);
1446     std::pair<StringRef, StringRef> Split = Name.split('.');
1447     std::string TmpName =
1448       GetTemporaryPath(Split.first, types::getTypeTempSuffix(JA.getType()));
1449     return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()));
1450   }
1451 
1452   SmallString<128> BasePath(BaseInput);
1453   StringRef BaseName;
1454 
1455   // Dsymutil actions should use the full path.
1456   if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA))
1457     BaseName = BasePath;
1458   else
1459     BaseName = llvm::sys::path::filename(BasePath);
1460 
1461   // Determine what the derived output name should be.
1462   const char *NamedOutput;
1463   if (JA.getType() == types::TY_Image) {
1464     NamedOutput = DefaultImageName.c_str();
1465   } else {
1466     const char *Suffix = types::getTypeTempSuffix(JA.getType());
1467     assert(Suffix && "All types used for output should have a suffix.");
1468 
1469     std::string::size_type End = std::string::npos;
1470     if (!types::appendSuffixForType(JA.getType()))
1471       End = BaseName.rfind('.');
1472     std::string Suffixed(BaseName.substr(0, End));
1473     Suffixed += '.';
1474     Suffixed += Suffix;
1475     NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str());
1476   }
1477 
1478   // If we're saving temps and the temp file conflicts with the input file,
1479   // then avoid overwriting input file.
1480   if (!AtTopLevel && C.getArgs().hasArg(options::OPT_save_temps) &&
1481       NamedOutput == BaseName) {
1482 
1483     bool SameFile = false;
1484     SmallString<256> Result;
1485     llvm::sys::fs::current_path(Result);
1486     llvm::sys::path::append(Result, BaseName);
1487     llvm::sys::fs::equivalent(BaseInput, Result.c_str(), SameFile);
1488     // Must share the same path to conflict.
1489     if (SameFile) {
1490       StringRef Name = llvm::sys::path::filename(BaseInput);
1491       std::pair<StringRef, StringRef> Split = Name.split('.');
1492       std::string TmpName =
1493         GetTemporaryPath(Split.first, types::getTypeTempSuffix(JA.getType()));
1494       return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()));
1495     }
1496   }
1497 
1498   // As an annoying special case, PCH generation doesn't strip the pathname.
1499   if (JA.getType() == types::TY_PCH) {
1500     llvm::sys::path::remove_filename(BasePath);
1501     if (BasePath.empty())
1502       BasePath = NamedOutput;
1503     else
1504       llvm::sys::path::append(BasePath, NamedOutput);
1505     return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str()), &JA);
1506   } else {
1507     return C.addResultFile(NamedOutput, &JA);
1508   }
1509 }
1510 
1511 std::string Driver::GetFilePath(const char *Name, const ToolChain &TC) const {
1512   // Respect a limited subset of the '-Bprefix' functionality in GCC by
1513   // attempting to use this prefix when looking for file paths.
1514   for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(),
1515        ie = PrefixDirs.end(); it != ie; ++it) {
1516     std::string Dir(*it);
1517     if (Dir.empty())
1518       continue;
1519     if (Dir[0] == '=')
1520       Dir = SysRoot + Dir.substr(1);
1521     llvm::sys::Path P(Dir);
1522     P.appendComponent(Name);
1523     bool Exists;
1524     if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
1525       return P.str();
1526   }
1527 
1528   llvm::sys::Path P(ResourceDir);
1529   P.appendComponent(Name);
1530   bool Exists;
1531   if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
1532     return P.str();
1533 
1534   const ToolChain::path_list &List = TC.getFilePaths();
1535   for (ToolChain::path_list::const_iterator
1536          it = List.begin(), ie = List.end(); it != ie; ++it) {
1537     std::string Dir(*it);
1538     if (Dir.empty())
1539       continue;
1540     if (Dir[0] == '=')
1541       Dir = SysRoot + Dir.substr(1);
1542     llvm::sys::Path P(Dir);
1543     P.appendComponent(Name);
1544     bool Exists;
1545     if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
1546       return P.str();
1547   }
1548 
1549   return Name;
1550 }
1551 
1552 std::string Driver::GetProgramPath(const char *Name,
1553                                    const ToolChain &TC) const {
1554   // FIXME: Needs a better variable than DefaultTargetTriple
1555   std::string TargetSpecificExecutable(DefaultTargetTriple + "-" + Name);
1556   // Respect a limited subset of the '-Bprefix' functionality in GCC by
1557   // attempting to use this prefix when looking for program paths.
1558   for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(),
1559        ie = PrefixDirs.end(); it != ie; ++it) {
1560     bool IsDirectory;
1561     if (!llvm::sys::fs::is_directory(*it, IsDirectory) && IsDirectory) {
1562       llvm::sys::Path P(*it);
1563       P.appendComponent(TargetSpecificExecutable);
1564       if (P.canExecute()) return P.str();
1565       P.eraseComponent();
1566       P.appendComponent(Name);
1567       if (P.canExecute()) return P.str();
1568     } else {
1569       llvm::sys::Path P(*it + Name);
1570       if (P.canExecute()) return P.str();
1571     }
1572   }
1573 
1574   const ToolChain::path_list &List = TC.getProgramPaths();
1575   for (ToolChain::path_list::const_iterator
1576          it = List.begin(), ie = List.end(); it != ie; ++it) {
1577     llvm::sys::Path P(*it);
1578     P.appendComponent(TargetSpecificExecutable);
1579     if (P.canExecute()) return P.str();
1580     P.eraseComponent();
1581     P.appendComponent(Name);
1582     if (P.canExecute()) return P.str();
1583   }
1584 
1585   // If all else failed, search the path.
1586   llvm::sys::Path
1587       P(llvm::sys::Program::FindProgramByName(TargetSpecificExecutable));
1588   if (!P.empty())
1589     return P.str();
1590 
1591   P = llvm::sys::Path(llvm::sys::Program::FindProgramByName(Name));
1592   if (!P.empty())
1593     return P.str();
1594 
1595   return Name;
1596 }
1597 
1598 std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix)
1599   const {
1600   // FIXME: This is lame; sys::Path should provide this function (in particular,
1601   // it should know how to find the temporary files dir).
1602   std::string Error;
1603   const char *TmpDir = ::getenv("TMPDIR");
1604   if (!TmpDir)
1605     TmpDir = ::getenv("TEMP");
1606   if (!TmpDir)
1607     TmpDir = ::getenv("TMP");
1608   if (!TmpDir)
1609     TmpDir = "/tmp";
1610   llvm::sys::Path P(TmpDir);
1611   P.appendComponent(Prefix);
1612   if (P.makeUnique(false, &Error)) {
1613     Diag(clang::diag::err_unable_to_make_temp) << Error;
1614     return "";
1615   }
1616 
1617   // FIXME: Grumble, makeUnique sometimes leaves the file around!?  PR3837.
1618   P.eraseFromDisk(false, 0);
1619 
1620   if (Suffix)
1621     P.appendSuffix(Suffix);
1622   return P.str();
1623 }
1624 
1625 /// \brief Compute target triple from args.
1626 ///
1627 /// This routine provides the logic to compute a target triple from various
1628 /// args passed to the driver and the default triple string.
1629 static llvm::Triple computeTargetTriple(StringRef DefaultTargetTriple,
1630                                         const ArgList &Args,
1631                                         StringRef DarwinArchName) {
1632   // FIXME: Already done in Compilation *Driver::BuildCompilation
1633   if (const Arg *A = Args.getLastArg(options::OPT_target))
1634     DefaultTargetTriple = A->getValue();
1635 
1636   llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple));
1637 
1638   // Handle Darwin-specific options available here.
1639   if (Target.isOSDarwin()) {
1640     // If an explict Darwin arch name is given, that trumps all.
1641     if (!DarwinArchName.empty()) {
1642       Target.setArch(
1643         tools::darwin::getArchTypeForDarwinArchName(DarwinArchName));
1644       return Target;
1645     }
1646 
1647     // Handle the Darwin '-arch' flag.
1648     if (Arg *A = Args.getLastArg(options::OPT_arch)) {
1649       llvm::Triple::ArchType DarwinArch
1650         = tools::darwin::getArchTypeForDarwinArchName(A->getValue());
1651       if (DarwinArch != llvm::Triple::UnknownArch)
1652         Target.setArch(DarwinArch);
1653     }
1654   }
1655 
1656   // Handle pseudo-target flags '-EL' and '-EB'.
1657   if (Arg *A = Args.getLastArg(options::OPT_EL, options::OPT_EB)) {
1658     if (A->getOption().matches(options::OPT_EL)) {
1659       if (Target.getArch() == llvm::Triple::mips)
1660         Target.setArch(llvm::Triple::mipsel);
1661       else if (Target.getArch() == llvm::Triple::mips64)
1662         Target.setArch(llvm::Triple::mips64el);
1663     } else {
1664       if (Target.getArch() == llvm::Triple::mipsel)
1665         Target.setArch(llvm::Triple::mips);
1666       else if (Target.getArch() == llvm::Triple::mips64el)
1667         Target.setArch(llvm::Triple::mips64);
1668     }
1669   }
1670 
1671   // Skip further flag support on OSes which don't support '-m32' or '-m64'.
1672   if (Target.getArchName() == "tce" ||
1673       Target.getOS() == llvm::Triple::AuroraUX ||
1674       Target.getOS() == llvm::Triple::Minix)
1675     return Target;
1676 
1677   // Handle pseudo-target flags '-m32' and '-m64'.
1678   // FIXME: Should this information be in llvm::Triple?
1679   if (Arg *A = Args.getLastArg(options::OPT_m32, options::OPT_m64)) {
1680     if (A->getOption().matches(options::OPT_m32)) {
1681       if (Target.getArch() == llvm::Triple::x86_64)
1682         Target.setArch(llvm::Triple::x86);
1683       if (Target.getArch() == llvm::Triple::ppc64)
1684         Target.setArch(llvm::Triple::ppc);
1685     } else {
1686       if (Target.getArch() == llvm::Triple::x86)
1687         Target.setArch(llvm::Triple::x86_64);
1688       if (Target.getArch() == llvm::Triple::ppc)
1689         Target.setArch(llvm::Triple::ppc64);
1690     }
1691   }
1692 
1693   return Target;
1694 }
1695 
1696 const ToolChain &Driver::getToolChain(const ArgList &Args,
1697                                       StringRef DarwinArchName) const {
1698   llvm::Triple Target = computeTargetTriple(DefaultTargetTriple, Args,
1699                                             DarwinArchName);
1700 
1701   ToolChain *&TC = ToolChains[Target.str()];
1702   if (!TC) {
1703     switch (Target.getOS()) {
1704     case llvm::Triple::AuroraUX:
1705       TC = new toolchains::AuroraUX(*this, Target, Args);
1706       break;
1707     case llvm::Triple::Darwin:
1708     case llvm::Triple::MacOSX:
1709     case llvm::Triple::IOS:
1710       if (Target.getArch() == llvm::Triple::x86 ||
1711           Target.getArch() == llvm::Triple::x86_64 ||
1712           Target.getArch() == llvm::Triple::arm ||
1713           Target.getArch() == llvm::Triple::thumb)
1714         TC = new toolchains::DarwinClang(*this, Target, Args);
1715       else
1716         TC = new toolchains::Darwin_Generic_GCC(*this, Target, Args);
1717       break;
1718     case llvm::Triple::DragonFly:
1719       TC = new toolchains::DragonFly(*this, Target, Args);
1720       break;
1721     case llvm::Triple::OpenBSD:
1722       TC = new toolchains::OpenBSD(*this, Target, Args);
1723       break;
1724     case llvm::Triple::Bitrig:
1725       TC = new toolchains::Bitrig(*this, Target, Args);
1726       break;
1727     case llvm::Triple::NetBSD:
1728       TC = new toolchains::NetBSD(*this, Target, Args);
1729       break;
1730     case llvm::Triple::FreeBSD:
1731       TC = new toolchains::FreeBSD(*this, Target, Args);
1732       break;
1733     case llvm::Triple::Minix:
1734       TC = new toolchains::Minix(*this, Target, Args);
1735       break;
1736     case llvm::Triple::Linux:
1737       if (Target.getArch() == llvm::Triple::hexagon)
1738         TC = new toolchains::Hexagon_TC(*this, Target, Args);
1739       else
1740         TC = new toolchains::Linux(*this, Target, Args);
1741       break;
1742     case llvm::Triple::Solaris:
1743       TC = new toolchains::Solaris(*this, Target, Args);
1744       break;
1745     case llvm::Triple::Win32:
1746       TC = new toolchains::Windows(*this, Target, Args);
1747       break;
1748     case llvm::Triple::MinGW32:
1749       // FIXME: We need a MinGW toolchain. Fallthrough for now.
1750     default:
1751       // TCE is an OSless target
1752       if (Target.getArchName() == "tce") {
1753         TC = new toolchains::TCEToolChain(*this, Target, Args);
1754         break;
1755       }
1756       // If Hexagon is configured as an OSless target
1757       if (Target.getArch() == llvm::Triple::hexagon) {
1758         TC = new toolchains::Hexagon_TC(*this, Target, Args);
1759         break;
1760       }
1761       TC = new toolchains::Generic_GCC(*this, Target, Args);
1762       break;
1763     }
1764   }
1765   return *TC;
1766 }
1767 
1768 bool Driver::ShouldUseClangCompiler(const JobAction &JA) const {
1769   // Check if user requested no clang, or clang doesn't understand this type (we
1770   // only handle single inputs for now).
1771   if (JA.size() != 1 ||
1772       !types::isAcceptedByClang((*JA.begin())->getType()))
1773     return false;
1774 
1775   // Otherwise make sure this is an action clang understands.
1776   if (!isa<PreprocessJobAction>(JA) && !isa<PrecompileJobAction>(JA) &&
1777       !isa<CompileJobAction>(JA))
1778     return false;
1779 
1780   return true;
1781 }
1782 
1783 /// GetReleaseVersion - Parse (([0-9]+)(.([0-9]+)(.([0-9]+)?))?)? and return the
1784 /// grouped values as integers. Numbers which are not provided are set to 0.
1785 ///
1786 /// \return True if the entire string was parsed (9.2), or all groups were
1787 /// parsed (10.3.5extrastuff).
1788 bool Driver::GetReleaseVersion(const char *Str, unsigned &Major,
1789                                unsigned &Minor, unsigned &Micro,
1790                                bool &HadExtra) {
1791   HadExtra = false;
1792 
1793   Major = Minor = Micro = 0;
1794   if (*Str == '\0')
1795     return true;
1796 
1797   char *End;
1798   Major = (unsigned) strtol(Str, &End, 10);
1799   if (*Str != '\0' && *End == '\0')
1800     return true;
1801   if (*End != '.')
1802     return false;
1803 
1804   Str = End+1;
1805   Minor = (unsigned) strtol(Str, &End, 10);
1806   if (*Str != '\0' && *End == '\0')
1807     return true;
1808   if (*End != '.')
1809     return false;
1810 
1811   Str = End+1;
1812   Micro = (unsigned) strtol(Str, &End, 10);
1813   if (*Str != '\0' && *End == '\0')
1814     return true;
1815   if (Str == End)
1816     return false;
1817   HadExtra = true;
1818   return true;
1819 }
1820