14#ifndef LLVM_CLANG_BASIC_TARGETINFO_H
15#define LLVM_CLANG_BASIC_TARGETINFO_H
25#include "llvm/ADT/APFloat.h"
26#include "llvm/ADT/APInt.h"
27#include "llvm/ADT/APSInt.h"
28#include "llvm/ADT/ArrayRef.h"
29#include "llvm/ADT/IntrusiveRefCntPtr.h"
30#include "llvm/ADT/SmallSet.h"
31#include "llvm/ADT/StringMap.h"
32#include "llvm/ADT/StringRef.h"
33#include "llvm/ADT/StringSet.h"
34#include "llvm/Frontend/OpenMP/OMPGridValues.h"
35#include "llvm/IR/DerivedTypes.h"
36#include "llvm/Support/DataTypes.h"
37#include "llvm/Support/Error.h"
38#include "llvm/Support/VersionTuple.h"
39#include "llvm/TargetParser/Triple.h"
51class DiagnosticsEngine;
70namespace Builtin {
struct Info; }
80 LLVM_MARK_AS_BITMASK_ENUM(
Ibm128)
165 LLVM_PREFERRED_TYPE(
bool)
173 LLVM_PREFERRED_TYPE(
bool)
182 LLVM_PREFERRED_TYPE(
bool)
187 LLVM_PREFERRED_TYPE(
bool)
191 LLVM_PREFERRED_TYPE(
bool)
219 std::shared_ptr<TargetOptions> TargetOpts;
253 LLVM_PREFERRED_TYPE(
bool)
257 LLVM_PREFERRED_TYPE(
bool)
258 unsigned ComplexLongDoubleUsesFP2Ret : 1;
260 LLVM_PREFERRED_TYPE(
bool)
261 unsigned HasBuiltinMSVaList : 1;
263 LLVM_PREFERRED_TYPE(
bool)
264 unsigned IsRenderScriptTarget : 1;
266 LLVM_PREFERRED_TYPE(
bool)
267 unsigned HasAArch64SVETypes : 1;
269 LLVM_PREFERRED_TYPE(
bool)
270 unsigned HasRISCVVTypes : 1;
272 LLVM_PREFERRED_TYPE(
bool)
273 unsigned AllowAMDGPUUnsafeFPAtomics : 1;
275 LLVM_PREFERRED_TYPE(
bool)
276 unsigned HasUnalignedAccess : 1;
278 unsigned ARMCDECoprocMask : 8;
280 unsigned MaxOpenCLWorkGroupSize;
282 std::optional<
unsigned> MaxBitIntWidth;
284 std::optional<
llvm::Triple> DarwinTargetVariantTriple;
291 void resetDataLayout(StringRef DL, const
char *UserLabelPrefix = "");
297 llvm::StringSet<> ReadOnlyFeatures;
313 assert(TargetOpts &&
"Missing target options");
321 CharPtrBuiltinVaList = 0,
380 case UnsignedLongLong:
381 return SignedLongLong;
383 llvm_unreachable(
"Invalid SizeType");
388 return getCorrespondingUnsignedType(IntMaxType);
391 return AddrSpace == LangAS::Default ? PtrDiffType
392 : getPtrDiffTypeV(AddrSpace);
395 return getCorrespondingUnsignedType(getPtrDiffType(AddrSpace));
399 return getCorrespondingUnsignedType(IntPtrType);
407 return getCorrespondingUnsignedType(Int64Type);
411 return getCorrespondingUnsignedType(Int16Type);
421 return UnsignedShort;
427 return UnsignedLongLong;
429 llvm_unreachable(
"Unexpected signed integer type");
438 return PaddingOnUnsignedFixedPoint;
444 unsigned getTypeWidth(IntType T)
const;
447 virtual IntType getIntTypeByWidth(
unsigned BitWidth,
bool IsSigned)
const;
450 virtual IntType getLeastIntTypeByWidth(
unsigned BitWidth,
451 bool IsSigned)
const;
465 unsigned getTypeAlign(IntType T)
const;
468 static bool isTypeSigned(IntType T);
473 return AddrSpace == LangAS::Default ? PointerWidth
474 : getPointerWidthV(AddrSpace);
477 return AddrSpace == LangAS::Default ? PointerAlign
478 : getPointerAlignV(AddrSpace);
528 return BitIntMaxAlign.value_or(LongLongAlign);
534 return llvm::alignTo(NumBits, getBitIntAlign(NumBits));
537 return std::clamp<unsigned>(llvm::PowerOf2Ceil(NumBits),
getCharWidth(),
538 getBitIntMaxAlign());
575 return ShortAccumWidth - ShortAccumScale - 1;
587 return LongAccumWidth - LongAccumScale - 1;
593 return PaddingOnUnsignedFixedPoint ? ShortAccumScale : ShortAccumScale + 1;
596 return PaddingOnUnsignedFixedPoint
597 ? getShortAccumIBits()
598 : ShortAccumWidth - getUnsignedShortAccumScale();
604 return PaddingOnUnsignedFixedPoint ? AccumScale : AccumScale + 1;
607 return PaddingOnUnsignedFixedPoint ? getAccumIBits()
608 : AccumWidth - getUnsignedAccumScale();
614 return PaddingOnUnsignedFixedPoint ? LongAccumScale : LongAccumScale + 1;
617 return PaddingOnUnsignedFixedPoint
618 ? getLongAccumIBits()
619 : LongAccumWidth - getUnsignedLongAccumScale();
637 return PaddingOnUnsignedFixedPoint ? getShortFractScale()
638 : getShortFractScale() + 1;
644 return PaddingOnUnsignedFixedPoint ? getFractScale() : getFractScale() + 1;
650 return PaddingOnUnsignedFixedPoint ? getLongFractScale()
651 : getLongFractScale() + 1;
656 return (getPointerWidth(LangAS::Default) >= 64) ||
657 getTargetOpts().ForceEnableInt128;
675 return std::min<size_t>(*MaxBitIntWidth, llvm::IntegerType::MAX_INT_BITS);
700 return HasBFloat16 || HasFullBFloat16;
728 return DefaultAlignForAttributeAligned;
736 return MinGlobalAlign;
743 return NewAlign ? NewAlign : std::max(LongDoubleAlign, LongLongAlign);
786 return *LongDoubleFormat;
794 return *Float128Format;
811 llvm_unreachable(
"ibm128 not implemented on this target");
819 return LangOptions::FPEvalMethodKind::FEM_Source;
841 uint64_t AlignmentInBits)
const {
842 return AtomicSizeInBits <= AlignmentInBits &&
843 AtomicSizeInBits <= getMaxAtomicInlineWidth() &&
845 llvm::isPowerOf2_64(AtomicSizeInBits /
getCharWidth()));
865 return getDefaultAlignForAttributeAligned();
870 return getTypeWidth(IntMaxType);
875 return getPointerWidth(LangAS::Default);
895 return hasUnalignedAccess();
915 return UseSignedCharForObjCBool;
918 UseSignedCharForObjCBool =
false;
924 return UseBitFieldTypeAlignment;
930 return UseZeroLengthBitfieldAlignment;
936 return UseLeadingZeroLengthBitfield;
942 return ZeroLengthBitfieldBoundary;
952 return UseExplicitBitFieldAlignment;
957 return HasAlignMac68kSupport;
963 static const char *getTypeName(IntType T);
968 const char *getTypeConstantSuffix(IntType T)
const;
974 static const char *getTypeFormatModifier(IntType T);
985 return ComplexLongDoubleUsesFP2Ret;
999 return UseAddrSpaceMapMangling;
1016 virtual std::optional<std::pair<unsigned, unsigned>>
1018 return std::nullopt;
1058 bool isValidClobber(StringRef Name)
const;
1064 virtual bool isValidGCCRegisterName(StringRef Name)
const;
1071 StringRef getNormalizedGCCRegisterName(StringRef Name,
1072 bool ReturnCanonical =
false)
const;
1090 CI_AllowsMemory = 0x01,
1091 CI_AllowsRegister = 0x02,
1092 CI_ReadWrite = 0x04,
1093 CI_HasMatchingInput = 0x08,
1094 CI_ImmediateConstant = 0x10,
1095 CI_EarlyClobber = 0x20,
1110 : Flags(0), TiedOperand(-1), ConstraintStr(ConstraintStr.str()),
1112 ImmRange.Min = ImmRange.Max = 0;
1113 ImmRange.isConstrained =
false;
1117 const std::string &
getName()
const {
return Name; }
1134 assert(hasTiedOperand() &&
"Has no tied operand!");
1135 return (
unsigned)TiedOperand;
1139 return (Flags & CI_ImmediateConstant) != 0;
1142 if (!ImmSet.empty())
1143 return Value.isSignedIntN(32) && ImmSet.contains(
Value.getZExtValue());
1144 return !ImmRange.isConstrained ||
1145 (
Value.sge(ImmRange.Min) &&
Value.sle(ImmRange.Max));
1154 Flags |= CI_ImmediateConstant;
1157 ImmRange.isConstrained =
true;
1160 Flags |= CI_ImmediateConstant;
1161 for (
int Exact : Exacts)
1162 ImmSet.insert(Exact);
1165 Flags |= CI_ImmediateConstant;
1166 ImmSet.insert(Exact);
1169 Flags |= CI_ImmediateConstant;
1178 Flags = Output.
Flags;
1192 bool &HasSizeMismatch)
const {
1193 HasSizeMismatch =
false;
1200 bool validateOutputConstraint(ConstraintInfo &Info)
const;
1202 ConstraintInfo &info)
const;
1219 std::string &)
const {
1226 bool resolveSymbolicName(
const char *&Name,
1228 unsigned &Index)
const;
1235 if (*Constraint ==
'p')
1236 return std::string(
"r");
1237 return std::string(1, *Constraint);
1243 return std::nullopt;
1262 return std::nullopt;
1266 assert(!DataLayoutString.empty() &&
"Uninitialized DataLayout!");
1267 return DataLayoutString.c_str();
1271 const char *
const Aliases[5];
1276 const char *
const Names[5];
1295 return getTriple().isWindowsMSVCEnvironment() ||
1296 getTriple().isWindowsItaniumEnvironment() || getTriple().isPS();
1301 return getTriple().isPS() ||
1304 (getTriple().isWindowsItaniumEnvironment() &&
1305 getTriple().getVendor() == llvm::Triple::SCEI);
1319 virtual bool initFeatureMap(llvm::StringMap<bool> &Features,
1321 const std::vector<std::string> &FeatureVec)
const;
1324 virtual StringRef
getABI()
const {
return StringRef(); }
1334 virtual bool setCPU(
const std::string &Name) {
1343 fillValidCPUList(Values);
1354 return isValidCPUName(Name);
1367 virtual bool setABI(
const std::string &Name) {
1380 StringRef Name)
const {
1381 return Features.lookup(Name);
1388 bool Enabled)
const {
1389 Features[Name] = Enabled;
1412 switch (SignReturnAddr) {
1413 case LangOptions::SignReturnAddressScopeKind::None:
1415 case LangOptions::SignReturnAddressScopeKind::NonLeaf:
1417 case LangOptions::SignReturnAddressScopeKind::All:
1420 llvm_unreachable(
"Unexpected SignReturnAddressScopeKind");
1425 case LangOptions::SignReturnAddressKeyKind::AKey:
1427 case LangOptions::SignReturnAddressKeyKind::BKey:
1430 llvm_unreachable(
"Unexpected SignReturnAddressKeyKind");
1435 SignKey(
LangOptions::SignReturnAddressKeyKind::AKey),
1436 BranchTargetEnforcement(
false), BranchProtectionPAuthLR(
false),
1437 GuardedControlStack(
false) {}
1441 LangOpts.hasSignReturnAddress()
1442 ? (LangOpts.isSignReturnAddressScopeAll()
1443 ? LangOptions::SignReturnAddressScopeKind::All
1444 : LangOptions::SignReturnAddressScopeKind::NonLeaf)
1445 : LangOptions::SignReturnAddressScopeKind::None;
1446 SignKey = LangOpts.isSignReturnAddressWithAKey()
1447 ? LangOptions::SignReturnAddressKeyKind::AKey
1448 : LangOptions::SignReturnAddressKeyKind::BKey;
1449 BranchTargetEnforcement = LangOpts.BranchTargetEnforcement;
1450 BranchProtectionPAuthLR = LangOpts.BranchProtectionPAuthLR;
1451 GuardedControlStack = LangOpts.GuardedControlStack;
1465 StringRef &Err)
const {
1493 return ReadOnlyFeatures.count(Feature);
1499 return getTriple().isX86() || getTriple().isAArch64();
1504 if (getTriple().isOSBinFormatMachO())
1506 return getTriple().isOSBinFormatELF() &&
1507 ((getTriple().isOSLinux() && !getTriple().isMusl()) ||
1508 getTriple().isOSFreeBSD());
1544 "cpu_specific Multiversioning not implemented on this target");
1551 "cpu_specific Multiversioning not implemented on this target");
1560 "cpu_specific Multiversioning not implemented on this target");
1566 return std::nullopt;
1571 assert(RegParmMax < 7 &&
"RegParmMax value is larger than AST can handle");
1577 return TLSSupported;
1591 return getTriple().isOSWindows() &&
1592 (getTriple().isX86() ||
1593 getTriple().getArch() == llvm::Triple::aarch64);
1603 return NoAsmVariants;
1623 return getAddressSpaceMap()[(
unsigned)AS];
1629 virtual bool validatePointerAuthKey(
const llvm::APSInt &value)
const;
1648 return LangAS::Default;
1654 llvm_unreachable(
"getGridValue not implemented on this target");
1697 return CCCR_Warning;
1709 virtual CallingConvKind getCallingConvKind(
bool ClangABICompat4)
const;
1717 virtual bool areDefaultedSMFStillPOD(
const LangOptions&)
const;
1743#define OPENCLEXTNAME(Ext) \
1744 setFeatureEnabled(getTargetOpts().OpenCLFeaturesMap, #Ext, V);
1745#include "clang/Basic/OpenCLExtensions.def"
1750 for (
const auto &Ext : getTargetOpts().OpenCLExtensionsAsWritten) {
1751 bool IsPrefixed = (Ext[0] ==
'+' || Ext[0] ==
'-');
1752 std::string Name = IsPrefixed ? Ext.substr(1) : Ext;
1753 bool V = IsPrefixed ? Ext[0] ==
'+' :
true;
1755 if (Name ==
"all") {
1756 supportAllOpenCLOpts(
V);
1760 getTargetOpts().OpenCLFeaturesMap[Name] =
V;
1766 return getTargetOpts().OpenCLFeaturesMap;
1771 return getTargetOpts().OpenCLFeaturesMap;
1790 return std::nullopt;
1796 return getTargetOpts().SDKVersion;
1806 virtual bool validateOpenCLTarget(
const LangOptions &Opts,
1817 return DarwinTargetVariantTriple ? &*DarwinTargetVariantTriple :
nullptr;
1823 return !getTargetOpts().DarwinTargetVariantSDKVersion.empty()
1824 ? getTargetOpts().DarwinTargetVariantSDKVersion
1825 : std::optional<VersionTuple>();
1837 return std::make_pair(64, 64);
1844 return PointerWidth;
1847 return PointerAlign;
1855 return std::nullopt;
1861 void CheckFixedPointBits()
const;
Provides definitions for the various language-specific address spaces.
Provides LLVM's BitmaskEnum facility to enumeration types declared in namespace clang.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::LangOptions interface.
static unsigned getCharWidth(tok::TokenKind kind, const TargetInfo &Target)
Defines various enumerations that describe declaration and type specifiers.
Defines the TargetCXXABI class, which abstracts details of the C++ ABI that we're targeting.
Defines the clang::TargetOptions class.
Concrete class used by the front-end to report problems and issues.
SignReturnAddressScopeKind
FPEvalMethodKind
Possible float expression evaluation method choices.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
The basic abstraction for the target C++ ABI.
LangOptions::SignReturnAddressScopeKind SignReturnAddr
const char * getSignKeyStr() const
BranchProtectionInfo(const LangOptions &LangOpts)
LangOptions::SignReturnAddressKeyKind SignKey
bool BranchProtectionPAuthLR
bool BranchTargetEnforcement
const char * getSignReturnAddrStr() const
Exposes information about the current target.
const LangASMap & getAddressSpaceMap() const
unsigned getNewAlign() const
Return the largest alignment for which a suitably-sized allocation with '::operator new(size_t)' is g...
virtual bool supportsCpuSupports() const
unsigned getUnsignedLongFractScale() const
getUnsignedLongFractScale - Return the number of fractional bits in a 'unsigned long _Fract' type.
virtual bool setCPU(const std::string &Name)
Target the specified CPU.
IntType getUnsignedPtrDiffType(LangAS AddrSpace) const
virtual std::optional< unsigned > getDWARFAddressSpace(unsigned AddressSpace) const
virtual std::optional< std::string > handleAsmEscapedChar(char C) const
Replace some escaped characters with another string based on target-specific rules.
unsigned getLongFractAlign() const
virtual bool validateCpuIs(StringRef Name) const
virtual bool hasLegalHalfType() const
Determine whether _Float16 is supported on this target.
virtual bool hasLongDoubleType() const
Determine whether the long double type is supported on this target.
unsigned getShortAccumAlign() const
virtual bool supportsCpuInit() const
virtual unsigned getExnObjectAlignment() const
Return the alignment (in bits) of the thrown exception object.
virtual bool hasBitIntType() const
Determine whether the _BitInt type is supported on this target.
virtual bool hasFullBFloat16Type() const
Determine whether the BFloat type is fully supported on this target, i.e arithemtic operations.
unsigned getLargeArrayAlign() const
unsigned getIbm128Align() const
const char * getMCountName() const
Returns the name of the mcount instrumentation function.
virtual std::optional< std::string > getTargetID() const
Returns the target ID if supported.
unsigned getShortWidth() const
Return the size of 'signed short' and 'unsigned short' for this target, in bits.
unsigned getUnsignedAccumScale() const
getUnsignedAccumScale/IBits - Return the number of fractional/integral bits in a 'unsigned _Accum' ty...
unsigned getIntAlign() const
virtual ArrayRef< AddlRegName > getGCCAddlRegNames() const
unsigned getUnsignedAccumIBits() const
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
virtual const char * getFloat128Mangling() const
Return the mangled code of __float128.
unsigned getAccumWidth() const
getAccumWidth/Align - Return the size of 'signed _Accum' and 'unsigned _Accum' for this target,...
IntType getUIntPtrType() const
bool useLeadingZeroLengthBitfield() const
Check whether zero length bitfield alignment is respected if they are leading members.
const LangASMap * AddrSpaceMap
const char * UserLabelPrefix
IntType getInt64Type() const
unsigned getMaxAtomicInlineWidth() const
Return the maximum width lock-free atomic operation which can be inlined given the supported features...
virtual bool supportSourceEvalMethod() const
unsigned getUnsignedFractScale() const
getUnsignedFractScale - Return the number of fractional bits in a 'unsigned _Fract' type.
bool hasAlignMac68kSupport() const
Check whether this target support '#pragma options align=mac68k'.
virtual void getCPUSpecificCPUDispatchFeatures(StringRef Name, llvm::SmallVectorImpl< StringRef > &Features) const
unsigned getWCharAlign() const
virtual enum IntType getPtrDiffTypeV(LangAS AddrSpace) const
unsigned getLongAlign() const
virtual bool isCLZForZeroUndef() const
The __builtin_clz* and __builtin_ctz* built-in functions are specified to have undefined results for ...
virtual LangAS getCUDABuiltinAddressSpace(unsigned AS) const
Map from the address space field in builtin description strings to the language address space.
virtual LangAS getOpenCLBuiltinAddressSpace(unsigned AS) const
Map from the address space field in builtin description strings to the language address space.
virtual std::optional< LangAS > getConstantAddressSpace() const
Return an AST address space which can be used opportunistically for constant global memory.
const char * getDataLayoutString() const
unsigned getBitIntAlign(unsigned NumBits) const
bool isReadOnlyFeature(StringRef Feature) const
Determine whether the given target feature is read only.
StringRef getPlatformName() const
Retrieve the name of the platform as it is used in the availability attribute.
virtual bool isBranchProtectionSupportedArch(StringRef Arch) const
Determine if the Architecture in this TargetInfo supports branch protection.
unsigned getLongLongAlign() const
virtual bool hasFeatureEnabled(const llvm::StringMap< bool > &Features, StringRef Name) const
Check if target has a given feature enabled.
virtual const char * getStaticInitSectionSpecifier() const
Return the section to use for C++ static initialization functions.
unsigned getDefaultAlignForAttributeAligned() const
Return the default alignment for attribute((aligned)) on this target, to be used if no alignment valu...
unsigned getBFloat16Width() const
getBFloat16Width/Align/Format - Return the size/align/format of '__bf16'.
BuiltinVaListKind
The different kinds of __builtin_va_list types defined by the target implementation.
@ AArch64ABIBuiltinVaList
__builtin_va_list as defined by the AArch64 ABI http://infocenter.arm.com/help/topic/com....
@ PNaClABIBuiltinVaList
__builtin_va_list as defined by the PNaCl ABI: http://www.chromium.org/nativeclient/pnacl/bitcode-abi...
@ PowerABIBuiltinVaList
__builtin_va_list as defined by the Power ABI: https://www.power.org /resources/downloads/Power-Arch-...
@ AAPCSABIBuiltinVaList
__builtin_va_list as defined by ARM AAPCS ABI http://infocenter.arm.com
@ VoidPtrBuiltinVaList
typedef void* __builtin_va_list;
@ X86_64ABIBuiltinVaList
__builtin_va_list as defined by the x86-64 ABI: http://refspecs.linuxbase.org/elf/x86_64-abi-0....
virtual size_t getMaxBitIntWidth() const
virtual bool setFPMath(StringRef Name)
Use the specified unit for FP math.
bool isSEHTrySupported() const
Whether the target supports SEH __try.
unsigned getChar32Width() const
getChar32Width/Align - Return the size of 'char32_t' for this target, in bits.
virtual bool useFP16ConversionIntrinsics() const
Check whether llvm intrinsics such as llvm.convert.to.fp16 should be used to convert to and from __fp...
const llvm::Triple * getDarwinTargetVariantTriple() const
Returns the darwin target variant triple, the variant of the deployment target for which the code is ...
virtual uint64_t getNullPointerValue(LangAS AddrSpace) const
Get integer value for null pointer.
virtual ArrayRef< const char * > getGCCRegNames() const =0
virtual std::optional< unsigned > getCPUCacheLineSize() const
virtual ArrayRef< Builtin::Info > getTargetBuiltins() const =0
Return information about target-specific builtins for the current primary target, and info about whic...
unsigned getLongAccumScale() const
getLongAccumScale/IBits - Return the number of fractional/integral bits in a 'signed long _Accum' typ...
unsigned getLongFractScale() const
getLongFractScale - Return the number of fractional bits in a 'signed long _Fract' type.
unsigned getIbm128Width() const
getIbm128Width/Align/Format - Return the size/align/format of '__ibm128'.
uint64_t getPointerWidth(LangAS AddrSpace) const
Return the width of pointers on this target, for the specified address space.
virtual bool allowHalfArgsAndReturns() const
Whether half args and returns are supported.
unsigned getShortFractAlign() const
virtual unsigned multiVersionSortPriority(StringRef Name) const
unsigned getFractAlign() const
const llvm::StringMap< bool > & getSupportedOpenCLOpts() const
Get const supported OpenCL extensions and optional core features.
virtual void setFeatureEnabled(llvm::StringMap< bool > &Features, StringRef Name, bool Enabled) const
Enable or disable a specific target feature; the feature name must be valid.
virtual std::pair< unsigned, unsigned > hardwareInterferenceSizes() const
The first value in the pair is the minimum offset between two objects to avoid false sharing (destruc...
virtual CallingConv getDefaultCallingConv() const
Gets the default calling convention for the given target and declaration context.
bool useSignedCharForObjCBool() const
Check if the Objective-C built-in boolean type should be signed char.
virtual bool hasPS4DLLImportExport() const
virtual bool hasInt128Type() const
Determine whether the __int128 type is supported on this target.
unsigned getAccumIBits() const
bool useObjCFPRetForRealType(FloatModeKind T) const
Check whether the given real type should use the "fpret" flavor of Objective-C message passing on thi...
virtual LangOptions::FPEvalMethodKind getFPEvalMethod() const
Return the value for the C99 FLT_EVAL_METHOD macro.
unsigned getHalfAlign() const
IntType getSigAtomicType() const
virtual bool validateOutputSize(const llvm::StringMap< bool > &FeatureMap, StringRef, unsigned) const
unsigned getAccumScale() const
getAccumScale/IBits - Return the number of fractional/integral bits in a 'signed _Accum' type.
virtual bool hasFloat16Type() const
Determine whether the _Float16 type is supported on this target.
unsigned getBFloat16Align() const
virtual CallingConvCheckResult checkCallingConvention(CallingConv CC) const
Determines whether a given calling convention is valid for the target.
unsigned getMaxVectorAlign() const
Return the maximum vector alignment supported for the given target.
VersionTuple PlatformMinVersion
unsigned getChar16Width() const
getChar16Width/Align - Return the size of 'char16_t' for this target, in bits.
virtual unsigned getVtblPtrAddressSpace() const
virtual void setAuxTarget(const TargetInfo *Aux)
unsigned getLongAccumAlign() const
unsigned getIntWidth() const
getIntWidth/Align - Return the size of 'signed int' and 'unsigned int' for this target,...
IntType getPtrDiffType(LangAS AddrSpace) const
virtual bool handleTargetFeatures(std::vector< std::string > &Features, DiagnosticsEngine &Diags)
Perform initialization based on the user configured set of features (e.g., +sse4).
bool isLittleEndian() const
unsigned getShortAccumIBits() const
bool hasUnalignedAccess() const
Return true iff unaligned accesses are a single instruction (rather than a synthesized sequence).
virtual const char * getIbm128Mangling() const
Return the mangled code of __ibm128.
unsigned getFloatWidth() const
getFloatWidth/Align/Format - Return the size/align/format of 'float'.
virtual ArrayRef< GCCRegAlias > getGCCRegAliases() const =0
unsigned getLongAccumIBits() const
IntType getSizeType() const
IntType getWIntType() const
virtual void getTargetDefines(const LangOptions &Opts, MacroBuilder &Builder) const =0
===-— Other target property query methods -----------------------—===//
static IntType getCorrespondingUnsignedType(IntType T)
unsigned getLongAccumWidth() const
getLongAccumWidth/Align - Return the size of 'signed long _Accum' and 'unsigned long _Accum' for this...
virtual bool setABI(const std::string &Name)
Use the specified ABI.
void noSignedCharForObjCBool()
unsigned getHalfWidth() const
getHalfWidth/Align/Format - Return the size/align/format of 'half'.
virtual bool validateInputSize(const llvm::StringMap< bool > &FeatureMap, StringRef, unsigned) const
bool allowAMDGPUUnsafeFPAtomics() const
Returns whether or not the AMDGPU unsafe floating point atomics are allowed.
unsigned getShortAccumScale() const
getShortAccumScale/IBits - Return the number of fractional/integral bits in a 'signed short _Accum' t...
unsigned getBitIntWidth(unsigned NumBits) const
getBitIntAlign/Width - Return aligned size of '_BitInt' and 'unsigned _BitInt' for this target,...
unsigned getBoolAlign() const
Return the alignment of '_Bool' and C++ 'bool' for this target.
virtual bool defaultsToAIXPowerAlignment() const
Whether target defaults to the power alignment rules of AIX.
const llvm::fltSemantics & getDoubleFormat() const
virtual bool hasStrictFP() const
Determine whether constrained floating point is supported on this target.
virtual char CPUSpecificManglingCharacter(StringRef Name) const
virtual void fillValidTuneCPUList(SmallVectorImpl< StringRef > &Values) const
Fill a SmallVectorImpl with the valid values for tuning CPU.
virtual bool allowDebugInfoForExternalRef() const
Whether target allows debuginfo types for decl only variables/functions.
unsigned getCharAlign() const
VersionTuple getPlatformMinVersion() const
Retrieve the minimum desired version of the platform, to which the program should be compiled.
virtual unsigned multiVersionFeatureCost() const
const std::optional< VersionTuple > getDarwinTargetVariantSDKVersion() const
Returns the version of the darwin target variant SDK which was used during the compilation if one was...
unsigned getLongLongWidth() const
getLongLongWidth/Align - Return the size of 'signed long long' and 'unsigned long long' for this targ...
unsigned getMaxOpenCLWorkGroupSize() const
virtual bool hasBuiltinAtomic(uint64_t AtomicSizeInBits, uint64_t AlignmentInBits) const
Returns true if the given target supports lock-free atomic operations at the specified width and alig...
bool isTLSSupported() const
Whether the target supports thread-local storage.
unsigned getZeroLengthBitfieldBoundary() const
Get the fixed alignment value in bits for a member that follows a zero length bitfield.
IntType getIntPtrType() const
uint32_t getARMCDECoprocMask() const
For ARM targets returns a mask defining which coprocessors are configured as Custom Datapath.
unsigned getMaxAlignedAttribute() const
Get the maximum alignment in bits for a static variable with aligned attribute.
IntType getInt16Type() const
const llvm::fltSemantics & getHalfFormat() const
virtual bool validateAsmConstraint(const char *&Name, TargetInfo::ConstraintInfo &info) const =0
virtual void supportAllOpenCLOpts(bool V=true)
llvm::StringMap< bool > & getSupportedOpenCLOpts()
Get supported OpenCL extensions and optional core features.
virtual uint64_t getPointerAlignV(LangAS AddrSpace) const
virtual const char * getLongDoubleMangling() const
Return the mangled code of long double.
bool UseAddrSpaceMapMangling
Specify if mangling based on address space map should be used or not for language specific address sp...
virtual bool supportsExtendIntArgs() const
Whether the option -fextend-arguments={32,64} is supported on the target.
unsigned getLargeArrayMinWidth() const
unsigned getMaxTLSAlign() const
Return the maximum alignment (in bits) of a TLS variable.
virtual unsigned getRegisterWidth() const
Return the "preferred" register width on this target.
bool supportsIFunc() const
Identify whether this target supports IFuncs.
virtual bool isValidTuneCPUName(StringRef Name) const
Determine whether this TargetInfo supports the given CPU name for tuning.
virtual bool validateCpuSupports(StringRef Name) const
IntType getWCharType() const
IntType getUInt16Type() const
unsigned getChar16Align() const
virtual unsigned getMinGlobalAlign(uint64_t Size, bool HasNonWeakDef) const
getMinGlobalAlign - Return the minimum alignment of a global variable, unless its alignment is explic...
virtual bool supportsCpuIs() const
virtual BuiltinVaListKind getBuiltinVaListKind() const =0
Returns the kind of __builtin_va_list type that should be used with this target.
bool isVLASupported() const
Whether target supports variable-length arrays.
bool hasCheapUnalignedBitFieldAccess() const
Return true iff unaligned accesses are cheap.
unsigned getTargetAddressSpace(LangAS AS) const
const llvm::fltSemantics & getBFloat16Format() const
const char * getUserLabelPrefix() const
Returns the default value of the USER_LABEL_PREFIX macro, which is the prefix given to user symbols b...
unsigned getAccumAlign() const
unsigned getFloat128Width() const
getFloat128Width/Align/Format - Return the size/align/format of '__float128'.
virtual bool hasIbm128Type() const
Determine whether the __ibm128 type is supported on this target.
bool useExplicitBitFieldAlignment() const
Check whether explicit bitfield alignment attributes should be.
virtual bool doesFeatureAffectCodeGen(StringRef Feature) const
Returns true if feature has an impact on target code generation.
virtual bool validateConstraintModifier(StringRef, char, unsigned, std::string &) const
uint64_t getPointerAlign(LangAS AddrSpace) const
IntType getChar16Type() const
unsigned getUnsignedShortAccumIBits() const
IntType getChar32Type() const
unsigned getWCharWidth() const
getWCharWidth/Align - Return the size of 'wchar_t' for this target, in bits.
bool isRenderScriptTarget() const
Returns true for RenderScript.
IntType getUInt64Type() const
virtual bool hasFPReturn() const
Determine whether return of a floating point value is supported on this target.
std::string DataLayoutString
unsigned getUnsignedLongAccumScale() const
getUnsignedLongAccumScale/IBits - Return the number of fractional/integral bits in a 'unsigned long _...
virtual StringRef getConstraintRegister(StringRef Constraint, StringRef Expression) const
Extracts a register from the passed constraint (if it is a single-register constraint) and the asm la...
virtual void fillValidCPUList(SmallVectorImpl< StringRef > &Values) const
Fill a SmallVectorImpl with the valid values to setCPU.
IntType getSignedSizeType() const
bool hasBuiltinMSVaList() const
Returns whether or not type __builtin_ms_va_list type is available on this target.
virtual bool hasFloat128Type() const
Determine whether the __float128 type is supported on this target.
unsigned getUnsignedLongAccumIBits() const
virtual void setMaxAtomicWidth()
Set the maximum inline or promote width lock-free atomic operation for the given target.
unsigned getUnsignedShortFractScale() const
getUnsignedShortFractScale - Return the number of fractional bits in a 'unsigned short _Fract' type.
bool hasNoAsmVariants() const
Return true if {|} are normal characters in the asm string.
virtual bool validateCPUSpecificCPUDispatch(StringRef Name) const
const llvm::fltSemantics & getLongDoubleFormat() const
virtual StringRef getCPUSpecificTuneName(StringRef Name) const
const llvm::fltSemantics & getFloatFormat() const
TargetCXXABI getCXXABI() const
Get the C++ ABI currently in use.
unsigned getBitIntMaxAlign() const
getBitIntMaxAlign() - Returns the maximum possible alignment of '_BitInt' and 'unsigned _BitInt'.
bool hasAArch64SVETypes() const
Returns whether or not the AArch64 SVE built-in types are available on this target.
unsigned getDoubleAlign() const
virtual bool hasProtectedVisibility() const
Does this target support "protected" visibility?
unsigned getRegParmMax() const
unsigned getDoubleWidth() const
getDoubleWidth/Align/Format - Return the size/align/format of 'double'.
virtual bool checkArithmeticFenceSupported() const
Controls if __arithmetic_fence is supported in the targeted backend.
unsigned getIntMaxTWidth() const
Return the size of intmax_t and uintmax_t for this target, in bits.
virtual int getEHDataRegisterNumber(unsigned RegNo) const
Return the register number that __builtin_eh_return_regno would return with the specified argument.
unsigned getShortAccumWidth() const
getShortAccumWidth/Align - Return the size of 'signed short _Accum' and 'unsigned short _Accum' for t...
virtual StringRef getABI() const
Get the ABI currently in use.
unsigned getSuitableAlign() const
Return the alignment that is the largest alignment ever used for any scalar/SIMD data type on the tar...
bool useObjCFP2RetForComplexLongDouble() const
Check whether _Complex long double should use the "fp2ret" flavor of Objective-C message passing on t...
virtual const llvm::omp::GV & getGridValue() const
virtual uint64_t getPointerWidthV(LangAS AddrSpace) const
virtual bool allowsLargerPreferedTypeAlignment() const
Whether target allows to overalign ABI-specified preferred alignment.
virtual std::string_view getClobbers() const =0
Returns a string of target-specific clobbers, in LLVM format.
virtual unsigned getUnwindWordWidth() const
unsigned getBoolWidth() const
Return the size of '_Bool' and C++ 'bool' for this target, in bits.
virtual bool isValidFeatureName(StringRef Feature) const
Determine whether this TargetInfo supports the given feature.
bool useAddressSpaceMapMangling() const
Specify if mangling based on address space map should be used or not for language specific address sp...
unsigned getCharWidth() const
bool useZeroLengthBitfieldAlignment() const
Check whether zero length bitfields should force alignment of the next member.
virtual bool validateTarget(DiagnosticsEngine &Diags) const
Check the target is valid after it is fully initialized.
unsigned getLongWidth() const
getLongWidth/Align - Return the size of 'signed long' and 'unsigned long' for this target,...
unsigned getLongFractWidth() const
getLongFractWidth/Align - Return the size of 'signed long _Fract' and 'unsigned long _Fract' for this...
IntType getIntMaxType() const
virtual bool supportsTargetAttributeTune() const
Determine whether this TargetInfo supports tune in target attribute.
unsigned getFractScale() const
getFractScale - Return the number of fractional bits in a 'signed _Fract' type.
bool supportsMultiVersioning() const
Identify whether this target supports multiversioning of functions, which requires support for cpu_su...
virtual bool validateGlobalRegisterVariable(StringRef RegName, unsigned RegSize, bool &HasSizeMismatch) const
Validate register name used for global register variables.
virtual bool shouldDLLImportComdatSymbols() const
Does this target aim for semantic compatibility with Microsoft C++ code using dllimport/export attrib...
unsigned getFractWidth() const
getFractWidth/Align - Return the size of 'signed _Fract' and 'unsigned _Fract' for this target,...
virtual std::string convertConstraint(const char *&Constraint) const
unsigned char MaxAtomicInlineWidth
virtual void setCommandLineOpenCLOpts()
Set supported OpenCL extensions as written on command line.
unsigned getFloat128Align() const
virtual bool hasBFloat16Type() const
Determine whether the _BFloat16 type is supported on this target.
unsigned getShortFractScale() const
getShortFractScale - Return the number of fractional bits in a 'signed short _Fract' type.
IntType getProcessIDType() const
unsigned getFloatAlign() const
virtual uint64_t getMaxPointerWidth() const
Return the maximum width of pointers on this target.
unsigned getShortFractWidth() const
getShortFractWidth/Align - Return the size of 'signed short _Fract' and 'unsigned short _Fract' for t...
virtual bool hasHIPImageSupport() const
Whether to support HIP image/texture API's.
virtual bool hasFeature(StringRef Feature) const
Determine whether the given target has the given feature.
unsigned getUnsignedShortAccumScale() const
getUnsignedShortAccumScale/IBits - Return the number of fractional/integral bits in a 'unsigned short...
virtual bool isValidCPUName(StringRef Name) const
Determine whether this TargetInfo supports the given CPU name.
unsigned getChar32Align() const
bool doUnsignedFixedPointTypesHavePadding() const
In the event this target uses the same number of fractional bits for its unsigned types as it does wi...
unsigned getMaxAtomicPromoteWidth() const
Return the maximum width lock-free atomic operation which will ever be supported for the given target...
virtual bool isSPRegName(StringRef) const
unsigned getInt128Align() const
getInt128Align() - Returns the alignment of Int128.
IntType getUIntMaxType() const
const llvm::fltSemantics & getFloat128Format() const
virtual bool hasSjLjLowering() const
Controls if __builtin_longjmp / __builtin_setjmp can be lowered to llvm.eh.sjlj.longjmp / llvm....
const llvm::VersionTuple & getSDKVersion() const
unsigned getLongDoubleWidth() const
getLongDoubleWidth/Align/Format - Return the size/align/format of 'long double'.
unsigned getLongDoubleAlign() const
virtual std::optional< std::pair< unsigned, unsigned > > getVScaleRange(const LangOptions &LangOpts) const
Returns target-specific min and max values VScale_Range.
const llvm::fltSemantics & getIbm128Format() const
bool useBitFieldTypeAlignment() const
Check whether the alignment of bit-field types is respected when laying out structures.
unsigned getShortAlign() const
Return the alignment of 'signed short' and 'unsigned short' for this target.
virtual const char * getBFloat16Mangling() const
Return the mangled code of bfloat.
virtual bool isNan2008() const
Returns true if NaN encoding is IEEE 754-2008.
virtual void setSupportedOpenCLOpts()
Set supported OpenCL extensions and optional core features.
bool hasRISCVVTypes() const
Returns whether or not the RISC-V V built-in types are available on this target.
virtual bool validateBranchProtection(StringRef Spec, StringRef Arch, BranchProtectionInfo &BPI, StringRef &Err) const
Determine if this TargetInfo supports the given branch protection specification.
Options for controlling the target.
The JSON file list parser is used to communicate input to InstallAPI.
unsigned[(unsigned) LangAS::FirstTargetAddressSpace] LangASMap
The type of a lookup table which maps from language-specific address spaces to target-specific ones.
bool isTargetAddressSpace(LangAS AS)
OpenCLTypeKind
OpenCL type kinds.
unsigned toTargetAddressSpace(LangAS AS)
LangAS
Defines the address space values used by the address space qualifier of QualType.
const FunctionProtoType * T
CallingConv
CallingConv - Specifies the calling convention that a function uses.
LangAS getLangASFromTargetAS(unsigned TargetAS)
@ Other
Other implicit parameter.
Diagnostic wrappers for TextAPI types for error reporting.
Contains information gathered from parsing the contents of TargetAttr.
std::vector< std::string > Features
StringRef BranchProtection
bool operator==(const ParsedTargetAttr &Other) const
llvm::SmallSet< int, 4 > ImmSet
const std::string & getConstraintStr() const
std::string ConstraintStr
void setHasMatchingInput()
bool hasMatchingInput() const
Return true if this output operand has a matching (tied) input operand.
void setRequiresImmediate()
unsigned getTiedOperand() const
bool allowsMemory() const
const std::string & getName() const
ConstraintInfo(StringRef ConstraintStr, StringRef Name)
void setRequiresImmediate(int Exact)
void setTiedOperand(unsigned N, ConstraintInfo &Output)
Indicate that this is an input operand that is tied to the specified output operand.
bool isValidAsmImmediate(const llvm::APInt &Value) const
bool requiresImmediateConstant() const
bool hasTiedOperand() const
Return true if this input operand is a matching constraint that ties it to an output operand.
bool allowsRegister() const
void setRequiresImmediate(llvm::ArrayRef< int > Exacts)
void setRequiresImmediate(int Min, int Max)
const char *const Register
Fields controlling how types are laid out in memory; these may need to be copied for targets like AMD...
const llvm::fltSemantics * DoubleFormat
unsigned UseZeroLengthBitfieldAlignment
Whether zero length bitfields (e.g., int : 0;) force alignment of the next bitfield.
unsigned short SuitableAlign
unsigned char PointerWidth
unsigned UseExplicitBitFieldAlignment
Whether explicit bit field alignment attributes are honored.
IntType
===-— Target Data Type Query Methods ----------------------------—===//
const llvm::fltSemantics * LongDoubleFormat
unsigned char LargeArrayAlign
unsigned char ShortAccumWidth
unsigned ZeroLengthBitfieldBoundary
If non-zero, specifies a fixed alignment value for bitfields that follow zero length bitfield,...
const llvm::fltSemantics * Float128Format
std::optional< unsigned > BitIntMaxAlign
unsigned char DoubleWidth
unsigned UseLeadingZeroLengthBitfield
Whether zero length bitfield alignment is respected if they are the leading members.
unsigned char LongLongAlign
unsigned char LongAccumAlign
unsigned UseBitFieldTypeAlignment
Control whether the alignment of bit-field types is respected when laying out structures.
unsigned char LargeArrayMinWidth
unsigned char PointerAlign
unsigned char BFloat16Width
unsigned char LongDoubleAlign
unsigned char LongDoubleWidth
unsigned char BFloat16Align
unsigned char Int128Align
unsigned char ShortAccumScale
unsigned MaxAlignedAttribute
If non-zero, specifies a maximum alignment to truncate alignment specified in the aligned attribute o...
unsigned char DoubleAlign
bool PaddingOnUnsignedFixedPoint
const llvm::fltSemantics * Ibm128Format
unsigned char LongFractWidth
unsigned char Ibm128Align
unsigned char ShortFractAlign
unsigned char ShortAccumAlign
unsigned char LongFractAlign
const llvm::fltSemantics * FloatFormat
const llvm::fltSemantics * HalfFormat
unsigned char LongLongWidth
unsigned char LongAccumScale
unsigned char MinGlobalAlign
unsigned UseSignedCharForObjCBool
Whether Objective-C's built-in boolean type should be signed char.
const llvm::fltSemantics * BFloat16Format
unsigned char Float128Align
unsigned char LongAccumWidth
unsigned char DefaultAlignForAttributeAligned
unsigned char ShortFractWidth