24#define GET_TARGET_LIBRARY_INFO_STRING_TABLE
25#include "llvm/Analysis/TargetLibraryInfo.inc"
28 assert(!VectorFnName.empty() &&
"Vector function name must not be empty.");
31 Out << VABIPrefix <<
"_" << ScalarFnName <<
"(" << VectorFnName <<
")";
32 return std::string(Out.
str());
35#define GET_TARGET_LIBRARY_INFO_SIGNATURE_TABLE
36#include "llvm/Analysis/TargetLibraryInfo.inc"
47 if (
T.isMacOSX() &&
T.isMacOSXVersionLT(10, 9))
50 if (
T.isiOS() &&
T.isOSVersionLT(7, 0))
60 return TT.isGNUEnvironment() || TT.isMusl();
63 return TT.isOSFreeBSD() || TT.isOSSolaris();
82 if (!FuncTy->getReturnType()->isPointerTy() &&
83 !FuncTy->getReturnType()->isIntegerTy() &&
84 !FuncTy->getReturnType()->isVoidTy())
87 for (
auto *Param : FuncTy->params()) {
88 if (!Param->isPointerTy() && !Param->isIntegerTy())
104 return ::isCallingConvCCompatible(
F->getCallingConv(),
105 F->getParent()->getTargetTriple(),
106 F->getFunctionType());
110 bool ShouldExtI32Param, ShouldExtI32Return;
111 bool ShouldSignExtI32Param, ShouldSignExtI32Return;
113 ShouldExtI32Param, ShouldExtI32Return, ShouldSignExtI32Param,
114 ShouldSignExtI32Return,
T);
169 if (
T.isMacOSXVersionLT(10, 5)) {
174 }
else if (
T.isiOS()) {
175 if (
T.isOSVersionLT(3, 0)) {
180 }
else if (!
T.isWatchOS()) {
199 !
T.isMacOSXVersionLT(10, 7)) {
224 if (
T.isOSWindows() && !
T.isOSCygMing()) {
230 bool hasPartialC99 =
true;
231 if (
T.isKnownWindowsMSVCEnvironment()) {
233 hasPartialC99 = (Version.getMajor() == 0 || Version.getMajor() >= 19);
239 bool hasPartialFloat = (isARM ||
243 if (!hasPartialFloat) {
302 if (!hasPartialC99) {
403 if (
T.isOSWindows() && !
T.isWindowsCygwinEnvironment()) {
445 if (
T.isOSMSVCRT()) {
483 TLI.
setUnavailable(LibFunc_ZnwmSt11align_val_tRKSt9nothrow_t12__hot_cold_t);
486 TLI.
setUnavailable(LibFunc_ZnamSt11align_val_tRKSt9nothrow_t12__hot_cold_t);
521 if (
T.isMacOSXVersionLT(10, 9)) {
534 if (!
T.isWatchOS() &&
535 (
T.isOSVersionLT(7, 0) || (
T.isOSVersionLT(9, 0) &&
T.isX86()))) {
597 if (!
T.isOSFreeBSD()) {
605 if (!
T.isOSLinux() || !
T.isGNUEnvironment()) {
613 if (!
T.isAndroid() && !
T.isMusl())
677 if ((
T.isOSLinux() &&
T.isGNUEnvironment()) ||
678 (
T.isAndroid() && !
T.isAndroidVersionLT(28))) {
820 if (
T.isOSFreeBSD()) {
902 memset(AvailableArray, -1,
sizeof(AvailableArray));
904 initialize(*
this,
T, StandardNamesStrTable, VecLib);
908 : CustomNames(TLI.CustomNames), ShouldExtI32Param(TLI.ShouldExtI32Param),
909 ShouldExtI32Return(TLI.ShouldExtI32Return),
910 ShouldSignExtI32Param(TLI.ShouldSignExtI32Param),
911 ShouldSignExtI32Return(TLI.ShouldSignExtI32Return),
912 SizeOfInt(TLI.SizeOfInt) {
913 memcpy(AvailableArray, TLI.AvailableArray,
sizeof(AvailableArray));
914 VectorDescs = TLI.VectorDescs;
915 ScalarDescs = TLI.ScalarDescs;
919 : CustomNames(
std::
move(TLI.CustomNames)),
920 ShouldExtI32Param(TLI.ShouldExtI32Param),
921 ShouldExtI32Return(TLI.ShouldExtI32Return),
922 ShouldSignExtI32Param(TLI.ShouldSignExtI32Param),
923 ShouldSignExtI32Return(TLI.ShouldSignExtI32Return),
924 SizeOfInt(TLI.SizeOfInt) {
925 std::move(std::begin(TLI.AvailableArray), std::end(TLI.AvailableArray),
927 VectorDescs = TLI.VectorDescs;
928 ScalarDescs = TLI.ScalarDescs;
932 CustomNames = TLI.CustomNames;
933 ShouldExtI32Param = TLI.ShouldExtI32Param;
934 ShouldExtI32Return = TLI.ShouldExtI32Return;
935 ShouldSignExtI32Param = TLI.ShouldSignExtI32Param;
936 ShouldSignExtI32Return = TLI.ShouldSignExtI32Return;
937 SizeOfInt = TLI.SizeOfInt;
938 memcpy(AvailableArray, TLI.AvailableArray,
sizeof(AvailableArray));
943 CustomNames = std::move(TLI.CustomNames);
944 ShouldExtI32Param = TLI.ShouldExtI32Param;
945 ShouldExtI32Return = TLI.ShouldExtI32Return;
946 ShouldSignExtI32Param = TLI.ShouldSignExtI32Param;
947 ShouldSignExtI32Return = TLI.ShouldSignExtI32Return;
948 SizeOfInt = TLI.SizeOfInt;
949 std::move(std::begin(TLI.AvailableArray), std::end(TLI.AvailableArray),
969 Indices.
reserve(LibFunc::NumLibFuncs);
970 for (
const auto &Func : StandardNames)
971 Indices[Func] =
static_cast<LibFunc
>(Idx++);
977 if (funcName.
empty())
991 unsigned SizeTBits) {
994 return Ty->isVoidTy();
996 return Ty->isIntegerTy(8);
998 return Ty->isIntegerTy(16);
1000 return Ty->isIntegerTy(32);
1002 return Ty->isIntegerTy(IntBits);
1004 return Ty->isIntegerTy() && Ty->getPrimitiveSizeInBits() >= IntBits;
1006 return Ty->isIntegerTy();
1009 return Ty->isIntegerTy() && Ty->getPrimitiveSizeInBits() >= IntBits;
1011 return Ty->isIntegerTy(64);
1013 return Ty->isIntegerTy(64);
1016 return Ty->isIntegerTy(SizeTBits);
1018 return Ty->isFloatTy();
1020 return Ty->isDoubleTy();
1023 return Ty->isFloatingPointTy();
1025 return Ty->isFloatingPointTy();
1027 return Ty->isPointerTy();
1029 return Ty->isStructTy();
1039 int SizeTSizeBits) {
1041 case LibFunc_size_returning_new: {
1042 if (FTy.getNumParams() != 1 ||
1043 !FTy.getParamType(0)->isIntegerTy(SizeTSizeBits)) {
1047 case LibFunc_size_returning_new_hot_cold: {
1048 if (FTy.getNumParams() != 2 ||
1049 !FTy.getParamType(0)->isIntegerTy(SizeTSizeBits) ||
1050 !FTy.getParamType(1)->isIntegerTy(8)) {
1054 case LibFunc_size_returning_new_aligned: {
1055 if (FTy.getNumParams() != 2 ||
1056 !FTy.getParamType(0)->isIntegerTy(SizeTSizeBits) ||
1057 !FTy.getParamType(1)->isIntegerTy(SizeTSizeBits)) {
1061 case LibFunc_size_returning_new_aligned_hot_cold:
1062 if (FTy.getNumParams() != 3 ||
1063 !FTy.getParamType(0)->isIntegerTy(SizeTSizeBits) ||
1064 !FTy.getParamType(1)->isIntegerTy(SizeTSizeBits) ||
1065 !FTy.getParamType(2)->isIntegerTy(8)) {
1073 auto &Context = M.getContext();
1077 return FTy.getReturnType() == SizedPtrTy;
1080bool TargetLibraryInfoImpl::isValidProtoForLibFunc(
const FunctionType &FTy,
1083 unsigned NumParams = FTy.getNumParams();
1089 case LibFunc_cabsl: {
1090 Type *RetTy = FTy.getReturnType();
1094 Type *ParamTy = FTy.getParamType(0);
1101 else if (NumParams == 2)
1102 return ParamTy == RetTy && FTy.getParamType(1) == RetTy;
1108 case LibFunc_sincospi_stret:
1109 case LibFunc_sincospif_stret: {
1113 Type *RetTy = FTy.getReturnType();
1114 Type *ParamTy = FTy.getParamType(0);
1116 if (Ty->getNumElements() != 2)
1118 return (Ty->getElementType(0) == ParamTy &&
1119 Ty->getElementType(1) == ParamTy);
1123 if (Ty->getNumElements() != 2)
1125 return Ty->getElementType() == ParamTy;
1132 case LibFunc_size_returning_new:
1133 case LibFunc_size_returning_new_hot_cold:
1134 case LibFunc_size_returning_new_aligned:
1135 case LibFunc_size_returning_new_aligned_hot_cold:
1148 Type *Ty = FTy.getReturnType(), *LastTy = Ty;
1149 const auto *ProtoTypes = &SignatureTable[SignatureOffset[
F]];
1150 for (
auto TyID = ProtoTypes[Idx]; TyID != NoFuncArgType;
1151 TyID = ProtoTypes[++Idx]) {
1152 if (TyID == NoFuncArgType)
1155 if (TyID == Ellip) {
1159 assert(ProtoTypes[Idx] == NoFuncArgType ||
1160 ProtoTypes[Idx + 1] == NoFuncArgType);
1161 return FTy.isFunctionVarArg();
1165 assert(Idx != 0 &&
"Type ID 'Same' must not be first!");
1169 if (!Ty || !
matchType(TyID, Ty, IntBits, SizeTBits))
1174 if (Idx == NumParams) {
1181 Ty = FTy.getParamType(Idx);
1186 return Idx == NumParams + 1 && !FTy.isFunctionVarArg();
1197 assert(M &&
"Expecting FDecl to be connected to a Module.");
1199 if (FDecl.LibFuncCache == Function::UnknownLibFunc)
1202 if (FDecl.LibFuncCache == NotLibFunc)
1205 if (!isValidProtoForLibFunc(*FDecl.
getFunctionType(), FDecl.LibFuncCache, *M))
1208 return FDecl.LibFuncCache;
1213 if (Opcode != Instruction::FRem || (!Ty->isDoubleTy() && !Ty->isFloatTy()))
1216 return Ty->isDoubleTy() ? LibFunc_fmod : LibFunc_fmodf;
1220 memset(AvailableArray, 0,
sizeof(AvailableArray));
1224 return LHS.getScalarFnName() <
RHS.getScalarFnName();
1228 return LHS.getVectorFnName() <
RHS.getVectorFnName();
1232 return LHS.getScalarFnName() < S;
1244#define TLI_DEFINE_ACCELERATE_VECFUNCS
1245#include "llvm/Analysis/VecFuncs.def"
1246#undef TLI_DEFINE_ACCELERATE_VECFUNCS
1250#define TLI_DEFINE_DARWIN_LIBSYSTEM_M_VECFUNCS
1251#include "llvm/Analysis/VecFuncs.def"
1252#undef TLI_DEFINE_DARWIN_LIBSYSTEM_M_VECFUNCS
1256#define TLI_DEFINE_LIBMVEC_X86_VECFUNCS
1257#include "llvm/Analysis/VecFuncs.def"
1258#undef TLI_DEFINE_LIBMVEC_X86_VECFUNCS
1262#define TLI_DEFINE_LIBMVEC_AARCH64_VECFUNCS
1263#define TLI_DEFINE_VECFUNC(SCAL, VEC, VF, MASK, VABI_PREFIX, CC) \
1264 {SCAL, VEC, VF, MASK, VABI_PREFIX, CC},
1265#include "llvm/Analysis/VecFuncs.def"
1266#undef TLI_DEFINE_LIBMVEC_AARCH64_VECFUNCS
1270#define TLI_DEFINE_MASSV_VECFUNCS
1271#include "llvm/Analysis/VecFuncs.def"
1272#undef TLI_DEFINE_MASSV_VECFUNCS
1276#define TLI_DEFINE_SVML_VECFUNCS
1277#include "llvm/Analysis/VecFuncs.def"
1278#undef TLI_DEFINE_SVML_VECFUNCS
1282#define TLI_DEFINE_SLEEFGNUABI_VF2_VECFUNCS
1283#define TLI_DEFINE_VECFUNC(SCAL, VEC, VF, VABI_PREFIX) \
1284 {SCAL, VEC, VF, false, VABI_PREFIX, std::nullopt},
1285#include "llvm/Analysis/VecFuncs.def"
1286#undef TLI_DEFINE_SLEEFGNUABI_VF2_VECFUNCS
1289#define TLI_DEFINE_SLEEFGNUABI_VF4_VECFUNCS
1290#define TLI_DEFINE_VECFUNC(SCAL, VEC, VF, VABI_PREFIX) \
1291 {SCAL, VEC, VF, false, VABI_PREFIX, std::nullopt},
1292#include "llvm/Analysis/VecFuncs.def"
1293#undef TLI_DEFINE_SLEEFGNUABI_VF4_VECFUNCS
1296#define TLI_DEFINE_SLEEFGNUABI_SCALABLE_VECFUNCS
1297#define TLI_DEFINE_VECFUNC(SCAL, VEC, VF, MASK, VABI_PREFIX) \
1298 {SCAL, VEC, VF, MASK, VABI_PREFIX, std::nullopt},
1299#include "llvm/Analysis/VecFuncs.def"
1300#undef TLI_DEFINE_SLEEFGNUABI_SCALABLE_VECFUNCS
1304#define TLI_DEFINE_SLEEFGNUABI_SCALABLE_VECFUNCS_RISCV
1305#define TLI_DEFINE_VECFUNC(SCAL, VEC, VF, MASK, VABI_PREFIX) \
1306 {SCAL, VEC, VF, MASK, VABI_PREFIX, std::nullopt},
1307#include "llvm/Analysis/VecFuncs.def"
1308#undef TLI_DEFINE_SLEEFGNUABI_SCALABLE_VECFUNCS_RISCV
1312#define TLI_DEFINE_ARMPL_VECFUNCS
1313#define TLI_DEFINE_VECFUNC(SCAL, VEC, VF, MASK, VABI_PREFIX, CC) \
1314 {SCAL, VEC, VF, MASK, VABI_PREFIX, CC},
1315#include "llvm/Analysis/VecFuncs.def"
1316#undef TLI_DEFINE_ARMPL_VECFUNCS
1320#define TLI_DEFINE_AMDLIBM_VECFUNCS
1321#define TLI_DEFINE_VECFUNC(SCAL, VEC, VF, MASK, VABI_PREFIX) \
1322 {SCAL, VEC, VF, MASK, VABI_PREFIX, std::nullopt},
1323#include "llvm/Analysis/VecFuncs.def"
1324#undef TLI_DEFINE_AMDLIBM_VECFUNCS
1339 switch (TargetTriple.
getArch()) {
1362 switch (TargetTriple.
getArch()) {
1378 switch (TargetTriple.
getArch()) {
1399 if (funcName.
empty())
1402 std::vector<VecDesc>::const_iterator
I =
1404 return I != VectorDescs.end() &&
StringRef(
I->getScalarFnName()) == funcName;
1422 std::vector<VecDesc>::const_iterator
I =
1424 while (
I != VectorDescs.end() &&
StringRef(
I->getScalarFnName()) ==
F) {
1425 if ((
I->getVectorizationFactor() == VF) && (
I->isMasked() ==
Masked))
1434 if (!BaselineInfoImpl)
1441 M.getModuleFlag(
"wchar_size")))
1456 return M.getDataLayout().getIndexSizeInBits(0);
1477 "Target Library Information",
false,
true)
1490 if (ScalarF.
empty())
1493 std::vector<VecDesc>::const_iterator
I =
1495 while (
I != VectorDescs.end() &&
StringRef(
I->getScalarFnName()) == ScalarF) {
1497 I->getVectorizationFactor().isScalable() ? &ScalableVF : &FixedVF;
1499 *VF =
I->getVectorizationFactor();
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines the DenseMap class.
Module.h This file contains the declarations for the Module class.
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file defines the SmallString class.
static bool hasSinCosPiStret(const Triple &T)
static bool isCallingConvCCompatible(CallingConv::ID CC, const Triple &TT, FunctionType *FuncTy)
static StringRef sanitizeFunctionName(StringRef funcName)
static void initialize(TargetLibraryInfoImpl &TLI, const Triple &T, const llvm::StringTable &StandardNames, VectorLibrary VecLib)
Initialize the set of available library functions based on the specified target triple.
static const VecDesc VecFuncs_MASSV[]
static bool matchType(FuncArgTypeID ArgTy, const Type *Ty, unsigned IntBits, unsigned SizeTBits)
static bool hasBcmp(const Triple &TT)
static void initializeLibCalls(TargetLibraryInfoImpl &TLI, const Triple &T, const llvm::StringTable &StandardNames, VectorLibrary VecLib)
Initialize the set of available library functions based on the specified target triple.
static const VecDesc VecFuncs_SLEEFGNUABI_VF2[]
static void initializeBase(TargetLibraryInfoImpl &TLI, const Triple &T)
static bool compareByScalarFnName(const VecDesc &LHS, const VecDesc &RHS)
static const VecDesc VecFuncs_LIBMVEC_AARCH64[]
static bool compareByVectorFnName(const VecDesc &LHS, const VecDesc &RHS)
static const VecDesc VecFuncs_SLEEFGNUABI_VF4[]
static DenseMap< StringRef, LibFunc > buildIndexMap(const llvm::StringTable &StandardNames)
static const VecDesc VecFuncs_ArmPL[]
const VecDesc VecFuncs_AMDLIBM[]
static bool isValidProtoForSizeReturningNew(const FunctionType &FTy, LibFunc F, const Module &M, int SizeTSizeBits)
static const VecDesc VecFuncs_LIBMVEC_X86[]
static const VecDesc VecFuncs_DarwinLibSystemM[]
static const VecDesc VecFuncs_SVML[]
static const VecDesc VecFuncs_SLEEFGNUABI_VFScalable[]
static bool compareWithScalarFnName(const VecDesc &LHS, StringRef S)
static const VecDesc VecFuncs_Accelerate[]
static const VecDesc VecFuncs_SLEEFGNUABI_VFScalableRISCV[]
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
CallingConv::ID getCallingConv() const
FunctionType * getFunctionType() const
iterator find(const_arg_type_t< KeyT > Val)
void reserve(size_type NumEntries)
Grow the densemap so that it can contain at least NumEntries items before resizing again.
static constexpr ElementCount getScalable(ScalarTy MinVal)
static constexpr ElementCount getFixed(ScalarTy MinVal)
Class to represent function types.
FunctionType * getFunctionType() const
Returns the FunctionType for me.
bool isIntrinsic() const
isIntrinsic - Returns true if the function's name starts with "llvm.".
static StringRef dropLLVMManglingEscape(StringRef Name)
If the given string begins with the GlobalValue name mangling escape character '\1',...
Module * getParent()
Get the module that this global value is contained inside of...
LLVM_ABI const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
A Module instance is used to store all the information related to an LLVM module.
const Triple & getTargetTriple() const
Get the target triple which is a string describing the target host.
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Represent a constant reference to a string, i.e.
constexpr bool empty() const
Check if the string is empty.
bool contains(StringRef Other) const
Return true if the given string is a substring of *this, and false otherwise.
A table of densely packed, null-terminated strings indexed by offset.
Class to represent struct types.
static LLVM_ABI StructType * get(LLVMContext &Context, ArrayRef< Type * > Elements, bool isPacked=false)
This static method is the primary way to create a literal StructType.
LLVM_ABI TargetLibraryInfo run(const Function &F, FunctionAnalysisManager &)
Implementation of the target library information.
void setShouldExtI32Param(bool Val)
Set to true iff i32 parameters to library functions should have signext or zeroext attributes if they...
void setShouldExtI32Return(bool Val)
Set to true iff i32 results from library functions should have signext or zeroext attributes if they ...
LLVM_ABI unsigned getWCharSize(const Module &M) const
Returns the size of the wchar_t type in bytes.
LLVM_ABI void getWidestVF(StringRef ScalarF, ElementCount &FixedVF, ElementCount &Scalable) const
Returns the largest vectorization factor used in the list of vector functions.
bool isFunctionVectorizable(StringRef F, const ElementCount &VF) const
Return true if the function F has a vector equivalent with vectorization factor VF.
void setShouldSignExtI32Param(bool Val)
Set to true iff i32 parameters to library functions should have signext attribute if they correspond ...
void setAvailableWithName(LibFunc F, StringRef Name)
Forces a function to be marked as available and provide an alternate name that must be used.
TargetLibraryInfoImpl()=delete
unsigned getIntSize() const
Get size of a C-level int or unsigned int, in bits.
LLVM_ABI void addVectorizableFunctionsFromVecLib(enum VectorLibrary VecLib, const llvm::Triple &TargetTriple)
Calls addVectorizableFunctions with a known preset of functions for the given vector library.
void setIntSize(unsigned Bits)
Initialize the C-level size of an integer.
LLVM_ABI unsigned getSizeTSize(const Module &M) const
Returns the size of the size_t type in bits.
LLVM_ABI void addVectorizableFunctions(ArrayRef< VecDesc > Fns)
Add a set of scalar -> vector mappings, queryable via getVectorizedFunction and getScalarizedFunction...
LLVM_ABI const VecDesc * getVectorMappingInfo(StringRef F, const ElementCount &VF, bool Masked) const
Return a pointer to a VecDesc object holding all info for scalar to vector mappings in TLI for the eq...
static LLVM_ABI bool isCallingConvCCompatible(CallBase *CI)
Returns true if call site / callee has cdecl-compatible calling conventions.
void setShouldSignExtI32Return(bool Val)
Set to true iff i32 results from library functions should have signext attribute if they correspond t...
LLVM_ABI TargetLibraryInfoImpl & operator=(const TargetLibraryInfoImpl &TLI)
LLVM_ABI void disableAllFunctions()
Disables all builtins.
void setUnavailable(LibFunc F)
Forces a function to be marked as unavailable.
LLVM_ABI LibFunc getLibFunc(StringRef funcName) const
Searches for a particular function name.
LLVM_ABI StringRef getVectorizedFunction(StringRef F, const ElementCount &VF, bool Masked) const
Return the name of the equivalent of F, vectorized with factor VF.
void setAvailable(LibFunc F)
Forces a function to be marked as available.
TargetLibraryInfoWrapperPass()
The default constructor should not be used and is only for pass manager initialization purposes.
Provides information about what library functions are available for the current target.
static void initExtensionsForTriple(bool &ShouldExtI32Param, bool &ShouldExtI32Return, bool &ShouldSignExtI32Param, bool &ShouldSignExtI32Return, const Triple &T)
Triple - Helper class for working with autoconf configuration names.
ArchType getArch() const
Get the parsed architecture type of this triple.
LLVM_ABI unsigned getDefaultWCharSize() const
Returns the default wchar_t size (in bytes) for this target triple.
The instances of the Type class are immutable: once they are created, they are never changed.
bool isArrayTy() const
True if this is an instance of ArrayType.
Type * getArrayElementType() const
LLVM_ABI uint64_t getArrayNumElements() const
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Provides info so a possible vectorization of a function can be computed.
LLVM_ABI std::string getVectorFunctionABIVariantString() const
Returns a vector function ABI variant string on the form: ZGV<isa><mask><vlen><vparams><scalarname>(<...
StringRef getVectorFnName() const
Represents a version number in the form major[.minor[.subminor[.build]]].
static constexpr bool isKnownGT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
A raw_ostream that writes to an SmallVector or SmallString.
StringRef str() const
Return a StringRef for the vector contents.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ ARM_APCS
ARM Procedure Calling Standard (obsolete, but still used on some targets).
@ ARM_AAPCS
ARM Architecture Procedure Calling Standard calling convention (aka EABI).
@ ARM_AAPCS_VFP
Same as ARM_AAPCS, but uses hard floating point ABI.
@ C
The default llvm calling convention, compatible with C.
This is an optimization pass for GlobalISel generic memory operations.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
auto cast_or_null(const Y &Val)
void sort(IteratorTy Start, IteratorTy End)
auto lower_bound(R &&Range, T &&Value)
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
VectorLibrary
List of known vector-functions libraries.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
Implement std::hash so that hash_code can be used in STL containers.
A special type used by analysis passes to provide an address that identifies that particular analysis...