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.h296 class AttributeSetNode final
298 private TrailingObjects<AttributeSetNode, Attribute> {
306 AttributeSetNode(ArrayRef<Attribute> Attrs);
308 static AttributeSetNode *getSorted(LLVMContext &C,
314 AttributeSetNode(const AttributeSetNode &) = delete;
315 AttributeSetNode &operator=(const AttributeSetNode &) = delete;
319 static AttributeSetNode *get(LLVMContext &C, const AttrBuilder &B);
321 static AttributeSetNode *get(LLVMContext &C, ArrayRef<Attribute> Attrs);
H A DAttributes.cpp843 return AttributeSet(AttributeSetNode::get(C, B)); in get()
847 return AttributeSet(AttributeSetNode::get(C, Attrs)); in get()
1028 AttributeSetNode::AttributeSetNode(ArrayRef<Attribute> Attrs) in AttributeSetNode() function in AttributeSetNode
1041 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, in get()
1048 AttributeSetNode *AttributeSetNode::getSorted(LLVMContext &C, in getSorted()
1062 AttributeSetNode *PA = in getSorted()
1070 PA = new (Mem) AttributeSetNode(SortedAttrs); in getSorted()
1078 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, const AttrBuilder &B) { in get()
1082 bool AttributeSetNode::hasAttribute(StringRef Kind) const { in hasAttribute()
1087 AttributeSetNode::findEnumAttribute(Attribute::AttrKind Kind) const { in findEnumAttribute()
[all …]
H A DLLVMContextImpl.cpp131 for (FoldingSetIterator<AttributeSetNode> I = AttrsSetNodes.begin(), in ~LLVMContextImpl()
133 FoldingSetIterator<AttributeSetNode> Elem = I++; in ~LLVMContextImpl()
H A DLLVMContextImpl.h57 class AttributeSetNode; variable
1518 FoldingSet<AttributeSetNode> AttrsSetNodes;
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h39 class AttributeSetNode; variable
339 AttributeSetNode *SetNode = nullptr;
342 explicit AttributeSet(AttributeSetNode *ASN) : SetNode(ASN) {} in AttributeSet()
443 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
449 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
480 friend class AttributeSetNode;