blob: 97d1f0d168957a27e2f04ab0926567f09203cca7 [file] [log] [blame]
Jim Laskey0e5af192006-10-27 16:16:16 +00001//===-- Support/FoldingSet.cpp - Uniquing Hash Set --------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jim Laskey0e5af192006-10-27 16:16:16 +00007//
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 Wendling160db5d2006-10-27 18:47:29 +000018#include "llvm/Support/MathExtras.h"
Rafael Espindola39c6d3a2006-11-03 01:38:14 +000019#include <cassert>
Jim Laskey0e5af192006-10-27 16:16:16 +000020using namespace llvm;
21
22//===----------------------------------------------------------------------===//
Ted Kremenek0a3feca2008-01-19 04:22:50 +000023// FoldingSetNodeID Implementation
Jim Laskey0e5af192006-10-27 16:16:16 +000024
25/// Add* - Add various data types to Bit data.
26///
Ted Kremenek0a3feca2008-01-19 04:22:50 +000027void FoldingSetNodeID::AddPointer(const void *Ptr) {
Jim Laskey0e5af192006-10-27 16:16:16 +000028 // Note: this adds pointers to the hash using sizes and endianness that
29 // depend on the host. It doesn't matter however, because hashing on
30 // pointer values in inherently unstable. Nothing should depend on the
31 // ordering of nodes in the folding set.
32 intptr_t PtrI = (intptr_t)Ptr;
33 Bits.push_back(unsigned(PtrI));
34 if (sizeof(intptr_t) > sizeof(unsigned))
35 Bits.push_back(unsigned(uint64_t(PtrI) >> 32));
36}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000037void FoldingSetNodeID::AddInteger(signed I) {
Jim Laskey0e5af192006-10-27 16:16:16 +000038 Bits.push_back(I);
39}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000040void FoldingSetNodeID::AddInteger(unsigned I) {
Jim Laskey0e5af192006-10-27 16:16:16 +000041 Bits.push_back(I);
42}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000043void FoldingSetNodeID::AddInteger(int64_t I) {
Dan Gohmanf82e1e62007-09-14 20:48:42 +000044 AddInteger((uint64_t)I);
45}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000046void FoldingSetNodeID::AddInteger(uint64_t I) {
Jim Laskey0e5af192006-10-27 16:16:16 +000047 Bits.push_back(unsigned(I));
Chris Lattnere4116f82007-02-04 01:48:10 +000048
49 // If the integer is small, encode it just as 32-bits.
50 if ((uint64_t)(int)I != I)
51 Bits.push_back(unsigned(I >> 32));
Jim Laskey0e5af192006-10-27 16:16:16 +000052}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000053void FoldingSetNodeID::AddFloat(float F) {
Jim Laskey0e5af192006-10-27 16:16:16 +000054 Bits.push_back(FloatToBits(F));
55}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000056void FoldingSetNodeID::AddDouble(double D) {
Jim Laskey18529f32006-10-27 18:05:12 +000057 AddInteger(DoubleToBits(D));
Jim Laskey0e5af192006-10-27 16:16:16 +000058}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000059void FoldingSetNodeID::AddString(const std::string &String) {
Jim Laskey0e5af192006-10-27 16:16:16 +000060 unsigned Size = String.size();
Jim Laskeya97c67c2006-10-29 09:19:59 +000061 Bits.push_back(Size);
62 if (!Size) return;
63
Jim Laskey18529f32006-10-27 18:05:12 +000064 unsigned Units = Size / 4;
65 unsigned Pos = 0;
Jim Laskey0e5af192006-10-27 16:16:16 +000066 const unsigned *Base = (const unsigned *)String.data();
Jim Laskey18529f32006-10-27 18:05:12 +000067
68 // If the string is aligned do a bulk transfer.
69 if (!((intptr_t)Base & 3)) {
Jim Laskey2ac33c42006-10-27 19:38:32 +000070 Bits.append(Base, Base + Units);
Jim Laskeya97c67c2006-10-29 09:19:59 +000071 Pos = (Units + 1) * 4;
Jim Laskey18529f32006-10-27 18:05:12 +000072 } else {
73 // Otherwise do it the hard way.
Jim Laskeyd8cb4462006-10-29 08:27:07 +000074 for ( Pos += 4; Pos <= Size; Pos += 4) {
Jim Laskey18529f32006-10-27 18:05:12 +000075 unsigned V = ((unsigned char)String[Pos - 4] << 24) |
76 ((unsigned char)String[Pos - 3] << 16) |
77 ((unsigned char)String[Pos - 2] << 8) |
78 (unsigned char)String[Pos - 1];
79 Bits.push_back(V);
80 }
Jim Laskey0e5af192006-10-27 16:16:16 +000081 }
Jim Laskey18529f32006-10-27 18:05:12 +000082
83 // With the leftover bits.
84 unsigned V = 0;
85 // Pos will have overshot size by 4 - #bytes left over.
86 switch (Pos - Size) {
87 case 1: V = (V << 8) | (unsigned char)String[Size - 3]; // Fall thru.
88 case 2: V = (V << 8) | (unsigned char)String[Size - 2]; // Fall thru.
89 case 3: V = (V << 8) | (unsigned char)String[Size - 1]; break;
Jim Laskeyd8cb4462006-10-29 08:27:07 +000090 default: return; // Nothing left.
Jim Laskey18529f32006-10-27 18:05:12 +000091 }
92
93 Bits.push_back(V);
Jim Laskey0e5af192006-10-27 16:16:16 +000094}
95
Ted Kremenek0a3feca2008-01-19 04:22:50 +000096/// ComputeHash - Compute a strong hash value for this FoldingSetNodeID, used to
Jim Laskey0e5af192006-10-27 16:16:16 +000097/// lookup the node in the FoldingSetImpl.
Ted Kremenek0a3feca2008-01-19 04:22:50 +000098unsigned FoldingSetNodeID::ComputeHash() const {
Jim Laskey0e5af192006-10-27 16:16:16 +000099 // This is adapted from SuperFastHash by Paul Hsieh.
100 unsigned Hash = Bits.size();
101 for (const unsigned *BP = &Bits[0], *E = BP+Bits.size(); BP != E; ++BP) {
102 unsigned Data = *BP;
103 Hash += Data & 0xFFFF;
104 unsigned Tmp = ((Data >> 16) << 11) ^ Hash;
105 Hash = (Hash << 16) ^ Tmp;
106 Hash += Hash >> 11;
107 }
108
109 // Force "avalanching" of final 127 bits.
110 Hash ^= Hash << 3;
111 Hash += Hash >> 5;
112 Hash ^= Hash << 4;
113 Hash += Hash >> 17;
114 Hash ^= Hash << 25;
115 Hash += Hash >> 6;
116 return Hash;
117}
118
119/// operator== - Used to compare two nodes to each other.
120///
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000121bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS)const{
Jim Laskey0e5af192006-10-27 16:16:16 +0000122 if (Bits.size() != RHS.Bits.size()) return false;
123 return memcmp(&Bits[0], &RHS.Bits[0], Bits.size()*sizeof(Bits[0])) == 0;
124}
125
126
127//===----------------------------------------------------------------------===//
Jim Laskey18529f32006-10-27 18:05:12 +0000128/// Helper functions for FoldingSetImpl.
129
130/// GetNextPtr - In order to save space, each bucket is a
131/// singly-linked-list. In order to make deletion more efficient, we make
132/// the list circular, so we can delete a node without computing its hash.
133/// The problem with this is that the start of the hash buckets are not
Chris Lattner3cab0712007-01-30 23:16:22 +0000134/// Nodes. If NextInBucketPtr is a bucket pointer, this method returns null:
135/// use GetBucketPtr when this happens.
Chris Lattner9a7288b2007-10-03 20:45:43 +0000136static FoldingSetImpl::Node *GetNextPtr(void *NextInBucketPtr) {
137 // The low bit is set if this is the pointer back to the bucket.
138 if (reinterpret_cast<intptr_t>(NextInBucketPtr) & 1)
Jim Laskey18529f32006-10-27 18:05:12 +0000139 return 0;
Chris Lattner9a7288b2007-10-03 20:45:43 +0000140
Jim Laskey18529f32006-10-27 18:05:12 +0000141 return static_cast<FoldingSetImpl::Node*>(NextInBucketPtr);
142}
143
Ted Kremenek26e3c442008-02-04 21:11:17 +0000144
Jim Laskey18529f32006-10-27 18:05:12 +0000145/// testing.
146static void **GetBucketPtr(void *NextInBucketPtr) {
Chris Lattner9a7288b2007-10-03 20:45:43 +0000147 intptr_t Ptr = reinterpret_cast<intptr_t>(NextInBucketPtr);
Chris Lattner116c3212007-10-03 21:12:09 +0000148 assert((Ptr & 1) && "Not a bucket pointer");
Chris Lattner9a7288b2007-10-03 20:45:43 +0000149 return reinterpret_cast<void**>(Ptr & ~intptr_t(1));
Jim Laskey18529f32006-10-27 18:05:12 +0000150}
151
152/// GetBucketFor - Hash the specified node ID and return the hash bucket for
153/// the specified ID.
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000154static void **GetBucketFor(const FoldingSetNodeID &ID,
Jim Laskey18529f32006-10-27 18:05:12 +0000155 void **Buckets, unsigned NumBuckets) {
156 // NumBuckets is always a power of 2.
157 unsigned BucketNum = ID.ComputeHash() & (NumBuckets-1);
158 return Buckets + BucketNum;
159}
160
161//===----------------------------------------------------------------------===//
Jim Laskey0e5af192006-10-27 16:16:16 +0000162// FoldingSetImpl Implementation
163
Jim Laskey1f67a992006-11-02 14:21:26 +0000164FoldingSetImpl::FoldingSetImpl(unsigned Log2InitSize) : NumNodes(0) {
165 assert(5 < Log2InitSize && Log2InitSize < 32 &&
166 "Initial hash table size out of range");
167 NumBuckets = 1 << Log2InitSize;
Chris Lattner9a7288b2007-10-03 20:45:43 +0000168 Buckets = new void*[NumBuckets+1];
Jim Laskey0e5af192006-10-27 16:16:16 +0000169 memset(Buckets, 0, NumBuckets*sizeof(void*));
Chris Lattner9a7288b2007-10-03 20:45:43 +0000170
171 // Set the very last bucket to be a non-null "pointer".
172 Buckets[NumBuckets] = reinterpret_cast<void*>(-2);
Jim Laskey0e5af192006-10-27 16:16:16 +0000173}
174FoldingSetImpl::~FoldingSetImpl() {
175 delete [] Buckets;
176}
177
Jim Laskey0e5af192006-10-27 16:16:16 +0000178/// GrowHashTable - Double the size of the hash table and rehash everything.
179///
180void FoldingSetImpl::GrowHashTable() {
181 void **OldBuckets = Buckets;
182 unsigned OldNumBuckets = NumBuckets;
183 NumBuckets <<= 1;
184
185 // Reset the node count to zero: we're going to reinsert everything.
186 NumNodes = 0;
187
188 // Clear out new buckets.
Chris Lattner9a7288b2007-10-03 20:45:43 +0000189 Buckets = new void*[NumBuckets+1];
Jim Laskey0e5af192006-10-27 16:16:16 +0000190 memset(Buckets, 0, NumBuckets*sizeof(void*));
191
Chris Lattner9a7288b2007-10-03 20:45:43 +0000192 // Set the very last bucket to be a non-null "pointer".
193 Buckets[NumBuckets] = reinterpret_cast<void*>(-1);
194
Jim Laskey0e5af192006-10-27 16:16:16 +0000195 // Walk the old buckets, rehashing nodes into their new place.
196 for (unsigned i = 0; i != OldNumBuckets; ++i) {
197 void *Probe = OldBuckets[i];
198 if (!Probe) continue;
Chris Lattner9a7288b2007-10-03 20:45:43 +0000199 while (Node *NodeInBucket = GetNextPtr(Probe)) {
Jim Laskey0e5af192006-10-27 16:16:16 +0000200 // Figure out the next link, remove NodeInBucket from the old link.
201 Probe = NodeInBucket->getNextInBucket();
202 NodeInBucket->SetNextInBucket(0);
203
204 // Insert the node into the new bucket, after recomputing the hash.
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000205 FoldingSetNodeID ID;
Jim Laskey0e5af192006-10-27 16:16:16 +0000206 GetNodeProfile(ID, NodeInBucket);
Jim Laskey18529f32006-10-27 18:05:12 +0000207 InsertNode(NodeInBucket, GetBucketFor(ID, Buckets, NumBuckets));
Jim Laskey0e5af192006-10-27 16:16:16 +0000208 }
209 }
210
211 delete[] OldBuckets;
212}
213
214/// FindNodeOrInsertPos - Look up the node specified by ID. If it exists,
215/// return it. If not, return the insertion token that will make insertion
216/// faster.
Ted Kremenek27a8e0d2008-02-04 17:14:20 +0000217FoldingSetImpl::Node
218*FoldingSetImpl::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
219 void *&InsertPos) {
220
Jim Laskey18529f32006-10-27 18:05:12 +0000221 void **Bucket = GetBucketFor(ID, Buckets, NumBuckets);
Jim Laskey0e5af192006-10-27 16:16:16 +0000222 void *Probe = *Bucket;
223
224 InsertPos = 0;
225
Chris Lattner9a7288b2007-10-03 20:45:43 +0000226 while (Node *NodeInBucket = GetNextPtr(Probe)) {
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000227 FoldingSetNodeID OtherID;
Jim Laskey0e5af192006-10-27 16:16:16 +0000228 GetNodeProfile(OtherID, NodeInBucket);
229 if (OtherID == ID)
230 return NodeInBucket;
231
232 Probe = NodeInBucket->getNextInBucket();
233 }
234
235 // Didn't find the node, return null with the bucket as the InsertPos.
236 InsertPos = Bucket;
237 return 0;
238}
239
240/// InsertNode - Insert the specified node into the folding set, knowing that it
241/// is not already in the map. InsertPos must be obtained from
242/// FindNodeOrInsertPos.
243void FoldingSetImpl::InsertNode(Node *N, void *InsertPos) {
Chris Lattner0de44392007-02-01 05:33:21 +0000244 assert(N->getNextInBucket() == 0);
Jim Laskey0e5af192006-10-27 16:16:16 +0000245 // Do we need to grow the hashtable?
Chris Lattnerb85210f2007-01-31 06:04:41 +0000246 if (NumNodes+1 > NumBuckets*2) {
Jim Laskey0e5af192006-10-27 16:16:16 +0000247 GrowHashTable();
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000248 FoldingSetNodeID ID;
Jim Laskey0e5af192006-10-27 16:16:16 +0000249 GetNodeProfile(ID, N);
Jim Laskey18529f32006-10-27 18:05:12 +0000250 InsertPos = GetBucketFor(ID, Buckets, NumBuckets);
Jim Laskey0e5af192006-10-27 16:16:16 +0000251 }
Chris Lattnerb85210f2007-01-31 06:04:41 +0000252
253 ++NumNodes;
Jim Laskey0e5af192006-10-27 16:16:16 +0000254
255 /// The insert position is actually a bucket pointer.
256 void **Bucket = static_cast<void**>(InsertPos);
257
258 void *Next = *Bucket;
259
260 // If this is the first insertion into this bucket, its next pointer will be
Chris Lattner9a7288b2007-10-03 20:45:43 +0000261 // null. Pretend as if it pointed to itself, setting the low bit to indicate
262 // that it is a pointer to the bucket.
Jim Laskey0e5af192006-10-27 16:16:16 +0000263 if (Next == 0)
Chris Lattner9a7288b2007-10-03 20:45:43 +0000264 Next = reinterpret_cast<void*>(reinterpret_cast<intptr_t>(Bucket)|1);
Jim Laskey0e5af192006-10-27 16:16:16 +0000265
Chris Lattnerb85210f2007-01-31 06:04:41 +0000266 // Set the node's next pointer, and make the bucket point to the node.
Jim Laskey0e5af192006-10-27 16:16:16 +0000267 N->SetNextInBucket(Next);
268 *Bucket = N;
269}
270
271/// RemoveNode - Remove a node from the folding set, returning true if one was
272/// removed or false if the node was not in the folding set.
273bool FoldingSetImpl::RemoveNode(Node *N) {
274 // Because each bucket is a circular list, we don't need to compute N's hash
Chris Lattner0de44392007-02-01 05:33:21 +0000275 // to remove it.
Jim Laskey0e5af192006-10-27 16:16:16 +0000276 void *Ptr = N->getNextInBucket();
277 if (Ptr == 0) return false; // Not in folding set.
278
279 --NumNodes;
Jim Laskey0e5af192006-10-27 16:16:16 +0000280 N->SetNextInBucket(0);
Chris Lattner0de44392007-02-01 05:33:21 +0000281
282 // Remember what N originally pointed to, either a bucket or another node.
283 void *NodeNextPtr = Ptr;
284
285 // Chase around the list until we find the node (or bucket) which points to N.
Jim Laskey0e5af192006-10-27 16:16:16 +0000286 while (true) {
Chris Lattner9a7288b2007-10-03 20:45:43 +0000287 if (Node *NodeInBucket = GetNextPtr(Ptr)) {
Jim Laskey0e5af192006-10-27 16:16:16 +0000288 // Advance pointer.
289 Ptr = NodeInBucket->getNextInBucket();
290
291 // We found a node that points to N, change it to point to N's next node,
292 // removing N from the list.
293 if (Ptr == N) {
294 NodeInBucket->SetNextInBucket(NodeNextPtr);
295 return true;
296 }
297 } else {
298 void **Bucket = GetBucketPtr(Ptr);
299 Ptr = *Bucket;
300
301 // If we found that the bucket points to N, update the bucket to point to
302 // whatever is next.
303 if (Ptr == N) {
304 *Bucket = NodeNextPtr;
305 return true;
306 }
307 }
308 }
309}
310
311/// GetOrInsertNode - If there is an existing simple Node exactly
312/// equal to the specified node, return it. Otherwise, insert 'N' and it
313/// instead.
314FoldingSetImpl::Node *FoldingSetImpl::GetOrInsertNode(FoldingSetImpl::Node *N) {
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000315 FoldingSetNodeID ID;
Jim Laskey0e5af192006-10-27 16:16:16 +0000316 GetNodeProfile(ID, N);
317 void *IP;
318 if (Node *E = FindNodeOrInsertPos(ID, IP))
319 return E;
320 InsertNode(N, IP);
321 return N;
322}
Chris Lattner116c3212007-10-03 21:12:09 +0000323
324//===----------------------------------------------------------------------===//
325// FoldingSetIteratorImpl Implementation
326
327FoldingSetIteratorImpl::FoldingSetIteratorImpl(void **Bucket) {
328 // Skip to the first non-null non-self-cycle bucket.
Ted Kremeneke3e09572008-02-15 21:12:46 +0000329 while (*Bucket != reinterpret_cast<void*>(-1) &&
330 (*Bucket == 0 || GetNextPtr(*Bucket) == 0))
Chris Lattner116c3212007-10-03 21:12:09 +0000331 ++Bucket;
332
333 NodePtr = static_cast<FoldingSetNode*>(*Bucket);
334}
335
336void FoldingSetIteratorImpl::advance() {
337 // If there is another link within this bucket, go to it.
338 void *Probe = NodePtr->getNextInBucket();
339
340 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
341 NodePtr = NextNodeInBucket;
342 else {
343 // Otherwise, this is the last link in this bucket.
344 void **Bucket = GetBucketPtr(Probe);
345
346 // Skip to the next non-null non-self-cycle bucket.
347 do {
348 ++Bucket;
Ted Kremeneke3e09572008-02-15 21:12:46 +0000349 } while (*Bucket != reinterpret_cast<void*>(-1) &&
350 (*Bucket == 0 || GetNextPtr(*Bucket) == 0));
Chris Lattner116c3212007-10-03 21:12:09 +0000351
352 NodePtr = static_cast<FoldingSetNode*>(*Bucket);
353 }
354}
355
Ted Kremenek26e3c442008-02-04 21:11:17 +0000356//===----------------------------------------------------------------------===//
357// FoldingSetBucketIteratorImpl Implementation
358
359FoldingSetBucketIteratorImpl::FoldingSetBucketIteratorImpl(void **Bucket) {
360 Ptr = (*Bucket == 0 || GetNextPtr(*Bucket) == 0) ? (void*) Bucket : *Bucket;
361}