Nick Lewycky | e47c245 | 2010-09-23 23:48:20 +0000 | [diff] [blame] | 1 | //===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===// |
Daniel Dunbar | 544ecd1 | 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 | |
Daniel Dunbar | 544ecd1 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 10 | #include "clang/Driver/Driver.h" |
Daniel Dunbar | 544ecd1 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 11 | |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 12 | #include "clang/Driver/Action.h" |
Daniel Dunbar | b2cd66b | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 13 | #include "clang/Driver/Arg.h" |
| 14 | #include "clang/Driver/ArgList.h" |
| 15 | #include "clang/Driver/Compilation.h" |
Daniel Dunbar | c0b3e95 | 2009-03-12 08:55:43 +0000 | [diff] [blame] | 16 | #include "clang/Driver/DriverDiagnostic.h" |
Daniel Dunbar | 4dff6a4 | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 17 | #include "clang/Driver/HostInfo.h" |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 18 | #include "clang/Driver/Job.h" |
Daniel Dunbar | aa76737 | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 19 | #include "clang/Driver/OptTable.h" |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 20 | #include "clang/Driver/Option.h" |
Daniel Dunbar | b2cd66b | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 21 | #include "clang/Driver/Options.h" |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 22 | #include "clang/Driver/Tool.h" |
| 23 | #include "clang/Driver/ToolChain.h" |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 24 | #include "clang/Driver/Types.h" |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 25 | |
Douglas Gregor | 7b71e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 26 | #include "clang/Basic/Version.h" |
| 27 | |
Daniel Dunbar | 628fcf4 | 2010-08-12 00:05:12 +0000 | [diff] [blame] | 28 | #include "llvm/Config/config.h" |
Daniel Dunbar | e5dc482 | 2009-03-13 20:33:35 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/StringSet.h" |
Ted Kremenek | bb1110a | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/OwningPtr.h" |
Daniel Dunbar | 2608c54 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 31 | #include "llvm/Support/PrettyStackTrace.h" |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 32 | #include "llvm/Support/raw_ostream.h" |
Michael J. Spencer | 8aaf499 | 2010-11-29 18:12:39 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Path.h" |
| 34 | #include "llvm/Support/Program.h" |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 35 | |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 36 | #include "InputInfo.h" |
| 37 | |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 38 | #include <map> |
| 39 | |
NAKAMURA Takumi | 89acd1e | 2010-10-11 02:28:42 +0000 | [diff] [blame] | 40 | #ifdef __CYGWIN__ |
| 41 | #include <cygwin/version.h> |
| 42 | #if defined(CYGWIN_VERSION_DLL_MAJOR) && CYGWIN_VERSION_DLL_MAJOR<1007 |
| 43 | #define IS_CYGWIN15 1 |
| 44 | #endif |
| 45 | #endif |
| 46 | |
Daniel Dunbar | b2cd66b | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 47 | using namespace clang::driver; |
Chris Lattner | ada1c91 | 2009-03-26 05:56:24 +0000 | [diff] [blame] | 48 | using namespace clang; |
Daniel Dunbar | b2cd66b | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 49 | |
Daniel Dunbar | e38764c | 2010-07-19 00:44:04 +0000 | [diff] [blame] | 50 | Driver::Driver(llvm::StringRef _ClangExecutable, |
Jeffrey Yasskin | 567ae47 | 2009-12-08 01:46:24 +0000 | [diff] [blame] | 51 | llvm::StringRef _DefaultHostTriple, |
| 52 | llvm::StringRef _DefaultImageName, |
Daniel Dunbar | e43887b | 2010-04-01 18:21:41 +0000 | [diff] [blame] | 53 | bool IsProduction, bool CXXIsProduction, |
| 54 | Diagnostic &_Diags) |
Daniel Dunbar | 26228a0 | 2009-11-18 20:19:36 +0000 | [diff] [blame] | 55 | : Opts(createDriverOptTable()), Diags(_Diags), |
Daniel Dunbar | e38764c | 2010-07-19 00:44:04 +0000 | [diff] [blame] | 56 | ClangExecutable(_ClangExecutable), DefaultHostTriple(_DefaultHostTriple), |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 57 | DefaultImageName(_DefaultImageName), |
Daniel Dunbar | 3babf5d | 2010-02-25 03:31:53 +0000 | [diff] [blame] | 58 | DriverTitle("clang \"gcc-compatible\" driver"), |
Daniel Dunbar | 4dff6a4 | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 59 | Host(0), |
Rafael Espindola | b2d0d40 | 2010-09-06 02:36:23 +0000 | [diff] [blame] | 60 | CCPrintOptionsFilename(0), CCCIsCXX(false), |
| 61 | CCCEcho(false), CCCPrintBindings(false), CCPrintOptions(false), CCCGenericGCCName("gcc"), |
Daniel Dunbar | 6a8efa8 | 2010-03-20 08:01:59 +0000 | [diff] [blame] | 62 | CheckInputsExist(true), CCCUseClang(true), CCCUseClangCXX(true), |
| 63 | CCCUseClangCPP(true), CCCUsePCH(true), SuppressMissingInputWarning(false) { |
Daniel Dunbar | 5564ba7 | 2009-09-22 22:31:13 +0000 | [diff] [blame] | 64 | if (IsProduction) { |
| 65 | // In a "production" build, only use clang on architectures we expect to |
| 66 | // work, and don't use clang C++. |
| 67 | // |
| 68 | // During development its more convenient to always have the driver use |
| 69 | // clang, but we don't want users to be confused when things don't work, or |
| 70 | // to file bugs for things we don't support. |
| 71 | CCCClangArchs.insert(llvm::Triple::x86); |
| 72 | CCCClangArchs.insert(llvm::Triple::x86_64); |
| 73 | CCCClangArchs.insert(llvm::Triple::arm); |
| 74 | |
Daniel Dunbar | e43887b | 2010-04-01 18:21:41 +0000 | [diff] [blame] | 75 | if (!CXXIsProduction) |
| 76 | CCCUseClangCXX = false; |
Daniel Dunbar | 5564ba7 | 2009-09-22 22:31:13 +0000 | [diff] [blame] | 77 | } |
Daniel Dunbar | 3f3e2cd | 2010-01-20 02:35:16 +0000 | [diff] [blame] | 78 | |
Daniel Dunbar | e38764c | 2010-07-19 00:44:04 +0000 | [diff] [blame] | 79 | llvm::sys::Path Executable(ClangExecutable); |
| 80 | Name = Executable.getBasename(); |
| 81 | Dir = Executable.getDirname(); |
| 82 | |
Daniel Dunbar | 3f3e2cd | 2010-01-20 02:35:16 +0000 | [diff] [blame] | 83 | // Compute the path to the resource directory. |
Chandler Carruth | 06067c5 | 2010-10-19 08:47:51 +0000 | [diff] [blame] | 84 | llvm::StringRef ClangResourceDir(CLANG_RESOURCE_DIR); |
Daniel Dunbar | 3f3e2cd | 2010-01-20 02:35:16 +0000 | [diff] [blame] | 85 | llvm::sys::Path P(Dir); |
Chandler Carruth | 06067c5 | 2010-10-19 08:47:51 +0000 | [diff] [blame] | 86 | if (ClangResourceDir != "") { |
| 87 | P.appendComponent(ClangResourceDir); |
| 88 | } else { |
| 89 | P.appendComponent(".."); // Walk up from a 'bin' subdirectory. |
| 90 | P.appendComponent("lib"); |
| 91 | P.appendComponent("clang"); |
| 92 | P.appendComponent(CLANG_VERSION_STRING); |
| 93 | } |
Daniel Dunbar | 3f3e2cd | 2010-01-20 02:35:16 +0000 | [diff] [blame] | 94 | ResourceDir = P.str(); |
Daniel Dunbar | 544ecd1 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | Driver::~Driver() { |
Daniel Dunbar | b2cd66b | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 98 | delete Opts; |
Daniel Dunbar | 0160172 | 2009-03-18 01:09:40 +0000 | [diff] [blame] | 99 | delete Host; |
Daniel Dunbar | 544ecd1 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 102 | InputArgList *Driver::ParseArgStrings(const char **ArgBegin, |
Daniel Dunbar | dac54a8 | 2009-03-25 04:13:45 +0000 | [diff] [blame] | 103 | const char **ArgEnd) { |
Daniel Dunbar | 2608c54 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 104 | llvm::PrettyStackTraceString CrashInfo("Command line argument parsing"); |
Daniel Dunbar | 52ed5fe | 2009-11-19 06:35:06 +0000 | [diff] [blame] | 105 | unsigned MissingArgIndex, MissingArgCount; |
| 106 | InputArgList *Args = getOpts().ParseArgs(ArgBegin, ArgEnd, |
| 107 | MissingArgIndex, MissingArgCount); |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 108 | |
Daniel Dunbar | 52ed5fe | 2009-11-19 06:35:06 +0000 | [diff] [blame] | 109 | // Check for missing argument error. |
| 110 | if (MissingArgCount) |
| 111 | Diag(clang::diag::err_drv_missing_argument) |
| 112 | << Args->getArgString(MissingArgIndex) << MissingArgCount; |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 113 | |
Daniel Dunbar | 52ed5fe | 2009-11-19 06:35:06 +0000 | [diff] [blame] | 114 | // Check for unsupported options. |
| 115 | for (ArgList::const_iterator it = Args->begin(), ie = Args->end(); |
| 116 | it != ie; ++it) { |
| 117 | Arg *A = *it; |
Daniel Dunbar | d8500f3 | 2009-03-22 23:26:43 +0000 | [diff] [blame] | 118 | if (A->getOption().isUnsupported()) { |
| 119 | Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(*Args); |
| 120 | continue; |
| 121 | } |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | return Args; |
| 125 | } |
| 126 | |
Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 127 | DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { |
| 128 | DerivedArgList *DAL = new DerivedArgList(Args); |
| 129 | |
Daniel Dunbar | 2cc3f17 | 2010-09-17 00:45:02 +0000 | [diff] [blame] | 130 | bool HasNostdlib = Args.hasArg(options::OPT_nostdlib); |
Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 131 | for (ArgList::const_iterator it = Args.begin(), |
Daniel Dunbar | fb3d747 | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 132 | ie = Args.end(); it != ie; ++it) { |
| 133 | const Arg *A = *it; |
| 134 | |
| 135 | // Unfortunately, we have to parse some forwarding options (-Xassembler, |
| 136 | // -Xlinker, -Xpreprocessor) because we either integrate their functionality |
| 137 | // (assembler and preprocessor), or bypass a previous driver ('collect2'). |
Daniel Dunbar | 5a9d183 | 2010-06-14 21:37:09 +0000 | [diff] [blame] | 138 | |
| 139 | // Rewrite linker options, to replace --no-demangle with a custom internal |
| 140 | // option. |
| 141 | if ((A->getOption().matches(options::OPT_Wl_COMMA) || |
| 142 | A->getOption().matches(options::OPT_Xlinker)) && |
| 143 | A->containsValue("--no-demangle")) { |
Daniel Dunbar | fb3d747 | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 144 | // Add the rewritten no-demangle argument. |
| 145 | DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle)); |
| 146 | |
| 147 | // Add the remaining values as Xlinker arguments. |
| 148 | for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) |
| 149 | if (llvm::StringRef(A->getValue(Args, i)) != "--no-demangle") |
| 150 | DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker), |
| 151 | A->getValue(Args, i)); |
| 152 | |
| 153 | continue; |
| 154 | } |
| 155 | |
Daniel Dunbar | 5a9d183 | 2010-06-14 21:37:09 +0000 | [diff] [blame] | 156 | // Rewrite preprocessor options, to replace -Wp,-MD,FOO which is used by |
| 157 | // some build systems. We don't try to be complete here because we don't |
| 158 | // care to encourage this usage model. |
| 159 | if (A->getOption().matches(options::OPT_Wp_COMMA) && |
| 160 | A->getNumValues() == 2 && |
Daniel Dunbar | 3648ba7 | 2010-06-15 20:30:18 +0000 | [diff] [blame] | 161 | (A->getValue(Args, 0) == llvm::StringRef("-MD") || |
| 162 | A->getValue(Args, 0) == llvm::StringRef("-MMD"))) { |
| 163 | // Rewrite to -MD/-MMD along with -MF. |
| 164 | if (A->getValue(Args, 0) == llvm::StringRef("-MD")) |
| 165 | DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD)); |
| 166 | else |
| 167 | DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD)); |
Daniel Dunbar | 5a9d183 | 2010-06-14 21:37:09 +0000 | [diff] [blame] | 168 | DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF), |
| 169 | A->getValue(Args, 1)); |
| 170 | continue; |
| 171 | } |
| 172 | |
Shantonu Sen | afeb03b | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 173 | // Rewrite reserved library names. |
| 174 | if (A->getOption().matches(options::OPT_l)) { |
Daniel Dunbar | 2cc3f17 | 2010-09-17 00:45:02 +0000 | [diff] [blame] | 175 | llvm::StringRef Value = A->getValue(Args); |
| 176 | |
Shantonu Sen | afeb03b | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 177 | // Rewrite unless -nostdlib is present. |
| 178 | if (!HasNostdlib && Value == "stdc++") { |
Daniel Dunbar | 2cc3f17 | 2010-09-17 00:45:02 +0000 | [diff] [blame] | 179 | DAL->AddFlagArg(A, Opts->getOption( |
| 180 | options::OPT_Z_reserved_lib_stdcxx)); |
| 181 | continue; |
| 182 | } |
Shantonu Sen | afeb03b | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 183 | |
| 184 | // Rewrite unconditionally. |
| 185 | if (Value == "cc_kext") { |
| 186 | DAL->AddFlagArg(A, Opts->getOption( |
| 187 | options::OPT_Z_reserved_lib_cckext)); |
| 188 | continue; |
| 189 | } |
Daniel Dunbar | 2cc3f17 | 2010-09-17 00:45:02 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 192 | DAL->append(*it); |
Daniel Dunbar | fb3d747 | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 193 | } |
Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 194 | |
Daniel Dunbar | 628fcf4 | 2010-08-12 00:05:12 +0000 | [diff] [blame] | 195 | // Add a default value of -mlinker-version=, if one was given and the user |
| 196 | // didn't specify one. |
| 197 | #if defined(HOST_LINK_VERSION) |
| 198 | if (!Args.hasArg(options::OPT_mlinker_version_EQ)) { |
| 199 | DAL->AddJoinedArg(0, Opts->getOption(options::OPT_mlinker_version_EQ), |
| 200 | HOST_LINK_VERSION); |
Daniel Dunbar | b613ffc | 2010-08-17 22:32:45 +0000 | [diff] [blame] | 201 | DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim(); |
Daniel Dunbar | 628fcf4 | 2010-08-12 00:05:12 +0000 | [diff] [blame] | 202 | } |
| 203 | #endif |
| 204 | |
Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 205 | return DAL; |
| 206 | } |
| 207 | |
Daniel Dunbar | 544ecd1 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 208 | Compilation *Driver::BuildCompilation(int argc, const char **argv) { |
Daniel Dunbar | 2608c54 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 209 | llvm::PrettyStackTraceString CrashInfo("Compilation construction"); |
| 210 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 211 | // FIXME: Handle environment options which effect driver behavior, somewhere |
| 212 | // (client?). GCC_EXEC_PREFIX, COMPILER_PATH, LIBRARY_PATH, LPATH, |
| 213 | // CC_PRINT_OPTIONS. |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 214 | |
| 215 | // FIXME: What are we going to do with -V and -b? |
| 216 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 217 | // FIXME: This stuff needs to go into the Compilation, not the driver. |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 218 | bool CCCPrintOptions = false, CCCPrintActions = false; |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 219 | |
Daniel Dunbar | ee66cf2 | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 220 | const char **Start = argv + 1, **End = argv + argc; |
| 221 | |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 222 | InputArgList *Args = ParseArgStrings(Start, End); |
| 223 | |
Rafael Espindola | 59ae799 | 2009-12-07 18:28:29 +0000 | [diff] [blame] | 224 | // -no-canonical-prefixes is used very early in main. |
| 225 | Args->ClaimAllArgs(options::OPT_no_canonical_prefixes); |
| 226 | |
Daniel Dunbar | 926f81f | 2010-08-02 02:38:03 +0000 | [diff] [blame] | 227 | // Ignore -pipe. |
| 228 | Args->ClaimAllArgs(options::OPT_pipe); |
| 229 | |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 230 | // Extract -ccc args. |
Daniel Dunbar | ee66cf2 | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 231 | // |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 232 | // FIXME: We need to figure out where this behavior should live. Most of it |
| 233 | // should be outside in the client; the parts that aren't should have proper |
| 234 | // options, either by introducing new ones or by overloading gcc ones like -V |
| 235 | // or -b. |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 236 | CCCPrintOptions = Args->hasArg(options::OPT_ccc_print_options); |
| 237 | CCCPrintActions = Args->hasArg(options::OPT_ccc_print_phases); |
| 238 | CCCPrintBindings = Args->hasArg(options::OPT_ccc_print_bindings); |
Daniel Dunbar | 1b52d8c | 2009-12-05 00:13:59 +0000 | [diff] [blame] | 239 | CCCIsCXX = Args->hasArg(options::OPT_ccc_cxx) || CCCIsCXX; |
NAKAMURA Takumi | 89acd1e | 2010-10-11 02:28:42 +0000 | [diff] [blame] | 240 | if (CCCIsCXX) { |
| 241 | #ifdef IS_CYGWIN15 |
| 242 | CCCGenericGCCName = "g++-4"; |
| 243 | #else |
Rafael Espindola | b2d0d40 | 2010-09-06 02:36:23 +0000 | [diff] [blame] | 244 | CCCGenericGCCName = "g++"; |
NAKAMURA Takumi | 89acd1e | 2010-10-11 02:28:42 +0000 | [diff] [blame] | 245 | #endif |
| 246 | } |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 247 | CCCEcho = Args->hasArg(options::OPT_ccc_echo); |
| 248 | if (const Arg *A = Args->getLastArg(options::OPT_ccc_gcc_name)) |
| 249 | CCCGenericGCCName = A->getValue(*Args); |
| 250 | CCCUseClangCXX = Args->hasFlag(options::OPT_ccc_clang_cxx, |
Daniel Dunbar | 1b52d8c | 2009-12-05 00:13:59 +0000 | [diff] [blame] | 251 | options::OPT_ccc_no_clang_cxx, |
| 252 | CCCUseClangCXX); |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 253 | CCCUsePCH = Args->hasFlag(options::OPT_ccc_pch_is_pch, |
| 254 | options::OPT_ccc_pch_is_pth); |
| 255 | CCCUseClang = !Args->hasArg(options::OPT_ccc_no_clang); |
| 256 | CCCUseClangCPP = !Args->hasArg(options::OPT_ccc_no_clang_cpp); |
| 257 | if (const Arg *A = Args->getLastArg(options::OPT_ccc_clang_archs)) { |
| 258 | llvm::StringRef Cur = A->getValue(*Args); |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 259 | |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 260 | CCCClangArchs.clear(); |
| 261 | while (!Cur.empty()) { |
| 262 | std::pair<llvm::StringRef, llvm::StringRef> Split = Cur.split(','); |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 263 | |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 264 | if (!Split.first.empty()) { |
| 265 | llvm::Triple::ArchType Arch = |
| 266 | llvm::Triple(Split.first, "", "").getArch(); |
Daniel Dunbar | 7803c95 | 2009-04-01 23:34:41 +0000 | [diff] [blame] | 267 | |
Daniel Dunbar | 84f22f9 | 2010-02-11 03:16:07 +0000 | [diff] [blame] | 268 | if (Arch == llvm::Triple::UnknownArch) |
| 269 | Diag(clang::diag::err_drv_invalid_arch_name) << Split.first; |
Daniel Dunbar | ee66cf2 | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 270 | |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 271 | CCCClangArchs.insert(Arch); |
Daniel Dunbar | 953b8d1 | 2009-09-08 23:36:55 +0000 | [diff] [blame] | 272 | } |
Daniel Dunbar | ee66cf2 | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 273 | |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 274 | Cur = Split.second; |
Daniel Dunbar | ee66cf2 | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 275 | } |
| 276 | } |
Daniel Dunbar | a73a984 | 2010-08-02 05:44:04 +0000 | [diff] [blame] | 277 | // FIXME: We shouldn't overwrite the default host triple here, but we have |
| 278 | // nowhere else to put this currently. |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 279 | if (const Arg *A = Args->getLastArg(options::OPT_ccc_host_triple)) |
Daniel Dunbar | a73a984 | 2010-08-02 05:44:04 +0000 | [diff] [blame] | 280 | DefaultHostTriple = A->getValue(*Args); |
Daniel Dunbar | acd6957 | 2009-12-04 21:55:23 +0000 | [diff] [blame] | 281 | if (const Arg *A = Args->getLastArg(options::OPT_ccc_install_dir)) |
Daniel Dunbar | 5d3b70a | 2010-08-23 20:58:50 +0000 | [diff] [blame] | 282 | Dir = InstalledDir = A->getValue(*Args); |
Chandler Carruth | 8455924 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 283 | if (const Arg *A = Args->getLastArg(options::OPT_B)) |
| 284 | PrefixDir = A->getValue(*Args); |
Daniel Dunbar | ee66cf2 | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 285 | |
Daniel Dunbar | a73a984 | 2010-08-02 05:44:04 +0000 | [diff] [blame] | 286 | Host = GetHostInfo(DefaultHostTriple.c_str()); |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 287 | |
Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 288 | // Perform the default argument translations. |
| 289 | DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args); |
| 290 | |
Daniel Dunbar | 3ce436d | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 291 | // The compilation takes ownership of Args. |
Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 292 | Compilation *C = new Compilation(*this, *Host->CreateToolChain(*Args), Args, |
| 293 | TranslatedArgs); |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 294 | |
| 295 | // FIXME: This behavior shouldn't be here. |
| 296 | if (CCCPrintOptions) { |
Daniel Dunbar | af8decb | 2010-06-11 22:43:38 +0000 | [diff] [blame] | 297 | PrintOptions(C->getInputArgs()); |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 298 | return C; |
| 299 | } |
| 300 | |
| 301 | if (!HandleImmediateArgs(*C)) |
| 302 | return C; |
| 303 | |
Daniel Dunbar | a36c2b3 | 2010-08-02 05:43:51 +0000 | [diff] [blame] | 304 | // Construct the list of abstract actions to perform for this compilation. |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 305 | if (Host->useDriverDriver()) |
Daniel Dunbar | a36c2b3 | 2010-08-02 05:43:51 +0000 | [diff] [blame] | 306 | BuildUniversalActions(C->getDefaultToolChain(), C->getArgs(), |
| 307 | C->getActions()); |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 308 | else |
Daniel Dunbar | a36c2b3 | 2010-08-02 05:43:51 +0000 | [diff] [blame] | 309 | BuildActions(C->getDefaultToolChain(), C->getArgs(), C->getActions()); |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 310 | |
| 311 | if (CCCPrintActions) { |
Daniel Dunbar | eb843be | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 312 | PrintActions(*C); |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 313 | return C; |
| 314 | } |
| 315 | |
| 316 | BuildJobs(*C); |
Daniel Dunbar | adc91e6 | 2009-03-15 01:38:15 +0000 | [diff] [blame] | 317 | |
| 318 | return C; |
Daniel Dunbar | ee66cf2 | 2009-03-10 20:52:46 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Daniel Dunbar | 38bfda6 | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 321 | int Driver::ExecuteCompilation(const Compilation &C) const { |
| 322 | // Just print if -### was present. |
| 323 | if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) { |
| 324 | C.PrintJob(llvm::errs(), C.getJobs(), "\n", true); |
| 325 | return 0; |
| 326 | } |
| 327 | |
| 328 | // If there were errors building the compilation, quit now. |
Argyrios Kyrtzidis | 31448a4 | 2010-11-18 21:47:07 +0000 | [diff] [blame] | 329 | if (getDiags().hasErrorOccurred()) |
Daniel Dunbar | 38bfda6 | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 330 | return 1; |
| 331 | |
| 332 | const Command *FailingCommand = 0; |
| 333 | int Res = C.ExecuteJob(C.getJobs(), FailingCommand); |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 334 | |
Daniel Dunbar | 38bfda6 | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 335 | // Remove temp files. |
| 336 | C.CleanupFileList(C.getTempFiles()); |
| 337 | |
Daniel Dunbar | 0749479 | 2010-05-22 00:37:20 +0000 | [diff] [blame] | 338 | // If the command succeeded, we are done. |
| 339 | if (Res == 0) |
| 340 | return Res; |
| 341 | |
| 342 | // Otherwise, remove result files as well. |
| 343 | if (!C.getArgs().hasArg(options::OPT_save_temps)) |
Daniel Dunbar | 38bfda6 | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 344 | C.CleanupFileList(C.getResultFiles(), true); |
| 345 | |
| 346 | // Print extra information about abnormal failures, if possible. |
Daniel Dunbar | 0749479 | 2010-05-22 00:37:20 +0000 | [diff] [blame] | 347 | // |
| 348 | // This is ad-hoc, but we don't want to be excessively noisy. If the result |
| 349 | // status was 1, assume the command failed normally. In particular, if it was |
| 350 | // the compiler then assume it gave a reasonable error code. Failures in other |
| 351 | // tools are less common, and they generally have worse diagnostics, so always |
| 352 | // print the diagnostic there. |
| 353 | const Tool &FailingTool = FailingCommand->getCreator(); |
Daniel Dunbar | 38bfda6 | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 354 | |
Daniel Dunbar | 0749479 | 2010-05-22 00:37:20 +0000 | [diff] [blame] | 355 | if (!FailingCommand->getCreator().hasGoodDiagnostics() || Res != 1) { |
| 356 | // FIXME: See FIXME above regarding result code interpretation. |
| 357 | if (Res < 0) |
| 358 | Diag(clang::diag::err_drv_command_signalled) |
| 359 | << FailingTool.getShortName() << -Res; |
| 360 | else |
| 361 | Diag(clang::diag::err_drv_command_failed) |
| 362 | << FailingTool.getShortName() << Res; |
Daniel Dunbar | 38bfda6 | 2009-07-01 20:03:04 +0000 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | return Res; |
| 366 | } |
| 367 | |
Daniel Dunbar | 446f684 | 2009-03-12 18:24:49 +0000 | [diff] [blame] | 368 | void Driver::PrintOptions(const ArgList &Args) const { |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 369 | unsigned i = 0; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 370 | for (ArgList::const_iterator it = Args.begin(), ie = Args.end(); |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 371 | it != ie; ++it, ++i) { |
| 372 | Arg *A = *it; |
| 373 | llvm::errs() << "Option " << i << " - " |
| 374 | << "Name: \"" << A->getOption().getName() << "\", " |
| 375 | << "Values: {"; |
| 376 | for (unsigned j = 0; j < A->getNumValues(); ++j) { |
| 377 | if (j) |
| 378 | llvm::errs() << ", "; |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 379 | llvm::errs() << '"' << A->getValue(Args, j) << '"'; |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 380 | } |
| 381 | llvm::errs() << "}\n"; |
Daniel Dunbar | d02cb1d | 2009-03-05 06:38:47 +0000 | [diff] [blame] | 382 | } |
Daniel Dunbar | 544ecd1 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 383 | } |
Daniel Dunbar | 4dff6a4 | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 384 | |
Daniel Dunbar | a7b5e21 | 2009-04-15 16:34:29 +0000 | [diff] [blame] | 385 | void Driver::PrintHelp(bool ShowHidden) const { |
Daniel Dunbar | 3babf5d | 2010-02-25 03:31:53 +0000 | [diff] [blame] | 386 | getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(), |
| 387 | ShowHidden); |
Daniel Dunbar | 7c92528 | 2009-03-31 21:38:17 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Daniel Dunbar | 08e41d6 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 390 | void Driver::PrintVersion(const Compilation &C, llvm::raw_ostream &OS) const { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 391 | // FIXME: The following handlers should use a callback mechanism, we don't |
| 392 | // know what the client would like to do. |
Ted Kremenek | 4c0df3d | 2010-01-23 02:11:34 +0000 | [diff] [blame] | 393 | OS << getClangFullVersion() << '\n'; |
Daniel Dunbar | b1024880 | 2009-03-26 16:09:13 +0000 | [diff] [blame] | 394 | const ToolChain &TC = C.getDefaultToolChain(); |
Daniel Dunbar | 08e41d6 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 395 | OS << "Target: " << TC.getTripleString() << '\n'; |
Daniel Dunbar | 10978e4 | 2009-06-16 23:32:58 +0000 | [diff] [blame] | 396 | |
| 397 | // Print the threading model. |
| 398 | // |
| 399 | // FIXME: Implement correctly. |
Daniel Dunbar | 08e41d6 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 400 | OS << "Thread model: " << "posix" << '\n'; |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Chris Lattner | 86ed5b0 | 2010-05-05 05:53:24 +0000 | [diff] [blame] | 403 | /// PrintDiagnosticCategories - Implement the --print-diagnostic-categories |
| 404 | /// option. |
| 405 | static void PrintDiagnosticCategories(llvm::raw_ostream &OS) { |
| 406 | for (unsigned i = 1; // Skip the empty category. |
Argyrios Kyrtzidis | d004064 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 407 | const char *CategoryName = DiagnosticIDs::getCategoryNameFromID(i); ++i) |
Chris Lattner | 86ed5b0 | 2010-05-05 05:53:24 +0000 | [diff] [blame] | 408 | OS << i << ',' << CategoryName << '\n'; |
| 409 | } |
| 410 | |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 411 | bool Driver::HandleImmediateArgs(const Compilation &C) { |
Daniel Dunbar | 18974bd | 2010-06-11 22:00:19 +0000 | [diff] [blame] | 412 | // The order these options are handled in gcc is all over the place, but we |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 413 | // don't expect inconsistencies w.r.t. that to matter in practice. |
Daniel Dunbar | 7c92528 | 2009-03-31 21:38:17 +0000 | [diff] [blame] | 414 | |
Daniel Dunbar | 1b09e04 | 2010-09-17 02:47:28 +0000 | [diff] [blame] | 415 | if (C.getArgs().hasArg(options::OPT_dumpmachine)) { |
| 416 | llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n'; |
| 417 | return false; |
| 418 | } |
| 419 | |
Daniel Dunbar | a9bbcfa | 2009-04-04 05:17:38 +0000 | [diff] [blame] | 420 | if (C.getArgs().hasArg(options::OPT_dumpversion)) { |
Douglas Gregor | 7b71e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 421 | llvm::outs() << CLANG_VERSION_STRING "\n"; |
Daniel Dunbar | a9bbcfa | 2009-04-04 05:17:38 +0000 | [diff] [blame] | 422 | return false; |
| 423 | } |
Daniel Dunbar | fb3d747 | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 424 | |
Chris Lattner | 86ed5b0 | 2010-05-05 05:53:24 +0000 | [diff] [blame] | 425 | if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) { |
| 426 | PrintDiagnosticCategories(llvm::outs()); |
| 427 | return false; |
| 428 | } |
Daniel Dunbar | a9bbcfa | 2009-04-04 05:17:38 +0000 | [diff] [blame] | 429 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 430 | if (C.getArgs().hasArg(options::OPT__help) || |
Daniel Dunbar | a7b5e21 | 2009-04-15 16:34:29 +0000 | [diff] [blame] | 431 | C.getArgs().hasArg(options::OPT__help_hidden)) { |
| 432 | PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden)); |
Daniel Dunbar | 7c92528 | 2009-03-31 21:38:17 +0000 | [diff] [blame] | 433 | return false; |
| 434 | } |
| 435 | |
Daniel Dunbar | b0006ae | 2009-04-02 15:05:41 +0000 | [diff] [blame] | 436 | if (C.getArgs().hasArg(options::OPT__version)) { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 437 | // Follow gcc behavior and use stdout for --version and stderr for -v. |
Daniel Dunbar | 08e41d6 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 438 | PrintVersion(C, llvm::outs()); |
Daniel Dunbar | b0006ae | 2009-04-02 15:05:41 +0000 | [diff] [blame] | 439 | return false; |
| 440 | } |
| 441 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 442 | if (C.getArgs().hasArg(options::OPT_v) || |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 443 | C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) { |
Daniel Dunbar | 08e41d6 | 2009-07-21 20:06:58 +0000 | [diff] [blame] | 444 | PrintVersion(C, llvm::errs()); |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 445 | SuppressMissingInputWarning = true; |
| 446 | } |
| 447 | |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 448 | const ToolChain &TC = C.getDefaultToolChain(); |
Daniel Dunbar | d972e22 | 2009-03-20 04:37:21 +0000 | [diff] [blame] | 449 | if (C.getArgs().hasArg(options::OPT_print_search_dirs)) { |
| 450 | llvm::outs() << "programs: ="; |
| 451 | for (ToolChain::path_list::const_iterator it = TC.getProgramPaths().begin(), |
| 452 | ie = TC.getProgramPaths().end(); it != ie; ++it) { |
| 453 | if (it != TC.getProgramPaths().begin()) |
| 454 | llvm::outs() << ':'; |
| 455 | llvm::outs() << *it; |
| 456 | } |
| 457 | llvm::outs() << "\n"; |
| 458 | llvm::outs() << "libraries: ="; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 459 | for (ToolChain::path_list::const_iterator it = TC.getFilePaths().begin(), |
Daniel Dunbar | d972e22 | 2009-03-20 04:37:21 +0000 | [diff] [blame] | 460 | ie = TC.getFilePaths().end(); it != ie; ++it) { |
| 461 | if (it != TC.getFilePaths().begin()) |
| 462 | llvm::outs() << ':'; |
| 463 | llvm::outs() << *it; |
| 464 | } |
| 465 | llvm::outs() << "\n"; |
Daniel Dunbar | 7c92528 | 2009-03-31 21:38:17 +0000 | [diff] [blame] | 466 | return false; |
Daniel Dunbar | d972e22 | 2009-03-20 04:37:21 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 469 | // FIXME: The following handlers should use a callback mechanism, we don't |
| 470 | // know what the client would like to do. |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 471 | if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) { |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 472 | llvm::outs() << GetFilePath(A->getValue(C.getArgs()), TC) << "\n"; |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 473 | return false; |
| 474 | } |
| 475 | |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 476 | if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) { |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 477 | llvm::outs() << GetProgramPath(A->getValue(C.getArgs()), TC) << "\n"; |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 478 | return false; |
| 479 | } |
| 480 | |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 481 | if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) { |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 482 | llvm::outs() << GetFilePath("libgcc.a", TC) << "\n"; |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 483 | return false; |
| 484 | } |
| 485 | |
Daniel Dunbar | 1b3ec3a | 2009-06-16 23:25:22 +0000 | [diff] [blame] | 486 | if (C.getArgs().hasArg(options::OPT_print_multi_lib)) { |
| 487 | // FIXME: We need tool chain support for this. |
| 488 | llvm::outs() << ".;\n"; |
| 489 | |
| 490 | switch (C.getDefaultToolChain().getTriple().getArch()) { |
| 491 | default: |
| 492 | break; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 493 | |
Daniel Dunbar | 1b3ec3a | 2009-06-16 23:25:22 +0000 | [diff] [blame] | 494 | case llvm::Triple::x86_64: |
| 495 | llvm::outs() << "x86_64;@m64" << "\n"; |
| 496 | break; |
| 497 | |
| 498 | case llvm::Triple::ppc64: |
| 499 | llvm::outs() << "ppc64;@m64" << "\n"; |
| 500 | break; |
| 501 | } |
| 502 | return false; |
| 503 | } |
| 504 | |
| 505 | // FIXME: What is the difference between print-multi-directory and |
| 506 | // print-multi-os-directory? |
| 507 | if (C.getArgs().hasArg(options::OPT_print_multi_directory) || |
| 508 | C.getArgs().hasArg(options::OPT_print_multi_os_directory)) { |
| 509 | switch (C.getDefaultToolChain().getTriple().getArch()) { |
| 510 | default: |
| 511 | case llvm::Triple::x86: |
| 512 | case llvm::Triple::ppc: |
| 513 | llvm::outs() << "." << "\n"; |
| 514 | break; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 515 | |
Daniel Dunbar | 1b3ec3a | 2009-06-16 23:25:22 +0000 | [diff] [blame] | 516 | case llvm::Triple::x86_64: |
| 517 | llvm::outs() << "x86_64" << "\n"; |
| 518 | break; |
| 519 | |
| 520 | case llvm::Triple::ppc64: |
| 521 | llvm::outs() << "ppc64" << "\n"; |
| 522 | break; |
| 523 | } |
| 524 | return false; |
| 525 | } |
| 526 | |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 527 | return true; |
| 528 | } |
| 529 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 530 | static unsigned PrintActions1(const Compilation &C, Action *A, |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 531 | std::map<Action*, unsigned> &Ids) { |
| 532 | if (Ids.count(A)) |
| 533 | return Ids[A]; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 534 | |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 535 | std::string str; |
| 536 | llvm::raw_string_ostream os(str); |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 537 | |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 538 | os << Action::getClassName(A->getKind()) << ", "; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 539 | if (InputAction *IA = dyn_cast<InputAction>(A)) { |
Daniel Dunbar | eb843be | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 540 | os << "\"" << IA->getInputArg().getValue(C.getArgs()) << "\""; |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 541 | } else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 542 | os << '"' << (BIA->getArchName() ? BIA->getArchName() : |
Daniel Dunbar | eb843be | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 543 | C.getDefaultToolChain().getArchName()) << '"' |
| 544 | << ", {" << PrintActions1(C, *BIA->begin(), Ids) << "}"; |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 545 | } else { |
| 546 | os << "{"; |
| 547 | for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) { |
Daniel Dunbar | eb843be | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 548 | os << PrintActions1(C, *it, Ids); |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 549 | ++it; |
| 550 | if (it != ie) |
| 551 | os << ", "; |
| 552 | } |
| 553 | os << "}"; |
| 554 | } |
| 555 | |
| 556 | unsigned Id = Ids.size(); |
| 557 | Ids[A] = Id; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 558 | llvm::errs() << Id << ": " << os.str() << ", " |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 559 | << types::getTypeName(A->getType()) << "\n"; |
| 560 | |
| 561 | return Id; |
| 562 | } |
| 563 | |
Daniel Dunbar | eb843be | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 564 | void Driver::PrintActions(const Compilation &C) const { |
Daniel Dunbar | aaf1ea6 | 2009-03-13 12:19:02 +0000 | [diff] [blame] | 565 | std::map<Action*, unsigned> Ids; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 566 | for (ActionList::const_iterator it = C.getActions().begin(), |
Daniel Dunbar | eb843be | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 567 | ie = C.getActions().end(); it != ie; ++it) |
| 568 | PrintActions1(C, *it, Ids); |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 569 | } |
| 570 | |
Daniel Dunbar | 00d3d8e | 2010-06-29 16:38:33 +0000 | [diff] [blame] | 571 | /// \brief Check whether the given input tree contains any compilation (or |
| 572 | /// assembly) actions. |
| 573 | static bool ContainsCompileAction(const Action *A) { |
| 574 | if (isa<CompileJobAction>(A) || isa<AssembleJobAction>(A)) |
| 575 | return true; |
| 576 | |
| 577 | for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it) |
| 578 | if (ContainsCompileAction(*it)) |
| 579 | return true; |
| 580 | |
| 581 | return false; |
| 582 | } |
| 583 | |
Daniel Dunbar | a36c2b3 | 2010-08-02 05:43:51 +0000 | [diff] [blame] | 584 | void Driver::BuildUniversalActions(const ToolChain &TC, |
| 585 | const ArgList &Args, |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 586 | ActionList &Actions) const { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 587 | llvm::PrettyStackTraceString CrashInfo("Building universal build actions"); |
| 588 | // Collect the list of architectures. Duplicates are allowed, but should only |
| 589 | // be handled once (in the order seen). |
Daniel Dunbar | e5dc482 | 2009-03-13 20:33:35 +0000 | [diff] [blame] | 590 | llvm::StringSet<> ArchNames; |
| 591 | llvm::SmallVector<const char *, 4> Archs; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 592 | for (ArgList::const_iterator it = Args.begin(), ie = Args.end(); |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 593 | it != ie; ++it) { |
| 594 | Arg *A = *it; |
| 595 | |
Daniel Dunbar | 0bfb21e | 2009-11-19 03:26:40 +0000 | [diff] [blame] | 596 | if (A->getOption().matches(options::OPT_arch)) { |
Daniel Dunbar | 9c3f7c4 | 2009-09-08 23:37:30 +0000 | [diff] [blame] | 597 | // Validate the option here; we don't save the type here because its |
| 598 | // particular spelling may participate in other driver choices. |
| 599 | llvm::Triple::ArchType Arch = |
| 600 | llvm::Triple::getArchTypeForDarwinArchName(A->getValue(Args)); |
| 601 | if (Arch == llvm::Triple::UnknownArch) { |
| 602 | Diag(clang::diag::err_drv_invalid_arch_name) |
| 603 | << A->getAsString(Args); |
| 604 | continue; |
| 605 | } |
| 606 | |
Daniel Dunbar | 2da0272 | 2009-03-19 07:55:12 +0000 | [diff] [blame] | 607 | A->claim(); |
Daniel Dunbar | 7b57404 | 2009-09-08 23:37:02 +0000 | [diff] [blame] | 608 | if (ArchNames.insert(A->getValue(Args))) |
| 609 | Archs.push_back(A->getValue(Args)); |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 610 | } |
| 611 | } |
| 612 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 613 | // When there is no explicit arch for this platform, make sure we still bind |
| 614 | // the architecture (to the default) so that -Xarch_ is handled correctly. |
Daniel Dunbar | eb843be | 2009-03-18 03:13:20 +0000 | [diff] [blame] | 615 | if (!Archs.size()) |
| 616 | Archs.push_back(0); |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 617 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 618 | // FIXME: We killed off some others but these aren't yet detected in a |
| 619 | // functional manner. If we added information to jobs about which "auxiliary" |
| 620 | // files they wrote then we could detect the conflict these cause downstream. |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 621 | if (Archs.size() > 1) { |
| 622 | // No recovery needed, the point of this is just to prevent |
| 623 | // overwriting the same files. |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 624 | if (const Arg *A = Args.getLastArg(options::OPT_save_temps)) |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 625 | Diag(clang::diag::err_drv_invalid_opt_with_multiple_archs) |
Daniel Dunbar | 0e75994 | 2009-03-20 06:14:23 +0000 | [diff] [blame] | 626 | << A->getAsString(Args); |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | ActionList SingleActions; |
Daniel Dunbar | a36c2b3 | 2010-08-02 05:43:51 +0000 | [diff] [blame] | 630 | BuildActions(TC, Args, SingleActions); |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 631 | |
Daniel Dunbar | 6beaf51 | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 632 | // Add in arch bindings for every top level action, as well as lipo and |
| 633 | // dsymutil steps if needed. |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 634 | for (unsigned i = 0, e = SingleActions.size(); i != e; ++i) { |
| 635 | Action *Act = SingleActions[i]; |
| 636 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 637 | // Make sure we can lipo this kind of output. If not (and it is an actual |
| 638 | // output) then we disallow, since we can't create an output file with the |
| 639 | // right name without overwriting it. We could remove this oddity by just |
| 640 | // changing the output names to include the arch, which would also fix |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 641 | // -save-temps. Compatibility wins for now. |
| 642 | |
Daniel Dunbar | e2ca3bd | 2009-03-13 17:46:02 +0000 | [diff] [blame] | 643 | if (Archs.size() > 1 && !types::canLipoType(Act->getType())) |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 644 | Diag(clang::diag::err_drv_invalid_output_with_multiple_archs) |
| 645 | << types::getTypeName(Act->getType()); |
| 646 | |
| 647 | ActionList Inputs; |
Daniel Dunbar | 66187b3 | 2010-03-11 18:04:58 +0000 | [diff] [blame] | 648 | for (unsigned i = 0, e = Archs.size(); i != e; ++i) { |
Daniel Dunbar | e5dc482 | 2009-03-13 20:33:35 +0000 | [diff] [blame] | 649 | Inputs.push_back(new BindArchAction(Act, Archs[i])); |
Daniel Dunbar | 66187b3 | 2010-03-11 18:04:58 +0000 | [diff] [blame] | 650 | if (i != 0) |
| 651 | Inputs.back()->setOwnsInputs(false); |
| 652 | } |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 653 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 654 | // Lipo if necessary, we do it this way because we need to set the arch flag |
| 655 | // so that -Xarch_ gets overwritten. |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 656 | if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing) |
| 657 | Actions.append(Inputs.begin(), Inputs.end()); |
| 658 | else |
| 659 | Actions.push_back(new LipoJobAction(Inputs, Act->getType())); |
Daniel Dunbar | 6beaf51 | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 660 | |
Daniel Dunbar | 00d3d8e | 2010-06-29 16:38:33 +0000 | [diff] [blame] | 661 | // Add a 'dsymutil' step if necessary, when debug info is enabled and we |
| 662 | // have a compile input. We need to run 'dsymutil' ourselves in such cases |
| 663 | // because the debug info will refer to a temporary object file which is |
| 664 | // will be removed at the end of the compilation process. |
Daniel Dunbar | 6beaf51 | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 665 | if (Act->getType() == types::TY_Image) { |
| 666 | Arg *A = Args.getLastArg(options::OPT_g_Group); |
| 667 | if (A && !A->getOption().matches(options::OPT_g0) && |
Daniel Dunbar | 00d3d8e | 2010-06-29 16:38:33 +0000 | [diff] [blame] | 668 | !A->getOption().matches(options::OPT_gstabs) && |
| 669 | ContainsCompileAction(Actions.back())) { |
Daniel Dunbar | 6beaf51 | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 670 | ActionList Inputs; |
| 671 | Inputs.push_back(Actions.back()); |
| 672 | Actions.pop_back(); |
| 673 | |
| 674 | Actions.push_back(new DsymutilJobAction(Inputs, types::TY_dSYM)); |
| 675 | } |
| 676 | } |
Daniel Dunbar | f479c12 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 677 | } |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 678 | } |
| 679 | |
Daniel Dunbar | a36c2b3 | 2010-08-02 05:43:51 +0000 | [diff] [blame] | 680 | void Driver::BuildActions(const ToolChain &TC, const ArgList &Args, |
| 681 | ActionList &Actions) const { |
Daniel Dunbar | 2608c54 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 682 | llvm::PrettyStackTraceString CrashInfo("Building compilation actions"); |
Daniel Dunbar | bfeec74 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 683 | // Start by constructing the list of inputs and their types. |
| 684 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 685 | // Track the current user specified (-x) input. We also explicitly track the |
| 686 | // argument used to set the type; we only want to claim the type when we |
| 687 | // actually use it, so we warn about unused -x arguments. |
Daniel Dunbar | c5a5ac5 | 2009-03-13 17:57:10 +0000 | [diff] [blame] | 688 | types::ID InputType = types::TY_Nothing; |
| 689 | Arg *InputTypeArg = 0; |
| 690 | |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 691 | llvm::SmallVector<std::pair<types::ID, const Arg*>, 16> Inputs; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 692 | for (ArgList::const_iterator it = Args.begin(), ie = Args.end(); |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 693 | it != ie; ++it) { |
| 694 | Arg *A = *it; |
| 695 | |
| 696 | if (isa<InputOption>(A->getOption())) { |
| 697 | const char *Value = A->getValue(Args); |
| 698 | types::ID Ty = types::TY_INVALID; |
| 699 | |
| 700 | // Infer the input type if necessary. |
Daniel Dunbar | c5a5ac5 | 2009-03-13 17:57:10 +0000 | [diff] [blame] | 701 | if (InputType == types::TY_Nothing) { |
| 702 | // If there was an explicit arg for this, claim it. |
| 703 | if (InputTypeArg) |
| 704 | InputTypeArg->claim(); |
| 705 | |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 706 | // stdin must be handled specially. |
| 707 | if (memcmp(Value, "-", 2) == 0) { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 708 | // If running with -E, treat as a C input (this changes the builtin |
| 709 | // macros, for example). This may be overridden by -ObjC below. |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 710 | // |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 711 | // Otherwise emit an error but still use a valid type to avoid |
| 712 | // spurious errors (e.g., no inputs). |
Daniel Dunbar | fffd181 | 2009-11-19 04:00:53 +0000 | [diff] [blame] | 713 | if (!Args.hasArgNoClaim(options::OPT_E)) |
Daniel Dunbar | 5cd1e41 | 2009-03-12 09:13:48 +0000 | [diff] [blame] | 714 | Diag(clang::diag::err_drv_unknown_stdin_type); |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 715 | Ty = types::TY_C; |
| 716 | } else { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 717 | // Otherwise lookup by extension, and fallback to ObjectType if not |
| 718 | // found. We use a host hook here because Darwin at least has its own |
| 719 | // idea of what .s is. |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 720 | if (const char *Ext = strrchr(Value, '.')) |
Daniel Dunbar | cc7df6c | 2010-08-02 05:43:56 +0000 | [diff] [blame] | 721 | Ty = TC.LookupTypeForExtension(Ext + 1); |
Daniel Dunbar | ea9f032 | 2009-03-20 23:39:23 +0000 | [diff] [blame] | 722 | |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 723 | if (Ty == types::TY_INVALID) |
| 724 | Ty = types::TY_Object; |
Daniel Dunbar | 0ac9445 | 2010-02-17 20:32:58 +0000 | [diff] [blame] | 725 | |
| 726 | // If the driver is invoked as C++ compiler (like clang++ or c++) it |
| 727 | // should autodetect some input files as C++ for g++ compatibility. |
| 728 | if (CCCIsCXX) { |
| 729 | types::ID OldTy = Ty; |
| 730 | Ty = types::lookupCXXTypeForCType(Ty); |
| 731 | |
| 732 | if (Ty != OldTy) |
| 733 | Diag(clang::diag::warn_drv_treating_input_as_cxx) |
| 734 | << getTypeName(OldTy) << getTypeName(Ty); |
| 735 | } |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 736 | } |
| 737 | |
Daniel Dunbar | 82b2210 | 2009-05-18 21:47:54 +0000 | [diff] [blame] | 738 | // -ObjC and -ObjC++ override the default language, but only for "source |
| 739 | // files". We just treat everything that isn't a linker input as a |
| 740 | // source file. |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 741 | // |
Daniel Dunbar | 82b2210 | 2009-05-18 21:47:54 +0000 | [diff] [blame] | 742 | // FIXME: Clean this up if we move the phase sequence into the type. |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 743 | if (Ty != types::TY_Object) { |
| 744 | if (Args.hasArg(options::OPT_ObjC)) |
| 745 | Ty = types::TY_ObjC; |
| 746 | else if (Args.hasArg(options::OPT_ObjCXX)) |
| 747 | Ty = types::TY_ObjCXX; |
| 748 | } |
| 749 | } else { |
| 750 | assert(InputTypeArg && "InputType set w/o InputTypeArg"); |
| 751 | InputTypeArg->claim(); |
| 752 | Ty = InputType; |
| 753 | } |
| 754 | |
Daniel Dunbar | fcf2d42 | 2010-01-25 00:44:02 +0000 | [diff] [blame] | 755 | // Check that the file exists, if enabled. |
Argyrios Kyrtzidis | 71731d6 | 2010-11-03 22:45:23 +0000 | [diff] [blame] | 756 | if (CheckInputsExist && memcmp(Value, "-", 2) != 0) { |
| 757 | llvm::sys::Path Path(Value); |
| 758 | if (Arg *WorkDir = Args.getLastArg(options::OPT_working_directory)) |
| 759 | if (!Path.isAbsolute()) { |
| 760 | Path = WorkDir->getValue(Args); |
| 761 | Path.appendComponent(Value); |
| 762 | } |
| 763 | |
| 764 | if (!Path.exists()) |
| 765 | Diag(clang::diag::err_drv_no_such_file) << Path.str(); |
| 766 | else |
| 767 | Inputs.push_back(std::make_pair(Ty, A)); |
| 768 | } else |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 769 | Inputs.push_back(std::make_pair(Ty, A)); |
| 770 | |
| 771 | } else if (A->getOption().isLinkerInput()) { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 772 | // Just treat as object type, we could make a special type for this if |
| 773 | // necessary. |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 774 | Inputs.push_back(std::make_pair(types::TY_Object, A)); |
| 775 | |
Daniel Dunbar | 0bfb21e | 2009-11-19 03:26:40 +0000 | [diff] [blame] | 776 | } else if (A->getOption().matches(options::OPT_x)) { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 777 | InputTypeArg = A; |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 778 | InputType = types::lookupTypeForTypeSpecifier(A->getValue(Args)); |
| 779 | |
| 780 | // Follow gcc behavior and treat as linker input for invalid -x |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 781 | // options. Its not clear why we shouldn't just revert to unknown; but |
| 782 | // this isn't very important, we might as well be bug comatible. |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 783 | if (!InputType) { |
Daniel Dunbar | 5cd1e41 | 2009-03-12 09:13:48 +0000 | [diff] [blame] | 784 | Diag(clang::diag::err_drv_unknown_language) << A->getValue(Args); |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 785 | InputType = types::TY_Object; |
| 786 | } |
| 787 | } |
| 788 | } |
| 789 | |
Daniel Dunbar | 34c4187 | 2009-03-13 00:17:48 +0000 | [diff] [blame] | 790 | if (!SuppressMissingInputWarning && Inputs.empty()) { |
Daniel Dunbar | bfeec74 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 791 | Diag(clang::diag::err_drv_no_input_files); |
| 792 | return; |
| 793 | } |
| 794 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 795 | // Determine which compilation mode we are in. We look for options which |
| 796 | // affect the phase, starting with the earliest phases, and record which |
| 797 | // option we used to determine the final phase. |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 798 | Arg *FinalPhaseArg = 0; |
| 799 | phases::ID FinalPhase; |
Daniel Dunbar | bfeec74 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 800 | |
| 801 | // -{E,M,MM} only run the preprocessor. |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 802 | if ((FinalPhaseArg = Args.getLastArg(options::OPT_E)) || |
Daniel Dunbar | 86aed7d | 2010-12-08 21:33:40 +0000 | [diff] [blame^] | 803 | (FinalPhaseArg = Args.getLastArg(options::OPT_M, options::OPT_MM))) { |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 804 | FinalPhase = phases::Preprocess; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 805 | |
Daniel Dunbar | 6cdf83c | 2009-09-01 16:57:46 +0000 | [diff] [blame] | 806 | // -{fsyntax-only,-analyze,emit-ast,S} only run up to the compiler. |
Daniel Dunbar | ae0e55e | 2009-03-15 00:48:16 +0000 | [diff] [blame] | 807 | } else if ((FinalPhaseArg = Args.getLastArg(options::OPT_fsyntax_only)) || |
Daniel Dunbar | aeea8ac | 2010-02-11 03:16:21 +0000 | [diff] [blame] | 808 | (FinalPhaseArg = Args.getLastArg(options::OPT_rewrite_objc)) || |
Daniel Dunbar | 5e051f9 | 2009-05-06 02:12:32 +0000 | [diff] [blame] | 809 | (FinalPhaseArg = Args.getLastArg(options::OPT__analyze, |
| 810 | options::OPT__analyze_auto)) || |
Daniel Dunbar | 6cdf83c | 2009-09-01 16:57:46 +0000 | [diff] [blame] | 811 | (FinalPhaseArg = Args.getLastArg(options::OPT_emit_ast)) || |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 812 | (FinalPhaseArg = Args.getLastArg(options::OPT_S))) { |
| 813 | FinalPhase = phases::Compile; |
Daniel Dunbar | bfeec74 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 814 | |
| 815 | // -c only runs up to the assembler. |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 816 | } else if ((FinalPhaseArg = Args.getLastArg(options::OPT_c))) { |
| 817 | FinalPhase = phases::Assemble; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 818 | |
Daniel Dunbar | bfeec74 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 819 | // Otherwise do everything. |
| 820 | } else |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 821 | FinalPhase = phases::Link; |
Daniel Dunbar | bfeec74 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 822 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 823 | // Reject -Z* at the top level, these options should never have been exposed |
| 824 | // by gcc. |
Daniel Dunbar | dd76524 | 2009-03-26 16:12:09 +0000 | [diff] [blame] | 825 | if (Arg *A = Args.getLastArg(options::OPT_Z_Joined)) |
Daniel Dunbar | 0e75994 | 2009-03-20 06:14:23 +0000 | [diff] [blame] | 826 | Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args); |
Daniel Dunbar | bfeec74 | 2009-03-12 23:55:14 +0000 | [diff] [blame] | 827 | |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 828 | // Construct the actions to perform. |
| 829 | ActionList LinkerInputs; |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 830 | for (unsigned i = 0, e = Inputs.size(); i != e; ++i) { |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 831 | types::ID InputType = Inputs[i].first; |
| 832 | const Arg *InputArg = Inputs[i].second; |
| 833 | |
| 834 | unsigned NumSteps = types::getNumCompilationPhases(InputType); |
| 835 | assert(NumSteps && "Invalid number of steps!"); |
| 836 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 837 | // If the first step comes after the final phase we are doing as part of |
| 838 | // this compilation, warn the user about it. |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 839 | phases::ID InitialPhase = types::getCompilationPhase(InputType, 0); |
| 840 | if (InitialPhase > FinalPhase) { |
Daniel Dunbar | adc5c7c | 2009-03-19 07:57:08 +0000 | [diff] [blame] | 841 | // Claim here to avoid the more general unused warning. |
| 842 | InputArg->claim(); |
Daniel Dunbar | 07806ca | 2009-09-17 04:13:26 +0000 | [diff] [blame] | 843 | |
| 844 | // Special case '-E' warning on a previously preprocessed file to make |
| 845 | // more sense. |
| 846 | if (InitialPhase == phases::Compile && FinalPhase == phases::Preprocess && |
| 847 | getPreprocessedType(InputType) == types::TY_INVALID) |
| 848 | Diag(clang::diag::warn_drv_preprocessed_input_file_unused) |
| 849 | << InputArg->getAsString(Args) |
| 850 | << FinalPhaseArg->getOption().getName(); |
| 851 | else |
| 852 | Diag(clang::diag::warn_drv_input_file_unused) |
| 853 | << InputArg->getAsString(Args) |
| 854 | << getPhaseName(InitialPhase) |
| 855 | << FinalPhaseArg->getOption().getName(); |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 856 | continue; |
| 857 | } |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 858 | |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 859 | // Build the pipeline for this file. |
Ted Kremenek | bb1110a | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 860 | llvm::OwningPtr<Action> Current(new InputAction(*InputArg, InputType)); |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 861 | for (unsigned i = 0; i != NumSteps; ++i) { |
| 862 | phases::ID Phase = types::getCompilationPhase(InputType, i); |
| 863 | |
| 864 | // We are done if this step is past what the user requested. |
| 865 | if (Phase > FinalPhase) |
| 866 | break; |
| 867 | |
| 868 | // Queue linker inputs. |
| 869 | if (Phase == phases::Link) { |
| 870 | assert(i + 1 == NumSteps && "linking must be final compilation step."); |
Ted Kremenek | bb1110a | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 871 | LinkerInputs.push_back(Current.take()); |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 872 | break; |
| 873 | } |
| 874 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 875 | // Some types skip the assembler phase (e.g., llvm-bc), but we can't |
| 876 | // encode this in the steps because the intermediate type depends on |
| 877 | // arguments. Just special case here. |
Daniel Dunbar | 1386495 | 2009-03-24 20:17:30 +0000 | [diff] [blame] | 878 | if (Phase == phases::Assemble && Current->getType() != types::TY_PP_Asm) |
| 879 | continue; |
| 880 | |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 881 | // Otherwise construct the appropriate action. |
Ted Kremenek | bb1110a | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 882 | Current.reset(ConstructPhaseAction(Args, Phase, Current.take())); |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 883 | if (Current->getType() == types::TY_Nothing) |
| 884 | break; |
| 885 | } |
| 886 | |
| 887 | // If we ended with something, add to the output list. |
| 888 | if (Current) |
Ted Kremenek | bb1110a | 2010-01-19 01:29:05 +0000 | [diff] [blame] | 889 | Actions.push_back(Current.take()); |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 890 | } |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 891 | |
| 892 | // Add a link action if necessary. |
| 893 | if (!LinkerInputs.empty()) |
| 894 | Actions.push_back(new LinkJobAction(LinkerInputs, types::TY_Image)); |
Daniel Dunbar | c7a67b7 | 2009-12-22 23:19:32 +0000 | [diff] [blame] | 895 | |
| 896 | // If we are linking, claim any options which are obviously only used for |
| 897 | // compilation. |
| 898 | if (FinalPhase == phases::Link) |
| 899 | Args.ClaimAllArgs(options::OPT_CompileOnly_Group); |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | Action *Driver::ConstructPhaseAction(const ArgList &Args, phases::ID Phase, |
| 903 | Action *Input) const { |
Daniel Dunbar | 2608c54 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 904 | llvm::PrettyStackTraceString CrashInfo("Constructing phase actions"); |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 905 | // Build the appropriate action. |
| 906 | switch (Phase) { |
| 907 | case phases::Link: assert(0 && "link action invalid here."); |
| 908 | case phases::Preprocess: { |
Daniel Dunbar | d67a322 | 2009-03-30 06:36:42 +0000 | [diff] [blame] | 909 | types::ID OutputTy; |
| 910 | // -{M, MM} alter the output type. |
Daniel Dunbar | 86aed7d | 2010-12-08 21:33:40 +0000 | [diff] [blame^] | 911 | if (Args.hasArg(options::OPT_M, options::OPT_MM)) { |
Daniel Dunbar | d67a322 | 2009-03-30 06:36:42 +0000 | [diff] [blame] | 912 | OutputTy = types::TY_Dependencies; |
| 913 | } else { |
| 914 | OutputTy = types::getPreprocessedType(Input->getType()); |
| 915 | assert(OutputTy != types::TY_INVALID && |
| 916 | "Cannot preprocess this input type!"); |
| 917 | } |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 918 | return new PreprocessJobAction(Input, OutputTy); |
| 919 | } |
| 920 | case phases::Precompile: |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 921 | return new PrecompileJobAction(Input, types::TY_PCH); |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 922 | case phases::Compile: { |
Daniel Dunbar | e0d2691 | 2009-12-23 00:47:42 +0000 | [diff] [blame] | 923 | bool HasO4 = false; |
| 924 | if (const Arg *A = Args.getLastArg(options::OPT_O_Group)) |
| 925 | HasO4 = A->getOption().matches(options::OPT_O4); |
| 926 | |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 927 | if (Args.hasArg(options::OPT_fsyntax_only)) { |
| 928 | return new CompileJobAction(Input, types::TY_Nothing); |
Daniel Dunbar | aeea8ac | 2010-02-11 03:16:21 +0000 | [diff] [blame] | 929 | } else if (Args.hasArg(options::OPT_rewrite_objc)) { |
| 930 | return new CompileJobAction(Input, types::TY_RewrittenObjC); |
Daniel Dunbar | 5e051f9 | 2009-05-06 02:12:32 +0000 | [diff] [blame] | 931 | } else if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto)) { |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 932 | return new AnalyzeJobAction(Input, types::TY_Plist); |
Daniel Dunbar | 6cdf83c | 2009-09-01 16:57:46 +0000 | [diff] [blame] | 933 | } else if (Args.hasArg(options::OPT_emit_ast)) { |
| 934 | return new CompileJobAction(Input, types::TY_AST); |
Daniel Dunbar | 1386495 | 2009-03-24 20:17:30 +0000 | [diff] [blame] | 935 | } else if (Args.hasArg(options::OPT_emit_llvm) || |
Daniel Dunbar | e0d2691 | 2009-12-23 00:47:42 +0000 | [diff] [blame] | 936 | Args.hasArg(options::OPT_flto) || HasO4) { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 937 | types::ID Output = |
Daniel Dunbar | 24e5299 | 2010-06-07 23:28:45 +0000 | [diff] [blame] | 938 | Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC; |
Daniel Dunbar | 6522933 | 2009-03-13 11:38:42 +0000 | [diff] [blame] | 939 | return new CompileJobAction(Input, Output); |
| 940 | } else { |
| 941 | return new CompileJobAction(Input, types::TY_PP_Asm); |
| 942 | } |
| 943 | } |
| 944 | case phases::Assemble: |
| 945 | return new AssembleJobAction(Input, types::TY_Object); |
| 946 | } |
| 947 | |
| 948 | assert(0 && "invalid phase in ConstructPhaseAction"); |
| 949 | return 0; |
Daniel Dunbar | 1688f1a | 2009-03-12 07:58:46 +0000 | [diff] [blame] | 950 | } |
| 951 | |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 952 | void Driver::BuildJobs(Compilation &C) const { |
Daniel Dunbar | 2608c54 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 953 | llvm::PrettyStackTraceString CrashInfo("Building compilation jobs"); |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 954 | |
| 955 | Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o); |
| 956 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 957 | // It is an error to provide a -o option if we are making multiple output |
| 958 | // files. |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 959 | if (FinalOutput) { |
| 960 | unsigned NumOutputs = 0; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 961 | for (ActionList::const_iterator it = C.getActions().begin(), |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 962 | ie = C.getActions().end(); it != ie; ++it) |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 963 | if ((*it)->getType() != types::TY_Nothing) |
| 964 | ++NumOutputs; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 965 | |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 966 | if (NumOutputs > 1) { |
| 967 | Diag(clang::diag::err_drv_output_argument_with_multiple_files); |
| 968 | FinalOutput = 0; |
| 969 | } |
| 970 | } |
| 971 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 972 | for (ActionList::const_iterator it = C.getActions().begin(), |
Daniel Dunbar | f0eddb8 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 973 | ie = C.getActions().end(); it != ie; ++it) { |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 974 | Action *A = *it; |
| 975 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 976 | // If we are linking an image for multiple archs then the linker wants |
| 977 | // -arch_multiple and -final_output <final image name>. Unfortunately, this |
| 978 | // doesn't fit in cleanly because we have to pass this information down. |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 979 | // |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 980 | // FIXME: This is a hack; find a cleaner way to integrate this into the |
| 981 | // process. |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 982 | const char *LinkingOutput = 0; |
Daniel Dunbar | dd76524 | 2009-03-26 16:12:09 +0000 | [diff] [blame] | 983 | if (isa<LipoJobAction>(A)) { |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 984 | if (FinalOutput) |
| 985 | LinkingOutput = FinalOutput->getValue(C.getArgs()); |
| 986 | else |
| 987 | LinkingOutput = DefaultImageName.c_str(); |
| 988 | } |
| 989 | |
| 990 | InputInfo II; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 991 | BuildJobsForAction(C, A, &C.getDefaultToolChain(), |
Daniel Dunbar | b5d86bb | 2009-09-09 18:36:01 +0000 | [diff] [blame] | 992 | /*BoundArch*/0, |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 993 | /*AtTopLevel*/ true, |
| 994 | /*LinkingOutput*/ LinkingOutput, |
| 995 | II); |
| 996 | } |
Daniel Dunbar | 3ce436d | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 997 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 998 | // If the user passed -Qunused-arguments or there were errors, don't warn |
| 999 | // about any unused arguments. |
Argyrios Kyrtzidis | 31448a4 | 2010-11-18 21:47:07 +0000 | [diff] [blame] | 1000 | if (Diags.hasErrorOccurred() || |
Daniel Dunbar | a3cfbe3 | 2009-04-07 19:04:18 +0000 | [diff] [blame] | 1001 | C.getArgs().hasArg(options::OPT_Qunused_arguments)) |
Daniel Dunbar | d175d97 | 2009-03-18 18:03:46 +0000 | [diff] [blame] | 1002 | return; |
| 1003 | |
Daniel Dunbar | 58399ae | 2009-03-29 22:24:54 +0000 | [diff] [blame] | 1004 | // Claim -### here. |
| 1005 | (void) C.getArgs().hasArg(options::OPT__HASH_HASH_HASH); |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1006 | |
Daniel Dunbar | 3ce436d | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 1007 | for (ArgList::const_iterator it = C.getArgs().begin(), ie = C.getArgs().end(); |
| 1008 | it != ie; ++it) { |
| 1009 | Arg *A = *it; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1010 | |
Daniel Dunbar | 3ce436d | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 1011 | // FIXME: It would be nice to be able to send the argument to the |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1012 | // Diagnostic, so that extra values, position, and so on could be printed. |
Daniel Dunbar | 90dd6f4 | 2009-04-04 00:52:26 +0000 | [diff] [blame] | 1013 | if (!A->isClaimed()) { |
Daniel Dunbar | a3cfbe3 | 2009-04-07 19:04:18 +0000 | [diff] [blame] | 1014 | if (A->getOption().hasNoArgumentUnused()) |
| 1015 | continue; |
| 1016 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1017 | // Suppress the warning automatically if this is just a flag, and it is an |
| 1018 | // instance of an argument we already claimed. |
Daniel Dunbar | 90dd6f4 | 2009-04-04 00:52:26 +0000 | [diff] [blame] | 1019 | const Option &Opt = A->getOption(); |
| 1020 | if (isa<FlagOption>(Opt)) { |
| 1021 | bool DuplicateClaimed = false; |
| 1022 | |
Daniel Dunbar | 44b36ee | 2009-11-25 11:53:23 +0000 | [diff] [blame] | 1023 | for (arg_iterator it = C.getArgs().filtered_begin(&Opt), |
| 1024 | ie = C.getArgs().filtered_end(); it != ie; ++it) { |
| 1025 | if ((*it)->isClaimed()) { |
Daniel Dunbar | 90dd6f4 | 2009-04-04 00:52:26 +0000 | [diff] [blame] | 1026 | DuplicateClaimed = true; |
| 1027 | break; |
| 1028 | } |
| 1029 | } |
| 1030 | |
| 1031 | if (DuplicateClaimed) |
| 1032 | continue; |
| 1033 | } |
| 1034 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1035 | Diag(clang::diag::warn_drv_unused_argument) |
Daniel Dunbar | 0e75994 | 2009-03-20 06:14:23 +0000 | [diff] [blame] | 1036 | << A->getAsString(C.getArgs()); |
Daniel Dunbar | 90dd6f4 | 2009-04-04 00:52:26 +0000 | [diff] [blame] | 1037 | } |
Daniel Dunbar | 3ce436d | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 1038 | } |
Daniel Dunbar | 95e6b19 | 2009-03-13 22:12:33 +0000 | [diff] [blame] | 1039 | } |
| 1040 | |
Daniel Dunbar | c434394 | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 1041 | static const Tool &SelectToolForJob(Compilation &C, const ToolChain *TC, |
| 1042 | const JobAction *JA, |
| 1043 | const ActionList *&Inputs) { |
| 1044 | const Tool *ToolForJob = 0; |
| 1045 | |
| 1046 | // See if we should look for a compiler with an integrated assembler. We match |
| 1047 | // bottom up, so what we are actually looking for is an assembler job with a |
| 1048 | // compiler input. |
Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 1049 | |
| 1050 | // FIXME: This doesn't belong here, but ideally we will support static soon |
| 1051 | // anyway. |
| 1052 | bool HasStatic = (C.getArgs().hasArg(options::OPT_mkernel) || |
| 1053 | C.getArgs().hasArg(options::OPT_static) || |
| 1054 | C.getArgs().hasArg(options::OPT_fapple_kext)); |
| 1055 | bool IsIADefault = (TC->IsIntegratedAssemblerDefault() && !HasStatic); |
| 1056 | if (C.getArgs().hasFlag(options::OPT_integrated_as, |
Daniel Dunbar | c434394 | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 1057 | options::OPT_no_integrated_as, |
Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 1058 | IsIADefault) && |
Daniel Dunbar | c434394 | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 1059 | !C.getArgs().hasArg(options::OPT_save_temps) && |
| 1060 | isa<AssembleJobAction>(JA) && |
| 1061 | Inputs->size() == 1 && isa<CompileJobAction>(*Inputs->begin())) { |
| 1062 | const Tool &Compiler = TC->SelectTool(C,cast<JobAction>(**Inputs->begin())); |
| 1063 | if (Compiler.hasIntegratedAssembler()) { |
| 1064 | Inputs = &(*Inputs)[0]->getInputs(); |
| 1065 | ToolForJob = &Compiler; |
| 1066 | } |
| 1067 | } |
| 1068 | |
| 1069 | // Otherwise use the tool for the current job. |
| 1070 | if (!ToolForJob) |
| 1071 | ToolForJob = &TC->SelectTool(C, *JA); |
| 1072 | |
| 1073 | // See if we should use an integrated preprocessor. We do so when we have |
| 1074 | // exactly one input, since this is the only use case we care about |
| 1075 | // (irrelevant since we don't support combine yet). |
| 1076 | if (Inputs->size() == 1 && isa<PreprocessJobAction>(*Inputs->begin()) && |
| 1077 | !C.getArgs().hasArg(options::OPT_no_integrated_cpp) && |
| 1078 | !C.getArgs().hasArg(options::OPT_traditional_cpp) && |
| 1079 | !C.getArgs().hasArg(options::OPT_save_temps) && |
| 1080 | ToolForJob->hasIntegratedCPP()) |
| 1081 | Inputs = &(*Inputs)[0]->getInputs(); |
| 1082 | |
| 1083 | return *ToolForJob; |
| 1084 | } |
| 1085 | |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1086 | void Driver::BuildJobsForAction(Compilation &C, |
| 1087 | const Action *A, |
| 1088 | const ToolChain *TC, |
Daniel Dunbar | b5d86bb | 2009-09-09 18:36:01 +0000 | [diff] [blame] | 1089 | const char *BoundArch, |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1090 | bool AtTopLevel, |
| 1091 | const char *LinkingOutput, |
| 1092 | InputInfo &Result) const { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1093 | llvm::PrettyStackTraceString CrashInfo("Building compilation jobs"); |
Daniel Dunbar | c4acf9d | 2009-03-18 23:18:19 +0000 | [diff] [blame] | 1094 | |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1095 | if (const InputAction *IA = dyn_cast<InputAction>(A)) { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1096 | // FIXME: It would be nice to not claim this here; maybe the old scheme of |
| 1097 | // just using Args was better? |
Daniel Dunbar | 5cdf3e0 | 2009-03-19 07:29:38 +0000 | [diff] [blame] | 1098 | const Arg &Input = IA->getInputArg(); |
| 1099 | Input.claim(); |
Daniel Dunbar | 35cbfeb | 2010-06-09 22:31:08 +0000 | [diff] [blame] | 1100 | if (Input.getOption().matches(options::OPT_INPUT)) { |
Daniel Dunbar | 5cdf3e0 | 2009-03-19 07:29:38 +0000 | [diff] [blame] | 1101 | const char *Name = Input.getValue(C.getArgs()); |
| 1102 | Result = InputInfo(Name, A->getType(), Name); |
| 1103 | } else |
| 1104 | Result = InputInfo(&Input, A->getType(), ""); |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1105 | return; |
| 1106 | } |
| 1107 | |
| 1108 | if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) { |
Daniel Dunbar | 1ef3f2a | 2009-09-08 23:37:19 +0000 | [diff] [blame] | 1109 | const ToolChain *TC = &C.getDefaultToolChain(); |
| 1110 | |
Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1111 | std::string Arch; |
Daniel Dunbar | 1ef3f2a | 2009-09-08 23:37:19 +0000 | [diff] [blame] | 1112 | if (BAA->getArchName()) |
| 1113 | TC = Host->CreateToolChain(C.getArgs(), BAA->getArchName()); |
| 1114 | |
Daniel Dunbar | b5d86bb | 2009-09-09 18:36:01 +0000 | [diff] [blame] | 1115 | BuildJobsForAction(C, *BAA->begin(), TC, BAA->getArchName(), |
Daniel Dunbar | c12a412 | 2010-08-02 02:38:12 +0000 | [diff] [blame] | 1116 | AtTopLevel, LinkingOutput, Result); |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1117 | return; |
| 1118 | } |
| 1119 | |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1120 | const ActionList *Inputs = &A->getInputs(); |
Daniel Dunbar | c434394 | 2010-02-03 03:07:56 +0000 | [diff] [blame] | 1121 | |
| 1122 | const JobAction *JA = cast<JobAction>(A); |
| 1123 | const Tool &T = SelectToolForJob(C, TC, JA, Inputs); |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1124 | |
| 1125 | // Only use pipes when there is exactly one input. |
Daniel Dunbar | 1a093d2 | 2009-03-18 06:00:36 +0000 | [diff] [blame] | 1126 | InputInfoList InputInfos; |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1127 | for (ActionList::const_iterator it = Inputs->begin(), ie = Inputs->end(); |
| 1128 | it != ie; ++it) { |
Daniel Dunbar | 6beaf51 | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 1129 | // Treat dsymutil sub-jobs as being at the top-level too, they shouldn't get |
| 1130 | // temporary output names. |
| 1131 | // |
| 1132 | // FIXME: Clean this up. |
| 1133 | bool SubJobAtTopLevel = false; |
| 1134 | if (AtTopLevel && isa<DsymutilJobAction>(A)) |
| 1135 | SubJobAtTopLevel = true; |
| 1136 | |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1137 | InputInfo II; |
Daniel Dunbar | c12a412 | 2010-08-02 02:38:12 +0000 | [diff] [blame] | 1138 | BuildJobsForAction(C, *it, TC, BoundArch, |
Daniel Dunbar | 6beaf51 | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 1139 | SubJobAtTopLevel, LinkingOutput, II); |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1140 | InputInfos.push_back(II); |
| 1141 | } |
| 1142 | |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1143 | // Always use the first input as the base input. |
| 1144 | const char *BaseInput = InputInfos[0].getBaseInput(); |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1145 | |
Daniel Dunbar | 6beaf51 | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 1146 | // ... except dsymutil actions, which use their actual input as the base |
| 1147 | // input. |
| 1148 | if (JA->getType() == types::TY_dSYM) |
| 1149 | BaseInput = InputInfos[0].getFilename(); |
| 1150 | |
Daniel Dunbar | d00272f | 2010-08-02 02:38:15 +0000 | [diff] [blame] | 1151 | // Determine the place to write output to, if any. |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1152 | if (JA->getType() == types::TY_Nothing) { |
Daniel Dunbar | b39cc52 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 1153 | Result = InputInfo(A->getType(), BaseInput); |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1154 | } else { |
Daniel Dunbar | b39cc52 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 1155 | Result = InputInfo(GetNamedOutputPath(C, *JA, BaseInput, AtTopLevel), |
| 1156 | A->getType(), BaseInput); |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1157 | } |
| 1158 | |
Daniel Dunbar | b39cc52 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 1159 | if (CCCPrintBindings) { |
Daniel Dunbar | d67a322 | 2009-03-30 06:36:42 +0000 | [diff] [blame] | 1160 | llvm::errs() << "# \"" << T.getToolChain().getTripleString() << '"' |
| 1161 | << " - \"" << T.getName() << "\", inputs: ["; |
Daniel Dunbar | b39cc52 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 1162 | for (unsigned i = 0, e = InputInfos.size(); i != e; ++i) { |
| 1163 | llvm::errs() << InputInfos[i].getAsString(); |
| 1164 | if (i + 1 != e) |
| 1165 | llvm::errs() << ", "; |
| 1166 | } |
| 1167 | llvm::errs() << "], output: " << Result.getAsString() << "\n"; |
| 1168 | } else { |
Daniel Dunbar | 7fbaf53 | 2010-08-02 02:38:28 +0000 | [diff] [blame] | 1169 | T.ConstructJob(C, *JA, Result, InputInfos, |
Daniel Dunbar | b5d86bb | 2009-09-09 18:36:01 +0000 | [diff] [blame] | 1170 | C.getArgsForToolChain(TC, BoundArch), LinkingOutput); |
Daniel Dunbar | b39cc52 | 2009-03-17 22:47:06 +0000 | [diff] [blame] | 1171 | } |
Daniel Dunbar | e75d834 | 2009-03-16 06:56:51 +0000 | [diff] [blame] | 1172 | } |
| 1173 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1174 | const char *Driver::GetNamedOutputPath(Compilation &C, |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1175 | const JobAction &JA, |
| 1176 | const char *BaseInput, |
| 1177 | bool AtTopLevel) const { |
Daniel Dunbar | 2608c54 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 1178 | llvm::PrettyStackTraceString CrashInfo("Computing output path"); |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1179 | // Output to a user requested destination? |
Daniel Dunbar | 6beaf51 | 2010-06-04 18:28:41 +0000 | [diff] [blame] | 1180 | if (AtTopLevel && !isa<DsymutilJobAction>(JA)) { |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1181 | if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o)) |
| 1182 | return C.addResultFile(FinalOutput->getValue(C.getArgs())); |
| 1183 | } |
| 1184 | |
Nick Lewycky | 6e1ce29 | 2010-09-24 00:46:53 +0000 | [diff] [blame] | 1185 | // Default to writing to stdout? |
| 1186 | if (AtTopLevel && isa<PreprocessJobAction>(JA)) |
| 1187 | return "-"; |
| 1188 | |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1189 | // Output to a temporary file? |
| 1190 | if (!AtTopLevel && !C.getArgs().hasArg(options::OPT_save_temps)) { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1191 | std::string TmpName = |
Daniel Dunbar | e627c1c | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1192 | GetTemporaryPath(types::getTypeTempSuffix(JA.getType())); |
| 1193 | return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str())); |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1194 | } |
| 1195 | |
| 1196 | llvm::sys::Path BasePath(BaseInput); |
Daniel Dunbar | d00978b | 2009-03-18 02:00:31 +0000 | [diff] [blame] | 1197 | std::string BaseName(BasePath.getLast()); |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1198 | |
| 1199 | // Determine what the derived output name should be. |
| 1200 | const char *NamedOutput; |
| 1201 | if (JA.getType() == types::TY_Image) { |
| 1202 | NamedOutput = DefaultImageName.c_str(); |
| 1203 | } else { |
| 1204 | const char *Suffix = types::getTypeTempSuffix(JA.getType()); |
| 1205 | assert(Suffix && "All types used for output should have a suffix."); |
| 1206 | |
| 1207 | std::string::size_type End = std::string::npos; |
| 1208 | if (!types::appendSuffixForType(JA.getType())) |
| 1209 | End = BaseName.rfind('.'); |
| 1210 | std::string Suffixed(BaseName.substr(0, End)); |
| 1211 | Suffixed += '.'; |
| 1212 | Suffixed += Suffix; |
| 1213 | NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str()); |
| 1214 | } |
| 1215 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1216 | // As an annoying special case, PCH generation doesn't strip the pathname. |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1217 | if (JA.getType() == types::TY_PCH) { |
| 1218 | BasePath.eraseComponent(); |
Daniel Dunbar | e6c8319 | 2009-03-18 09:58:30 +0000 | [diff] [blame] | 1219 | if (BasePath.isEmpty()) |
| 1220 | BasePath = NamedOutput; |
| 1221 | else |
| 1222 | BasePath.appendComponent(NamedOutput); |
Daniel Dunbar | 7a178a4 | 2009-03-17 17:53:55 +0000 | [diff] [blame] | 1223 | return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str())); |
| 1224 | } else { |
| 1225 | return C.addResultFile(NamedOutput); |
| 1226 | } |
| 1227 | } |
| 1228 | |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1229 | std::string Driver::GetFilePath(const char *Name, const ToolChain &TC) const { |
Chandler Carruth | 8455924 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 1230 | // Respect a limited subset of the '-Bprefix' functionality in GCC by |
| 1231 | // attempting to use this prefix when lokup up program paths. |
| 1232 | if (!PrefixDir.empty()) { |
| 1233 | llvm::sys::Path P(PrefixDir); |
| 1234 | P.appendComponent(Name); |
| 1235 | if (P.exists()) |
| 1236 | return P.str(); |
| 1237 | } |
| 1238 | |
Daniel Dunbar | 68b01a0 | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1239 | const ToolChain::path_list &List = TC.getFilePaths(); |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1240 | for (ToolChain::path_list::const_iterator |
Daniel Dunbar | 68b01a0 | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1241 | it = List.begin(), ie = List.end(); it != ie; ++it) { |
| 1242 | llvm::sys::Path P(*it); |
| 1243 | P.appendComponent(Name); |
| 1244 | if (P.exists()) |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1245 | return P.str(); |
Daniel Dunbar | 68b01a0 | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1246 | } |
| 1247 | |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1248 | return Name; |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 1249 | } |
| 1250 | |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1251 | std::string Driver::GetProgramPath(const char *Name, const ToolChain &TC, |
| 1252 | bool WantFile) const { |
Chandler Carruth | 8455924 | 2010-03-22 01:52:07 +0000 | [diff] [blame] | 1253 | // Respect a limited subset of the '-Bprefix' functionality in GCC by |
| 1254 | // attempting to use this prefix when lokup up program paths. |
| 1255 | if (!PrefixDir.empty()) { |
| 1256 | llvm::sys::Path P(PrefixDir); |
| 1257 | P.appendComponent(Name); |
| 1258 | if (WantFile ? P.exists() : P.canExecute()) |
| 1259 | return P.str(); |
| 1260 | } |
| 1261 | |
Daniel Dunbar | 68b01a0 | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1262 | const ToolChain::path_list &List = TC.getProgramPaths(); |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1263 | for (ToolChain::path_list::const_iterator |
Daniel Dunbar | 68b01a0 | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1264 | it = List.begin(), ie = List.end(); it != ie; ++it) { |
| 1265 | llvm::sys::Path P(*it); |
| 1266 | P.appendComponent(Name); |
Mike Stump | db65737 | 2009-03-27 00:40:20 +0000 | [diff] [blame] | 1267 | if (WantFile ? P.exists() : P.canExecute()) |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1268 | return P.str(); |
Daniel Dunbar | 68b01a0 | 2009-03-18 20:26:19 +0000 | [diff] [blame] | 1269 | } |
| 1270 | |
Daniel Dunbar | 76ce741 | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 1271 | // If all else failed, search the path. |
| 1272 | llvm::sys::Path P(llvm::sys::Program::FindProgramByName(Name)); |
Daniel Dunbar | 6f66877 | 2009-03-18 21:34:08 +0000 | [diff] [blame] | 1273 | if (!P.empty()) |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1274 | return P.str(); |
Daniel Dunbar | 6f66877 | 2009-03-18 21:34:08 +0000 | [diff] [blame] | 1275 | |
Daniel Dunbar | 1ce8153 | 2009-09-09 22:33:00 +0000 | [diff] [blame] | 1276 | return Name; |
Daniel Dunbar | 5e0f6af | 2009-03-13 00:51:18 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
Daniel Dunbar | e627c1c | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1279 | std::string Driver::GetTemporaryPath(const char *Suffix) const { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1280 | // FIXME: This is lame; sys::Path should provide this function (in particular, |
| 1281 | // it should know how to find the temporary files dir). |
Daniel Dunbar | e627c1c | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1282 | std::string Error; |
Daniel Dunbar | c35694d | 2009-04-20 20:28:21 +0000 | [diff] [blame] | 1283 | const char *TmpDir = ::getenv("TMPDIR"); |
| 1284 | if (!TmpDir) |
| 1285 | TmpDir = ::getenv("TEMP"); |
| 1286 | if (!TmpDir) |
Daniel Dunbar | 712e4de | 2009-04-21 00:25:10 +0000 | [diff] [blame] | 1287 | TmpDir = ::getenv("TMP"); |
| 1288 | if (!TmpDir) |
Daniel Dunbar | c35694d | 2009-04-20 20:28:21 +0000 | [diff] [blame] | 1289 | TmpDir = "/tmp"; |
| 1290 | llvm::sys::Path P(TmpDir); |
Daniel Dunbar | ab8ce7c | 2009-04-20 17:32:49 +0000 | [diff] [blame] | 1291 | P.appendComponent("cc"); |
Daniel Dunbar | e627c1c | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1292 | if (P.makeUnique(false, &Error)) { |
| 1293 | Diag(clang::diag::err_drv_unable_to_make_temp) << Error; |
| 1294 | return ""; |
| 1295 | } |
| 1296 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1297 | // FIXME: Grumble, makeUnique sometimes leaves the file around!? PR3837. |
Daniel Dunbar | 18d69de | 2009-03-18 23:08:52 +0000 | [diff] [blame] | 1298 | P.eraseFromDisk(false, 0); |
| 1299 | |
Daniel Dunbar | e627c1c | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1300 | P.appendSuffix(Suffix); |
Chris Lattner | 3441b4f | 2009-08-23 22:45:33 +0000 | [diff] [blame] | 1301 | return P.str(); |
Daniel Dunbar | e627c1c | 2009-03-18 19:34:39 +0000 | [diff] [blame] | 1302 | } |
| 1303 | |
Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1304 | const HostInfo *Driver::GetHostInfo(const char *TripleStr) const { |
Daniel Dunbar | 2608c54 | 2009-03-18 01:38:48 +0000 | [diff] [blame] | 1305 | llvm::PrettyStackTraceString CrashInfo("Constructing host"); |
Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1306 | llvm::Triple Triple(TripleStr); |
Daniel Dunbar | 4dff6a4 | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 1307 | |
Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 1308 | // TCE is an osless target |
| 1309 | if (Triple.getArchName() == "tce") |
Daniel Dunbar | fb3d747 | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 1310 | return createTCEHostInfo(*this, Triple); |
Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 1311 | |
Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1312 | switch (Triple.getOS()) { |
Edward O'Callaghan | 856e4ff | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 1313 | case llvm::Triple::AuroraUX: |
| 1314 | return createAuroraUXHostInfo(*this, Triple); |
Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1315 | case llvm::Triple::Darwin: |
| 1316 | return createDarwinHostInfo(*this, Triple); |
| 1317 | case llvm::Triple::DragonFly: |
| 1318 | return createDragonFlyHostInfo(*this, Triple); |
Daniel Dunbar | 10de9e6 | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 1319 | case llvm::Triple::OpenBSD: |
| 1320 | return createOpenBSDHostInfo(*this, Triple); |
Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1321 | case llvm::Triple::FreeBSD: |
| 1322 | return createFreeBSDHostInfo(*this, Triple); |
Chris Lattner | 3e2ee14 | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 1323 | case llvm::Triple::Minix: |
| 1324 | return createMinixHostInfo(*this, Triple); |
Eli Friedman | 5cd659f | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 1325 | case llvm::Triple::Linux: |
| 1326 | return createLinuxHostInfo(*this, Triple); |
Michael J. Spencer | b186bc3 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 1327 | case llvm::Triple::Win32: |
| 1328 | return createWindowsHostInfo(*this, Triple); |
| 1329 | case llvm::Triple::MinGW32: |
| 1330 | case llvm::Triple::MinGW64: |
| 1331 | return createMinGWHostInfo(*this, Triple); |
Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1332 | default: |
| 1333 | return createUnknownHostInfo(*this, Triple); |
| 1334 | } |
Daniel Dunbar | 4dff6a4 | 2009-03-10 23:41:59 +0000 | [diff] [blame] | 1335 | } |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1336 | |
| 1337 | bool Driver::ShouldUseClangCompiler(const Compilation &C, const JobAction &JA, |
Daniel Dunbar | 953b8d1 | 2009-09-08 23:36:55 +0000 | [diff] [blame] | 1338 | const llvm::Triple &Triple) const { |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1339 | // Check if user requested no clang, or clang doesn't understand this type (we |
| 1340 | // only handle single inputs for now). |
Daniel Dunbar | 6cdf83c | 2009-09-01 16:57:46 +0000 | [diff] [blame] | 1341 | if (!CCCUseClang || JA.size() != 1 || |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1342 | !types::isAcceptedByClang((*JA.begin())->getType())) |
| 1343 | return false; |
| 1344 | |
Daniel Dunbar | 88f356e | 2009-03-24 19:02:31 +0000 | [diff] [blame] | 1345 | // Otherwise make sure this is an action clang understands. |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1346 | if (isa<PreprocessJobAction>(JA)) { |
Daniel Dunbar | 6b5244d | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1347 | if (!CCCUseClangCPP) { |
| 1348 | Diag(clang::diag::warn_drv_not_using_clang_cpp); |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1349 | return false; |
Daniel Dunbar | 6b5244d | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1350 | } |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1351 | } else if (!isa<PrecompileJobAction>(JA) && !isa<CompileJobAction>(JA)) |
| 1352 | return false; |
| 1353 | |
Daniel Dunbar | 88f356e | 2009-03-24 19:02:31 +0000 | [diff] [blame] | 1354 | // Use clang for C++? |
Daniel Dunbar | 6b5244d | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1355 | if (!CCCUseClangCXX && types::isCXX((*JA.begin())->getType())) { |
| 1356 | Diag(clang::diag::warn_drv_not_using_clang_cxx); |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1357 | return false; |
Daniel Dunbar | 6b5244d | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1358 | } |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1359 | |
Daniel Dunbar | aeea8ac | 2010-02-11 03:16:21 +0000 | [diff] [blame] | 1360 | // Always use clang for precompiling, AST generation, and rewriting, |
| 1361 | // regardless of archs. |
Daniel Dunbar | 24e5299 | 2010-06-07 23:28:45 +0000 | [diff] [blame] | 1362 | if (isa<PrecompileJobAction>(JA) || |
| 1363 | types::isOnlyAcceptedByClang(JA.getType())) |
Daniel Dunbar | f2df7c2 | 2009-04-16 23:10:13 +0000 | [diff] [blame] | 1364 | return true; |
| 1365 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1366 | // Finally, don't use clang if this isn't one of the user specified archs to |
| 1367 | // build. |
Daniel Dunbar | 953b8d1 | 2009-09-08 23:36:55 +0000 | [diff] [blame] | 1368 | if (!CCCClangArchs.empty() && !CCCClangArchs.count(Triple.getArch())) { |
| 1369 | Diag(clang::diag::warn_drv_not_using_clang_arch) << Triple.getArchName(); |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1370 | return false; |
Daniel Dunbar | 6b5244d | 2009-03-24 19:14:56 +0000 | [diff] [blame] | 1371 | } |
Daniel Dunbar | 8fa879d | 2009-03-24 18:57:02 +0000 | [diff] [blame] | 1372 | |
| 1373 | return true; |
| 1374 | } |
Daniel Dunbar | c7fd57a | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 1375 | |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1376 | /// GetReleaseVersion - Parse (([0-9]+)(.([0-9]+)(.([0-9]+)?))?)? and return the |
| 1377 | /// grouped values as integers. Numbers which are not provided are set to 0. |
Daniel Dunbar | c7fd57a | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 1378 | /// |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1379 | /// \return True if the entire string was parsed (9.2), or all groups were |
| 1380 | /// parsed (10.3.5extrastuff). |
| 1381 | bool Driver::GetReleaseVersion(const char *Str, unsigned &Major, |
Daniel Dunbar | c7fd57a | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 1382 | unsigned &Minor, unsigned &Micro, |
| 1383 | bool &HadExtra) { |
| 1384 | HadExtra = false; |
| 1385 | |
| 1386 | Major = Minor = Micro = 0; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1387 | if (*Str == '\0') |
Daniel Dunbar | c7fd57a | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 1388 | return true; |
| 1389 | |
| 1390 | char *End; |
| 1391 | Major = (unsigned) strtol(Str, &End, 10); |
| 1392 | if (*Str != '\0' && *End == '\0') |
| 1393 | return true; |
| 1394 | if (*End != '.') |
| 1395 | return false; |
Daniel Dunbar | f26a7ab | 2009-09-08 23:36:43 +0000 | [diff] [blame] | 1396 | |
Daniel Dunbar | c7fd57a | 2009-03-26 15:58:36 +0000 | [diff] [blame] | 1397 | Str = End+1; |
| 1398 | Minor = (unsigned) strtol(Str, &End, 10); |
| 1399 | if (*Str != '\0' && *End == '\0') |
| 1400 | return true; |
| 1401 | if (*End != '.') |
| 1402 | return false; |
| 1403 | |
| 1404 | Str = End+1; |
| 1405 | Micro = (unsigned) strtol(Str, &End, 10); |
| 1406 | if (*Str != '\0' && *End == '\0') |
| 1407 | return true; |
| 1408 | if (Str == End) |
| 1409 | return false; |
| 1410 | HadExtra = true; |
| 1411 | return true; |
| 1412 | } |