Coverage Report

Created: 2024-01-17 10:31

/src/llvm-project/clang/lib/Driver/Compilation.cpp
Line
Count
Source (jump to first uncovered line)
1
//===- Compilation.cpp - Compilation Task Implementation ------------------===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#include "clang/Driver/Compilation.h"
10
#include "clang/Basic/LLVM.h"
11
#include "clang/Driver/Action.h"
12
#include "clang/Driver/Driver.h"
13
#include "clang/Driver/DriverDiagnostic.h"
14
#include "clang/Driver/Job.h"
15
#include "clang/Driver/Options.h"
16
#include "clang/Driver/ToolChain.h"
17
#include "clang/Driver/Util.h"
18
#include "llvm/ADT/STLExtras.h"
19
#include "llvm/ADT/SmallVector.h"
20
#include "llvm/Option/ArgList.h"
21
#include "llvm/Option/OptSpecifier.h"
22
#include "llvm/Option/Option.h"
23
#include "llvm/Support/FileSystem.h"
24
#include "llvm/Support/raw_ostream.h"
25
#include "llvm/TargetParser/Triple.h"
26
#include <cassert>
27
#include <string>
28
#include <system_error>
29
#include <utility>
30
31
using namespace clang;
32
using namespace driver;
33
using namespace llvm::opt;
34
35
Compilation::Compilation(const Driver &D, const ToolChain &_DefaultToolChain,
36
                         InputArgList *_Args, DerivedArgList *_TranslatedArgs,
37
                         bool ContainsError)
38
    : TheDriver(D), DefaultToolChain(_DefaultToolChain), Args(_Args),
