Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 1 | //===--- Compilation.cpp - Compilation Task Implementation --------------*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "clang/Driver/Compilation.h" |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 11 | |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 12 | #include "clang/Driver/Action.h" |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 13 | #include "clang/Driver/ArgList.h" |
Daniel Dunbar | e530ad4 | 2009-03-18 22:16:03 +0000 | [diff] [blame] | 14 | #include "clang/Driver/Driver.h" |
| 15 | #include "clang/Driver/DriverDiagnostic.h" |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 16 | #include "clang/Driver/ToolChain.h" |
| 17 | |
Daniel Dunbar | 24b5560 | 2009-03-18 06:49:39 +0000 | [diff] [blame] | 18 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 19 | #include "llvm/System/Program.h" |
Daniel Dunbar | e530ad4 | 2009-03-18 22:16:03 +0000 | [diff] [blame] | 20 | #include <sys/stat.h> |
| 21 | #include <errno.h> |
Daniel Dunbar | 1b3bb6e | 2009-03-04 20:49:20 +0000 | [diff] [blame] | 22 | using namespace clang::driver; |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 23 | |
Daniel Dunbar | df35d7f | 2009-07-01 20:30:52 +0000 | [diff] [blame] | 24 | Compilation::Compilation(const Driver &D, |
| 25 | const ToolChain &_DefaultToolChain, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 26 | InputArgList *_Args) |
Daniel Dunbar | e530ad4 | 2009-03-18 22:16:03 +0000 | [diff] [blame] | 27 | : TheDriver(D), DefaultToolChain(_DefaultToolChain), Args(_Args) { |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 28 | } |
| 29 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 30 | Compilation::~Compilation() { |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 31 | delete Args; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 32 | |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 33 | // Free any derived arg lists. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 34 | for (llvm::DenseMap<const ToolChain*, DerivedArgList*>::iterator |
Daniel Dunbar | f3cad36 | 2009-03-25 04:13:45 +0000 | [diff] [blame] | 35 | it = TCArgs.begin(), ie = TCArgs.end(); it != ie; ++it) |
| 36 | delete it->second; |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 37 | |
| 38 | // Free the actions, if built. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 39 | for (ActionList::iterator it = Actions.begin(), ie = Actions.end(); |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 40 | it != ie; ++it) |
| 41 | delete *it; |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Daniel Dunbar | f3cad36 | 2009-03-25 04:13:45 +0000 | [diff] [blame] | 44 | const DerivedArgList &Compilation::getArgsForToolChain(const ToolChain *TC) { |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 45 | if (!TC) |
| 46 | TC = &DefaultToolChain; |
| 47 | |
Daniel Dunbar | f3cad36 | 2009-03-25 04:13:45 +0000 | [diff] [blame] | 48 | DerivedArgList *&Entry = TCArgs[TC]; |
Daniel Dunbar | aa3e0d2 | 2009-03-18 05:58:45 +0000 | [diff] [blame] | 49 | if (!Entry) |
| 50 | Entry = TC->TranslateArgs(*Args); |
Daniel Dunbar | 586dc23 | 2009-03-16 06:42:30 +0000 | [diff] [blame] | 51 | |
Daniel Dunbar | aa3e0d2 | 2009-03-18 05:58:45 +0000 | [diff] [blame] | 52 | return *Entry; |
Daniel Dunbar | 3ede8d0 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 55 | void Compilation::PrintJob(llvm::raw_ostream &OS, const Job &J, |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 56 | const char *Terminator, bool Quote) const { |
| 57 | if (const Command *C = dyn_cast<Command>(&J)) { |
Daniel Dunbar | 24b5560 | 2009-03-18 06:49:39 +0000 | [diff] [blame] | 58 | OS << " \"" << C->getExecutable() << '"'; |
| 59 | for (ArgStringList::const_iterator it = C->getArguments().begin(), |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 60 | ie = C->getArguments().end(); it != ie; ++it) { |
| 61 | if (Quote) |
| 62 | OS << " \"" << *it << '"'; |
| 63 | else |
| 64 | OS << ' ' << *it; |
| 65 | } |
Daniel Dunbar | 24b5560 | 2009-03-18 06:49:39 +0000 | [diff] [blame] | 66 | OS << Terminator; |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 67 | } else if (const PipedJob *PJ = dyn_cast<PipedJob>(&J)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 68 | for (PipedJob::const_iterator |
Daniel Dunbar | 24b5560 | 2009-03-18 06:49:39 +0000 | [diff] [blame] | 69 | it = PJ->begin(), ie = PJ->end(); it != ie; ++it) |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 70 | PrintJob(OS, **it, (it + 1 != PJ->end()) ? " |\n" : "\n", Quote); |
Daniel Dunbar | 24b5560 | 2009-03-18 06:49:39 +0000 | [diff] [blame] | 71 | } else { |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 72 | const JobList *Jobs = cast<JobList>(&J); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 73 | for (JobList::const_iterator |
Daniel Dunbar | 24b5560 | 2009-03-18 06:49:39 +0000 | [diff] [blame] | 74 | it = Jobs->begin(), ie = Jobs->end(); it != ie; ++it) |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 75 | PrintJob(OS, **it, Terminator, Quote); |
Daniel Dunbar | 24b5560 | 2009-03-18 06:49:39 +0000 | [diff] [blame] | 76 | } |
| 77 | } |
| 78 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 79 | bool Compilation::CleanupFileList(const ArgStringList &Files, |
Daniel Dunbar | e530ad4 | 2009-03-18 22:16:03 +0000 | [diff] [blame] | 80 | bool IssueErrors) const { |
| 81 | bool Success = true; |
| 82 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 83 | for (ArgStringList::const_iterator |
Daniel Dunbar | e530ad4 | 2009-03-18 22:16:03 +0000 | [diff] [blame] | 84 | it = Files.begin(), ie = Files.end(); it != ie; ++it) { |
| 85 | llvm::sys::Path P(*it); |
| 86 | std::string Error; |
| 87 | |
| 88 | if (P.eraseFromDisk(false, &Error)) { |
| 89 | // Failure is only failure if the file doesn't exist. There is a |
| 90 | // race condition here due to the limited interface of |
| 91 | // llvm::sys::Path, we want to know if the removal gave E_NOENT. |
| 92 | |
| 93 | // FIXME: Grumble, P.exists() is broken. PR3837. |
| 94 | struct stat buf; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 95 | if (::stat(P.c_str(), &buf) == 0 |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 96 | || errno != ENOENT) { |
Daniel Dunbar | e530ad4 | 2009-03-18 22:16:03 +0000 | [diff] [blame] | 97 | if (IssueErrors) |
| 98 | getDriver().Diag(clang::diag::err_drv_unable_to_remove_file) |
| 99 | << Error; |
| 100 | Success = false; |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | return Success; |
| 106 | } |
| 107 | |
Daniel Dunbar | 31c11eb | 2009-07-01 19:14:39 +0000 | [diff] [blame] | 108 | int Compilation::ExecuteCommand(const Command &C, |
| 109 | const Command *&FailingCommand) const { |
Daniel Dunbar | ceafbc8 | 2009-03-19 08:01:45 +0000 | [diff] [blame] | 110 | llvm::sys::Path Prog(C.getExecutable()); |
| 111 | const char **Argv = new const char*[C.getArguments().size() + 2]; |
| 112 | Argv[0] = C.getExecutable(); |
| 113 | std::copy(C.getArguments().begin(), C.getArguments().end(), Argv+1); |
| 114 | Argv[C.getArguments().size() + 1] = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 115 | |
Daniel Dunbar | ceafbc8 | 2009-03-19 08:01:45 +0000 | [diff] [blame] | 116 | if (getDriver().CCCEcho || getArgs().hasArg(options::OPT_v)) |
| 117 | PrintJob(llvm::errs(), C, "\n", false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 118 | |
Daniel Dunbar | ceafbc8 | 2009-03-19 08:01:45 +0000 | [diff] [blame] | 119 | std::string Error; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 120 | int Res = |
Daniel Dunbar | ceafbc8 | 2009-03-19 08:01:45 +0000 | [diff] [blame] | 121 | llvm::sys::Program::ExecuteAndWait(Prog, Argv, |
| 122 | /*env*/0, /*redirects*/0, |
| 123 | /*secondsToWait*/0, /*memoryLimit*/0, |
| 124 | &Error); |
| 125 | if (!Error.empty()) { |
| 126 | assert(Res && "Error string set with 0 result code!"); |
| 127 | getDriver().Diag(clang::diag::err_drv_command_failure) << Error; |
| 128 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 129 | |
Daniel Dunbar | 31c11eb | 2009-07-01 19:14:39 +0000 | [diff] [blame] | 130 | if (Res) |
| 131 | FailingCommand = &C; |
| 132 | |
Daniel Dunbar | ceafbc8 | 2009-03-19 08:01:45 +0000 | [diff] [blame] | 133 | delete[] Argv; |
| 134 | return Res; |
| 135 | } |
| 136 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 137 | int Compilation::ExecuteJob(const Job &J, |
Daniel Dunbar | 31c11eb | 2009-07-01 19:14:39 +0000 | [diff] [blame] | 138 | const Command *&FailingCommand) const { |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 139 | if (const Command *C = dyn_cast<Command>(&J)) { |
Daniel Dunbar | 31c11eb | 2009-07-01 19:14:39 +0000 | [diff] [blame] | 140 | return ExecuteCommand(*C, FailingCommand); |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 141 | } else if (const PipedJob *PJ = dyn_cast<PipedJob>(&J)) { |
Daniel Dunbar | ceafbc8 | 2009-03-19 08:01:45 +0000 | [diff] [blame] | 142 | // Piped commands with a single job are easy. |
| 143 | if (PJ->size() == 1) |
Daniel Dunbar | 31c11eb | 2009-07-01 19:14:39 +0000 | [diff] [blame] | 144 | return ExecuteCommand(**PJ->begin(), FailingCommand); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 145 | |
Daniel Dunbar | 31c11eb | 2009-07-01 19:14:39 +0000 | [diff] [blame] | 146 | FailingCommand = *PJ->begin(); |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 147 | getDriver().Diag(clang::diag::err_drv_unsupported_opt) << "-pipe"; |
| 148 | return 1; |
| 149 | } else { |
| 150 | const JobList *Jobs = cast<JobList>(&J); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame^] | 151 | for (JobList::const_iterator |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 152 | it = Jobs->begin(), ie = Jobs->end(); it != ie; ++it) |
Daniel Dunbar | 31c11eb | 2009-07-01 19:14:39 +0000 | [diff] [blame] | 153 | if (int Res = ExecuteJob(**it, FailingCommand)) |
Daniel Dunbar | 49b98e7 | 2009-03-18 22:44:24 +0000 | [diff] [blame] | 154 | return Res; |
| 155 | return 0; |
| 156 | } |
| 157 | } |