clang 19.0.0git
ToolChain.cpp
Go to the documentation of this file.
1//===- ToolChain.cpp - Collections of tools for one platform --------------===//
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
11#include "ToolChains/Arch/ARM.h"
12#include "ToolChains/Clang.h"
14#include "ToolChains/Flang.h"
18#include "clang/Config/config.h"
19#include "clang/Driver/Action.h"
20#include "clang/Driver/Driver.h"
23#include "clang/Driver/Job.h"
27#include "llvm/ADT/STLExtras.h"
28#include "llvm/ADT/SmallString.h"
29#include "llvm/ADT/StringExtras.h"
30#include "llvm/ADT/StringRef.h"
31#include "llvm/ADT/Twine.h"
32#include "llvm/Config/llvm-config.h"
33#include "llvm/MC/MCTargetOptions.h"
34#include "llvm/MC/TargetRegistry.h"
35#include "llvm/Option/Arg.h"
36#include "llvm/Option/ArgList.h"
37#include "llvm/Option/OptTable.h"
38#include "llvm/Option/Option.h"
39#include "llvm/Support/ErrorHandling.h"
40#include "llvm/Support/FileSystem.h"
41#include "llvm/Support/FileUtilities.h"
42#include "llvm/Support/Path.h"
43#include "llvm/Support/VersionTuple.h"
44#include "llvm/Support/VirtualFileSystem.h"
45#include "llvm/TargetParser/AArch64TargetParser.h"
46#include "llvm/TargetParser/TargetParser.h"
47#include "llvm/TargetParser/Triple.h"
48#include <cassert>
49#include <cstddef>
50#include <cstring>
51#include <string>
52
53using namespace clang;
54using namespace driver;
55using namespace tools;
56using namespace llvm;
57using namespace llvm::opt;
58
59static llvm::opt::Arg *GetRTTIArgument(const ArgList &Args) {
60 return Args.getLastArg(options::OPT_mkernel, options::OPT_fapple_kext,
61 options::OPT_fno_rtti, options::OPT_frtti);
62}
63
64static ToolChain::RTTIMode CalculateRTTIMode(const ArgList &Args,
65 const llvm::Triple &Triple,
66 const Arg *CachedRTTIArg) {
67 // Explicit rtti/no-rtti args
68 if (CachedRTTIArg) {
69 if (CachedRTTIArg->getOption().matches(options::OPT_frtti))
71 else
73 }
74
75 // -frtti is default, except for the PS4/PS5 and DriverKit.
76 bool NoRTTI = Triple.isPS() || Triple.isDriverKit();
78}
79
81 if (Args.hasFlag(options::OPT_fexceptions, options::OPT_fno_exceptions,
82 true)) {
84 }
86}
87
88ToolChain::ToolChain(const Driver &D, const llvm::Triple &T,
89 const ArgList &Args)
90 : D(D), Triple(T), Args(Args), CachedRTTIArg(GetRTTIArgument(Args)),
91 CachedRTTIMode(CalculateRTTIMode(Args, Triple, CachedRTTIArg)),
92 CachedExceptionsMode(CalculateExceptionsMode(Args)) {
93 auto addIfExists = [this](path_list &List, const std::string &Path) {
94 if (getVFS().exists(Path))
95 List.push_back(Path);
96 };
97
98 if (std::optional<std::string> Path = getRuntimePath())
99 getLibraryPaths().push_back(*Path);
100 if (std::optional<std::string> Path = getStdlibPath())
101 getFilePaths().push_back(*Path);
102 for (const auto &Path : getArchSpecificLibPaths())
103 addIfExists(getFilePaths(), Path);
104}
105
107ToolChain::executeToolChainProgram(StringRef Executable) const {
108 llvm::SmallString<64> OutputFile;
109 llvm::sys::fs::createTemporaryFile("toolchain-program", "txt", OutputFile);
110 llvm::FileRemover OutputRemover(OutputFile.c_str());
111 std::optional<llvm::StringRef> Redirects[] = {
112 {""},
113 OutputFile.str(),
114 {""},
115 };
116
117 std::string ErrorMessage;
118 if (llvm::sys::ExecuteAndWait(Executable, {}, {}, Redirects,
119 /* SecondsToWait */ 0,
120 /*MemoryLimit*/ 0, &ErrorMessage))
121 return llvm::createStringError(std::error_code(),
122 Executable + ": " + ErrorMessage);
123
124 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> OutputBuf =
125 llvm::MemoryBuffer::getFile(OutputFile.c_str());
126 if (!OutputBuf)
127 return llvm::createStringError(OutputBuf.getError(),
128 "Failed to read stdout of " + Executable +
129 ": " + OutputBuf.getError().message());
130 return std::move(*OutputBuf);
131}
132
133void ToolChain::setTripleEnvironment(llvm::Triple::EnvironmentType Env) {
134 Triple.setEnvironment(Env);
135 if (EffectiveTriple != llvm::Triple())
136 EffectiveTriple.setEnvironment(Env);
137}
138
139ToolChain::~ToolChain() = default;
140
141llvm::vfs::FileSystem &ToolChain::getVFS() const {
142 return getDriver().getVFS();
143}
144
146 return Args.hasFlag(options::OPT_fintegrated_as,
147 options::OPT_fno_integrated_as,
149}
150
152 assert(
155 "(Non-)integrated backend set incorrectly!");
156
157 bool IBackend = Args.hasFlag(options::OPT_fintegrated_objemitter,
158 options::OPT_fno_integrated_objemitter,
160
161 // Diagnose when integrated-objemitter options are not supported by this
162 // toolchain.
163 unsigned DiagID;
164 if ((IBackend && !IsIntegratedBackendSupported()) ||
165 (!IBackend && !IsNonIntegratedBackendSupported()))
166 DiagID = clang::diag::err_drv_unsupported_opt_for_target;
167 else
168 DiagID = clang::diag::warn_drv_unsupported_opt_for_target;
169 Arg *A = Args.getLastArg(options::OPT_fno_integrated_objemitter);
171 D.Diag(DiagID) << A->getAsString(Args) << Triple.getTriple();
172 A = Args.getLastArg(options::OPT_fintegrated_objemitter);
174 D.Diag(DiagID) << A->getAsString(Args) << Triple.getTriple();
175
176 return IBackend;
177}
178
180 return ENABLE_X86_RELAX_RELOCATIONS;
181}
182
184 return PPC_LINUX_DEFAULT_IEEELONGDOUBLE && getTriple().isOSLinux();
185}
186
187static void getAArch64MultilibFlags(const Driver &D,
188 const llvm::Triple &Triple,
189 const llvm::opt::ArgList &Args,
191 std::vector<StringRef> Features;
192 tools::aarch64::getAArch64TargetFeatures(D, Triple, Args, Features, false);
193 const auto UnifiedFeatures = tools::unifyTargetFeatures(Features);
194 llvm::DenseSet<StringRef> FeatureSet(UnifiedFeatures.begin(),
195 UnifiedFeatures.end());
196 std::vector<std::string> MArch;
197 for (const auto &Ext : AArch64::Extensions)
198 if (FeatureSet.contains(Ext.Feature))
199 MArch.push_back(Ext.Name.str());
200 for (const auto &Ext : AArch64::Extensions)
201 if (FeatureSet.contains(Ext.NegFeature))
202 MArch.push_back(("no" + Ext.Name).str());
203 StringRef ArchName;
204 for (const auto &ArchInfo : AArch64::ArchInfos)
205 if (FeatureSet.contains(ArchInfo->ArchFeature))
206 ArchName = ArchInfo->Name;
207 assert(!ArchName.empty() && "at least one architecture should be found");
208 MArch.insert(MArch.begin(), ("-march=" + ArchName).str());
209 Result.push_back(llvm::join(MArch, "+"));
210}
211
212static void getARMMultilibFlags(const Driver &D,
213 const llvm::Triple &Triple,
214 const llvm::opt::ArgList &Args,
216 std::vector<StringRef> Features;
217 llvm::ARM::FPUKind FPUKind = tools::arm::getARMTargetFeatures(
218 D, Triple, Args, Features, false /*ForAs*/, true /*ForMultilib*/);
219 const auto UnifiedFeatures = tools::unifyTargetFeatures(Features);
220 llvm::DenseSet<StringRef> FeatureSet(UnifiedFeatures.begin(),
221 UnifiedFeatures.end());
222 std::vector<std::string> MArch;
223 for (const auto &Ext : ARM::ARCHExtNames)
224 if (FeatureSet.contains(Ext.Feature))
225 MArch.push_back(Ext.Name.str());
226 for (const auto &Ext : ARM::ARCHExtNames)
227 if (FeatureSet.contains(Ext.NegFeature))
228 MArch.push_back(("no" + Ext.Name).str());
229 MArch.insert(MArch.begin(), ("-march=" + Triple.getArchName()).str());
230 Result.push_back(llvm::join(MArch, "+"));
231
232 switch (FPUKind) {
233#define ARM_FPU(NAME, KIND, VERSION, NEON_SUPPORT, RESTRICTION) \
234 case llvm::ARM::KIND: \
235 Result.push_back("-mfpu=" NAME); \
236 break;
237#include "llvm/TargetParser/ARMTargetParser.def"
238 default:
239 llvm_unreachable("Invalid FPUKind");
240 }
241
242 switch (arm::getARMFloatABI(D, Triple, Args)) {
243 case arm::FloatABI::Soft:
244 Result.push_back("-mfloat-abi=soft");
245 break;
246 case arm::FloatABI::SoftFP:
247 Result.push_back("-mfloat-abi=softfp");
248 break;
249 case arm::FloatABI::Hard:
250 Result.push_back("-mfloat-abi=hard");
251 break;
252 case arm::FloatABI::Invalid:
253 llvm_unreachable("Invalid float ABI");
254 }
255}
256
258ToolChain::getMultilibFlags(const llvm::opt::ArgList &Args) const {
259 using namespace clang::driver::options;
260
261 std::vector<std::string> Result;
262 const llvm::Triple Triple(ComputeEffectiveClangTriple(Args));
263 Result.push_back("--target=" + Triple.str());
264
265 switch (Triple.getArch()) {
266 case llvm::Triple::aarch64:
267 case llvm::Triple::aarch64_32:
268 case llvm::Triple::aarch64_be:
269 getAArch64MultilibFlags(D, Triple, Args, Result);
270 break;
271 case llvm::Triple::arm:
272 case llvm::Triple::armeb:
273 case llvm::Triple::thumb:
274 case llvm::Triple::thumbeb:
275 getARMMultilibFlags(D, Triple, Args, Result);
276 break;
277 default:
278 break;
279 }
280
281 // Include fno-exceptions and fno-rtti
282 // to improve multilib selection
284 Result.push_back("-fno-rtti");
285 else
286 Result.push_back("-frtti");
287
289 Result.push_back("-fno-exceptions");
290 else
291 Result.push_back("-fexceptions");
292
293 // Sort and remove duplicates.
294 std::sort(Result.begin(), Result.end());
295 Result.erase(std::unique(Result.begin(), Result.end()), Result.end());
296 return Result;
297}
298
300ToolChain::getSanitizerArgs(const llvm::opt::ArgList &JobArgs) const {
301 SanitizerArgs SanArgs(*this, JobArgs, !SanitizerArgsChecked);
302 SanitizerArgsChecked = true;
303 return SanArgs;
304}
305
307 if (!XRayArguments)
308 XRayArguments.reset(new XRayArgs(*this, Args));
309 return *XRayArguments;
310}
311
312namespace {
313
314struct DriverSuffix {
315 const char *Suffix;
316 const char *ModeFlag;
317};
318
319} // namespace
320
321static const DriverSuffix *FindDriverSuffix(StringRef ProgName, size_t &Pos) {
322 // A list of known driver suffixes. Suffixes are compared against the
323 // program name in order. If there is a match, the frontend type is updated as
324 // necessary by applying the ModeFlag.
325 static const DriverSuffix DriverSuffixes[] = {
326 {"clang", nullptr},
327 {"clang++", "--driver-mode=g++"},
328 {"clang-c++", "--driver-mode=g++"},
329 {"clang-cc", nullptr},
330 {"clang-cpp", "--driver-mode=cpp"},
331 {"clang-g++", "--driver-mode=g++"},
332 {"clang-gcc", nullptr},
333 {"clang-cl", "--driver-mode=cl"},
334 {"cc", nullptr},
335 {"cpp", "--driver-mode=cpp"},
336 {"cl", "--driver-mode=cl"},
337 {"++", "--driver-mode=g++"},
338 {"flang", "--driver-mode=flang"},
339 {"clang-dxc", "--driver-mode=dxc"},
340 };
341
342 for (const auto &DS : DriverSuffixes) {
343 StringRef Suffix(DS.Suffix);
344 if (ProgName.ends_with(Suffix)) {
345 Pos = ProgName.size() - Suffix.size();
346 return &DS;
347 }
348 }
349 return nullptr;
350}
351
352/// Normalize the program name from argv[0] by stripping the file extension if
353/// present and lower-casing the string on Windows.
354static std::string normalizeProgramName(llvm::StringRef Argv0) {
355 std::string ProgName = std::string(llvm::sys::path::filename(Argv0));
356 if (is_style_windows(llvm::sys::path::Style::native)) {
357 // Transform to lowercase for case insensitive file systems.
358 std::transform(ProgName.begin(), ProgName.end(), ProgName.begin(),
359 ::tolower);
360 }
361 return ProgName;
362}
363
364static const DriverSuffix *parseDriverSuffix(StringRef ProgName, size_t &Pos) {
365 // Try to infer frontend type and default target from the program name by
366 // comparing it against DriverSuffixes in order.
367
368 // If there is a match, the function tries to identify a target as prefix.
369 // E.g. "x86_64-linux-clang" as interpreted as suffix "clang" with target
370 // prefix "x86_64-linux". If such a target prefix is found, it may be
371 // added via -target as implicit first argument.
372 const DriverSuffix *DS = FindDriverSuffix(ProgName, Pos);
373
374 if (!DS && ProgName.ends_with(".exe")) {
375 // Try again after stripping the executable suffix:
376 // clang++.exe -> clang++
377 ProgName = ProgName.drop_back(StringRef(".exe").size());
378 DS = FindDriverSuffix(ProgName, Pos);
379 }
380
381 if (!DS) {
382 // Try again after stripping any trailing version number:
383 // clang++3.5 -> clang++
384 ProgName = ProgName.rtrim("0123456789.");
385 DS = FindDriverSuffix(ProgName, Pos);
386 }
387
388 if (!DS) {
389 // Try again after stripping trailing -component.
390 // clang++-tot -> clang++
391 ProgName = ProgName.slice(0, ProgName.rfind('-'));
392 DS = FindDriverSuffix(ProgName, Pos);
393 }
394 return DS;
395}
396
399 std::string ProgName = normalizeProgramName(PN);
400 size_t SuffixPos;
401 const DriverSuffix *DS = parseDriverSuffix(ProgName, SuffixPos);
402 if (!DS)
403 return {};
404 size_t SuffixEnd = SuffixPos + strlen(DS->Suffix);
405
406 size_t LastComponent = ProgName.rfind('-', SuffixPos);
407 if (LastComponent == std::string::npos)
408 return ParsedClangName(ProgName.substr(0, SuffixEnd), DS->ModeFlag);
409 std::string ModeSuffix = ProgName.substr(LastComponent + 1,
410 SuffixEnd - LastComponent - 1);
411
412 // Infer target from the prefix.
413 StringRef Prefix(ProgName);
414 Prefix = Prefix.slice(0, LastComponent);
415 std::string IgnoredError;
416 bool IsRegistered =
417 llvm::TargetRegistry::lookupTarget(std::string(Prefix), IgnoredError);
418 return ParsedClangName{std::string(Prefix), ModeSuffix, DS->ModeFlag,
419 IsRegistered};
420}
421
423 // In universal driver terms, the arch name accepted by -arch isn't exactly
424 // the same as the ones that appear in the triple. Roughly speaking, this is
425 // an inverse of the darwin::getArchTypeForDarwinArchName() function.
426 switch (Triple.getArch()) {
427 case llvm::Triple::aarch64: {
428 if (getTriple().isArm64e())
429 return "arm64e";
430 return "arm64";
431 }
432 case llvm::Triple::aarch64_32:
433 return "arm64_32";
434 case llvm::Triple::ppc:
435 return "ppc";
436 case llvm::Triple::ppcle:
437 return "ppcle";
438 case llvm::Triple::ppc64:
439 return "ppc64";
440 case llvm::Triple::ppc64le:
441 return "ppc64le";
442 default:
443 return Triple.getArchName();
444 }
445}
446
447std::string ToolChain::getInputFilename(const InputInfo &Input) const {
448 return Input.getFilename();
449}
450
452ToolChain::getDefaultUnwindTableLevel(const ArgList &Args) const {
454}
455
456Tool *ToolChain::getClang() const {
457 if (!Clang)
458 Clang.reset(new tools::Clang(*this, useIntegratedBackend()));
459 return Clang.get();
460}
461
462Tool *ToolChain::getFlang() const {
463 if (!Flang)
464 Flang.reset(new tools::Flang(*this));
465 return Flang.get();
466}
467
469 return new tools::ClangAs(*this);
470}
471
473 llvm_unreachable("Linking is not supported by this toolchain");
474}
475
477 llvm_unreachable("Creating static lib is not supported by this toolchain");
478}
479
480Tool *ToolChain::getAssemble() const {
481 if (!Assemble)
482 Assemble.reset(buildAssembler());
483 return Assemble.get();
484}
485
486Tool *ToolChain::getClangAs() const {
487 if (!Assemble)
488 Assemble.reset(new tools::ClangAs(*this));
489 return Assemble.get();
490}
491
492Tool *ToolChain::getLink() const {
493 if (!Link)
494 Link.reset(buildLinker());
495 return Link.get();
496}
497
498Tool *ToolChain::getStaticLibTool() const {
499 if (!StaticLibTool)
500 StaticLibTool.reset(buildStaticLibTool());
501 return StaticLibTool.get();
502}
503
504Tool *ToolChain::getIfsMerge() const {
505 if (!IfsMerge)
506 IfsMerge.reset(new tools::ifstool::Merger(*this));
507 return IfsMerge.get();
508}
509
510Tool *ToolChain::getOffloadBundler() const {
511 if (!OffloadBundler)
512 OffloadBundler.reset(new tools::OffloadBundler(*this));
513 return OffloadBundler.get();
514}
515
516Tool *ToolChain::getOffloadPackager() const {
517 if (!OffloadPackager)
518 OffloadPackager.reset(new tools::OffloadPackager(*this));
519 return OffloadPackager.get();
520}
521
522Tool *ToolChain::getLinkerWrapper() const {
523 if (!LinkerWrapper)
524 LinkerWrapper.reset(new tools::LinkerWrapper(*this, getLink()));
525 return LinkerWrapper.get();
526}
527
529 switch (AC) {
531 return getAssemble();
532
534 return getIfsMerge();
535
537 return getLink();
538
540 return getStaticLibTool();
541
549 llvm_unreachable("Invalid tool kind.");
550
559 return getClang();
560
563 return getOffloadBundler();
564
566 return getOffloadPackager();
568 return getLinkerWrapper();
569 }
570
571 llvm_unreachable("Invalid tool kind.");
572}
573
574static StringRef getArchNameForCompilerRTLib(const ToolChain &TC,
575 const ArgList &Args) {
576 const llvm::Triple &Triple = TC.getTriple();
577 bool IsWindows = Triple.isOSWindows();
578
579 if (TC.isBareMetal())
580 return Triple.getArchName();
581
582 if (TC.getArch() == llvm::Triple::arm || TC.getArch() == llvm::Triple::armeb)
583 return (arm::getARMFloatABI(TC, Args) == arm::FloatABI::Hard && !IsWindows)
584 ? "armhf"
585 : "arm";
586
587 // For historic reasons, Android library is using i686 instead of i386.
588 if (TC.getArch() == llvm::Triple::x86 && Triple.isAndroid())
589 return "i686";
590
591 if (TC.getArch() == llvm::Triple::x86_64 && Triple.isX32())
592 return "x32";
593
594 return llvm::Triple::getArchTypeName(TC.getArch());
595}
596
597StringRef ToolChain::getOSLibName() const {
598 if (Triple.isOSDarwin())
599 return "darwin";
600
601 switch (Triple.getOS()) {
602 case llvm::Triple::FreeBSD:
603 return "freebsd";
604 case llvm::Triple::NetBSD:
605 return "netbsd";
606 case llvm::Triple::OpenBSD:
607 return "openbsd";
608 case llvm::Triple::Solaris:
609 return "sunos";
610 case llvm::Triple::AIX:
611 return "aix";
612 default:
613 return getOS();
614 }
615}
616
617std::string ToolChain::getCompilerRTPath() const {
618 SmallString<128> Path(getDriver().ResourceDir);
619 if (isBareMetal()) {
620 llvm::sys::path::append(Path, "lib", getOSLibName());
621 if (!SelectedMultilibs.empty()) {
622 Path += SelectedMultilibs.back().gccSuffix();
623 }
624 } else if (Triple.isOSUnknown()) {
625 llvm::sys::path::append(Path, "lib");
626 } else {
627 llvm::sys::path::append(Path, "lib", getOSLibName());
628 }
629 return std::string(Path);
630}
631
632std::string ToolChain::getCompilerRTBasename(const ArgList &Args,
633 StringRef Component,
634 FileType Type) const {
635 std::string CRTAbsolutePath = getCompilerRT(Args, Component, Type);
636 return llvm::sys::path::filename(CRTAbsolutePath).str();
637}
638
639std::string ToolChain::buildCompilerRTBasename(const llvm::opt::ArgList &Args,
640 StringRef Component,
642 bool AddArch) const {
643 const llvm::Triple &TT = getTriple();
644 bool IsITANMSVCWindows =
645 TT.isWindowsMSVCEnvironment() || TT.isWindowsItaniumEnvironment();
646
647 const char *Prefix =
648 IsITANMSVCWindows || Type == ToolChain::FT_Object ? "" : "lib";
649 const char *Suffix;
650 switch (Type) {
652 Suffix = IsITANMSVCWindows ? ".obj" : ".o";
653 break;
655 Suffix = IsITANMSVCWindows ? ".lib" : ".a";
656 break;
658 Suffix = TT.isOSWindows()
659 ? (TT.isWindowsGNUEnvironment() ? ".dll.a" : ".lib")
660 : ".so";
661 break;
662 }
663
664 std::string ArchAndEnv;
665 if (AddArch) {
666 StringRef Arch = getArchNameForCompilerRTLib(*this, Args);
667 const char *Env = TT.isAndroid() ? "-android" : "";
668 ArchAndEnv = ("-" + Arch + Env).str();
669 }
670 return (Prefix + Twine("clang_rt.") + Component + ArchAndEnv + Suffix).str();
671}
672
673std::string ToolChain::getCompilerRT(const ArgList &Args, StringRef Component,
674 FileType Type) const {
675 // Check for runtime files in the new layout without the architecture first.
676 std::string CRTBasename =
677 buildCompilerRTBasename(Args, Component, Type, /*AddArch=*/false);
678 SmallString<128> Path;
679 for (const auto &LibPath : getLibraryPaths()) {
680 SmallString<128> P(LibPath);
681 llvm::sys::path::append(P, CRTBasename);
682 if (getVFS().exists(P))
683 return std::string(P);
684 if (Path.empty())
685 Path = P;
686 }
687 if (getTriple().isOSAIX())
688 Path.clear();
689
690 // Check the filename for the old layout if the new one does not exist.
691 CRTBasename =
692 buildCompilerRTBasename(Args, Component, Type, /*AddArch=*/true);
694 llvm::sys::path::append(OldPath, CRTBasename);
695 if (Path.empty() || getVFS().exists(OldPath))
696 return std::string(OldPath);
697
698 // If none is found, use a file name from the new layout, which may get
699 // printed in an error message, aiding users in knowing what Clang is
700 // looking for.
701 return std::string(Path);
702}
703
704const char *ToolChain::getCompilerRTArgString(const llvm::opt::ArgList &Args,
705 StringRef Component,
706 FileType Type) const {
707 return Args.MakeArgString(getCompilerRT(Args, Component, Type));
708}
709
710// Android target triples contain a target version. If we don't have libraries
711// for the exact target version, we should fall back to the next newest version
712// or a versionless path, if any.
713std::optional<std::string>
714ToolChain::getFallbackAndroidTargetPath(StringRef BaseDir) const {
715 llvm::Triple TripleWithoutLevel(getTriple());
716 TripleWithoutLevel.setEnvironmentName("android"); // remove any version number
717 const std::string &TripleWithoutLevelStr = TripleWithoutLevel.str();
718 unsigned TripleVersion = getTriple().getEnvironmentVersion().getMajor();
719 unsigned BestVersion = 0;
720
721 SmallString<32> TripleDir;
722 bool UsingUnversionedDir = false;
723 std::error_code EC;
724 for (llvm::vfs::directory_iterator LI = getVFS().dir_begin(BaseDir, EC), LE;
725 !EC && LI != LE; LI = LI.increment(EC)) {
726 StringRef DirName = llvm::sys::path::filename(LI->path());
727 StringRef DirNameSuffix = DirName;
728 if (DirNameSuffix.consume_front(TripleWithoutLevelStr)) {
729 if (DirNameSuffix.empty() && TripleDir.empty()) {
730 TripleDir = DirName;
731 UsingUnversionedDir = true;
732 } else {
733 unsigned Version;
734 if (!DirNameSuffix.getAsInteger(10, Version) && Version > BestVersion &&
735 Version < TripleVersion) {
736 BestVersion = Version;
737 TripleDir = DirName;
738 UsingUnversionedDir = false;
739 }
740 }
741 }
742 }
743
744 if (TripleDir.empty())
745 return {};
746
747 SmallString<128> P(BaseDir);
748 llvm::sys::path::append(P, TripleDir);
749 if (UsingUnversionedDir)
750 D.Diag(diag::warn_android_unversioned_fallback) << P << getTripleString();
751 return std::string(P);
752}
753
754std::optional<std::string>
755ToolChain::getTargetSubDirPath(StringRef BaseDir) const {
756 auto getPathForTriple =
757 [&](const llvm::Triple &Triple) -> std::optional<std::string> {
758 SmallString<128> P(BaseDir);
759 llvm::sys::path::append(P, Triple.str());
760 if (getVFS().exists(P))
761 return std::string(P);
762 return {};
763 };
764
765 if (auto Path = getPathForTriple(getTriple()))
766 return *Path;
767
768 // When building with per target runtime directories, various ways of naming
769 // the Arm architecture may have been normalised to simply "arm".
770 // For example "armv8l" (Armv8 AArch32 little endian) is replaced with "arm".
771 // Since an armv8l system can use libraries built for earlier architecture
772 // versions assuming endian and float ABI match.
773 //
774 // Original triple: armv8l-unknown-linux-gnueabihf
775 // Runtime triple: arm-unknown-linux-gnueabihf
776 //
777 // We do not do this for armeb (big endian) because doing so could make us
778 // select little endian libraries. In addition, all known armeb triples only
779 // use the "armeb" architecture name.
780 //
781 // M profile Arm is bare metal and we know they will not be using the per
782 // target runtime directory layout.
783 if (getTriple().getArch() == Triple::arm && !getTriple().isArmMClass()) {
784 llvm::Triple ArmTriple = getTriple();
785 ArmTriple.setArch(Triple::arm);
786 if (auto Path = getPathForTriple(ArmTriple))
787 return *Path;
788 }
789
790 if (getTriple().isAndroid())
791 return getFallbackAndroidTargetPath(BaseDir);
792
793 return {};
794}
795
796std::optional<std::string> ToolChain::getRuntimePath() const {
798 llvm::sys::path::append(P, "lib");
799 if (auto Ret = getTargetSubDirPath(P))
800 return Ret;
801 // Darwin does not use per-target runtime directory.
802 if (Triple.isOSDarwin())
803 return {};
804 llvm::sys::path::append(P, Triple.str());
805 return std::string(P);
806}
807
808std::optional<std::string> ToolChain::getStdlibPath() const {
810 llvm::sys::path::append(P, "..", "lib");
811 return getTargetSubDirPath(P);
812}
813
815 path_list Paths;
816
817 auto AddPath = [&](const ArrayRef<StringRef> &SS) {
818 SmallString<128> Path(getDriver().ResourceDir);
819 llvm::sys::path::append(Path, "lib");
820 for (auto &S : SS)
821 llvm::sys::path::append(Path, S);
822 Paths.push_back(std::string(Path));
823 };
824
825 AddPath({getTriple().str()});
826 AddPath({getOSLibName(), llvm::Triple::getArchTypeName(getArch())});
827 return Paths;
828}
829
830bool ToolChain::needsProfileRT(const ArgList &Args) {
831 if (Args.hasArg(options::OPT_noprofilelib))
832 return false;
833
834 return Args.hasArg(options::OPT_fprofile_generate) ||
835 Args.hasArg(options::OPT_fprofile_generate_EQ) ||
836 Args.hasArg(options::OPT_fcs_profile_generate) ||
837 Args.hasArg(options::OPT_fcs_profile_generate_EQ) ||
838 Args.hasArg(options::OPT_fprofile_instr_generate) ||
839 Args.hasArg(options::OPT_fprofile_instr_generate_EQ) ||
840 Args.hasArg(options::OPT_fcreate_profile) ||
841 Args.hasArg(options::OPT_forder_file_instrumentation);
842}
843
844bool ToolChain::needsGCovInstrumentation(const llvm::opt::ArgList &Args) {
845 return Args.hasArg(options::OPT_coverage) ||
846 Args.hasFlag(options::OPT_fprofile_arcs, options::OPT_fno_profile_arcs,
847 false);
848}
849
851 if (D.IsFlangMode() && getDriver().ShouldUseFlangCompiler(JA)) return getFlang();
852 if (getDriver().ShouldUseClangCompiler(JA)) return getClang();
855 !getTriple().isOSAIX())
856 return getClangAs();
857 return getTool(AC);
858}
859
860std::string ToolChain::GetFilePath(const char *Name) const {
861 return D.GetFilePath(Name, *this);
862}
863
864std::string ToolChain::GetProgramPath(const char *Name) const {
865 return D.GetProgramPath(Name, *this);
866}
867
868std::string ToolChain::GetLinkerPath(bool *LinkerIsLLD) const {
869 if (LinkerIsLLD)
870 *LinkerIsLLD = false;
871
872 // Get -fuse-ld= first to prevent -Wunused-command-line-argument. -fuse-ld= is
873 // considered as the linker flavor, e.g. "bfd", "gold", or "lld".
874 const Arg* A = Args.getLastArg(options::OPT_fuse_ld_EQ);
875 StringRef UseLinker = A ? A->getValue() : CLANG_DEFAULT_LINKER;
876
877 // --ld-path= takes precedence over -fuse-ld= and specifies the executable
878 // name. -B, COMPILER_PATH and PATH and consulted if the value does not
879 // contain a path component separator.
880 // -fuse-ld=lld can be used with --ld-path= to inform clang that the binary
881 // that --ld-path= points to is lld.
882 if (const Arg *A = Args.getLastArg(options::OPT_ld_path_EQ)) {
883 std::string Path(A->getValue());
884 if (!Path.empty()) {
885 if (llvm::sys::path::parent_path(Path).empty())
886 Path = GetProgramPath(A->getValue());
887 if (llvm::sys::fs::can_execute(Path)) {
888 if (LinkerIsLLD)
889 *LinkerIsLLD = UseLinker == "lld";
890 return std::string(Path);
891 }
892 }
893 getDriver().Diag(diag::err_drv_invalid_linker_name) << A->getAsString(Args);
895 }
896 // If we're passed -fuse-ld= with no argument, or with the argument ld,
897 // then use whatever the default system linker is.
898 if (UseLinker.empty() || UseLinker == "ld") {
899 const char *DefaultLinker = getDefaultLinker();
900 if (llvm::sys::path::is_absolute(DefaultLinker))
901 return std::string(DefaultLinker);
902 else
903 return GetProgramPath(DefaultLinker);
904 }
905
906 // Extending -fuse-ld= to an absolute or relative path is unexpected. Checking
907 // for the linker flavor is brittle. In addition, prepending "ld." or "ld64."
908 // to a relative path is surprising. This is more complex due to priorities
909 // among -B, COMPILER_PATH and PATH. --ld-path= should be used instead.
910 if (UseLinker.contains('/'))
911 getDriver().Diag(diag::warn_drv_fuse_ld_path);
912
913 if (llvm::sys::path::is_absolute(UseLinker)) {
914 // If we're passed what looks like an absolute path, don't attempt to
915 // second-guess that.
916 if (llvm::sys::fs::can_execute(UseLinker))
917 return std::string(UseLinker);
918 } else {
919 llvm::SmallString<8> LinkerName;
920 if (Triple.isOSDarwin())
921 LinkerName.append("ld64.");
922 else
923 LinkerName.append("ld.");
924 LinkerName.append(UseLinker);
925
926 std::string LinkerPath(GetProgramPath(LinkerName.c_str()));
927 if (llvm::sys::fs::can_execute(LinkerPath)) {
928 if (LinkerIsLLD)
929 *LinkerIsLLD = UseLinker == "lld";
930 return LinkerPath;
931 }
932 }
933
934 if (A)
935 getDriver().Diag(diag::err_drv_invalid_linker_name) << A->getAsString(Args);
936
938}
939
941 // TODO: Add support for static lib archiving on Windows
942 if (Triple.isOSDarwin())
943 return GetProgramPath("libtool");
944 return GetProgramPath("llvm-ar");
945}
946
949
950 // Flang always runs the preprocessor and has no notion of "preprocessed
951 // fortran". Here, TY_PP_Fortran is coerced to TY_Fortran to avoid treating
952 // them differently.
953 if (D.IsFlangMode() && id == types::TY_PP_Fortran)
954 id = types::TY_Fortran;
955
956 return id;
957}
958
960 return false;
961}
962
964 llvm::Triple HostTriple(LLVM_HOST_TRIPLE);
965 switch (HostTriple.getArch()) {
966 // The A32/T32/T16 instruction sets are not separate architectures in this
967 // context.
968 case llvm::Triple::arm:
969 case llvm::Triple::armeb:
970 case llvm::Triple::thumb:
971 case llvm::Triple::thumbeb:
972 return getArch() != llvm::Triple::arm && getArch() != llvm::Triple::thumb &&
973 getArch() != llvm::Triple::armeb && getArch() != llvm::Triple::thumbeb;
974 default:
975 return HostTriple.getArch() != getArch();
976 }
977}
978
980 return ObjCRuntime(isNonFragile ? ObjCRuntime::GNUstep : ObjCRuntime::GCC,
981 VersionTuple());
982}
983
984llvm::ExceptionHandling
985ToolChain::GetExceptionModel(const llvm::opt::ArgList &Args) const {
986 return llvm::ExceptionHandling::None;
987}
988
989bool ToolChain::isThreadModelSupported(const StringRef Model) const {
990 if (Model == "single") {
991 // FIXME: 'single' is only supported on ARM and WebAssembly so far.
992 return Triple.getArch() == llvm::Triple::arm ||
993 Triple.getArch() == llvm::Triple::armeb ||
994 Triple.getArch() == llvm::Triple::thumb ||
995 Triple.getArch() == llvm::Triple::thumbeb || Triple.isWasm();
996 } else if (Model == "posix")
997 return true;
998
999 return false;
1000}
1001
1002std::string ToolChain::ComputeLLVMTriple(const ArgList &Args,
1003 types::ID InputType) const {
1004 switch (getTriple().getArch()) {
1005 default:
1006 return getTripleString();
1007
1008 case llvm::Triple::x86_64: {
1009 llvm::Triple Triple = getTriple();
1010 if (!Triple.isOSBinFormatMachO())
1011 return getTripleString();
1012
1013 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
1014 // x86_64h goes in the triple. Other -march options just use the
1015 // vanilla triple we already have.
1016 StringRef MArch = A->getValue();
1017 if (MArch == "x86_64h")
1018 Triple.setArchName(MArch);
1019 }
1020 return Triple.getTriple();
1021 }
1022 case llvm::Triple::aarch64: {
1023 llvm::Triple Triple = getTriple();
1024 if (!Triple.isOSBinFormatMachO())
1025 return getTripleString();
1026
1027 if (Triple.isArm64e())
1028 return getTripleString();
1029
1030 // FIXME: older versions of ld64 expect the "arm64" component in the actual
1031 // triple string and query it to determine whether an LTO file can be
1032 // handled. Remove this when we don't care any more.
1033 Triple.setArchName("arm64");
1034 return Triple.getTriple();
1035 }
1036 case llvm::Triple::aarch64_32:
1037 return getTripleString();
1038 case llvm::Triple::arm:
1039 case llvm::Triple::armeb:
1040 case llvm::Triple::thumb:
1041 case llvm::Triple::thumbeb: {
1042 llvm::Triple Triple = getTriple();
1043 tools::arm::setArchNameInTriple(getDriver(), Args, InputType, Triple);
1045 return Triple.getTriple();
1046 }
1047 }
1048}
1049
1050std::string ToolChain::ComputeEffectiveClangTriple(const ArgList &Args,
1051 types::ID InputType) const {
1052 return ComputeLLVMTriple(Args, InputType);
1053}
1054
1055std::string ToolChain::computeSysRoot() const {
1056 return D.SysRoot;
1057}
1058
1059void ToolChain::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
1060 ArgStringList &CC1Args) const {
1061 // Each toolchain should provide the appropriate include flags.
1062}
1063
1065 const ArgList &DriverArgs, ArgStringList &CC1Args,
1066 Action::OffloadKind DeviceOffloadKind) const {}
1067
1069 ArgStringList &CC1ASArgs) const {}
1070
1071void ToolChain::addClangWarningOptions(ArgStringList &CC1Args) const {}
1072
1073void ToolChain::addProfileRTLibs(const llvm::opt::ArgList &Args,
1074 llvm::opt::ArgStringList &CmdArgs) const {
1075 if (!needsProfileRT(Args) && !needsGCovInstrumentation(Args))
1076 return;
1077
1078 CmdArgs.push_back(getCompilerRTArgString(Args, "profile"));
1079}
1080
1082 const ArgList &Args) const {
1083 if (runtimeLibType)
1084 return *runtimeLibType;
1085
1086 const Arg* A = Args.getLastArg(options::OPT_rtlib_EQ);
1087 StringRef LibName = A ? A->getValue() : CLANG_DEFAULT_RTLIB;
1088
1089 // Only use "platform" in tests to override CLANG_DEFAULT_RTLIB!
1090 if (LibName == "compiler-rt")
1091 runtimeLibType = ToolChain::RLT_CompilerRT;
1092 else if (LibName == "libgcc")
1093 runtimeLibType = ToolChain::RLT_Libgcc;
1094 else if (LibName == "platform")
1095 runtimeLibType = GetDefaultRuntimeLibType();
1096 else {
1097 if (A)
1098 getDriver().Diag(diag::err_drv_invalid_rtlib_name)
1099 << A->getAsString(Args);
1100
1101 runtimeLibType = GetDefaultRuntimeLibType();
1102 }
1103
1104 return *runtimeLibType;
1105}
1106
1108 const ArgList &Args) const {
1109 if (unwindLibType)
1110 return *unwindLibType;
1111
1112 const Arg *A = Args.getLastArg(options::OPT_unwindlib_EQ);
1113 StringRef LibName = A ? A->getValue() : CLANG_DEFAULT_UNWINDLIB;
1114
1115 if (LibName == "none")
1116 unwindLibType = ToolChain::UNW_None;
1117 else if (LibName == "platform" || LibName == "") {
1119 if (RtLibType == ToolChain::RLT_CompilerRT) {
1120 if (getTriple().isAndroid() || getTriple().isOSAIX())
1121 unwindLibType = ToolChain::UNW_CompilerRT;
1122 else
1123 unwindLibType = ToolChain::UNW_None;
1124 } else if (RtLibType == ToolChain::RLT_Libgcc)
1125 unwindLibType = ToolChain::UNW_Libgcc;
1126 } else if (LibName == "libunwind") {
1127 if (GetRuntimeLibType(Args) == RLT_Libgcc)
1128 getDriver().Diag(diag::err_drv_incompatible_unwindlib);
1129 unwindLibType = ToolChain::UNW_CompilerRT;
1130 } else if (LibName == "libgcc")
1131 unwindLibType = ToolChain::UNW_Libgcc;
1132 else {
1133 if (A)
1134 getDriver().Diag(diag::err_drv_invalid_unwindlib_name)
1135 << A->getAsString(Args);
1136
1137 unwindLibType = GetDefaultUnwindLibType();
1138 }
1139
1140 return *unwindLibType;
1141}
1142
1144 if (cxxStdlibType)
1145 return *cxxStdlibType;
1146
1147 const Arg *A = Args.getLastArg(options::OPT_stdlib_EQ);
1148 StringRef LibName = A ? A->getValue() : CLANG_DEFAULT_CXX_STDLIB;
1149
1150 // Only use "platform" in tests to override CLANG_DEFAULT_CXX_STDLIB!
1151 if (LibName == "libc++")
1152 cxxStdlibType = ToolChain::CST_Libcxx;
1153 else if (LibName == "libstdc++")
1154 cxxStdlibType = ToolChain::CST_Libstdcxx;
1155 else if (LibName == "platform")
1156 cxxStdlibType = GetDefaultCXXStdlibType();
1157 else {
1158 if (A)
1159 getDriver().Diag(diag::err_drv_invalid_stdlib_name)
1160 << A->getAsString(Args);
1161
1162 cxxStdlibType = GetDefaultCXXStdlibType();
1163 }
1164
1165 return *cxxStdlibType;
1166}
1167
1168/// Utility function to add a system include directory to CC1 arguments.
1169/*static*/ void ToolChain::addSystemInclude(const ArgList &DriverArgs,
1170 ArgStringList &CC1Args,
1171 const Twine &Path) {
1172 CC1Args.push_back("-internal-isystem");
1173 CC1Args.push_back(DriverArgs.MakeArgString(Path));
1174}
1175
1176/// Utility function to add a system include directory with extern "C"
1177/// semantics to CC1 arguments.
1178///
1179/// Note that this should be used rarely, and only for directories that
1180/// historically and for legacy reasons are treated as having implicit extern
1181/// "C" semantics. These semantics are *ignored* by and large today, but its
1182/// important to preserve the preprocessor changes resulting from the
1183/// classification.
1184/*static*/ void ToolChain::addExternCSystemInclude(const ArgList &DriverArgs,
1185 ArgStringList &CC1Args,
1186 const Twine &Path) {
1187 CC1Args.push_back("-internal-externc-isystem");
1188 CC1Args.push_back(DriverArgs.MakeArgString(Path));
1189}
1190
1191void ToolChain::addExternCSystemIncludeIfExists(const ArgList &DriverArgs,
1192 ArgStringList &CC1Args,
1193 const Twine &Path) {
1194 if (llvm::sys::fs::exists(Path))
1195 addExternCSystemInclude(DriverArgs, CC1Args, Path);
1196}
1197
1198/// Utility function to add a list of system include directories to CC1.
1199/*static*/ void ToolChain::addSystemIncludes(const ArgList &DriverArgs,
1200 ArgStringList &CC1Args,
1201 ArrayRef<StringRef> Paths) {
1202 for (const auto &Path : Paths) {
1203 CC1Args.push_back("-internal-isystem");
1204 CC1Args.push_back(DriverArgs.MakeArgString(Path));
1205 }
1206}
1207
1208/*static*/ std::string ToolChain::concat(StringRef Path, const Twine &A,
1209 const Twine &B, const Twine &C,
1210 const Twine &D) {
1212 llvm::sys::path::append(Result, llvm::sys::path::Style::posix, A, B, C, D);
1213 return std::string(Result);
1214}
1215
1216std::string ToolChain::detectLibcxxVersion(StringRef IncludePath) const {
1217 std::error_code EC;
1218 int MaxVersion = 0;
1219 std::string MaxVersionString;
1220 SmallString<128> Path(IncludePath);
1221 llvm::sys::path::append(Path, "c++");
1222 for (llvm::vfs::directory_iterator LI = getVFS().dir_begin(Path, EC), LE;
1223 !EC && LI != LE; LI = LI.increment(EC)) {
1224 StringRef VersionText = llvm::sys::path::filename(LI->path());
1225 int Version;
1226 if (VersionText[0] == 'v' &&
1227 !VersionText.slice(1, StringRef::npos).getAsInteger(10, Version)) {
1228 if (Version > MaxVersion) {
1229 MaxVersion = Version;
1230 MaxVersionString = std::string(VersionText);
1231 }
1232 }
1233 }
1234 if (!MaxVersion)
1235 return "";
1236 return MaxVersionString;
1237}
1238
1239void ToolChain::AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
1240 ArgStringList &CC1Args) const {
1241 // Header search paths should be handled by each of the subclasses.
1242 // Historically, they have not been, and instead have been handled inside of
1243 // the CC1-layer frontend. As the logic is hoisted out, this generic function
1244 // will slowly stop being called.
1245 //
1246 // While it is being called, replicate a bit of a hack to propagate the
1247 // '-stdlib=' flag down to CC1 so that it can in turn customize the C++
1248 // header search paths with it. Once all systems are overriding this
1249 // function, the CC1 flag and this line can be removed.
1250 DriverArgs.AddAllArgs(CC1Args, options::OPT_stdlib_EQ);
1251}
1252
1254 const llvm::opt::ArgList &DriverArgs,
1255 llvm::opt::ArgStringList &CC1Args) const {
1256 DriverArgs.ClaimAllArgs(options::OPT_stdlibxx_isystem);
1257 // This intentionally only looks at -nostdinc++, and not -nostdinc or
1258 // -nostdlibinc. The purpose of -stdlib++-isystem is to support toolchain
1259 // setups with non-standard search logic for the C++ headers, while still
1260 // allowing users of the toolchain to bring their own C++ headers. Such a
1261 // toolchain likely also has non-standard search logic for the C headers and
1262 // uses -nostdinc to suppress the default logic, but -stdlib++-isystem should
1263 // still work in that case and only be suppressed by an explicit -nostdinc++
1264 // in a project using the toolchain.
1265 if (!DriverArgs.hasArg(options::OPT_nostdincxx))
1266 for (const auto &P :
1267 DriverArgs.getAllArgValues(options::OPT_stdlibxx_isystem))
1268 addSystemInclude(DriverArgs, CC1Args, P);
1269}
1270
1271bool ToolChain::ShouldLinkCXXStdlib(const llvm::opt::ArgList &Args) const {
1272 return getDriver().CCCIsCXX() &&
1273 !Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs,
1274 options::OPT_nostdlibxx);
1275}
1276
1277void ToolChain::AddCXXStdlibLibArgs(const ArgList &Args,
1278 ArgStringList &CmdArgs) const {
1279 assert(!Args.hasArg(options::OPT_nostdlibxx) &&
1280 "should not have called this");
1282
1283 switch (Type) {
1285 CmdArgs.push_back("-lc++");
1286 if (Args.hasArg(options::OPT_fexperimental_library))
1287 CmdArgs.push_back("-lc++experimental");
1288 break;
1289
1291 CmdArgs.push_back("-lstdc++");
1292 break;
1293 }
1294}
1295
1296void ToolChain::AddFilePathLibArgs(const ArgList &Args,
1297 ArgStringList &CmdArgs) const {
1298 for (const auto &LibPath : getFilePaths())
1299 if(LibPath.length() > 0)
1300 CmdArgs.push_back(Args.MakeArgString(StringRef("-L") + LibPath));
1301}
1302
1303void ToolChain::AddCCKextLibArgs(const ArgList &Args,
1304 ArgStringList &CmdArgs) const {
1305 CmdArgs.push_back("-lcc_kext");
1306}
1307
1309 std::string &Path) const {
1310 // Don't implicitly link in mode-changing libraries in a shared library, since
1311 // this can have very deleterious effects. See the various links from
1312 // https://github.com/llvm/llvm-project/issues/57589 for more information.
1313 bool Default = !Args.hasArgNoClaim(options::OPT_shared);
1314
1315 // Do not check for -fno-fast-math or -fno-unsafe-math when -Ofast passed
1316 // (to keep the linker options consistent with gcc and clang itself).
1317 if (Default && !isOptimizationLevelFast(Args)) {
1318 // Check if -ffast-math or -funsafe-math.
1319 Arg *A =
1320 Args.getLastArg(options::OPT_ffast_math, options::OPT_fno_fast_math,
1321 options::OPT_funsafe_math_optimizations,
1322 options::OPT_fno_unsafe_math_optimizations);
1323
1324 if (!A || A->getOption().getID() == options::OPT_fno_fast_math ||
1325 A->getOption().getID() == options::OPT_fno_unsafe_math_optimizations)
1326 Default = false;
1327 }
1328
1329 // Whatever decision came as a result of the above implicit settings, either
1330 // -mdaz-ftz or -mno-daz-ftz is capable of overriding it.
1331 if (!Args.hasFlag(options::OPT_mdaz_ftz, options::OPT_mno_daz_ftz, Default))
1332 return false;
1333
1334 // If crtfastmath.o exists add it to the arguments.
1335 Path = GetFilePath("crtfastmath.o");
1336 return (Path != "crtfastmath.o"); // Not found.
1337}
1338
1340 ArgStringList &CmdArgs) const {
1341 std::string Path;
1342 if (isFastMathRuntimeAvailable(Args, Path)) {
1343 CmdArgs.push_back(Args.MakeArgString(Path));
1344 return true;
1345 }
1346
1347 return false;
1348}
1349
1351ToolChain::getSystemGPUArchs(const llvm::opt::ArgList &Args) const {
1352 return SmallVector<std::string>();
1353}
1354
1356 // Return sanitizers which don't require runtime support and are not
1357 // platform dependent.
1358
1359 SanitizerMask Res =
1360 (SanitizerKind::Undefined & ~SanitizerKind::Vptr) |
1361 (SanitizerKind::CFI & ~SanitizerKind::CFIICall) |
1362 SanitizerKind::CFICastStrict | SanitizerKind::FloatDivideByZero |
1363 SanitizerKind::KCFI | SanitizerKind::UnsignedIntegerOverflow |
1364 SanitizerKind::UnsignedShiftBase | SanitizerKind::ImplicitConversion |
1365 SanitizerKind::Nullability | SanitizerKind::LocalBounds;
1366 if (getTriple().getArch() == llvm::Triple::x86 ||
1367 getTriple().getArch() == llvm::Triple::x86_64 ||
1368 getTriple().getArch() == llvm::Triple::arm || getTriple().isWasm() ||
1369 getTriple().isAArch64() || getTriple().isRISCV() ||
1370 getTriple().isLoongArch64())
1371 Res |= SanitizerKind::CFIICall;
1372 if (getTriple().getArch() == llvm::Triple::x86_64 ||
1373 getTriple().isAArch64(64) || getTriple().isRISCV())
1374 Res |= SanitizerKind::ShadowCallStack;
1375 if (getTriple().isAArch64(64))
1376 Res |= SanitizerKind::MemTag;
1377 return Res;
1378}
1379
1380void ToolChain::AddCudaIncludeArgs(const ArgList &DriverArgs,
1381 ArgStringList &CC1Args) const {}
1382
1383void ToolChain::AddHIPIncludeArgs(const ArgList &DriverArgs,
1384 ArgStringList &CC1Args) const {}
1385
1387ToolChain::getDeviceLibs(const ArgList &DriverArgs) const {
1388 return {};
1389}
1390
1391void ToolChain::AddIAMCUIncludeArgs(const ArgList &DriverArgs,
1392 ArgStringList &CC1Args) const {}
1393
1394static VersionTuple separateMSVCFullVersion(unsigned Version) {
1395 if (Version < 100)
1396 return VersionTuple(Version);
1397
1398 if (Version < 10000)
1399 return VersionTuple(Version / 100, Version % 100);
1400
1401 unsigned Build = 0, Factor = 1;
1402 for (; Version > 10000; Version = Version / 10, Factor = Factor * 10)
1403 Build = Build + (Version % 10) * Factor;
1404 return VersionTuple(Version / 100, Version % 100, Build);
1405}
1406
1407VersionTuple
1409 const llvm::opt::ArgList &Args) const {
1410 const Arg *MSCVersion = Args.getLastArg(options::OPT_fmsc_version);
1411 const Arg *MSCompatibilityVersion =
1412 Args.getLastArg(options::OPT_fms_compatibility_version);
1413
1414 if (MSCVersion && MSCompatibilityVersion) {
1415 if (D)
1416 D->Diag(diag::err_drv_argument_not_allowed_with)
1417 << MSCVersion->getAsString(Args)
1418 << MSCompatibilityVersion->getAsString(Args);
1419 return VersionTuple();
1420 }
1421
1422 if (MSCompatibilityVersion) {
1423 VersionTuple MSVT;
1424 if (MSVT.tryParse(MSCompatibilityVersion->getValue())) {
1425 if (D)
1426 D->Diag(diag::err_drv_invalid_value)
1427 << MSCompatibilityVersion->getAsString(Args)
1428 << MSCompatibilityVersion->getValue();
1429 } else {
1430 return MSVT;
1431 }
1432 }
1433
1434 if (MSCVersion) {
1435 unsigned Version = 0;
1436 if (StringRef(MSCVersion->getValue()).getAsInteger(10, Version)) {
1437 if (D)
1438 D->Diag(diag::err_drv_invalid_value)
1439 << MSCVersion->getAsString(Args) << MSCVersion->getValue();
1440 } else {
1441 return separateMSVCFullVersion(Version);
1442 }
1443 }
1444
1445 return VersionTuple();
1446}
1447
1448llvm::opt::DerivedArgList *ToolChain::TranslateOpenMPTargetArgs(
1449 const llvm::opt::DerivedArgList &Args, bool SameTripleAsHost,
1450 SmallVectorImpl<llvm::opt::Arg *> &AllocatedArgs) const {
1451 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
1452 const OptTable &Opts = getDriver().getOpts();
1453 bool Modified = false;
1454
1455 // Handle -Xopenmp-target flags
1456 for (auto *A : Args) {
1457 // Exclude flags which may only apply to the host toolchain.
1458 // Do not exclude flags when the host triple (AuxTriple)
1459 // matches the current toolchain triple. If it is not present
1460 // at all, target and host share a toolchain.
1461 if (A->getOption().matches(options::OPT_m_Group)) {
1462 // Pass code object version to device toolchain
1463 // to correctly set metadata in intermediate files.
1464 if (SameTripleAsHost ||
1465 A->getOption().matches(options::OPT_mcode_object_version_EQ))
1466 DAL->append(A);
1467 else
1468 Modified = true;
1469 continue;
1470 }
1471
1472 unsigned Index;
1473 unsigned Prev;
1474 bool XOpenMPTargetNoTriple =
1475 A->getOption().matches(options::OPT_Xopenmp_target);
1476
1477 if (A->getOption().matches(options::OPT_Xopenmp_target_EQ)) {
1478 llvm::Triple TT(getOpenMPTriple(A->getValue(0)));
1479
1480 // Passing device args: -Xopenmp-target=<triple> -opt=val.
1481 if (TT.getTriple() == getTripleString())
1482 Index = Args.getBaseArgs().MakeIndex(A->getValue(1));
1483 else
1484 continue;
1485 } else if (XOpenMPTargetNoTriple) {
1486 // Passing device args: -Xopenmp-target -opt=val.
1487 Index = Args.getBaseArgs().MakeIndex(A->getValue(0));
1488 } else {
1489 DAL->append(A);
1490 continue;
1491 }
1492
1493 // Parse the argument to -Xopenmp-target.
1494 Prev = Index;
1495 std::unique_ptr<Arg> XOpenMPTargetArg(Opts.ParseOneArg(Args, Index));
1496 if (!XOpenMPTargetArg || Index > Prev + 1) {
1497 getDriver().Diag(diag::err_drv_invalid_Xopenmp_target_with_args)
1498 << A->getAsString(Args);
1499 continue;
1500 }
1501 if (XOpenMPTargetNoTriple && XOpenMPTargetArg &&
1502 Args.getAllArgValues(options::OPT_fopenmp_targets_EQ).size() != 1) {
1503 getDriver().Diag(diag::err_drv_Xopenmp_target_missing_triple);
1504 continue;
1505 }
1506 XOpenMPTargetArg->setBaseArg(A);
1507 A = XOpenMPTargetArg.release();
1508 AllocatedArgs.push_back(A);
1509 DAL->append(A);
1510 Modified = true;
1511 }
1512
1513 if (Modified)
1514 return DAL;
1515
1516 delete DAL;
1517 return nullptr;
1518}
1519
1520// TODO: Currently argument values separated by space e.g.
1521// -Xclang -mframe-pointer=no cannot be passed by -Xarch_. This should be
1522// fixed.
1524 const llvm::opt::DerivedArgList &Args, llvm::opt::Arg *&A,
1525 llvm::opt::DerivedArgList *DAL,
1526 SmallVectorImpl<llvm::opt::Arg *> *AllocatedArgs) const {
1527 const OptTable &Opts = getDriver().getOpts();
1528 unsigned ValuePos = 1;
1529 if (A->getOption().matches(options::OPT_Xarch_device) ||
1530 A->getOption().matches(options::OPT_Xarch_host))
1531 ValuePos = 0;
1532
1533 unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(ValuePos));
1534 unsigned Prev = Index;
1535 std::unique_ptr<llvm::opt::Arg> XarchArg(Opts.ParseOneArg(Args, Index));
1536
1537 // If the argument parsing failed or more than one argument was
1538 // consumed, the -Xarch_ argument's parameter tried to consume
1539 // extra arguments. Emit an error and ignore.
1540 //
1541 // We also want to disallow any options which would alter the
1542 // driver behavior; that isn't going to work in our model. We
1543 // use options::NoXarchOption to control this.
1544 if (!XarchArg || Index > Prev + 1) {
1545 getDriver().Diag(diag::err_drv_invalid_Xarch_argument_with_args)
1546 << A->getAsString(Args);
1547 return;
1548 } else if (XarchArg->getOption().hasFlag(options::NoXarchOption)) {
1549 auto &Diags = getDriver().getDiags();
1550 unsigned DiagID =
1552 "invalid Xarch argument: '%0', not all driver "
1553 "options can be forwared via Xarch argument");
1554 Diags.Report(DiagID) << A->getAsString(Args);
1555 return;
1556 }
1557 XarchArg->setBaseArg(A);
1558 A = XarchArg.release();
1559 if (!AllocatedArgs)
1560 DAL->AddSynthesizedArg(A);
1561 else
1562 AllocatedArgs->push_back(A);
1563}
1564
1565llvm::opt::DerivedArgList *ToolChain::TranslateXarchArgs(
1566 const llvm::opt::DerivedArgList &Args, StringRef BoundArch,
1568 SmallVectorImpl<llvm::opt::Arg *> *AllocatedArgs) const {
1569 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
1570 bool Modified = false;
1571
1572 bool IsDevice = OFK != Action::OFK_None && OFK != Action::OFK_Host;
1573 for (Arg *A : Args) {
1574 bool NeedTrans = false;
1575 bool Skip = false;
1576 if (A->getOption().matches(options::OPT_Xarch_device)) {
1577 NeedTrans = IsDevice;
1578 Skip = !IsDevice;
1579 } else if (A->getOption().matches(options::OPT_Xarch_host)) {
1580 NeedTrans = !IsDevice;
1581 Skip = IsDevice;
1582 } else if (A->getOption().matches(options::OPT_Xarch__) && IsDevice) {
1583 // Do not translate -Xarch_ options for non CUDA/HIP toolchain since
1584 // they may need special translation.
1585 // Skip this argument unless the architecture matches BoundArch
1586 if (BoundArch.empty() || A->getValue(0) != BoundArch)
1587 Skip = true;
1588 else
1589 NeedTrans = true;
1590 }
1591 if (NeedTrans || Skip)
1592 Modified = true;
1593 if (NeedTrans)
1594 TranslateXarchArgs(Args, A, DAL, AllocatedArgs);
1595 if (!Skip)
1596 DAL->append(A);
1597 }
1598
1599 if (Modified)
1600 return DAL;
1601
1602 delete DAL;
1603 return nullptr;
1604}
StringRef P
const Environment & Env
Definition: HTMLLogger.cpp:148
Defines types useful for describing an Objective-C runtime.
Defines the clang::SanitizerKind enum.
static const DriverSuffix * parseDriverSuffix(StringRef ProgName, size_t &Pos)
Definition: ToolChain.cpp:364
static void getAArch64MultilibFlags(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args, Multilib::flags_list &Result)
Definition: ToolChain.cpp:187
static std::string normalizeProgramName(llvm::StringRef Argv0)
Normalize the program name from argv[0] by stripping the file extension if present and lower-casing t...
Definition: ToolChain.cpp:354
static StringRef getArchNameForCompilerRTLib(const ToolChain &TC, const ArgList &Args)
Definition: ToolChain.cpp:574
static VersionTuple separateMSVCFullVersion(unsigned Version)
Definition: ToolChain.cpp:1394
static const DriverSuffix * FindDriverSuffix(StringRef ProgName, size_t &Pos)
Definition: ToolChain.cpp:321
static ToolChain::ExceptionsMode CalculateExceptionsMode(const ArgList &Args)
Definition: ToolChain.cpp:80
static llvm::opt::Arg * GetRTTIArgument(const ArgList &Args)
Definition: ToolChain.cpp:59
static void getARMMultilibFlags(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args, Multilib::flags_list &Result)
Definition: ToolChain.cpp:212
static ToolChain::RTTIMode CalculateRTTIMode(const ArgList &Args, const llvm::Triple &Triple, const Arg *CachedRTTIArg)
Definition: ToolChain.cpp:64
unsigned getCustomDiagID(Level L, const char(&FormatString)[N])
Return an ID for a diagnostic with the specified format string and level.
Definition: Diagnostic.h:873
The basic abstraction for the target Objective-C runtime.
Definition: ObjCRuntime.h:28
@ GNUstep
'gnustep' is the modern non-fragile GNUstep runtime.
Definition: ObjCRuntime.h:56
@ GCC
'gcc' is the Objective-C runtime shipped with GCC, implementing a fragile Objective-C ABI
Definition: ObjCRuntime.h:53
The base class of the type hierarchy.
Definition: Type.h:1813
ActionClass getKind() const
Definition: Action.h:147
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:77
std::string SysRoot
sysroot, if present
Definition: Driver.h:180
std::string GetFilePath(StringRef Name, const ToolChain &TC) const
GetFilePath - Lookup Name in the list of file search paths.
Definition: Driver.cpp:6111
DiagnosticsEngine & getDiags() const
Definition: Driver.h:401
DiagnosticBuilder Diag(unsigned DiagID) const
Definition: Driver.h:144
const llvm::opt::OptTable & getOpts() const
Definition: Driver.h:399
std::string GetProgramPath(StringRef Name, const ToolChain &TC) const
GetProgramPath - Lookup Name in the list of program search paths.
Definition: Driver.cpp:6171
std::string ResourceDir
The path to the compiler resource directory.
Definition: Driver.h:164
llvm::vfs::FileSystem & getVFS() const
Definition: Driver.h:403
std::string Dir
The path the driver executable was in, as invoked from the command line.
Definition: Driver.h:155
bool IsFlangMode() const
Whether the driver should invoke flang for fortran inputs.
Definition: Driver.h:226
bool CCCIsCXX() const
Whether the driver should follow g++ like behavior.
Definition: Driver.h:213
InputInfo - Wrapper for information about an input source.
Definition: InputInfo.h:22
const char * getFilename() const
Definition: InputInfo.h:83
std::vector< std::string > flags_list
Definition: Multilib.h:34
ToolChain - Access to tools for a single platform.
Definition: ToolChain.h:92
virtual bool isFastMathRuntimeAvailable(const llvm::opt::ArgList &Args, std::string &Path) const
If a runtime library exists that sets global flags for unsafe floating point math,...
Definition: ToolChain.cpp:1308
virtual std::string ComputeEffectiveClangTriple(const llvm::opt::ArgList &Args, types::ID InputType=types::TY_INVALID) const
ComputeEffectiveClangTriple - Return the Clang triple to use for this target, which may take into acc...
Definition: ToolChain.cpp:1050
virtual void AddCCKextLibArgs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
AddCCKextLibArgs - Add the system specific linker arguments to use for kernel extensions (Darwin-spec...
Definition: ToolChain.cpp:1303
virtual void addClangWarningOptions(llvm::opt::ArgStringList &CC1Args) const
Add warning options that need to be passed to cc1 for this target.
Definition: ToolChain.cpp:1071
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.
Definition: ToolChain.cpp:1169
virtual std::string computeSysRoot() const
Return the sysroot, possibly searching for a default sysroot using target-specific logic.
Definition: ToolChain.cpp:1055
virtual bool useIntegratedAs() const
Check if the toolchain should use the integrated assembler.
Definition: ToolChain.cpp:145
static llvm::Triple getOpenMPTriple(StringRef TripleStr)
Definition: ToolChain.h:802
virtual llvm::opt::DerivedArgList * TranslateOpenMPTargetArgs(const llvm::opt::DerivedArgList &Args, bool SameTripleAsHost, SmallVectorImpl< llvm::opt::Arg * > &AllocatedArgs) const
TranslateOpenMPTargetArgs - Create a new derived argument list for that contains the OpenMP target sp...
Definition: ToolChain.cpp:1448
std::optional< std::string > getStdlibPath() const
Definition: ToolChain.cpp:808
virtual RuntimeLibType GetRuntimeLibType(const llvm::opt::ArgList &Args) const
Definition: ToolChain.cpp:1081
virtual UnwindTableLevel getDefaultUnwindTableLevel(const llvm::opt::ArgList &Args) const
How detailed should the unwind tables be by default.
Definition: ToolChain.cpp:452
const char * getCompilerRTArgString(const llvm::opt::ArgList &Args, StringRef Component, FileType Type=ToolChain::FT_Static) const
Definition: ToolChain.cpp:704
bool ShouldLinkCXXStdlib(const llvm::opt::ArgList &Args) const
Returns if the C++ standard library should be linked in.
Definition: ToolChain.cpp:1271
static void addExternCSystemInclude(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, const Twine &Path)
Utility function to add a system include directory with extern "C" semantics to CC1 arguments.
Definition: ToolChain.cpp:1184
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...
Definition: ToolChain.cpp:447
virtual Tool * buildStaticLibTool() const
Definition: ToolChain.cpp:476
virtual bool IsIntegratedBackendSupported() const
IsIntegratedBackendSupported - Does this tool chain support -fintegrated-objemitter.
Definition: ToolChain.h:442
std::string GetFilePath(const char *Name) const
Definition: ToolChain.cpp:860
path_list & getFilePaths()
Definition: ToolChain.h:294
virtual Tool * SelectTool(const JobAction &JA) const
Choose a tool to use to handle the action JA.
Definition: ToolChain.cpp:850
static bool needsProfileRT(const llvm::opt::ArgList &Args)
needsProfileRT - returns true if instrumentation profile is on.
Definition: ToolChain.cpp:830
StringRef getOS() const
Definition: ToolChain.h:271
virtual bool isBareMetal() const
isBareMetal - Is this a bare metal target.
Definition: ToolChain.h:625
virtual bool isThreadModelSupported(const StringRef Model) const
isThreadModelSupported() - Does this target support a thread model?
Definition: ToolChain.cpp:989
llvm::Triple::ArchType getArch() const
Definition: ToolChain.h:268
const Driver & getDriver() const
Definition: ToolChain.h:252
virtual std::string detectLibcxxVersion(StringRef IncludePath) const
Definition: ToolChain.cpp:1216
static std::string concat(StringRef Path, const Twine &A, const Twine &B="", const Twine &C="", const Twine &D="")
Definition: ToolChain.cpp:1208
RTTIMode getRTTIMode() const
Definition: ToolChain.h:326
ExceptionsMode getExceptionsMode() const
Definition: ToolChain.h:329
llvm::vfs::FileSystem & getVFS() const
Definition: ToolChain.cpp:141
Multilib::flags_list getMultilibFlags(const llvm::opt::ArgList &) const
Get flags suitable for multilib selection, based on the provided clang command line arguments.
Definition: ToolChain.cpp:258
static bool needsGCovInstrumentation(const llvm::opt::ArgList &Args)
Returns true if gcov instrumentation (-fprofile-arcs or –coverage) is on.
Definition: ToolChain.cpp:844
virtual std::string ComputeLLVMTriple(const llvm::opt::ArgList &Args, types::ID InputType=types::TY_INVALID) const
ComputeLLVMTriple - Return the LLVM target triple to use, after taking command line arguments into ac...
Definition: ToolChain.cpp:1002
ToolChain(const Driver &D, const llvm::Triple &T, const llvm::opt::ArgList &Args)
Definition: ToolChain.cpp:88
const XRayArgs & getXRayArgs() const
Definition: ToolChain.cpp:306
void AddClangCXXStdlibIsystemArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
AddClangCXXStdlibIsystemArgs - Add the clang -cc1 level arguments to set the specified include paths ...
Definition: ToolChain.cpp:1253
bool addFastMathRuntimeIfAvailable(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
AddFastMathRuntimeIfAvailable - If a runtime library exists that sets global flags for unsafe floatin...
Definition: ToolChain.cpp:1339
static void addExternCSystemIncludeIfExists(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, const Twine &Path)
Definition: ToolChain.cpp:1191
virtual bool useIntegratedBackend() const
Check if the toolchain should use the integrated backend.
Definition: ToolChain.cpp:151
std::string GetStaticLibToolPath() const
Returns the linker path for emitting a static library.
Definition: ToolChain.cpp:940
virtual llvm::ExceptionHandling GetExceptionModel(const llvm::opt::ArgList &Args) const
GetExceptionModel - Return the tool chain exception model.
Definition: ToolChain.cpp:985
virtual void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
AddCXXStdlibLibArgs - Add the system specific linker arguments to use for the given C++ standard libr...
Definition: ToolChain.cpp:1277
static ParsedClangName getTargetAndModeFromProgramName(StringRef ProgName)
Return any implicit target and/or mode flag for an invocation of the compiler driver as ProgName.
Definition: ToolChain.cpp:398
virtual bool IsIntegratedBackendDefault() const
IsIntegratedBackendDefault - Does this tool chain enable -fintegrated-objemitter by default.
Definition: ToolChain.h:438
virtual const char * getDefaultLinker() const
GetDefaultLinker - Get the default linker to use.
Definition: ToolChain.h:493
virtual Tool * buildLinker() const
Definition: ToolChain.cpp:472
const llvm::Triple & getTriple() const
Definition: ToolChain.h:254
bool defaultToIEEELongDouble() const
Check whether use IEEE binary128 as long double format by default.
Definition: ToolChain.cpp:183
virtual types::ID LookupTypeForExtension(StringRef Ext) const
LookupTypeForExtension - Return the default language type to use for the given extension.
Definition: ToolChain.cpp:947
virtual bool HasNativeLLVMSupport() const
HasNativeLTOLinker - Check whether the linker and related tools have native LLVM support.
Definition: ToolChain.cpp:959
virtual llvm::SmallVector< BitCodeLibraryInfo, 12 > getDeviceLibs(const llvm::opt::ArgList &Args) const
Get paths for device libraries.
Definition: ToolChain.cpp:1387
virtual UnwindLibType GetUnwindLibType(const llvm::opt::ArgList &Args) const
Definition: ToolChain.cpp:1107
std::optional< std::string > getTargetSubDirPath(StringRef BaseDir) const
Find the target-specific subdirectory for the current target triple under BaseDir,...
Definition: ToolChain.cpp:755
virtual void addProfileRTLibs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
addProfileRTLibs - When -fprofile-instr-profile is specified, try to pass a suitable profile runtime ...
Definition: ToolChain.cpp:1073
virtual void AddCudaIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
Add arguments to use system-specific CUDA includes.
Definition: ToolChain.cpp:1380
virtual std::string getCompilerRTPath() const
Definition: ToolChain.cpp:617
virtual std::string buildCompilerRTBasename(const llvm::opt::ArgList &Args, StringRef Component, FileType Type, bool AddArch) const
Definition: ToolChain.cpp:639
std::string GetLinkerPath(bool *LinkerIsLLD=nullptr) const
Returns the linker path, respecting the -fuse-ld= argument to determine the linker suffix or name.
Definition: ToolChain.cpp:868
virtual std::string getCompilerRT(const llvm::opt::ArgList &Args, StringRef Component, FileType Type=ToolChain::FT_Static) const
Definition: ToolChain.cpp:673
virtual Expected< SmallVector< std::string > > getSystemGPUArchs(const llvm::opt::ArgList &Args) const
getSystemGPUArchs - Use a tool to detect the user's availible GPUs.
Definition: ToolChain.cpp:1351
std::string GetProgramPath(const char *Name) const
Definition: ToolChain.cpp:864
static void addSystemIncludes(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, ArrayRef< StringRef > Paths)
Utility function to add a list of system include directories to CC1.
Definition: ToolChain.cpp:1199
virtual void AddHIPIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
Add arguments to use system-specific HIP includes.
Definition: ToolChain.cpp:1383
virtual void AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
AddClangCXXStdlibIncludeArgs - Add the clang -cc1 level arguments to set the include paths to use for...
Definition: ToolChain.cpp:1239
virtual VersionTuple computeMSVCVersion(const Driver *D, const llvm::opt::ArgList &Args) const
On Windows, returns the MSVC compatibility version.
Definition: ToolChain.cpp:1408
virtual StringRef getOSLibName() const
Definition: ToolChain.cpp:597
virtual void AddIAMCUIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
Add arguments to use MCU GCC toolchain includes.
Definition: ToolChain.cpp:1391
virtual CXXStdlibType GetDefaultCXXStdlibType() const
Definition: ToolChain.h:500
void AddFilePathLibArgs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
AddFilePathLibArgs - Add each thing in getFilePaths() as a "-L" option.
Definition: ToolChain.cpp:1296
std::string getTripleString() const
Definition: ToolChain.h:277
virtual RuntimeLibType GetDefaultRuntimeLibType() const
GetDefaultRuntimeLibType - Get the default runtime library variant to use.
Definition: ToolChain.h:496
StringRef getDefaultUniversalArchName() const
Provide the default architecture name (as expected by -arch) for this toolchain.
Definition: ToolChain.cpp:422
virtual Tool * buildAssembler() const
Definition: ToolChain.cpp:468
void setTripleEnvironment(llvm::Triple::EnvironmentType Env)
Definition: ToolChain.cpp:133
virtual void addClangCC1ASTargetOptions(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CC1ASArgs) const
Add options that need to be passed to cc1as for this target.
Definition: ToolChain.cpp:1068
virtual bool IsIntegratedAssemblerDefault() const
IsIntegratedAssemblerDefault - Does this tool chain enable -integrated-as by default.
Definition: ToolChain.h:434
SanitizerArgs getSanitizerArgs(const llvm::opt::ArgList &JobArgs) const
Definition: ToolChain.cpp:300
virtual CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const
Definition: ToolChain.cpp:1143
llvm::SmallVector< Multilib > SelectedMultilibs
Definition: ToolChain.h:201
llvm::Expected< std::unique_ptr< llvm::MemoryBuffer > > executeToolChainProgram(StringRef Executable) const
Executes the given Executable and returns the stdout.
Definition: ToolChain.cpp:107
virtual void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, Action::OffloadKind DeviceOffloadKind) const
Add options that need to be passed to cc1 for this target.
Definition: ToolChain.cpp:1064
path_list & getLibraryPaths()
Definition: ToolChain.h:291
virtual void AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
Add the clang cc1 arguments for system include paths.
Definition: ToolChain.cpp:1059
virtual UnwindLibType GetDefaultUnwindLibType() const
Definition: ToolChain.h:504
std::optional< std::string > getRuntimePath() const
Definition: ToolChain.cpp:796
virtual Tool * getTool(Action::ActionClass AC) const
Definition: ToolChain.cpp:528
virtual SanitizerMask getSupportedSanitizers() const
Return sanitizers which are available in this toolchain.
Definition: ToolChain.cpp:1355
virtual path_list getArchSpecificLibPaths() const
Definition: ToolChain.cpp:814
virtual bool isCrossCompiling() const
Returns true if the toolchain is targeting a non-native architecture.
Definition: ToolChain.cpp:963
std::string getCompilerRTBasename(const llvm::opt::ArgList &Args, StringRef Component, FileType Type=ToolChain::FT_Static) const
Definition: ToolChain.cpp:632
virtual bool IsNonIntegratedBackendSupported() const
IsNonIntegratedBackendSupported - Does this tool chain support -fno-integrated-objemitter.
Definition: ToolChain.h:446
virtual void TranslateXarchArgs(const llvm::opt::DerivedArgList &Args, llvm::opt::Arg *&A, llvm::opt::DerivedArgList *DAL, SmallVectorImpl< llvm::opt::Arg * > *AllocatedArgs=nullptr) const
Append the argument following A to DAL assuming A is an Xarch argument.
Definition: ToolChain.cpp:1523
virtual bool useRelaxRelocations() const
Check whether to enable x86 relax relocations by default.
Definition: ToolChain.cpp:179
virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const
getDefaultObjCRuntime - Return the default Objective-C runtime for this platform.
Definition: ToolChain.cpp:979
Tool - Information on a specific compilation tool.
Definition: Tool.h:32
Clang integrated assembler tool.
Definition: Clang.h:122
Clang compiler tool.
Definition: Clang.h:28
Flang compiler tool.
Definition: Flang.h:25
Linker wrapper tool.
Definition: Clang.h:176
Offload bundler tool.
Definition: Clang.h:145
Offload binary tool.
Definition: Clang.h:163
void getAArch64TargetFeatures(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args, std::vector< llvm::StringRef > &Features, bool ForAS)
void setArchNameInTriple(const Driver &D, const llvm::opt::ArgList &Args, types::ID InputType, llvm::Triple &Triple)
void setFloatABIInTriple(const Driver &D, const llvm::opt::ArgList &Args, llvm::Triple &triple)
FloatABI getARMFloatABI(const ToolChain &TC, const llvm::opt::ArgList &Args)
llvm::ARM::FPUKind getARMTargetFeatures(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args, std::vector< llvm::StringRef > &Features, bool ForAS, bool ForMultilib=false)
SmallVector< StringRef > unifyTargetFeatures(ArrayRef< StringRef > Features)
If there are multiple +xxx or -xxx features, keep the last one.
Definition: CommonArgs.cpp:328
ID lookupTypeForExtension(llvm::StringRef Ext)
lookupTypeForExtension - Lookup the type to use for the file extension Ext.
Definition: Types.cpp:298
bool isOptimizationLevelFast(const llvm::opt::ArgList &Args)
The JSON file list parser is used to communicate input to InstallAPI.
@ Result
The result type of a method or function.
const FunctionProtoType * T
Diagnostic wrappers for TextAPI types for error reporting.
Definition: Dominators.h:30
Helper structure used to pass information extracted from clang executable name such as i686-linux-and...
Definition: ToolChain.h:65