Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DEquivalenceClasses.h71 class ECValue {
74 mutable const ECValue *Leader, *Next;
79 ECValue(const ElemTy &Elt) in ECValue() function
80 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} in ECValue()
82 const ECValue *getLeader() const { in getLeader()
89 const ECValue *getEndOfList() const { in getEndOfList()
94 void setNext(const ECValue *NewNext) const { in setNext()
96 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader()); in setNext()
100 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1), in ECValue() function
109 const ECValue *getNext() const { in getNext()
[all …]