blob: b2d34834d220b5651916d40e194d83519eb1c678 [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"
Chris Lattnerbe2c4592007-10-09 03:40:30 +000018#include "llvm/ADT/APFloat.h"
Dan Gohman167b8bc2008-02-06 23:09:15 +000019#include "llvm/ADT/APInt.h"
Bill Wendling160db5d2006-10-27 18:47:29 +000020#include "llvm/Support/MathExtras.h"
Rafael Espindola39c6d3a2006-11-03 01:38:14 +000021#include <cassert>
Jim Laskey0e5af192006-10-27 16:16:16 +000022using namespace llvm;
23
24//===----------------------------------------------------------------------===//
Ted Kremenek0a3feca2008-01-19 04:22:50 +000025// FoldingSetNodeID Implementation
Jim Laskey0e5af192006-10-27 16:16:16 +000026
27/// Add* - Add various data types to Bit data.
28///
Ted Kremenek0a3feca2008-01-19 04:22:50 +000029void FoldingSetNodeID::AddPointer(const void *Ptr) {
Jim Laskey0e5af192006-10-27 16:16:16 +000030 // Note: this adds pointers to the hash using sizes and endianness that
31 // depend on the host. It doesn't matter however, because hashing on
32 // pointer values in inherently unstable. Nothing should depend on the
33 // ordering of nodes in the folding set.
34 intptr_t PtrI = (intptr_t)Ptr;
35 Bits.push_back(unsigned(PtrI));
36 if (sizeof(intptr_t) > sizeof(unsigned))
37 Bits.push_back(unsigned(uint64_t(PtrI) >> 32));
38}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000039void FoldingSetNodeID::AddInteger(signed I) {
Jim Laskey0e5af192006-10-27 16:16:16 +000040 Bits.push_back(I);
41}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000042void FoldingSetNodeID::AddInteger(unsigned I) {
Jim Laskey0e5af192006-10-27 16:16:16 +000043 Bits.push_back(I);
44}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000045void FoldingSetNodeID::AddInteger(int64_t I) {
Dan Gohmanf82e1e62007-09-14 20:48:42 +000046 AddInteger((uint64_t)I);
47}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000048void FoldingSetNodeID::AddInteger(uint64_t I) {
Jim Laskey0e5af192006-10-27 16:16:16 +000049 Bits.push_back(unsigned(I));
Chris Lattnere4116f82007-02-04 01:48:10 +000050
51 // If the integer is small, encode it just as 32-bits.
52 if ((uint64_t)(int)I != I)
53 Bits.push_back(unsigned(I >> 32));
Jim Laskey0e5af192006-10-27 16:16:16 +000054}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000055void FoldingSetNodeID::AddFloat(float F) {
Jim Laskey0e5af192006-10-27 16:16:16 +000056 Bits.push_back(FloatToBits(F));
57}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000058void FoldingSetNodeID::AddDouble(double D) {
Jim Laskey18529f32006-10-27 18:05:12 +000059 AddInteger(DoubleToBits(D));
Jim Laskey0e5af192006-10-27 16:16:16 +000060}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000061void FoldingSetNodeID::AddAPFloat(const APFloat& apf) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +000062 APInt api = apf.convertToAPInt();
Dan Gohman167b8bc2008-02-06 23:09:15 +000063 AddAPInt(api);
64}
65void FoldingSetNodeID::AddAPInt(const APInt& api) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +000066 const uint64_t *p = api.getRawData();
Chris Lattner22049062007-09-14 22:57:00 +000067 for (unsigned i=0; i<api.getNumWords(); i++)
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +000068 AddInteger(*p++);
69}
Ted Kremenek0a3feca2008-01-19 04:22:50 +000070void FoldingSetNodeID::AddString(const std::string &String) {
Jim Laskey0e5af192006-10-27 16:16:16 +000071 unsigned Size = String.size();
Jim Laskeya97c67c2006-10-29 09:19:59 +000072 Bits.push_back(Size);
73 if (!Size) return;
74
Jim Laskey18529f32006-10-27 18:05:12 +000075 unsigned Units = Size / 4;
76 unsigned Pos = 0;
Jim Laskey0e5af192006-10-27 16:16:16 +000077 const unsigned *Base = (const unsigned *)String.data();
Jim Laskey18529f32006-10-27 18:05:12 +000078
79 // If the string is aligned do a bulk transfer.
80 if (!((intptr_t)Base & 3)) {
Jim Laskey2ac33c42006-10-27 19:38:32 +000081 Bits.append(Base, Base + Units);
Jim Laskeya97c67c2006-10-29 09:19:59 +000082 Pos = (Units + 1) * 4;
Jim Laskey18529f32006-10-27 18:05:12 +000083 } else {
84 // Otherwise do it the hard way.
Jim Laskeyd8cb4462006-10-29 08:27:07 +000085 for ( Pos += 4; Pos <= Size; Pos += 4) {
Jim Laskey18529f32006-10-27 18:05:12 +000086 unsigned V = ((unsigned char)String[Pos - 4] << 24) |
87 ((unsigned char)String[Pos - 3] << 16) |
88 ((unsigned char)String[Pos - 2] << 8) |
89 (unsigned char)String[Pos - 1];
90 Bits.push_back(V);
91 }
Jim Laskey0e5af192006-10-27 16:16:16 +000092 }
Jim Laskey18529f32006-10-27 18:05:12 +000093
94 // With the leftover bits.
95 unsigned V = 0;
96 // Pos will have overshot size by 4 - #bytes left over.
97 switch (Pos - Size) {
98 case 1: V = (V << 8) | (unsigned char)String[Size - 3]; // Fall thru.
99 case 2: V = (V << 8) | (unsigned char)String[Size - 2]; // Fall thru.
100 case 3: V = (V << 8) | (unsigned char)String[Size - 1]; break;
Jim Laskeyd8cb4462006-10-29 08:27:07 +0000101 default: return; // Nothing left.
Jim Laskey18529f32006-10-27 18:05:12 +0000102 }
103
104 Bits.push_back(V);
Jim Laskey0e5af192006-10-27 16:16:16 +0000105}
106
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000107/// ComputeHash - Compute a strong hash value for this FoldingSetNodeID, used to
Jim Laskey0e5af192006-10-27 16:16:16 +0000108/// lookup the node in the FoldingSetImpl.
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000109unsigned FoldingSetNodeID::ComputeHash() const {
Jim Laskey0e5af192006-10-27 16:16:16 +0000110 // This is adapted from SuperFastHash by Paul Hsieh.
111 unsigned Hash = Bits.size();
112 for (const unsigned *BP = &Bits[0], *E = BP+Bits.size(); BP != E; ++BP) {
113 unsigned Data = *BP;
114 Hash += Data & 0xFFFF;
115 unsigned Tmp = ((Data >> 16) << 11) ^ Hash;
116 Hash = (Hash << 16) ^ Tmp;
117 Hash += Hash >> 11;
118 }
119
120 // Force "avalanching" of final 127 bits.
121 Hash ^= Hash << 3;
122 Hash += Hash >> 5;
123 Hash ^= Hash << 4;
124 Hash += Hash >> 17;
125 Hash ^= Hash << 25;
126 Hash += Hash >> 6;
127 return Hash;
128}
129
130/// operator== - Used to compare two nodes to each other.
131///
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000132bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS)const{
Jim Laskey0e5af192006-10-27 16:16:16 +0000133 if (Bits.size() != RHS.Bits.size()) return false;
134 return memcmp(&Bits[0], &RHS.Bits[0], Bits.size()*sizeof(Bits[0])) == 0;
135}
136
137
138//===----------------------------------------------------------------------===//
Jim Laskey18529f32006-10-27 18:05:12 +0000139/// Helper functions for FoldingSetImpl.
140
141/// GetNextPtr - In order to save space, each bucket is a
142/// singly-linked-list. In order to make deletion more efficient, we make
143/// the list circular, so we can delete a node without computing its hash.
144/// The problem with this is that the start of the hash buckets are not
Chris Lattner3cab0712007-01-30 23:16:22 +0000145/// Nodes. If NextInBucketPtr is a bucket pointer, this method returns null:
146/// use GetBucketPtr when this happens.
Chris Lattner9a7288b2007-10-03 20:45:43 +0000147static FoldingSetImpl::Node *GetNextPtr(void *NextInBucketPtr) {
148 // The low bit is set if this is the pointer back to the bucket.
149 if (reinterpret_cast<intptr_t>(NextInBucketPtr) & 1)
Jim Laskey18529f32006-10-27 18:05:12 +0000150 return 0;
Chris Lattner9a7288b2007-10-03 20:45:43 +0000151
Jim Laskey18529f32006-10-27 18:05:12 +0000152 return static_cast<FoldingSetImpl::Node*>(NextInBucketPtr);
153}
154
Ted Kremenek26e3c442008-02-04 21:11:17 +0000155
Jim Laskey18529f32006-10-27 18:05:12 +0000156/// testing.
157static void **GetBucketPtr(void *NextInBucketPtr) {
Chris Lattner9a7288b2007-10-03 20:45:43 +0000158 intptr_t Ptr = reinterpret_cast<intptr_t>(NextInBucketPtr);
Chris Lattner116c3212007-10-03 21:12:09 +0000159 assert((Ptr & 1) && "Not a bucket pointer");
Chris Lattner9a7288b2007-10-03 20:45:43 +0000160 return reinterpret_cast<void**>(Ptr & ~intptr_t(1));
Jim Laskey18529f32006-10-27 18:05:12 +0000161}
162
163/// GetBucketFor - Hash the specified node ID and return the hash bucket for
164/// the specified ID.
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000165static void **GetBucketFor(const FoldingSetNodeID &ID,
Jim Laskey18529f32006-10-27 18:05:12 +0000166 void **Buckets, unsigned NumBuckets) {
167 // NumBuckets is always a power of 2.
168 unsigned BucketNum = ID.ComputeHash() & (NumBuckets-1);
169 return Buckets + BucketNum;
170}
171
172//===----------------------------------------------------------------------===//
Jim Laskey0e5af192006-10-27 16:16:16 +0000173// FoldingSetImpl Implementation
174
Jim Laskey1f67a992006-11-02 14:21:26 +0000175FoldingSetImpl::FoldingSetImpl(unsigned Log2InitSize) : NumNodes(0) {
176 assert(5 < Log2InitSize && Log2InitSize < 32 &&
177 "Initial hash table size out of range");
178 NumBuckets = 1 << Log2InitSize;
Chris Lattner9a7288b2007-10-03 20:45:43 +0000179 Buckets = new void*[NumBuckets+1];
Jim Laskey0e5af192006-10-27 16:16:16 +0000180 memset(Buckets, 0, NumBuckets*sizeof(void*));
Chris Lattner9a7288b2007-10-03 20:45:43 +0000181
182 // Set the very last bucket to be a non-null "pointer".
183 Buckets[NumBuckets] = reinterpret_cast<void*>(-2);
Jim Laskey0e5af192006-10-27 16:16:16 +0000184}
185FoldingSetImpl::~FoldingSetImpl() {
186 delete [] Buckets;
187}
188
Jim Laskey0e5af192006-10-27 16:16:16 +0000189/// GrowHashTable - Double the size of the hash table and rehash everything.
190///
191void FoldingSetImpl::GrowHashTable() {
192 void **OldBuckets = Buckets;
193 unsigned OldNumBuckets = NumBuckets;
194 NumBuckets <<= 1;
195
196 // Reset the node count to zero: we're going to reinsert everything.
197 NumNodes = 0;
198
199 // Clear out new buckets.
Chris Lattner9a7288b2007-10-03 20:45:43 +0000200 Buckets = new void*[NumBuckets+1];
Jim Laskey0e5af192006-10-27 16:16:16 +0000201 memset(Buckets, 0, NumBuckets*sizeof(void*));
202
Chris Lattner9a7288b2007-10-03 20:45:43 +0000203 // Set the very last bucket to be a non-null "pointer".
204 Buckets[NumBuckets] = reinterpret_cast<void*>(-1);
205
Jim Laskey0e5af192006-10-27 16:16:16 +0000206 // Walk the old buckets, rehashing nodes into their new place.
207 for (unsigned i = 0; i != OldNumBuckets; ++i) {
208 void *Probe = OldBuckets[i];
209 if (!Probe) continue;
Chris Lattner9a7288b2007-10-03 20:45:43 +0000210 while (Node *NodeInBucket = GetNextPtr(Probe)) {
Jim Laskey0e5af192006-10-27 16:16:16 +0000211 // Figure out the next link, remove NodeInBucket from the old link.
212 Probe = NodeInBucket->getNextInBucket();
213 NodeInBucket->SetNextInBucket(0);
214
215 // Insert the node into the new bucket, after recomputing the hash.
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000216 FoldingSetNodeID ID;
Jim Laskey0e5af192006-10-27 16:16:16 +0000217 GetNodeProfile(ID, NodeInBucket);
Jim Laskey18529f32006-10-27 18:05:12 +0000218 InsertNode(NodeInBucket, GetBucketFor(ID, Buckets, NumBuckets));
Jim Laskey0e5af192006-10-27 16:16:16 +0000219 }
220 }
221
222 delete[] OldBuckets;
223}
224
225/// FindNodeOrInsertPos - Look up the node specified by ID. If it exists,
226/// return it. If not, return the insertion token that will make insertion
227/// faster.
Ted Kremenek27a8e0d2008-02-04 17:14:20 +0000228FoldingSetImpl::Node
229*FoldingSetImpl::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
230 void *&InsertPos) {
231
Jim Laskey18529f32006-10-27 18:05:12 +0000232 void **Bucket = GetBucketFor(ID, Buckets, NumBuckets);
Jim Laskey0e5af192006-10-27 16:16:16 +0000233 void *Probe = *Bucket;
234
235 InsertPos = 0;
236
Chris Lattner9a7288b2007-10-03 20:45:43 +0000237 while (Node *NodeInBucket = GetNextPtr(Probe)) {
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000238 FoldingSetNodeID OtherID;
Jim Laskey0e5af192006-10-27 16:16:16 +0000239 GetNodeProfile(OtherID, NodeInBucket);
240 if (OtherID == ID)
241 return NodeInBucket;
242
243 Probe = NodeInBucket->getNextInBucket();
244 }
245
246 // Didn't find the node, return null with the bucket as the InsertPos.
247 InsertPos = Bucket;
248 return 0;
249}
250
251/// InsertNode - Insert the specified node into the folding set, knowing that it
252/// is not already in the map. InsertPos must be obtained from
253/// FindNodeOrInsertPos.
254void FoldingSetImpl::InsertNode(Node *N, void *InsertPos) {
Chris Lattner0de44392007-02-01 05:33:21 +0000255 assert(N->getNextInBucket() == 0);
Jim Laskey0e5af192006-10-27 16:16:16 +0000256 // Do we need to grow the hashtable?
Chris Lattnerb85210f2007-01-31 06:04:41 +0000257 if (NumNodes+1 > NumBuckets*2) {
Jim Laskey0e5af192006-10-27 16:16:16 +0000258 GrowHashTable();
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000259 FoldingSetNodeID ID;
Jim Laskey0e5af192006-10-27 16:16:16 +0000260 GetNodeProfile(ID, N);
Jim Laskey18529f32006-10-27 18:05:12 +0000261 InsertPos = GetBucketFor(ID, Buckets, NumBuckets);
Jim Laskey0e5af192006-10-27 16:16:16 +0000262 }
Chris Lattnerb85210f2007-01-31 06:04:41 +0000263
264 ++NumNodes;
Jim Laskey0e5af192006-10-27 16:16:16 +0000265
266 /// The insert position is actually a bucket pointer.
267 void **Bucket = static_cast<void**>(InsertPos);
268
269 void *Next = *Bucket;
270
271 // If this is the first insertion into this bucket, its next pointer will be
Chris Lattner9a7288b2007-10-03 20:45:43 +0000272 // null. Pretend as if it pointed to itself, setting the low bit to indicate
273 // that it is a pointer to the bucket.
Jim Laskey0e5af192006-10-27 16:16:16 +0000274 if (Next == 0)
Chris Lattner9a7288b2007-10-03 20:45:43 +0000275 Next = reinterpret_cast<void*>(reinterpret_cast<intptr_t>(Bucket)|1);
Jim Laskey0e5af192006-10-27 16:16:16 +0000276
Chris Lattnerb85210f2007-01-31 06:04:41 +0000277 // Set the node's next pointer, and make the bucket point to the node.
Jim Laskey0e5af192006-10-27 16:16:16 +0000278 N->SetNextInBucket(Next);
279 *Bucket = N;
280}
281
282/// RemoveNode - Remove a node from the folding set, returning true if one was
283/// removed or false if the node was not in the folding set.
284bool FoldingSetImpl::RemoveNode(Node *N) {
285 // Because each bucket is a circular list, we don't need to compute N's hash
Chris Lattner0de44392007-02-01 05:33:21 +0000286 // to remove it.
Jim Laskey0e5af192006-10-27 16:16:16 +0000287 void *Ptr = N->getNextInBucket();
288 if (Ptr == 0) return false; // Not in folding set.
289
290 --NumNodes;
Jim Laskey0e5af192006-10-27 16:16:16 +0000291 N->SetNextInBucket(0);
Chris Lattner0de44392007-02-01 05:33:21 +0000292
293 // Remember what N originally pointed to, either a bucket or another node.
294 void *NodeNextPtr = Ptr;
295
296 // Chase around the list until we find the node (or bucket) which points to N.
Jim Laskey0e5af192006-10-27 16:16:16 +0000297 while (true) {
Chris Lattner9a7288b2007-10-03 20:45:43 +0000298 if (Node *NodeInBucket = GetNextPtr(Ptr)) {
Jim Laskey0e5af192006-10-27 16:16:16 +0000299 // Advance pointer.
300 Ptr = NodeInBucket->getNextInBucket();
301
302 // We found a node that points to N, change it to point to N's next node,
303 // removing N from the list.
304 if (Ptr == N) {
305 NodeInBucket->SetNextInBucket(NodeNextPtr);
306 return true;
307 }
308 } else {
309 void **Bucket = GetBucketPtr(Ptr);
310 Ptr = *Bucket;
311
312 // If we found that the bucket points to N, update the bucket to point to
313 // whatever is next.
314 if (Ptr == N) {
315 *Bucket = NodeNextPtr;
316 return true;
317 }
318 }
319 }
320}
321
322/// GetOrInsertNode - If there is an existing simple Node exactly
323/// equal to the specified node, return it. Otherwise, insert 'N' and it
324/// instead.
325FoldingSetImpl::Node *FoldingSetImpl::GetOrInsertNode(FoldingSetImpl::Node *N) {
Ted Kremenek0a3feca2008-01-19 04:22:50 +0000326 FoldingSetNodeID ID;
Jim Laskey0e5af192006-10-27 16:16:16 +0000327 GetNodeProfile(ID, N);
328 void *IP;
329 if (Node *E = FindNodeOrInsertPos(ID, IP))
330 return E;
331 InsertNode(N, IP);
332 return N;
333}
Chris Lattner116c3212007-10-03 21:12:09 +0000334
335//===----------------------------------------------------------------------===//
336// FoldingSetIteratorImpl Implementation
337
338FoldingSetIteratorImpl::FoldingSetIteratorImpl(void **Bucket) {
339 // Skip to the first non-null non-self-cycle bucket.
340 while (*Bucket == 0 || GetNextPtr(*Bucket) == 0)
341 ++Bucket;
342
343 NodePtr = static_cast<FoldingSetNode*>(*Bucket);
344}
345
346void FoldingSetIteratorImpl::advance() {
347 // If there is another link within this bucket, go to it.
348 void *Probe = NodePtr->getNextInBucket();
349
350 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
351 NodePtr = NextNodeInBucket;
352 else {
353 // Otherwise, this is the last link in this bucket.
354 void **Bucket = GetBucketPtr(Probe);
355
356 // Skip to the next non-null non-self-cycle bucket.
357 do {
358 ++Bucket;
359 } while (*Bucket == 0 || GetNextPtr(*Bucket) == 0);
360
361 NodePtr = static_cast<FoldingSetNode*>(*Bucket);
362 }
363}
364
Ted Kremenek26e3c442008-02-04 21:11:17 +0000365//===----------------------------------------------------------------------===//
366// FoldingSetBucketIteratorImpl Implementation
367
368FoldingSetBucketIteratorImpl::FoldingSetBucketIteratorImpl(void **Bucket) {
369 Ptr = (*Bucket == 0 || GetNextPtr(*Bucket) == 0) ? (void*) Bucket : *Bucket;
370}