1 //===- AttributeImpl.h - Attribute Internals --------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
11 /// This file defines various helper methods and classes used by
12 /// LLVMContextImpl for creating and managing attributes.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_LIB_IR_ATTRIBUTEIMPL_H
17 #define LLVM_LIB_IR_ATTRIBUTEIMPL_H
19 #include "llvm/ADT/ArrayRef.h"
20 #include "llvm/ADT/FoldingSet.h"
21 #include "llvm/ADT/StringRef.h"
22 #include "llvm/IR/Attributes.h"
23 #include "llvm/Support/TrailingObjects.h"
34 //===----------------------------------------------------------------------===//
36 /// This class represents a single, uniqued attribute. That attribute
37 /// could be a single enum, a tuple, or a string.
38 class AttributeImpl
: public FoldingSetNode
{
39 unsigned char KindID
; ///< Holds the AttrEntryKind of the attribute
48 AttributeImpl(AttrEntryKind KindID
) : KindID(KindID
) {}
51 // AttributesImpl is uniqued, these should not be available.
52 AttributeImpl(const AttributeImpl
&) = delete;
53 AttributeImpl
&operator=(const AttributeImpl
&) = delete;
55 virtual ~AttributeImpl();
57 bool isEnumAttribute() const { return KindID
== EnumAttrEntry
; }
58 bool isIntAttribute() const { return KindID
== IntAttrEntry
; }
59 bool isStringAttribute() const { return KindID
== StringAttrEntry
; }
61 bool hasAttribute(Attribute::AttrKind A
) const;
62 bool hasAttribute(StringRef Kind
) const;
64 Attribute::AttrKind
getKindAsEnum() const;
65 uint64_t getValueAsInt() const;
67 StringRef
getKindAsString() const;
68 StringRef
getValueAsString() const;
70 /// Used when sorting the attributes.
71 bool operator<(const AttributeImpl
&AI
) const;
73 void Profile(FoldingSetNodeID
&ID
) const {
74 if (isEnumAttribute())
75 Profile(ID
, getKindAsEnum(), 0);
76 else if (isIntAttribute())
77 Profile(ID
, getKindAsEnum(), getValueAsInt());
79 Profile(ID
, getKindAsString(), getValueAsString());
82 static void Profile(FoldingSetNodeID
&ID
, Attribute::AttrKind Kind
,
85 if (Val
) ID
.AddInteger(Val
);
88 static void Profile(FoldingSetNodeID
&ID
, StringRef Kind
, StringRef Values
) {
90 if (!Values
.empty()) ID
.AddString(Values
);
94 //===----------------------------------------------------------------------===//
96 /// A set of classes that contain the value of the
97 /// attribute object. There are three main categories: enum attribute entries,
98 /// represented by Attribute::AttrKind; alignment attribute entries; and string
99 /// attribute enties, which are for target-dependent attributes.
101 class EnumAttributeImpl
: public AttributeImpl
{
102 virtual void anchor();
104 Attribute::AttrKind Kind
;
107 EnumAttributeImpl(AttrEntryKind ID
, Attribute::AttrKind Kind
)
108 : AttributeImpl(ID
), Kind(Kind
) {}
111 EnumAttributeImpl(Attribute::AttrKind Kind
)
112 : AttributeImpl(EnumAttrEntry
), Kind(Kind
) {}
114 Attribute::AttrKind
getEnumKind() const { return Kind
; }
117 class IntAttributeImpl
: public EnumAttributeImpl
{
120 void anchor() override
;
123 IntAttributeImpl(Attribute::AttrKind Kind
, uint64_t Val
)
124 : EnumAttributeImpl(IntAttrEntry
, Kind
), Val(Val
) {
125 assert((Kind
== Attribute::Alignment
|| Kind
== Attribute::StackAlignment
||
126 Kind
== Attribute::Dereferenceable
||
127 Kind
== Attribute::DereferenceableOrNull
||
128 Kind
== Attribute::AllocSize
) &&
129 "Wrong kind for int attribute!");
132 uint64_t getValue() const { return Val
; }
135 class StringAttributeImpl
: public AttributeImpl
{
136 virtual void anchor();
142 StringAttributeImpl(StringRef Kind
, StringRef Val
= StringRef())
143 : AttributeImpl(StringAttrEntry
), Kind(Kind
), Val(Val
) {}
145 StringRef
getStringKind() const { return Kind
; }
146 StringRef
getStringValue() const { return Val
; }
149 //===----------------------------------------------------------------------===//
151 /// This class represents a group of attributes that apply to one
152 /// element: function, return type, or parameter.
153 class AttributeSetNode final
154 : public FoldingSetNode
,
155 private TrailingObjects
<AttributeSetNode
, Attribute
> {
156 friend TrailingObjects
;
158 /// Bitset with a bit for each available attribute Attribute::AttrKind.
159 uint64_t AvailableAttrs
;
160 unsigned NumAttrs
; ///< Number of attributes in this node.
162 AttributeSetNode(ArrayRef
<Attribute
> Attrs
);
165 // AttributesSetNode is uniqued, these should not be available.
166 AttributeSetNode(const AttributeSetNode
&) = delete;
167 AttributeSetNode
&operator=(const AttributeSetNode
&) = delete;
169 void operator delete(void *p
) { ::operator delete(p
); }
171 static AttributeSetNode
*get(LLVMContext
&C
, const AttrBuilder
&B
);
173 static AttributeSetNode
*get(LLVMContext
&C
, ArrayRef
<Attribute
> Attrs
);
175 /// Return the number of attributes this AttributeList contains.
176 unsigned getNumAttributes() const { return NumAttrs
; }
178 bool hasAttribute(Attribute::AttrKind Kind
) const {
179 return AvailableAttrs
& ((uint64_t)1) << Kind
;
181 bool hasAttribute(StringRef Kind
) const;
182 bool hasAttributes() const { return NumAttrs
!= 0; }
184 Attribute
getAttribute(Attribute::AttrKind Kind
) const;
185 Attribute
getAttribute(StringRef Kind
) const;
187 unsigned getAlignment() const;
188 unsigned getStackAlignment() const;
189 uint64_t getDereferenceableBytes() const;
190 uint64_t getDereferenceableOrNullBytes() const;
191 std::pair
<unsigned, Optional
<unsigned>> getAllocSizeArgs() const;
192 std::string
getAsString(bool InAttrGrp
) const;
194 using iterator
= const Attribute
*;
196 iterator
begin() const { return getTrailingObjects
<Attribute
>(); }
197 iterator
end() const { return begin() + NumAttrs
; }
199 void Profile(FoldingSetNodeID
&ID
) const {
200 Profile(ID
, makeArrayRef(begin(), end()));
203 static void Profile(FoldingSetNodeID
&ID
, ArrayRef
<Attribute
> AttrList
) {
204 for (const auto &Attr
: AttrList
)
209 using IndexAttrPair
= std::pair
<unsigned, AttributeSet
>;
211 //===----------------------------------------------------------------------===//
213 /// This class represents a set of attributes that apply to the function,
214 /// return type, and parameters.
215 class AttributeListImpl final
216 : public FoldingSetNode
,
217 private TrailingObjects
<AttributeListImpl
, AttributeSet
> {
218 friend class AttributeList
;
219 friend TrailingObjects
;
222 /// Bitset with a bit for each available attribute Attribute::AttrKind.
223 uint64_t AvailableFunctionAttrs
;
224 LLVMContext
&Context
;
225 unsigned NumAttrSets
; ///< Number of entries in this set.
227 // Helper fn for TrailingObjects class.
228 size_t numTrailingObjects(OverloadToken
<AttributeSet
>) { return NumAttrSets
; }
231 AttributeListImpl(LLVMContext
&C
, ArrayRef
<AttributeSet
> Sets
);
233 // AttributesSetImpt is uniqued, these should not be available.
234 AttributeListImpl(const AttributeListImpl
&) = delete;
235 AttributeListImpl
&operator=(const AttributeListImpl
&) = delete;
237 void operator delete(void *p
) { ::operator delete(p
); }
239 /// Get the context that created this AttributeListImpl.
240 LLVMContext
&getContext() { return Context
; }
242 /// Return true if the AttributeSet or the FunctionIndex has an
243 /// enum attribute of the given kind.
244 bool hasFnAttribute(Attribute::AttrKind Kind
) const {
245 return AvailableFunctionAttrs
& ((uint64_t)1) << Kind
;
248 using iterator
= const AttributeSet
*;
250 iterator
begin() const { return getTrailingObjects
<AttributeSet
>(); }
251 iterator
end() const { return begin() + NumAttrSets
; }
253 void Profile(FoldingSetNodeID
&ID
) const;
254 static void Profile(FoldingSetNodeID
&ID
, ArrayRef
<AttributeSet
> Nodes
);
259 } // end namespace llvm
261 #endif // LLVM_LIB_IR_ATTRIBUTEIMPL_H