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"
11 #include "clang/Driver/Action.h"
12 #include "clang/Driver/Driver.h"
13 #include "clang/Driver/DriverDiagnostic.h"
14 #include "clang/Driver/Options.h"
15 #include "clang/Driver/ToolChain.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/Option/ArgList.h"
18 #include "llvm/Support/FileSystem.h"
19 #include "llvm/Support/raw_ostream.h"
20 
21 using namespace clang::driver;
22 using namespace clang;
23 using namespace llvm::opt;
24 
25 Compilation::Compilation(const Driver &D, const ToolChain &_DefaultToolChain,
26                          InputArgList *_Args, DerivedArgList *_TranslatedArgs,
27                          bool ContainsError)
28     : TheDriver(D), DefaultToolChain(_DefaultToolChain), ActiveOffloadMask(0u),
29       Args(_Args), TranslatedArgs(_TranslatedArgs), ForDiagnostics(false),
30       ContainsError(ContainsError) {
31   // The offloading host toolchain is the default tool chain.
32   OrderedOffloadingToolchains.insert(
33       std::make_pair(Action::OFK_Host, &DefaultToolChain));
34 }
35 
36 Compilation::~Compilation() {
37   delete TranslatedArgs;
38   delete Args;
39 
40   // Free any derived arg lists.
41   for (auto Arg : TCArgs)
42     if (Arg.second != TranslatedArgs)
43       delete Arg.second;
44 }
45 
46 const DerivedArgList &
47 Compilation::getArgsForToolChain(const ToolChain *TC, StringRef BoundArch,
48                                  Action::OffloadKind DeviceOffloadKind) {
49   if (!TC)
50     TC = &DefaultToolChain;
51 
52   DerivedArgList *&Entry = TCArgs[{TC, BoundArch, DeviceOffloadKind}];
53   if (!Entry) {
54     SmallVector<Arg *, 4> AllocatedArgs;
55     DerivedArgList *OpenMPArgs = nullptr;
56     // Translate OpenMP toolchain arguments provided via the -Xopenmp-target flags.
57     if (DeviceOffloadKind == Action::OFK_OpenMP) {
58       const ToolChain *HostTC = getSingleOffloadToolChain<Action::OFK_Host>();
59       bool SameTripleAsHost = (TC->getTriple() == HostTC->getTriple());
60       OpenMPArgs = TC->TranslateOpenMPTargetArgs(
61           *TranslatedArgs, SameTripleAsHost, AllocatedArgs);
62     }
63 
64     if (!OpenMPArgs) {
65       Entry = TC->TranslateArgs(*TranslatedArgs, BoundArch, DeviceOffloadKind);
66       if (!Entry)
67         Entry = TranslatedArgs;
68     } else {
69       Entry = TC->TranslateArgs(*OpenMPArgs, BoundArch, DeviceOffloadKind);
70       if (!Entry)
71         Entry = OpenMPArgs;
72       else
73         delete OpenMPArgs;
74     }
75 
76     // Add allocated arguments to the final DAL.
77     for (auto ArgPtr : AllocatedArgs) {
78       Entry->AddSynthesizedArg(ArgPtr);
79     }
80   }
81 
82   return *Entry;
83 }
84 
85 bool Compilation::CleanupFile(const char *File, bool IssueErrors) const {
86   // FIXME: Why are we trying to remove files that we have not created? For
87   // example we should only try to remove a temporary assembly file if
88   // "clang -cc1" succeed in writing it. Was this a workaround for when
89   // clang was writing directly to a .s file and sometimes leaving it behind
90   // during a failure?
91 
92   // FIXME: If this is necessary, we can still try to split
93   // llvm::sys::fs::remove into a removeFile and a removeDir and avoid the
94   // duplicated stat from is_regular_file.
95 
96   // Don't try to remove files which we don't have write access to (but may be
97   // able to remove), or non-regular files. Underlying tools may have
98   // intentionally not overwritten them.
99   if (!llvm::sys::fs::can_write(File) || !llvm::sys::fs::is_regular_file(File))
100     return true;
101 
102   if (std::error_code EC = llvm::sys::fs::remove(File)) {
103     // Failure is only failure if the file exists and is "regular". We checked
104     // for it being regular before, and llvm::sys::fs::remove ignores ENOENT,
105     // so we don't need to check again.
106 
107     if (IssueErrors)
108       getDriver().Diag(clang::diag::err_drv_unable_to_remove_file)
109         << EC.message();
110     return false;
111   }
112   return true;
113 }
114 
115 bool Compilation::CleanupFileList(const ArgStringList &Files,
116                                   bool IssueErrors) const {
117   bool Success = true;
118   for (ArgStringList::const_iterator
119          it = Files.begin(), ie = Files.end(); it != ie; ++it)
120     Success &= CleanupFile(*it, IssueErrors);
121   return Success;
122 }
123 
124 bool Compilation::CleanupFileMap(const ArgStringMap &Files,
125                                  const JobAction *JA,
126                                  bool IssueErrors) const {
127   bool Success = true;
128   for (ArgStringMap::const_iterator
129          it = Files.begin(), ie = Files.end(); it != ie; ++it) {
130 
131     // If specified, only delete the files associated with the JobAction.
132     // Otherwise, delete all files in the map.
133     if (JA && it->first != JA)
134       continue;
135     Success &= CleanupFile(it->second, IssueErrors);
136   }
137   return Success;
138 }
139 
140 int Compilation::ExecuteCommand(const Command &C,
141                                 const Command *&FailingCommand) const {
142   if ((getDriver().CCPrintOptions ||
143        getArgs().hasArg(options::OPT_v)) && !getDriver().CCGenDiagnostics) {
144     raw_ostream *OS = &llvm::errs();
145 
146     // Follow gcc implementation of CC_PRINT_OPTIONS; we could also cache the
147     // output stream.
148     if (getDriver().CCPrintOptions && getDriver().CCPrintOptionsFilename) {
149       std::error_code EC;
150       OS = new llvm::raw_fd_ostream(getDriver().CCPrintOptionsFilename, EC,
151                                     llvm::sys::fs::F_Append |
152                                         llvm::sys::fs::F_Text);
153       if (EC) {
154         getDriver().Diag(clang::diag::err_drv_cc_print_options_failure)
155             << EC.message();
156         FailingCommand = &C;
157         delete OS;
158         return 1;
159       }
160     }
161 
162     if (getDriver().CCPrintOptions)
163       *OS << "[Logging clang options]";
164 
165     C.Print(*OS, "\n", /*Quote=*/getDriver().CCPrintOptions);
166 
167     if (OS != &llvm::errs())
168       delete OS;
169   }
170 
171   std::string Error;
172   bool ExecutionFailed;
173   int Res = C.Execute(Redirects, &Error, &ExecutionFailed);
174   if (!Error.empty()) {
175     assert(Res && "Error string set with 0 result code!");
176     getDriver().Diag(clang::diag::err_drv_command_failure) << Error;
177   }
178 
179   if (Res)
180     FailingCommand = &C;
181 
182   return ExecutionFailed ? 1 : Res;
183 }
184 
185 void Compilation::ExecuteJobs(
186     const JobList &Jobs,
187     SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) const {
188   for (const auto &Job : Jobs) {
189     const Command *FailingCommand = nullptr;
190     if (int Res = ExecuteCommand(Job, FailingCommand)) {
191       FailingCommands.push_back(std::make_pair(Res, FailingCommand));
192       // Bail as soon as one command fails, so we don't output duplicate error
193       // messages if we die on e.g. the same file.
194       return;
195     }
196   }
197 }
198 
199 void Compilation::initCompilationForDiagnostics() {
200   ForDiagnostics = true;
201 
202   // Free actions and jobs.
203   Actions.clear();
204   AllActions.clear();
205   Jobs.clear();
206 
207   // Clear temporary/results file lists.
208   TempFiles.clear();
209   ResultFiles.clear();
210   FailureResultFiles.clear();
211 
212   // Remove any user specified output.  Claim any unclaimed arguments, so as
213   // to avoid emitting warnings about unused args.
214   OptSpecifier OutputOpts[] = { options::OPT_o, options::OPT_MD,
215                                 options::OPT_MMD };
216   for (unsigned i = 0, e = llvm::array_lengthof(OutputOpts); i != e; ++i) {
217     if (TranslatedArgs->hasArg(OutputOpts[i]))
218       TranslatedArgs->eraseArg(OutputOpts[i]);
219   }
220   TranslatedArgs->ClaimAllArgs();
221 
222   // Redirect stdout/stderr to /dev/null.
223   Redirects = {None, {""}, {""}};
224 }
225 
226 StringRef Compilation::getSysRoot() const {
227   return getDriver().SysRoot;
228 }
229 
230 void Compilation::Redirect(ArrayRef<Optional<StringRef>> Redirects) {
231   this->Redirects = Redirects;
232 }
233