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