25#include "llvm/Config/llvm-config.h"
61 const std::optional<unsigned> &NumElemsArg) {
63 "Attempting to pack a reserved value");
69static std::pair<unsigned, std::optional<unsigned>>
71 unsigned NumElems = Num & std::numeric_limits<unsigned>::max();
72 unsigned ElemSizeArg = Num >> 32;
74 std::optional<unsigned> NumElemsArg;
76 NumElemsArg = NumElems;
77 return std::make_pair(ElemSizeArg, NumElemsArg);
81 std::optional<unsigned> MaxValue) {
82 return uint64_t(MinValue) << 32 | MaxValue.value_or(0);
85static std::pair<unsigned, std::optional<unsigned>>
87 unsigned MaxValue =
Value & std::numeric_limits<unsigned>::max();
88 unsigned MinValue =
Value >> 32;
90 return std::make_pair(MinValue,
91 MaxValue > 0 ? MaxValue : std::optional<unsigned>());
98 "Not an enum or int attribute");
106 assert(Val == 0 &&
"Value must be zero for enum attributes");
118 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
129 if (!Val.
empty())
ID.AddString(Val);
141 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
163 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
173 "Not a ConstantRange attribute");
189 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
199 "Not a ConstantRangeList attribute");
203 ID.AddInteger(Val.
size());
204 for (
auto &CR : Val) {
205 CR.getLower().Profile(
ID);
206 CR.getUpper().Profile(
ID);
224 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
235 return get(Context, Alignment,
A.value());
239 assert(
A <= 0x100 &&
"Alignment too large.");
240 return get(Context, StackAlignment,
A.value());
245 assert(Bytes &&
"Bytes must be non-zero.");
246 return get(Context, Dereferenceable, Bytes);
251 assert(Bytes &&
"Bytes must be non-zero.");
252 return get(Context, DereferenceableOrNull, Bytes);
256 return get(Context, ByVal, Ty);
260 return get(Context, StructRet, Ty);
264 return get(Context, ByRef, Ty);
268 return get(Context, Preallocated, Ty);
272 return get(Context, InAlloca, Ty);
287 return get(Context, NoFPClass, ClassMask);
292 const std::optional<unsigned> &NumElemsArg) {
293 assert(!(ElemSizeArg == 0 && NumElemsArg && *NumElemsArg == 0) &&
294 "Invalid allocsize arguments -- given allocsize(0, 0)");
306#define GET_ATTR_NAMES
307#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) \
308 .Case(#DISPLAY_NAME, Attribute::ENUM_NAME)
309#include "llvm/IR/Attributes.inc"
315#define GET_ATTR_NAMES
316#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) \
317 case Attribute::ENUM_NAME: \
318 return #DISPLAY_NAME;
319#include "llvm/IR/Attributes.inc"
329#define GET_ATTR_NAMES
330#define ATTRIBUTE_ALL(ENUM_NAME, DISPLAY_NAME) .Case(#DISPLAY_NAME, true)
331#include "llvm/IR/Attributes.inc"
364 if (!pImpl)
return None;
367 "Invalid attribute type to get the kind as an enum!");
372 if (!pImpl)
return 0;
374 "Expected the attribute to be an integer attribute!");
379 if (!pImpl)
return false;
381 "Expected the attribute to be a string attribute!");
386 if (!pImpl)
return {};
388 "Invalid attribute type to get the kind as a string!");
393 if (!pImpl)
return {};
395 "Invalid attribute type to get the value as a string!");
400 if (!pImpl)
return {};
402 "Invalid attribute type to get the value as a type!");
408 "Invalid attribute type to get the value as a ConstantRange!");
414 "Invalid attribute type to get the value as a ConstantRangeList!");
429 "Trying to get alignment from non-alignment attribute!");
435 "Trying to get alignment from non-alignment attribute!");
441 "Trying to get dereferenceable bytes from "
442 "non-dereferenceable attribute!");
448 "Trying to get dereferenceable bytes from "
449 "non-dereferenceable attribute!");
453std::pair<unsigned, std::optional<unsigned>>
456 "Trying to get allocsize args from non-allocsize attribute");
462 "Trying to get vscale args from non-vscale attribute");
468 "Trying to get vscale args from non-vscale attribute");
474 "Trying to get unwind table kind from non-uwtable attribute");
480 "Trying to get allockind value from non-allockind attribute");
486 "Can only call getMemoryEffects() on memory attribute");
492 "Can only call getNoFPClass() on nofpclass attribute");
498 "Trying to get range args from non-range attribute");
504 "Trying to get initializes attr from non-ConstantRangeList attribute");
523 if (!pImpl)
return {};
548 auto AttrWithBytesToString = [&](
const char *
Name) {
555 return AttrWithBytesToString(
"alignstack");
558 return AttrWithBytesToString(
"dereferenceable");
561 return AttrWithBytesToString(
"dereferenceable_or_null");
565 std::optional<unsigned> NumElems;
569 ?
"allocsize(" +
Twine(ElemSize) +
"," +
Twine(*NumElems) +
")"
570 :
"allocsize(" +
Twine(ElemSize) +
")")
577 return (
"vscale_range(" +
Twine(MinValue) +
"," +
578 Twine(MaxValue.value_or(0)) +
")")
603 return (
"allockind(\"" +
638 OS <<
"inaccessiblemem: ";
651 std::string Result =
"nofpclass";
673 OS <<
"initializes(";
695 if (!AttrVal.empty()) {
697 printEscapedString(AttrVal,
OS);
708 assert(
isValid() &&
"invalid Attribute doesn't refer to any context");
712 return C.pImpl->AttrsSet.FindNodeOrInsertPos(
ID, Unused) == pImpl;
716 if (!pImpl && !
A.pImpl)
return false;
717 if (!pImpl)
return true;
718 if (!
A.pImpl)
return false;
719 return *pImpl < *
A.pImpl;
723 ID.AddPointer(pImpl);
732#define GET_ATTR_PROP_TABLE
733#include "llvm/IR/Attributes.inc"
737 unsigned Index = Kind - 1;
738 assert(
Index < std::size(AttrPropTable) &&
"Invalid attribute kind");
739 return AttrPropTable[
Index] & Prop;
802 ->getConstantRangeValue();
808 ->getConstantRangeListValue();
826 "Unclear how to compare range list");
855 B.addAttribute(Kind);
862 B.addAttribute(Kind,
Value);
883 B.removeAttribute(Kind);
891 B.removeAttribute(Kind);
899 if (!
B.overlaps(Attrs))
927 return SetNode ? SetNode->
getAlignment() : std::nullopt;
955 return SetNode ? SetNode->
getAttributeType(Attribute::Preallocated) :
nullptr;
963 return SetNode ? SetNode->
getAttributeType(Attribute::ElementType) :
nullptr;
966std::optional<std::pair<unsigned, std::optional<unsigned>>>
998 return SetNode ? SetNode->
getAsString(InAttrGrp) :
"";
1006 return C.pImpl->AttrsSetNodes.FindNodeOrInsertPos(
ID, Unused) == SetNode;
1010 return SetNode ? SetNode->
begin() :
nullptr;
1014 return SetNode ? SetNode->
end() :
nullptr;
1017#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1030 : NumAttrs(Attrs.
size()) {
1032 llvm::copy(Attrs, getTrailingObjects<Attribute>());
1034 for (
const auto &
I : *
this) {
1035 if (
I.isStringAttribute())
1036 StringAttrs.insert({
I.getKindAsString(),
I });
1038 AvailableAttrs.addAttribute(
I.getKindAsEnum());
1046 return getSorted(
C, SortedAttrs);
1051 if (SortedAttrs.
empty())
1059 for (
const auto &Attr : SortedAttrs)
1070 void *Mem = ::operator
new(totalSizeToAlloc<Attribute>(SortedAttrs.size()));
1080 return getSorted(
C,
B.attrs());
1084 return StringAttrs.count(Kind);
1087std::optional<Attribute>
1091 return std::nullopt;
1096 std::lower_bound(
begin(),
end() - StringAttrs.size(), Kind,
1098 return A.getKindAsEnum() < Kind;
1100 assert(
I !=
end() &&
I->hasAttribute(Kind) &&
"Presence check failed?");
1105 if (
auto A = findEnumAttribute(Kind))
1111 return StringAttrs.lookup(Kind);
1115 if (
auto A = findEnumAttribute(Attribute::Alignment))
1116 return A->getAlignment();
1117 return std::nullopt;
1121 if (
auto A = findEnumAttribute(Attribute::StackAlignment))
1122 return A->getStackAlignment();
1123 return std::nullopt;
1127 if (
auto A = findEnumAttribute(Kind))
1128 return A->getValueAsType();
1133 if (
auto A = findEnumAttribute(Attribute::Dereferenceable))
1134 return A->getDereferenceableBytes();
1139 if (
auto A = findEnumAttribute(Attribute::DereferenceableOrNull))
1140 return A->getDereferenceableOrNullBytes();
1144std::optional<std::pair<unsigned, std::optional<unsigned>>>
1146 if (
auto A = findEnumAttribute(Attribute::AllocSize))
1147 return A->getAllocSizeArgs();
1148 return std::nullopt;
1152 if (
auto A = findEnumAttribute(Attribute::VScaleRange))
1153 return A->getVScaleRangeMin();
1158 if (
auto A = findEnumAttribute(Attribute::VScaleRange))
1159 return A->getVScaleRangeMax();
1160 return std::nullopt;
1164 if (
auto A = findEnumAttribute(Attribute::UWTable))
1165 return A->getUWTableKind();
1170 if (
auto A = findEnumAttribute(Attribute::AllocKind))
1171 return A->getAllocKind();
1176 if (
auto A = findEnumAttribute(Attribute::Memory))
1177 return A->getMemoryEffects();
1182 if (
auto A = findEnumAttribute(Attribute::NoFPClass))
1183 return A->getNoFPClass();
1192 Str +=
I->getAsString(InAttrGrp);
1208 : NumAttrSets(Sets.
size()) {
1209 assert(!Sets.
empty() &&
"pointless AttributeListImpl");
1212 llvm::copy(Sets, getTrailingObjects<AttributeSet>());
1217 if (!
I.isStringAttribute())
1220 for (
const auto &Set : Sets)
1221 for (
const auto &
I : Set)
1222 if (!
I.isStringAttribute())
1232 for (
const auto &Set : Sets)
1233 ID.AddPointer(Set.SetNode);
1237 unsigned *
Index)
const {
1242 for (
unsigned I = 0, E = NumAttrSets;
I != E; ++
I) {
1243 if (
begin()[
I].hasAttribute(Kind)) {
1254#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1266 assert(!AttrSets.
empty() &&
"pointless AttributeListImpl");
1274 pImpl->
AttrsLists.FindNodeOrInsertPos(
ID, InsertPoint);
1281 AttributeListImpl::totalSizeToAlloc<AttributeSet>(AttrSets.
size()),
1284 pImpl->
AttrsLists.InsertNode(PA, InsertPoint);
1293 ArrayRef<std::pair<unsigned, Attribute>> Attrs) {
1299 "Misordered Attributes list!");
1301 [](
const std::pair<unsigned, Attribute> &Pair) {
1302 return Pair.second.isValid();
1304 "Pointless attribute!");
1310 E = Attrs.end();
I != E; ) {
1311 unsigned Index =
I->first;
1313 while (
I != E &&
I->first ==
Index) {
1321 return get(
C, AttrPairVec);
1326 ArrayRef<std::pair<unsigned, AttributeSet>> Attrs) {
1332 "Misordered Attributes list!");
1334 [](
const std::pair<unsigned, AttributeSet> &Pair) {
1335 return !Pair.second.hasAttributes();
1337 "Pointless attribute!");
1339 unsigned MaxIndex = Attrs.back().first;
1343 MaxIndex = Attrs[Attrs.size() - 2].first;
1346 for (
const auto &Pair : Attrs)
1349 return getImpl(
C, AttrVec);
1358 unsigned NumSets = 0;
1359 for (
size_t I = ArgAttrs.
size();
I != 0; --
I) {
1360 if (ArgAttrs[
I - 1].hasAttributes()) {
1390 return getImpl(
C, AttrSets);
1395 if (!Attrs.hasAttributes())
1399 AttrSets[
Index] = Attrs;
1400 return getImpl(
C, AttrSets);
1411 for (
const auto K : Kinds)
1413 return get(
C, Attrs);
1419 assert(Kinds.
size() == Values.
size() &&
"Mismatched attribute values.");
1421 auto VI = Values.
begin();
1422 for (
const auto K : Kinds)
1424 return get(
C, Attrs);
1430 for (
const auto &K : Kinds)
1432 return get(
C, Attrs);
1439 if (Attrs.size() == 1)
1442 unsigned MaxSize = 0;
1443 for (
const auto &
List : Attrs)
1444 MaxSize = std::max(MaxSize,
List.getNumAttrSets());
1451 for (
unsigned I = 0;
I < MaxSize; ++
I) {
1453 for (
const auto &
List : Attrs)
1458 return getImpl(
C, NewAttrSets);
1465 if (Attrs.hasAttribute(Kind))
1477 B.addAttribute(Kind,
Value);
1493 if (Index >= AttrSets.
size())
1494 AttrSets.resize(
Index + 1);
1495 AttrSets[
Index] = Attrs;
1498 while (!AttrSets.
empty() && !AttrSets.
back().hasAttributes())
1499 AttrSets.pop_back();
1500 if (AttrSets.
empty())
1502 return AttributeList::getImpl(
C, AttrSets);
1508 if (!
B.hasAttributes())
1526 if (MaxIndex >= AttrSets.
size())
1527 AttrSets.
resize(MaxIndex + 1);
1529 for (
unsigned ArgNo : ArgNos) {
1536 return getImpl(
C, AttrSets);
1544 if (Attrs == NewAttrs)
1546 return setAttributesAtIndex(
C,
Index, NewAttrs);
1554 if (Attrs == NewAttrs)
1556 return setAttributesAtIndex(
C,
Index, NewAttrs);
1562 AttributeSet NewAttrs = Attrs.removeAttributes(
C, AttrsToRemove);
1564 if (Attrs == NewAttrs)
1566 return setAttributesAtIndex(
C,
Index, NewAttrs);
1571 unsigned WithoutIndex)
const {
1576 return setAttributesAtIndex(
C, WithoutIndex,
AttributeSet());
1582 B.addDereferenceableAttr(Bytes);
1590 B.addDereferenceableAttr(Bytes);
1598 B.addDereferenceableOrNullAttr(Bytes);
1611 const std::optional<unsigned> &NumElemsArg) {
1613 B.addAllocSizeAttr(ElemSizeArg, NumElemsArg);
1647 return pImpl && pImpl->hasFnAttribute(Kind);
1655 unsigned *
Index)
const {
1656 return pImpl && pImpl->hasAttrSomewhere(Attr,
Index);
1758 return pImpl->begin()[
Index];
1762 assert(!
isEmpty() &&
"an empty attribute list has no parent context");
1766 return C.pImpl->AttrsLists.FindNodeOrInsertPos(
ID, Unused) == pImpl;
1770 return pImpl ? pImpl->begin() :
nullptr;
1774 return pImpl ? pImpl->end() :
nullptr;
1782 return pImpl ? pImpl->NumAttrSets : 0;
1786 O <<
"AttributeList[\n";
1788 for (
unsigned i :
indexes()) {
1808#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1851template <
typename K>
1855 if (It != Attrs.end() && It->hasAttribute(Kind))
1858 Attrs.insert(It, Attr);
1882 if (It != Attrs.end() && It->hasAttribute(Val))
1889 if (It != Attrs.end() && It->hasAttribute(
A))
1894std::optional<uint64_t>
1899 return A.getValueAsInt();
1900 return std::nullopt;
1908std::optional<std::pair<unsigned, std::optional<unsigned>>>
1912 return A.getAllocSizeArgs();
1913 return std::nullopt;
1929 assert(*
Align <= 0x100 &&
"Alignment too large.");
1934 if (Bytes == 0)
return *
this;
1943 return addRawIntAttr(Attribute::DereferenceableOrNull, Bytes);
1948 const std::optional<unsigned> &NumElems) {
1954 assert(RawArgs &&
"Invalid allocsize arguments -- given allocsize(0, 0)");
1959 std::optional<unsigned> MaxValue) {
1995 return A.isValid() ?
A.getValueAsType() :
nullptr;
2046 for (
const auto &
I :
B.attrs())
2064 if (It != Attrs.end() && It->hasAttribute(
A))
2071 if (It != Attrs.end() && It->hasAttribute(
A))
2085 return Attrs ==
B.Attrs;
2097 while (
ArrayType *ArrTy = dyn_cast<ArrayType>(Ty))
2098 Ty = ArrTy->getElementType();
2163 return Incompatible;
2197 DenormalMode CallerModeF32 = Caller.getDenormalModeF32Raw();
2198 DenormalMode CalleeModeF32 = Callee.getDenormalModeF32Raw();
2200 CallerModeF32 = CallerMode;
2202 CalleeModeF32 = CalleeMode;
2212 return !Callee.getAttributes().hasFnAttr(Attribute::StrictFP) ||
2213 Caller.getAttributes().hasFnAttr(Attribute::StrictFP);
2216template<
typename AttrClass>
2218 return Caller.getFnAttribute(AttrClass::getKind()) ==
2219 Callee.getFnAttribute(AttrClass::getKind());
2224 return Caller.getFnAttribute(AttrName) == Callee.getFnAttribute(AttrName);
2232template<
typename AttrClass>
2234 if (AttrClass::isSet(Caller, AttrClass::getKind()) &&
2235 !AttrClass::isSet(Callee, AttrClass::getKind()))
2236 AttrClass::set(Caller, AttrClass::getKind(),
false);
2244template<
typename AttrClass>
2246 if (!AttrClass::isSet(Caller, AttrClass::getKind()) &&
2247 AttrClass::isSet(Callee, AttrClass::getKind()))
2248 AttrClass::set(Caller, AttrClass::getKind(),
true);
2257 if (!Caller.hasStackProtectorFnAttr())
2268 if (Callee.hasFnAttribute(Attribute::StackProtectReq)) {
2269 Caller.removeFnAttrs(OldSSPAttr);
2270 Caller.addFnAttr(Attribute::StackProtectReq);
2271 }
else if (Callee.hasFnAttribute(Attribute::StackProtectStrong) &&
2272 !Caller.hasFnAttribute(Attribute::StackProtectReq)) {
2273 Caller.removeFnAttrs(OldSSPAttr);
2274 Caller.addFnAttr(Attribute::StackProtectStrong);
2275 }
else if (Callee.hasFnAttribute(Attribute::StackProtect) &&
2276 !Caller.hasFnAttribute(Attribute::StackProtectReq) &&
2277 !Caller.hasFnAttribute(Attribute::StackProtectStrong))
2278 Caller.addFnAttr(Attribute::StackProtect);
2284 if (!Caller.hasFnAttribute(
"probe-stack") &&
2285 Callee.hasFnAttribute(
"probe-stack")) {
2286 Caller.addFnAttr(Callee.getFnAttribute(
"probe-stack"));
2295 Attribute CalleeAttr = Callee.getFnAttribute(
"stack-probe-size");
2297 Attribute CallerAttr = Caller.getFnAttribute(
"stack-probe-size");
2299 uint64_t CallerStackProbeSize, CalleeStackProbeSize;
2303 if (CallerStackProbeSize > CalleeStackProbeSize) {
2304 Caller.addFnAttr(CalleeAttr);
2307 Caller.addFnAttr(CalleeAttr);
2323 Attribute CallerAttr = Caller.getFnAttribute(
"min-legal-vector-width");
2325 Attribute CalleeAttr = Callee.getFnAttribute(
"min-legal-vector-width");
2327 uint64_t CallerVectorWidth, CalleeVectorWidth;
2330 if (CallerVectorWidth < CalleeVectorWidth)
2331 Caller.addFnAttr(CalleeAttr);
2335 Caller.removeFnAttr(
"min-legal-vector-width");
2344 if (Callee.nullPointerIsDefined() && !Caller.nullPointerIsDefined()) {
2345 Caller.addFnAttr(Attribute::NullPointerIsValid);
2368 return A.getValueAsString() ==
"true";
2373 Fn.
addFnAttr(Kind, Val ?
"true" :
"false");
2377#define GET_ATTR_NAMES
2378#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) \
2379 struct ENUM_NAME##Attr : EnumAttr { \
2380 static enum Attribute::AttrKind getKind() { \
2381 return llvm::Attribute::ENUM_NAME; \
2384#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2385 struct ENUM_NAME##Attr : StrBoolAttr { \
2386 static StringRef getKind() { return #DISPLAY_NAME; } \
2388#include "llvm/IR/Attributes.inc"
2390#define GET_ATTR_COMPAT_FUNC
2391#include "llvm/IR/Attributes.inc"
2395 return hasCompatibleFnAttrs(Caller, Callee);
2400 return hasCompatibleFnAttrs(
A,
B);
2405 mergeFnAttrs(Caller, Callee);
2418 mergeFnAttrs(
Base, ToMerge);
2427 if (Width > OldWidth)
2428 Fn.
addFnAttr(
"min-legal-vector-width", llvm::utostr(Width));
This file defines various helper methods and classes used by LLVMContextImpl for creating and managin...
static void addAttributeImpl(SmallVectorImpl< Attribute > &Attrs, K Kind, Attribute Attr)
static void setAND(Function &Caller, const Function &Callee)
Compute the logical AND of the attributes of the caller and the callee.
static void adjustCallerStackProbes(Function &Caller, const Function &Callee)
If the inlined function required stack probes, then ensure that the calling function has those too.
static std::pair< unsigned, std::optional< unsigned > > unpackVScaleRangeArgs(uint64_t Value)
static void adjustMinLegalVectorWidth(Function &Caller, const Function &Callee)
If the inlined function defines a min legal vector width, then ensure the calling function has the sa...
static void adjustCallerStackProbeSize(Function &Caller, const Function &Callee)
If the inlined function defines the size of guard region on the stack, then ensure that the calling f...
static void adjustCallerSSPLevel(Function &Caller, const Function &Callee)
If the inlined function had a higher stack protection level than the calling function,...
static bool checkStrictFP(const Function &Caller, const Function &Callee)
static uint64_t packAllocSizeArgs(unsigned ElemSizeArg, const std::optional< unsigned > &NumElemsArg)
static uint64_t packVScaleRangeArgs(unsigned MinValue, std::optional< unsigned > MaxValue)
static unsigned attrIdxToArrayIdx(unsigned Index)
Map from AttributeList index to the internal array index.
static bool denormModeCompatible(DenormalMode CallerMode, DenormalMode CalleeMode)
Callees with dynamic denormal modes are compatible with any caller mode.
static void adjustNullPointerValidAttr(Function &Caller, const Function &Callee)
If the inlined function has null_pointer_is_valid attribute, set this attribute in the caller post in...
static const unsigned AllocSizeNumElemsNotPresent
static std::pair< unsigned, std::optional< unsigned > > unpackAllocSizeArgs(uint64_t Num)
static bool checkDenormMode(const Function &Caller, const Function &Callee)
static void setOR(Function &Caller, const Function &Callee)
Compute the logical OR of the attributes of the caller and the callee.
static bool hasAttributeProperty(Attribute::AttrKind Kind, AttributeProperty Prop)
static const char * getModRefStr(ModRefInfo MR)
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
This file defines a hash set that can be used to remove duplication of nodes in a graph.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallVector class.
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
void Profile(FoldingSetNodeID &id) const
Used to insert APInt objects, or objects that contain APInt objects, into FoldingSets.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & back() const
back - Get the last element.
ArrayRef< T > take_front(size_t N=1) const
Return a copy of *this with only the first N elements.
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
Class to represent array types.
AttrBuilder & addStructRetAttr(Type *Ty)
This turns a sret type into the form used internally in Attribute.
AttrBuilder & addAlignmentAttr(MaybeAlign Align)
This turns an alignment into the form used internally in Attribute.
AttrBuilder & addVScaleRangeAttrFromRawRepr(uint64_t RawVScaleRangeRepr)
Add a vscale_range attribute, using the representation returned by Attribute.getIntValue().
std::optional< uint64_t > getRawIntAttr(Attribute::AttrKind Kind) const
Return raw (possibly packed/encoded) value of integer attribute or std::nullopt if not set.
AttrBuilder & addAllocKindAttr(AllocFnKind Kind)
Attribute getAttribute(Attribute::AttrKind Kind) const
Return Attribute with the given Kind.
AttrBuilder & addByRefAttr(Type *Ty)
This turns a byref type into the form used internally in Attribute.
AttrBuilder & addNoFPClassAttr(FPClassTest NoFPClassMask)
bool overlaps(const AttributeMask &AM) const
Return true if the builder has any attribute that's in the specified builder.
AttrBuilder & merge(const AttrBuilder &B)
Add the attributes from the builder.
AttrBuilder & addVScaleRangeAttr(unsigned MinValue, std::optional< unsigned > MaxValue)
This turns two ints into the form used internally in Attribute.
AttrBuilder(LLVMContext &Ctx)
AttrBuilder & addRawIntAttr(Attribute::AttrKind Kind, uint64_t Value)
Add integer attribute with raw value (packed/encoded if necessary).
AttrBuilder & addAttribute(Attribute::AttrKind Val)
Add an attribute to the builder.
AttrBuilder & addByValAttr(Type *Ty)
This turns a byval type into the form used internally in Attribute.
AttrBuilder & addDereferenceableAttr(uint64_t Bytes)
This turns the number of dereferenceable bytes into the form used internally in Attribute.
AttrBuilder & addInitializesAttr(const ConstantRangeList &CRL)
Add initializes attribute.
bool contains(Attribute::AttrKind A) const
Return true if the builder has the specified attribute.
AttrBuilder & addMemoryAttr(MemoryEffects ME)
Add memory effect attribute.
AttrBuilder & addConstantRangeListAttr(Attribute::AttrKind Kind, ArrayRef< ConstantRange > Val)
Add a ConstantRangeList attribute with the given ranges.
AttrBuilder & addConstantRangeAttr(Attribute::AttrKind Kind, const ConstantRange &CR)
Add a ConstantRange attribute with the given range.
AttrBuilder & addAllocSizeAttrFromRawRepr(uint64_t RawAllocSizeRepr)
Add an allocsize attribute, using the representation returned by Attribute.getIntValue().
AttrBuilder & addPreallocatedAttr(Type *Ty)
This turns a preallocated type into the form used internally in Attribute.
AttrBuilder & addStackAlignmentAttr(MaybeAlign Align)
This turns a stack alignment into the form used internally in Attribute.
AttrBuilder & addInAllocaAttr(Type *Ty)
This turns an inalloca type into the form used internally in Attribute.
AttrBuilder & removeAttribute(Attribute::AttrKind Val)
Remove an attribute from the builder.
bool operator==(const AttrBuilder &B) const
Type * getTypeAttr(Attribute::AttrKind Kind) const
Retrieve type for the given type attribute.
AttrBuilder & remove(const AttributeMask &AM)
Remove the attributes from the builder.
AttrBuilder & addDereferenceableOrNullAttr(uint64_t Bytes)
This turns the number of dereferenceable_or_null bytes into the form used internally in Attribute.
AttrBuilder & addTypeAttr(Attribute::AttrKind Kind, Type *Ty)
Add a type attribute with the given type.
std::optional< std::pair< unsigned, std::optional< unsigned > > > getAllocSizeArgs() const
Retrieve the allocsize args, or std::nullopt if the attribute does not exist.
AttrBuilder & addAllocSizeAttr(unsigned ElemSizeArg, const std::optional< unsigned > &NumElemsArg)
This turns one (or two) ints into the form used internally in Attribute.
AttrBuilder & addRangeAttr(const ConstantRange &CR)
Add range attribute.
AttrBuilder & addUWTableAttr(UWTableKind Kind)
This turns the unwind table kind into the form used internally in Attribute.
void addAttribute(Attribute::AttrKind Kind)
bool hasAttribute(Attribute::AttrKind Kind) const
bool isConstantRangeAttribute() const
bool hasAttribute(Attribute::AttrKind A) const
void Profile(FoldingSetNodeID &ID) const
Type * getValueAsType() const
Attribute::AttrKind getKindAsEnum() const
bool operator<(const AttributeImpl &AI) const
Used when sorting the attributes.
uint64_t getValueAsInt() const
bool isIntAttribute() const
bool isTypeAttribute() const
bool getValueAsBool() const
StringRef getKindAsString() const
StringRef getValueAsString() const
bool isEnumAttribute() const
ArrayRef< ConstantRange > getValueAsConstantRangeList() const
bool isConstantRangeListAttribute() const
bool isStringAttribute() const
const ConstantRange & getValueAsConstantRange() const
bool hasAttrSomewhere(Attribute::AttrKind Kind, unsigned *Index=nullptr) const
Return true if the specified attribute is set for at least one parameter or for the return value.
void Profile(FoldingSetNodeID &ID) const
AttributeListImpl(ArrayRef< AttributeSet > Sets)
friend class AttributeList
bool hasAttributeAtIndex(unsigned Index, Attribute::AttrKind Kind) const
Return true if the attribute exists at the given index.
Type * getParamStructRetType(unsigned ArgNo) const
Return the sret type for the specified function parameter.
AttributeList addDereferenceableParamAttr(LLVMContext &C, unsigned ArgNo, uint64_t Bytes) const
Add the dereferenceable attribute to the attribute set at the given arg index.
AttributeList removeAttributeAtIndex(LLVMContext &C, unsigned Index, Attribute::AttrKind Kind) const
Remove the specified attribute at the specified index from this attribute list.
AttributeList addRangeRetAttr(LLVMContext &C, const ConstantRange &CR) const
Add the range attribute to the attribute set at the return value index.
bool hasAttributesAtIndex(unsigned Index) const
Return true if attribute exists at the given index.
friend class AttributeListImpl
AttributeSet getFnAttrs() const
The function attributes are returned.
index_iterator indexes() const
Use this to iterate over the valid attribute indexes.
AttributeList removeAttributesAtIndex(LLVMContext &C, unsigned Index, const AttributeMask &AttrsToRemove) const
Remove the specified attributes at the specified index from this attribute list.
friend class AttributeSet
AttributeList addAllocSizeParamAttr(LLVMContext &C, unsigned ArgNo, unsigned ElemSizeArg, const std::optional< unsigned > &NumElemsArg)
Add the allocsize attribute to the attribute set at the given arg index.
MaybeAlign getRetStackAlignment() const
Get the stack alignment of the return value.
AttributeList addRetAttributes(LLVMContext &C, const AttrBuilder &B) const
Add a return value attribute to the list.
void print(raw_ostream &O) const
AttributeList addDereferenceableRetAttr(LLVMContext &C, uint64_t Bytes) const
Add the dereferenceable attribute to the attribute set at the given index.
static AttributeList get(LLVMContext &C, ArrayRef< std::pair< unsigned, Attribute > > Attrs)
Create an AttributeList with the specified parameters in it.
AllocFnKind getAllocKind() const
bool isEmpty() const
Return true if there are no attributes.
AttributeSet getRetAttrs() const
The attributes for the ret value are returned.
bool hasFnAttr(Attribute::AttrKind Kind) const
Return true if the attribute exists for the function.
uint64_t getParamDereferenceableBytes(unsigned Index) const
Get the number of dereferenceable bytes (or zero if unknown) of an arg.
MaybeAlign getParamAlignment(unsigned ArgNo) const
Return the alignment for the specified function parameter.
bool hasAttrSomewhere(Attribute::AttrKind Kind, unsigned *Index=nullptr) const
Return true if the specified attribute is set for at least one parameter or for the return value.
Type * getParamInAllocaType(unsigned ArgNo) const
Return the inalloca type for the specified function parameter.
unsigned getNumAttrSets() const
FPClassTest getRetNoFPClass() const
Get the disallowed floating-point classes of the return value.
std::string getAsString(unsigned Index, bool InAttrGrp=false) const
Return the attributes at the index as a string.
UWTableKind getUWTableKind() const
Get the unwind table kind requested for the function.
MaybeAlign getRetAlignment() const
Return the alignment of the return value.
Type * getParamElementType(unsigned ArgNo) const
Return the elementtype type for the specified function parameter.
Attribute getAttributeAtIndex(unsigned Index, Attribute::AttrKind Kind) const
Return the attribute object that exists at the given index.
Type * getParamPreallocatedType(unsigned ArgNo) const
Return the preallocated type for the specified function parameter.
bool hasParentContext(LLVMContext &C) const
Return true if this attribute list belongs to the LLVMContext.
const AttributeSet * iterator
MaybeAlign getFnStackAlignment() const
Get the stack alignment of the function.
AttributeList addAttributesAtIndex(LLVMContext &C, unsigned Index, const AttrBuilder &B) const
Add attributes to the attribute set at the given index.
Type * getParamByValType(unsigned ArgNo) const
Return the byval type for the specified function parameter.
MaybeAlign getParamStackAlignment(unsigned ArgNo) const
Return the stack alignment for the specified function parameter.
uint64_t getRetDereferenceableBytes() const
Get the number of dereferenceable bytes (or zero if unknown) of the return value.
uint64_t getParamDereferenceableOrNullBytes(unsigned ArgNo) const
Get the number of dereferenceable_or_null bytes (or zero if unknown) of an arg.
AttributeList addDereferenceableOrNullParamAttr(LLVMContext &C, unsigned ArgNo, uint64_t Bytes) const
Add the dereferenceable_or_null attribute to the attribute set at the given arg index.
AttributeSet getAttributes(unsigned Index) const
The attributes for the specified index are returned.
FPClassTest getParamNoFPClass(unsigned ArgNo) const
Get the disallowed floating-point classes of the argument value.
Type * getParamByRefType(unsigned ArgNo) const
Return the byref type for the specified function parameter.
AttributeList addAttributeAtIndex(LLVMContext &C, unsigned Index, Attribute::AttrKind Kind) const
Add an attribute to the attribute set at the given index.
AttributeSet getParamAttrs(unsigned ArgNo) const
The attributes for the argument or parameter at the given index are returned.
AttributeList addParamAttributes(LLVMContext &C, unsigned ArgNo, const AttrBuilder &B) const
Add an argument attribute to the list.
uint64_t getRetDereferenceableOrNullBytes() const
Get the number of dereferenceable_or_null bytes (or zero if unknown) of the return value.
AttributeList addParamAttribute(LLVMContext &C, unsigned ArgNo, Attribute::AttrKind Kind) const
Add an argument attribute to the list.
MemoryEffects getMemoryEffects() const
Returns memory effects of the function.
AttributeMask & addAttribute(Attribute::AttrKind Val)
Add an attribute to the mask.
bool contains(Attribute::AttrKind A) const
Return true if the builder has the specified attribute.
MaybeAlign getStackAlignment() const
uint64_t getDereferenceableOrNullBytes() const
std::optional< unsigned > getVScaleRangeMax() const
bool hasAttribute(Attribute::AttrKind Kind) const
Type * getAttributeType(Attribute::AttrKind Kind) const
AllocFnKind getAllocKind() const
unsigned getVScaleRangeMin() const
MaybeAlign getAlignment() const
MemoryEffects getMemoryEffects() const
UWTableKind getUWTableKind() const
std::optional< std::pair< unsigned, std::optional< unsigned > > > getAllocSizeArgs() const
uint64_t getDereferenceableBytes() const
unsigned getNumAttributes() const
Return the number of attributes this AttributeList contains.
void Profile(FoldingSetNodeID &ID) const
std::string getAsString(bool InAttrGrp) const
static AttributeSetNode * get(LLVMContext &C, const AttrBuilder &B)
FPClassTest getNoFPClass() const
Attribute getAttribute(Attribute::AttrKind Kind) const
AllocFnKind getAllocKind() const
bool hasAttributes() const
Return true if attributes exists in this set.
AttributeSet removeAttribute(LLVMContext &C, Attribute::AttrKind Kind) const
Remove the specified attribute from this set.
Type * getInAllocaType() const
Type * getByValType() const
AttributeSet addAttributes(LLVMContext &C, AttributeSet AS) const
Add attributes to the attribute set.
MemoryEffects getMemoryEffects() const
bool hasAttribute(Attribute::AttrKind Kind) const
Return true if the attribute exists in this set.
Type * getStructRetType() const
std::string getAsString(bool InAttrGrp=false) const
unsigned getVScaleRangeMin() const
std::optional< std::pair< unsigned, std::optional< unsigned > > > getAllocSizeArgs() const
UWTableKind getUWTableKind() const
bool hasParentContext(LLVMContext &C) const
Return true if this attribute set belongs to the LLVMContext.
AttributeSet removeAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const
Remove the specified attributes from this set.
std::optional< unsigned > getVScaleRangeMax() const
MaybeAlign getStackAlignment() const
Attribute getAttribute(Attribute::AttrKind Kind) const
Return the attribute object.
Type * getPreallocatedType() const
uint64_t getDereferenceableBytes() const
MaybeAlign getAlignment() const
FPClassTest getNoFPClass() const
Type * getElementType() const
Type * getByRefType() const
AttributeSet()=default
AttributeSet is a trivially copyable value type.
static AttributeSet get(LLVMContext &C, const AttrBuilder &B)
uint64_t getDereferenceableOrNullBytes() const
unsigned getNumAttributes() const
Return the number of attributes in this set.
AttributeSet addAttribute(LLVMContext &C, Attribute::AttrKind Kind) const
Add an argument attribute.
bool isStringAttribute() const
Return true if the attribute is a string (target-dependent) attribute.
static Attribute getWithStructRetType(LLVMContext &Context, Type *Ty)
static Attribute::AttrKind getAttrKindFromName(StringRef AttrName)
bool isEnumAttribute() const
Return true if the attribute is an Attribute::AttrKind type.
static Attribute getWithStackAlignment(LLVMContext &Context, Align Alignment)
const ConstantRange & getRange() const
Returns the value of the range attribute.
bool isIntAttribute() const
Return true if the attribute is an integer attribute.
static Attribute getWithByRefType(LLVMContext &Context, Type *Ty)
std::optional< unsigned > getVScaleRangeMax() const
Returns the maximum value for the vscale_range attribute or std::nullopt when unknown.
uint64_t getValueAsInt() const
Return the attribute's value as an integer.
unsigned getVScaleRangeMin() const
Returns the minimum value for the vscale_range attribute.
AllocFnKind getAllocKind() const
bool isConstantRangeAttribute() const
Return true if the attribute is a ConstantRange attribute.
StringRef getKindAsString() const
Return the attribute's kind as a string.
static Attribute getWithPreallocatedType(LLVMContext &Context, Type *Ty)
static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val=0)
Return a uniquified Attribute object.
static bool canUseAsRetAttr(AttrKind Kind)
static bool isTypeAttrKind(AttrKind Kind)
std::string getAsString(bool InAttrGrp=false) const
The Attribute is converted to a string of equivalent mnemonic.
uint64_t getDereferenceableOrNullBytes() const
Returns the number of dereferenceable_or_null bytes from the dereferenceable_or_null attribute.
static Attribute getWithDereferenceableBytes(LLVMContext &Context, uint64_t Bytes)
std::pair< unsigned, std::optional< unsigned > > getAllocSizeArgs() const
Returns the argument numbers for the allocsize attribute.
static Attribute getWithUWTableKind(LLVMContext &Context, UWTableKind Kind)
FPClassTest getNoFPClass() const
Return the FPClassTest for nofpclass.
static Attribute getWithAllocSizeArgs(LLVMContext &Context, unsigned ElemSizeArg, const std::optional< unsigned > &NumElemsArg)
Attribute::AttrKind getKindAsEnum() const
Return the attribute's kind as an enum (Attribute::AttrKind).
bool getValueAsBool() const
Return the attribute's value as a boolean.
ArrayRef< ConstantRange > getInitializes() const
Returns the value of the initializes attribute.
const ConstantRange & getValueAsConstantRange() const
Return the attribute's value as a ConstantRange.
uint64_t getDereferenceableBytes() const
Returns the number of dereferenceable bytes from the dereferenceable attribute.
static Attribute getWithVScaleRangeArgs(LLVMContext &Context, unsigned MinValue, unsigned MaxValue)
MemoryEffects getMemoryEffects() const
Returns memory effects.
void Profile(FoldingSetNodeID &ID) const
UWTableKind getUWTableKind() const
static Attribute getWithDereferenceableOrNullBytes(LLVMContext &Context, uint64_t Bytes)
ArrayRef< ConstantRange > getValueAsConstantRangeList() const
Return the attribute's value as a ConstantRange array.
StringRef getValueAsString() const
Return the attribute's value as a string.
static bool isExistingAttribute(StringRef Name)
Return true if the provided string matches the IR name of an attribute.
static StringRef getNameFromAttrKind(Attribute::AttrKind AttrKind)
static bool canUseAsFnAttr(AttrKind Kind)
static Attribute getWithNoFPClass(LLVMContext &Context, FPClassTest Mask)
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
@ None
No attributes have been set.
@ EndAttrKinds
Sentinel value useful for loops.
static bool isConstantRangeAttrKind(AttrKind Kind)
bool hasParentContext(LLVMContext &C) const
Return true if this attribute belongs to the LLVMContext.
bool isTypeAttribute() const
Return true if the attribute is a type attribute.
static Attribute getWithInAllocaType(LLVMContext &Context, Type *Ty)
static bool isIntAttrKind(AttrKind Kind)
static bool isConstantRangeListAttrKind(AttrKind Kind)
bool isConstantRangeListAttribute() const
Return true if the attribute is a ConstantRangeList attribute.
static Attribute getWithByValType(LLVMContext &Context, Type *Ty)
bool hasAttribute(AttrKind Val) const
Return true if the attribute is present.
static bool isEnumAttrKind(AttrKind Kind)
static Attribute getWithMemoryEffects(LLVMContext &Context, MemoryEffects ME)
static bool canUseAsParamAttr(AttrKind Kind)
bool isValid() const
Return true if the attribute is any kind of attribute.
MaybeAlign getStackAlignment() const
Returns the stack alignment field of an attribute as a byte alignment value.
MaybeAlign getAlignment() const
Returns the alignment field of an attribute as a byte alignment value.
bool operator<(Attribute A) const
Less-than operator. Useful for sorting the attributes list.
static Attribute getWithAlignment(LLVMContext &Context, Align Alignment)
Return a uniquified Attribute object that has the specific alignment set.
Type * getValueAsType() const
Return the attribute's value as a Type.
LLVM_ATTRIBUTE_RETURNS_NONNULL void * Allocate(size_t Size, Align Alignment)
Allocate space at the specified alignment.
static size_t totalSizeToAlloc(ArrayRef< ConstantRange > Val)
This class represents a list of constant ranges.
ArrayRef< ConstantRange > rangesRef() const
void print(raw_ostream &OS) const
Print out the ranges to a stream.
This class represents a range of values.
const APInt & getLower() const
Return the lower value for this range.
bool isFullSet() const
Return true if this set contains all of the elements possible for this data-type.
const APInt & getUpper() const
Return the upper value for this range.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
FoldingSetNodeID - This class is used to gather all the unique data bits of a node.
void addFnAttr(Attribute::AttrKind Kind)
Add function attributes to this function.
Attribute getFnAttribute(Attribute::AttrKind Kind) const
Return the attribute for the given attribute kind.
void removeFnAttr(Attribute::AttrKind Kind)
Remove function attributes from this function.
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
FoldingSet< AttributeImpl > AttrsSet
FoldingSet< AttributeSetNode > AttrsSetNodes
FoldingSet< AttributeListImpl > AttrsLists
SpecificBumpPtrAllocator< ConstantRangeAttributeImpl > ConstantRangeAttributeAlloc
std::vector< ConstantRangeListAttributeImpl * > ConstantRangeListAttributes
This is an important class for using LLVM in a threaded context.
LLVMContextImpl *const pImpl
ModRefInfo getModRef(Location Loc) const
Get ModRefInfo for the given Location.
static MemoryEffectsBase createFromIntValue(uint32_t Data)
Create MemoryEffectsBase from an encoded integer value (used by memory attribute).
static auto locations()
Returns iterator over all supported location kinds.
uint32_t toIntValue() const
Convert MemoryEffectsBase into an encoded integer value (used by memory attribute).
static MemoryEffectsBase unknown()
Create MemoryEffectsBase that can read and write any memory.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
static size_t totalSizeToAlloc(StringRef Kind, StringRef Val)
StringRef - Represent a constant reference to a string, i.e.
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
std::string str() const
str - Get the contents as an std::string.
constexpr bool empty() const
empty - Check if the string is empty.
A switch()-like statement whose cases are string literals.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
bool isPointerTy() const
True if this is an instance of PointerType.
void print(raw_ostream &O, bool IsForDebug=false, bool NoDetails=false) const
Print the current type.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
bool isIntegerTy() const
True if this is an instance of IntegerType.
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
bool isVoidTy() const
Return true if this is 'void'.
LLVM Value Representation.
static constexpr uint64_t MaximumAlignment
This class implements an extremely fast bulk output stream that can only output to a stream.
A raw_ostream that writes to an std::string.
This class provides various memory handling functions that manipulate MemoryBlock instances.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
bool areInlineCompatible(const Function &Caller, const Function &Callee)
AttributeMask getUBImplyingAttributes()
Get param/return attributes which imply immediate undefined behavior if an invalid value is passed.
bool isNoFPClassCompatibleType(Type *Ty)
Returns true if this is a type legal for the 'nofpclass' attribute.
bool areOutlineCompatible(const Function &A, const Function &B)
Checks if there are any incompatible function attributes between A and B.
void updateMinLegalVectorWidthAttr(Function &Fn, uint64_t Width)
Update min-legal-vector-width if it is in Attribute and less than Width.
void mergeAttributesForOutlining(Function &Base, const Function &ToMerge)
Merges the functions attributes from ToMerge into function Base.
void mergeAttributesForInlining(Function &Caller, const Function &Callee)
Merge caller's and callee's attributes.
AttributeMask typeIncompatible(Type *Ty, AttributeSafetyKind ASK=ASK_ALL)
Which attributes cannot be applied to a type.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ C
The default llvm calling convention, compatible with C.
This is an optimization pass for GlobalISel generic memory operations.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
bool isEqual(const GCNRPTracker::LiveRegSet &S1, const GCNRPTracker::LiveRegSet &S2)
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
@ None
No unwind table requested.
void sort(IteratorTy Start, IteratorTy End)
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
bool is_sorted(R &&Range, Compare C)
Wrapper function around std::is_sorted to check if elements in a range R are sorted with respect to a...
ModRefInfo
Flags indicating whether a memory access modifies or references memory.
@ Ref
The access may reference the value stored in memory.
@ ModRef
The access may reference and may modify the value stored in memory.
@ Mod
The access may modify the value stored in memory.
@ NoModRef
The access neither references nor modifies the value stored in memory.
@ ArgMem
Access to memory via argument pointers.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
@ InaccessibleMem
Memory that is inaccessible via LLVM IR.
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 copy(R &&Range, OutputIt Out)
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Attribute comparator that only compares attribute keys.
bool operator()(Attribute A0, StringRef Kind) const
bool operator()(Attribute A0, Attribute A1) const
bool operator()(Attribute A0, Attribute::AttrKind Kind) const
static void set(Function &Fn, Attribute::AttrKind Kind, bool Val)
static bool isSet(const Function &Fn, Attribute::AttrKind Kind)
static bool isSet(const Function &Fn, StringRef Kind)
static void set(Function &Fn, StringRef Kind, bool Val)
This struct is a compact representation of a valid (non-zero power of two) alignment.
uint64_t value() const
This is a hole in the type system and should not be abused.
Represent subnormal handling kind for floating point instruction inputs and outputs.
DenormalModeKind Input
Denormal treatment kind for floating point instruction inputs in the default floating-point environme...
@ Dynamic
Denormals have unknown treatment.
static constexpr DenormalMode getInvalid()
DenormalModeKind Output
Denormal flushing mode for floating point instruction results in the default floating point environme...
static constexpr DenormalMode getDynamic()
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Function object to check whether the first component of a container supported by std::get (like std::...