2006-10-27 18:16:16 +02:00
|
|
|
//===-- Support/FoldingSet.cpp - Uniquing Hash Set --------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-10-27 18:16:16 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements a hash set that can be used to remove duplication of
|
|
|
|
// nodes in a graph. This code was originally created by Chris Lattner for use
|
|
|
|
// with SelectionDAGCSEMap, but was isolated to provide use across the llvm code
|
|
|
|
// set.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/FoldingSet.h"
|
2009-07-11 22:10:48 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2006-10-27 20:47:29 +02:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2006-11-03 02:38:14 +01:00
|
|
|
#include <cassert>
|
2008-02-20 12:08:44 +01:00
|
|
|
#include <cstring>
|
2006-10-27 18:16:16 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2008-01-19 05:22:50 +01:00
|
|
|
// FoldingSetNodeID Implementation
|
2006-10-27 18:16:16 +02:00
|
|
|
|
|
|
|
/// Add* - Add various data types to Bit data.
|
|
|
|
///
|
2008-01-19 05:22:50 +01:00
|
|
|
void FoldingSetNodeID::AddPointer(const void *Ptr) {
|
2006-10-27 18:16:16 +02:00
|
|
|
// Note: this adds pointers to the hash using sizes and endianness that
|
|
|
|
// depend on the host. It doesn't matter however, because hashing on
|
|
|
|
// pointer values in inherently unstable. Nothing should depend on the
|
|
|
|
// ordering of nodes in the folding set.
|
|
|
|
intptr_t PtrI = (intptr_t)Ptr;
|
|
|
|
Bits.push_back(unsigned(PtrI));
|
|
|
|
if (sizeof(intptr_t) > sizeof(unsigned))
|
|
|
|
Bits.push_back(unsigned(uint64_t(PtrI) >> 32));
|
|
|
|
}
|
2008-01-19 05:22:50 +01:00
|
|
|
void FoldingSetNodeID::AddInteger(signed I) {
|
2006-10-27 18:16:16 +02:00
|
|
|
Bits.push_back(I);
|
|
|
|
}
|
2008-01-19 05:22:50 +01:00
|
|
|
void FoldingSetNodeID::AddInteger(unsigned I) {
|
2006-10-27 18:16:16 +02:00
|
|
|
Bits.push_back(I);
|
|
|
|
}
|
2008-11-03 20:40:18 +01:00
|
|
|
void FoldingSetNodeID::AddInteger(long I) {
|
|
|
|
AddInteger((unsigned long)I);
|
2007-09-14 22:48:42 +02:00
|
|
|
}
|
2008-11-03 20:40:18 +01:00
|
|
|
void FoldingSetNodeID::AddInteger(unsigned long I) {
|
|
|
|
if (sizeof(long) == sizeof(int))
|
|
|
|
AddInteger(unsigned(I));
|
|
|
|
else if (sizeof(long) == sizeof(long long)) {
|
|
|
|
AddInteger((unsigned long long)I);
|
|
|
|
} else {
|
2009-07-14 18:55:14 +02:00
|
|
|
llvm_unreachable("unexpected sizeof(long)");
|
2008-11-03 20:40:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void FoldingSetNodeID::AddInteger(long long I) {
|
|
|
|
AddInteger((unsigned long long)I);
|
|
|
|
}
|
|
|
|
void FoldingSetNodeID::AddInteger(unsigned long long I) {
|
|
|
|
AddInteger(unsigned(I));
|
2007-02-04 02:48:10 +01:00
|
|
|
if ((uint64_t)(int)I != I)
|
|
|
|
Bits.push_back(unsigned(I >> 32));
|
2006-10-27 18:16:16 +02:00
|
|
|
}
|
2008-07-02 01:49:59 +02:00
|
|
|
|
2009-09-22 05:34:53 +02:00
|
|
|
void FoldingSetNodeID::AddString(StringRef String) {
|
|
|
|
unsigned Size = String.size();
|
2008-07-02 01:49:59 +02:00
|
|
|
Bits.push_back(Size);
|
|
|
|
if (!Size) return;
|
|
|
|
|
|
|
|
unsigned Units = Size / 4;
|
|
|
|
unsigned Pos = 0;
|
2009-09-22 05:34:53 +02:00
|
|
|
const unsigned *Base = (const unsigned*) String.data();
|
2008-07-02 01:49:59 +02:00
|
|
|
|
|
|
|
// If the string is aligned do a bulk transfer.
|
|
|
|
if (!((intptr_t)Base & 3)) {
|
|
|
|
Bits.append(Base, Base + Units);
|
|
|
|
Pos = (Units + 1) * 4;
|
|
|
|
} else {
|
|
|
|
// Otherwise do it the hard way.
|
2009-02-07 05:57:08 +01:00
|
|
|
for (Pos += 4; Pos <= Size; Pos += 4) {
|
2008-07-02 01:49:59 +02:00
|
|
|
unsigned V = ((unsigned char)String[Pos - 4] << 24) |
|
|
|
|
((unsigned char)String[Pos - 3] << 16) |
|
|
|
|
((unsigned char)String[Pos - 2] << 8) |
|
|
|
|
(unsigned char)String[Pos - 1];
|
|
|
|
Bits.push_back(V);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// With the leftover bits.
|
|
|
|
unsigned V = 0;
|
|
|
|
// Pos will have overshot size by 4 - #bytes left over.
|
|
|
|
switch (Pos - Size) {
|
|
|
|
case 1: V = (V << 8) | (unsigned char)String[Size - 3]; // Fall thru.
|
|
|
|
case 2: V = (V << 8) | (unsigned char)String[Size - 2]; // Fall thru.
|
|
|
|
case 3: V = (V << 8) | (unsigned char)String[Size - 1]; break;
|
|
|
|
default: return; // Nothing left.
|
|
|
|
}
|
|
|
|
|
|
|
|
Bits.push_back(V);
|
|
|
|
}
|
|
|
|
|
2008-01-19 05:22:50 +01:00
|
|
|
/// ComputeHash - Compute a strong hash value for this FoldingSetNodeID, used to
|
2006-10-27 18:16:16 +02:00
|
|
|
/// lookup the node in the FoldingSetImpl.
|
2008-01-19 05:22:50 +01:00
|
|
|
unsigned FoldingSetNodeID::ComputeHash() const {
|
2006-10-27 18:16:16 +02:00
|
|
|
// This is adapted from SuperFastHash by Paul Hsieh.
|
2008-05-05 20:30:58 +02:00
|
|
|
unsigned Hash = static_cast<unsigned>(Bits.size());
|
2006-10-27 18:16:16 +02:00
|
|
|
for (const unsigned *BP = &Bits[0], *E = BP+Bits.size(); BP != E; ++BP) {
|
|
|
|
unsigned Data = *BP;
|
|
|
|
Hash += Data & 0xFFFF;
|
|
|
|
unsigned Tmp = ((Data >> 16) << 11) ^ Hash;
|
|
|
|
Hash = (Hash << 16) ^ Tmp;
|
|
|
|
Hash += Hash >> 11;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Force "avalanching" of final 127 bits.
|
|
|
|
Hash ^= Hash << 3;
|
|
|
|
Hash += Hash >> 5;
|
|
|
|
Hash ^= Hash << 4;
|
|
|
|
Hash += Hash >> 17;
|
|
|
|
Hash ^= Hash << 25;
|
|
|
|
Hash += Hash >> 6;
|
|
|
|
return Hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// operator== - Used to compare two nodes to each other.
|
|
|
|
///
|
2008-01-19 05:22:50 +01:00
|
|
|
bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS)const{
|
2006-10-27 18:16:16 +02:00
|
|
|
if (Bits.size() != RHS.Bits.size()) return false;
|
|
|
|
return memcmp(&Bits[0], &RHS.Bits[0], Bits.size()*sizeof(Bits[0])) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2006-10-27 20:05:12 +02:00
|
|
|
/// Helper functions for FoldingSetImpl.
|
2006-10-27 18:16:16 +02:00
|
|
|
|
|
|
|
/// GetNextPtr - In order to save space, each bucket is a
|
|
|
|
/// singly-linked-list. In order to make deletion more efficient, we make
|
|
|
|
/// the list circular, so we can delete a node without computing its hash.
|
|
|
|
/// The problem with this is that the start of the hash buckets are not
|
2007-01-31 00:16:22 +01:00
|
|
|
/// Nodes. If NextInBucketPtr is a bucket pointer, this method returns null:
|
|
|
|
/// use GetBucketPtr when this happens.
|
2007-10-03 22:45:43 +02:00
|
|
|
static FoldingSetImpl::Node *GetNextPtr(void *NextInBucketPtr) {
|
|
|
|
// The low bit is set if this is the pointer back to the bucket.
|
|
|
|
if (reinterpret_cast<intptr_t>(NextInBucketPtr) & 1)
|
2006-10-27 18:16:16 +02:00
|
|
|
return 0;
|
2007-10-03 22:45:43 +02:00
|
|
|
|
2006-10-27 20:05:12 +02:00
|
|
|
return static_cast<FoldingSetImpl::Node*>(NextInBucketPtr);
|
2006-10-27 18:16:16 +02:00
|
|
|
}
|
|
|
|
|
2008-02-04 22:11:17 +01:00
|
|
|
|
2006-10-27 18:16:16 +02:00
|
|
|
/// testing.
|
2006-10-27 20:05:12 +02:00
|
|
|
static void **GetBucketPtr(void *NextInBucketPtr) {
|
2007-10-03 22:45:43 +02:00
|
|
|
intptr_t Ptr = reinterpret_cast<intptr_t>(NextInBucketPtr);
|
2007-10-03 23:12:09 +02:00
|
|
|
assert((Ptr & 1) && "Not a bucket pointer");
|
2007-10-03 22:45:43 +02:00
|
|
|
return reinterpret_cast<void**>(Ptr & ~intptr_t(1));
|
2006-10-27 18:16:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// GetBucketFor - Hash the specified node ID and return the hash bucket for
|
|
|
|
/// the specified ID.
|
2008-01-19 05:22:50 +01:00
|
|
|
static void **GetBucketFor(const FoldingSetNodeID &ID,
|
2006-10-27 20:05:12 +02:00
|
|
|
void **Buckets, unsigned NumBuckets) {
|
2006-10-27 18:16:16 +02:00
|
|
|
// NumBuckets is always a power of 2.
|
|
|
|
unsigned BucketNum = ID.ComputeHash() & (NumBuckets-1);
|
2006-10-27 20:05:12 +02:00
|
|
|
return Buckets + BucketNum;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FoldingSetImpl Implementation
|
|
|
|
|
2008-08-23 02:42:16 +02:00
|
|
|
FoldingSetImpl::FoldingSetImpl(unsigned Log2InitSize) {
|
2006-11-02 15:21:26 +01:00
|
|
|
assert(5 < Log2InitSize && Log2InitSize < 32 &&
|
|
|
|
"Initial hash table size out of range");
|
|
|
|
NumBuckets = 1 << Log2InitSize;
|
2007-10-03 22:45:43 +02:00
|
|
|
Buckets = new void*[NumBuckets+1];
|
2008-08-23 02:42:16 +02:00
|
|
|
clear();
|
2006-10-27 20:05:12 +02:00
|
|
|
}
|
|
|
|
FoldingSetImpl::~FoldingSetImpl() {
|
|
|
|
delete [] Buckets;
|
2006-10-27 18:16:16 +02:00
|
|
|
}
|
2008-08-23 02:42:16 +02:00
|
|
|
void FoldingSetImpl::clear() {
|
|
|
|
// Set all but the last bucket to null pointers.
|
|
|
|
memset(Buckets, 0, NumBuckets*sizeof(void*));
|
|
|
|
|
|
|
|
// Set the very last bucket to be a non-null "pointer".
|
|
|
|
Buckets[NumBuckets] = reinterpret_cast<void*>(-1);
|
|
|
|
|
|
|
|
// Reset the node count to zero.
|
|
|
|
NumNodes = 0;
|
|
|
|
}
|
2006-10-27 18:16:16 +02:00
|
|
|
|
|
|
|
/// GrowHashTable - Double the size of the hash table and rehash everything.
|
|
|
|
///
|
|
|
|
void FoldingSetImpl::GrowHashTable() {
|
|
|
|
void **OldBuckets = Buckets;
|
|
|
|
unsigned OldNumBuckets = NumBuckets;
|
|
|
|
NumBuckets <<= 1;
|
|
|
|
|
|
|
|
// Clear out new buckets.
|
2007-10-03 22:45:43 +02:00
|
|
|
Buckets = new void*[NumBuckets+1];
|
2008-08-23 02:42:16 +02:00
|
|
|
clear();
|
2007-10-03 22:45:43 +02:00
|
|
|
|
2006-10-27 18:16:16 +02:00
|
|
|
// Walk the old buckets, rehashing nodes into their new place.
|
2008-08-12 19:40:22 +02:00
|
|
|
FoldingSetNodeID ID;
|
2006-10-27 18:16:16 +02:00
|
|
|
for (unsigned i = 0; i != OldNumBuckets; ++i) {
|
|
|
|
void *Probe = OldBuckets[i];
|
|
|
|
if (!Probe) continue;
|
2007-10-03 22:45:43 +02:00
|
|
|
while (Node *NodeInBucket = GetNextPtr(Probe)) {
|
2006-10-27 18:16:16 +02:00
|
|
|
// Figure out the next link, remove NodeInBucket from the old link.
|
|
|
|
Probe = NodeInBucket->getNextInBucket();
|
|
|
|
NodeInBucket->SetNextInBucket(0);
|
|
|
|
|
|
|
|
// Insert the node into the new bucket, after recomputing the hash.
|
|
|
|
GetNodeProfile(ID, NodeInBucket);
|
2006-10-27 20:05:12 +02:00
|
|
|
InsertNode(NodeInBucket, GetBucketFor(ID, Buckets, NumBuckets));
|
2008-08-12 19:40:22 +02:00
|
|
|
ID.clear();
|
2006-10-27 18:16:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] OldBuckets;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// FindNodeOrInsertPos - Look up the node specified by ID. If it exists,
|
|
|
|
/// return it. If not, return the insertion token that will make insertion
|
|
|
|
/// faster.
|
2008-02-04 18:14:20 +01:00
|
|
|
FoldingSetImpl::Node
|
|
|
|
*FoldingSetImpl::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
|
|
|
|
void *&InsertPos) {
|
|
|
|
|
2006-10-27 20:05:12 +02:00
|
|
|
void **Bucket = GetBucketFor(ID, Buckets, NumBuckets);
|
2006-10-27 18:16:16 +02:00
|
|
|
void *Probe = *Bucket;
|
|
|
|
|
|
|
|
InsertPos = 0;
|
|
|
|
|
2008-08-12 19:40:22 +02:00
|
|
|
FoldingSetNodeID OtherID;
|
2007-10-03 22:45:43 +02:00
|
|
|
while (Node *NodeInBucket = GetNextPtr(Probe)) {
|
2006-10-27 18:16:16 +02:00
|
|
|
GetNodeProfile(OtherID, NodeInBucket);
|
|
|
|
if (OtherID == ID)
|
|
|
|
return NodeInBucket;
|
|
|
|
|
|
|
|
Probe = NodeInBucket->getNextInBucket();
|
2008-08-12 19:40:22 +02:00
|
|
|
OtherID.clear();
|
2006-10-27 18:16:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Didn't find the node, return null with the bucket as the InsertPos.
|
|
|
|
InsertPos = Bucket;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// InsertNode - Insert the specified node into the folding set, knowing that it
|
|
|
|
/// is not already in the map. InsertPos must be obtained from
|
|
|
|
/// FindNodeOrInsertPos.
|
|
|
|
void FoldingSetImpl::InsertNode(Node *N, void *InsertPos) {
|
2007-02-01 06:33:21 +01:00
|
|
|
assert(N->getNextInBucket() == 0);
|
2006-10-27 18:16:16 +02:00
|
|
|
// Do we need to grow the hashtable?
|
2007-01-31 07:04:41 +01:00
|
|
|
if (NumNodes+1 > NumBuckets*2) {
|
2006-10-27 18:16:16 +02:00
|
|
|
GrowHashTable();
|
2008-01-19 05:22:50 +01:00
|
|
|
FoldingSetNodeID ID;
|
2006-10-27 18:16:16 +02:00
|
|
|
GetNodeProfile(ID, N);
|
2006-10-27 20:05:12 +02:00
|
|
|
InsertPos = GetBucketFor(ID, Buckets, NumBuckets);
|
2006-10-27 18:16:16 +02:00
|
|
|
}
|
2007-01-31 07:04:41 +01:00
|
|
|
|
|
|
|
++NumNodes;
|
2006-10-27 18:16:16 +02:00
|
|
|
|
|
|
|
/// The insert position is actually a bucket pointer.
|
|
|
|
void **Bucket = static_cast<void**>(InsertPos);
|
|
|
|
|
|
|
|
void *Next = *Bucket;
|
|
|
|
|
|
|
|
// If this is the first insertion into this bucket, its next pointer will be
|
2007-10-03 22:45:43 +02:00
|
|
|
// null. Pretend as if it pointed to itself, setting the low bit to indicate
|
|
|
|
// that it is a pointer to the bucket.
|
2006-10-27 18:16:16 +02:00
|
|
|
if (Next == 0)
|
2007-10-03 22:45:43 +02:00
|
|
|
Next = reinterpret_cast<void*>(reinterpret_cast<intptr_t>(Bucket)|1);
|
2006-10-27 18:16:16 +02:00
|
|
|
|
2007-01-31 07:04:41 +01:00
|
|
|
// Set the node's next pointer, and make the bucket point to the node.
|
2006-10-27 18:16:16 +02:00
|
|
|
N->SetNextInBucket(Next);
|
|
|
|
*Bucket = N;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// RemoveNode - Remove a node from the folding set, returning true if one was
|
|
|
|
/// removed or false if the node was not in the folding set.
|
|
|
|
bool FoldingSetImpl::RemoveNode(Node *N) {
|
|
|
|
// Because each bucket is a circular list, we don't need to compute N's hash
|
2007-02-01 06:33:21 +01:00
|
|
|
// to remove it.
|
2006-10-27 18:16:16 +02:00
|
|
|
void *Ptr = N->getNextInBucket();
|
|
|
|
if (Ptr == 0) return false; // Not in folding set.
|
|
|
|
|
|
|
|
--NumNodes;
|
2007-02-01 06:33:21 +01:00
|
|
|
N->SetNextInBucket(0);
|
2006-10-27 18:16:16 +02:00
|
|
|
|
2007-02-01 06:33:21 +01:00
|
|
|
// Remember what N originally pointed to, either a bucket or another node.
|
2006-10-27 18:16:16 +02:00
|
|
|
void *NodeNextPtr = Ptr;
|
2007-02-01 06:33:21 +01:00
|
|
|
|
|
|
|
// Chase around the list until we find the node (or bucket) which points to N.
|
2006-10-27 18:16:16 +02:00
|
|
|
while (true) {
|
2007-10-03 22:45:43 +02:00
|
|
|
if (Node *NodeInBucket = GetNextPtr(Ptr)) {
|
2006-10-27 18:16:16 +02:00
|
|
|
// Advance pointer.
|
|
|
|
Ptr = NodeInBucket->getNextInBucket();
|
|
|
|
|
|
|
|
// We found a node that points to N, change it to point to N's next node,
|
|
|
|
// removing N from the list.
|
|
|
|
if (Ptr == N) {
|
|
|
|
NodeInBucket->SetNextInBucket(NodeNextPtr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
void **Bucket = GetBucketPtr(Ptr);
|
|
|
|
Ptr = *Bucket;
|
|
|
|
|
|
|
|
// If we found that the bucket points to N, update the bucket to point to
|
|
|
|
// whatever is next.
|
|
|
|
if (Ptr == N) {
|
|
|
|
*Bucket = NodeNextPtr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// GetOrInsertNode - If there is an existing simple Node exactly
|
|
|
|
/// equal to the specified node, return it. Otherwise, insert 'N' and it
|
|
|
|
/// instead.
|
|
|
|
FoldingSetImpl::Node *FoldingSetImpl::GetOrInsertNode(FoldingSetImpl::Node *N) {
|
2008-01-19 05:22:50 +01:00
|
|
|
FoldingSetNodeID ID;
|
2006-10-27 18:16:16 +02:00
|
|
|
GetNodeProfile(ID, N);
|
|
|
|
void *IP;
|
|
|
|
if (Node *E = FindNodeOrInsertPos(ID, IP))
|
|
|
|
return E;
|
|
|
|
InsertNode(N, IP);
|
|
|
|
return N;
|
|
|
|
}
|
2007-10-03 23:12:09 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FoldingSetIteratorImpl Implementation
|
|
|
|
|
|
|
|
FoldingSetIteratorImpl::FoldingSetIteratorImpl(void **Bucket) {
|
|
|
|
// Skip to the first non-null non-self-cycle bucket.
|
2008-02-15 22:12:46 +01:00
|
|
|
while (*Bucket != reinterpret_cast<void*>(-1) &&
|
|
|
|
(*Bucket == 0 || GetNextPtr(*Bucket) == 0))
|
2007-10-03 23:12:09 +02:00
|
|
|
++Bucket;
|
|
|
|
|
|
|
|
NodePtr = static_cast<FoldingSetNode*>(*Bucket);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FoldingSetIteratorImpl::advance() {
|
|
|
|
// If there is another link within this bucket, go to it.
|
|
|
|
void *Probe = NodePtr->getNextInBucket();
|
|
|
|
|
|
|
|
if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe))
|
|
|
|
NodePtr = NextNodeInBucket;
|
|
|
|
else {
|
|
|
|
// Otherwise, this is the last link in this bucket.
|
|
|
|
void **Bucket = GetBucketPtr(Probe);
|
|
|
|
|
|
|
|
// Skip to the next non-null non-self-cycle bucket.
|
|
|
|
do {
|
|
|
|
++Bucket;
|
2008-02-15 22:12:46 +01:00
|
|
|
} while (*Bucket != reinterpret_cast<void*>(-1) &&
|
|
|
|
(*Bucket == 0 || GetNextPtr(*Bucket) == 0));
|
2007-10-03 23:12:09 +02:00
|
|
|
|
|
|
|
NodePtr = static_cast<FoldingSetNode*>(*Bucket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-04 22:11:17 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// FoldingSetBucketIteratorImpl Implementation
|
|
|
|
|
|
|
|
FoldingSetBucketIteratorImpl::FoldingSetBucketIteratorImpl(void **Bucket) {
|
|
|
|
Ptr = (*Bucket == 0 || GetNextPtr(*Bucket) == 0) ? (void*) Bucket : *Bucket;
|
|
|
|
}
|