Coverage Report

Created: 2023-05-31 04:38

/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
Line
Count
Source (jump to first uncovered line)
1
//===--- CreateInvocationFromCommandLine.cpp - CompilerInvocation from Args ==//
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
// Construct a compiler invocation object for command line driver arguments
10
//
11
//===----------------------------------------------------------------------===//
12
13
#include "clang/Basic/DiagnosticOptions.h"
14
#include "clang/Driver/Action.h"
15
#include "clang/Driver/Compilation.h"
16
#include "clang/Driver/Driver.h"
17
#include "clang/Driver/Options.h"
18
#include "clang/Driver/Tool.h"
19
#include "clang/Frontend/CompilerInstance.h"
20
#include "clang/Frontend/FrontendDiagnostic.h"
21
#include "clang/Frontend/Utils.h"
22
#include "llvm/ADT/STLExtras.h"
23
#include "llvm/ADT/StringRef.h"
24
#include "llvm/Option/ArgList.h"
25
#include "llvm/TargetParser/Host.h"
26
using namespace clang;
27
using namespace llvm::opt;
28
29
std::unique_ptr<CompilerInvocation>
30
clang::createInvocation(ArrayRef<const char *> ArgList,
31
4.57k
                        CreateInvocationOptions Opts) {
32
4.57k
  assert(!ArgList.empty());
33
4.57k
  auto Diags = Opts.Diags
34
4.57k
                   ? 
std::move(Opts.Diags)4.57k
35
4.57k
                   : 
CompilerInstance::createDiagnostics(new DiagnosticOptions)2
;
36
37
4.57k
  SmallVector<const char *, 16> Args(ArgList.begin(), ArgList.end());
38
39
  // FIXME: Find a cleaner way to force the driver into restricted modes.
40
4.57k
  Args.insert(
41
4.57k
      llvm::find_if(
42
55.3k
          Args, [](const char *Elem) { return llvm::StringRef(Elem) == "--"; }),
43
4.57k
      "-fsyntax-only");
44
45
  // FIXME: We shouldn't have to pass in the path info.
46
4.57k
  driver::Driver TheDriver(Args[0], llvm::sys::getDefaultTargetTriple(), *Diags,
47
4.57k
                           "clang LLVM compiler", Opts.VFS);
48
49
  // Don't check that inputs exist, they may have been remapped.
50
4.57k
  TheDriver.setCheckInputsExist(false);
51
4.57k
  TheDriver.setProbePrecompiled(Opts.ProbePrecompiled);
52
53
4.57k
  std::unique_ptr<driver::Compilation> C(TheDriver.BuildCompilation(Args));
54
4.57k
  if (!C)
55
0
    return nullptr;
56
57
4.57k
  if (C->getArgs().hasArg(driver::options::OPT_fdriver_only))
58
0
    return nullptr;
59
60
  // Just print the cc1 options if -### was present.
61
4.57k
  if (C->getArgs().hasArg(driver::options::OPT__HASH_HASH_HASH)) {
62
0
    C->getJobs().Print(llvm::errs(), "\n", true);
63
0
    return nullptr;
64
0
  }
65
66
  // We expect to get back exactly one command job, if we didn't something
67
  // failed. Offload compilation is an exception as it creates multiple jobs. If
68
  // that's the case, we proceed with the first job. If caller needs a
69
  // particular job, it should be controlled via options (e.g.
70
  // --cuda-{host|device}-only for CUDA) passed to the driver.
71
4.57k
  const driver::JobList &Jobs = C->getJobs();
72
4.57k
  bool OffloadCompilation = false;
73
4.57k
  if (Jobs.size() > 1) {
74
6
    for (auto &A : C->getActions()){
75
      // On MacOSX real actions may end up being wrapped in BindArchAction
76
6
      if (isa<driver::BindArchAction>(A))
77
6
        A = *A->input_begin();
78
6
      if (isa<driver::OffloadAction>(A)) {
79
2
        OffloadCompilation = true;
80
2
        break;
81
2
      }
82
6
    }
83
3
  }
84
85
4.57k
  bool PickFirstOfMany = OffloadCompilation || 
Opts.RecoverOnError4.57k
;
86
4.57k
  if (Jobs.size() == 0 || (Jobs.size() > 1 && 
!PickFirstOfMany3
)) {
87
0
    SmallString<256> Msg;
88
0
    llvm::raw_svector_ostream OS(Msg);
89
0
    Jobs.Print(OS, "; ", true);
90
0
    Diags->Report(diag::err_fe_expected_compiler_job) << OS.str();
91
0
    return nullptr;
92
0
  }
93
4.57k
  auto Cmd = llvm::find_if(Jobs, [](const driver::Command &Cmd) {
94
4.57k
    return StringRef(Cmd.getCreator().getName()) == "clang";
95
4.57k
  });
96
4.57k
  if (Cmd == Jobs.end()) {
97
0
    Diags->Report(diag::err_fe_expected_clang_command);
98
0
    return nullptr;
99
0
  }
100
101
4.57k
  const ArgStringList &CCArgs = Cmd->getArguments();
102
4.57k
  if (Opts.CC1Args)
103
0
    *Opts.CC1Args = {CCArgs.begin(), CCArgs.end()};
104
4.57k
  auto CI = std::make_unique<CompilerInvocation>();
105
4.57k
  if (!CompilerInvocation::CreateFromArgs(*CI, CCArgs, *Diags, Args[0]) &&
106
4.57k
      
!Opts.RecoverOnError102
)
107
102
    return nullptr;
108
4.47k
  return CI;
109
4.57k
}