Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 1 | //===-- Support/FoldingSet.cpp - Uniquing Hash Set --------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements a hash set that can be used to remove duplication of |
| 11 | // nodes in a graph. This code was originally created by Chris Lattner for use |
| 12 | // with SelectionDAGCSEMap, but was isolated to provide use across the llvm code |
| 13 | // set. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #include "llvm/ADT/FoldingSet.h" |
Dan Gohman | c93b4cf | 2010-03-18 16:16:38 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Allocator.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 19 | #include "llvm/Support/ErrorHandling.h" |
Bill Wendling | 160db5d | 2006-10-27 18:47:29 +0000 | [diff] [blame] | 20 | #include "llvm/Support/MathExtras.h" |
Rafael Espindola | 39c6d3a | 2006-11-03 01:38:14 +0000 | [diff] [blame] | 21 | #include <cassert> |
Anton Korobeynikov | ae9f3a3 | 2008-02-20 11:08:44 +0000 | [diff] [blame] | 22 | #include <cstring> |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 23 | using namespace llvm; |
| 24 | |
| 25 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 26 | // FoldingSetNodeID Implementation |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 27 | |
| 28 | /// Add* - Add various data types to Bit data. |
| 29 | /// |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 30 | void FoldingSetNodeID::AddPointer(const void *Ptr) { |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 31 | // Note: this adds pointers to the hash using sizes and endianness that |
| 32 | // depend on the host. It doesn't matter however, because hashing on |
| 33 | // pointer values in inherently unstable. Nothing should depend on the |
| 34 | // ordering of nodes in the folding set. |
| 35 | intptr_t PtrI = (intptr_t)Ptr; |
| 36 | Bits.push_back(unsigned(PtrI)); |
| 37 | if (sizeof(intptr_t) > sizeof(unsigned)) |
| 38 | Bits.push_back(unsigned(uint64_t(PtrI) >> 32)); |
| 39 | } |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 40 | void FoldingSetNodeID::AddInteger(signed I) { |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 41 | Bits.push_back(I); |
| 42 | } |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 43 | void FoldingSetNodeID::AddInteger(unsigned I) { |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 44 | Bits.push_back(I); |
| 45 | } |
Dan Gohman | 20cd13f | 2008-11-03 19:40:18 +0000 | [diff] [blame] | 46 | void FoldingSetNodeID::AddInteger(long I) { |
| 47 | AddInteger((unsigned long)I); |
Dan Gohman | f82e1e6 | 2007-09-14 20:48:42 +0000 | [diff] [blame] | 48 | } |
Dan Gohman | 20cd13f | 2008-11-03 19:40:18 +0000 | [diff] [blame] | 49 | void FoldingSetNodeID::AddInteger(unsigned long I) { |
| 50 | if (sizeof(long) == sizeof(int)) |
| 51 | AddInteger(unsigned(I)); |
| 52 | else if (sizeof(long) == sizeof(long long)) { |
| 53 | AddInteger((unsigned long long)I); |
| 54 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 55 | llvm_unreachable("unexpected sizeof(long)"); |
Dan Gohman | 20cd13f | 2008-11-03 19:40:18 +0000 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | void FoldingSetNodeID::AddInteger(long long I) { |
| 59 | AddInteger((unsigned long long)I); |
| 60 | } |
| 61 | void FoldingSetNodeID::AddInteger(unsigned long long I) { |
| 62 | AddInteger(unsigned(I)); |
Chris Lattner | e4116f8 | 2007-02-04 01:48:10 +0000 | [diff] [blame] | 63 | if ((uint64_t)(int)I != I) |
| 64 | Bits.push_back(unsigned(I >> 32)); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 65 | } |
Owen Anderson | 72e61b8 | 2008-07-01 23:49:59 +0000 | [diff] [blame] | 66 | |
Daniel Dunbar | 27dba67 | 2009-09-22 03:34:53 +0000 | [diff] [blame] | 67 | void FoldingSetNodeID::AddString(StringRef String) { |
| 68 | unsigned Size = String.size(); |
Owen Anderson | 72e61b8 | 2008-07-01 23:49:59 +0000 | [diff] [blame] | 69 | Bits.push_back(Size); |
| 70 | if (!Size) return; |
| 71 | |
| 72 | unsigned Units = Size / 4; |
| 73 | unsigned Pos = 0; |
Daniel Dunbar | 27dba67 | 2009-09-22 03:34:53 +0000 | [diff] [blame] | 74 | const unsigned *Base = (const unsigned*) String.data(); |
Owen Anderson | 72e61b8 | 2008-07-01 23:49:59 +0000 | [diff] [blame] | 75 | |
| 76 | // If the string is aligned do a bulk transfer. |
| 77 | if (!((intptr_t)Base & 3)) { |
| 78 | Bits.append(Base, Base + Units); |
| 79 | Pos = (Units + 1) * 4; |
| 80 | } else { |
| 81 | // Otherwise do it the hard way. |
Nick Lewycky | f996831 | 2009-02-07 04:57:08 +0000 | [diff] [blame] | 82 | for (Pos += 4; Pos <= Size; Pos += 4) { |
Owen Anderson | 72e61b8 | 2008-07-01 23:49:59 +0000 | [diff] [blame] | 83 | unsigned V = ((unsigned char)String[Pos - 4] << 24) | |
| 84 | ((unsigned char)String[Pos - 3] << 16) | |
| 85 | ((unsigned char)String[Pos - 2] << 8) | |
| 86 | (unsigned char)String[Pos - 1]; |
| 87 | Bits.push_back(V); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | // With the leftover bits. |
| 92 | unsigned V = 0; |
| 93 | // Pos will have overshot size by 4 - #bytes left over. |
| 94 | switch (Pos - Size) { |
| 95 | case 1: V = (V << 8) | (unsigned char)String[Size - 3]; // Fall thru. |
| 96 | case 2: V = (V << 8) | (unsigned char)String[Size - 2]; // Fall thru. |
| 97 | case 3: V = (V << 8) | (unsigned char)String[Size - 1]; break; |
| 98 | default: return; // Nothing left. |
| 99 | } |
| 100 | |
| 101 | Bits.push_back(V); |
| 102 | } |
| 103 | |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 104 | /// ComputeHash - Compute a strong hash value for this FoldingSetNodeID, used to |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 105 | /// lookup the node in the FoldingSetImpl. |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 106 | unsigned FoldingSetNodeID::ComputeHash() const { |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 107 | // This is adapted from SuperFastHash by Paul Hsieh. |
Evan Cheng | 34cd4a4 | 2008-05-05 18:30:58 +0000 | [diff] [blame] | 108 | unsigned Hash = static_cast<unsigned>(Bits.size()); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 109 | for (const unsigned *BP = &Bits[0], *E = BP+Bits.size(); BP != E; ++BP) { |
| 110 | unsigned Data = *BP; |
| 111 | Hash += Data & 0xFFFF; |
| 112 | unsigned Tmp = ((Data >> 16) << 11) ^ Hash; |
| 113 | Hash = (Hash << 16) ^ Tmp; |
| 114 | Hash += Hash >> 11; |
| 115 | } |
| 116 | |
| 117 | // Force "avalanching" of final 127 bits. |
| 118 | Hash ^= Hash << 3; |
| 119 | Hash += Hash >> 5; |
| 120 | Hash ^= Hash << 4; |
| 121 | Hash += Hash >> 17; |
| 122 | Hash ^= Hash << 25; |
| 123 | Hash += Hash >> 6; |
| 124 | return Hash; |
| 125 | } |
| 126 | |
| 127 | /// operator== - Used to compare two nodes to each other. |
| 128 | /// |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 129 | bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS)const{ |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 130 | if (Bits.size() != RHS.Bits.size()) return false; |
| 131 | return memcmp(&Bits[0], &RHS.Bits[0], Bits.size()*sizeof(Bits[0])) == 0; |
| 132 | } |
| 133 | |
Dan Gohman | c93b4cf | 2010-03-18 16:16:38 +0000 | [diff] [blame] | 134 | /// Intern - Copy this node's data to a memory region allocated from the |
| 135 | /// given allocator and return a FoldingSetNodeIDRef describing the |
| 136 | /// interned data. |
| 137 | FoldingSetNodeIDRef |
| 138 | FoldingSetNodeID::Intern(BumpPtrAllocator &Allocator) const { |
| 139 | unsigned *New = Allocator.Allocate<unsigned>(Bits.size()); |
| 140 | std::uninitialized_copy(Bits.begin(), Bits.end(), New); |
| 141 | return FoldingSetNodeIDRef(New, Bits.size()); |
| 142 | } |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 143 | |
| 144 | //===----------------------------------------------------------------------===// |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 145 | /// Helper functions for FoldingSetImpl. |
| 146 | |
| 147 | /// GetNextPtr - In order to save space, each bucket is a |
| 148 | /// singly-linked-list. In order to make deletion more efficient, we make |
| 149 | /// the list circular, so we can delete a node without computing its hash. |
| 150 | /// The problem with this is that the start of the hash buckets are not |
Chris Lattner | 3cab071 | 2007-01-30 23:16:22 +0000 | [diff] [blame] | 151 | /// Nodes. If NextInBucketPtr is a bucket pointer, this method returns null: |
| 152 | /// use GetBucketPtr when this happens. |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 153 | static FoldingSetImpl::Node *GetNextPtr(void *NextInBucketPtr) { |
| 154 | // The low bit is set if this is the pointer back to the bucket. |
| 155 | if (reinterpret_cast<intptr_t>(NextInBucketPtr) & 1) |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 156 | return 0; |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 157 | |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 158 | return static_cast<FoldingSetImpl::Node*>(NextInBucketPtr); |
| 159 | } |
| 160 | |
Ted Kremenek | 26e3c44 | 2008-02-04 21:11:17 +0000 | [diff] [blame] | 161 | |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 162 | /// testing. |
| 163 | static void **GetBucketPtr(void *NextInBucketPtr) { |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 164 | intptr_t Ptr = reinterpret_cast<intptr_t>(NextInBucketPtr); |
Chris Lattner | 116c321 | 2007-10-03 21:12:09 +0000 | [diff] [blame] | 165 | assert((Ptr & 1) && "Not a bucket pointer"); |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 166 | return reinterpret_cast<void**>(Ptr & ~intptr_t(1)); |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | /// GetBucketFor - Hash the specified node ID and return the hash bucket for |
| 170 | /// the specified ID. |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 171 | static void **GetBucketFor(const FoldingSetNodeID &ID, |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 172 | void **Buckets, unsigned NumBuckets) { |
| 173 | // NumBuckets is always a power of 2. |
| 174 | unsigned BucketNum = ID.ComputeHash() & (NumBuckets-1); |
| 175 | return Buckets + BucketNum; |
| 176 | } |
| 177 | |
| 178 | //===----------------------------------------------------------------------===// |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 179 | // FoldingSetImpl Implementation |
| 180 | |
Dan Gohman | 535de1a | 2008-08-23 00:42:16 +0000 | [diff] [blame] | 181 | FoldingSetImpl::FoldingSetImpl(unsigned Log2InitSize) { |
Jim Laskey | 1f67a99 | 2006-11-02 14:21:26 +0000 | [diff] [blame] | 182 | assert(5 < Log2InitSize && Log2InitSize < 32 && |
| 183 | "Initial hash table size out of range"); |
| 184 | NumBuckets = 1 << Log2InitSize; |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 185 | Buckets = new void*[NumBuckets+1]; |
Dan Gohman | 535de1a | 2008-08-23 00:42:16 +0000 | [diff] [blame] | 186 | clear(); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 187 | } |
| 188 | FoldingSetImpl::~FoldingSetImpl() { |
| 189 | delete [] Buckets; |
| 190 | } |
Dan Gohman | 535de1a | 2008-08-23 00:42:16 +0000 | [diff] [blame] | 191 | void FoldingSetImpl::clear() { |
| 192 | // Set all but the last bucket to null pointers. |
| 193 | memset(Buckets, 0, NumBuckets*sizeof(void*)); |
| 194 | |
| 195 | // Set the very last bucket to be a non-null "pointer". |
| 196 | Buckets[NumBuckets] = reinterpret_cast<void*>(-1); |
| 197 | |
| 198 | // Reset the node count to zero. |
| 199 | NumNodes = 0; |
| 200 | } |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 201 | |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 202 | /// GrowHashTable - Double the size of the hash table and rehash everything. |
| 203 | /// |
| 204 | void FoldingSetImpl::GrowHashTable() { |
| 205 | void **OldBuckets = Buckets; |
| 206 | unsigned OldNumBuckets = NumBuckets; |
| 207 | NumBuckets <<= 1; |
| 208 | |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 209 | // Clear out new buckets. |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 210 | Buckets = new void*[NumBuckets+1]; |
Dan Gohman | 535de1a | 2008-08-23 00:42:16 +0000 | [diff] [blame] | 211 | clear(); |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 212 | |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 213 | // Walk the old buckets, rehashing nodes into their new place. |
Dan Gohman | ee4bd9a | 2008-08-12 17:40:22 +0000 | [diff] [blame] | 214 | FoldingSetNodeID ID; |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 215 | for (unsigned i = 0; i != OldNumBuckets; ++i) { |
| 216 | void *Probe = OldBuckets[i]; |
| 217 | if (!Probe) continue; |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 218 | while (Node *NodeInBucket = GetNextPtr(Probe)) { |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 219 | // Figure out the next link, remove NodeInBucket from the old link. |
| 220 | Probe = NodeInBucket->getNextInBucket(); |
| 221 | NodeInBucket->SetNextInBucket(0); |
| 222 | |
| 223 | // Insert the node into the new bucket, after recomputing the hash. |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 224 | GetNodeProfile(ID, NodeInBucket); |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 225 | InsertNode(NodeInBucket, GetBucketFor(ID, Buckets, NumBuckets)); |
Dan Gohman | ee4bd9a | 2008-08-12 17:40:22 +0000 | [diff] [blame] | 226 | ID.clear(); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 227 | } |
| 228 | } |
| 229 | |
| 230 | delete[] OldBuckets; |
| 231 | } |
| 232 | |
| 233 | /// FindNodeOrInsertPos - Look up the node specified by ID. If it exists, |
| 234 | /// return it. If not, return the insertion token that will make insertion |
| 235 | /// faster. |
Ted Kremenek | 27a8e0d | 2008-02-04 17:14:20 +0000 | [diff] [blame] | 236 | FoldingSetImpl::Node |
| 237 | *FoldingSetImpl::FindNodeOrInsertPos(const FoldingSetNodeID &ID, |
| 238 | void *&InsertPos) { |
| 239 | |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 240 | void **Bucket = GetBucketFor(ID, Buckets, NumBuckets); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 241 | void *Probe = *Bucket; |
| 242 | |
| 243 | InsertPos = 0; |
| 244 | |
Dan Gohman | ee4bd9a | 2008-08-12 17:40:22 +0000 | [diff] [blame] | 245 | FoldingSetNodeID OtherID; |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 246 | while (Node *NodeInBucket = GetNextPtr(Probe)) { |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 247 | GetNodeProfile(OtherID, NodeInBucket); |
| 248 | if (OtherID == ID) |
| 249 | return NodeInBucket; |
| 250 | |
| 251 | Probe = NodeInBucket->getNextInBucket(); |
Dan Gohman | ee4bd9a | 2008-08-12 17:40:22 +0000 | [diff] [blame] | 252 | OtherID.clear(); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | // Didn't find the node, return null with the bucket as the InsertPos. |
| 256 | InsertPos = Bucket; |
| 257 | return 0; |
| 258 | } |
| 259 | |
| 260 | /// InsertNode - Insert the specified node into the folding set, knowing that it |
| 261 | /// is not already in the map. InsertPos must be obtained from |
| 262 | /// FindNodeOrInsertPos. |
| 263 | void FoldingSetImpl::InsertNode(Node *N, void *InsertPos) { |
Chris Lattner | 0de4439 | 2007-02-01 05:33:21 +0000 | [diff] [blame] | 264 | assert(N->getNextInBucket() == 0); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 265 | // Do we need to grow the hashtable? |
Chris Lattner | b85210f | 2007-01-31 06:04:41 +0000 | [diff] [blame] | 266 | if (NumNodes+1 > NumBuckets*2) { |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 267 | GrowHashTable(); |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 268 | FoldingSetNodeID ID; |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 269 | GetNodeProfile(ID, N); |
Jim Laskey | 18529f3 | 2006-10-27 18:05:12 +0000 | [diff] [blame] | 270 | InsertPos = GetBucketFor(ID, Buckets, NumBuckets); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 271 | } |
Chris Lattner | b85210f | 2007-01-31 06:04:41 +0000 | [diff] [blame] | 272 | |
| 273 | ++NumNodes; |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 274 | |
| 275 | /// The insert position is actually a bucket pointer. |
| 276 | void **Bucket = static_cast<void**>(InsertPos); |
| 277 | |
| 278 | void *Next = *Bucket; |
| 279 | |
| 280 | // If this is the first insertion into this bucket, its next pointer will be |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 281 | // null. Pretend as if it pointed to itself, setting the low bit to indicate |
| 282 | // that it is a pointer to the bucket. |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 283 | if (Next == 0) |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 284 | Next = reinterpret_cast<void*>(reinterpret_cast<intptr_t>(Bucket)|1); |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 285 | |
Chris Lattner | b85210f | 2007-01-31 06:04:41 +0000 | [diff] [blame] | 286 | // Set the node's next pointer, and make the bucket point to the node. |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 287 | N->SetNextInBucket(Next); |
| 288 | *Bucket = N; |
| 289 | } |
| 290 | |
| 291 | /// RemoveNode - Remove a node from the folding set, returning true if one was |
| 292 | /// removed or false if the node was not in the folding set. |
| 293 | bool FoldingSetImpl::RemoveNode(Node *N) { |
| 294 | // Because each bucket is a circular list, we don't need to compute N's hash |
Chris Lattner | 0de4439 | 2007-02-01 05:33:21 +0000 | [diff] [blame] | 295 | // to remove it. |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 296 | void *Ptr = N->getNextInBucket(); |
| 297 | if (Ptr == 0) return false; // Not in folding set. |
| 298 | |
| 299 | --NumNodes; |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 300 | N->SetNextInBucket(0); |
Chris Lattner | 0de4439 | 2007-02-01 05:33:21 +0000 | [diff] [blame] | 301 | |
| 302 | // Remember what N originally pointed to, either a bucket or another node. |
| 303 | void *NodeNextPtr = Ptr; |
| 304 | |
| 305 | // Chase around the list until we find the node (or bucket) which points to N. |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 306 | while (true) { |
Chris Lattner | 9a7288b | 2007-10-03 20:45:43 +0000 | [diff] [blame] | 307 | if (Node *NodeInBucket = GetNextPtr(Ptr)) { |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 308 | // Advance pointer. |
| 309 | Ptr = NodeInBucket->getNextInBucket(); |
| 310 | |
| 311 | // We found a node that points to N, change it to point to N's next node, |
| 312 | // removing N from the list. |
| 313 | if (Ptr == N) { |
| 314 | NodeInBucket->SetNextInBucket(NodeNextPtr); |
| 315 | return true; |
| 316 | } |
| 317 | } else { |
| 318 | void **Bucket = GetBucketPtr(Ptr); |
| 319 | Ptr = *Bucket; |
| 320 | |
| 321 | // If we found that the bucket points to N, update the bucket to point to |
| 322 | // whatever is next. |
| 323 | if (Ptr == N) { |
| 324 | *Bucket = NodeNextPtr; |
| 325 | return true; |
| 326 | } |
| 327 | } |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | /// GetOrInsertNode - If there is an existing simple Node exactly |
| 332 | /// equal to the specified node, return it. Otherwise, insert 'N' and it |
| 333 | /// instead. |
| 334 | FoldingSetImpl::Node *FoldingSetImpl::GetOrInsertNode(FoldingSetImpl::Node *N) { |
Ted Kremenek | 0a3feca | 2008-01-19 04:22:50 +0000 | [diff] [blame] | 335 | FoldingSetNodeID ID; |
Jim Laskey | 0e5af19 | 2006-10-27 16:16:16 +0000 | [diff] [blame] | 336 | GetNodeProfile(ID, N); |
| 337 | void *IP; |
| 338 | if (Node *E = FindNodeOrInsertPos(ID, IP)) |
| 339 | return E; |
| 340 | InsertNode(N, IP); |
| 341 | return N; |
| 342 | } |
Chris Lattner | 116c321 | 2007-10-03 21:12:09 +0000 | [diff] [blame] | 343 | |
| 344 | //===----------------------------------------------------------------------===// |
| 345 | // FoldingSetIteratorImpl Implementation |
| 346 | |
| 347 | FoldingSetIteratorImpl::FoldingSetIteratorImpl(void **Bucket) { |
| 348 | // Skip to the first non-null non-self-cycle bucket. |
Ted Kremenek | e3e0957 | 2008-02-15 21:12:46 +0000 | [diff] [blame] | 349 | while (*Bucket != reinterpret_cast<void*>(-1) && |
| 350 | (*Bucket == 0 || GetNextPtr(*Bucket) == 0)) |
Chris Lattner | 116c321 | 2007-10-03 21:12:09 +0000 | [diff] [blame] | 351 | ++Bucket; |
| 352 | |
| 353 | NodePtr = static_cast<FoldingSetNode*>(*Bucket); |
| 354 | } |
| 355 | |
| 356 | void FoldingSetIteratorImpl::advance() { |
| 357 | // If there is another link within this bucket, go to it. |
| 358 | void *Probe = NodePtr->getNextInBucket(); |
| 359 | |
| 360 | if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe)) |
| 361 | NodePtr = NextNodeInBucket; |
| 362 | else { |
| 363 | // Otherwise, this is the last link in this bucket. |
| 364 | void **Bucket = GetBucketPtr(Probe); |
| 365 | |
| 366 | // Skip to the next non-null non-self-cycle bucket. |
| 367 | do { |
| 368 | ++Bucket; |
Ted Kremenek | e3e0957 | 2008-02-15 21:12:46 +0000 | [diff] [blame] | 369 | } while (*Bucket != reinterpret_cast<void*>(-1) && |
| 370 | (*Bucket == 0 || GetNextPtr(*Bucket) == 0)); |
Chris Lattner | 116c321 | 2007-10-03 21:12:09 +0000 | [diff] [blame] | 371 | |
| 372 | NodePtr = static_cast<FoldingSetNode*>(*Bucket); |
| 373 | } |
| 374 | } |
| 375 | |
Ted Kremenek | 26e3c44 | 2008-02-04 21:11:17 +0000 | [diff] [blame] | 376 | //===----------------------------------------------------------------------===// |
| 377 | // FoldingSetBucketIteratorImpl Implementation |
| 378 | |
| 379 | FoldingSetBucketIteratorImpl::FoldingSetBucketIteratorImpl(void **Bucket) { |
| 380 | Ptr = (*Bucket == 0 || GetNextPtr(*Bucket) == 0) ? (void*) Bucket : *Bucket; |
| 381 | } |