1 //===- llvm/ADT/EquivalenceClasses.h - Generic Equiv. Classes ---*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// 9 /// \file 10 /// Generic implementation of equivalence classes through the use Tarjan's 11 /// efficient union-find algorithm. 12 /// 13 //===----------------------------------------------------------------------===// 14 15 #ifndef LLVM_ADT_EQUIVALENCECLASSES_H 16 #define LLVM_ADT_EQUIVALENCECLASSES_H 17 18 #include <cassert> 19 #include <cstddef> 20 #include <cstdint> 21 #include <iterator> 22 #include <set> 23 24 namespace llvm { 25 26 /// EquivalenceClasses - This represents a collection of equivalence classes and 27 /// supports three efficient operations: insert an element into a class of its 28 /// own, union two classes, and find the class for a given element. In 29 /// addition to these modification methods, it is possible to iterate over all 30 /// of the equivalence classes and all of the elements in a class. 31 /// 32 /// This implementation is an efficient implementation that only stores one copy 33 /// of the element being indexed per entry in the set, and allows any arbitrary 34 /// type to be indexed (as long as it can be ordered with operator< or a 35 /// comparator is provided). 36 /// 37 /// Here is a simple example using integers: 38 /// 39 /// \code 40 /// EquivalenceClasses<int> EC; 41 /// EC.unionSets(1, 2); // insert 1, 2 into the same set 42 /// EC.insert(4); EC.insert(5); // insert 4, 5 into own sets 43 /// EC.unionSets(5, 1); // merge the set for 1 with 5's set. 44 /// 45 /// for (EquivalenceClasses<int>::iterator I = EC.begin(), E = EC.end(); 46 /// I != E; ++I) { // Iterate over all of the equivalence sets. 47 /// if (!I->isLeader()) continue; // Ignore non-leader sets. 48 /// for (EquivalenceClasses<int>::member_iterator MI = EC.member_begin(I); 49 /// MI != EC.member_end(); ++MI) // Loop over members in this set. 50 /// cerr << *MI << " "; // Print member. 51 /// cerr << "\n"; // Finish set. 52 /// } 53 /// \endcode 54 /// 55 /// This example prints: 56 /// 4 57 /// 5 1 2 58 /// 59 template <class ElemTy, class Compare = std::less<ElemTy>> 60 class EquivalenceClasses { 61 /// ECValue - The EquivalenceClasses data structure is just a set of these. 62 /// Each of these represents a relation for a value. First it stores the 63 /// value itself, which provides the ordering that the set queries. Next, it 64 /// provides a "next pointer", which is used to enumerate all of the elements 65 /// in the unioned set. Finally, it defines either a "end of list pointer" or 66 /// "leader pointer" depending on whether the value itself is a leader. A 67 /// "leader pointer" points to the node that is the leader for this element, 68 /// if the node is not a leader. A "end of list pointer" points to the last 69 /// node in the list of members of this list. Whether or not a node is a 70 /// leader is determined by a bit stolen from one of the pointers. 71 class ECValue { 72 friend class EquivalenceClasses; 73 74 mutable const ECValue *Leader, *Next; 75 ElemTy Data; 76 77 // ECValue ctor - Start out with EndOfList pointing to this node, Next is 78 // Null, isLeader = true. 79 ECValue(const ElemTy &Elt) 80 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} 81 82 const ECValue *getLeader() const { 83 if (isLeader()) return this; 84 if (Leader->isLeader()) return Leader; 85 // Path compression. 86 return Leader = Leader->getLeader(); 87 } 88 89 const ECValue *getEndOfList() const { 90 assert(isLeader() && "Cannot get the end of a list for a non-leader!"); 91 return Leader; 92 } 93 94 void setNext(const ECValue *NewNext) const { 95 assert(getNext() == nullptr && "Already has a next pointer!"); 96 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader()); 97 } 98 99 public: 100 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1), 101 Data(RHS.Data) { 102 // Only support copying of singleton nodes. 103 assert(RHS.isLeader() && RHS.getNext() == nullptr && "Not a singleton!"); 104 } 105 106 bool isLeader() const { return (intptr_t)Next & 1; } 107 const ElemTy &getData() const { return Data; } 108 109 const ECValue *getNext() const { 110 return (ECValue*)((intptr_t)Next & ~(intptr_t)1); 111 } 112 }; 113 114 /// A wrapper of the comparator, to be passed to the set. 115 struct ECValueComparator { 116 using is_transparent = void; 117 118 ECValueComparator() : compare(Compare()) {} 119 120 bool operator()(const ECValue &lhs, const ECValue &rhs) const { 121 return compare(lhs.Data, rhs.Data); 122 } 123 124 template <typename T> 125 bool operator()(const T &lhs, const ECValue &rhs) const { 126 return compare(lhs, rhs.Data); 127 } 128 129 template <typename T> 130 bool operator()(const ECValue &lhs, const T &rhs) const { 131 return compare(lhs.Data, rhs); 132 } 133 134 const Compare compare; 135 }; 136 137 /// TheMapping - This implicitly provides a mapping from ElemTy values to the 138 /// ECValues, it just keeps the key as part of the value. 139 std::set<ECValue, ECValueComparator> TheMapping; 140 141 public: 142 EquivalenceClasses() = default; 143 EquivalenceClasses(const EquivalenceClasses &RHS) { 144 operator=(RHS); 145 } 146 147 const EquivalenceClasses &operator=(const EquivalenceClasses &RHS) { 148 TheMapping.clear(); 149 for (iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) 150 if (I->isLeader()) { 151 member_iterator MI = RHS.member_begin(I); 152 member_iterator LeaderIt = member_begin(insert(*MI)); 153 for (++MI; MI != member_end(); ++MI) 154 unionSets(LeaderIt, member_begin(insert(*MI))); 155 } 156 return *this; 157 } 158 159 //===--------------------------------------------------------------------===// 160 // Inspection methods 161 // 162 163 /// iterator* - Provides a way to iterate over all values in the set. 164 using iterator = typename std::set<ECValue>::const_iterator; 165 166 iterator begin() const { return TheMapping.begin(); } 167 iterator end() const { return TheMapping.end(); } 168 169 bool empty() const { return TheMapping.empty(); } 170 171 /// member_* Iterate over the members of an equivalence class. 172 class member_iterator; 173 member_iterator member_begin(iterator I) const { 174 // Only leaders provide anything to iterate over. 175 return member_iterator(I->isLeader() ? &*I : nullptr); 176 } 177 member_iterator member_end() const { 178 return member_iterator(nullptr); 179 } 180 181 /// findValue - Return an iterator to the specified value. If it does not 182 /// exist, end() is returned. 183 iterator findValue(const ElemTy &V) const { 184 return TheMapping.find(V); 185 } 186 187 /// getLeaderValue - Return the leader for the specified value that is in the 188 /// set. It is an error to call this method for a value that is not yet in 189 /// the set. For that, call getOrInsertLeaderValue(V). 190 const ElemTy &getLeaderValue(const ElemTy &V) const { 191 member_iterator MI = findLeader(V); 192 assert(MI != member_end() && "Value is not in the set!"); 193 return *MI; 194 } 195 196 /// getOrInsertLeaderValue - Return the leader for the specified value that is 197 /// in the set. If the member is not in the set, it is inserted, then 198 /// returned. 199 const ElemTy &getOrInsertLeaderValue(const ElemTy &V) { 200 member_iterator MI = findLeader(insert(V)); 201 assert(MI != member_end() && "Value is not in the set!"); 202 return *MI; 203 } 204 205 /// getNumClasses - Return the number of equivalence classes in this set. 206 /// Note that this is a linear time operation. 207 unsigned getNumClasses() const { 208 unsigned NC = 0; 209 for (iterator I = begin(), E = end(); I != E; ++I) 210 if (I->isLeader()) ++NC; 211 return NC; 212 } 213 214 //===--------------------------------------------------------------------===// 215 // Mutation methods 216 217 /// insert - Insert a new value into the union/find set, ignoring the request 218 /// if the value already exists. 219 iterator insert(const ElemTy &Data) { 220 return TheMapping.insert(ECValue(Data)).first; 221 } 222 223 /// findLeader - Given a value in the set, return a member iterator for the 224 /// equivalence class it is in. This does the path-compression part that 225 /// makes union-find "union findy". This returns an end iterator if the value 226 /// is not in the equivalence class. 227 member_iterator findLeader(iterator I) const { 228 if (I == TheMapping.end()) return member_end(); 229 return member_iterator(I->getLeader()); 230 } 231 member_iterator findLeader(const ElemTy &V) const { 232 return findLeader(TheMapping.find(V)); 233 } 234 235 /// union - Merge the two equivalence sets for the specified values, inserting 236 /// them if they do not already exist in the equivalence set. 237 member_iterator unionSets(const ElemTy &V1, const ElemTy &V2) { 238 iterator V1I = insert(V1), V2I = insert(V2); 239 return unionSets(findLeader(V1I), findLeader(V2I)); 240 } 241 member_iterator unionSets(member_iterator L1, member_iterator L2) { 242 assert(L1 != member_end() && L2 != member_end() && "Illegal inputs!"); 243 if (L1 == L2) return L1; // Unifying the same two sets, noop. 244 245 // Otherwise, this is a real union operation. Set the end of the L1 list to 246 // point to the L2 leader node. 247 const ECValue &L1LV = *L1.Node, &L2LV = *L2.Node; 248 L1LV.getEndOfList()->setNext(&L2LV); 249 250 // Update L1LV's end of list pointer. 251 L1LV.Leader = L2LV.getEndOfList(); 252 253 // Clear L2's leader flag: 254 L2LV.Next = L2LV.getNext(); 255 256 // L2's leader is now L1. 257 L2LV.Leader = &L1LV; 258 return L1; 259 } 260 261 // isEquivalent - Return true if V1 is equivalent to V2. This can happen if 262 // V1 is equal to V2 or if they belong to one equivalence class. 263 bool isEquivalent(const ElemTy &V1, const ElemTy &V2) const { 264 // Fast path: any element is equivalent to itself. 265 if (V1 == V2) 266 return true; 267 auto It = findLeader(V1); 268 return It != member_end() && It == findLeader(V2); 269 } 270 271 class member_iterator { 272 friend class EquivalenceClasses; 273 274 const ECValue *Node; 275 276 public: 277 using iterator_category = std::forward_iterator_tag; 278 using value_type = const ElemTy; 279 using size_type = std::size_t; 280 using difference_type = std::ptrdiff_t; 281 using pointer = value_type *; 282 using reference = value_type &; 283 284 explicit member_iterator() = default; 285 explicit member_iterator(const ECValue *N) : Node(N) {} 286 287 reference operator*() const { 288 assert(Node != nullptr && "Dereferencing end()!"); 289 return Node->getData(); 290 } 291 pointer operator->() const { return &operator*(); } 292 293 member_iterator &operator++() { 294 assert(Node != nullptr && "++'d off the end of the list!"); 295 Node = Node->getNext(); 296 return *this; 297 } 298 299 member_iterator operator++(int) { // postincrement operators. 300 member_iterator tmp = *this; 301 ++*this; 302 return tmp; 303 } 304 305 bool operator==(const member_iterator &RHS) const { 306 return Node == RHS.Node; 307 } 308 bool operator!=(const member_iterator &RHS) const { 309 return Node != RHS.Node; 310 } 311 }; 312 }; 313 314 } // end namespace llvm 315 316 #endif // LLVM_ADT_EQUIVALENCECLASSES_H 317