15#ifndef LLVM_IR_ATTRIBUTES_H
16#define LLVM_IR_ATTRIBUTES_H
23#include "llvm/Config/llvm-config.h"
72 assert(DeadBytes.has_value() &&
73 "This attribute does not specify a byte count. Did you forget to "
74 "check if the attribute covers all reachable memory?");
75 return DeadBytes.value();
81 if (
Data == std::numeric_limits<uint64_t>::max())
87 if (DeadBytes.has_value())
88 return DeadBytes.value();
89 return std::numeric_limits<uint64_t>::max();
93 return DeadBytes.has_value() && DeadBytes.value() == 0;
97 std::optional<uint64_t> DeadBytes;
128 #define GET_ATTR_ENUM
129 #include "llvm/IR/Attributes.inc"
140 return Kind >= FirstEnumAttr && Kind <= LastEnumAttr;
143 return Kind >= FirstIntAttr && Kind <= LastIntAttr;
146 return Kind >= FirstTypeAttr && Kind <= LastTypeAttr;
149 return Kind >= FirstConstantRangeAttr && Kind <= LastConstantRangeAttr;
152 return Kind >= FirstConstantRangeListAttr &&
153 Kind <= LastConstantRangeListAttr;
203 const std::optional<unsigned> &NumElemsArg);
332 LLVM_ABI std::pair<unsigned, std::optional<unsigned>>
411 friend AttributeListImpl;
433 bool operator==(
const AttributeSet &O)
const {
return SetNode == O.SetNode; }
434 bool operator!=(
const AttributeSet &O)
const {
return !(*
this == O); }
454 const AttrBuilder &
B)
const;
474 [[nodiscard]]
LLVM_ABI std::optional<AttributeSet>
506 LLVM_ABI std::optional<std::pair<unsigned, std::optional<unsigned>>>
524#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
540namespace hashing::detail {
546static_assert(std::has_unique_object_representations_v<Attribute> &&
547 std::has_unique_object_representations_v<AttributeSet>,
548 "hashing the bytes requires unique object representations");
561 enum AttrIndex :
unsigned {
568 friend class AttrBuilder;
572 template <
typename Ty,
typename Enable>
friend struct DenseMapInfo;
594 static AttributeList getImpl(LLVMContext &
C, ArrayRef<AttributeSet> AttrSets);
605 ArrayRef<AttributeList> Attrs);
607 ArrayRef<Attribute::AttrKind> Kinds);
609 ArrayRef<Attribute::AttrKind> Kinds,
610 ArrayRef<uint64_t> Values);
612 ArrayRef<StringRef> Kind);
616 const AttrBuilder &
B);
621 LLVMContext &
C,
unsigned Index, AttributeSet Attrs)
const;
627 LLVMContext &
C,
unsigned Index, Attribute::AttrKind Kind)
const;
632 addAttributeAtIndex(LLVMContext &
C,
unsigned Index, StringRef Kind,
633 StringRef Value = StringRef())
const;
644 LLVMContext &
C,
unsigned Index,
const AttrBuilder &
B)
const;
649 Attribute::AttrKind Kind)
const {
650 return addAttributeAtIndex(
C, FunctionIndex, Kind);
655 [[nodiscard]] AttributeList addFnAttribute(LLVMContext &
C,
656 Attribute Attr)
const {
657 return addAttributeAtIndex(
C, FunctionIndex, Attr);
662 [[nodiscard]] AttributeList
663 addFnAttribute(LLVMContext &
C, StringRef Kind,
664 StringRef
Value = StringRef())
const {
665 return addAttributeAtIndex(
C, FunctionIndex, Kind,
Value);
670 [[nodiscard]] AttributeList addFnAttributes(LLVMContext &
C,
671 const AttrBuilder &
B)
const {
672 return addAttributesAtIndex(
C, FunctionIndex,
B);
677 [[nodiscard]] AttributeList addRetAttribute(LLVMContext &
C,
678 Attribute::AttrKind Kind)
const {
679 return addAttributeAtIndex(
C, ReturnIndex, Kind);
684 [[nodiscard]] AttributeList addRetAttribute(LLVMContext &
C,
685 Attribute Attr)
const {
686 return addAttributeAtIndex(
C, ReturnIndex, Attr);
691 [[nodiscard]] AttributeList addRetAttributes(LLVMContext &
C,
692 const AttrBuilder &
B)
const {
693 return addAttributesAtIndex(
C, ReturnIndex,
B);
698 [[nodiscard]] AttributeList
699 addParamAttribute(LLVMContext &
C,
unsigned ArgNo,
700 Attribute::AttrKind Kind)
const {
701 return addAttributeAtIndex(
C, ArgNo + FirstArgIndex, Kind);
706 [[nodiscard]] AttributeList
707 addParamAttribute(LLVMContext &
C,
unsigned ArgNo, StringRef Kind,
708 StringRef
Value = StringRef())
const {
709 return addAttributeAtIndex(
C, ArgNo + FirstArgIndex, Kind,
Value);
714 [[nodiscard]]
LLVM_ABI AttributeList addParamAttribute(
715 LLVMContext &
C, ArrayRef<unsigned> ArgNos, Attribute
A)
const;
719 [[nodiscard]] AttributeList addParamAttributes(LLVMContext &
C,
unsigned ArgNo,
720 const AttrBuilder &
B)
const {
721 return addAttributesAtIndex(
C, ArgNo + FirstArgIndex,
B);
726 [[nodiscard]] AttributeList
727 maybeAddParamAttribute(LLVMContext &
C,
unsigned ArgNo,
728 Attribute::AttrKind Kind)
const {
729 if (Kind != Attribute::AttrKind::None)
730 return addParamAttribute(
C, ArgNo, Kind);
736 [[nodiscard]]
LLVM_ABI AttributeList removeAttributeAtIndex(
737 LLVMContext &
C,
unsigned Index, Attribute::AttrKind Kind)
const;
741 [[nodiscard]]
LLVM_ABI AttributeList
742 removeAttributeAtIndex(LLVMContext &
C,
unsigned Index, StringRef Kind)
const;
743 [[nodiscard]] AttributeList removeAttribute(LLVMContext &
C,
unsigned Index,
744 StringRef Kind)
const {
745 return removeAttributeAtIndex(
C, Index, Kind);
750 [[nodiscard]]
LLVM_ABI AttributeList removeAttributesAtIndex(
751 LLVMContext &
C,
unsigned Index,
const AttributeMask &AttrsToRemove)
const;
755 [[nodiscard]]
LLVM_ABI AttributeList
756 removeAttributesAtIndex(LLVMContext &
C,
unsigned Index)
const;
760 [[nodiscard]] AttributeList
761 removeFnAttribute(LLVMContext &
C, Attribute::AttrKind Kind)
const {
762 return removeAttributeAtIndex(
C, FunctionIndex, Kind);
767 [[nodiscard]] AttributeList removeFnAttribute(LLVMContext &
C,
768 StringRef Kind)
const {
769 return removeAttributeAtIndex(
C, FunctionIndex, Kind);
774 [[nodiscard]] AttributeList
775 removeFnAttributes(LLVMContext &
C,
const AttributeMask &AttrsToRemove)
const {
776 return removeAttributesAtIndex(
C, FunctionIndex, AttrsToRemove);
781 [[nodiscard]] AttributeList removeFnAttributes(LLVMContext &
C)
const {
782 return removeAttributesAtIndex(
C, FunctionIndex);
787 [[nodiscard]] AttributeList
788 removeRetAttribute(LLVMContext &
C, Attribute::AttrKind Kind)
const {
789 return removeAttributeAtIndex(
C, ReturnIndex, Kind);
794 [[nodiscard]] AttributeList removeRetAttribute(LLVMContext &
C,
795 StringRef Kind)
const {
796 return removeAttributeAtIndex(
C, ReturnIndex, Kind);
801 [[nodiscard]] AttributeList
802 removeRetAttributes(LLVMContext &
C,
803 const AttributeMask &AttrsToRemove)
const {
804 return removeAttributesAtIndex(
C, ReturnIndex, AttrsToRemove);
809 [[nodiscard]] AttributeList
810 removeParamAttribute(LLVMContext &
C,
unsigned ArgNo,
811 Attribute::AttrKind Kind)
const {
812 return removeAttributeAtIndex(
C, ArgNo + FirstArgIndex, Kind);
817 [[nodiscard]] AttributeList
818 removeParamAttribute(LLVMContext &
C,
unsigned ArgNo, StringRef Kind)
const {
819 return removeAttributeAtIndex(
C, ArgNo + FirstArgIndex, Kind);
824 [[nodiscard]] AttributeList
825 removeParamAttributes(LLVMContext &
C,
unsigned ArgNo,
826 const AttributeMask &AttrsToRemove)
const {
827 return removeAttributesAtIndex(
C, ArgNo + FirstArgIndex, AttrsToRemove);
832 [[nodiscard]] AttributeList removeParamAttributes(LLVMContext &
C,
833 unsigned ArgNo)
const {
834 return removeAttributesAtIndex(
C, ArgNo + FirstArgIndex);
839 [[nodiscard]] AttributeList
840 replaceAttributeTypeAtIndex(LLVMContext &
C,
unsigned ArgNo,
841 Attribute::AttrKind Kind,
842 Type *ReplacementTy)
const {
843 Attribute Attr = getAttributeAtIndex(ArgNo, Kind);
844 auto Attrs = removeAttributeAtIndex(
C, ArgNo, Kind);
845 return Attrs.addAttributeAtIndex(
C, ArgNo,
846 Attr.getWithNewType(
C, ReplacementTy));
851 [[nodiscard]]
LLVM_ABI AttributeList
852 addDereferenceableRetAttr(LLVMContext &
C,
uint64_t Bytes)
const;
856 [[nodiscard]]
LLVM_ABI AttributeList addDereferenceableParamAttr(
857 LLVMContext &
C,
unsigned ArgNo,
uint64_t Bytes)
const;
862 [[nodiscard]]
LLVM_ABI AttributeList addDereferenceableOrNullParamAttr(
863 LLVMContext &
C,
unsigned ArgNo,
uint64_t Bytes)
const;
867 [[nodiscard]]
LLVM_ABI AttributeList
872 [[nodiscard]]
LLVM_ABI AttributeList
873 addAllocSizeParamAttr(LLVMContext &
C,
unsigned ArgNo,
unsigned ElemSizeArg,
874 const std::optional<unsigned> &NumElemsArg)
const;
879 [[nodiscard]]
LLVM_ABI std::optional<AttributeList>
880 intersectWith(LLVMContext &
C, AttributeList Other)
const;
891 LLVM_ABI AttributeSet getParamAttrs(
unsigned ArgNo)
const;
894 LLVM_ABI AttributeSet getRetAttrs()
const;
897 LLVM_ABI AttributeSet getFnAttrs()
const;
900 LLVM_ABI bool hasAttributeAtIndex(
unsigned Index,
901 Attribute::AttrKind Kind)
const;
904 LLVM_ABI bool hasAttributeAtIndex(
unsigned Index, StringRef Kind)
const;
907 LLVM_ABI bool hasAttributesAtIndex(
unsigned Index)
const;
910 bool hasParamAttr(
unsigned ArgNo, Attribute::AttrKind Kind)
const {
911 return hasAttributeAtIndex(ArgNo + FirstArgIndex, Kind);
915 bool hasParamAttr(
unsigned ArgNo, StringRef Kind)
const {
916 return hasAttributeAtIndex(ArgNo + FirstArgIndex, Kind);
920 bool hasParamAttrs(
unsigned ArgNo)
const {
921 return hasAttributesAtIndex(ArgNo + FirstArgIndex);
925 bool hasRetAttr(Attribute::AttrKind Kind)
const {
926 return hasAttributeAtIndex(ReturnIndex, Kind);
930 bool hasRetAttr(StringRef Kind)
const {
931 return hasAttributeAtIndex(ReturnIndex, Kind);
935 bool hasRetAttrs()
const {
return hasAttributesAtIndex(ReturnIndex); }
938 LLVM_ABI bool hasFnAttr(Attribute::AttrKind Kind)
const;
941 LLVM_ABI bool hasFnAttr(StringRef Kind)
const;
944 bool hasFnAttrs()
const {
return hasAttributesAtIndex(FunctionIndex); }
949 LLVM_ABI bool hasAttrSomewhere(Attribute::AttrKind Kind,
950 unsigned *Index =
nullptr)
const;
954 Attribute::AttrKind Kind)
const;
960 Attribute getParamAttr(
unsigned ArgNo, Attribute::AttrKind Kind)
const {
961 return getAttributeAtIndex(ArgNo + FirstArgIndex, Kind);
965 Attribute getParamAttr(
unsigned ArgNo, StringRef Kind)
const {
966 return getAttributeAtIndex(ArgNo + FirstArgIndex, Kind);
970 Attribute getFnAttr(Attribute::AttrKind Kind)
const {
971 return getAttributeAtIndex(FunctionIndex, Kind);
975 Attribute getFnAttr(StringRef Kind)
const {
976 return getAttributeAtIndex(FunctionIndex, Kind);
980 Attribute getRetAttr(Attribute::AttrKind Kind)
const {
981 return getAttributeAtIndex(ReturnIndex, Kind);
985 LLVM_ABI MaybeAlign getRetAlignment()
const;
988 LLVM_ABI MaybeAlign getParamAlignment(
unsigned ArgNo)
const;
991 LLVM_ABI MaybeAlign getParamStackAlignment(
unsigned ArgNo)
const;
997 LLVM_ABI Type *getParamStructRetType(
unsigned ArgNo)
const;
1000 LLVM_ABI Type *getParamByRefType(
unsigned ArgNo)
const;
1003 LLVM_ABI Type *getParamPreallocatedType(
unsigned ArgNo)
const;
1006 LLVM_ABI Type *getParamInAllocaType(
unsigned ArgNo)
const;
1009 LLVM_ABI Type *getParamElementType(
unsigned ArgNo)
const;
1015 LLVM_ABI MaybeAlign getRetStackAlignment()
const;
1029 LLVM_ABI DeadOnReturnInfo getDeadOnReturnInfo(
unsigned Index)
const;
1033 LLVM_ABI uint64_t getParamDereferenceableOrNullBytes(
unsigned ArgNo)
const;
1036 LLVM_ABI std::optional<ConstantRange> getParamRange(
unsigned ArgNo)
const;
1053 LLVM_ABI std::string getAsString(
unsigned Index,
1054 bool InAttrGrp =
false)
const;
1057 LLVM_ABI bool hasParentContext(LLVMContext &
C)
const;
1063 using iterator =
const AttributeSet *;
1068 LLVM_ABI unsigned getNumAttrSets()
const;
1073 struct index_iterator {
1074 unsigned NumAttrSets;
1075 index_iterator(
int NumAttrSets) : NumAttrSets(NumAttrSets) {}
1076 struct int_wrapper {
1077 int_wrapper(
unsigned i) : i(i) {}
1081 int_wrapper &operator++() {
1089 int_wrapper
begin() {
return int_wrapper(AttributeList::FunctionIndex); }
1091 int_wrapper
end() {
return int_wrapper(NumAttrSets - 1); }
1095 index_iterator indexes()
const {
return index_iterator(getNumAttrSets()); }
1098 bool operator==(
const AttributeList &
RHS)
const {
return pImpl ==
RHS.pImpl; }
1099 bool operator!=(
const AttributeList &
RHS)
const {
return pImpl !=
RHS.pImpl; }
1102 void *getRawPointer()
const {
1107 bool isEmpty()
const {
return pImpl ==
nullptr; }
1118 static unsigned getHashValue(AttributeList AS) {
1119 return DenseMapInfo<const void *>::getHashValue(AS.pImpl);
1135 SmallVector<Attribute, 8>
Attrs;
1138 AttrBuilder(LLVMContext &Ctx) : Ctx(Ctx) {}
1139 AttrBuilder(
const AttrBuilder &) =
delete;
1140 AttrBuilder(AttrBuilder &&) =
default;
1142 AttrBuilder(LLVMContext &Ctx,
const Attribute &
A) : Ctx(Ctx) {
1146 LLVM_ABI AttrBuilder(LLVMContext &Ctx, AttributeSet AS);
1151 LLVM_ABI AttrBuilder &addAttribute(Attribute::AttrKind Val);
1154 LLVM_ABI AttrBuilder &addAttribute(Attribute
A);
1157 LLVM_ABI AttrBuilder &addAttribute(StringRef
A, StringRef V = StringRef());
1160 LLVM_ABI AttrBuilder &removeAttribute(Attribute::AttrKind Val);
1163 LLVM_ABI AttrBuilder &removeAttribute(StringRef
A);
1166 AttrBuilder &removeAttribute(Attribute
A) {
1167 if (
A.isStringAttribute())
1168 return removeAttribute(
A.getKindAsString());
1170 return removeAttribute(
A.getKindAsEnum());
1182 LLVM_ABI bool overlaps(
const AttributeMask &AM)
const;
1192 bool hasAttributes()
const {
return !
Attrs.empty(); }
1209 getRawIntAttr(Attribute::AttrKind Kind)
const;
1213 return MaybeAlign(getRawIntAttr(Attribute::Alignment).value_or(0));
1217 MaybeAlign getStackAlignment()
const {
1218 return MaybeAlign(getRawIntAttr(Attribute::StackAlignment).value_or(0));
1223 uint64_t getDereferenceableBytes()
const {
1224 return getRawIntAttr(Attribute::Dereferenceable).value_or(0);
1229 uint64_t getDereferenceableOrNullBytes()
const {
1230 return getRawIntAttr(Attribute::DereferenceableOrNull).value_or(0);
1236 std::optional<uint64_t> Raw = getRawIntAttr(Attribute::NoFPClass);
1241 LLVM_ABI Type *getTypeAttr(Attribute::AttrKind Kind)
const;
1247 Type *getStructRetType()
const {
return getTypeAttr(Attribute::StructRet); }
1250 Type *getByRefType()
const {
return getTypeAttr(Attribute::ByRef); }
1253 Type *getPreallocatedType()
const {
1254 return getTypeAttr(Attribute::Preallocated);
1258 Type *getInAllocaType()
const {
return getTypeAttr(Attribute::InAlloca); }
1262 LLVM_ABI std::optional<std::pair<unsigned, std::optional<unsigned>>>
1263 getAllocSizeArgs()
const;
1270 LLVM_ABI AttrBuilder &addAlignmentAttr(MaybeAlign Align);
1276 inline AttrBuilder &addAlignmentAttr(
unsigned Align) {
1277 return addAlignmentAttr(MaybeAlign(Align));
1282 LLVM_ABI AttrBuilder &addStackAlignmentAttr(MaybeAlign Align);
1288 inline AttrBuilder &addStackAlignmentAttr(
unsigned Align) {
1289 return addStackAlignmentAttr(MaybeAlign(Align));
1298 LLVM_ABI AttrBuilder &addDeadOnReturnAttr(DeadOnReturnInfo Info);
1306 addAllocSizeAttr(
unsigned ElemSizeArg,
1307 const std::optional<unsigned> &NumElemsArg);
1310 LLVM_ABI AttrBuilder &addVScaleRangeAttr(
unsigned MinValue,
1311 std::optional<unsigned> MaxValue);
1314 LLVM_ABI AttrBuilder &addTypeAttr(Attribute::AttrKind Kind,
Type *Ty);
1333 LLVM_ABI AttrBuilder &addAllocSizeAttrFromRawRepr(
uint64_t RawAllocSizeRepr);
1338 addVScaleRangeAttrFromRawRepr(
uint64_t RawVScaleRangeRepr);
1342 LLVM_ABI AttrBuilder &addUWTableAttr(UWTableKind Kind);
1345 LLVM_ABI AttrBuilder &addAllocKindAttr(AllocFnKind Kind);
1348 LLVM_ABI AttrBuilder &addMemoryAttr(MemoryEffects ME);
1351 LLVM_ABI AttrBuilder &addCapturesAttr(CaptureInfo CI);
1354 LLVM_ABI AttrBuilder &addDenormalFPEnvAttr(DenormalFPEnv
Mode);
1357 LLVM_ABI AttrBuilder &addNoFPClassAttr(FPClassTest NoFPClassMask);
1360 LLVM_ABI AttrBuilder &addConstantRangeAttr(Attribute::AttrKind Kind,
1361 const ConstantRange &CR);
1364 LLVM_ABI AttrBuilder &addRangeAttr(
const ConstantRange &CR);
1367 LLVM_ABI AttrBuilder &addConstantRangeListAttr(Attribute::AttrKind Kind,
1368 ArrayRef<ConstantRange> Val);
1371 LLVM_ABI AttrBuilder &addInitializesAttr(
const ConstantRangeList &CRL);
1376 LLVM_ABI AttrBuilder &addFromEquivalentMetadata(
const Instruction &
I);
1378 ArrayRef<Attribute> attrs()
const {
return Attrs; }
1381 bool operator!=(
const AttrBuilder &
B)
const {
return !(*
this ==
B); }
1384namespace AttributeFuncs {
1386enum AttributeSafetyKind : uint8_t {
1387 ASK_SAFE_TO_DROP = 1,
1388 ASK_UNSAFE_TO_DROP = 2,
1389 ASK_ALL = ASK_SAFE_TO_DROP | ASK_UNSAFE_TO_DROP,
1406 AttributeSafetyKind ASK = ASK_ALL);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static void print(raw_ostream &Out, object::Archive::Kind Kind, T Val)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static std::optional< ConstantRange > getRange(Value *V, const InstrInfoQuery &IIQ)
Helper method to get range from metadata or attribute.
static LoopDeletionResult merge(LoopDeletionResult A, LoopDeletionResult B)
static Align getFnStackAlignment(const TargetSubtargetInfo &STI, const Function &F)
bool operator==(const MergedFunctionsInfo &LHS, const MergedFunctionsInfo &RHS)
II addRangeRetAttr(Range)
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
static DenormalFPEnv getDenormalFPEnv(const MachineFunction &MF)
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
static FPClassTest getNoFPClass(const Instruction &I)
static uint32_t getAlignment(const MCSectionCOFF &Sec)
Represent a constant reference to an array (0 or more elements consecutively in memory),...
This class represents a single, uniqued attribute.
This class represents a set of attributes that apply to the function, return type,...
This class stores enough information to efficiently remove some attributes from an existing AttrBuild...
This class represents a group of attributes that apply to one element: function, return type,...
This class holds the attributes for a particular argument, parameter, function, or return value.
LLVM_ABI AllocFnKind getAllocKind() const
bool hasAttributes() const
Return true if attributes exists in this set.
const Attribute * iterator
LLVM_ABI AttributeSet removeAttribute(LLVMContext &C, Attribute::AttrKind Kind) const
Remove the specified attribute from this set.
LLVM_ABI Type * getInAllocaType() const
LLVM_ABI Type * getByValType() const
LLVM_ABI DeadOnReturnInfo getDeadOnReturnInfo() const
bool operator!=(const AttributeSet &O) const
LLVM_ABI AttributeSet addAttributes(LLVMContext &C, AttributeSet AS) const
Add attributes to the attribute set.
LLVM_ABI MemoryEffects getMemoryEffects() const
LLVM_ABI bool hasAttribute(Attribute::AttrKind Kind) const
Return true if the attribute exists in this set.
bool operator==(const AttributeSet &O) const
LLVM_ABI std::optional< AttributeSet > intersectWith(LLVMContext &C, AttributeSet Other) const
Try to intersect this AttributeSet with Other.
LLVM_ABI Type * getStructRetType() const
LLVM_ABI std::string getAsString(bool InAttrGrp=false) const
LLVM_ABI unsigned getVScaleRangeMin() const
LLVM_ABI std::optional< std::pair< unsigned, std::optional< unsigned > > > getAllocSizeArgs() const
LLVM_ABI UWTableKind getUWTableKind() const
LLVM_ABI bool hasParentContext(LLVMContext &C) const
Return true if this attribute set belongs to the LLVMContext.
LLVM_ABI iterator begin() const
LLVM_ABI iterator end() const
LLVM_ABI AttributeSet removeAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const
Remove the specified attributes from this set.
LLVM_ABI std::optional< unsigned > getVScaleRangeMax() const
LLVM_ABI MaybeAlign getStackAlignment() const
LLVM_ABI Attribute getAttribute(Attribute::AttrKind Kind) const
Return the attribute object.
LLVM_ABI Type * getPreallocatedType() const
LLVM_ABI uint64_t getDereferenceableBytes() const
LLVM_ABI MaybeAlign getAlignment() const
LLVM_ABI FPClassTest getNoFPClass() const
friend struct DenseMapInfo
AttributeSet(const AttributeSet &)=default
LLVM_ABI Type * getElementType() const
LLVM_ABI Type * getByRefType() const
LLVM_ABI CaptureInfo getCaptureInfo() const
AttributeSet()=default
AttributeSet is a trivially copyable value type.
static LLVM_ABI AttributeSet get(LLVMContext &C, const AttrBuilder &B)
LLVM_ABI uint64_t getDereferenceableOrNullBytes() const
LLVM_ABI unsigned getNumAttributes() const
Return the number of attributes in this set.
LLVM_ABI AttributeSet addAttribute(LLVMContext &C, Attribute::AttrKind Kind) const
Add an argument attribute.
Functions, function parameters, and return types can have attributes to indicate how they should be t...
static const unsigned NumTypeAttrKinds
LLVM_ABI bool isStringAttribute() const
Return true if the attribute is a string (target-dependent) attribute.
static LLVM_ABI Attribute getWithStructRetType(LLVMContext &Context, Type *Ty)
static LLVM_ABI bool isABIAttr(AttrKind Kind)
Whether this is an ABI attribute (for returns or arguments).
bool operator==(Attribute A) const
Equality and non-equality operators.
static LLVM_ABI Attribute::AttrKind getAttrKindFromName(StringRef AttrName)
static const unsigned NumEnumAttrKinds
LLVM_ABI bool isEnumAttribute() const
Return true if the attribute is an Attribute::AttrKind type.
static LLVM_ABI Attribute getWithStackAlignment(LLVMContext &Context, Align Alignment)
LLVM_ABI const ConstantRange & getRange() const
Returns the value of the range attribute.
static LLVM_ABI bool intersectWithCustom(AttrKind Kind)
LLVM_ABI bool isIntAttribute() const
Return true if the attribute is an integer attribute.
static LLVM_ABI Attribute getWithByRefType(LLVMContext &Context, Type *Ty)
LLVM_ABI std::optional< unsigned > getVScaleRangeMax() const
Returns the maximum value for the vscale_range attribute or std::nullopt when unknown.
LLVM_ABI uint64_t getValueAsInt() const
Return the attribute's value as an integer.
LLVM_ABI unsigned getVScaleRangeMin() const
Returns the minimum value for the vscale_range attribute.
LLVM_ABI AllocFnKind getAllocKind() const
LLVM_ABI bool isConstantRangeAttribute() const
Return true if the attribute is a ConstantRange attribute.
static LLVM_ABI Attribute getWithAllocKind(LLVMContext &Context, AllocFnKind Kind)
LLVM_ABI StringRef getKindAsString() const
Return the attribute's kind as a string.
static LLVM_ABI Attribute getWithPreallocatedType(LLVMContext &Context, Type *Ty)
static LLVM_ABI bool intersectWithMin(AttrKind Kind)
static LLVM_ABI Attribute getWithDeadOnReturnInfo(LLVMContext &Context, DeadOnReturnInfo DI)
static LLVM_ABI Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val=0)
Return a uniquified Attribute object.
static LLVM_ABI bool canUseAsRetAttr(AttrKind Kind)
static bool isTypeAttrKind(AttrKind Kind)
LLVM_ABI std::string getAsString(bool InAttrGrp=false) const
The Attribute is converted to a string of equivalent mnemonic.
LLVM_ABI uint64_t getDereferenceableOrNullBytes() const
Returns the number of dereferenceable_or_null bytes from the dereferenceable_or_null attribute.
static LLVM_ABI Attribute getWithDereferenceableBytes(LLVMContext &Context, uint64_t Bytes)
LLVM_ABI std::pair< unsigned, std::optional< unsigned > > getAllocSizeArgs() const
Returns the argument numbers for the allocsize attribute.
static LLVM_ABI Attribute getWithUWTableKind(LLVMContext &Context, UWTableKind Kind)
bool operator!=(Attribute A) const
LLVM_ABI FPClassTest getNoFPClass() const
Return the FPClassTest for nofpclass.
static LLVM_ABI Attribute getWithAllocSizeArgs(LLVMContext &Context, unsigned ElemSizeArg, const std::optional< unsigned > &NumElemsArg)
LLVM_ABI Attribute::AttrKind getKindAsEnum() const
Return the attribute's kind as an enum (Attribute::AttrKind).
LLVM_ABI bool getValueAsBool() const
Return the attribute's value as a boolean.
LLVM_ABI ArrayRef< ConstantRange > getInitializes() const
Returns the value of the initializes attribute.
LLVM_ABI const ConstantRange & getValueAsConstantRange() const
Return the attribute's value as a ConstantRange.
LLVM_ABI uint64_t getDereferenceableBytes() const
Returns the number of dereferenceable bytes from the dereferenceable attribute.
static LLVM_ABI Attribute getWithVScaleRangeArgs(LLVMContext &Context, unsigned MinValue, unsigned MaxValue)
LLVM_ABI MemoryEffects getMemoryEffects() const
Returns memory effects.
LLVM_ABI UWTableKind getUWTableKind() const
static LLVM_ABI Attribute getWithDereferenceableOrNullBytes(LLVMContext &Context, uint64_t Bytes)
LLVM_ABI ArrayRef< ConstantRange > getValueAsConstantRangeList() const
Return the attribute's value as a ConstantRange array.
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
static LLVM_ABI 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 LLVM_ABI StringRef getNameFromAttrKind(Attribute::AttrKind AttrKind)
static LLVM_ABI bool canUseAsFnAttr(AttrKind Kind)
static LLVM_ABI bool intersectWithAnd(AttrKind Kind)
static LLVM_ABI Attribute getWithNoFPClass(LLVMContext &Context, FPClassTest Mask)
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
@ TombstoneKey
Use as Tombstone key for DenseMap of AttrKind.
@ None
No attributes have been set.
@ EmptyKey
Use as Empty key for DenseMap of AttrKind.
@ EndAttrKinds
Sentinel value useful for loops.
static bool isConstantRangeAttrKind(AttrKind Kind)
void * getRawPointer() const
Return a raw pointer that uniquely identifies this attribute.
LLVM_ABI bool hasParentContext(LLVMContext &C) const
Return true if this attribute belongs to the LLVMContext.
LLVM_ABI bool isTypeAttribute() const
Return true if the attribute is a type attribute.
static LLVM_ABI Attribute getWithCaptureInfo(LLVMContext &Context, CaptureInfo CI)
static LLVM_ABI Attribute getWithInAllocaType(LLVMContext &Context, Type *Ty)
static bool isIntAttrKind(AttrKind Kind)
static bool isConstantRangeListAttrKind(AttrKind Kind)
LLVM_ABI bool isConstantRangeListAttribute() const
Return true if the attribute is a ConstantRangeList attribute.
static LLVM_ABI Attribute getWithByValType(LLVMContext &Context, Type *Ty)
Attribute getWithNewType(LLVMContext &Context, Type *ReplacementTy)
For a typed attribute, return the equivalent attribute with the type changed to ReplacementTy.
LLVM_ABI bool hasAttribute(AttrKind Val) const
Return true if the attribute is present.
static bool isEnumAttrKind(AttrKind Kind)
static LLVM_ABI Attribute getWithMemoryEffects(LLVMContext &Context, MemoryEffects ME)
static LLVM_ABI bool canUseAsParamAttr(AttrKind Kind)
bool isValid() const
Return true if the attribute is any kind of attribute.
LLVM_ABI MaybeAlign getStackAlignment() const
Returns the stack alignment field of an attribute as a byte alignment value.
static Attribute fromRawPointer(void *RawPtr)
Get an attribute from a raw pointer created by getRawPointer.
static const unsigned NumIntAttrKinds
LLVM_ABI MaybeAlign getAlignment() const
Returns the alignment field of an attribute as a byte alignment value.
LLVM_ABI CaptureInfo getCaptureInfo() const
Returns information from captures attribute.
static LLVM_ABI bool intersectMustPreserve(AttrKind Kind)
LLVM_ABI int cmpKind(Attribute A) const
Used to sort attribute by kind.
LLVM_ABI bool operator<(Attribute A) const
Less-than operator. Useful for sorting the attributes list.
static LLVM_ABI Attribute getWithAlignment(LLVMContext &Context, Align Alignment)
Return a uniquified Attribute object that has the specific alignment set.
LLVM_ABI DeadOnReturnInfo getDeadOnReturnInfo() const
Returns the number of dead_on_return bytes from the dead_on_return attribute, or std::nullopt if all ...
LLVM_ABI Type * getValueAsType() const
Return the attribute's value as a Type.
Represents which components of the pointer may be captured in which location.
This class represents a list of constant ranges.
This class represents a range of values.
static DeadOnReturnInfo createFromIntValue(uint64_t Data)
bool coversAllReachableMemory() const
uint64_t toIntValue() const
DeadOnReturnInfo(uint64_t DeadOnReturnBytes)
uint64_t getNumberOfDeadBytes() const
This is an important class for using LLVM in a threaded context.
Represent a constant reference to a string, i.e.
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
This class implements an extremely fast bulk output stream that can only output to a stream.
struct LLVMOpaqueAttributeRef * LLVMAttributeRef
Used to represent an attributes.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
LLVM_ABI AttributeList getAttributes(LLVMContext &C, ID id, FunctionType *FT)
Return the attributes for an intrinsic.
LLVM_ABI iterator begin() const
LLVM_ABI std::error_code remove(const Twine &path, bool IgnoreNonExisting=true)
Remove path.
This is an optimization pass for GlobalISel generic memory operations.
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
bool isEqual(const GCNRPTracker::LiveRegSet &S1, const GCNRPTracker::LiveRegSet &S2)
@ Unknown
Not known to have no common set bits.
@ LLVM_MARK_AS_BITMASK_ENUM
APInt operator*(APInt a, uint64_t RHS)
bool operator!=(uint64_t V1, const APInt &V2)
LLVM_ABI AttributeMask typeIncompatible(Type *Ty, AttributeSet AS, AttributeSafetyKind ASK=ASK_ALL)
This class holds the attributes for a function, its return value, and its parameters.
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
LLVM_ABI bool isStrictFPInlineCompatible(const Function &Caller, const Function &Callee)
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
Attribute unwrap(LLVMAttributeRef Attr)
LLVM_ABI void mergeAttributesForOutlining(Function &Base, const Function &ToMerge)
Merges the functions attributes from ToMerge into function Base.
LLVMAttributeRef wrap(Attribute Attr)
LLVM_ABI bool areInlineCompatible(const Function &Caller, const Function &Callee)
LLVM_ABI void updateMinLegalVectorWidthAttr(Function &Fn, uint64_t Width)
Update min-legal-vector-width if it is in Attribute and less than Width.
LLVM_ABI void mergeAttributesForInlining(Function &Caller, const Function &Callee)
Merge caller's and callee's attributes.
LLVM_ABI bool areOutlineCompatible(const Function &A, const Function &B)
Checks if there are any incompatible function attributes between A and B.
LLVM_ABI AttributeMask getUBImplyingAttributes()
Get param/return attributes which imply immediate undefined behavior if an invalid value is passed.
Implement std::hash so that hash_code can be used in STL containers.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Represents the full denormal controls for a function, including the default mode and the f32 specific...
Represent subnormal handling kind for floating point instruction inputs and outputs.
static bool isEqual(AttributeSet LHS, AttributeSet RHS)
static unsigned getHashValue(AttributeSet AS)
An information struct used to provide DenseMap with the various necessary components for a given valu...
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Trait to indicate whether a type's bits can be hashed directly.