clang 24.0.0git
Cuda.cpp
Go to the documentation of this file.
1//===--- Cuda.cpp - Cuda Tool and ToolChain Implementations -----*- C++ -*-===//
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 "Cuda.h"
10#include "clang/Basic/Cuda.h"
11#include "clang/Config/config.h"
14#include "clang/Driver/Distro.h"
15#include "clang/Driver/Driver.h"
18#include "llvm/ADT/SmallSet.h"
19#include "llvm/ADT/StringExtras.h"
20#include "llvm/Config/llvm-config.h" // for LLVM_HOST_TRIPLE
21#include "llvm/Option/ArgList.h"
22#include "llvm/Support/FileSystem.h"
23#include "llvm/Support/Path.h"
24#include "llvm/Support/Process.h"
25#include "llvm/Support/Program.h"
26#include "llvm/Support/VirtualFileSystem.h"
27#include "llvm/TargetParser/Host.h"
28#include "llvm/TargetParser/TargetParser.h"
29#include <system_error>
30
31using namespace clang::driver;
32using namespace clang::driver::toolchains;
33using namespace clang::driver::tools;
34using namespace clang;
35using namespace llvm::opt;
36
37namespace {
38
39CudaVersion getCudaVersion(uint32_t raw_version) {
40 if (raw_version < 7050)
42 if (raw_version < 8000)
44 if (raw_version < 9000)
46 if (raw_version < 9010)
48 if (raw_version < 9020)
50 if (raw_version < 10000)
52 if (raw_version < 10010)
54 if (raw_version < 10020)
56 if (raw_version < 11000)
58 if (raw_version < 11010)
60 if (raw_version < 11020)
62 if (raw_version < 11030)
64 if (raw_version < 11040)
66 if (raw_version < 11050)
68 if (raw_version < 11060)
70 if (raw_version < 11070)
72 if (raw_version < 11080)
74 if (raw_version < 11090)
76 if (raw_version < 12010)
78 if (raw_version < 12020)
80 if (raw_version < 12030)
82 if (raw_version < 12040)
84 if (raw_version < 12050)
86 if (raw_version < 12060)
88 if (raw_version < 12070)
90 if (raw_version < 12090)
92 if (raw_version < 13000)
94 if (raw_version < 13010)
96 if (raw_version < 13020)
98 if (raw_version < 13030)
100 if (raw_version < 13040)
102 if (raw_version < 13050)
104 return CudaVersion::NEW;
105}
106
107CudaVersion parseCudaHFile(llvm::StringRef Input) {
108 // Helper lambda which skips the words if the line starts with them or returns
109 // std::nullopt otherwise.
110 auto StartsWithWords =
111 [](llvm::StringRef Line,
112 const SmallVector<StringRef, 3> words) -> std::optional<StringRef> {
113 for (StringRef word : words) {
114 if (!Line.consume_front(word))
115 return {};
116 Line = Line.ltrim();
117 }
118 return Line;
119 };
120
121 Input = Input.ltrim();
122 while (!Input.empty()) {
123 if (auto Line =
124 StartsWithWords(Input.ltrim(), {"#", "define", "CUDA_VERSION"})) {
125 uint32_t RawVersion;
126 Line->consumeInteger(10, RawVersion);
127 return getCudaVersion(RawVersion);
128 }
129 // Find next non-empty line.
130 Input = Input.drop_front(Input.find_first_of("\n\r")).ltrim();
131 }
133}
134} // namespace
135
137 if (Version > CudaVersion::PARTIALLY_SUPPORTED) {
138 std::string VersionString = CudaVersionToString(Version);
139 if (!VersionString.empty())
140 VersionString.insert(0, " ");
141 D.Diag(diag::warn_drv_new_cuda_version)
142 << VersionString
145 } else if (Version > CudaVersion::FULLY_SUPPORTED)
146 D.Diag(diag::warn_drv_partially_supported_cuda_version)
147 << CudaVersionToString(Version);
148}
149
151 const Driver &D, const llvm::Triple &HostTriple,
152 const llvm::opt::ArgList &Args)
153 : D(D) {
154 struct Candidate {
155 std::string Path;
156 bool StrictChecking;
157
158 Candidate(std::string Path, bool StrictChecking = false)
159 : Path(Path), StrictChecking(StrictChecking) {}
160 };
161 SmallVector<Candidate, 4> Candidates;
162
163 // In decreasing order so we prefer newer versions to older versions.
164 std::initializer_list<const char *> Versions = {"8.0", "7.5", "7.0"};
165 auto &FS = D.getVFS();
166
167 if (Args.hasArg(options::OPT_cuda_path_EQ)) {
168 Candidates.emplace_back(
169 Args.getLastArgValue(options::OPT_cuda_path_EQ).str());
170 } else if (HostTriple.isOSWindows()) {
171 for (const char *Ver : Versions)
172 Candidates.emplace_back(
173 D.SysRoot + "/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v" +
174 Ver);
175 } else {
176 if (!Args.hasArg(options::OPT_cuda_path_ignore_env)) {
177 // Try to find ptxas binary. If the executable is located in a directory
178 // called 'bin/', its parent directory might be a good guess for a valid
179 // CUDA installation.
180 // However, some distributions might installs 'ptxas' to /usr/bin. In that
181 // case the candidate would be '/usr' which passes the following checks
182 // because '/usr/include' exists as well. To avoid this case, we always
183 // check for the directory potentially containing files for libdevice,
184 // even if the user passes -nocudalib.
185 if (llvm::ErrorOr<std::string> ptxas =
186 llvm::sys::findProgramByName("ptxas")) {
187 SmallString<256> ptxasAbsolutePath;
188 llvm::sys::fs::real_path(*ptxas, ptxasAbsolutePath);
189
190 StringRef ptxasDir = llvm::sys::path::parent_path(ptxasAbsolutePath);
191 if (llvm::sys::path::filename(ptxasDir) == "bin")
192 Candidates.emplace_back(
193 std::string(llvm::sys::path::parent_path(ptxasDir)),
194 /*StrictChecking=*/true);
195 }
196 }
197
198 Candidates.emplace_back(D.SysRoot + "/usr/local/cuda");
199 for (const char *Ver : Versions)
200 Candidates.emplace_back(D.SysRoot + "/usr/local/cuda-" + Ver);
201
202 Distro Dist(FS, llvm::Triple(llvm::sys::getProcessTriple()));
203 if (Dist.IsDebian() || Dist.IsUbuntu())
204 // Special case for Debian to have nvidia-cuda-toolkit work
205 // out of the box. More info on http://bugs.debian.org/882505
206 Candidates.emplace_back(D.SysRoot + "/usr/lib/cuda");
207 }
208
209 bool NoCudaLib =
210 !Args.hasFlag(options::OPT_offloadlib, options::OPT_no_offloadlib, true);
211
212 for (const auto &Candidate : Candidates) {
213 InstallPath = Candidate.Path;
214 if (InstallPath.empty() || !FS.exists(InstallPath))
215 continue;
216
217 BinPath = InstallPath + "/bin";
218 IncludePath = InstallPath + "/include";
219 LibDevicePath = InstallPath + "/nvvm/libdevice";
220
221 if (!(FS.exists(IncludePath) && FS.exists(BinPath)))
222 continue;
223 bool CheckLibDevice = (!NoCudaLib || Candidate.StrictChecking);
224 if (CheckLibDevice && !FS.exists(LibDevicePath))
225 continue;
226
227 Version = CudaVersion::UNKNOWN;
228 if (auto CudaHFile = FS.getBufferForFile(InstallPath + "/include/cuda.h"))
229 Version = parseCudaHFile((*CudaHFile)->getBuffer());
230 // As the last resort, make an educated guess between CUDA-7.0, which had
231 // old-style libdevice bitcode, and an unknown recent CUDA version.
232 if (Version == CudaVersion::UNKNOWN) {
233 Version = FS.exists(LibDevicePath + "/libdevice.10.bc")
236 }
237
238 if (Version >= CudaVersion::CUDA_90) {
239 // CUDA-9+ uses single libdevice file for all GPU variants.
240 std::string FilePath = LibDevicePath + "/libdevice.10.bc";
241 if (FS.exists(FilePath)) {
242 // CUDA-9+ uses a single libdevice file for every NVIDIA GPU variant
243 // (sm_30 and newer).
244#define NVPTX_GPU(NAME, KIND, VIRTUAL, SM_ID, MIN_VER, MAX_VER, SUFFIX) \
245 if ((SM_ID) >= 300) \
246 LibDeviceMap[NAME] = FilePath;
247#include "llvm/TargetParser/NVPTXTargetParser.def"
248 }
249 } else {
250 std::error_code EC;
251 for (llvm::vfs::directory_iterator LI = FS.dir_begin(LibDevicePath, EC),
252 LE;
253 !EC && LI != LE; LI = LI.increment(EC)) {
254 StringRef FilePath = LI->path();
255 StringRef FileName = llvm::sys::path::filename(FilePath);
256 // Process all bitcode filenames that look like
257 // libdevice.compute_XX.YY.bc
258 const StringRef LibDeviceName = "libdevice.";
259 if (!(FileName.starts_with(LibDeviceName) && FileName.ends_with(".bc")))
260 continue;
261 StringRef GpuArch = FileName.slice(
262 LibDeviceName.size(), FileName.find('.', LibDeviceName.size()));
263 LibDeviceMap[GpuArch] = FilePath.str();
264 // Insert map entries for specific devices with this compute
265 // capability. NVCC's choice of the libdevice library version is
266 // rather peculiar and depends on the CUDA version.
267 if (GpuArch == "compute_20") {
268 LibDeviceMap["sm_20"] = std::string(FilePath);
269 LibDeviceMap["sm_21"] = std::string(FilePath);
270 LibDeviceMap["sm_32"] = std::string(FilePath);
271 } else if (GpuArch == "compute_30") {
272 LibDeviceMap["sm_30"] = std::string(FilePath);
273 if (Version < CudaVersion::CUDA_80) {
274 LibDeviceMap["sm_50"] = std::string(FilePath);
275 LibDeviceMap["sm_52"] = std::string(FilePath);
276 LibDeviceMap["sm_53"] = std::string(FilePath);
277 }
278 LibDeviceMap["sm_60"] = std::string(FilePath);
279 LibDeviceMap["sm_61"] = std::string(FilePath);
280 LibDeviceMap["sm_62"] = std::string(FilePath);
281 } else if (GpuArch == "compute_35") {
282 LibDeviceMap["sm_35"] = std::string(FilePath);
283 LibDeviceMap["sm_37"] = std::string(FilePath);
284 } else if (GpuArch == "compute_50") {
285 if (Version >= CudaVersion::CUDA_80) {
286 LibDeviceMap["sm_50"] = std::string(FilePath);
287 LibDeviceMap["sm_52"] = std::string(FilePath);
288 LibDeviceMap["sm_53"] = std::string(FilePath);
289 }
290 }
291 }
292 }
293
294 // Check that we have found at least one libdevice that we can link in if
295 // -nocudalib hasn't been specified.
296 if (LibDeviceMap.empty() && !NoCudaLib)
297 continue;
298
299 IsValid = true;
300 break;
301 }
302}
303
305 const ArgList &DriverArgs, ArgStringList &CC1Args) const {
306 if (DriverArgs.hasFlag(options::OPT_foffload_via_llvm,
307 options::OPT_fno_offload_via_llvm, false))
308 return;
309
310 if (!DriverArgs.hasArg(options::OPT_nobuiltininc)) {
311 // Add cuda_wrappers/* to our system include path. This lets us wrap
312 // standard library headers.
313 SmallString<128> P(D.ResourceDir);
314 llvm::sys::path::append(P, "include");
315 llvm::sys::path::append(P, "cuda_wrappers");
316 CC1Args.push_back("-internal-isystem");
317 CC1Args.push_back(DriverArgs.MakeArgString(P));
318 }
319
320 if (!DriverArgs.hasFlag(options::OPT_offload_inc, options::OPT_no_offload_inc,
321 true))
322 return;
323
324 if (!isValid()) {
325 D.Diag(diag::err_drv_no_cuda_installation);
326 return;
327 }
328
329 CC1Args.push_back("-include");
330 CC1Args.push_back("__clang_cuda_runtime_wrapper.h");
331}
332
334 OffloadArch Arch) const {
335 // Only NVIDIA architectures depend on the CUDA toolkit version.
336 if (!Arch.isNVPTX() || Version == CudaVersion::UNKNOWN ||
337 ArchsWithBadVersion[Arch.nvptxKind()])
338 return;
339
340 auto MinVersion = MinVersionForOffloadArch(Arch);
341 auto MaxVersion = MaxVersionForOffloadArch(Arch);
342 if (Version < MinVersion || Version > MaxVersion) {
343 ArchsWithBadVersion[Arch.nvptxKind()] = true;
344 D.Diag(diag::err_drv_cuda_version_unsupported)
346 << CudaVersionToString(MaxVersion) << InstallPath
347 << CudaVersionToString(Version);
348 }
349}
350
351void CudaInstallationDetector::print(raw_ostream &OS) const {
352 if (isValid())
353 OS << "Found CUDA installation: " << InstallPath << ", version "
354 << CudaVersionToString(Version) << "\n";
355}
356
357namespace {
358/// Debug info level for the NVPTX devices. We may need to emit different debug
359/// info level for the host and for the device itselfi. This type controls
360/// emission of the debug info for the devices. It either prohibits disable info
361/// emission completely, or emits debug directives only, or emits same debug
362/// info as for the host.
363enum DeviceDebugInfoLevel {
364 DisableDebugInfo, /// Do not emit debug info for the devices.
365 DebugDirectivesOnly, /// Emit only debug directives.
366 EmitSameDebugInfoAsHost, /// Use the same debug info level just like for the
367 /// host.
368};
369} // anonymous namespace
370
371/// Define debug info level for the NVPTX devices. If the debug info for both
372/// the host and device are disabled (-g0/-ggdb0 or no debug options at all). If
373/// only debug directives are requested for the both host and device
374/// (-gline-directvies-only), or the debug info only for the device is disabled
375/// (optimization is on and --cuda-noopt-device-debug was not specified), the
376/// debug directves only must be emitted for the device. Otherwise, use the same
377/// debug info level just like for the host (with the limitations of only
378/// supported DWARF2 standard).
379static DeviceDebugInfoLevel mustEmitDebugInfo(const ArgList &Args) {
380 const Arg *A = Args.getLastArg(options::OPT_O_Group);
381 bool IsDebugEnabled = !A || A->getOption().matches(options::OPT_O0) ||
382 Args.hasFlag(options::OPT_cuda_noopt_device_debug,
383 options::OPT_no_cuda_noopt_device_debug,
384 /*Default=*/false);
385 if (const Arg *A = Args.getLastArg(options::OPT_g_Group)) {
386 const Option &Opt = A->getOption();
387 if (Opt.matches(options::OPT_gN_Group)) {
388 if (Opt.matches(options::OPT_g0) || Opt.matches(options::OPT_ggdb0))
389 return DisableDebugInfo;
390 if (Opt.matches(options::OPT_gline_directives_only))
391 return DebugDirectivesOnly;
392 }
393 return IsDebugEnabled ? EmitSameDebugInfoAsHost : DebugDirectivesOnly;
394 }
395 return willEmitRemarks(Args) ? DebugDirectivesOnly : DisableDebugInfo;
396}
397
399 const InputInfo &Output,
400 const InputInfoList &Inputs,
401 const ArgList &Args,
402 const char *LinkingOutput) const {
403 const auto &TC =
404 static_cast<const toolchains::NVPTXToolChain &>(getToolChain());
405
406 bool UsesLLVMOffloading = Args.hasFlag(
407 options::OPT_foffload_via_llvm, options::OPT_fno_offload_via_llvm, false);
408 assert((TC.getTriple().isNVPTX() || UsesLLVMOffloading) && "Wrong platform");
409
410 BoundArch GPUArch;
411 // If this is a CUDA action we need to extract the device architecture
412 // from the Job's associated architecture, otherwise use the -march=arch
413 // option. This option may come from -Xopenmp-target flag or the default
414 // value.
416 GPUArch = JA.getOffloadingArch();
417 } else {
418 GPUArch = BoundArch(Args.getLastArgValue(options::OPT_march_EQ));
419 if (GPUArch.empty()) {
420 C.getDriver().Diag(diag::err_drv_offload_missing_gpu_arch)
421 << getToolChain().getArchName() << getShortName();
422 return;
423 }
424 }
425
426 // Obtain architecture from the action.
427 assert(!GPUArch.Arch.isUnknown() &&
428 "Device action expected to have an architecture.");
429
430 // Check that our installation's ptxas supports gpu_arch.
431 if (!UsesLLVMOffloading && !Args.hasArg(options::OPT_no_cuda_version_check)) {
432 TC.CudaInstallation.CheckCudaVersionSupportsArch(GPUArch.Arch);
433 }
434
435 ArgStringList CmdArgs;
436 CmdArgs.push_back(TC.getTriple().isArch64Bit() ? "-m64" : "-m32");
437 DeviceDebugInfoLevel DIKind = mustEmitDebugInfo(Args);
438 if (DIKind == EmitSameDebugInfoAsHost) {
439 // ptxas does not accept -g option if optimization is enabled, so
440 // we ignore the compiler's -O* options if we want debug info.
441 CmdArgs.push_back("-g");
442 CmdArgs.push_back("--dont-merge-basicblocks");
443 CmdArgs.push_back("--return-at-end");
444 } else if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
445 // Map the -O we received to -O{0,1,2,3}.
446 //
447 // TODO: Perhaps we should map host -O2 to ptxas -O3. -O3 is ptxas's
448 // default, so it may correspond more closely to the spirit of clang -O2.
449
450 // -O3 seems like the least-bad option when -Osomething is specified to
451 // clang but it isn't handled below.
452 StringRef OOpt = "3";
453 if (A->getOption().matches(options::OPT_O4) ||
454 A->getOption().matches(options::OPT_Ofast))
455 OOpt = "3";
456 else if (A->getOption().matches(options::OPT_O0))
457 OOpt = "0";
458 else if (A->getOption().matches(options::OPT_O)) {
459 // -Os, -Oz, and -O(anything else) map to -O2, for lack of better options.
460 OOpt = llvm::StringSwitch<const char *>(A->getValue())
461 .Case("1", "1")
462 .Case("2", "2")
463 .Case("3", "3")
464 .Case("s", "2")
465 .Case("z", "2")
466 .Default("2");
467 }
468 CmdArgs.push_back(Args.MakeArgString(llvm::Twine("-O") + OOpt));
469 } else {
470 // If no -O was passed, pass -O0 to ptxas -- no opt flag should correspond
471 // to no optimizations, but ptxas's default is -O3.
472 CmdArgs.push_back("-O0");
473 }
474 if (DIKind == DebugDirectivesOnly)
475 CmdArgs.push_back("-lineinfo");
476
477 // Pass -v to ptxas if it was passed to the driver.
478 if (Args.hasArg(options::OPT_v))
479 CmdArgs.push_back("-v");
480
481 CmdArgs.push_back("--gpu-name");
482 CmdArgs.push_back(Args.MakeArgString(GPUArch.ArchName));
483 CmdArgs.push_back("--output-file");
484 std::string OutputFileName = TC.getInputFilename(Output);
485
486 if (Output.isFilename() && OutputFileName != Output.getFilename())
487 C.addTempFile(Args.MakeArgString(OutputFileName));
488
489 CmdArgs.push_back(Args.MakeArgString(OutputFileName));
490 for (const auto &II : Inputs)
491 CmdArgs.push_back(Args.MakeArgString(II.getFilename()));
492
493 for (const auto &A : Args.getAllArgValues(options::OPT_Xcuda_ptxas))
494 CmdArgs.push_back(Args.MakeArgString(A));
495
496 bool Relocatable;
498 // In OpenMP we need to generate relocatable code.
499 Relocatable = Args.hasFlag(options::OPT_fopenmp_relocatable_target,
500 options::OPT_fnoopenmp_relocatable_target,
501 /*Default=*/true);
502 else if (JA.isOffloading(Action::OFK_Cuda))
503 // In CUDA we generate relocatable code by default.
504 Relocatable = UsesLLVMOffloading ||
505 Args.hasFlag(options::OPT_fgpu_rdc, options::OPT_fno_gpu_rdc,
506 /*Default=*/false);
507 else
508 // Otherwise, we are compiling directly and should create linkable output.
509 Relocatable = true;
510
511 if (Relocatable)
512 CmdArgs.push_back("-c");
513
514 const char *Exec;
515 if (Arg *A = Args.getLastArg(options::OPT_ptxas_path_EQ))
516 Exec = A->getValue();
517 else
518 Exec = Args.MakeArgString(TC.GetProgramPath("ptxas"));
519 C.addCommand(std::make_unique<Command>(
520 JA, *this,
522 "--options-file"},
523 Exec, CmdArgs, Inputs, Output));
524}
525
526static bool shouldIncludePTX(const ArgList &Args, StringRef InputArch) {
527 // The new driver does not include PTX by default to avoid overhead.
528 bool includePTX = !Args.hasFlag(options::OPT_offload_new_driver,
529 options::OPT_no_offload_new_driver, true);
530 for (Arg *A : Args.filtered(options::OPT_cuda_include_ptx_EQ,
531 options::OPT_no_cuda_include_ptx_EQ)) {
532 A->claim();
533 const StringRef ArchStr = A->getValue();
534 if (A->getOption().matches(options::OPT_cuda_include_ptx_EQ) &&
535 (ArchStr == "all" || ArchStr == InputArch))
536 includePTX = true;
537 else if (A->getOption().matches(options::OPT_no_cuda_include_ptx_EQ) &&
538 (ArchStr == "all" || ArchStr == InputArch))
539 includePTX = false;
540 }
541 return includePTX;
542}
543
544// All inputs to this linker must be from CudaDeviceActions, as we need to look
545// at the Inputs' Actions in order to figure out which GPU architecture they
546// correspond to.
548 const InputInfo &Output,
549 const InputInfoList &Inputs,
550 const ArgList &Args,
551 const char *LinkingOutput) const {
552 const auto &TC =
553 static_cast<const toolchains::CudaToolChain &>(getToolChain());
554 [[maybe_unused]] bool UsesLLVMOffloading = Args.hasFlag(
555 options::OPT_foffload_via_llvm, options::OPT_fno_offload_via_llvm, false);
556 assert((UsesLLVMOffloading || TC.getTriple().isNVPTX()) && "Wrong platform");
557
558 ArgStringList CmdArgs;
559 if (TC.CudaInstallation.version() <= CudaVersion::CUDA_100)
560 CmdArgs.push_back("--cuda");
561 CmdArgs.push_back(TC.getTriple().isArch64Bit() ? "-64" : "-32");
562 CmdArgs.push_back(Args.MakeArgString("--create"));
563 CmdArgs.push_back(Args.MakeArgString(Output.getFilename()));
564 if (mustEmitDebugInfo(Args) == EmitSameDebugInfoAsHost)
565 CmdArgs.push_back("-g");
566
567 for (const auto &II : Inputs) {
568 auto *A = II.getAction();
569 assert(A->getInputs().size() == 1 &&
570 "Device offload action is expected to have a single input");
571 BoundArch GpuArch = A->getOffloadingArch();
572 assert(!GpuArch.empty() &&
573 "Device action expected to have associated a GPU architecture!");
574
575 if (II.getType() == types::TY_PP_Asm &&
576 !shouldIncludePTX(Args, GpuArch.ArchName))
577 continue;
578 StringRef Kind = (II.getType() == types::TY_PP_Asm) ? "ptx" : "elf";
579 CmdArgs.push_back(Args.MakeArgString(
580 "--image3=kind=" + Kind + ",sm=" + GpuArch.ArchName.drop_front(3) +
581 ",file=" + getToolChain().getInputFilename(II)));
582 }
583
584 for (const auto &A : Args.getAllArgValues(options::OPT_Xcuda_fatbinary))
585 CmdArgs.push_back(Args.MakeArgString(A));
586
587 const char *Exec = Args.MakeArgString(TC.GetProgramPath("fatbinary"));
588 C.addCommand(std::make_unique<Command>(
589 JA, *this,
591 "--options-file"},
592 Exec, CmdArgs, Inputs, Output));
593}
594
596 const InputInfo &Output,
597 const InputInfoList &Inputs,
598 const ArgList &Args,
599 const char *LinkingOutput) const {
600 const auto &TC =
601 static_cast<const toolchains::NVPTXToolChain &>(getToolChain());
602 ArgStringList CmdArgs;
603
604 [[maybe_unused]] bool UsesLLVMOffloading = Args.hasFlag(
605 options::OPT_foffload_via_llvm, options::OPT_fno_offload_via_llvm, false);
606 assert((UsesLLVMOffloading || TC.getTriple().isNVPTX()) && "Wrong platform");
607
608 assert((Output.isFilename() || Output.isNothing()) && "Invalid output.");
609 if (Output.isFilename()) {
610 CmdArgs.push_back("-o");
611 CmdArgs.push_back(Output.getFilename());
612 }
613
614 if (mustEmitDebugInfo(Args) == EmitSameDebugInfoAsHost)
615 CmdArgs.push_back("-g");
616
617 if (Args.hasArg(options::OPT_v))
618 CmdArgs.push_back("-v");
619
620 StringRef GPUArch = Args.getLastArgValue(options::OPT_march_EQ);
621 if (GPUArch.empty() && !getToolChain().isUsingLTO(Args)) {
622 C.getDriver().Diag(diag::err_drv_offload_missing_gpu_arch)
623 << getToolChain().getArchName() << getShortName();
624 return;
625 }
626
627 if (!GPUArch.empty()) {
628 CmdArgs.push_back("-arch");
629 CmdArgs.push_back(Args.MakeArgString(GPUArch));
630 }
631
632 if (Args.hasArg(options::OPT_ptxas_path_EQ))
633 CmdArgs.push_back(Args.MakeArgString(
634 "--ptxas-path=" + Args.getLastArgValue(options::OPT_ptxas_path_EQ)));
635
636 // The wrapper runs 'ptxas' itself when doing LTO, so it needs these.
637 for (const Arg *A : Args.filtered(options::OPT_Xcuda_ptxas)) {
638 A->claim();
639 CmdArgs.append({"-Xptxas", A->getValue()});
640 }
641
642 if (Args.hasArg(options::OPT_cuda_path_EQ) || TC.CudaInstallation.isValid()) {
643 StringRef CudaPath = Args.getLastArgValue(
644 options::OPT_cuda_path_EQ,
645 llvm::sys::path::parent_path(TC.CudaInstallation.getBinPath()));
646 CmdArgs.push_back(Args.MakeArgString("--cuda-path=" + CudaPath));
647 }
648
649 // Add paths specified in LIBRARY_PATH environment variable as -L options.
650 addDirectoryList(Args, CmdArgs, "-L", "LIBRARY_PATH");
651
652 // Add standard library search paths passed on the command line.
653 Args.AddAllArgs(CmdArgs, options::OPT_L);
654 getToolChain().AddFilePathLibArgs(Args, CmdArgs);
655 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs, JA);
656
657 if (auto LTO = getToolChain().getLTOMode(Args); LTO != LTOK_None)
658 addLTOOptions(getToolChain(), Args, CmdArgs, Output, Inputs,
659 LTO == LTOK_Thin);
660
661 // Forward the PTX features if the nvlink-wrapper needs it.
662 std::vector<StringRef> Features;
663 getNVPTXTargetFeatures(C.getDriver(), getToolChain().getTriple(), Args,
664 Features);
665 CmdArgs.push_back(
666 Args.MakeArgString("--plugin-opt=-mattr=" + llvm::join(Features, ",")));
667
668 // Add paths for the default clang library path.
669 SmallString<256> DefaultLibPath =
670 llvm::sys::path::parent_path(TC.getDriver().Dir);
671 llvm::sys::path::append(DefaultLibPath, CLANG_INSTALL_LIBDIR_BASENAME);
672 CmdArgs.push_back(Args.MakeArgString(Twine("-L") + DefaultLibPath));
673
674 getToolChain().addProfileRTLibs(Args, CmdArgs);
675 addSanitizerRuntimes(getToolChain(), Args, CmdArgs);
676
677 if (Args.hasArg(options::OPT_stdlib))
678 CmdArgs.append({"-lc", "-lm"});
679 if (Args.hasArg(options::OPT_startfiles)) {
680 std::optional<std::string> IncludePath = getToolChain().getStdlibPath();
681 if (!IncludePath)
682 IncludePath = "/lib";
683 SmallString<128> P(*IncludePath);
684 llvm::sys::path::append(P, "crt1.o");
685 CmdArgs.push_back(Args.MakeArgString(P));
686 }
687
688 C.addCommand(std::make_unique<Command>(
689 JA, *this,
691 "--options-file"},
692 Args.MakeArgString(getToolChain().GetProgramPath("clang-nvlink-wrapper")),
693 CmdArgs, Inputs, Output));
694}
695
696void NVPTX::getNVPTXTargetFeatures(const Driver &D, const llvm::Triple &Triple,
697 const llvm::opt::ArgList &Args,
698 std::vector<StringRef> &Features) {
699 if (Args.hasArg(options::OPT_cuda_feature_EQ)) {
700 StringRef PtxFeature = Args.getLastArgValue(options::OPT_cuda_feature_EQ);
701 Features.push_back(Args.MakeArgString(PtxFeature));
702 return;
703 }
704 CudaInstallationDetector CudaInstallation(D, Triple, Args);
705
706 // New CUDA versions often introduce new instructions that are only supported
707 // by new PTX version, so we need to raise PTX level to enable them in NVPTX
708 // back-end.
709 const char *PtxFeature = nullptr;
710 switch (CudaInstallation.version()) {
711#define CASE_CUDA_VERSION(CUDA_VER, PTX_VER) \
712 case CudaVersion::CUDA_##CUDA_VER: \
713 PtxFeature = "+ptx" #PTX_VER; \
714 break;
715 CASE_CUDA_VERSION(134, 94);
716 CASE_CUDA_VERSION(133, 93);
717 CASE_CUDA_VERSION(132, 92);
718 CASE_CUDA_VERSION(131, 91);
719 CASE_CUDA_VERSION(130, 90);
720 CASE_CUDA_VERSION(129, 88);
721 CASE_CUDA_VERSION(128, 87);
722 CASE_CUDA_VERSION(126, 85);
723 CASE_CUDA_VERSION(125, 85);
724 CASE_CUDA_VERSION(124, 84);
725 CASE_CUDA_VERSION(123, 83);
726 CASE_CUDA_VERSION(122, 82);
727 CASE_CUDA_VERSION(121, 81);
728 CASE_CUDA_VERSION(120, 80);
729 CASE_CUDA_VERSION(118, 78);
730 CASE_CUDA_VERSION(117, 77);
731 CASE_CUDA_VERSION(116, 76);
732 CASE_CUDA_VERSION(115, 75);
733 CASE_CUDA_VERSION(114, 74);
734 CASE_CUDA_VERSION(113, 73);
735 CASE_CUDA_VERSION(112, 72);
736 CASE_CUDA_VERSION(111, 71);
737 CASE_CUDA_VERSION(110, 70);
738 CASE_CUDA_VERSION(102, 65);
739 CASE_CUDA_VERSION(101, 64);
740 CASE_CUDA_VERSION(100, 63);
741 CASE_CUDA_VERSION(92, 61);
742 CASE_CUDA_VERSION(91, 61);
743 CASE_CUDA_VERSION(90, 60);
744 CASE_CUDA_VERSION(80, 50);
745 CASE_CUDA_VERSION(75, 43);
746 CASE_CUDA_VERSION(70, 42);
747#undef CASE_CUDA_VERSION
748 // TODO: Use specific CUDA version once it's public.
750 PtxFeature = "+ptx86";
751 break;
752 default:
753 // No PTX feature specified; let the backend choose based on the target SM.
754 break;
755 }
756 if (PtxFeature)
757 Features.push_back(PtxFeature);
758}
759
760/// NVPTX toolchain. Our assembler is ptxas, and our linker is nvlink. This
761/// operates as a stand-alone version of the NVPTX tools without the host
762/// toolchain.
763NVPTXToolChain::NVPTXToolChain(const Driver &D, const llvm::Triple &Triple,
764 const llvm::Triple &HostTriple,
765 const ArgList &Args)
766 : ToolChain(D, Triple, Args), CudaInstallation(D, HostTriple, Args) {
767 if (CudaInstallation.isValid())
768 getProgramPaths().push_back(std::string(CudaInstallation.getBinPath()));
769 // Lookup binaries into the driver directory, this is used to
770 // discover the 'nvptx-arch' executable.
771 getProgramPaths().push_back(getDriver().Dir);
772}
773
774/// We only need the host triple to locate the CUDA binary utilities, use the
775/// system's default triple if not provided.
776NVPTXToolChain::NVPTXToolChain(const Driver &D, const llvm::Triple &Triple,
777 const ArgList &Args)
778 : NVPTXToolChain(D, Triple, llvm::Triple(LLVM_HOST_TRIPLE), Args) {
779 loadMultilibsFromYAML(Args, D);
780}
781
782llvm::opt::DerivedArgList *
783NVPTXToolChain::TranslateArgs(const llvm::opt::DerivedArgList &Args,
784 BoundArch BA,
785 Action::OffloadKind OffloadKind) const {
786 DerivedArgList *DAL = ToolChain::TranslateArgs(Args, BA, OffloadKind);
787 if (!DAL)
788 DAL = new DerivedArgList(Args.getBaseArgs());
789
790 const OptTable &Opts = getDriver().getOpts();
791
792 for (Arg *A : Args)
793 if (!llvm::is_contained(*DAL, A))
794 DAL->append(A);
795
796 if (!DAL->hasArg(options::OPT_march_EQ) && OffloadKind != Action::OFK_None) {
797 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_march_EQ),
799 } else if (DAL->getLastArgValue(options::OPT_march_EQ) == "generic" &&
800 OffloadKind == Action::OFK_None) {
801 DAL->eraseArg(options::OPT_march_EQ);
802 } else if (DAL->getLastArgValue(options::OPT_march_EQ) == "native") {
803 auto GPUsOrErr = getSystemGPUArchs(Args);
804 if (!GPUsOrErr) {
805 getDriver().Diag(diag::err_drv_undetermined_gpu_arch)
806 << getArchName() << llvm::toString(GPUsOrErr.takeError()) << "-march";
807 } else {
808 auto &GPUs = *GPUsOrErr;
809 if (llvm::SmallSet<std::string, 1>(GPUs.begin(), GPUs.end()).size() > 1)
810 getDriver().Diag(diag::warn_drv_multi_gpu_arch)
811 << getArchName() << llvm::join(GPUs, ", ") << "-march";
812 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_march_EQ),
813 Args.MakeArgString(GPUs.front()));
814 }
815 }
816
817 return DAL;
818}
819
821 const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args,
822 BoundArch BA, Action::OffloadKind DeviceOffloadingKind) const {}
823
824void NVPTXToolChain::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
825 ArgStringList &CC1Args) const {
826 if (DriverArgs.hasArg(options::OPT_nostdinc) ||
827 DriverArgs.hasArg(options::OPT_nostdlibinc))
828 return;
829
830 // Add multilib variant include paths in priority order.
831 for (const Multilib &M : getOrderedMultilibs()) {
832 if (M.isDefault())
833 continue;
834 if (std::optional<std::string> StdlibIncDir = getStdlibIncludePath()) {
835 SmallString<128> Dir(*StdlibIncDir);
836 llvm::sys::path::append(Dir, M.includeSuffix());
837 if (getDriver().getVFS().exists(Dir))
838 addSystemInclude(DriverArgs, CC1Args, Dir);
839 }
840 }
841
842 if (std::optional<std::string> Path = getStdlibIncludePath())
843 addSystemInclude(DriverArgs, CC1Args, *Path);
844}
845
846bool NVPTXToolChain::supportsDebugInfoOption(const llvm::opt::Arg *A) const {
847 const Option &O = A->getOption();
848 return (O.matches(options::OPT_gN_Group) &&
849 !O.matches(options::OPT_gmodules)) ||
850 O.matches(options::OPT_g_Flag) ||
851 O.matches(options::OPT_ggdbN_Group) || O.matches(options::OPT_ggdb) ||
852 O.matches(options::OPT_gdwarf) || O.matches(options::OPT_gdwarf_2) ||
853 O.matches(options::OPT_gdwarf_3) || O.matches(options::OPT_gdwarf_4) ||
854 O.matches(options::OPT_gdwarf_5) ||
855 O.matches(options::OPT_gcolumn_info);
856}
857
859 llvm::codegenoptions::DebugInfoKind &DebugInfoKind,
860 const ArgList &Args) const {
861 switch (mustEmitDebugInfo(Args)) {
862 case DisableDebugInfo:
863 DebugInfoKind = llvm::codegenoptions::NoDebugInfo;
864 break;
865 case DebugDirectivesOnly:
866 DebugInfoKind = llvm::codegenoptions::DebugDirectivesOnly;
867 break;
868 case EmitSameDebugInfoAsHost:
869 // Use same debug info level as the host.
870 break;
871 }
872}
873
875NVPTXToolChain::getSystemGPUArchs(const ArgList &Args) const {
876 // Detect NVIDIA GPUs availible on the system.
877 std::string Program;
878 if (Arg *A = Args.getLastArg(options::OPT_offload_arch_tool_EQ))
879 Program = A->getValue();
880 else
881 Program = GetProgramPath("nvptx-arch");
882
883 auto StdoutOrErr = getDriver().executeProgram({Program});
884 if (!StdoutOrErr)
885 return StdoutOrErr.takeError();
886
888 for (StringRef Arch : llvm::split((*StdoutOrErr)->getBuffer(), "\n"))
889 if (!Arch.empty())
890 GPUArchs.push_back(Arch.str());
891
892 if (GPUArchs.empty())
893 return llvm::createStringError(std::error_code(),
894 "No NVIDIA GPU detected in the system");
895
896 return std::move(GPUArchs);
897}
898
899/// CUDA toolchain. Our assembler is ptxas, and our "linker" is fatbinary,
900/// which isn't properly a linker but nonetheless performs the step of stitching
901/// together object files from the assembler into a single blob.
902
903CudaToolChain::CudaToolChain(const Driver &D, const llvm::Triple &Triple,
904 const ToolChain &HostTC, const ArgList &Args)
905 : NVPTXToolChain(D, Triple, HostTC.getTriple(), Args), HostTC(HostTC) {}
906
908 const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args,
909 BoundArch BA, Action::OffloadKind DeviceOffloadingKind) const {
910 HostTC.addClangTargetOptions(DriverArgs, CC1Args, BA, DeviceOffloadingKind);
911
912 bool UsesLLVMOffloading = DriverArgs.hasFlag(
913 options::OPT_foffload_via_llvm, options::OPT_fno_offload_via_llvm, false);
914
915 StringRef GpuArch = DriverArgs.getLastArgValue(options::OPT_march_EQ);
916 assert((DeviceOffloadingKind == Action::OFK_OpenMP ||
917 DeviceOffloadingKind == Action::OFK_Cuda || UsesLLVMOffloading) &&
918 "Only OpenMP or CUDA offloading kinds are supported for NVIDIA GPUs.");
919
920 CC1Args.append({"-fcuda-is-device", "-mllvm",
921 "-enable-memcpyopt-without-libcalls",
922 "-fno-threadsafe-statics"});
923
924 if (DriverArgs.hasFlag(options::OPT_fcuda_short_ptr,
925 options::OPT_fno_cuda_short_ptr, false))
926 CC1Args.append({"-target-abi", "shortptr"});
927
928 if (!DriverArgs.hasFlag(options::OPT_offloadlib, options::OPT_no_offloadlib,
929 true))
930 return;
931
932 if (DeviceOffloadingKind == Action::OFK_OpenMP &&
933 DriverArgs.hasArg(options::OPT_S))
934 return;
935
936 if (UsesLLVMOffloading)
937 return;
938
939 std::string LibDeviceFile = CudaInstallation.getLibDeviceFile(GpuArch);
940 if (LibDeviceFile.empty()) {
941 getDriver().Diag(diag::err_drv_no_cuda_libdevice) << GpuArch;
942 return;
943 }
944
945 CC1Args.push_back("-mlink-builtin-bitcode");
946 CC1Args.push_back(DriverArgs.MakeArgString(LibDeviceFile));
947
948 clang::CudaVersion CudaInstallationVersion = CudaInstallation.version();
949
950 if (CudaInstallationVersion >= CudaVersion::UNKNOWN)
951 CC1Args.push_back(
952 DriverArgs.MakeArgString(Twine("-target-sdk-version=") +
953 CudaVersionToString(CudaInstallationVersion)));
954
955 if (DeviceOffloadingKind == Action::OFK_OpenMP) {
956 if (CudaInstallationVersion < CudaVersion::CUDA_92) {
957 getDriver().Diag(
958 diag::err_drv_omp_offload_target_cuda_version_not_support)
959 << CudaVersionToString(CudaInstallationVersion);
960 return;
961 }
962
963 // Link the bitcode library late if we're using device LTO.
964 if (isUsingLTO(DriverArgs, DeviceOffloadingKind))
965 return;
966
967 addOpenMPDeviceRTL(getDriver(), DriverArgs, CC1Args, GpuArch.str(),
968 getTriple(), HostTC);
969 }
970}
971
973 const llvm::opt::ArgList &DriverArgs, const JobAction &JA,
974 const llvm::fltSemantics *FPType) const {
976 if (FPType && FPType == &llvm::APFloat::IEEEsingle() &&
977 DriverArgs.hasFlag(options::OPT_fgpu_flush_denormals_to_zero,
978 options::OPT_fno_gpu_flush_denormals_to_zero, false))
979 return llvm::DenormalMode::getPreserveSign();
980 }
981
983 return llvm::DenormalMode::getIEEE();
984}
985
986void CudaToolChain::AddCudaIncludeArgs(const ArgList &DriverArgs,
987 ArgStringList &CC1Args) const {
988 if (DriverArgs.hasFlag(options::OPT_foffload_via_llvm,
989 options::OPT_fno_offload_via_llvm, false))
990 return;
991
992 // Check our CUDA version if we're going to include the CUDA headers.
993 if (DriverArgs.hasFlag(options::OPT_offload_inc, options::OPT_no_offload_inc,
994 true) &&
995 !DriverArgs.hasArg(options::OPT_no_cuda_version_check)) {
996 StringRef Arch = DriverArgs.getLastArgValue(options::OPT_march_EQ);
997 assert(!Arch.empty() && "Must have an explicit GPU arch.");
998 CudaInstallation.CheckCudaVersionSupportsArch(StringToOffloadArch(Arch));
999 }
1000 CudaInstallation.AddCudaIncludeArgs(DriverArgs, CC1Args);
1001}
1002
1003std::string CudaToolChain::getInputFilename(const InputInfo &Input) const {
1004 // Only object files are changed, for example assembly files keep their .s
1005 // extensions. If the user requested device-only compilation don't change it.
1006 if (Input.getType() != types::TY_Object || getDriver().offloadDeviceOnly())
1007 return ToolChain::getInputFilename(Input);
1008
1009 return ToolChain::getInputFilename(Input);
1010}
1011
1012llvm::opt::DerivedArgList *
1013CudaToolChain::TranslateArgs(const llvm::opt::DerivedArgList &Args,
1014 BoundArch BA,
1015 Action::OffloadKind DeviceOffloadKind) const {
1016 DerivedArgList *DAL = HostTC.TranslateArgs(Args, BA, DeviceOffloadKind);
1017 if (!DAL)
1018 DAL = new DerivedArgList(Args.getBaseArgs());
1019
1020 const OptTable &Opts = getDriver().getOpts();
1021
1022 for (Arg *A : Args) {
1023 // Make sure flags are not duplicated.
1024 if (!llvm::is_contained(*DAL, A)) {
1025 DAL->append(A);
1026 }
1027 }
1028
1029 if (BA) {
1030 DAL->eraseArg(options::OPT_march_EQ);
1031 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_march_EQ),
1032 BA.ArchName);
1033 }
1034 return DAL;
1035}
1036
1038 return new tools::NVPTX::Assembler(*this);
1039}
1040
1042 return new tools::NVPTX::Linker(*this);
1043}
1044
1046 return new tools::NVPTX::Assembler(*this);
1047}
1048
1050 return new tools::NVPTX::FatBinary(*this);
1051}
1052
1053void CudaToolChain::addClangWarningOptions(ArgStringList &CC1Args) const {
1054 HostTC.addClangWarningOptions(CC1Args);
1055}
1056
1058CudaToolChain::GetCXXStdlibType(const ArgList &Args) const {
1059 return HostTC.GetCXXStdlibType(Args);
1060}
1061
1062void CudaToolChain::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
1063 ArgStringList &CC1Args) const {
1064 if (DriverArgs.hasFlag(options::OPT_foffload_via_llvm,
1065 options::OPT_fno_offload_via_llvm, false))
1066 return;
1067
1068 HostTC.AddClangSystemIncludeArgs(DriverArgs, CC1Args);
1069
1070 if (DriverArgs.hasFlag(options::OPT_offload_inc, options::OPT_no_offload_inc,
1071 true) &&
1072 CudaInstallation.isValid())
1073 CC1Args.append(
1074 {"-internal-isystem",
1075 DriverArgs.MakeArgString(CudaInstallation.getIncludePath())});
1076}
1077
1079 ArgStringList &CC1Args) const {
1080 HostTC.AddClangCXXStdlibIncludeArgs(Args, CC1Args);
1081}
1082
1083void CudaToolChain::AddIAMCUIncludeArgs(const ArgList &Args,
1084 ArgStringList &CC1Args) const {
1085 HostTC.AddIAMCUIncludeArgs(Args, CC1Args);
1086}
1087
1089 BoundArch BA, Action::OffloadKind DeviceOffloadKind) const {
1090 // The CudaToolChain only supports sanitizers in the sense that it allows
1091 // sanitizer arguments on the command line if they are supported by the host
1092 // toolchain. The CudaToolChain will actually ignore any command line
1093 // arguments for any of these "supported" sanitizers. That means that no
1094 // sanitization of device code is actually supported at this time.
1095 //
1096 // This behavior is necessary because the host and device toolchains
1097 // invocations often share the command line, so the device toolchain must
1098 // tolerate flags meant only for the host toolchain.
1099
1100 // FIXME: Be accurate and use DeviceOffloadKind.
1101 return HostTC.getSupportedSanitizers(BA, DeviceOffloadKind);
1102}
1103
1105 const ArgList &Args) const {
1106 return HostTC.computeMSVCVersion(D, Args);
1107}
static DeviceDebugInfoLevel mustEmitDebugInfo(const ArgList &Args)
Define debug info level for the NVPTX devices.
Definition Cuda.cpp:379
static bool shouldIncludePTX(const ArgList &Args, StringRef InputArch)
Definition Cuda.cpp:526
#define CASE_CUDA_VERSION(CUDA_VER, PTX_VER)
static StringRef getTriple(const Command &Job)
A processor an offloading action can target.
Definition OffloadArch.h:32
static OffloadArch CudaDefault()
Default architectures used when the user does not specify one.
bool isUnknown() const
Definition OffloadArch.h:89
BoundArch getOffloadingArch() const
Definition Action.h:217
OffloadKind getOffloadingDeviceKind() const
Definition Action.h:216
bool isDeviceOffloading(OffloadKind OKind) const
Definition Action.h:227
bool isOffloading(OffloadKind OKind) const
Definition Action.h:230
Compilation - A set of tasks to perform for a single driver invocation.
Definition Compilation.h:46
A class to find a viable CUDA installation.
void AddCudaIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
Definition Cuda.cpp:304
CudaInstallationDetector(const Driver &D, const llvm::Triple &HostTriple, const llvm::opt::ArgList &Args)
Definition Cuda.cpp:150
CudaVersion version() const
Get the detected Cuda install's version.
void CheckCudaVersionSupportsArch(OffloadArch Arch) const
Emit an error if Version does not support the given Arch.
Definition Cuda.cpp:333
void print(raw_ostream &OS) const
Print information about the detected CUDA installation.
Definition Cuda.cpp:351
bool isValid() const
Check whether we detected a valid Cuda install.
Distro - Helper class for detecting and classifying Linux distributions.
Definition Distro.h:23
bool IsDebian() const
Definition Distro.h:124
bool IsUbuntu() const
Definition Distro.h:128
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition Driver.h:95
DiagnosticBuilder Diag(unsigned DiagID) const
Definition Driver.h:159
const llvm::opt::OptTable & getOpts() const
Definition Driver.h:407
InputInfo - Wrapper for information about an input source.
Definition InputInfo.h:22
const char * getFilename() const
Definition InputInfo.h:83
bool isNothing() const
Definition InputInfo.h:74
bool isFilename() const
Definition InputInfo.h:75
types::ID getType() const
Definition InputInfo.h:77
This corresponds to a single GCC Multilib, or a segment of one controlled by a command line flag.
Definition Multilib.h:35
ToolChain - Access to tools for a single platform.
Definition ToolChain.h:96
static void addSystemInclude(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, const Twine &Path)
Utility function to add a system include directory to CC1 arguments.
bool isUsingLTO(const llvm::opt::ArgList &Args, Action::OffloadKind Kind=Action::OFK_None) const
Returns true if LTO is active for this toolchain given the args.
virtual std::string getInputFilename(const InputInfo &Input) const
Some toolchains need to modify the file name, for example to replace the extension for object files w...
const Driver & getDriver() const
Definition ToolChain.h:286
llvm::vfs::FileSystem & getVFS() const
ToolChain(const Driver &D, const llvm::Triple &T, const llvm::opt::ArgList &Args)
Definition ToolChain.cpp:91
virtual llvm::opt::DerivedArgList * TranslateArgs(const llvm::opt::DerivedArgList &Args, BoundArch BA, Action::OffloadKind DeviceOffloadKind) const
TranslateArgs - Create a new derived argument list for any argument translations this ToolChain may w...
Definition ToolChain.h:401
const llvm::Triple & getTriple() const
Definition ToolChain.h:288
OrderedMultilibs getOrderedMultilibs() const
Get selected multilibs in priority order with default fallback.
std::string GetProgramPath(const char *Name) const
std::optional< std::string > getStdlibIncludePath() const
StringRef getArchName() const
Definition ToolChain.h:303
Tool - Information on a specific compilation tool.
Definition Tool.h:32
const ToolChain & getToolChain() const
Definition Tool.h:52
const char * getShortName() const
Definition Tool.h:50
std::string getInputFilename(const InputInfo &Input) const override
Some toolchains need to modify the file name, for example to replace the extension for object files w...
Definition Cuda.cpp:1003
void AddCudaIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override
Add arguments to use system-specific CUDA includes.
Definition Cuda.cpp:986
void AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CC1Args) const override
AddClangCXXStdlibIncludeArgs - Add the clang -cc1 level arguments to set the include paths to use for...
Definition Cuda.cpp:1078
SanitizerMask getSupportedSanitizers(BoundArch BA, Action::OffloadKind DeviceOffloadKind) const override
Return sanitizers which are available in this toolchain.
Definition Cuda.cpp:1088
void addClangWarningOptions(llvm::opt::ArgStringList &CC1Args) const override
Add warning options that need to be passed to cc1 for this target.
Definition Cuda.cpp:1053
void AddIAMCUIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override
Add arguments to use MCU GCC toolchain includes.
Definition Cuda.cpp:1083
VersionTuple computeMSVCVersion(const Driver *D, const llvm::opt::ArgList &Args) const override
On Windows, returns the MSVC compatibility version.
Definition Cuda.cpp:1104
CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const override
Definition Cuda.cpp:1058
CudaToolChain(const Driver &D, const llvm::Triple &Triple, const ToolChain &HostTC, const llvm::opt::ArgList &Args)
CUDA toolchain.
Definition Cuda.cpp:903
Tool * buildLinker() const override
Definition Cuda.cpp:1049
void AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override
Add the clang cc1 arguments for system include paths.
Definition Cuda.cpp:1062
Tool * buildAssembler() const override
Definition Cuda.cpp:1045
void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, BoundArch BA, Action::OffloadKind DeviceOffloadKind) const override
Add options that need to be passed to cc1 for this target.
Definition Cuda.cpp:907
llvm::DenormalMode getDefaultDenormalModeForType(const llvm::opt::ArgList &DriverArgs, const JobAction &JA, const llvm::fltSemantics *FPType=nullptr) const override
Returns the output denormal handling type in the default floating point environment for the given FPT...
Definition Cuda.cpp:972
llvm::opt::DerivedArgList * TranslateArgs(const llvm::opt::DerivedArgList &Args, BoundArch BA, Action::OffloadKind DeviceOffloadKind) const override
TranslateArgs - Create a new derived argument list for any argument translations this ToolChain may w...
Definition Cuda.cpp:1013
CudaInstallationDetector CudaInstallation
Definition Cuda.h:126
llvm::opt::DerivedArgList * TranslateArgs(const llvm::opt::DerivedArgList &Args, BoundArch BA, Action::OffloadKind DeviceOffloadKind) const override
TranslateArgs - Create a new derived argument list for any argument translations this ToolChain may w...
Definition Cuda.cpp:783
void AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override
Add the clang cc1 arguments for system include paths.
Definition Cuda.cpp:824
Tool * buildAssembler() const override
Definition Cuda.cpp:1037
Tool * buildLinker() const override
Definition Cuda.cpp:1041
bool supportsDebugInfoOption(const llvm::opt::Arg *A) const override
Does this toolchain supports given debug info option or not.
Definition Cuda.cpp:846
void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, BoundArch BA, Action::OffloadKind DeviceOffloadKind) const override
Add options that need to be passed to cc1 for this target.
Definition Cuda.cpp:820
virtual Expected< SmallVector< std::string > > getSystemGPUArchs(const llvm::opt::ArgList &Args) const override
Uses nvptx-arch tool to get arch of the system GPU.
Definition Cuda.cpp:875
void adjustDebugInfoKind(llvm::codegenoptions::DebugInfoKind &DebugInfoKind, const llvm::opt::ArgList &Args) const override
Adjust debug information kind considering all passed options.
Definition Cuda.cpp:858
NVPTXToolChain(const Driver &D, const llvm::Triple &Triple, const llvm::Triple &HostTriple, const llvm::opt::ArgList &Args)
void ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override
ConstructJob - Construct jobs to perform the action JA, writing to Output and with Inputs,...
Definition Cuda.cpp:398
void ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override
ConstructJob - Construct jobs to perform the action JA, writing to Output and with Inputs,...
Definition Cuda.cpp:547
void ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override
ConstructJob - Construct jobs to perform the action JA, writing to Output and with Inputs,...
Definition Cuda.cpp:595
void getNVPTXTargetFeatures(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args, std::vector< StringRef > &Features)
Definition Cuda.cpp:696
void addOpenMPDeviceRTL(const Driver &D, const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, StringRef BitcodeSuffix, const llvm::Triple &Triple, const ToolChain &HostTC)
void addLTOOptions(const ToolChain &ToolChain, const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs, const InputInfo &Output, const InputInfoList &Inputs, bool IsThinLTO)
void addDirectoryList(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs, const char *ArgName, const char *EnvVar)
EnvVar is split by system delimiter for environment variables.
bool addSanitizerRuntimes(const ToolChain &TC, const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs)
void AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs, const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs, const JobAction &JA)
SmallVector< InputInfo, 4 > InputInfoList
Definition Driver.h:51
bool willEmitRemarks(const llvm::opt::ArgList &Args)
Top level wrappers for InstallAPI frontend operations.
CudaVersion MaxVersionForOffloadArch(OffloadArch A)
Get the latest CudaVersion that supports the given OffloadArch.
Definition Cuda.cpp:101
const char * CudaVersionToString(CudaVersion V)
Definition Cuda.cpp:60
OffloadArch StringToOffloadArch(llvm::StringRef S)
CudaVersion
Definition Cuda.h:22
@ PARTIALLY_SUPPORTED
Definition Cuda.h:57
const char * OffloadArchToString(OffloadArch A)
CudaVersion MinVersionForOffloadArch(OffloadArch A)
Get the earliest CudaVersion that supports the given OffloadArch.
Definition Cuda.cpp:83
Diagnostic wrappers for TextAPI types for error reporting.
Definition Dominators.h:30
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 uint32_t
Represents a bound architecture for offload / multiple architecture compilation.
llvm::StringRef ArchName
bool empty() const
OffloadArch Arch
The parsed offload architecture.