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