clang 20.0.0git
ToolChain.h
Go to the documentation of this file.
1//===- ToolChain.h - Collections of tools for one platform ------*- 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#ifndef LLVM_CLANG_DRIVER_TOOLCHAIN_H
10#define LLVM_CLANG_DRIVER_TOOLCHAIN_H
11
12#include "clang/Basic/LLVM.h"
15#include "clang/Driver/Action.h"
17#include "clang/Driver/Types.h"
18#include "llvm/ADT/APFloat.h"
19#include "llvm/ADT/ArrayRef.h"
20#include "llvm/ADT/FloatingPointMode.h"
21#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/StringRef.h"
23#include "llvm/Frontend/Debug/Options.h"
24#include "llvm/MC/MCTargetOptions.h"
25#include "llvm/Option/Option.h"
26#include "llvm/Support/VersionTuple.h"
27#include "llvm/Target/TargetOptions.h"
28#include "llvm/TargetParser/Triple.h"
29#include <cassert>
30#include <climits>
31#include <memory>
32#include <optional>
33#include <string>
34#include <utility>
35
36namespace llvm {
37namespace opt {
38
39class Arg;
40class ArgList;
41class DerivedArgList;
42
43} // namespace opt
44namespace vfs {
45
46class FileSystem;
47
48} // namespace vfs
49} // namespace llvm
50
51namespace clang {
52
53class ObjCRuntime;
54
55namespace driver {
56
57class Driver;
58class InputInfo;
59class SanitizerArgs;
60class Tool;
61class XRayArgs;
62
63/// Helper structure used to pass information extracted from clang executable
64/// name such as `i686-linux-android-g++`.
66 /// Target part of the executable name, as `i686-linux-android`.
67 std::string TargetPrefix;
68
69 /// Driver mode part of the executable name, as `g++`.
70 std::string ModeSuffix;
71
72 /// Corresponding driver mode argument, as '--driver-mode=g++'
73 const char *DriverMode = nullptr;
74
75 /// True if TargetPrefix is recognized as a registered target name.
76 bool TargetIsValid = false;
77
78 ParsedClangName() = default;
79 ParsedClangName(std::string Suffix, const char *Mode)
80 : ModeSuffix(Suffix), DriverMode(Mode) {}
81 ParsedClangName(std::string Target, std::string Suffix, const char *Mode,
82 bool IsRegistered)
83 : TargetPrefix(Target), ModeSuffix(Suffix), DriverMode(Mode),
84 TargetIsValid(IsRegistered) {}
85
86 bool isEmpty() const {
87 return TargetPrefix.empty() && ModeSuffix.empty() && DriverMode == nullptr;
88 }
89};
90
91/// ToolChain - Access to tools for a single platform.
92class ToolChain {
93public:
95
99 };
100
104 };
105
110 };
111
112 enum class UnwindTableLevel {
113 None,
116 };
117
118 enum RTTIMode {
121 };
122
126 };
127
129 std::string Path;
133 };
134
136
137private:
139
140 const Driver &D;
141 llvm::Triple Triple;
142 const llvm::opt::ArgList &Args;
143
144 // We need to initialize CachedRTTIArg before CachedRTTIMode
145 const llvm::opt::Arg *const CachedRTTIArg;
146
147 const RTTIMode CachedRTTIMode;
148
149 const ExceptionsMode CachedExceptionsMode;
150
151 /// The list of toolchain specific path prefixes to search for libraries.
152 path_list LibraryPaths;
153
154 /// The list of toolchain specific path prefixes to search for files.
155 path_list FilePaths;
156
157 /// The list of toolchain specific path prefixes to search for programs.
158 path_list ProgramPaths;
159
160 mutable std::unique_ptr<Tool> Clang;
161 mutable std::unique_ptr<Tool> Flang;
162 mutable std::unique_ptr<Tool> Assemble;
163 mutable std::unique_ptr<Tool> Link;
164 mutable std::unique_ptr<Tool> StaticLibTool;
165 mutable std::unique_ptr<Tool> IfsMerge;
166 mutable std::unique_ptr<Tool> OffloadBundler;
167 mutable std::unique_ptr<Tool> OffloadPackager;
168 mutable std::unique_ptr<Tool> LinkerWrapper;
169
170 Tool *getClang() const;
171 Tool *getFlang() const;
172 Tool *getAssemble() const;
173 Tool *getLink() const;
174 Tool *getStaticLibTool() const;
175 Tool *getIfsMerge() const;
176 Tool *getClangAs() const;
177 Tool *getOffloadBundler() const;
178 Tool *getOffloadPackager() const;
179 Tool *getLinkerWrapper() const;
180
181 mutable bool SanitizerArgsChecked = false;
182 mutable std::unique_ptr<XRayArgs> XRayArguments;
183
184 /// The effective clang triple for the current Job.
185 mutable llvm::Triple EffectiveTriple;
186
187 /// Set the toolchain's effective clang triple.
188 void setEffectiveTriple(llvm::Triple ET) const {
189 EffectiveTriple = std::move(ET);
190 }
191
192 std::optional<std::string>
193 getFallbackAndroidTargetPath(StringRef BaseDir) const;
194
195 mutable std::optional<CXXStdlibType> cxxStdlibType;
196 mutable std::optional<RuntimeLibType> runtimeLibType;
197 mutable std::optional<UnwindLibType> unwindLibType;
198
199protected:
202
203 ToolChain(const Driver &D, const llvm::Triple &T,
204 const llvm::opt::ArgList &Args);
205
206 /// Executes the given \p Executable and returns the stdout.
208 executeToolChainProgram(StringRef Executable) const;
209
210 void setTripleEnvironment(llvm::Triple::EnvironmentType Env);
211
212 virtual Tool *buildAssembler() const;
213 virtual Tool *buildLinker() const;
214 virtual Tool *buildStaticLibTool() const;
215 virtual Tool *getTool(Action::ActionClass AC) const;
216
217 virtual std::string buildCompilerRTBasename(const llvm::opt::ArgList &Args,
218 StringRef Component,
220 bool AddArch) const;
221
222 /// Find the target-specific subdirectory for the current target triple under
223 /// \p BaseDir, doing fallback triple searches as necessary.
224 /// \return The subdirectory path if it exists.
225 std::optional<std::string> getTargetSubDirPath(StringRef BaseDir) const;
226
227 /// \name Utilities for implementing subclasses.
228 ///@{
229 static void addSystemInclude(const llvm::opt::ArgList &DriverArgs,
230 llvm::opt::ArgStringList &CC1Args,
231 const Twine &Path);
232 static void addExternCSystemInclude(const llvm::opt::ArgList &DriverArgs,
233 llvm::opt::ArgStringList &CC1Args,
234 const Twine &Path);
235 static void
236 addExternCSystemIncludeIfExists(const llvm::opt::ArgList &DriverArgs,
237 llvm::opt::ArgStringList &CC1Args,
238 const Twine &Path);
239 static void addSystemIncludes(const llvm::opt::ArgList &DriverArgs,
240 llvm::opt::ArgStringList &CC1Args,
241 ArrayRef<StringRef> Paths);
242
243 static std::string concat(StringRef Path, const Twine &A, const Twine &B = "",
244 const Twine &C = "", const Twine &D = "");
245 ///@}
246
247public:
248 virtual ~ToolChain();
249
250 // Accessors
251
252 const Driver &getDriver() const { return D; }
253 llvm::vfs::FileSystem &getVFS() const;
254 const llvm::Triple &getTriple() const { return Triple; }
255
256 /// Get the toolchain's aux triple, if it has one.
257 ///
258 /// Exactly what the aux triple represents depends on the toolchain, but for
259 /// example when compiling CUDA code for the GPU, the triple might be NVPTX,
260 /// while the aux triple is the host (CPU) toolchain, e.g. x86-linux-gnu.
261 virtual const llvm::Triple *getAuxTriple() const { return nullptr; }
262
263 /// Some toolchains need to modify the file name, for example to replace the
264 /// extension for object files with .cubin for OpenMP offloading to Nvidia
265 /// GPUs.
266 virtual std::string getInputFilename(const InputInfo &Input) const;
267
268 llvm::Triple::ArchType getArch() const { return Triple.getArch(); }
269 StringRef getArchName() const { return Triple.getArchName(); }
270 StringRef getPlatform() const { return Triple.getVendorName(); }
271 StringRef getOS() const { return Triple.getOSName(); }
272
273 /// Provide the default architecture name (as expected by -arch) for
274 /// this toolchain.
275 StringRef getDefaultUniversalArchName() const;
276
277 std::string getTripleString() const {
278 return Triple.getTriple();
279 }
280
281 /// Get the toolchain's effective clang triple.
282 const llvm::Triple &getEffectiveTriple() const {
283 assert(!EffectiveTriple.getTriple().empty() && "No effective triple");
284 return EffectiveTriple;
285 }
286
287 bool hasEffectiveTriple() const {
288 return !EffectiveTriple.getTriple().empty();
289 }
290
291 path_list &getLibraryPaths() { return LibraryPaths; }
292 const path_list &getLibraryPaths() const { return LibraryPaths; }
293
294 path_list &getFilePaths() { return FilePaths; }
295 const path_list &getFilePaths() const { return FilePaths; }
296
297 path_list &getProgramPaths() { return ProgramPaths; }
298 const path_list &getProgramPaths() const { return ProgramPaths; }
299
300 const MultilibSet &getMultilibs() const { return Multilibs; }
301
303 return SelectedMultilibs;
304 }
305
306 /// Get flags suitable for multilib selection, based on the provided clang
307 /// command line arguments. The command line arguments aren't suitable to be
308 /// used directly for multilib selection because they are not normalized and
309 /// normalization is a complex process. The result of this function is similar
310 /// to clang command line arguments except that the list of arguments is
311 /// incomplete. Only certain command line arguments are processed. If more
312 /// command line arguments are needed for multilib selection then this
313 /// function should be extended.
314 /// To allow users to find out what flags are returned, clang accepts a
315 /// -print-multi-flags-experimental argument.
316 Multilib::flags_list getMultilibFlags(const llvm::opt::ArgList &) const;
317
318 SanitizerArgs getSanitizerArgs(const llvm::opt::ArgList &JobArgs) const;
319
320 const XRayArgs& getXRayArgs() const;
321
322 // Returns the Arg * that explicitly turned on/off rtti, or nullptr.
323 const llvm::opt::Arg *getRTTIArg() const { return CachedRTTIArg; }
324
325 // Returns the RTTIMode for the toolchain with the current arguments.
326 RTTIMode getRTTIMode() const { return CachedRTTIMode; }
327
328 // Returns the ExceptionsMode for the toolchain with the current arguments.
329 ExceptionsMode getExceptionsMode() const { return CachedExceptionsMode; }
330
331 /// Return any implicit target and/or mode flag for an invocation of
332 /// the compiler driver as `ProgName`.
333 ///
334 /// For example, when called with i686-linux-android-g++, the first element
335 /// of the return value will be set to `"i686-linux-android"` and the second
336 /// will be set to "--driver-mode=g++"`.
337 /// It is OK if the target name is not registered. In this case the return
338 /// value contains false in the field TargetIsValid.
339 ///
340 /// \pre `llvm::InitializeAllTargets()` has been called.
341 /// \param ProgName The name the Clang driver was invoked with (from,
342 /// e.g., argv[0]).
343 /// \return A structure of type ParsedClangName that contains the executable
344 /// name parts.
345 static ParsedClangName getTargetAndModeFromProgramName(StringRef ProgName);
346
347 // Tool access.
348
349 /// TranslateArgs - Create a new derived argument list for any argument
350 /// translations this ToolChain may wish to perform, or 0 if no tool chain
351 /// specific translations are needed. If \p DeviceOffloadKind is specified
352 /// the translation specific for that offload kind is performed.
353 ///
354 /// \param BoundArch - The bound architecture name, or 0.
355 /// \param DeviceOffloadKind - The device offload kind used for the
356 /// translation.
357 virtual llvm::opt::DerivedArgList *
358 TranslateArgs(const llvm::opt::DerivedArgList &Args, StringRef BoundArch,
359 Action::OffloadKind DeviceOffloadKind) const {
360 return nullptr;
361 }
362
363 /// TranslateOpenMPTargetArgs - Create a new derived argument list for
364 /// that contains the OpenMP target specific flags passed via
365 /// -Xopenmp-target -opt=val OR -Xopenmp-target=<triple> -opt=val
366 virtual llvm::opt::DerivedArgList *TranslateOpenMPTargetArgs(
367 const llvm::opt::DerivedArgList &Args, bool SameTripleAsHost,
368 SmallVectorImpl<llvm::opt::Arg *> &AllocatedArgs) const;
369
370 /// Append the argument following \p A to \p DAL assuming \p A is an Xarch
371 /// argument. If \p AllocatedArgs is null pointer, synthesized arguments are
372 /// added to \p DAL, otherwise they are appended to \p AllocatedArgs.
373 virtual void TranslateXarchArgs(
374 const llvm::opt::DerivedArgList &Args, llvm::opt::Arg *&A,
375 llvm::opt::DerivedArgList *DAL,
376 SmallVectorImpl<llvm::opt::Arg *> *AllocatedArgs = nullptr) const;
377
378 /// Translate -Xarch_ arguments. If there are no such arguments, return
379 /// a null pointer, otherwise return a DerivedArgList containing the
380 /// translated arguments.
381 virtual llvm::opt::DerivedArgList *
382 TranslateXarchArgs(const llvm::opt::DerivedArgList &Args, StringRef BoundArch,
383 Action::OffloadKind DeviceOffloadKind,
384 SmallVectorImpl<llvm::opt::Arg *> *AllocatedArgs) const;
385
386 /// Choose a tool to use to handle the action \p JA.
387 ///
388 /// This can be overridden when a particular ToolChain needs to use
389 /// a compiler other than Clang.
390 virtual Tool *SelectTool(const JobAction &JA) const;
391
392 // Helper methods
393
394 std::string GetFilePath(const char *Name) const;
395 std::string GetProgramPath(const char *Name) const;
396
397 /// Returns the linker path, respecting the -fuse-ld= argument to determine
398 /// the linker suffix or name.
399 /// If LinkerIsLLD is non-nullptr, it is set to true if the returned linker
400 /// is LLD. If it's set, it can be assumed that the linker is LLD built
401 /// at the same revision as clang, and clang can make assumptions about
402 /// LLD's supported flags, error output, etc.
403 std::string GetLinkerPath(bool *LinkerIsLLD = nullptr) const;
404
405 /// Returns the linker path for emitting a static library.
406 std::string GetStaticLibToolPath() const;
407
408 /// Dispatch to the specific toolchain for verbose printing.
409 ///
410 /// This is used when handling the verbose option to print detailed,
411 /// toolchain-specific information useful for understanding the behavior of
412 /// the driver on a specific platform.
413 virtual void printVerboseInfo(raw_ostream &OS) const {}
414
415 // Platform defaults information
416
417 /// Returns true if the toolchain is targeting a non-native
418 /// architecture.
419 virtual bool isCrossCompiling() const;
420
421 /// HasNativeLTOLinker - Check whether the linker and related tools have
422 /// native LLVM support.
423 virtual bool HasNativeLLVMSupport() const;
424
425 /// LookupTypeForExtension - Return the default language type to use for the
426 /// given extension.
427 virtual types::ID LookupTypeForExtension(StringRef Ext) const;
428
429 /// IsBlocksDefault - Does this tool chain enable -fblocks by default.
430 virtual bool IsBlocksDefault() const { return false; }
431
432 /// IsIntegratedAssemblerDefault - Does this tool chain enable -integrated-as
433 /// by default.
434 virtual bool IsIntegratedAssemblerDefault() const { return true; }
435
436 /// IsIntegratedBackendDefault - Does this tool chain enable
437 /// -fintegrated-objemitter by default.
438 virtual bool IsIntegratedBackendDefault() const { return true; }
439
440 /// IsIntegratedBackendSupported - Does this tool chain support
441 /// -fintegrated-objemitter.
442 virtual bool IsIntegratedBackendSupported() const { return true; }
443
444 /// IsNonIntegratedBackendSupported - Does this tool chain support
445 /// -fno-integrated-objemitter.
446 virtual bool IsNonIntegratedBackendSupported() const { return false; }
447
448 /// Check if the toolchain should use the integrated assembler.
449 virtual bool useIntegratedAs() const;
450
451 /// Check if the toolchain should use the integrated backend.
452 virtual bool useIntegratedBackend() const;
453
454 /// Check if the toolchain should use AsmParser to parse inlineAsm when
455 /// integrated assembler is not default.
456 virtual bool parseInlineAsmUsingAsmParser() const { return false; }
457
458 /// IsMathErrnoDefault - Does this tool chain use -fmath-errno by default.
459 virtual bool IsMathErrnoDefault() const { return true; }
460
461 /// IsEncodeExtendedBlockSignatureDefault - Does this tool chain enable
462 /// -fencode-extended-block-signature by default.
463 virtual bool IsEncodeExtendedBlockSignatureDefault() const { return false; }
464
465 /// IsObjCNonFragileABIDefault - Does this tool chain set
466 /// -fobjc-nonfragile-abi by default.
467 virtual bool IsObjCNonFragileABIDefault() const { return false; }
468
469 /// UseObjCMixedDispatchDefault - When using non-legacy dispatch, should the
470 /// mixed dispatch method be used?
471 virtual bool UseObjCMixedDispatch() const { return false; }
472
473 /// Check whether to enable x86 relax relocations by default.
474 virtual bool useRelaxRelocations() const;
475
476 /// Check whether use IEEE binary128 as long double format by default.
477 bool defaultToIEEELongDouble() const;
478
479 /// GetDefaultStackProtectorLevel - Get the default stack protector level for
480 /// this tool chain.
482 GetDefaultStackProtectorLevel(bool KernelOrKext) const {
483 return LangOptions::SSPOff;
484 }
485
486 /// Get the default trivial automatic variable initialization.
490 }
491
492 /// GetDefaultLinker - Get the default linker to use.
493 virtual const char *getDefaultLinker() const { return "ld"; }
494
495 /// GetDefaultRuntimeLibType - Get the default runtime library variant to use.
498 }
499
502 }
503
505 return ToolChain::UNW_None;
506 }
507
508 virtual std::string getCompilerRTPath() const;
509
510 virtual std::string getCompilerRT(const llvm::opt::ArgList &Args,
511 StringRef Component,
513
514 const char *
515 getCompilerRTArgString(const llvm::opt::ArgList &Args, StringRef Component,
517
518 std::string getCompilerRTBasename(const llvm::opt::ArgList &Args,
519 StringRef Component,
521
522 // Returns the target specific runtime path if it exists.
523 std::optional<std::string> getRuntimePath() const;
524
525 // Returns target specific standard library path if it exists.
526 std::optional<std::string> getStdlibPath() const;
527
528 // Returns target specific standard library include path if it exists.
529 std::optional<std::string> getStdlibIncludePath() const;
530
531 // Returns <ResourceDir>/lib/<OSName>/<arch> or <ResourceDir>/lib/<triple>.
532 // This is used by runtimes (such as OpenMP) to find arch-specific libraries.
533 virtual path_list getArchSpecificLibPaths() const;
534
535 // Returns <OSname> part of above.
536 virtual StringRef getOSLibName() const;
537
538 /// needsProfileRT - returns true if instrumentation profile is on.
539 static bool needsProfileRT(const llvm::opt::ArgList &Args);
540
541 /// Returns true if gcov instrumentation (-fprofile-arcs or --coverage) is on.
542 static bool needsGCovInstrumentation(const llvm::opt::ArgList &Args);
543
544 /// How detailed should the unwind tables be by default.
545 virtual UnwindTableLevel
546 getDefaultUnwindTableLevel(const llvm::opt::ArgList &Args) const;
547
548 /// Test whether this toolchain supports outline atomics by default.
549 virtual bool
550 IsAArch64OutlineAtomicsDefault(const llvm::opt::ArgList &Args) const {
551 return false;
552 }
553
554 /// Test whether this toolchain defaults to PIC.
555 virtual bool isPICDefault() const = 0;
556
557 /// Test whether this toolchain defaults to PIE.
558 virtual bool isPIEDefault(const llvm::opt::ArgList &Args) const = 0;
559
560 /// Tests whether this toolchain forces its default for PIC, PIE or
561 /// non-PIC. If this returns true, any PIC related flags should be ignored
562 /// and instead the results of \c isPICDefault() and \c isPIEDefault(const
563 /// llvm::opt::ArgList &Args) are used exclusively.
564 virtual bool isPICDefaultForced() const = 0;
565
566 /// SupportsProfiling - Does this tool chain support -pg.
567 virtual bool SupportsProfiling() const { return true; }
568
569 /// Complain if this tool chain doesn't support Objective-C ARC.
570 virtual void CheckObjCARC() const {}
571
572 /// Get the default debug info format. Typically, this is DWARF.
573 virtual llvm::codegenoptions::DebugInfoFormat getDefaultDebugFormat() const {
574 return llvm::codegenoptions::DIF_DWARF;
575 }
576
577 /// UseDwarfDebugFlags - Embed the compile options to clang into the Dwarf
578 /// compile unit information.
579 virtual bool UseDwarfDebugFlags() const { return false; }
580
581 /// Add an additional -fdebug-prefix-map entry.
582 virtual std::string GetGlobalDebugPathRemapping() const { return {}; }
583
584 // Return the DWARF version to emit, in the absence of arguments
585 // to the contrary.
586 virtual unsigned GetDefaultDwarfVersion() const { return 5; }
587
588 // Some toolchains may have different restrictions on the DWARF version and
589 // may need to adjust it. E.g. NVPTX may need to enforce DWARF2 even when host
590 // compilation uses DWARF5.
591 virtual unsigned getMaxDwarfVersion() const { return UINT_MAX; }
592
593 // True if the driver should assume "-fstandalone-debug"
594 // in the absence of an option specifying otherwise,
595 // provided that debugging was requested in the first place.
596 // i.e. a value of 'true' does not imply that debugging is wanted.
597 virtual bool GetDefaultStandaloneDebug() const { return false; }
598
599 // Return the default debugger "tuning."
600 virtual llvm::DebuggerKind getDefaultDebuggerTuning() const {
601 return llvm::DebuggerKind::GDB;
602 }
603
604 /// Does this toolchain supports given debug info option or not.
605 virtual bool supportsDebugInfoOption(const llvm::opt::Arg *) const {
606 return true;
607 }
608
609 /// Adjust debug information kind considering all passed options.
610 virtual void
611 adjustDebugInfoKind(llvm::codegenoptions::DebugInfoKind &DebugInfoKind,
612 const llvm::opt::ArgList &Args) const {}
613
614 /// GetExceptionModel - Return the tool chain exception model.
615 virtual llvm::ExceptionHandling
616 GetExceptionModel(const llvm::opt::ArgList &Args) const;
617
618 /// SupportsEmbeddedBitcode - Does this tool chain support embedded bitcode.
619 virtual bool SupportsEmbeddedBitcode() const { return false; }
620
621 /// getThreadModel() - Which thread model does this target use?
622 virtual std::string getThreadModel() const { return "posix"; }
623
624 /// isThreadModelSupported() - Does this target support a thread model?
625 virtual bool isThreadModelSupported(const StringRef Model) const;
626
627 /// isBareMetal - Is this a bare metal target.
628 virtual bool isBareMetal() const { return false; }
629
630 virtual std::string getMultiarchTriple(const Driver &D,
631 const llvm::Triple &TargetTriple,
632 StringRef SysRoot) const {
633 return TargetTriple.str();
634 }
635
636 /// ComputeLLVMTriple - Return the LLVM target triple to use, after taking
637 /// command line arguments into account.
638 virtual std::string
639 ComputeLLVMTriple(const llvm::opt::ArgList &Args,
640 types::ID InputType = types::TY_INVALID) const;
641
642 /// ComputeEffectiveClangTriple - Return the Clang triple to use for this
643 /// target, which may take into account the command line arguments. For
644 /// example, on Darwin the -mmacos-version-min= command line argument (which
645 /// sets the deployment target) determines the version in the triple passed to
646 /// Clang.
647 virtual std::string ComputeEffectiveClangTriple(
648 const llvm::opt::ArgList &Args,
649 types::ID InputType = types::TY_INVALID) const;
650
651 /// getDefaultObjCRuntime - Return the default Objective-C runtime
652 /// for this platform.
653 ///
654 /// FIXME: this really belongs on some sort of DeploymentTarget abstraction
655 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
656
657 /// hasBlocksRuntime - Given that the user is compiling with
658 /// -fblocks, does this tool chain guarantee the existence of a
659 /// blocks runtime?
660 ///
661 /// FIXME: this really belongs on some sort of DeploymentTarget abstraction
662 virtual bool hasBlocksRuntime() const { return true; }
663
664 /// Return the sysroot, possibly searching for a default sysroot using
665 /// target-specific logic.
666 virtual std::string computeSysRoot() const;
667
668 /// Add the clang cc1 arguments for system include paths.
669 ///
670 /// This routine is responsible for adding the necessary cc1 arguments to
671 /// include headers from standard system header directories.
672 virtual void
673 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
674 llvm::opt::ArgStringList &CC1Args) const;
675
676 /// Add options that need to be passed to cc1 for this target.
677 virtual void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs,
678 llvm::opt::ArgStringList &CC1Args,
679 Action::OffloadKind DeviceOffloadKind) const;
680
681 /// Add options that need to be passed to cc1as for this target.
682 virtual void
683 addClangCC1ASTargetOptions(const llvm::opt::ArgList &Args,
684 llvm::opt::ArgStringList &CC1ASArgs) const;
685
686 /// Add warning options that need to be passed to cc1 for this target.
687 virtual void addClangWarningOptions(llvm::opt::ArgStringList &CC1Args) const;
688
689 // GetRuntimeLibType - Determine the runtime library type to use with the
690 // given compilation arguments.
691 virtual RuntimeLibType
692 GetRuntimeLibType(const llvm::opt::ArgList &Args) const;
693
694 // GetCXXStdlibType - Determine the C++ standard library type to use with the
695 // given compilation arguments.
696 virtual CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const;
697
698 // GetUnwindLibType - Determine the unwind library type to use with the
699 // given compilation arguments.
700 virtual UnwindLibType GetUnwindLibType(const llvm::opt::ArgList &Args) const;
701
702 // Detect the highest available version of libc++ in include path.
703 virtual std::string detectLibcxxVersion(StringRef IncludePath) const;
704
705 /// AddClangCXXStdlibIncludeArgs - Add the clang -cc1 level arguments to set
706 /// the include paths to use for the given C++ standard library type.
707 virtual void
708 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
709 llvm::opt::ArgStringList &CC1Args) const;
710
711 /// AddClangCXXStdlibIsystemArgs - Add the clang -cc1 level arguments to set
712 /// the specified include paths for the C++ standard library.
713 void AddClangCXXStdlibIsystemArgs(const llvm::opt::ArgList &DriverArgs,
714 llvm::opt::ArgStringList &CC1Args) const;
715
716 /// Returns if the C++ standard library should be linked in.
717 /// Note that e.g. -lm should still be linked even if this returns false.
718 bool ShouldLinkCXXStdlib(const llvm::opt::ArgList &Args) const;
719
720 /// AddCXXStdlibLibArgs - Add the system specific linker arguments to use
721 /// for the given C++ standard library type.
722 virtual void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
723 llvm::opt::ArgStringList &CmdArgs) const;
724
725 /// AddFilePathLibArgs - Add each thing in getFilePaths() as a "-L" option.
726 void AddFilePathLibArgs(const llvm::opt::ArgList &Args,
727 llvm::opt::ArgStringList &CmdArgs) const;
728
729 /// AddCCKextLibArgs - Add the system specific linker arguments to use
730 /// for kernel extensions (Darwin-specific).
731 virtual void AddCCKextLibArgs(const llvm::opt::ArgList &Args,
732 llvm::opt::ArgStringList &CmdArgs) const;
733
734 /// If a runtime library exists that sets global flags for unsafe floating
735 /// point math, return true.
736 ///
737 /// This checks for presence of the -Ofast, -ffast-math or -funsafe-math flags.
738 virtual bool isFastMathRuntimeAvailable(
739 const llvm::opt::ArgList &Args, std::string &Path) const;
740
741 /// AddFastMathRuntimeIfAvailable - If a runtime library exists that sets
742 /// global flags for unsafe floating point math, add it and return true.
743 ///
744 /// This checks for presence of the -Ofast, -ffast-math or -funsafe-math flags.
746 const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const;
747
748 /// getSystemGPUArchs - Use a tool to detect the user's availible GPUs.
750 getSystemGPUArchs(const llvm::opt::ArgList &Args) const;
751
752 /// addProfileRTLibs - When -fprofile-instr-profile is specified, try to pass
753 /// a suitable profile runtime library to the linker.
754 virtual void addProfileRTLibs(const llvm::opt::ArgList &Args,
755 llvm::opt::ArgStringList &CmdArgs) const;
756
757 /// Add arguments to use system-specific CUDA includes.
758 virtual void AddCudaIncludeArgs(const llvm::opt::ArgList &DriverArgs,
759 llvm::opt::ArgStringList &CC1Args) const;
760
761 /// Add arguments to use system-specific HIP includes.
762 virtual void AddHIPIncludeArgs(const llvm::opt::ArgList &DriverArgs,
763 llvm::opt::ArgStringList &CC1Args) const;
764
765 /// Add arguments to use MCU GCC toolchain includes.
766 virtual void AddIAMCUIncludeArgs(const llvm::opt::ArgList &DriverArgs,
767 llvm::opt::ArgStringList &CC1Args) const;
768
769 /// On Windows, returns the MSVC compatibility version.
770 virtual VersionTuple computeMSVCVersion(const Driver *D,
771 const llvm::opt::ArgList &Args) const;
772
773 /// Get paths for device libraries.
775 getDeviceLibs(const llvm::opt::ArgList &Args) const;
776
777 /// Add the system specific linker arguments to use
778 /// for the given HIP runtime library type.
779 virtual void AddHIPRuntimeLibArgs(const llvm::opt::ArgList &Args,
780 llvm::opt::ArgStringList &CmdArgs) const {}
781
782 /// Return sanitizers which are available in this toolchain.
784
785 /// Return sanitizers which are enabled by default.
787 return SanitizerMask();
788 }
789
790 /// Returns true when it's possible to split LTO unit to use whole
791 /// program devirtualization and CFI santiizers.
792 virtual bool canSplitThinLTOUnit() const { return true; }
793
794 /// Returns the output denormal handling type in the default floating point
795 /// environment for the given \p FPType if given. Otherwise, the default
796 /// assumed mode for any floating point type.
797 virtual llvm::DenormalMode getDefaultDenormalModeForType(
798 const llvm::opt::ArgList &DriverArgs, const JobAction &JA,
799 const llvm::fltSemantics *FPType = nullptr) const {
800 return llvm::DenormalMode::getIEEE();
801 }
802
803 // We want to expand the shortened versions of the triples passed in to
804 // the values used for the bitcode libraries.
805 static llvm::Triple getOpenMPTriple(StringRef TripleStr) {
806 llvm::Triple TT(TripleStr);
807 if (TT.getVendor() == llvm::Triple::UnknownVendor ||
808 TT.getOS() == llvm::Triple::UnknownOS) {
809 if (TT.getArch() == llvm::Triple::nvptx)
810 return llvm::Triple("nvptx-nvidia-cuda");
811 if (TT.getArch() == llvm::Triple::nvptx64)
812 return llvm::Triple("nvptx64-nvidia-cuda");
813 if (TT.getArch() == llvm::Triple::amdgcn)
814 return llvm::Triple("amdgcn-amd-amdhsa");
815 }
816 return TT;
817 }
818};
819
820/// Set a ToolChain's effective triple. Reset it when the registration object
821/// is destroyed.
823 const ToolChain &TC;
824
825public:
826 RegisterEffectiveTriple(const ToolChain &TC, llvm::Triple T) : TC(TC) {
827 TC.setEffectiveTriple(std::move(T));
828 }
829
830 ~RegisterEffectiveTriple() { TC.setEffectiveTriple(llvm::Triple()); }
831};
832
833} // namespace driver
834
835} // namespace clang
836
837#endif // LLVM_CLANG_DRIVER_TOOLCHAIN_H
const Decl * D
IndirectLocalPath & Path
const Environment & Env
Definition: HTMLLogger.cpp:148
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::LangOptions interface.
llvm::MachO::FileType FileType
Definition: MachO.h:46
llvm::MachO::Target Target
Definition: MachO.h:51
Defines the clang::SanitizerKind enum.
The basic abstraction for the target Objective-C runtime.
Definition: ObjCRuntime.h:28
The base class of the type hierarchy.
Definition: Type.h:1829
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:77
InputInfo - Wrapper for information about an input source.
Definition: InputInfo.h:22
See also MultilibSetBuilder for combining multilibs into a set.
Definition: Multilib.h:92
std::vector< std::string > flags_list
Definition: Multilib.h:34
Set a ToolChain's effective triple.
Definition: ToolChain.h:822
RegisterEffectiveTriple(const ToolChain &TC, llvm::Triple T)
Definition: ToolChain.h:826
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:1348
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:1090
virtual std::string GetGlobalDebugPathRemapping() const
Add an additional -fdebug-prefix-map entry.
Definition: ToolChain.h:582
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:1343
virtual void addClangWarningOptions(llvm::opt::ArgStringList &CC1Args) const
Add warning options that need to be passed to cc1 for this target.
Definition: ToolChain.cpp:1111
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:1209
virtual unsigned getMaxDwarfVersion() const
Definition: ToolChain.h:591
virtual void adjustDebugInfoKind(llvm::codegenoptions::DebugInfoKind &DebugInfoKind, const llvm::opt::ArgList &Args) const
Adjust debug information kind considering all passed options.
Definition: ToolChain.h:611
virtual std::string computeSysRoot() const
Return the sysroot, possibly searching for a default sysroot using target-specific logic.
Definition: ToolChain.cpp:1095
virtual bool useIntegratedAs() const
Check if the toolchain should use the integrated assembler.
Definition: ToolChain.cpp:157
virtual void AddHIPRuntimeLibArgs(const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CmdArgs) const
Add the system specific linker arguments to use for the given HIP runtime library type.
Definition: ToolChain.h:779
static llvm::Triple getOpenMPTriple(StringRef TripleStr)
Definition: ToolChain.h:805
virtual llvm::DenormalMode getDefaultDenormalModeForType(const llvm::opt::ArgList &DriverArgs, const JobAction &JA, const llvm::fltSemantics *FPType=nullptr) const
Returns the output denormal handling type in the default floating point environment for the given FPT...
Definition: ToolChain.h:797
const MultilibSet & getMultilibs() const
Definition: ToolChain.h:300
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:1494
std::optional< std::string > getStdlibPath() const
Definition: ToolChain.cpp:841
virtual unsigned GetDefaultDwarfVersion() const
Definition: ToolChain.h:586
virtual RuntimeLibType GetRuntimeLibType(const llvm::opt::ArgList &Args) const
Definition: ToolChain.cpp:1121
virtual UnwindTableLevel getDefaultUnwindTableLevel(const llvm::opt::ArgList &Args) const
How detailed should the unwind tables be by default.
Definition: ToolChain.cpp:485
const char * getCompilerRTArgString(const llvm::opt::ArgList &Args, StringRef Component, FileType Type=ToolChain::FT_Static) const
Definition: ToolChain.cpp:737
bool ShouldLinkCXXStdlib(const llvm::opt::ArgList &Args) const
Returns if the C++ standard library should be linked in.
Definition: ToolChain.cpp:1311
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:1224
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:480
virtual Tool * buildStaticLibTool() const
Definition: ToolChain.cpp:509
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:899
virtual llvm::codegenoptions::DebugInfoFormat getDefaultDebugFormat() const
Get the default debug info format. Typically, this is DWARF.
Definition: ToolChain.h:573
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:889
virtual bool supportsDebugInfoOption(const llvm::opt::Arg *) const
Does this toolchain supports given debug info option or not.
Definition: ToolChain.h:605
static bool needsProfileRT(const llvm::opt::ArgList &Args)
needsProfileRT - returns true if instrumentation profile is on.
Definition: ToolChain.cpp:869
StringRef getOS() const
Definition: ToolChain.h:271
virtual bool IsObjCNonFragileABIDefault() const
IsObjCNonFragileABIDefault - Does this tool chain set -fobjc-nonfragile-abi by default.
Definition: ToolChain.h:467
virtual bool isBareMetal() const
isBareMetal - Is this a bare metal target.
Definition: ToolChain.h:628
virtual bool isThreadModelSupported(const StringRef Model) const
isThreadModelSupported() - Does this target support a thread model?
Definition: ToolChain.cpp:1028
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:1256
static std::string concat(StringRef Path, const Twine &A, const Twine &B="", const Twine &C="", const Twine &D="")
Definition: ToolChain.cpp:1248
RTTIMode getRTTIMode() const
Definition: ToolChain.h:326
ExceptionsMode getExceptionsMode() const
Definition: ToolChain.h:329
llvm::vfs::FileSystem & getVFS() const
Definition: ToolChain.cpp:153
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:287
static bool needsGCovInstrumentation(const llvm::opt::ArgList &Args)
Returns true if gcov instrumentation (-fprofile-arcs or –coverage) is on.
Definition: ToolChain.cpp:883
virtual void printVerboseInfo(raw_ostream &OS) const
Dispatch to the specific toolchain for verbose printing.
Definition: ToolChain.h:413
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:1041
const path_list & getProgramPaths() const
Definition: ToolChain.h:298
const XRayArgs & getXRayArgs() const
Definition: ToolChain.cpp:339
virtual llvm::DebuggerKind getDefaultDebuggerTuning() const
Definition: ToolChain.h:600
virtual bool isPIEDefault(const llvm::opt::ArgList &Args) const =0
Test whether this toolchain defaults to PIE.
virtual bool SupportsEmbeddedBitcode() const
SupportsEmbeddedBitcode - Does this tool chain support embedded bitcode.
Definition: ToolChain.h:619
virtual bool isPICDefaultForced() const =0
Tests whether this toolchain forces its default for PIC, PIE or non-PIC.
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:1293
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:1384
path_list & getProgramPaths()
Definition: ToolChain.h:297
static void addExternCSystemIncludeIfExists(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, const Twine &Path)
Definition: ToolChain.cpp:1231
const path_list & getFilePaths() const
Definition: ToolChain.h:295
bool hasEffectiveTriple() const
Definition: ToolChain.h:287
virtual llvm::opt::DerivedArgList * TranslateArgs(const llvm::opt::DerivedArgList &Args, StringRef BoundArch, Action::OffloadKind DeviceOffloadKind) const
TranslateArgs - Create a new derived argument list for any argument translations this ToolChain may w...
Definition: ToolChain.h:358
virtual bool useIntegratedBackend() const
Check if the toolchain should use the integrated backend.
Definition: ToolChain.cpp:163
const llvm::Triple & getEffectiveTriple() const
Get the toolchain's effective clang triple.
Definition: ToolChain.h:282
virtual LangOptions::TrivialAutoVarInitKind GetDefaultTrivialAutoVarInit() const
Get the default trivial automatic variable initialization.
Definition: ToolChain.h:488
std::string GetStaticLibToolPath() const
Returns the linker path for emitting a static library.
Definition: ToolChain.cpp:979
virtual llvm::ExceptionHandling GetExceptionModel(const llvm::opt::ArgList &Args) const
GetExceptionModel - Return the tool chain exception model.
Definition: ToolChain.cpp:1024
virtual bool IsMathErrnoDefault() const
IsMathErrnoDefault - Does this tool chain use -fmath-errno by default.
Definition: ToolChain.h:459
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:1317
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:431
virtual bool IsIntegratedBackendDefault() const
IsIntegratedBackendDefault - Does this tool chain enable -fintegrated-objemitter by default.
Definition: ToolChain.h:438
virtual std::string getThreadModel() const
getThreadModel() - Which thread model does this target use?
Definition: ToolChain.h:622
virtual const char * getDefaultLinker() const
GetDefaultLinker - Get the default linker to use.
Definition: ToolChain.h:493
virtual bool GetDefaultStandaloneDebug() const
Definition: ToolChain.h:597
virtual Tool * buildLinker() const
Definition: ToolChain.cpp:505
const llvm::opt::Arg * getRTTIArg() const
Definition: ToolChain.h:323
const path_list & getLibraryPaths() const
Definition: ToolChain.h:292
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:195
virtual types::ID LookupTypeForExtension(StringRef Ext) const
LookupTypeForExtension - Return the default language type to use for the given extension.
Definition: ToolChain.cpp:986
virtual bool HasNativeLLVMSupport() const
HasNativeLTOLinker - Check whether the linker and related tools have native LLVM support.
Definition: ToolChain.cpp:998
virtual llvm::SmallVector< BitCodeLibraryInfo, 12 > getDeviceLibs(const llvm::opt::ArgList &Args) const
Get paths for device libraries.
Definition: ToolChain.cpp:1433
const llvm::SmallVector< Multilib > & getSelectedMultilibs() const
Definition: ToolChain.h:302
virtual UnwindLibType GetUnwindLibType(const llvm::opt::ArgList &Args) const
Definition: ToolChain.cpp:1147
std::optional< std::string > getTargetSubDirPath(StringRef BaseDir) const
Find the target-specific subdirectory for the current target triple under BaseDir,...
Definition: ToolChain.cpp:788
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:1113
virtual void AddCudaIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
Add arguments to use system-specific CUDA includes.
Definition: ToolChain.cpp:1426
virtual std::string getCompilerRTPath() const
Definition: ToolChain.cpp:650
virtual std::string buildCompilerRTBasename(const llvm::opt::ArgList &Args, StringRef Component, FileType Type, bool AddArch) const
Definition: ToolChain.cpp:672
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:907
virtual std::string getCompilerRT(const llvm::opt::ArgList &Args, StringRef Component, FileType Type=ToolChain::FT_Static) const
Definition: ToolChain.cpp:706
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:1396
std::string GetProgramPath(const char *Name) const
Definition: ToolChain.cpp:903
virtual LangOptions::StackProtectorMode GetDefaultStackProtectorLevel(bool KernelOrKext) const
GetDefaultStackProtectorLevel - Get the default stack protector level for this tool chain.
Definition: ToolChain.h:482
virtual bool hasBlocksRuntime() const
hasBlocksRuntime - Given that the user is compiling with -fblocks, does this tool chain guarantee the...
Definition: ToolChain.h:662
virtual bool UseDwarfDebugFlags() const
UseDwarfDebugFlags - Embed the compile options to clang into the Dwarf compile unit information.
Definition: ToolChain.h:579
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:1239
virtual bool SupportsProfiling() const
SupportsProfiling - Does this tool chain support -pg.
Definition: ToolChain.h:567
virtual void AddHIPIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
Add arguments to use system-specific HIP includes.
Definition: ToolChain.cpp:1429
virtual bool canSplitThinLTOUnit() const
Returns true when it's possible to split LTO unit to use whole program devirtualization and CFI santi...
Definition: ToolChain.h:792
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:1279
virtual VersionTuple computeMSVCVersion(const Driver *D, const llvm::opt::ArgList &Args) const
On Windows, returns the MSVC compatibility version.
Definition: ToolChain.cpp:1454
virtual StringRef getOSLibName() const
Definition: ToolChain.cpp:630
virtual bool UseObjCMixedDispatch() const
UseObjCMixedDispatchDefault - When using non-legacy dispatch, should the mixed dispatch method be use...
Definition: ToolChain.h:471
virtual void AddIAMCUIncludeArgs(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const
Add arguments to use MCU GCC toolchain includes.
Definition: ToolChain.cpp:1437
virtual CXXStdlibType GetDefaultCXXStdlibType() const
Definition: ToolChain.h:500
std::optional< std::string > getStdlibIncludePath() const
Definition: ToolChain.cpp:847
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:1336
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:455
virtual Tool * buildAssembler() const
Definition: ToolChain.cpp:501
void setTripleEnvironment(llvm::Triple::EnvironmentType Env)
Definition: ToolChain.cpp:145
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:1108
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:333
virtual CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const
Definition: ToolChain.cpp:1183
llvm::SmallVector< Multilib > SelectedMultilibs
Definition: ToolChain.h:201
virtual void CheckObjCARC() const
Complain if this tool chain doesn't support Objective-C ARC.
Definition: ToolChain.h:570
virtual bool IsAArch64OutlineAtomicsDefault(const llvm::opt::ArgList &Args) const
Test whether this toolchain supports outline atomics by default.
Definition: ToolChain.h:550
llvm::Expected< std::unique_ptr< llvm::MemoryBuffer > > executeToolChainProgram(StringRef Executable) const
Executes the given Executable and returns the stdout.
Definition: ToolChain.cpp:110
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:1104
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:1099
virtual UnwindLibType GetDefaultUnwindLibType() const
Definition: ToolChain.h:504
std::optional< std::string > getRuntimePath() const
Definition: ToolChain.cpp:829
virtual Tool * getTool(Action::ActionClass AC) const
Definition: ToolChain.cpp:561
virtual bool IsEncodeExtendedBlockSignatureDefault() const
IsEncodeExtendedBlockSignatureDefault - Does this tool chain enable -fencode-extended-block-signature...
Definition: ToolChain.h:463
StringRef getPlatform() const
Definition: ToolChain.h:270
virtual bool IsBlocksDefault() const
IsBlocksDefault - Does this tool chain enable -fblocks by default.
Definition: ToolChain.h:430
virtual SanitizerMask getSupportedSanitizers() const
Return sanitizers which are available in this toolchain.
Definition: ToolChain.cpp:1400
virtual path_list getArchSpecificLibPaths() const
Definition: ToolChain.cpp:853
virtual std::string getMultiarchTriple(const Driver &D, const llvm::Triple &TargetTriple, StringRef SysRoot) const
Definition: ToolChain.h:630
virtual bool isCrossCompiling() const
Returns true if the toolchain is targeting a non-native architecture.
Definition: ToolChain.cpp:1002
std::string getCompilerRTBasename(const llvm::opt::ArgList &Args, StringRef Component, FileType Type=ToolChain::FT_Static) const
Definition: ToolChain.cpp:665
virtual bool IsNonIntegratedBackendSupported() const
IsNonIntegratedBackendSupported - Does this tool chain support -fno-integrated-objemitter.
Definition: ToolChain.h:446
virtual const llvm::Triple * getAuxTriple() const
Get the toolchain's aux triple, if it has one.
Definition: ToolChain.h:261
virtual SanitizerMask getDefaultSanitizers() const
Return sanitizers which are enabled by default.
Definition: ToolChain.h:786
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:1569
virtual bool useRelaxRelocations() const
Check whether to enable x86 relax relocations by default.
Definition: ToolChain.cpp:191
virtual bool isPICDefault() const =0
Test whether this toolchain defaults to PIC.
StringRef getArchName() const
Definition: ToolChain.h:269
virtual bool parseInlineAsmUsingAsmParser() const
Check if the toolchain should use AsmParser to parse inlineAsm when integrated assembler is not defau...
Definition: ToolChain.h:456
SmallVector< std::string, 16 > path_list
Definition: ToolChain.h:94
virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const
getDefaultObjCRuntime - Return the default Objective-C runtime for this platform.
Definition: ToolChain.cpp:1018
Tool - Information on a specific compilation tool.
Definition: Tool.h:32
#define UINT_MAX
Definition: limits.h:64
The JSON file list parser is used to communicate input to InstallAPI.
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
ParsedClangName(std::string Suffix, const char *Mode)
Definition: ToolChain.h:79
const char * DriverMode
Corresponding driver mode argument, as '–driver-mode=g++'.
Definition: ToolChain.h:73
std::string ModeSuffix
Driver mode part of the executable name, as g++.
Definition: ToolChain.h:70
std::string TargetPrefix
Target part of the executable name, as i686-linux-android.
Definition: ToolChain.h:67
bool TargetIsValid
True if TargetPrefix is recognized as a registered target name.
Definition: ToolChain.h:76
ParsedClangName(std::string Target, std::string Suffix, const char *Mode, bool IsRegistered)
Definition: ToolChain.h:81
BitCodeLibraryInfo(StringRef Path, bool ShouldInternalize=true)
Definition: ToolChain.h:131