forked from OSchip/llvm-project
Allow FoldingSet clients to pump up the initial hash size.
llvm-svn: 31377
This commit is contained in:
parent
5162c6a67d
commit
eb0fd251c1
|
@ -117,7 +117,7 @@ private:
|
|||
unsigned NumNodes;
|
||||
|
||||
public:
|
||||
FoldingSetImpl();
|
||||
FoldingSetImpl(unsigned Log2InitSize = 6);
|
||||
virtual ~FoldingSetImpl();
|
||||
|
||||
// Forward declaration.
|
||||
|
@ -229,6 +229,10 @@ private:
|
|||
}
|
||||
|
||||
public:
|
||||
FoldingSet(unsigned Log2InitSize = 6)
|
||||
: FoldingSetImpl(Log2InitSize)
|
||||
{}
|
||||
|
||||
/// GetOrInsertNode - If there is an existing simple Node exactly
|
||||
/// equal to the specified node, return it. Otherwise, insert 'N' and
|
||||
/// return it instead.
|
||||
|
|
|
@ -151,8 +151,10 @@ static void **GetBucketFor(const FoldingSetImpl::NodeID &ID,
|
|||
//===----------------------------------------------------------------------===//
|
||||
// FoldingSetImpl Implementation
|
||||
|
||||
FoldingSetImpl::FoldingSetImpl() : NumNodes(0) {
|
||||
NumBuckets = 64;
|
||||
FoldingSetImpl::FoldingSetImpl(unsigned Log2InitSize) : NumNodes(0) {
|
||||
assert(5 < Log2InitSize && Log2InitSize < 32 &&
|
||||
"Initial hash table size out of range");
|
||||
NumBuckets = 1 << Log2InitSize;
|
||||
Buckets = new void*[NumBuckets];
|
||||
memset(Buckets, 0, NumBuckets*sizeof(void*));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue