25#include "llvm/Config/llvm-config.h"
62 const std::optional<unsigned> &NumElemsArg) {
64 "Attempting to pack a reserved value");
70static std::pair<unsigned, std::optional<unsigned>>
72 unsigned NumElems = Num & std::numeric_limits<unsigned>::max();
73 unsigned ElemSizeArg = Num >> 32;
75 std::optional<unsigned> NumElemsArg;
77 NumElemsArg = NumElems;
78 return std::make_pair(ElemSizeArg, NumElemsArg);
82 std::optional<unsigned> MaxValue) {
83 return uint64_t(MinValue) << 32 | MaxValue.value_or(0);
86static std::pair<unsigned, std::optional<unsigned>>
88 unsigned MaxValue =
Value & std::numeric_limits<unsigned>::max();
89 unsigned MinValue =
Value >> 32;
91 return std::make_pair(MinValue,
92 MaxValue > 0 ? MaxValue : std::optional<unsigned>());
99 "Not an enum or int attribute");
107 assert(Val == 0 &&
"Value must be zero for enum attributes");
119 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
130 if (!Val.
empty())
ID.AddString(Val);
142 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
164 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
174 "Not a ConstantRange attribute");
190 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
200 "Not a ConstantRangeList attribute");
204 ID.AddInteger(Val.
size());
205 for (
auto &CR : Val) {
206 CR.getLower().Profile(
ID);
207 CR.getUpper().Profile(
ID);
225 pImpl->
AttrsSet.InsertNode(PA, InsertPoint);
236 return get(Context, Alignment,
A.value());
240 assert(
A <= 0x100 &&
"Alignment too large.");
241 return get(Context, StackAlignment,
A.value());
246 assert(Bytes &&
"Bytes must be non-zero.");
247 return get(Context, Dereferenceable, Bytes);
252 assert(Bytes &&
"Bytes must be non-zero.");
253 return get(Context, DereferenceableOrNull, Bytes);
257 return get(Context, ByVal, Ty);
261 return get(Context, StructRet, Ty);
265 return get(Context, ByRef, Ty);
269 return get(Context, Preallocated, Ty);
273 return get(Context, InAlloca, Ty);
288 return get(Context, NoFPClass, ClassMask);
297 const std::optional<unsigned> &NumElemsArg) {
298 assert(!(ElemSizeArg == 0 && NumElemsArg && *NumElemsArg == 0) &&
299 "Invalid allocsize arguments -- given allocsize(0, 0)");
311#define GET_ATTR_NAMES
312#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) \
313 .Case(#DISPLAY_NAME, Attribute::ENUM_NAME)
314#include "llvm/IR/Attributes.inc"
320#define GET_ATTR_NAMES
321#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) \
322 case Attribute::ENUM_NAME: \
323 return #DISPLAY_NAME;
324#include "llvm/IR/Attributes.inc"
334#define GET_ATTR_NAMES
335#define ATTRIBUTE_ALL(ENUM_NAME, DISPLAY_NAME) .Case(#DISPLAY_NAME, true)
336#include "llvm/IR/Attributes.inc"
369 if (!pImpl)
return None;
371 "Invalid attribute type to get the kind as an enum!");
376 if (!pImpl)
return 0;
378 "Expected the attribute to be an integer attribute!");
383 if (!pImpl)
return false;
385 "Expected the attribute to be a string attribute!");
390 if (!pImpl)
return {};
392 "Invalid attribute type to get the kind as a string!");
397 if (!pImpl)
return {};
399 "Invalid attribute type to get the value as a string!");
404 if (!pImpl)
return {};
406 "Invalid attribute type to get the value as a type!");
412 "Invalid attribute type to get the value as a ConstantRange!");
418 "Invalid attribute type to get the value as a ConstantRangeList!");
433 "Trying to get alignment from non-alignment attribute!");
439 "Trying to get alignment from non-alignment attribute!");
445 "Trying to get dereferenceable bytes from "
446 "non-dereferenceable attribute!");
452 "Trying to get dereferenceable bytes from "
453 "non-dereferenceable attribute!");
457std::pair<unsigned, std::optional<unsigned>>
460 "Trying to get allocsize args from non-allocsize attribute");
466 "Trying to get vscale args from non-vscale attribute");
472 "Trying to get vscale args from non-vscale attribute");
478 "Trying to get unwind table kind from non-uwtable attribute");
484 "Trying to get allockind value from non-allockind attribute");
490 "Can only call getMemoryEffects() on memory attribute");
496 "Can only call getCaptureInfo() on captures attribute");
502 "Can only call getNoFPClass() on nofpclass attribute");
508 "Trying to get range args from non-range attribute");
514 "Trying to get initializes attr from non-ConstantRangeList attribute");
533 if (!pImpl)
return {};
558 auto AttrWithBytesToString = [&](
const char *
Name) {
565 return AttrWithBytesToString(
"alignstack");
568 return AttrWithBytesToString(
"dereferenceable");
571 return AttrWithBytesToString(
"dereferenceable_or_null");
575 std::optional<unsigned> NumElems;
579 ?
"allocsize(" +
Twine(ElemSize) +
"," +
Twine(*NumElems) +
")"
580 :
"allocsize(" +
Twine(ElemSize) +
")")
587 return (
"vscale_range(" +
Twine(MinValue) +
"," +
588 Twine(MaxValue.value_or(0)) +
")")
613 return (
"allockind(\"" +
648 OS <<
"inaccessiblemem: ";
668 std::string Result =
"nofpclass";
690 OS <<
"initializes(";
712 if (!AttrVal.empty()) {
714 printEscapedString(AttrVal,
OS);
725 assert(
isValid() &&
"invalid Attribute doesn't refer to any context");
729 return C.pImpl->AttrsSet.FindNodeOrInsertPos(
ID, Unused) == pImpl;
733 if (!pImpl && !
A.pImpl)
739 return pImpl->
cmp(*
A.pImpl,
true);
743 if (!pImpl && !
A.pImpl)
return false;
744 if (!pImpl)
return true;
745 if (!
A.pImpl)
return false;
746 return *pImpl < *
A.pImpl;
750 ID.AddPointer(pImpl);
764#define GET_ATTR_PROP_TABLE
765#include "llvm/IR/Attributes.inc"
768 unsigned Index = Kind - 1;
769 assert(Index < std::size(AttrPropTable) &&
"Invalid attribute kind");
770 return AttrPropTable[Index];
792 assert((Prop == AttributeProperty::IntersectPreserve ||
793 Prop == AttributeProperty::IntersectAnd ||
794 Prop == AttributeProperty::IntersectMin ||
795 Prop == AttributeProperty::IntersectCustom) &&
796 "Unknown intersect property");
798 AttributeProperty::IntersectPropertyMask) == Prop;
862 ->getConstantRangeValue();
868 ->getConstantRangeListValue();
890 "Unclear how to compare range list");
907 return cmp(AI,
false) < 0;
926 B.addAttribute(Kind);
933 B.addAttribute(Kind,
Value);
954 B.removeAttribute(Kind);
962 B.removeAttribute(Kind);
970 if (!
B.overlaps(Attrs))
977std::optional<AttributeSet>
984 auto ItBegin0 =
begin();
986 auto ItBegin1 =
Other.begin();
987 auto ItEnd1 =
Other.end();
989 while (ItBegin0 != ItEnd0 || ItBegin1 != ItEnd1) {
994 if (ItBegin1 == ItEnd1)
996 else if (ItBegin0 == ItEnd0)
999 int Cmp = ItBegin0->cmpKind(*ItBegin1);
1001 Attr0 = *ItBegin0++;
1002 Attr1 = *ItBegin1++;
1004 Attr0 = *ItBegin0++;
1006 Attr0 = *ItBegin1++;
1008 assert(Attr0.
isValid() &&
"Iteration should always yield a valid attr");
1010 auto IntersectEq = [&]() {
1023 return std::nullopt;
1032 return std::nullopt;
1038 "Iterator picked up two different attributes in the same iteration");
1043 "Invalid attr type of intersectAnd");
1051 "Invalid attr type of intersectMin");
1059 case Attribute::Alignment:
1066 case Attribute::Memory:
1070 case Attribute::Captures:
1074 case Attribute::NoFPClass:
1078 case Attribute::Range: {
1094 return std::nullopt;
1098 if (Kind == Attribute::ByVal &&
1100 Other.getAttribute(Attribute::Alignment))
1101 return std::nullopt;
1104 return get(
C, Intersected);
1128 return SetNode ? SetNode->
getAlignment() : std::nullopt;
1152 return SetNode ? SetNode->
getAttributeType(Attribute::StructRet) :
nullptr;
1156 return SetNode ? SetNode->
getAttributeType(Attribute::Preallocated) :
nullptr;
1164 return SetNode ? SetNode->
getAttributeType(Attribute::ElementType) :
nullptr;
1167std::optional<std::pair<unsigned, std::optional<unsigned>>>
1171 return std::nullopt;
1203 return SetNode ? SetNode->
getAsString(InAttrGrp) :
"";
1211 return C.pImpl->AttrsSetNodes.FindNodeOrInsertPos(
ID, Unused) == SetNode;
1215 return SetNode ? SetNode->
begin() :
nullptr;
1219 return SetNode ? SetNode->
end() :
nullptr;
1222#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1235 : NumAttrs(Attrs.
size()) {
1237 llvm::copy(Attrs, getTrailingObjects<Attribute>());
1239 for (
const auto &
I : *
this) {
1240 if (
I.isStringAttribute())
1241 StringAttrs.insert({
I.getKindAsString(),
I });
1243 AvailableAttrs.addAttribute(
I.getKindAsEnum());
1251 return getSorted(
C, SortedAttrs);
1256 if (SortedAttrs.
empty())
1264 for (
const auto &Attr : SortedAttrs)
1275 void *Mem = ::operator
new(totalSizeToAlloc<Attribute>(SortedAttrs.size()));
1285 return getSorted(
C,
B.attrs());
1289 return StringAttrs.count(Kind);
1292std::optional<Attribute>
1296 return std::nullopt;
1301 std::lower_bound(
begin(),
end() - StringAttrs.size(), Kind,
1303 return A.getKindAsEnum() < Kind;
1305 assert(
I !=
end() &&
I->hasAttribute(Kind) &&
"Presence check failed?");
1310 if (
auto A = findEnumAttribute(Kind))
1316 return StringAttrs.lookup(Kind);
1320 if (
auto A = findEnumAttribute(Attribute::Alignment))
1321 return A->getAlignment();
1322 return std::nullopt;
1326 if (
auto A = findEnumAttribute(Attribute::StackAlignment))
1327 return A->getStackAlignment();
1328 return std::nullopt;
1332 if (
auto A = findEnumAttribute(Kind))
1333 return A->getValueAsType();
1338 if (
auto A = findEnumAttribute(Attribute::Dereferenceable))
1339 return A->getDereferenceableBytes();
1344 if (
auto A = findEnumAttribute(Attribute::DereferenceableOrNull))
1345 return A->getDereferenceableOrNullBytes();
1349std::optional<std::pair<unsigned, std::optional<unsigned>>>
1351 if (
auto A = findEnumAttribute(Attribute::AllocSize))
1352 return A->getAllocSizeArgs();
1353 return std::nullopt;
1357 if (
auto A = findEnumAttribute(Attribute::VScaleRange))
1358 return A->getVScaleRangeMin();
1363 if (
auto A = findEnumAttribute(Attribute::VScaleRange))
1364 return A->getVScaleRangeMax();
1365 return std::nullopt;
1369 if (
auto A = findEnumAttribute(Attribute::UWTable))
1370 return A->getUWTableKind();
1375 if (
auto A = findEnumAttribute(Attribute::AllocKind))
1376 return A->getAllocKind();
1381 if (
auto A = findEnumAttribute(Attribute::Memory))
1382 return A->getMemoryEffects();
1387 if (
auto A = findEnumAttribute(Attribute::Captures))
1388 return A->getCaptureInfo();
1393 if (
auto A = findEnumAttribute(Attribute::NoFPClass))
1394 return A->getNoFPClass();
1403 Str +=
I->getAsString(InAttrGrp);
1419 : NumAttrSets(Sets.
size()) {
1420 assert(!Sets.
empty() &&
"pointless AttributeListImpl");
1423 llvm::copy(Sets, getTrailingObjects<AttributeSet>());
1428 if (!
I.isStringAttribute())
1431 for (
const auto &Set : Sets)
1432 for (
const auto &
I : Set)
1433 if (!
I.isStringAttribute())
1443 for (
const auto &Set : Sets)
1444 ID.AddPointer(Set.SetNode);
1448 unsigned *Index)
const {
1453 for (
unsigned I = 0, E = NumAttrSets;
I != E; ++
I) {
1454 if (
begin()[
I].hasAttribute(Kind)) {
1465#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1477 assert(!AttrSets.
empty() &&
"pointless AttributeListImpl");
1485 pImpl->
AttrsLists.FindNodeOrInsertPos(
ID, InsertPoint);
1492 AttributeListImpl::totalSizeToAlloc<AttributeSet>(AttrSets.
size()),
1495 pImpl->
AttrsLists.InsertNode(PA, InsertPoint);
1504 ArrayRef<std::pair<unsigned, Attribute>> Attrs) {
1510 "Misordered Attributes list!");
1512 [](
const std::pair<unsigned, Attribute> &Pair) {
1513 return Pair.second.isValid();
1515 "Pointless attribute!");
1521 E = Attrs.end();
I != E; ) {
1522 unsigned Index =
I->first;
1524 while (
I != E &&
I->first == Index) {
1532 return get(
C, AttrPairVec);
1537 ArrayRef<std::pair<unsigned, AttributeSet>> Attrs) {
1543 "Misordered Attributes list!");
1545 [](
const std::pair<unsigned, AttributeSet> &Pair) {
1546 return !Pair.second.hasAttributes();
1548 "Pointless attribute!");
1550 unsigned MaxIndex = Attrs.back().first;
1554 MaxIndex = Attrs[Attrs.size() - 2].first;
1557 for (
const auto &Pair : Attrs)
1560 return getImpl(
C, AttrVec);
1569 unsigned NumSets = 0;
1570 for (
size_t I = ArgAttrs.
size();
I != 0; --
I) {
1571 if (ArgAttrs[
I - 1].hasAttributes()) {
1601 return getImpl(
C, AttrSets);
1606 if (!Attrs.hasAttributes())
1610 AttrSets[Index] = Attrs;
1611 return getImpl(
C, AttrSets);
1622 for (
const auto K : Kinds)
1624 return get(
C, Attrs);
1630 assert(Kinds.
size() == Values.
size() &&
"Mismatched attribute values.");
1632 auto VI = Values.
begin();
1633 for (
const auto K : Kinds)
1635 return get(
C, Attrs);
1641 for (
const auto &K : Kinds)
1643 return get(
C, Attrs);
1650 if (Attrs.size() == 1)
1653 unsigned MaxSize = 0;
1654 for (
const auto &
List : Attrs)
1655 MaxSize = std::max(MaxSize,
List.getNumAttrSets());
1662 for (
unsigned I = 0;
I < MaxSize; ++
I) {
1664 for (
const auto &
List : Attrs)
1669 return getImpl(
C, NewAttrSets);
1676 if (Attrs.hasAttribute(Kind))
1688 B.addAttribute(Kind,
Value);
1704 if (Index >= AttrSets.
size())
1705 AttrSets.resize(Index + 1);
1706 AttrSets[Index] = Attrs;
1709 while (!AttrSets.
empty() && !AttrSets.
back().hasAttributes())
1710 AttrSets.pop_back();
1711 if (AttrSets.
empty())
1713 return AttributeList::getImpl(
C, AttrSets);
1719 if (!
B.hasAttributes())
1737 if (MaxIndex >= AttrSets.
size())
1738 AttrSets.
resize(MaxIndex + 1);
1740 for (
unsigned ArgNo : ArgNos) {
1747 return getImpl(
C, AttrSets);
1755 if (Attrs == NewAttrs)
1757 return setAttributesAtIndex(
C, Index, NewAttrs);
1765 if (Attrs == NewAttrs)
1767 return setAttributesAtIndex(
C, Index, NewAttrs);
1773 AttributeSet NewAttrs = Attrs.removeAttributes(
C, AttrsToRemove);
1775 if (Attrs == NewAttrs)
1777 return setAttributesAtIndex(
C, Index, NewAttrs);
1782 unsigned WithoutIndex)
const {
1787 return setAttributesAtIndex(
C, WithoutIndex,
AttributeSet());
1793 B.addDereferenceableAttr(Bytes);
1801 B.addDereferenceableAttr(Bytes);
1809 B.addDereferenceableOrNullAttr(Bytes);
1822 const std::optional<unsigned> &NumElemsArg)
const {
1824 B.addAllocSizeAttr(ElemSizeArg, NumElemsArg);
1828std::optional<AttributeList>
1837 for (
unsigned Idx : IndexIt) {
1838 auto IntersectedAS =
1842 return std::nullopt;
1843 if (!IntersectedAS->hasAttributes())
1845 IntersectedAttrs.
push_back(std::make_pair(
Idx, *IntersectedAS));
1882 return pImpl && pImpl->hasFnAttribute(Kind);
1890 unsigned *Index)
const {
1891 return pImpl && pImpl->hasAttrSomewhere(Attr, Index);
1965std::optional<ConstantRange>
1968 if (RangeAttr.isValid())
1970 return std::nullopt;
2001 return pImpl->begin()[Index];
2005 assert(!
isEmpty() &&
"an empty attribute list has no parent context");
2009 return C.pImpl->AttrsLists.FindNodeOrInsertPos(
ID, Unused) == pImpl;
2013 return pImpl ? pImpl->begin() :
nullptr;
2017 return pImpl ? pImpl->end() :
nullptr;
2025 return pImpl ? pImpl->NumAttrSets : 0;
2029 O <<
"AttributeList[\n";
2031 for (
unsigned i :
indexes()) {
2051#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2094template <
typename K>
2098 if (It != Attrs.end() && It->hasAttribute(Kind))
2101 Attrs.insert(It, Attr);
2125 if (It != Attrs.end() && It->hasAttribute(Val))
2132 if (It != Attrs.end() && It->hasAttribute(
A))
2137std::optional<uint64_t>
2142 return A.getValueAsInt();
2143 return std::nullopt;
2151std::optional<std::pair<unsigned, std::optional<unsigned>>>
2155 return A.getAllocSizeArgs();
2156 return std::nullopt;
2172 assert(*
Align <= 0x100 &&
"Alignment too large.");
2177 if (Bytes == 0)
return *
this;
2186 return addRawIntAttr(Attribute::DereferenceableOrNull, Bytes);
2191 const std::optional<unsigned> &NumElems) {
2197 assert(RawArgs &&
"Invalid allocsize arguments -- given allocsize(0, 0)");
2202 std::optional<unsigned> MaxValue) {
2242 return A.isValid() ?
A.getValueAsType() :
nullptr;
2293 for (
const auto &
I :
B.attrs())
2311 if (It != Attrs.end() && It->hasAttribute(
A))
2318 if (It != Attrs.end() && It->hasAttribute(
A))
2327 return std::nullopt;
2339 return Attrs ==
B.Attrs;
2418 return Incompatible;
2452 DenormalMode CallerModeF32 = Caller.getDenormalModeF32Raw();
2453 DenormalMode CalleeModeF32 = Callee.getDenormalModeF32Raw();
2455 CallerModeF32 = CallerMode;
2457 CalleeModeF32 = CalleeMode;
2467 return !Callee.getAttributes().hasFnAttr(Attribute::StrictFP) ||
2468 Caller.getAttributes().hasFnAttr(Attribute::StrictFP);
2471template<
typename AttrClass>
2473 return Caller.getFnAttribute(AttrClass::getKind()) ==
2474 Callee.getFnAttribute(AttrClass::getKind());
2479 return Caller.getFnAttribute(AttrName) == Callee.getFnAttribute(AttrName);
2487template<
typename AttrClass>
2489 if (AttrClass::isSet(Caller, AttrClass::getKind()) &&
2490 !AttrClass::isSet(Callee, AttrClass::getKind()))
2491 AttrClass::set(Caller, AttrClass::getKind(),
false);
2499template<
typename AttrClass>
2501 if (!AttrClass::isSet(Caller, AttrClass::getKind()) &&
2502 AttrClass::isSet(Callee, AttrClass::getKind()))
2503 AttrClass::set(Caller, AttrClass::getKind(),
true);
2512 if (!Caller.hasStackProtectorFnAttr())
2523 if (Callee.hasFnAttribute(Attribute::StackProtectReq)) {
2524 Caller.removeFnAttrs(OldSSPAttr);
2525 Caller.addFnAttr(Attribute::StackProtectReq);
2526 }
else if (Callee.hasFnAttribute(Attribute::StackProtectStrong) &&
2527 !Caller.hasFnAttribute(Attribute::StackProtectReq)) {
2528 Caller.removeFnAttrs(OldSSPAttr);
2529 Caller.addFnAttr(Attribute::StackProtectStrong);
2530 }
else if (Callee.hasFnAttribute(Attribute::StackProtect) &&
2531 !Caller.hasFnAttribute(Attribute::StackProtectReq) &&
2532 !Caller.hasFnAttribute(Attribute::StackProtectStrong))
2533 Caller.addFnAttr(Attribute::StackProtect);
2539 if (!Caller.hasFnAttribute(
"probe-stack") &&
2540 Callee.hasFnAttribute(
"probe-stack")) {
2541 Caller.addFnAttr(Callee.getFnAttribute(
"probe-stack"));
2550 Attribute CalleeAttr = Callee.getFnAttribute(
"stack-probe-size");
2552 Attribute CallerAttr = Caller.getFnAttribute(
"stack-probe-size");
2554 uint64_t CallerStackProbeSize, CalleeStackProbeSize;
2558 if (CallerStackProbeSize > CalleeStackProbeSize) {
2559 Caller.addFnAttr(CalleeAttr);
2562 Caller.addFnAttr(CalleeAttr);
2578 Attribute CallerAttr = Caller.getFnAttribute(
"min-legal-vector-width");
2580 Attribute CalleeAttr = Callee.getFnAttribute(
"min-legal-vector-width");
2582 uint64_t CallerVectorWidth, CalleeVectorWidth;
2585 if (CallerVectorWidth < CalleeVectorWidth)
2586 Caller.addFnAttr(CalleeAttr);
2590 Caller.removeFnAttr(
"min-legal-vector-width");
2599 if (Callee.nullPointerIsDefined() && !Caller.nullPointerIsDefined()) {
2600 Caller.addFnAttr(Attribute::NullPointerIsValid);
2623 return A.getValueAsString() ==
"true";
2628 Fn.
addFnAttr(Kind, Val ?
"true" :
"false");
2632#define GET_ATTR_NAMES
2633#define ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) \
2634 struct ENUM_NAME##Attr : EnumAttr { \
2635 static enum Attribute::AttrKind getKind() { \
2636 return llvm::Attribute::ENUM_NAME; \
2639#define ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) \
2640 struct ENUM_NAME##Attr : StrBoolAttr { \
2641 static StringRef getKind() { return #DISPLAY_NAME; } \
2643#include "llvm/IR/Attributes.inc"
2645#define GET_ATTR_COMPAT_FUNC
2646#include "llvm/IR/Attributes.inc"
2650 return hasCompatibleFnAttrs(Caller, Callee);
2655 return hasCompatibleFnAttrs(
A,
B);
2660 mergeFnAttrs(Caller, Callee);
2673 mergeFnAttrs(
Base, ToMerge);
2682 if (Width > OldWidth)
2683 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 bool hasIntersectProperty(Attribute::AttrKind Kind, AttributeProperty Prop)
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 unsigned getAttributeProperties(Attribute::AttrKind Kind)
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.
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
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.
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)
AttrBuilder & addCapturesAttr(CaptureInfo CI)
Add captures attribute.
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.
std::optional< ConstantRange > getRange() const
Retrieve the range if the attribute exists (std::nullopt is returned otherwise).
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
int cmp(const AttributeImpl &AI, bool KindOnly) const
Used to sort attributes.
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
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.
AttributeList addAllocSizeParamAttr(LLVMContext &C, unsigned ArgNo, unsigned ElemSizeArg, const std::optional< unsigned > &NumElemsArg) const
Add the allocsize attribute to the attribute set at the given arg index.
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.
std::optional< AttributeList > intersectWith(LLVMContext &C, AttributeList Other) const
Try to intersect this AttributeList with Other.
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.
std::optional< ConstantRange > getParamRange(unsigned ArgNo) const
Get range (or std::nullopt if unknown) of an arg.
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
CaptureInfo getCaptureInfo() 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.
std::optional< AttributeSet > intersectWith(LLVMContext &C, AttributeSet Other) const
Try to intersect this AttributeSet with Other.
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
CaptureInfo getCaptureInfo() 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.
static bool intersectWithCustom(AttrKind Kind)
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 bool intersectWithMin(AttrKind Kind)
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.
bool hasKindAsEnum() const
Returns true if the attribute's kind can be represented as an enum (Enum, Integer,...
static StringRef getNameFromAttrKind(Attribute::AttrKind AttrKind)
static bool canUseAsFnAttr(AttrKind Kind)
static bool intersectWithAnd(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 getWithCaptureInfo(LLVMContext &Context, CaptureInfo CI)
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.
CaptureInfo getCaptureInfo() const
Returns information from captures attribute.
static bool intersectMustPreserve(AttrKind Kind)
int cmpKind(Attribute A) const
Used to sort attribute by kind.
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.
Represents which components of the pointer may be captured in which location.
static CaptureInfo createFromIntValue(uint32_t Data)
static CaptureInfo all()
Create CaptureInfo that may capture all components of the pointer.
uint32_t toIntValue() const
Convert CaptureInfo into an encoded integer value (used by captures attribute).
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.
ConstantRange unionWith(const ConstantRange &CR, PreferredRangeType Type=Smallest) const
Return the range that results from the union of this range with another range.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
static bool isSupportedFloatingPointType(Type *Ty)
Returns true if Ty is a supported floating-point type for phi, select, or call FPMathOperators.
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.
int compare(StringRef RHS) const
compare - Compare two strings; the result is negative, zero, or positive if this string is lexicograp...
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.
unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element 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 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.
AttributeMask typeIncompatible(Type *Ty, AttributeSet AS, AttributeSafetyKind ASK=ASK_ALL)
Which attributes cannot be applied to a type.
void mergeAttributesForInlining(Function &Caller, const Function &Callee)
Merge caller's and callee's attributes.
@ C
The default llvm calling convention, compatible with C.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
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.
Align valueOrOne() const
For convenience, returns a valid alignment or 1 if undefined.
Function object to check whether the first component of a container supported by std::get (like std::...