Home
last modified time | relevance | path

Searched refs:AttributeSetNode (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAttributeImpl.h293 class AttributeSetNode final
295 private TrailingObjects<AttributeSetNode, Attribute> {
303 AttributeSetNode(ArrayRef<Attribute> Attrs);
305 static AttributeSetNode *getSorted(LLVMContext &C,
311 AttributeSetNode(const AttributeSetNode &) = delete;
312 AttributeSetNode &operator=(const AttributeSetNode &) = delete;
316 static AttributeSetNode *get(LLVMContext &C, const AttrBuilder &B);
318 static AttributeSetNode *get(LLVMContext &C, ArrayRef<Attribute> Attrs);
H A DAttributes.cpp922 return AttributeSet(AttributeSetNode::get(C, B)); in get()
926 return AttributeSet(AttributeSetNode::get(C, Attrs)); in get()
1241 AttributeSetNode::AttributeSetNode(ArrayRef<Attribute> Attrs) in AttributeSetNode() function in AttributeSetNode
1254 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, in get()
1261 AttributeSetNode *AttributeSetNode::getSorted(LLVMContext &C, in getSorted()
1275 AttributeSetNode *PA = in getSorted()
1283 PA = new (Mem) AttributeSetNode(SortedAttrs); in getSorted()
1291 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, const AttrBuilder &B) { in get()
1295 bool AttributeSetNode::hasAttribute(StringRef Kind) const { in hasAttribute()
1300 AttributeSetNode::findEnumAttribute(Attribute::AttrKind Kind) const { in findEnumAttribute()
[all …]
H A DLLVMContextImpl.cpp127 for (FoldingSetIterator<AttributeSetNode> I = AttrsSetNodes.begin(), in ~LLVMContextImpl()
129 FoldingSetIterator<AttributeSetNode> Elem = I++; in ~LLVMContextImpl()
H A DLLVMContextImpl.h57 class AttributeSetNode; variable
1695 FoldingSet<AttributeSetNode> AttrsSetNodes;
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h40 class AttributeSetNode; variable
370 AttributeSetNode *SetNode = nullptr;
373 explicit AttributeSet(AttributeSetNode *ASN) : SetNode(ASN) {} in AttributeSet()
481 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
487 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
518 friend class AttributeSetNode;