Home
last modified time | relevance | path

Searched refs:SetNode (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DAttributes.cpp757 return SetNode ? SetNode->getNumAttributes() : 0; in getNumAttributes()
761 return SetNode ? SetNode->hasAttribute(Kind) : false; in hasAttribute()
765 return SetNode ? SetNode->hasAttribute(Kind) : false; in hasAttribute()
769 return SetNode ? SetNode->getAttribute(Kind) : Attribute(); in getAttribute()
773 return SetNode ? SetNode->getAttribute(Kind) : Attribute(); in getAttribute()
777 return SetNode ? SetNode->getAlignment() : std::nullopt; in getAlignment()
781 return SetNode ? SetNode->getStackAlignment() : std::nullopt; in getStackAlignment()
785 return SetNode ? SetNode->getDereferenceableBytes() : 0; in getDereferenceableBytes()
789 return SetNode ? SetNode->getDereferenceableOrNullBytes() : 0; in getDereferenceableOrNullBytes()
793 return SetNode ? SetNode->getAttributeType(Attribute::ByRef) : nullptr; in getByRefType()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DAttributes.h304 AttributeSetNode *SetNode = nullptr; variable
307 explicit AttributeSet(AttributeSetNode *ASN) : SetNode(ASN) {} in AttributeSet()
318 bool operator==(const AttributeSet &O) const { return SetNode == O.SetNode; }
355 bool hasAttributes() const { return SetNode != nullptr; } in hasAttributes()
417 return (unsigned((uintptr_t)AS.SetNode) >> 4) ^
418 (unsigned((uintptr_t)AS.SetNode) >> 9);