Nick Lewycky | e3365aa | 2010-09-23 23:48:20 +0000 | [diff] [blame] | 1 | //===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===// |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 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 | |
Oscar Fuentes | 2100fe9 | 2011-02-03 22:48:20 +0000 | [diff] [blame] | 10 | #ifdef HAVE_CLANG_CONFIG_H |
| 11 | # include "clang/Config/config.h" |
| 12 | #endif |
| 13 | |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 14 | #include "clang/Driver/Driver.h" |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 15 | |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 16 | #include "clang/Driver/Action.h" |
Daniel Dunbar | 1b3bb6e | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 17 | #include "clang/Driver/Arg.h" |
| 18 | #include "clang/Driver/ArgList.h" |
| 19 | #include "clang/Driver/Compilation.h" |
Daniel Dunbar | 4ad4b3e | 2009-03-12 08:55:43 +0000 | [diff] [blame] | 20 | #include "clang/Driver/DriverDiagnostic.h" |
Daniel Dunbar | dd98e2c | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 21 | #include "clang/Driver/HostInfo.h" |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 22 | #include "clang/Driver/Job.h" |
Daniel Dunbar | 27e738d | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 23 | #include "clang/Driver/OptTable.h" |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 24 | #include "clang/Driver/Option.h" |
Daniel Dunbar | 1b3bb6e | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 25 | #include "clang/Driver/Options.h" |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 26 | #include "clang/Driver/Tool.h" |
| 27 | #include "clang/Driver/ToolChain.h" |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 28 | |
Douglas Gregor | ab41e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 29 | #include "clang/Basic/Version.h" |
| 30 | |
Daniel Dunbar | a77a723 | 2010-08-12 00:05:12 +0000 | [diff] [blame] | 31 | #include "llvm/Config/config.h" |
Chris Lattner | 7f9fc3f | 2011-03-23 04:04:01 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/ArrayRef.h" |
Daniel Dunbar | 1368954 | 2009-03-13 20:33:35 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/StringSet.h" |
Ted Kremenek | 4d7b147 | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/OwningPtr.h" |
David Blaikie | 548f6c8 | 2011-09-23 05:57:42 +0000 | [diff] [blame] | 35 | #include "llvm/Support/ErrorHandling.h" |
Daniel Dunbar | 8f25c79 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 36 | #include "llvm/Support/PrettyStackTrace.h" |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 37 | #include "llvm/Support/raw_ostream.h" |
Michael J. Spencer | 256053b | 2010-12-17 21:22:22 +0000 | [diff] [blame] | 38 | #include "llvm/Support/FileSystem.h" |
Michael J. Spencer | 03013fa | 2010-11-29 18:12:39 +0000 | [diff] [blame] | 39 | #include "llvm/Support/Path.h" |
| 40 | #include "llvm/Support/Program.h" |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 41 | |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 42 | #include "InputInfo.h" |
| 43 | |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 44 | #include <map> |
| 45 | |
Daniel Dunbar | 1b3bb6e | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 46 | using namespace clang::driver; |
Chris Lattner | 92b3699 | 2009-03-26 05:56:24 +0000 | [diff] [blame] | 47 | using namespace clang; |
Daniel Dunbar | 1b3bb6e | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 48 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 49 | Driver::Driver(StringRef ClangExecutable, |
| 50 | StringRef DefaultHostTriple, |
| 51 | StringRef DefaultImageName, |
Bob Wilson | 10a82cd | 2011-10-04 05:34:14 +0000 | [diff] [blame] | 52 | bool IsProduction, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 53 | DiagnosticsEngine &Diags) |
Nick Lewycky | 7e46d0b | 2011-06-04 05:19:42 +0000 | [diff] [blame] | 54 | : Opts(createDriverOptTable()), Diags(Diags), |
| 55 | ClangExecutable(ClangExecutable), UseStdLib(true), |
| 56 | DefaultHostTriple(DefaultHostTriple), DefaultImageName(DefaultImageName), |
Daniel Dunbar | 43302d4 | 2010-02-25 03:31:53 +0000 | [diff] [blame] | 57 | DriverTitle("clang \"gcc-compatible\" driver"), |
Daniel Dunbar | dd98e2c | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 58 | Host(0), |
Daniel Dunbar | c8a22b0 | 2011-04-07 18:01:20 +0000 | [diff] [blame] | 59 | CCPrintOptionsFilename(0), CCPrintHeadersFilename(0), |
| 60 | CCLogDiagnosticsFilename(0), CCCIsCXX(false), |
Joerg Sonnenberger | 951c570 | 2011-03-07 00:09:32 +0000 | [diff] [blame] | 61 | CCCIsCPP(false),CCCEcho(false), CCCPrintBindings(false), |
Daniel Dunbar | c8a22b0 | 2011-04-07 18:01:20 +0000 | [diff] [blame] | 62 | CCPrintOptions(false), CCPrintHeaders(false), CCLogDiagnostics(false), |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 63 | CCGenDiagnostics(false), CCCGenericGCCName(""), CheckInputsExist(true), |
| 64 | CCCUseClang(true), CCCUseClangCXX(true), CCCUseClangCPP(true), |
| 65 | CCCUsePCH(true), SuppressMissingInputWarning(false) { |
Daniel Dunbar | f44c585 | 2009-09-22 22:31:13 +0000 | [diff] [blame] | 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); |
Daniel Dunbar | f44c585 | 2009-09-22 22:31:13 +0000 | [diff] [blame] | 76 | } |
Daniel Dunbar | 225c417 | 2010-01-20 02:35:16 +0000 | [diff] [blame] | 77 | |
Michael J. Spencer | d5b08be | 2010-12-18 04:13:32 +0000 | [diff] [blame] | 78 | Name = llvm::sys::path::stem(ClangExecutable); |
| 79 | Dir = llvm::sys::path::parent_path(ClangExecutable); |
Daniel Dunbar | 0bbad51 | 2010-07-19 00:44:04 +0000 | [diff] [blame] | 80 | |
Daniel Dunbar | 225c417 | 2010-01-20 02:35:16 +0000 | [diff] [blame] | 81 | // Compute the path to the resource directory. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 82 | StringRef ClangResourceDir(CLANG_RESOURCE_DIR); |
Michael J. Spencer | d5b08be | 2010-12-18 04:13:32 +0000 | [diff] [blame] | 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); |
Daniel Dunbar | 225c417 | 2010-01-20 02:35:16 +0000 | [diff] [blame] | 88 | ResourceDir = P.str(); |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | Driver::~Driver() { |
Daniel Dunbar | 1b3bb6e | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 92 | delete Opts; |
Daniel Dunbar | 7e4534d | 2009-03-18 01:09:40 +0000 | [diff] [blame] | 93 | delete Host; |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Chris Lattner | 2d3ba4f | 2011-07-23 17:14:25 +0000 | [diff] [blame] | 96 | InputArgList *Driver::ParseArgStrings(ArrayRef<const char *> ArgList) { |
Daniel Dunbar | 8f25c79 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 97 | llvm::PrettyStackTraceString CrashInfo("Command line argument parsing"); |
Daniel Dunbar | 847abaa | 2009-11-19 06:35:06 +0000 | [diff] [blame] | 98 | unsigned MissingArgIndex, MissingArgCount; |
Chris Lattner | 7f9fc3f | 2011-03-23 04:04:01 +0000 | [diff] [blame] | 99 | InputArgList *Args = getOpts().ParseArgs(ArgList.begin(), ArgList.end(), |
Daniel Dunbar | 847abaa | 2009-11-19 06:35:06 +0000 | [diff] [blame] | 100 | MissingArgIndex, MissingArgCount); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 101 | |
Daniel Dunbar | 847abaa | 2009-11-19 06:35:06 +0000 | [diff] [blame] | 102 | // Check for missing argument error. |
| 103 | if (MissingArgCount) |
| 104 | Diag(clang::diag::err_drv_missing_argument) |
| 105 | << Args->getArgString(MissingArgIndex) << MissingArgCount; |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 106 | |
Daniel Dunbar | 847abaa | 2009-11-19 06:35:06 +0000 | [diff] [blame] | 107 | // Check for unsupported options. |
| 108 | for (ArgList::const_iterator it = Args->begin(), ie = Args->end(); |
| 109 | it != ie; ++it) { |
| 110 | Arg *A = *it; |
Daniel Dunbar | b0c4df5 | 2009-03-22 23:26:43 +0000 | [diff] [blame] | 111 | if (A->getOption().isUnsupported()) { |
| 112 | Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(*Args); |
| 113 | continue; |
| 114 | } |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | return Args; |
| 118 | } |
| 119 | |
Chad Rosier | 1fc1de4 | 2011-07-27 23:36:45 +0000 | [diff] [blame] | 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; |
Eric Christopher | 59f9b26 | 2011-08-17 22:59:59 +0000 | [diff] [blame] | 127 | |
Chad Rosier | 1fc1de4 | 2011-07-27 23:36:45 +0000 | [diff] [blame] | 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; |
Eric Christopher | 59f9b26 | 2011-08-17 22:59:59 +0000 | [diff] [blame] | 133 | |
Chad Rosier | 1fc1de4 | 2011-07-27 23:36:45 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 157 | DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { |
| 158 | DerivedArgList *DAL = new DerivedArgList(Args); |
| 159 | |
Daniel Dunbar | e5a37f4 | 2010-09-17 00:45:02 +0000 | [diff] [blame] | 160 | bool HasNostdlib = Args.hasArg(options::OPT_nostdlib); |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 161 | for (ArgList::const_iterator it = Args.begin(), |
Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 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'). |
Daniel Dunbar | eda3f70 | 2010-06-14 21:37:09 +0000 | [diff] [blame] | 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")) { |
Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 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) |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 179 | if (StringRef(A->getValue(Args, i)) != "--no-demangle") |
Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 180 | DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker), |
| 181 | A->getValue(Args, i)); |
| 182 | |
| 183 | continue; |
| 184 | } |
| 185 | |
Daniel Dunbar | eda3f70 | 2010-06-14 21:37:09 +0000 | [diff] [blame] | 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 && |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 191 | (A->getValue(Args, 0) == StringRef("-MD") || |
| 192 | A->getValue(Args, 0) == StringRef("-MMD"))) { |
Daniel Dunbar | 212df32 | 2010-06-15 20:30:18 +0000 | [diff] [blame] | 193 | // Rewrite to -MD/-MMD along with -MF. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 194 | if (A->getValue(Args, 0) == StringRef("-MD")) |
Daniel Dunbar | 212df32 | 2010-06-15 20:30:18 +0000 | [diff] [blame] | 195 | DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD)); |
| 196 | else |
| 197 | DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD)); |
Daniel Dunbar | eda3f70 | 2010-06-14 21:37:09 +0000 | [diff] [blame] | 198 | DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF), |
| 199 | A->getValue(Args, 1)); |
| 200 | continue; |
| 201 | } |
| 202 | |
Shantonu Sen | 7433fed | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 203 | // Rewrite reserved library names. |
| 204 | if (A->getOption().matches(options::OPT_l)) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 205 | StringRef Value = A->getValue(Args); |
Daniel Dunbar | e5a37f4 | 2010-09-17 00:45:02 +0000 | [diff] [blame] | 206 | |
Shantonu Sen | 7433fed | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 207 | // Rewrite unless -nostdlib is present. |
| 208 | if (!HasNostdlib && Value == "stdc++") { |
Daniel Dunbar | e5a37f4 | 2010-09-17 00:45:02 +0000 | [diff] [blame] | 209 | DAL->AddFlagArg(A, Opts->getOption( |
| 210 | options::OPT_Z_reserved_lib_stdcxx)); |
| 211 | continue; |
| 212 | } |
Shantonu Sen | 7433fed | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 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 | } |
Daniel Dunbar | e5a37f4 | 2010-09-17 00:45:02 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 222 | DAL->append(*it); |
Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 223 | } |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 224 | |
Daniel Dunbar | a77a723 | 2010-08-12 00:05:12 +0000 | [diff] [blame] | 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); |
Daniel Dunbar | c326b64 | 2010-08-17 22:32:45 +0000 | [diff] [blame] | 231 | DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim(); |
Daniel Dunbar | a77a723 | 2010-08-12 00:05:12 +0000 | [diff] [blame] | 232 | } |
| 233 | #endif |
| 234 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 235 | return DAL; |
| 236 | } |
| 237 | |
Chris Lattner | 2d3ba4f | 2011-07-23 17:14:25 +0000 | [diff] [blame] | 238 | Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) { |
Daniel Dunbar | 8f25c79 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 239 | llvm::PrettyStackTraceString CrashInfo("Compilation construction"); |
| 240 | |
Eric Christopher | 59f9b26 | 2011-08-17 22:59:59 +0000 | [diff] [blame] | 241 | // FIXME: Handle environment options which affect driver behavior, somewhere |
Chad Rosier | 815eb6b | 2011-09-14 00:47:55 +0000 | [diff] [blame] | 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 | } |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 252 | |
| 253 | // FIXME: What are we going to do with -V and -b? |
| 254 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 255 | // FIXME: This stuff needs to go into the Compilation, not the driver. |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 256 | bool CCCPrintOptions = false, CCCPrintActions = false; |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 257 | |
Chris Lattner | 7f9fc3f | 2011-03-23 04:04:01 +0000 | [diff] [blame] | 258 | InputArgList *Args = ParseArgStrings(ArgList.slice(1)); |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 259 | |
Rafael Espindola | 7ca7987 | 2009-12-07 18:28:29 +0000 | [diff] [blame] | 260 | // -no-canonical-prefixes is used very early in main. |
| 261 | Args->ClaimAllArgs(options::OPT_no_canonical_prefixes); |
| 262 | |
Daniel Dunbar | c19a12d | 2010-08-02 02:38:03 +0000 | [diff] [blame] | 263 | // Ignore -pipe. |
| 264 | Args->ClaimAllArgs(options::OPT_pipe); |
| 265 | |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 266 | // Extract -ccc args. |
Daniel Dunbar | 365c02f | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 267 | // |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 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); |
Daniel Dunbar | f5431e3 | 2009-12-05 00:13:59 +0000 | [diff] [blame] | 275 | CCCIsCXX = Args->hasArg(options::OPT_ccc_cxx) || CCCIsCXX; |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 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, |
Daniel Dunbar | f5431e3 | 2009-12-05 00:13:59 +0000 | [diff] [blame] | 280 | options::OPT_ccc_no_clang_cxx, |
| 281 | CCCUseClangCXX); |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 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)) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 287 | StringRef Cur = A->getValue(*Args); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 288 | |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 289 | CCCClangArchs.clear(); |
| 290 | while (!Cur.empty()) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 291 | std::pair<StringRef, StringRef> Split = Cur.split(','); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 292 | |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 293 | if (!Split.first.empty()) { |
| 294 | llvm::Triple::ArchType Arch = |
| 295 | llvm::Triple(Split.first, "", "").getArch(); |
Daniel Dunbar | 78d8a08 | 2009-04-01 23:34:41 +0000 | [diff] [blame] | 296 | |
Daniel Dunbar | e9c7b9e | 2010-02-11 03:16:07 +0000 | [diff] [blame] | 297 | if (Arch == llvm::Triple::UnknownArch) |
| 298 | Diag(clang::diag::err_drv_invalid_arch_name) << Split.first; |
Daniel Dunbar | 365c02f | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 299 | |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 300 | CCCClangArchs.insert(Arch); |
Daniel Dunbar | a6046be | 2009-09-08 23:36:55 +0000 | [diff] [blame] | 301 | } |
Daniel Dunbar | 365c02f | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 302 | |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 303 | Cur = Split.second; |
Daniel Dunbar | 365c02f | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 304 | } |
| 305 | } |
Daniel Dunbar | 6699877 | 2010-08-02 05:44:04 +0000 | [diff] [blame] | 306 | // FIXME: We shouldn't overwrite the default host triple here, but we have |
| 307 | // nowhere else to put this currently. |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 308 | if (const Arg *A = Args->getLastArg(options::OPT_ccc_host_triple)) |
Daniel Dunbar | 6699877 | 2010-08-02 05:44:04 +0000 | [diff] [blame] | 309 | DefaultHostTriple = A->getValue(*Args); |
Daniel Dunbar | 8477ee9 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 310 | if (const Arg *A = Args->getLastArg(options::OPT_ccc_install_dir)) |
Daniel Dunbar | c4ab349 | 2010-08-23 20:58:50 +0000 | [diff] [blame] | 311 | Dir = InstalledDir = A->getValue(*Args); |
Benjamin Kramer | 09982ce | 2011-02-08 20:31:42 +0000 | [diff] [blame] | 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 | } |
Joerg Sonnenberger | 8ab2bdc | 2011-03-21 13:51:29 +0000 | [diff] [blame] | 318 | if (const Arg *A = Args->getLastArg(options::OPT__sysroot_EQ)) |
| 319 | SysRoot = A->getValue(*Args); |
Joerg Sonnenberger | 05e5930 | 2011-03-21 13:59:26 +0000 | [diff] [blame] | 320 | if (Args->hasArg(options::OPT_nostdlib)) |
| 321 | UseStdLib = false; |
Daniel Dunbar | 365c02f | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 322 | |
Daniel Dunbar | 6699877 | 2010-08-02 05:44:04 +0000 | [diff] [blame] | 323 | Host = GetHostInfo(DefaultHostTriple.c_str()); |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 324 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 325 | // Perform the default argument translations. |
| 326 | DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args); |
| 327 | |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 328 | // The compilation takes ownership of Args. |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 329 | Compilation *C = new Compilation(*this, *Host->CreateToolChain(*Args), Args, |
| 330 | TranslatedArgs); |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 331 | |
| 332 | // FIXME: This behavior shouldn't be here. |
| 333 | if (CCCPrintOptions) { |
Daniel Dunbar | be21cd0 | 2010-06-11 22:43:38 +0000 | [diff] [blame] | 334 | PrintOptions(C->getInputArgs()); |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 335 | return C; |
| 336 | } |
| 337 | |
| 338 | if (!HandleImmediateArgs(*C)) |
| 339 | return C; |
| 340 | |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 341 | // Construct the list of inputs. |
| 342 | InputList Inputs; |
| 343 | BuildInputs(C->getDefaultToolChain(), C->getArgs(), Inputs); |
| 344 | |
Daniel Dunbar | 74edcea | 2010-08-02 05:43:51 +0000 | [diff] [blame] | 345 | // Construct the list of abstract actions to perform for this compilation. |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 346 | if (Host->useDriverDriver()) |
Joerg Sonnenberger | 65f7165 | 2011-03-07 01:15:29 +0000 | [diff] [blame] | 347 | BuildUniversalActions(C->getDefaultToolChain(), C->getArgs(), |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 348 | Inputs, C->getActions()); |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 349 | else |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 350 | BuildActions(C->getDefaultToolChain(), C->getArgs(), Inputs, |
| 351 | C->getActions()); |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 352 | |
| 353 | if (CCCPrintActions) { |
Daniel Dunbar | 10ffa9a | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 354 | PrintActions(*C); |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 355 | return C; |
| 356 | } |
| 357 | |
| 358 | BuildJobs(*C); |
Daniel Dunbar | 8d2554a | 2009-03-15 01:38:15 +0000 | [diff] [blame] | 359 | |
| 360 | return C; |
Daniel Dunbar | 365c02f | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 361 | } |
| 362 | |
Eric Christopher | 59f9b26 | 2011-08-17 22:59:59 +0000 | [diff] [blame] | 363 | // When clang crashes, produce diagnostic information including the fully |
| 364 | // preprocessed source file(s). Request that the developer attach the |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 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) |
Chad Rosier | fc61427 | 2011-08-02 20:44:34 +0000 | [diff] [blame] | 369 | << "Please submit a bug report to " BUG_REPORT_URL " and include command" |
| 370 | " line arguments and all diagnostic information."; |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 371 | |
| 372 | // Suppress driver output and emit preprocessor output to temp file. |
| 373 | CCCIsCPP = true; |
| 374 | CCGenDiagnostics = true; |
| 375 | |
Chad Rosier | ce50c55 | 2011-11-02 21:29:05 +0000 | [diff] [blame] | 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 | |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 382 | // Clear stale state and suppress tool output. |
| 383 | C.initCompilationForDiagnostics(); |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 384 | Diags.Reset(); |
| 385 | |
| 386 | // Construct the list of inputs. |
| 387 | InputList Inputs; |
| 388 | BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs); |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 389 | |
Chad Rosier | 137a20b | 2011-08-12 23:30:05 +0000 | [diff] [blame] | 390 | for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) { |
Chad Rosier | 90c8802 | 2011-08-18 00:22:25 +0000 | [diff] [blame] | 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) { |
Chad Rosier | 137a20b | 2011-08-12 23:30:05 +0000 | [diff] [blame] | 404 | it = Inputs.erase(it); |
| 405 | ie = Inputs.end(); |
Chad Rosier | 3060178 | 2011-08-17 23:08:45 +0000 | [diff] [blame] | 406 | } else { |
Chad Rosier | 137a20b | 2011-08-12 23:30:05 +0000 | [diff] [blame] | 407 | ++it; |
Chad Rosier | 3060178 | 2011-08-17 23:08:45 +0000 | [diff] [blame] | 408 | } |
Chad Rosier | 137a20b | 2011-08-12 23:30:05 +0000 | [diff] [blame] | 409 | } |
Chad Rosier | 90c8802 | 2011-08-18 00:22:25 +0000 | [diff] [blame] | 410 | |
Chad Rosier | 46e3908 | 2011-09-06 23:52:36 +0000 | [diff] [blame] | 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 | |
Chad Rosier | 137a20b | 2011-08-12 23:30:05 +0000 | [diff] [blame] | 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 | |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 434 | // Construct the list of abstract actions to perform for this compilation. |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 435 | if (Host->useDriverDriver()) |
| 436 | BuildUniversalActions(C.getDefaultToolChain(), C.getArgs(), |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 437 | Inputs, C.getActions()); |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 438 | else |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 439 | BuildActions(C.getDefaultToolChain(), C.getArgs(), Inputs, |
| 440 | C.getActions()); |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 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) |
Chad Rosier | ce50c55 | 2011-11-02 21:29:05 +0000 | [diff] [blame] | 458 | << "Preprocessed source(s) and associated run script(s) are located at:"; |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 459 | ArgStringList Files = C.getTempFiles(); |
Eric Christopher | 59f9b26 | 2011-08-17 22:59:59 +0000 | [diff] [blame] | 460 | for (ArgStringList::const_iterator it = Files.begin(), ie = Files.end(); |
Chad Rosier | ce50c55 | 2011-11-02 21:29:05 +0000 | [diff] [blame] | 461 | it != ie; ++it) { |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 462 | Diag(clang::diag::note_drv_command_failed_diag_msg) << *it; |
Chad Rosier | ce50c55 | 2011-11-02 21:29:05 +0000 | [diff] [blame] | 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 | } |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 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 { |
Daniel Dunbar | c88a88f | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 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. |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 497 | if (Diags.hasErrorOccurred()) |
Daniel Dunbar | c88a88f | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 498 | return 1; |
| 499 | |
Daniel Dunbar | c88a88f | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 500 | int Res = C.ExecuteJob(C.getJobs(), FailingCommand); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 501 | |
Daniel Dunbar | c88a88f | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 502 | // Remove temp files. |
| 503 | C.CleanupFileList(C.getTempFiles()); |
| 504 | |
Daniel Dunbar | 9fcbc05 | 2010-05-22 00:37:20 +0000 | [diff] [blame] | 505 | // If the command succeeded, we are done. |
| 506 | if (Res == 0) |
| 507 | return Res; |
| 508 | |
| 509 | // Otherwise, remove result files as well. |
Peter Collingbourne | 5d4d980 | 2011-11-21 00:01:05 +0000 | [diff] [blame] | 510 | if (!C.getArgs().hasArg(options::OPT_save_temps)) { |
Daniel Dunbar | c88a88f | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 511 | C.CleanupFileList(C.getResultFiles(), true); |
| 512 | |
Peter Collingbourne | 5d4d980 | 2011-11-21 00:01:05 +0000 | [diff] [blame] | 513 | // Failure result files are valid unless we crashed. |
NAKAMURA Takumi | 573ea96 | 2011-11-29 07:47:04 +0000 | [diff] [blame] | 514 | if (Res < 0) { |
Peter Collingbourne | 5d4d980 | 2011-11-21 00:01:05 +0000 | [diff] [blame] | 515 | C.CleanupFileList(C.getFailureResultFiles(), true); |
NAKAMURA Takumi | 573ea96 | 2011-11-29 07:47:04 +0000 | [diff] [blame] | 516 | #ifdef _WIN32 |
| 517 | // Exit status should not be negative on Win32, |
| 518 | // unless abnormal termination. |
| 519 | Res = 1; |
| 520 | #endif |
| 521 | } |
Peter Collingbourne | 5d4d980 | 2011-11-21 00:01:05 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Daniel Dunbar | c88a88f | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 524 | // Print extra information about abnormal failures, if possible. |
Daniel Dunbar | 9fcbc05 | 2010-05-22 00:37:20 +0000 | [diff] [blame] | 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(); |
Daniel Dunbar | c88a88f | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 532 | |
Daniel Dunbar | 9fcbc05 | 2010-05-22 00:37:20 +0000 | [diff] [blame] | 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) |
Benjamin Kramer | ecff7c8 | 2011-11-19 10:24:49 +0000 | [diff] [blame] | 537 | << FailingTool.getShortName(); |
Daniel Dunbar | 9fcbc05 | 2010-05-22 00:37:20 +0000 | [diff] [blame] | 538 | else |
| 539 | Diag(clang::diag::err_drv_command_failed) |
| 540 | << FailingTool.getShortName() << Res; |
Daniel Dunbar | c88a88f | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | return Res; |
| 544 | } |
| 545 | |
Daniel Dunbar | d65bddc | 2009-03-12 18:24:49 +0000 | [diff] [blame] | 546 | void Driver::PrintOptions(const ArgList &Args) const { |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 547 | unsigned i = 0; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 548 | for (ArgList::const_iterator it = Args.begin(), ie = Args.end(); |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 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() << ", "; |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 557 | llvm::errs() << '"' << A->getValue(Args, j) << '"'; |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 558 | } |
| 559 | llvm::errs() << "}\n"; |
Daniel Dunbar | 0648262 | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 560 | } |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 561 | } |
Daniel Dunbar | dd98e2c | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 562 | |
Daniel Dunbar | c35d71f | 2009-04-15 16:34:29 +0000 | [diff] [blame] | 563 | void Driver::PrintHelp(bool ShowHidden) const { |
Daniel Dunbar | 43302d4 | 2010-02-25 03:31:53 +0000 | [diff] [blame] | 564 | getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(), |
| 565 | ShowHidden); |
Daniel Dunbar | 91e28af | 2009-03-31 21:38:17 +0000 | [diff] [blame] | 566 | } |
| 567 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 568 | void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 569 | // FIXME: The following handlers should use a callback mechanism, we don't |
| 570 | // know what the client would like to do. |
Ted Kremenek | a18f1b8 | 2010-01-23 02:11:34 +0000 | [diff] [blame] | 571 | OS << getClangFullVersion() << '\n'; |
Daniel Dunbar | 70c8db1 | 2009-03-26 16:09:13 +0000 | [diff] [blame] | 572 | const ToolChain &TC = C.getDefaultToolChain(); |
Daniel Dunbar | 7930072 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 573 | OS << "Target: " << TC.getTripleString() << '\n'; |
Daniel Dunbar | 3ee96ba | 2009-06-16 23:32:58 +0000 | [diff] [blame] | 574 | |
| 575 | // Print the threading model. |
| 576 | // |
| 577 | // FIXME: Implement correctly. |
Daniel Dunbar | 7930072 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 578 | OS << "Thread model: " << "posix" << '\n'; |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Chris Lattner | c3d26cc | 2010-05-05 05:53:24 +0000 | [diff] [blame] | 581 | /// PrintDiagnosticCategories - Implement the --print-diagnostic-categories |
| 582 | /// option. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 583 | static void PrintDiagnosticCategories(raw_ostream &OS) { |
Argyrios Kyrtzidis | 477aab6 | 2011-05-25 05:05:01 +0000 | [diff] [blame] | 584 | // Skip the empty category. |
| 585 | for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories(); |
| 586 | i != max; ++i) |
| 587 | OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n'; |
Chris Lattner | c3d26cc | 2010-05-05 05:53:24 +0000 | [diff] [blame] | 588 | } |
| 589 | |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 590 | bool Driver::HandleImmediateArgs(const Compilation &C) { |
Daniel Dunbar | e82ec0b | 2010-06-11 22:00:19 +0000 | [diff] [blame] | 591 | // The order these options are handled in gcc is all over the place, but we |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 592 | // don't expect inconsistencies w.r.t. that to matter in practice. |
Daniel Dunbar | 91e28af | 2009-03-31 21:38:17 +0000 | [diff] [blame] | 593 | |
Daniel Dunbar | d829950 | 2010-09-17 02:47:28 +0000 | [diff] [blame] | 594 | if (C.getArgs().hasArg(options::OPT_dumpmachine)) { |
| 595 | llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n'; |
| 596 | return false; |
| 597 | } |
| 598 | |
Daniel Dunbar | e06dc21 | 2009-04-04 05:17:38 +0000 | [diff] [blame] | 599 | if (C.getArgs().hasArg(options::OPT_dumpversion)) { |
Daniel Dunbar | 95a907f | 2011-01-12 00:43:47 +0000 | [diff] [blame] | 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"; |
Daniel Dunbar | e06dc21 | 2009-04-04 05:17:38 +0000 | [diff] [blame] | 607 | return false; |
| 608 | } |
Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 609 | |
Chris Lattner | c3d26cc | 2010-05-05 05:53:24 +0000 | [diff] [blame] | 610 | if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) { |
| 611 | PrintDiagnosticCategories(llvm::outs()); |
| 612 | return false; |
| 613 | } |
Daniel Dunbar | e06dc21 | 2009-04-04 05:17:38 +0000 | [diff] [blame] | 614 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 615 | if (C.getArgs().hasArg(options::OPT__help) || |
Daniel Dunbar | c35d71f | 2009-04-15 16:34:29 +0000 | [diff] [blame] | 616 | C.getArgs().hasArg(options::OPT__help_hidden)) { |
| 617 | PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden)); |
Daniel Dunbar | 91e28af | 2009-03-31 21:38:17 +0000 | [diff] [blame] | 618 | return false; |
| 619 | } |
| 620 | |
Daniel Dunbar | 6cc73de | 2009-04-02 15:05:41 +0000 | [diff] [blame] | 621 | if (C.getArgs().hasArg(options::OPT__version)) { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 622 | // Follow gcc behavior and use stdout for --version and stderr for -v. |
Daniel Dunbar | 7930072 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 623 | PrintVersion(C, llvm::outs()); |
Daniel Dunbar | 6cc73de | 2009-04-02 15:05:41 +0000 | [diff] [blame] | 624 | return false; |
| 625 | } |
| 626 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 627 | if (C.getArgs().hasArg(options::OPT_v) || |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 628 | C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) { |
Daniel Dunbar | 7930072 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 629 | PrintVersion(C, llvm::errs()); |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 630 | SuppressMissingInputWarning = true; |
| 631 | } |
| 632 | |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 633 | const ToolChain &TC = C.getDefaultToolChain(); |
Daniel Dunbar | ca3459e | 2009-03-20 04:37:21 +0000 | [diff] [blame] | 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"; |
Peter Collingbourne | 41ee7a3 | 2011-09-06 02:08:31 +0000 | [diff] [blame] | 643 | llvm::outs() << "libraries: =" << ResourceDir; |
Joerg Sonnenberger | 59c8457 | 2011-07-16 10:50:05 +0000 | [diff] [blame] | 644 | |
| 645 | std::string sysroot; |
| 646 | if (Arg *A = C.getArgs().getLastArg(options::OPT__sysroot_EQ)) |
| 647 | sysroot = A->getValue(C.getArgs()); |
| 648 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 649 | for (ToolChain::path_list::const_iterator it = TC.getFilePaths().begin(), |
Daniel Dunbar | ca3459e | 2009-03-20 04:37:21 +0000 | [diff] [blame] | 650 | ie = TC.getFilePaths().end(); it != ie; ++it) { |
Peter Collingbourne | 41ee7a3 | 2011-09-06 02:08:31 +0000 | [diff] [blame] | 651 | llvm::outs() << ':'; |
Joerg Sonnenberger | 59c8457 | 2011-07-16 10:50:05 +0000 | [diff] [blame] | 652 | const char *path = it->c_str(); |
| 653 | if (path[0] == '=') |
| 654 | llvm::outs() << sysroot << path + 1; |
| 655 | else |
| 656 | llvm::outs() << path; |
Daniel Dunbar | ca3459e | 2009-03-20 04:37:21 +0000 | [diff] [blame] | 657 | } |
| 658 | llvm::outs() << "\n"; |
Daniel Dunbar | 91e28af | 2009-03-31 21:38:17 +0000 | [diff] [blame] | 659 | return false; |
Daniel Dunbar | ca3459e | 2009-03-20 04:37:21 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 662 | // FIXME: The following handlers should use a callback mechanism, we don't |
| 663 | // know what the client would like to do. |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 664 | if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) { |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 665 | llvm::outs() << GetFilePath(A->getValue(C.getArgs()), TC) << "\n"; |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 666 | return false; |
| 667 | } |
| 668 | |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 669 | if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) { |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 670 | llvm::outs() << GetProgramPath(A->getValue(C.getArgs()), TC) << "\n"; |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 671 | return false; |
| 672 | } |
| 673 | |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 674 | if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) { |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 675 | llvm::outs() << GetFilePath("libgcc.a", TC) << "\n"; |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 676 | return false; |
| 677 | } |
| 678 | |
Daniel Dunbar | 12cfe03 | 2009-06-16 23:25:22 +0000 | [diff] [blame] | 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; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 686 | |
Daniel Dunbar | 12cfe03 | 2009-06-16 23:25:22 +0000 | [diff] [blame] | 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; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 708 | |
Daniel Dunbar | 12cfe03 | 2009-06-16 23:25:22 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 720 | return true; |
| 721 | } |
| 722 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 723 | static unsigned PrintActions1(const Compilation &C, Action *A, |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 724 | std::map<Action*, unsigned> &Ids) { |
| 725 | if (Ids.count(A)) |
| 726 | return Ids[A]; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 727 | |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 728 | std::string str; |
| 729 | llvm::raw_string_ostream os(str); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 730 | |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 731 | os << Action::getClassName(A->getKind()) << ", "; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 732 | if (InputAction *IA = dyn_cast<InputAction>(A)) { |
Daniel Dunbar | 10ffa9a | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 733 | os << "\"" << IA->getInputArg().getValue(C.getArgs()) << "\""; |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 734 | } else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 735 | os << '"' << (BIA->getArchName() ? BIA->getArchName() : |
Daniel Dunbar | 10ffa9a | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 736 | C.getDefaultToolChain().getArchName()) << '"' |
| 737 | << ", {" << PrintActions1(C, *BIA->begin(), Ids) << "}"; |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 738 | } else { |
| 739 | os << "{"; |
| 740 | for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) { |
Daniel Dunbar | 10ffa9a | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 741 | os << PrintActions1(C, *it, Ids); |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 742 | ++it; |
| 743 | if (it != ie) |
| 744 | os << ", "; |
| 745 | } |
| 746 | os << "}"; |
| 747 | } |
| 748 | |
| 749 | unsigned Id = Ids.size(); |
| 750 | Ids[A] = Id; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 751 | llvm::errs() << Id << ": " << os.str() << ", " |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 752 | << types::getTypeName(A->getType()) << "\n"; |
| 753 | |
| 754 | return Id; |
| 755 | } |
| 756 | |
Daniel Dunbar | 10ffa9a | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 757 | void Driver::PrintActions(const Compilation &C) const { |
Daniel Dunbar | ba10213 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 758 | std::map<Action*, unsigned> Ids; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 759 | for (ActionList::const_iterator it = C.getActions().begin(), |
Daniel Dunbar | 10ffa9a | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 760 | ie = C.getActions().end(); it != ie; ++it) |
| 761 | PrintActions1(C, *it, Ids); |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 762 | } |
| 763 | |
Joerg Sonnenberger | 9d0fbea | 2011-05-06 14:05:11 +0000 | [diff] [blame] | 764 | /// \brief Check whether the given input tree contains any compilation or |
| 765 | /// assembly actions. |
| 766 | static bool ContainsCompileOrAssembleAction(const Action *A) { |
Daniel Dunbar | b5e2f69 | 2010-06-29 16:38:33 +0000 | [diff] [blame] | 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) |
Joerg Sonnenberger | 9d0fbea | 2011-05-06 14:05:11 +0000 | [diff] [blame] | 771 | if (ContainsCompileOrAssembleAction(*it)) |
Daniel Dunbar | b5e2f69 | 2010-06-29 16:38:33 +0000 | [diff] [blame] | 772 | return true; |
| 773 | |
| 774 | return false; |
| 775 | } |
| 776 | |
Daniel Dunbar | 74edcea | 2010-08-02 05:43:51 +0000 | [diff] [blame] | 777 | void Driver::BuildUniversalActions(const ToolChain &TC, |
Joerg Sonnenberger | 65f7165 | 2011-03-07 01:15:29 +0000 | [diff] [blame] | 778 | const DerivedArgList &Args, |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 779 | const InputList &BAInputs, |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 780 | ActionList &Actions) const { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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). |
Daniel Dunbar | 1368954 | 2009-03-13 20:33:35 +0000 | [diff] [blame] | 784 | llvm::StringSet<> ArchNames; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 785 | SmallVector<const char *, 4> Archs; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 786 | for (ArgList::const_iterator it = Args.begin(), ie = Args.end(); |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 787 | it != ie; ++it) { |
| 788 | Arg *A = *it; |
| 789 | |
Daniel Dunbar | b827a05 | 2009-11-19 03:26:40 +0000 | [diff] [blame] | 790 | if (A->getOption().matches(options::OPT_arch)) { |
Daniel Dunbar | 36df290 | 2009-09-08 23:37:30 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | 7587719 | 2009-03-19 07:55:12 +0000 | [diff] [blame] | 801 | A->claim(); |
Daniel Dunbar | 3f30ddf | 2009-09-08 23:37:02 +0000 | [diff] [blame] | 802 | if (ArchNames.insert(A->getValue(Args))) |
| 803 | Archs.push_back(A->getValue(Args)); |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 804 | } |
| 805 | } |
| 806 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | 10ffa9a | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 809 | if (!Archs.size()) |
| 810 | Archs.push_back(0); |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 811 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 815 | if (Archs.size() > 1) { |
| 816 | // No recovery needed, the point of this is just to prevent |
| 817 | // overwriting the same files. |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 818 | if (const Arg *A = Args.getLastArg(options::OPT_save_temps)) |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 819 | Diag(clang::diag::err_drv_invalid_opt_with_multiple_archs) |
Daniel Dunbar | 38dd3d5 | 2009-03-20 06:14:23 +0000 | [diff] [blame] | 820 | << A->getAsString(Args); |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | ActionList SingleActions; |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 824 | BuildActions(TC, Args, BAInputs, SingleActions); |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 825 | |
Daniel Dunbar | be1cc3e | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 826 | // Add in arch bindings for every top level action, as well as lipo and |
| 827 | // dsymutil steps if needed. |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 828 | for (unsigned i = 0, e = SingleActions.size(); i != e; ++i) { |
| 829 | Action *Act = SingleActions[i]; |
| 830 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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 |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 835 | // -save-temps. Compatibility wins for now. |
| 836 | |
Daniel Dunbar | 3dbd6c5 | 2009-03-13 17:46:02 +0000 | [diff] [blame] | 837 | if (Archs.size() > 1 && !types::canLipoType(Act->getType())) |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 838 | Diag(clang::diag::err_drv_invalid_output_with_multiple_archs) |
| 839 | << types::getTypeName(Act->getType()); |
| 840 | |
| 841 | ActionList Inputs; |
Daniel Dunbar | 32c1a2a | 2010-03-11 18:04:58 +0000 | [diff] [blame] | 842 | for (unsigned i = 0, e = Archs.size(); i != e; ++i) { |
Daniel Dunbar | 1368954 | 2009-03-13 20:33:35 +0000 | [diff] [blame] | 843 | Inputs.push_back(new BindArchAction(Act, Archs[i])); |
Daniel Dunbar | 32c1a2a | 2010-03-11 18:04:58 +0000 | [diff] [blame] | 844 | if (i != 0) |
| 845 | Inputs.back()->setOwnsInputs(false); |
| 846 | } |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 847 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 848 | // Lipo if necessary, we do it this way because we need to set the arch flag |
| 849 | // so that -Xarch_ gets overwritten. |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 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())); |
Daniel Dunbar | be1cc3e | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 854 | |
Daniel Dunbar | b5e2f69 | 2010-06-29 16:38:33 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | be1cc3e | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 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) && |
Daniel Dunbar | b5e2f69 | 2010-06-29 16:38:33 +0000 | [diff] [blame] | 862 | !A->getOption().matches(options::OPT_gstabs) && |
Joerg Sonnenberger | 9d0fbea | 2011-05-06 14:05:11 +0000 | [diff] [blame] | 863 | ContainsCompileOrAssembleAction(Actions.back())) { |
Daniel Dunbar | be1cc3e | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 864 | ActionList Inputs; |
| 865 | Inputs.push_back(Actions.back()); |
| 866 | Actions.pop_back(); |
| 867 | |
| 868 | Actions.push_back(new DsymutilJobAction(Inputs, types::TY_dSYM)); |
Eric Christopher | f857186 | 2011-08-23 17:56:55 +0000 | [diff] [blame] | 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 |
Daniel Dunbar | be1cc3e | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 882 | } |
| 883 | } |
Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 884 | } |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 885 | } |
| 886 | |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 887 | // Construct a the list of inputs and their types. |
| 888 | void Driver::BuildInputs(const ToolChain &TC, const DerivedArgList &Args, |
| 889 | InputList &Inputs) const { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | 83dd21f | 2009-03-13 17:57:10 +0000 | [diff] [blame] | 893 | types::ID InputType = types::TY_Nothing; |
| 894 | Arg *InputTypeArg = 0; |
| 895 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 896 | for (ArgList::const_iterator it = Args.begin(), ie = Args.end(); |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | 83dd21f | 2009-03-13 17:57:10 +0000 | [diff] [blame] | 905 | if (InputType == types::TY_Nothing) { |
| 906 | // If there was an explicit arg for this, claim it. |
| 907 | if (InputTypeArg) |
| 908 | InputTypeArg->claim(); |
| 909 | |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 910 | // stdin must be handled specially. |
| 911 | if (memcmp(Value, "-", 2) == 0) { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 914 | // |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 915 | // Otherwise emit an error but still use a valid type to avoid |
| 916 | // spurious errors (e.g., no inputs). |
Joerg Sonnenberger | 9ade4ae | 2011-03-06 23:31:01 +0000 | [diff] [blame] | 917 | if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP) |
Daniel Dunbar | b897f5d | 2009-03-12 09:13:48 +0000 | [diff] [blame] | 918 | Diag(clang::diag::err_drv_unknown_stdin_type); |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 919 | Ty = types::TY_C; |
| 920 | } else { |
Joerg Sonnenberger | 9a2927c | 2011-03-16 22:45:02 +0000 | [diff] [blame] | 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 |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 924 | // idea of what .s is. |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 925 | if (const char *Ext = strrchr(Value, '.')) |
Daniel Dunbar | 4180011 | 2010-08-02 05:43:56 +0000 | [diff] [blame] | 926 | Ty = TC.LookupTypeForExtension(Ext + 1); |
Daniel Dunbar | e33bea4 | 2009-03-20 23:39:23 +0000 | [diff] [blame] | 927 | |
Joerg Sonnenberger | 9a2927c | 2011-03-16 22:45:02 +0000 | [diff] [blame] | 928 | if (Ty == types::TY_INVALID) { |
| 929 | if (CCCIsCPP) |
| 930 | Ty = types::TY_C; |
| 931 | else |
| 932 | Ty = types::TY_Object; |
| 933 | } |
Daniel Dunbar | 51679c5 | 2010-02-17 20:32:58 +0000 | [diff] [blame] | 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 | } |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 945 | } |
| 946 | |
Daniel Dunbar | 683ca38 | 2009-05-18 21:47:54 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 950 | // |
Daniel Dunbar | 683ca38 | 2009-05-18 21:47:54 +0000 | [diff] [blame] | 951 | // FIXME: Clean this up if we move the phase sequence into the type. |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | 3bd54cc | 2010-01-25 00:44:02 +0000 | [diff] [blame] | 964 | // Check that the file exists, if enabled. |
Argyrios Kyrtzidis | 389db16 | 2010-11-03 22:45:23 +0000 | [diff] [blame] | 965 | if (CheckInputsExist && memcmp(Value, "-", 2) != 0) { |
Michael J. Spencer | 256053b | 2010-12-17 21:22:22 +0000 | [diff] [blame] | 966 | llvm::SmallString<64> Path(Value); |
Argyrios Kyrtzidis | 389db16 | 2010-11-03 22:45:23 +0000 | [diff] [blame] | 967 | if (Arg *WorkDir = Args.getLastArg(options::OPT_working_directory)) |
Michael J. Spencer | 256053b | 2010-12-17 21:22:22 +0000 | [diff] [blame] | 968 | if (llvm::sys::path::is_absolute(Path.str())) { |
Argyrios Kyrtzidis | 389db16 | 2010-11-03 22:45:23 +0000 | [diff] [blame] | 969 | Path = WorkDir->getValue(Args); |
Michael J. Spencer | 256053b | 2010-12-17 21:22:22 +0000 | [diff] [blame] | 970 | llvm::sys::path::append(Path, Value); |
Argyrios Kyrtzidis | 389db16 | 2010-11-03 22:45:23 +0000 | [diff] [blame] | 971 | } |
| 972 | |
Michael J. Spencer | 256053b | 2010-12-17 21:22:22 +0000 | [diff] [blame] | 973 | bool exists = false; |
| 974 | if (/*error_code ec =*/llvm::sys::fs::exists(Value, exists) || !exists) |
Argyrios Kyrtzidis | 389db16 | 2010-11-03 22:45:23 +0000 | [diff] [blame] | 975 | Diag(clang::diag::err_drv_no_such_file) << Path.str(); |
| 976 | else |
| 977 | Inputs.push_back(std::make_pair(Ty, A)); |
| 978 | } else |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 979 | Inputs.push_back(std::make_pair(Ty, A)); |
| 980 | |
| 981 | } else if (A->getOption().isLinkerInput()) { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 982 | // Just treat as object type, we could make a special type for this if |
| 983 | // necessary. |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 984 | Inputs.push_back(std::make_pair(types::TY_Object, A)); |
| 985 | |
Daniel Dunbar | b827a05 | 2009-11-19 03:26:40 +0000 | [diff] [blame] | 986 | } else if (A->getOption().matches(options::OPT_x)) { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 987 | InputTypeArg = A; |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 988 | InputType = types::lookupTypeForTypeSpecifier(A->getValue(Args)); |
| 989 | |
| 990 | // Follow gcc behavior and treat as linker input for invalid -x |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 991 | // options. Its not clear why we shouldn't just revert to unknown; but |
Michael J. Spencer | 74cae0c | 2010-12-17 21:22:33 +0000 | [diff] [blame] | 992 | // this isn't very important, we might as well be bug compatible. |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 993 | if (!InputType) { |
Daniel Dunbar | b897f5d | 2009-03-12 09:13:48 +0000 | [diff] [blame] | 994 | Diag(clang::diag::err_drv_unknown_language) << A->getValue(Args); |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 995 | InputType = types::TY_Object; |
| 996 | } |
| 997 | } |
| 998 | } |
Joerg Sonnenberger | 9ade4ae | 2011-03-06 23:31:01 +0000 | [diff] [blame] | 999 | if (CCCIsCPP && Inputs.empty()) { |
| 1000 | // If called as standalone preprocessor, stdin is processed |
| 1001 | // if no other input is present. |
Joerg Sonnenberger | 65f7165 | 2011-03-07 01:15:29 +0000 | [diff] [blame] | 1002 | unsigned Index = Args.getBaseArgs().MakeIndex("-"); |
Joerg Sonnenberger | 9ade4ae | 2011-03-06 23:31:01 +0000 | [diff] [blame] | 1003 | Arg *A = Opts->ParseOneArg(Args, Index); |
| 1004 | A->claim(); |
| 1005 | Inputs.push_back(std::make_pair(types::TY_C, A)); |
| 1006 | } |
Chad Rosier | be69f60 | 2011-08-12 22:08:57 +0000 | [diff] [blame] | 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"); |
Joerg Sonnenberger | 9ade4ae | 2011-03-06 23:31:01 +0000 | [diff] [blame] | 1012 | |
Daniel Dunbar | 8b1604e | 2009-03-13 00:17:48 +0000 | [diff] [blame] | 1013 | if (!SuppressMissingInputWarning && Inputs.empty()) { |
Daniel Dunbar | af61c71 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 1014 | Diag(clang::diag::err_drv_no_input_files); |
| 1015 | return; |
| 1016 | } |
| 1017 | |
Chad Rosier | 1fc1de4 | 2011-07-27 23:36:45 +0000 | [diff] [blame] | 1018 | Arg *FinalPhaseArg; |
| 1019 | phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg); |
Daniel Dunbar | af61c71 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 1020 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1021 | // Reject -Z* at the top level, these options should never have been exposed |
| 1022 | // by gcc. |
Daniel Dunbar | d7b88c2 | 2009-03-26 16:12:09 +0000 | [diff] [blame] | 1023 | if (Arg *A = Args.getLastArg(options::OPT_Z_Joined)) |
Daniel Dunbar | 38dd3d5 | 2009-03-20 06:14:23 +0000 | [diff] [blame] | 1024 | Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args); |
Daniel Dunbar | af61c71 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 1025 | |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1026 | // Construct the actions to perform. |
| 1027 | ActionList LinkerInputs; |
Chad Rosier | 5183b3d | 2011-11-05 15:56:33 +0000 | [diff] [blame] | 1028 | unsigned NumSteps = 0; |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 1029 | for (unsigned i = 0, e = Inputs.size(); i != e; ++i) { |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1030 | types::ID InputType = Inputs[i].first; |
| 1031 | const Arg *InputArg = Inputs[i].second; |
| 1032 | |
Chad Rosier | 5183b3d | 2011-11-05 15:56:33 +0000 | [diff] [blame] | 1033 | NumSteps = types::getNumCompilationPhases(InputType); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1034 | assert(NumSteps && "Invalid number of steps!"); |
| 1035 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1036 | // If the first step comes after the final phase we are doing as part of |
| 1037 | // this compilation, warn the user about it. |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1038 | phases::ID InitialPhase = types::getCompilationPhase(InputType, 0); |
| 1039 | if (InitialPhase > FinalPhase) { |
Daniel Dunbar | 05494a7 | 2009-03-19 07:57:08 +0000 | [diff] [blame] | 1040 | // Claim here to avoid the more general unused warning. |
| 1041 | InputArg->claim(); |
Daniel Dunbar | 634b245 | 2009-09-17 04:13:26 +0000 | [diff] [blame] | 1042 | |
Daniel Dunbar | 32c8cb6 | 2011-04-20 15:44:48 +0000 | [diff] [blame] | 1043 | // Suppress all unused style warnings with -Qunused-arguments |
| 1044 | if (Args.hasArg(options::OPT_Qunused_arguments)) |
| 1045 | continue; |
| 1046 | |
Daniel Dunbar | 634b245 | 2009-09-17 04:13:26 +0000 | [diff] [blame] | 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(); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1059 | continue; |
| 1060 | } |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1061 | |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1062 | // Build the pipeline for this file. |
Ted Kremenek | 4d7b147 | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 1063 | llvm::OwningPtr<Action> Current(new InputAction(*InputArg, InputType)); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 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."); |
Ted Kremenek | 4d7b147 | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 1074 | LinkerInputs.push_back(Current.take()); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1075 | break; |
| 1076 | } |
| 1077 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | 337a627 | 2009-03-24 20:17:30 +0000 | [diff] [blame] | 1081 | if (Phase == phases::Assemble && Current->getType() != types::TY_PP_Asm) |
| 1082 | continue; |
| 1083 | |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1084 | // Otherwise construct the appropriate action. |
Ted Kremenek | 4d7b147 | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 1085 | Current.reset(ConstructPhaseAction(Args, Phase, Current.take())); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 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) |
Ted Kremenek | 4d7b147 | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 1092 | Actions.push_back(Current.take()); |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 1093 | } |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1094 | |
| 1095 | // Add a link action if necessary. |
| 1096 | if (!LinkerInputs.empty()) |
| 1097 | Actions.push_back(new LinkJobAction(LinkerInputs, types::TY_Image)); |
Daniel Dunbar | f360138 | 2009-12-22 23:19:32 +0000 | [diff] [blame] | 1098 | |
| 1099 | // If we are linking, claim any options which are obviously only used for |
| 1100 | // compilation. |
Chad Rosier | 5183b3d | 2011-11-05 15:56:33 +0000 | [diff] [blame] | 1101 | if (FinalPhase == phases::Link && (NumSteps == 1)) |
Daniel Dunbar | f360138 | 2009-12-22 23:19:32 +0000 | [diff] [blame] | 1102 | Args.ClaimAllArgs(options::OPT_CompileOnly_Group); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1103 | } |
| 1104 | |
| 1105 | Action *Driver::ConstructPhaseAction(const ArgList &Args, phases::ID Phase, |
| 1106 | Action *Input) const { |
Daniel Dunbar | 8f25c79 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 1107 | llvm::PrettyStackTraceString CrashInfo("Constructing phase actions"); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1108 | // Build the appropriate action. |
| 1109 | switch (Phase) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1110 | case phases::Link: llvm_unreachable("link action invalid here."); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1111 | case phases::Preprocess: { |
Daniel Dunbar | cd8e4c4 | 2009-03-30 06:36:42 +0000 | [diff] [blame] | 1112 | types::ID OutputTy; |
| 1113 | // -{M, MM} alter the output type. |
Daniel Dunbar | 9eb93b0 | 2010-12-08 21:33:40 +0000 | [diff] [blame] | 1114 | if (Args.hasArg(options::OPT_M, options::OPT_MM)) { |
Daniel Dunbar | cd8e4c4 | 2009-03-30 06:36:42 +0000 | [diff] [blame] | 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 | } |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1121 | return new PreprocessJobAction(Input, OutputTy); |
| 1122 | } |
| 1123 | case phases::Precompile: |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1124 | return new PrecompileJobAction(Input, types::TY_PCH); |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1125 | case phases::Compile: { |
| 1126 | if (Args.hasArg(options::OPT_fsyntax_only)) { |
| 1127 | return new CompileJobAction(Input, types::TY_Nothing); |
Daniel Dunbar | 6495250 | 2010-02-11 03:16:21 +0000 | [diff] [blame] | 1128 | } else if (Args.hasArg(options::OPT_rewrite_objc)) { |
| 1129 | return new CompileJobAction(Input, types::TY_RewrittenObjC); |
Daniel Dunbar | 63be57a | 2009-05-06 02:12:32 +0000 | [diff] [blame] | 1130 | } else if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto)) { |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 1131 | return new AnalyzeJobAction(Input, types::TY_Plist); |
Daniel Dunbar | 5915fbf | 2009-09-01 16:57:46 +0000 | [diff] [blame] | 1132 | } else if (Args.hasArg(options::OPT_emit_ast)) { |
| 1133 | return new CompileJobAction(Input, types::TY_AST); |
Daniel Dunbar | ed79895 | 2011-06-21 20:55:08 +0000 | [diff] [blame] | 1134 | } else if (IsUsingLTO(Args)) { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1135 | types::ID Output = |
Daniel Dunbar | 6c6424b | 2010-06-07 23:28:45 +0000 | [diff] [blame] | 1136 | Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC; |
Daniel Dunbar | ad2a9af | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 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 | |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1146 | llvm_unreachable("invalid phase in ConstructPhaseAction"); |
Daniel Dunbar | 53ec552 | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 1147 | } |
| 1148 | |
Daniel Dunbar | ed79895 | 2011-06-21 20:55:08 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 1162 | void Driver::BuildJobs(Compilation &C) const { |
Daniel Dunbar | 8f25c79 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 1163 | llvm::PrettyStackTraceString CrashInfo("Building compilation jobs"); |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1164 | |
| 1165 | Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o); |
| 1166 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1167 | // It is an error to provide a -o option if we are making multiple output |
| 1168 | // files. |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1169 | if (FinalOutput) { |
| 1170 | unsigned NumOutputs = 0; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1171 | for (ActionList::const_iterator it = C.getActions().begin(), |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 1172 | ie = C.getActions().end(); it != ie; ++it) |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1173 | if ((*it)->getType() != types::TY_Nothing) |
| 1174 | ++NumOutputs; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1175 | |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1176 | if (NumOutputs > 1) { |
| 1177 | Diag(clang::diag::err_drv_output_argument_with_multiple_files); |
| 1178 | FinalOutput = 0; |
| 1179 | } |
| 1180 | } |
| 1181 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1182 | for (ActionList::const_iterator it = C.getActions().begin(), |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 1183 | ie = C.getActions().end(); it != ie; ++it) { |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1184 | Action *A = *it; |
| 1185 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1189 | // |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1190 | // FIXME: This is a hack; find a cleaner way to integrate this into the |
| 1191 | // process. |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1192 | const char *LinkingOutput = 0; |
Daniel Dunbar | d7b88c2 | 2009-03-26 16:12:09 +0000 | [diff] [blame] | 1193 | if (isa<LipoJobAction>(A)) { |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1194 | if (FinalOutput) |
| 1195 | LinkingOutput = FinalOutput->getValue(C.getArgs()); |
| 1196 | else |
| 1197 | LinkingOutput = DefaultImageName.c_str(); |
| 1198 | } |
| 1199 | |
| 1200 | InputInfo II; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1201 | BuildJobsForAction(C, A, &C.getDefaultToolChain(), |
Daniel Dunbar | 4954018 | 2009-09-09 18:36:01 +0000 | [diff] [blame] | 1202 | /*BoundArch*/0, |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1203 | /*AtTopLevel*/ true, |
| 1204 | /*LinkingOutput*/ LinkingOutput, |
| 1205 | II); |
| 1206 | } |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 1207 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1208 | // If the user passed -Qunused-arguments or there were errors, don't warn |
| 1209 | // about any unused arguments. |
Argyrios Kyrtzidis | be3aab6 | 2010-11-18 21:47:07 +0000 | [diff] [blame] | 1210 | if (Diags.hasErrorOccurred() || |
Daniel Dunbar | 1e23f5f | 2009-04-07 19:04:18 +0000 | [diff] [blame] | 1211 | C.getArgs().hasArg(options::OPT_Qunused_arguments)) |
Daniel Dunbar | af2e4ba | 2009-03-18 18:03:46 +0000 | [diff] [blame] | 1212 | return; |
| 1213 | |
Daniel Dunbar | a2094e7 | 2009-03-29 22:24:54 +0000 | [diff] [blame] | 1214 | // Claim -### here. |
| 1215 | (void) C.getArgs().hasArg(options::OPT__HASH_HASH_HASH); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1216 | |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 1217 | for (ArgList::const_iterator it = C.getArgs().begin(), ie = C.getArgs().end(); |
| 1218 | it != ie; ++it) { |
| 1219 | Arg *A = *it; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1220 | |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 1221 | // FIXME: It would be nice to be able to send the argument to the |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 1222 | // DiagnosticsEngine, so that extra values, position, and so on could be |
| 1223 | // printed. |
Daniel Dunbar | 4f53b29 | 2009-04-04 00:52:26 +0000 | [diff] [blame] | 1224 | if (!A->isClaimed()) { |
Daniel Dunbar | 1e23f5f | 2009-04-07 19:04:18 +0000 | [diff] [blame] | 1225 | if (A->getOption().hasNoArgumentUnused()) |
| 1226 | continue; |
| 1227 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1228 | // Suppress the warning automatically if this is just a flag, and it is an |
| 1229 | // instance of an argument we already claimed. |
Daniel Dunbar | 4f53b29 | 2009-04-04 00:52:26 +0000 | [diff] [blame] | 1230 | const Option &Opt = A->getOption(); |
| 1231 | if (isa<FlagOption>(Opt)) { |
| 1232 | bool DuplicateClaimed = false; |
| 1233 | |
Daniel Dunbar | cdd9686 | 2009-11-25 11:53:23 +0000 | [diff] [blame] | 1234 | for (arg_iterator it = C.getArgs().filtered_begin(&Opt), |
| 1235 | ie = C.getArgs().filtered_end(); it != ie; ++it) { |
| 1236 | if ((*it)->isClaimed()) { |
Daniel Dunbar | 4f53b29 | 2009-04-04 00:52:26 +0000 | [diff] [blame] | 1237 | DuplicateClaimed = true; |
| 1238 | break; |
| 1239 | } |
| 1240 | } |
| 1241 | |
| 1242 | if (DuplicateClaimed) |
| 1243 | continue; |
| 1244 | } |
| 1245 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1246 | Diag(clang::diag::warn_drv_unused_argument) |
Daniel Dunbar | 38dd3d5 | 2009-03-20 06:14:23 +0000 | [diff] [blame] | 1247 | << A->getAsString(C.getArgs()); |
Daniel Dunbar | 4f53b29 | 2009-04-04 00:52:26 +0000 | [diff] [blame] | 1248 | } |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 1249 | } |
Daniel Dunbar | 57b704d | 2009-03-13 22:12:33 +0000 | [diff] [blame] | 1250 | } |
| 1251 | |
Daniel Dunbar | 8767cbc | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 1260 | |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 1261 | if (C.getArgs().hasFlag(options::OPT_integrated_as, |
Bob Wilson | 1a1764b | 2011-10-30 00:20:28 +0000 | [diff] [blame] | 1262 | options::OPT_no_integrated_as, |
| 1263 | TC->IsIntegratedAssemblerDefault()) && |
Daniel Dunbar | 8767cbc | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 1264 | !C.getArgs().hasArg(options::OPT_save_temps) && |
| 1265 | isa<AssembleJobAction>(JA) && |
| 1266 | Inputs->size() == 1 && isa<CompileJobAction>(*Inputs->begin())) { |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 1267 | const Tool &Compiler = TC->SelectTool( |
| 1268 | C, cast<JobAction>(**Inputs->begin()), (*Inputs)[0]->getInputs()); |
Daniel Dunbar | 8767cbc | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 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) |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 1277 | ToolForJob = &TC->SelectTool(C, *JA, *Inputs); |
Daniel Dunbar | 8767cbc | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1292 | void Driver::BuildJobsForAction(Compilation &C, |
| 1293 | const Action *A, |
| 1294 | const ToolChain *TC, |
Daniel Dunbar | 4954018 | 2009-09-09 18:36:01 +0000 | [diff] [blame] | 1295 | const char *BoundArch, |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1296 | bool AtTopLevel, |
| 1297 | const char *LinkingOutput, |
| 1298 | InputInfo &Result) const { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1299 | llvm::PrettyStackTraceString CrashInfo("Building compilation jobs"); |
Daniel Dunbar | 60ccc76 | 2009-03-18 23:18:19 +0000 | [diff] [blame] | 1300 | |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1301 | if (const InputAction *IA = dyn_cast<InputAction>(A)) { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1302 | // FIXME: It would be nice to not claim this here; maybe the old scheme of |
| 1303 | // just using Args was better? |
Daniel Dunbar | 115a792 | 2009-03-19 07:29:38 +0000 | [diff] [blame] | 1304 | const Arg &Input = IA->getInputArg(); |
| 1305 | Input.claim(); |
Daniel Dunbar | 532c1ec | 2010-06-09 22:31:08 +0000 | [diff] [blame] | 1306 | if (Input.getOption().matches(options::OPT_INPUT)) { |
Daniel Dunbar | 115a792 | 2009-03-19 07:29:38 +0000 | [diff] [blame] | 1307 | const char *Name = Input.getValue(C.getArgs()); |
| 1308 | Result = InputInfo(Name, A->getType(), Name); |
| 1309 | } else |
| 1310 | Result = InputInfo(&Input, A->getType(), ""); |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1311 | return; |
| 1312 | } |
| 1313 | |
| 1314 | if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) { |
Daniel Dunbar | d7502d0 | 2009-09-08 23:37:19 +0000 | [diff] [blame] | 1315 | const ToolChain *TC = &C.getDefaultToolChain(); |
| 1316 | |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1317 | std::string Arch; |
Daniel Dunbar | d7502d0 | 2009-09-08 23:37:19 +0000 | [diff] [blame] | 1318 | if (BAA->getArchName()) |
| 1319 | TC = Host->CreateToolChain(C.getArgs(), BAA->getArchName()); |
| 1320 | |
Daniel Dunbar | 4954018 | 2009-09-09 18:36:01 +0000 | [diff] [blame] | 1321 | BuildJobsForAction(C, *BAA->begin(), TC, BAA->getArchName(), |
Daniel Dunbar | e434125 | 2010-08-02 02:38:12 +0000 | [diff] [blame] | 1322 | AtTopLevel, LinkingOutput, Result); |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1323 | return; |
| 1324 | } |
| 1325 | |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1326 | const ActionList *Inputs = &A->getInputs(); |
Daniel Dunbar | 8767cbc | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 1327 | |
| 1328 | const JobAction *JA = cast<JobAction>(A); |
| 1329 | const Tool &T = SelectToolForJob(C, TC, JA, Inputs); |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1330 | |
| 1331 | // Only use pipes when there is exactly one input. |
Daniel Dunbar | 47ac7d2 | 2009-03-18 06:00:36 +0000 | [diff] [blame] | 1332 | InputInfoList InputInfos; |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1333 | for (ActionList::const_iterator it = Inputs->begin(), ie = Inputs->end(); |
| 1334 | it != ie; ++it) { |
Daniel Dunbar | be1cc3e | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 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 | |
Eric Christopher | f857186 | 2011-08-23 17:56:55 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1348 | InputInfo II; |
Daniel Dunbar | e434125 | 2010-08-02 02:38:12 +0000 | [diff] [blame] | 1349 | BuildJobsForAction(C, *it, TC, BoundArch, |
Daniel Dunbar | be1cc3e | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 1350 | SubJobAtTopLevel, LinkingOutput, II); |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1351 | InputInfos.push_back(II); |
| 1352 | } |
| 1353 | |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1354 | // Always use the first input as the base input. |
| 1355 | const char *BaseInput = InputInfos[0].getBaseInput(); |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1356 | |
Daniel Dunbar | be1cc3e | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | 9b18cca | 2010-08-02 02:38:15 +0000 | [diff] [blame] | 1362 | // Determine the place to write output to, if any. |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1363 | if (JA->getType() == types::TY_Nothing) { |
Daniel Dunbar | 5c3c1d7 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 1364 | Result = InputInfo(A->getType(), BaseInput); |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1365 | } else { |
Daniel Dunbar | 5c3c1d7 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 1366 | Result = InputInfo(GetNamedOutputPath(C, *JA, BaseInput, AtTopLevel), |
| 1367 | A->getType(), BaseInput); |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1368 | } |
| 1369 | |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 1370 | if (CCCPrintBindings && !CCGenDiagnostics) { |
Daniel Dunbar | cd8e4c4 | 2009-03-30 06:36:42 +0000 | [diff] [blame] | 1371 | llvm::errs() << "# \"" << T.getToolChain().getTripleString() << '"' |
| 1372 | << " - \"" << T.getName() << "\", inputs: ["; |
Daniel Dunbar | 5c3c1d7 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 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 { |
Daniel Dunbar | 2fe238e | 2010-08-02 02:38:28 +0000 | [diff] [blame] | 1380 | T.ConstructJob(C, *JA, Result, InputInfos, |
Daniel Dunbar | 4954018 | 2009-09-09 18:36:01 +0000 | [diff] [blame] | 1381 | C.getArgsForToolChain(TC, BoundArch), LinkingOutput); |
Daniel Dunbar | 5c3c1d7 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 1382 | } |
Daniel Dunbar | f353c8c | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1383 | } |
| 1384 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1385 | const char *Driver::GetNamedOutputPath(Compilation &C, |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1386 | const JobAction &JA, |
| 1387 | const char *BaseInput, |
| 1388 | bool AtTopLevel) const { |
Daniel Dunbar | 8f25c79 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 1389 | llvm::PrettyStackTraceString CrashInfo("Computing output path"); |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1390 | // Output to a user requested destination? |
Eric Christopher | f857186 | 2011-08-23 17:56:55 +0000 | [diff] [blame] | 1391 | if (AtTopLevel && !isa<DsymutilJobAction>(JA) && |
| 1392 | !isa<VerifyJobAction>(JA)) { |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1393 | if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o)) |
| 1394 | return C.addResultFile(FinalOutput->getValue(C.getArgs())); |
| 1395 | } |
| 1396 | |
Nick Lewycky | bfd2124 | 2010-09-24 00:46:53 +0000 | [diff] [blame] | 1397 | // Default to writing to stdout? |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 1398 | if (AtTopLevel && isa<PreprocessJobAction>(JA) && !CCGenDiagnostics) |
Nick Lewycky | bfd2124 | 2010-09-24 00:46:53 +0000 | [diff] [blame] | 1399 | return "-"; |
| 1400 | |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1401 | // Output to a temporary file? |
Chad Rosier | 2b81910 | 2011-08-02 17:58:04 +0000 | [diff] [blame] | 1402 | if ((!AtTopLevel && !C.getArgs().hasArg(options::OPT_save_temps)) || |
| 1403 | CCGenDiagnostics) { |
Chad Rosier | f43b5e8 | 2011-08-26 22:27:02 +0000 | [diff] [blame] | 1404 | StringRef Name = llvm::sys::path::filename(BaseInput); |
| 1405 | std::pair<StringRef, StringRef> Split = Name.split('.'); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1406 | std::string TmpName = |
Chad Rosier | f43b5e8 | 2011-08-26 22:27:02 +0000 | [diff] [blame] | 1407 | GetTemporaryPath(Split.first, types::getTypeTempSuffix(JA.getType())); |
Daniel Dunbar | 214399e | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1408 | return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str())); |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1409 | } |
| 1410 | |
Michael J. Spencer | 472ccff | 2010-12-18 00:19:12 +0000 | [diff] [blame] | 1411 | llvm::SmallString<128> BasePath(BaseInput); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1412 | StringRef BaseName; |
Daniel Dunbar | 59f9046 | 2011-03-25 18:16:51 +0000 | [diff] [blame] | 1413 | |
| 1414 | // Dsymutil actions should use the full path. |
Eric Christopher | f857186 | 2011-08-23 17:56:55 +0000 | [diff] [blame] | 1415 | if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA)) |
Daniel Dunbar | 59f9046 | 2011-03-25 18:16:51 +0000 | [diff] [blame] | 1416 | BaseName = BasePath; |
| 1417 | else |
| 1418 | BaseName = llvm::sys::path::filename(BasePath); |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 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 | |
Eric Christopher | 59f9b26 | 2011-08-17 22:59:59 +0000 | [diff] [blame] | 1437 | // If we're saving temps and the temp filename conflicts with the input |
Chad Rosier | 3e4d109 | 2011-07-15 21:54:29 +0000 | [diff] [blame] | 1438 | // filename, then avoid overwriting input file. |
| 1439 | if (!AtTopLevel && C.getArgs().hasArg(options::OPT_save_temps) && |
Chad Rosier | fe87fc7 | 2011-08-26 21:28:44 +0000 | [diff] [blame] | 1440 | NamedOutput == BaseName) { |
Chad Rosier | f43b5e8 | 2011-08-26 22:27:02 +0000 | [diff] [blame] | 1441 | StringRef Name = llvm::sys::path::filename(BaseInput); |
| 1442 | std::pair<StringRef, StringRef> Split = Name.split('.'); |
Chad Rosier | 3e4d109 | 2011-07-15 21:54:29 +0000 | [diff] [blame] | 1443 | std::string TmpName = |
Chad Rosier | f43b5e8 | 2011-08-26 22:27:02 +0000 | [diff] [blame] | 1444 | GetTemporaryPath(Split.first, types::getTypeTempSuffix(JA.getType())); |
Chad Rosier | 3e4d109 | 2011-07-15 21:54:29 +0000 | [diff] [blame] | 1445 | return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str())); |
| 1446 | } |
| 1447 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1448 | // As an annoying special case, PCH generation doesn't strip the pathname. |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1449 | if (JA.getType() == types::TY_PCH) { |
Michael J. Spencer | 472ccff | 2010-12-18 00:19:12 +0000 | [diff] [blame] | 1450 | llvm::sys::path::remove_filename(BasePath); |
| 1451 | if (BasePath.empty()) |
Daniel Dunbar | 56c5594 | 2009-03-18 09:58:30 +0000 | [diff] [blame] | 1452 | BasePath = NamedOutput; |
| 1453 | else |
Michael J. Spencer | 472ccff | 2010-12-18 00:19:12 +0000 | [diff] [blame] | 1454 | llvm::sys::path::append(BasePath, NamedOutput); |
Daniel Dunbar | 441d060 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1455 | return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str())); |
| 1456 | } else { |
| 1457 | return C.addResultFile(NamedOutput); |
| 1458 | } |
| 1459 | } |
| 1460 | |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1461 | std::string Driver::GetFilePath(const char *Name, const ToolChain &TC) const { |
Chandler Carruth | 48ad609 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 1462 | // Respect a limited subset of the '-Bprefix' functionality in GCC by |
| 1463 | // attempting to use this prefix when lokup up program paths. |
Benjamin Kramer | 09982ce | 2011-02-08 20:31:42 +0000 | [diff] [blame] | 1464 | for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(), |
| 1465 | ie = PrefixDirs.end(); it != ie; ++it) { |
Joerg Sonnenberger | 8ab2bdc | 2011-03-21 13:51:29 +0000 | [diff] [blame] | 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); |
Chandler Carruth | 48ad609 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 1472 | P.appendComponent(Name); |
Michael J. Spencer | 32bef4e | 2011-01-10 02:34:13 +0000 | [diff] [blame] | 1473 | bool Exists; |
| 1474 | if (!llvm::sys::fs::exists(P.str(), Exists) && Exists) |
Chandler Carruth | 48ad609 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 1475 | return P.str(); |
| 1476 | } |
| 1477 | |
Peter Collingbourne | 41ee7a3 | 2011-09-06 02:08:31 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | 0edefeb | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1484 | const ToolChain::path_list &List = TC.getFilePaths(); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1485 | for (ToolChain::path_list::const_iterator |
Daniel Dunbar | 0edefeb | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1486 | it = List.begin(), ie = List.end(); it != ie; ++it) { |
Joerg Sonnenberger | 8ab2bdc | 2011-03-21 13:51:29 +0000 | [diff] [blame] | 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); |
Daniel Dunbar | 0edefeb | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1493 | P.appendComponent(Name); |
Michael J. Spencer | 32bef4e | 2011-01-10 02:34:13 +0000 | [diff] [blame] | 1494 | bool Exists; |
| 1495 | if (!llvm::sys::fs::exists(P.str(), Exists) && Exists) |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1496 | return P.str(); |
Daniel Dunbar | 0edefeb | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1497 | } |
| 1498 | |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1499 | return Name; |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 1500 | } |
| 1501 | |
David Chisnall | 5adcec1 | 2011-09-27 22:03:18 +0000 | [diff] [blame] | 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 | |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1508 | std::string Driver::GetProgramPath(const char *Name, const ToolChain &TC, |
| 1509 | bool WantFile) const { |
David Chisnall | 5adcec1 | 2011-09-27 22:03:18 +0000 | [diff] [blame] | 1510 | std::string TargetSpecificExecutable(DefaultHostTriple + "-" + Name); |
Chandler Carruth | 48ad609 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 1511 | // Respect a limited subset of the '-Bprefix' functionality in GCC by |
| 1512 | // attempting to use this prefix when lokup up program paths. |
Benjamin Kramer | 09982ce | 2011-02-08 20:31:42 +0000 | [diff] [blame] | 1513 | for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(), |
| 1514 | ie = PrefixDirs.end(); it != ie; ++it) { |
| 1515 | llvm::sys::Path P(*it); |
David Chisnall | 5adcec1 | 2011-09-27 22:03:18 +0000 | [diff] [blame] | 1516 | P.appendComponent(TargetSpecificExecutable); |
| 1517 | if (isPathExecutable(P, WantFile)) return P.str(); |
| 1518 | P.eraseComponent(); |
Chandler Carruth | 48ad609 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 1519 | P.appendComponent(Name); |
David Chisnall | 5adcec1 | 2011-09-27 22:03:18 +0000 | [diff] [blame] | 1520 | if (isPathExecutable(P, WantFile)) return P.str(); |
Chandler Carruth | 48ad609 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 1521 | } |
| 1522 | |
Daniel Dunbar | 0edefeb | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1523 | const ToolChain::path_list &List = TC.getProgramPaths(); |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1524 | for (ToolChain::path_list::const_iterator |
Daniel Dunbar | 0edefeb | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1525 | it = List.begin(), ie = List.end(); it != ie; ++it) { |
| 1526 | llvm::sys::Path P(*it); |
David Chisnall | 5adcec1 | 2011-09-27 22:03:18 +0000 | [diff] [blame] | 1527 | P.appendComponent(TargetSpecificExecutable); |
| 1528 | if (isPathExecutable(P, WantFile)) return P.str(); |
| 1529 | P.eraseComponent(); |
Daniel Dunbar | 0edefeb | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1530 | P.appendComponent(Name); |
David Chisnall | 5adcec1 | 2011-09-27 22:03:18 +0000 | [diff] [blame] | 1531 | if (isPathExecutable(P, WantFile)) return P.str(); |
Daniel Dunbar | 0edefeb | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1532 | } |
| 1533 | |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 1534 | // If all else failed, search the path. |
David Chisnall | 5adcec1 | 2011-09-27 22:03:18 +0000 | [diff] [blame] | 1535 | llvm::sys::Path |
| 1536 | P(llvm::sys::Program::FindProgramByName(TargetSpecificExecutable)); |
| 1537 | if (!P.empty()) |
| 1538 | return P.str(); |
| 1539 | |
Benjamin Kramer | 7ca2684 | 2011-09-28 05:33:02 +0000 | [diff] [blame] | 1540 | P = llvm::sys::Path(llvm::sys::Program::FindProgramByName(Name)); |
Daniel Dunbar | 632f50e | 2009-03-18 21:34:08 +0000 | [diff] [blame] | 1541 | if (!P.empty()) |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1542 | return P.str(); |
Daniel Dunbar | 632f50e | 2009-03-18 21:34:08 +0000 | [diff] [blame] | 1543 | |
Daniel Dunbar | 5ed34f4 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1544 | return Name; |
Daniel Dunbar | cb88167 | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 1545 | } |
| 1546 | |
Chad Rosier | f43b5e8 | 2011-08-26 22:27:02 +0000 | [diff] [blame] | 1547 | std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix) |
Chad Rosier | fe87fc7 | 2011-08-26 21:28:44 +0000 | [diff] [blame] | 1548 | const { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1549 | // FIXME: This is lame; sys::Path should provide this function (in particular, |
| 1550 | // it should know how to find the temporary files dir). |
Daniel Dunbar | 214399e | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1551 | std::string Error; |
Daniel Dunbar | b03417f | 2009-04-20 20:28:21 +0000 | [diff] [blame] | 1552 | const char *TmpDir = ::getenv("TMPDIR"); |
| 1553 | if (!TmpDir) |
| 1554 | TmpDir = ::getenv("TEMP"); |
| 1555 | if (!TmpDir) |
Daniel Dunbar | 3ca7ee9 | 2009-04-21 00:25:10 +0000 | [diff] [blame] | 1556 | TmpDir = ::getenv("TMP"); |
| 1557 | if (!TmpDir) |
Daniel Dunbar | b03417f | 2009-04-20 20:28:21 +0000 | [diff] [blame] | 1558 | TmpDir = "/tmp"; |
| 1559 | llvm::sys::Path P(TmpDir); |
Chad Rosier | fe87fc7 | 2011-08-26 21:28:44 +0000 | [diff] [blame] | 1560 | P.appendComponent(Prefix); |
Daniel Dunbar | 214399e | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1561 | if (P.makeUnique(false, &Error)) { |
| 1562 | Diag(clang::diag::err_drv_unable_to_make_temp) << Error; |
| 1563 | return ""; |
| 1564 | } |
| 1565 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1566 | // FIXME: Grumble, makeUnique sometimes leaves the file around!? PR3837. |
Daniel Dunbar | 84603bc | 2009-03-18 23:08:52 +0000 | [diff] [blame] | 1567 | P.eraseFromDisk(false, 0); |
| 1568 | |
Daniel Dunbar | 214399e | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1569 | P.appendSuffix(Suffix); |
Chris Lattner | d57a7ef | 2009-08-23 22:45:33 +0000 | [diff] [blame] | 1570 | return P.str(); |
Daniel Dunbar | 214399e | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1571 | } |
| 1572 | |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1573 | const HostInfo *Driver::GetHostInfo(const char *TripleStr) const { |
Daniel Dunbar | 8f25c79 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 1574 | llvm::PrettyStackTraceString CrashInfo("Constructing host"); |
Anton Korobeynikov | 476fc67 | 2011-03-05 16:05:17 +0000 | [diff] [blame] | 1575 | llvm::Triple Triple(llvm::Triple::normalize(TripleStr).c_str()); |
Daniel Dunbar | dd98e2c | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 1576 | |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 1577 | // TCE is an osless target |
| 1578 | if (Triple.getArchName() == "tce") |
Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 1579 | return createTCEHostInfo(*this, Triple); |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 1580 | |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1581 | switch (Triple.getOS()) { |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 1582 | case llvm::Triple::AuroraUX: |
| 1583 | return createAuroraUXHostInfo(*this, Triple); |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1584 | case llvm::Triple::Darwin: |
Bob Wilson | 905c45f | 2011-10-14 05:03:44 +0000 | [diff] [blame] | 1585 | case llvm::Triple::MacOSX: |
| 1586 | case llvm::Triple::IOS: |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1587 | return createDarwinHostInfo(*this, Triple); |
| 1588 | case llvm::Triple::DragonFly: |
| 1589 | return createDragonFlyHostInfo(*this, Triple); |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 1590 | case llvm::Triple::OpenBSD: |
| 1591 | return createOpenBSDHostInfo(*this, Triple); |
Benjamin Kramer | 8e50a96 | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 1592 | case llvm::Triple::NetBSD: |
| 1593 | return createNetBSDHostInfo(*this, Triple); |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1594 | case llvm::Triple::FreeBSD: |
| 1595 | return createFreeBSDHostInfo(*this, Triple); |
Chris Lattner | 38e317d | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 1596 | case llvm::Triple::Minix: |
| 1597 | return createMinixHostInfo(*this, Triple); |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 1598 | case llvm::Triple::Linux: |
| 1599 | return createLinuxHostInfo(*this, Triple); |
Michael J. Spencer | ff58e36 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 1600 | case llvm::Triple::Win32: |
| 1601 | return createWindowsHostInfo(*this, Triple); |
| 1602 | case llvm::Triple::MinGW32: |
Michael J. Spencer | ff58e36 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 1603 | return createMinGWHostInfo(*this, Triple); |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1604 | default: |
| 1605 | return createUnknownHostInfo(*this, Triple); |
| 1606 | } |
Daniel Dunbar | dd98e2c | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 1607 | } |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1608 | |
| 1609 | bool Driver::ShouldUseClangCompiler(const Compilation &C, const JobAction &JA, |
Daniel Dunbar | a6046be | 2009-09-08 23:36:55 +0000 | [diff] [blame] | 1610 | const llvm::Triple &Triple) const { |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1611 | // Check if user requested no clang, or clang doesn't understand this type (we |
| 1612 | // only handle single inputs for now). |
Daniel Dunbar | 5915fbf | 2009-09-01 16:57:46 +0000 | [diff] [blame] | 1613 | if (!CCCUseClang || JA.size() != 1 || |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1614 | !types::isAcceptedByClang((*JA.begin())->getType())) |
| 1615 | return false; |
| 1616 | |
Daniel Dunbar | 0f99d2e | 2009-03-24 19:02:31 +0000 | [diff] [blame] | 1617 | // Otherwise make sure this is an action clang understands. |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1618 | if (isa<PreprocessJobAction>(JA)) { |
Daniel Dunbar | 6256d36 | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1619 | if (!CCCUseClangCPP) { |
| 1620 | Diag(clang::diag::warn_drv_not_using_clang_cpp); |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1621 | return false; |
Daniel Dunbar | 6256d36 | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1622 | } |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1623 | } else if (!isa<PrecompileJobAction>(JA) && !isa<CompileJobAction>(JA)) |
| 1624 | return false; |
| 1625 | |
Daniel Dunbar | 0f99d2e | 2009-03-24 19:02:31 +0000 | [diff] [blame] | 1626 | // Use clang for C++? |
Daniel Dunbar | 6256d36 | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1627 | if (!CCCUseClangCXX && types::isCXX((*JA.begin())->getType())) { |
| 1628 | Diag(clang::diag::warn_drv_not_using_clang_cxx); |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1629 | return false; |
Daniel Dunbar | 6256d36 | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1630 | } |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1631 | |
Daniel Dunbar | 6495250 | 2010-02-11 03:16:21 +0000 | [diff] [blame] | 1632 | // Always use clang for precompiling, AST generation, and rewriting, |
| 1633 | // regardless of archs. |
Daniel Dunbar | 6c6424b | 2010-06-07 23:28:45 +0000 | [diff] [blame] | 1634 | if (isa<PrecompileJobAction>(JA) || |
| 1635 | types::isOnlyAcceptedByClang(JA.getType())) |
Daniel Dunbar | fec26bd | 2009-04-16 23:10:13 +0000 | [diff] [blame] | 1636 | return true; |
| 1637 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1638 | // Finally, don't use clang if this isn't one of the user specified archs to |
| 1639 | // build. |
Daniel Dunbar | a6046be | 2009-09-08 23:36:55 +0000 | [diff] [blame] | 1640 | if (!CCCClangArchs.empty() && !CCCClangArchs.count(Triple.getArch())) { |
| 1641 | Diag(clang::diag::warn_drv_not_using_clang_arch) << Triple.getArchName(); |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1642 | return false; |
Daniel Dunbar | 6256d36 | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1643 | } |
Daniel Dunbar | af80e1f | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1644 | |
| 1645 | return true; |
| 1646 | } |
Daniel Dunbar | d73fe9b | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 1647 | |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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. |
Daniel Dunbar | d73fe9b | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 1650 | /// |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 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, |
Daniel Dunbar | d73fe9b | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 1654 | unsigned &Minor, unsigned &Micro, |
| 1655 | bool &HadExtra) { |
| 1656 | HadExtra = false; |
| 1657 | |
| 1658 | Major = Minor = Micro = 0; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1659 | if (*Str == '\0') |
Daniel Dunbar | d73fe9b | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 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; |
Daniel Dunbar | a823183 | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1668 | |
Daniel Dunbar | d73fe9b | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 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 | } |