Searched refs:AttributeSetNode (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | AttributeImpl.h | 219 class AttributeSetNode final 221 private TrailingObjects<AttributeSetNode, Attribute> { 229 AttributeSetNode(ArrayRef<Attribute> Attrs); 231 static AttributeSetNode *getSorted(LLVMContext &C, 237 AttributeSetNode(const AttributeSetNode &) = delete; 238 AttributeSetNode &operator=(const AttributeSetNode &) = delete; 242 static AttributeSetNode *get(LLVMContext &C, const AttrBuilder &B); 244 static AttributeSetNode *get(LLVMContext &C, ArrayRef<Attribute> Attrs);
|
| H A D | Attributes.cpp | 694 return AttributeSet(AttributeSetNode::get(C, B)); in get() 698 return AttributeSet(AttributeSetNode::get(C, Attrs)); in get() 875 AttributeSetNode::AttributeSetNode(ArrayRef<Attribute> Attrs) in AttributeSetNode() function in AttributeSetNode 888 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, in get() 895 AttributeSetNode *AttributeSetNode::getSorted(LLVMContext &C, in getSorted() 909 AttributeSetNode *PA = in getSorted() 917 PA = new (Mem) AttributeSetNode(SortedAttrs); in getSorted() 925 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, const AttrBuilder &B) { in get() 929 bool AttributeSetNode::hasAttribute(StringRef Kind) const { in hasAttribute() 934 AttributeSetNode::findEnumAttribute(Attribute::AttrKind Kind) const { in findEnumAttribute() [all …]
|
| H A D | LLVMContextImpl.cpp | 124 for (FoldingSetIterator<AttributeSetNode> I = AttrsSetNodes.begin(), in ~LLVMContextImpl() 126 FoldingSetIterator<AttributeSetNode> Elem = I++; in ~LLVMContextImpl()
|
| H A D | LLVMContextImpl.h | 57 class AttributeSetNode; variable 1459 FoldingSet<AttributeSetNode> AttrsSetNodes;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | Attributes.h | 41 class AttributeSetNode; variable 304 AttributeSetNode *SetNode = nullptr; 307 explicit AttributeSet(AttributeSetNode *ASN) : SetNode(ASN) {} in AttributeSet() 407 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val)); 413 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val)); 444 friend class AttributeSetNode;
|