blob: d56d1da6647ce957d4069f67f26319f4fabf5409 [file] [log] [blame]
Chris Lattnerbb28a812007-02-08 19:20:57 +00001//===--- StringMap.cpp - String Hash table map implementation -------------===//
Chris Lattner23d7b362006-10-29 23:42:03 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattnerbb28a812007-02-08 19:20:57 +000010// This file implements the StringMap class.
Chris Lattner23d7b362006-10-29 23:42:03 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerbb28a812007-02-08 19:20:57 +000014#include "llvm/ADT/StringMap.h"
Chris Lattner23d7b362006-10-29 23:42:03 +000015#include <cassert>
16using namespace llvm;
17
Chris Lattnerbb28a812007-02-08 19:20:57 +000018StringMapVisitor::~StringMapVisitor() {
Chris Lattner23d7b362006-10-29 23:42:03 +000019}
20
Chris Lattnerbb28a812007-02-08 19:20:57 +000021StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) {
Chris Lattner23d7b362006-10-29 23:42:03 +000022 assert((InitSize & (InitSize-1)) == 0 &&
23 "Init Size must be a power of 2 or zero!");
24 NumBuckets = InitSize ? InitSize : 512;
25 ItemSize = itemSize;
26 NumItems = 0;
27
Chris Lattnera86559e2007-02-11 08:20:35 +000028 TheTable = new ItemBucket[NumBuckets+1]();
Chris Lattner23d7b362006-10-29 23:42:03 +000029 memset(TheTable, 0, NumBuckets*sizeof(ItemBucket));
Chris Lattnera86559e2007-02-11 08:20:35 +000030
31 // Allocate one extra bucket, set it to look filled so the iterators stop at
32 // end.
33 TheTable[NumBuckets].Item = (StringMapEntryBase*)2;
Chris Lattner23d7b362006-10-29 23:42:03 +000034}
35
36
37/// HashString - Compute a hash code for the specified string.
38///
39static unsigned HashString(const char *Start, const char *End) {
Chris Lattner38742b92007-01-06 23:19:38 +000040 // Bernstein hash function.
Chris Lattner23d7b362006-10-29 23:42:03 +000041 unsigned int Result = 0;
Chris Lattner38742b92007-01-06 23:19:38 +000042 // TODO: investigate whether a modified bernstein hash function performs
Chris Lattner41a44292007-01-06 23:20:51 +000043 // better: http://eternallyconfuzzled.com/tuts/algorithms/jsw_tut_hashing.aspx
Chris Lattner38742b92007-01-06 23:19:38 +000044 // X*33+c -> X*33^c
Chris Lattner23d7b362006-10-29 23:42:03 +000045 while (Start != End)
46 Result = Result * 33 + *Start++;
47 Result = Result + (Result >> 5);
48 return Result;
49}
50
51/// LookupBucketFor - Look up the bucket that the specified string should end
52/// up in. If it already exists as a key in the map, the Item pointer for the
53/// specified bucket will be non-null. Otherwise, it will be null. In either
54/// case, the FullHashValue field of the bucket will be set to the hash value
55/// of the string.
Chris Lattnerbb28a812007-02-08 19:20:57 +000056unsigned StringMapImpl::LookupBucketFor(const char *NameStart,
Chris Lattner23d7b362006-10-29 23:42:03 +000057 const char *NameEnd) {
58 unsigned HTSize = NumBuckets;
59 unsigned FullHashValue = HashString(NameStart, NameEnd);
60 unsigned BucketNo = FullHashValue & (HTSize-1);
61
62 unsigned ProbeAmt = 1;
63 while (1) {
64 ItemBucket &Bucket = TheTable[BucketNo];
Chris Lattneree182422007-02-08 19:08:37 +000065 StringMapEntryBase *BucketItem = Bucket.Item;
Chris Lattner23d7b362006-10-29 23:42:03 +000066 // If we found an empty bucket, this key isn't in the table yet, return it.
67 if (BucketItem == 0) {
68 Bucket.FullHashValue = FullHashValue;
69 return BucketNo;
70 }
71
72 // If the full hash value matches, check deeply for a match. The common
73 // case here is that we are only looking at the buckets (for item info
74 // being non-null and for the full hash value) not at the items. This
75 // is important for cache locality.
76 if (Bucket.FullHashValue == FullHashValue) {
77 // Do the comparison like this because NameStart isn't necessarily
78 // null-terminated!
79 char *ItemStr = (char*)BucketItem+ItemSize;
Chris Lattneree182422007-02-08 19:08:37 +000080 unsigned ItemStrLen = BucketItem->getKeyLength();
81 if (unsigned(NameEnd-NameStart) == ItemStrLen &&
82 memcmp(ItemStr, NameStart, ItemStrLen) == 0) {
Chris Lattner23d7b362006-10-29 23:42:03 +000083 // We found a match!
84 return BucketNo;
85 }
86 }
87
88 // Okay, we didn't find the item. Probe to the next bucket.
89 BucketNo = (BucketNo+ProbeAmt) & (HTSize-1);
90
91 // Use quadratic probing, it has fewer clumping artifacts than linear
92 // probing and has good cache behavior in the common case.
93 ++ProbeAmt;
94 }
95}
96
97/// RehashTable - Grow the table, redistributing values into the buckets with
98/// the appropriate mod-of-hashtable-size.
Chris Lattnerbb28a812007-02-08 19:20:57 +000099void StringMapImpl::RehashTable() {
Chris Lattner23d7b362006-10-29 23:42:03 +0000100 unsigned NewSize = NumBuckets*2;
Chris Lattnera86559e2007-02-11 08:20:35 +0000101 // Allocate one extra bucket which will always be non-empty. This allows the
102 // iterators to stop at end.
103 ItemBucket *NewTableArray = new ItemBucket[NewSize+1]();
Chris Lattner23d7b362006-10-29 23:42:03 +0000104 memset(NewTableArray, 0, NewSize*sizeof(ItemBucket));
Chris Lattnera86559e2007-02-11 08:20:35 +0000105 NewTableArray[NewSize].Item = (StringMapEntryBase*)2;
Chris Lattner23d7b362006-10-29 23:42:03 +0000106
107 // Rehash all the items into their new buckets. Luckily :) we already have
108 // the hash values available, so we don't have to rehash any strings.
109 for (ItemBucket *IB = TheTable, *E = TheTable+NumBuckets; IB != E; ++IB) {
110 if (IB->Item) {
111 // Fast case, bucket available.
112 unsigned FullHash = IB->FullHashValue;
113 unsigned NewBucket = FullHash & (NewSize-1);
114 if (NewTableArray[NewBucket].Item == 0) {
115 NewTableArray[FullHash & (NewSize-1)].Item = IB->Item;
116 NewTableArray[FullHash & (NewSize-1)].FullHashValue = FullHash;
117 continue;
118 }
119
120 unsigned ProbeSize = 1;
121 do {
122 NewBucket = (NewBucket + ProbeSize++) & (NewSize-1);
123 } while (NewTableArray[NewBucket].Item);
124
125 // Finally found a slot. Fill it in.
126 NewTableArray[NewBucket].Item = IB->Item;
127 NewTableArray[NewBucket].FullHashValue = FullHash;
128 }
129 }
130
131 delete[] TheTable;
132
133 TheTable = NewTableArray;
134 NumBuckets = NewSize;
135}
136
137
138/// VisitEntries - This method walks through all of the items,
139/// invoking Visitor.Visit for each of them.
Chris Lattnerbb28a812007-02-08 19:20:57 +0000140void StringMapImpl::VisitEntries(const StringMapVisitor &Visitor) const {
Chris Lattner23d7b362006-10-29 23:42:03 +0000141 for (ItemBucket *IB = TheTable, *E = TheTable+NumBuckets; IB != E; ++IB) {
Chris Lattneree182422007-02-08 19:08:37 +0000142 if (StringMapEntryBase *Id = IB->Item)
Chris Lattner23d7b362006-10-29 23:42:03 +0000143 Visitor.Visit((char*)Id + ItemSize, Id);
144 }
145}