39
0
      TranslatedArgs(_TranslatedArgs), ContainsError(ContainsError) {
40
  // The offloading host toolchain is the default toolchain.
41
0
  OrderedOffloadingToolchains.insert(
42
0
      std::make_pair(Action::OFK_Host, &DefaultToolChain));
43
0
}
44
45
0
Compilation::~Compilation() {
46
  // Remove temporary files. This must be done before arguments are freed, as
47
  // the file names might be derived from the input arguments.
48
0
  if (!TheDriver.isSaveTempsEnabled() && !ForceKeepTempFiles)
49
0
    CleanupFileList(TempFiles);
50
51
0
  delete TranslatedArgs;
52
0
  delete Args;
53
54
  // Free any derived arg lists.
55
0
  for (auto Arg : TCArgs)
56
0
    if (Arg.second != TranslatedArgs)
57
0
      delete Arg.second;
58
0
}
59
60
const DerivedArgList &
61
Compilation::getArgsForToolChain(const ToolChain *TC, StringRef BoundArch,
62
0
                                 Action::OffloadKind DeviceOffloadKind) {
63
0
  if (!TC)
64
0
    TC = &DefaultToolChain;
65
66
0
  DerivedArgList *&Entry = TCArgs[{TC, BoundArch, DeviceOffloadKind}];
67
0
  if (!Entry) {
68
0
    SmallVector<Arg *, 4> AllocatedArgs;
69
0
    DerivedArgList *OpenMPArgs = nullptr;
70
    // Translate OpenMP toolchain arguments provided via the -Xopenmp-target flags.
71
0
    if (DeviceOffloadKind == Action::OFK_OpenMP) {
72
0
      const ToolChain *HostTC = getSingleOffloadToolChain<Action::OFK_Host>();
73
0
      bool SameTripleAsHost = (TC->getTriple() == HostTC->getTriple());
74
0
      OpenMPArgs = TC->TranslateOpenMPTargetArgs(
75
0
          *TranslatedArgs, SameTripleAsHost, AllocatedArgs);
76
0
    }
77
78
0
    DerivedArgList *NewDAL = nullptr;
79
0
    if (!OpenMPArgs) {
80
0
      NewDAL = TC->TranslateXarchArgs(*TranslatedArgs, BoundArch,
81
0
                                      DeviceOffloadKind, &AllocatedArgs);
82
0
    } else {
83
0
      NewDAL = TC->TranslateXarchArgs(*OpenMPArgs, BoundArch, DeviceOffloadKind,
84
0
                                      &AllocatedArgs);
85
0
      if (!NewDAL)
86
0
        NewDAL = OpenMPArgs;
87
0
      else
88
0
        delete OpenMPArgs;
89
0
    }
90
91
0
    if (!NewDAL) {
92
0
      Entry = TC->TranslateArgs(*TranslatedArgs, BoundArch, DeviceOffloadKind);
93
0
      if (!Entry)
94
0
        Entry = TranslatedArgs;
95
0
    } else {
96
0
      Entry = TC->TranslateArgs(*NewDAL, BoundArch, DeviceOffloadKind);
97
0
      if (!Entry)
98
0
        Entry = NewDAL;
99
0
      else
100
0
        delete NewDAL;
101
0
    }
102
103
    // Add allocated arguments to the final DAL.
104
0
    for (auto *ArgPtr : AllocatedArgs)
105
0
      Entry->AddSynthesizedArg(ArgPtr);
106
0
  }
107
108
0
  return *Entry;
109
0
}
110
111
0
bool Compilation::CleanupFile(const char *File, bool IssueErrors) const {
112
  // FIXME: Why are we trying to remove files that we have not created? For
113
  // example we should only try to remove a temporary assembly file if
114
  // "clang -cc1" succeed in writing it. Was this a workaround for when
115
  // clang was writing directly to a .s file and sometimes leaving it behind
116
  // during a failure?
117
118
  // FIXME: If this is necessary, we can still try to split
119
  // llvm::sys::fs::remove into a removeFile and a removeDir and avoid the
120
  // duplicated stat from is_regular_file.
121
122
  // Don't try to remove files which we don't have write access to (but may be
123
  // able to remove), or non-regular files. Underlying tools may have
124
  // intentionally not overwritten them.
125
0
  if (!llvm::sys::fs::can_write(File) || !llvm::sys::fs::is_regular_file(File))
126
0
    return true;
127
128
0
  if (std::error_code EC = llvm::sys::fs::remove(File)) {
129
    // Failure is only failure if the file exists and is "regular". We checked
130
    // for it being regular before, and llvm::sys::fs::remove ignores ENOENT,
131
    // so we don't need to check again.
132
133
0
    if (IssueErrors)
134
0
      getDriver().Diag(diag::err_drv_unable_to_remove_file)
135
0
        << EC.message();
136
0
    return false;
137
0
  }
138
0
  return true;
139
0
}
140
141
bool Compilation::CleanupFileList(const llvm::opt::ArgStringList &Files,
142
0
                                  bool IssueErrors) const {
143
0
  bool Success = true;
144
0
  for (const auto &File: Files)
145
0
    Success &= CleanupFile(File, IssueErrors);
146
0
  return Success;
147
0
}
148
149
bool Compilation::CleanupFileMap(const ArgStringMap &Files,
150
                                 const JobAction *JA,
151
0
                                 bool IssueErrors) const {
152
0
  bool Success = true;
153
0
  for (const auto &File : Files) {
154
    // If specified, only delete the files associated with the JobAction.
155
    // Otherwise, delete all files in the map.
156
0
    if (JA && File.first != JA)
157
0
      continue;
158
0
    Success &= CleanupFile(File.second, IssueErrors);
159
0
  }
160
0
  return Success;
161
0
}
162
163
int Compilation::ExecuteCommand(const Command &C,
164
                                const Command *&FailingCommand,
165
0
                                bool LogOnly) const {
166
0
  if ((getDriver().CCPrintOptions ||
167
0
       getArgs().hasArg(options::OPT_v)) && !getDriver().CCGenDiagnostics) {
168
0
    raw_ostream *OS = &llvm::errs();
169
0
    std::unique_ptr<llvm::raw_fd_ostream> OwnedStream;
170
171
    // Follow gcc implementation of CC_PRINT_OPTIONS; we could also cache the
172
    // output stream.
173
0
    if (getDriver().CCPrintOptions &&
174
0
        !getDriver().CCPrintOptionsFilename.empty()) {
175
0
      std::error_code EC;
176
0
      OwnedStream.reset(new llvm::raw_fd_ostream(
177
0
          getDriver().CCPrintOptionsFilename, EC,
178
0
          llvm::sys::fs::OF_Append | llvm::sys::fs::OF_TextWithCRLF));
179
0
      if (EC) {
180
0
        getDriver().Diag(diag::err_drv_cc_print_options_failure)
181
0
            << EC.message();
182
0
        FailingCommand = &C;
183
0
        return 1;
184
0
      }
185
0
      OS = OwnedStream.get();
186
0
    }
187
188
0
    if (getDriver().CCPrintOptions)
189
0
      *OS << "[Logging clang options]\n";
190
191
0
    C.Print(*OS, "\n", /*Quote=*/getDriver().CCPrintOptions);
192
0
  }
193
194
0
  if (LogOnly)
195
0
    return 0;
196
197
0
  std::string Error;
198
0
  bool ExecutionFailed;
199
0
  int Res = C.Execute(Redirects, &Error, &ExecutionFailed);
200
0
  if (PostCallback)
201
0
    PostCallback(C, Res);
202
0
  if (!Error.empty()) {
203
0
    assert(Res && "Error string set with 0 result code!");
204
0
    getDriver().Diag(diag::err_drv_command_failure) << Error;
205
0
  }
206
207
0
  if (Res)
208
0
    FailingCommand = &C;
209
210
0
  return ExecutionFailed ? 1 : Res;
211
0
}
212
213
using FailingCommandList = SmallVectorImpl<std::pair<int, const Command *>>;
214
215
static bool ActionFailed(const Action *A,
216
0
                         const FailingCommandList &FailingCommands) {
217
0
  if (FailingCommands.empty())
218
0
    return false;
219
220
  // CUDA/HIP can have the same input source code compiled multiple times so do
221
  // not compiled again if there are already failures. It is OK to abort the
222
  // CUDA pipeline on errors.
223
0
  if (A->isOffloading(Action::OFK_Cuda) || A->isOffloading(Action::OFK_HIP))
224
0
    return true;
225
226
0
  for (const auto &CI : FailingCommands)
227
0
    if (A == &(CI.second->getSource()))
228
0
      return true;
229
230
0
  for (const auto *AI : A->inputs())
231
0
    if (ActionFailed(AI, FailingCommands))
232
0
      return true;
233
234
0
  return false;
235
0
}
236
237
static bool InputsOk(const Command &C,
238
0
                     const FailingCommandList &FailingCommands) {
239
0
  return !ActionFailed(&C.getSource(), FailingCommands);
240
0
}
241
242
void Compilation::ExecuteJobs(const JobList &Jobs,
243
                              FailingCommandList &FailingCommands,
244
0
                              bool LogOnly) const {
245
  // According to UNIX standard, driver need to continue compiling all the
246
  // inputs on the command line even one of them failed.
247
  // In all but CLMode, execute all the jobs unless the necessary inputs for the
248
  // job is missing due to previous failures.
249
0
  for (const auto &Job : Jobs) {
250
0
    if (!InputsOk(Job, FailingCommands))
251
0
      continue;
252
0
    const Command *FailingCommand = nullptr;
253
0
    if (int Res = ExecuteCommand(Job, FailingCommand, LogOnly)) {
254
0
      FailingCommands.push_back(std::make_pair(Res, FailingCommand));
255
      // Bail as soon as one command fails in cl driver mode.
256
0
      if (TheDriver.IsCLMode())
257
0
        return;
258
0
    }
259
0
  }
260
0
}
261
262
0
void Compilation::initCompilationForDiagnostics() {
263
0
  ForDiagnostics = true;
264
265
  // Free actions and jobs.
266
0
  Actions.clear();
267
0
  AllActions.clear();
268
0
  Jobs.clear();
269
270
  // Remove temporary files.
271
0
  if (!TheDriver.isSaveTempsEnabled() && !ForceKeepTempFiles)
272
0
    CleanupFileList(TempFiles);
273
274
  // Clear temporary/results file lists.
275
0
  TempFiles.clear();
276
0
  ResultFiles.clear();
277
0
  FailureResultFiles.clear();
278
279
  // Remove any user specified output.  Claim any unclaimed arguments, so as
280
  // to avoid emitting warnings about unused args.
281
0
  OptSpecifier OutputOpts[] = {
282
0
      options::OPT_o,  options::OPT_MD, options::OPT_MMD, options::OPT_M,
283
0
      options::OPT_MM, options::OPT_MF, options::OPT_MG,  options::OPT_MJ,
284
0
      options::OPT_MQ, options::OPT_MT, options::OPT_MV};
285
0
  for (const auto &Opt : OutputOpts) {
286
0
    if (TranslatedArgs->hasArg(Opt))
287
0
      TranslatedArgs->eraseArg(Opt);
288
0
  }
289
0
  TranslatedArgs->ClaimAllArgs();
290
291
  // Force re-creation of the toolchain Args, otherwise our modifications just
292
  // above will have no effect.
293
0
  for (auto Arg : TCArgs)
294
0
    if (Arg.second != TranslatedArgs)
295
0
      delete Arg.second;
296
0
  TCArgs.clear();
297
298
  // Redirect stdout/stderr to /dev/null.
299
0
  Redirects = {std::nullopt, {""}, {""}};
300
301
  // Temporary files added by diagnostics should be kept.
302
0
  ForceKeepTempFiles = true;
303
0
}
304
305
0
StringRef Compilation::getSysRoot() const {
306
0
  return getDriver().SysRoot;
307
0
}
308
309
0
void Compilation::Redirect(ArrayRef<std::optional<StringRef>> Redirects) {
310
0
  this->Redirects = Redirects;
311
0
}