blob: d2315966e32f124d1573b6cd2b58975da42989f8 [file] [log] [blame]
Chris Lattner751a4202007-02-08 19:20:57 +00001//===--- StringMap.cpp - String Hash table map implementation -------------===//
Chris Lattner149e6662006-10-29 23:42:03 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner149e6662006-10-29 23:42:03 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner751a4202007-02-08 19:20:57 +000010// This file implements the StringMap class.
Chris Lattner149e6662006-10-29 23:42:03 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner751a4202007-02-08 19:20:57 +000014#include "llvm/ADT/StringMap.h"
Daniel Dunbar77668002009-10-17 18:21:06 +000015#include "llvm/ADT/StringExtras.h"
Benjamin Kramerffa24e02012-08-29 22:57:04 +000016#include "llvm/Support/Compiler.h"
Eugene Zelenko33d7b762016-08-23 17:14:32 +000017#include "llvm/Support/MathExtras.h"
Chris Lattner149e6662006-10-29 23:42:03 +000018#include <cassert>
Eugene Zelenko33d7b762016-08-23 17:14:32 +000019
Chris Lattner149e6662006-10-29 23:42:03 +000020using namespace llvm;
21
Mehdi Aminibe8a57f2016-03-25 05:57:57 +000022/// Returns the number of buckets to allocate to ensure that the DenseMap can
23/// accommodate \p NumEntries without need to grow().
24static unsigned getMinBucketToReserveForEntries(unsigned NumEntries) {
25 // Ensure that "NumEntries * 4 < NumBuckets * 3"
26 if (NumEntries == 0)
27 return 0;
28 // +1 is required because of the strict equality.
29 // For example if NumEntries is 48, we need to return 401.
30 return NextPowerOf2(NumEntries * 4 / 3 + 1);
31}
32
Chris Lattner751a4202007-02-08 19:20:57 +000033StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) {
Chris Lattner23763462007-04-04 00:29:37 +000034 ItemSize = itemSize;
35
36 // If a size is specified, initialize the table with that many buckets.
37 if (InitSize) {
Mehdi Aminibe8a57f2016-03-25 05:57:57 +000038 // The table will grow when the number of entries reach 3/4 of the number of
39 // buckets. To guarantee that "InitSize" number of entries can be inserted
40 // in the table without growing, we allocate just what is needed here.
41 init(getMinBucketToReserveForEntries(InitSize));
Chris Lattner23763462007-04-04 00:29:37 +000042 return;
43 }
44
45 // Otherwise, initialize it with zero buckets to avoid the allocation.
Craig Topperc10719f2014-04-07 04:17:22 +000046 TheTable = nullptr;
Chris Lattner23763462007-04-04 00:29:37 +000047 NumBuckets = 0;
48 NumItems = 0;
49 NumTombstones = 0;
50}
51
52void StringMapImpl::init(unsigned InitSize) {
Chris Lattner149e6662006-10-29 23:42:03 +000053 assert((InitSize & (InitSize-1)) == 0 &&
54 "Init Size must be a power of 2 or zero!");
Chris Lattner64df4ba2007-04-03 22:15:38 +000055 NumBuckets = InitSize ? InitSize : 16;
Chris Lattner149e6662006-10-29 23:42:03 +000056 NumItems = 0;
Chris Lattner77baa562007-02-11 20:58:00 +000057 NumTombstones = 0;
Chris Lattner149e6662006-10-29 23:42:03 +000058
Benjamin Kramer46236ee2011-12-27 20:35:07 +000059 TheTable = (StringMapEntryBase **)calloc(NumBuckets+1,
60 sizeof(StringMapEntryBase **) +
61 sizeof(unsigned));
62
Chris Lattnere15605c2007-02-11 08:20:35 +000063 // Allocate one extra bucket, set it to look filled so the iterators stop at
64 // end.
Benjamin Kramer46236ee2011-12-27 20:35:07 +000065 TheTable[NumBuckets] = (StringMapEntryBase*)2;
Chris Lattner149e6662006-10-29 23:42:03 +000066}
67
Chris Lattner149e6662006-10-29 23:42:03 +000068/// LookupBucketFor - Look up the bucket that the specified string should end
69/// up in. If it already exists as a key in the map, the Item pointer for the
70/// specified bucket will be non-null. Otherwise, it will be null. In either
71/// case, the FullHashValue field of the bucket will be set to the hash value
72/// of the string.
Daniel Dunbarad36e8a2009-11-06 10:58:06 +000073unsigned StringMapImpl::LookupBucketFor(StringRef Name) {
Chris Lattner149e6662006-10-29 23:42:03 +000074 unsigned HTSize = NumBuckets;
Chris Lattner23763462007-04-04 00:29:37 +000075 if (HTSize == 0) { // Hash table unallocated so far?
76 init(16);
77 HTSize = NumBuckets;
78 }
Daniel Dunbar77668002009-10-17 18:21:06 +000079 unsigned FullHashValue = HashString(Name);
Chris Lattner149e6662006-10-29 23:42:03 +000080 unsigned BucketNo = FullHashValue & (HTSize-1);
Benjamin Kramer46236ee2011-12-27 20:35:07 +000081 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1);
82
Chris Lattner149e6662006-10-29 23:42:03 +000083 unsigned ProbeAmt = 1;
Chris Lattner77baa562007-02-11 20:58:00 +000084 int FirstTombstone = -1;
Eugene Zelenko33d7b762016-08-23 17:14:32 +000085 while (true) {
Benjamin Kramer46236ee2011-12-27 20:35:07 +000086 StringMapEntryBase *BucketItem = TheTable[BucketNo];
Chris Lattner149e6662006-10-29 23:42:03 +000087 // If we found an empty bucket, this key isn't in the table yet, return it.
Craig Topper8d399f82014-04-09 04:20:00 +000088 if (LLVM_LIKELY(!BucketItem)) {
Chris Lattner77baa562007-02-11 20:58:00 +000089 // If we found a tombstone, we want to reuse the tombstone instead of an
90 // empty bucket. This reduces probing.
91 if (FirstTombstone != -1) {
Benjamin Kramer46236ee2011-12-27 20:35:07 +000092 HashTable[FirstTombstone] = FullHashValue;
Chris Lattner77baa562007-02-11 20:58:00 +000093 return FirstTombstone;
94 }
95
Benjamin Kramer46236ee2011-12-27 20:35:07 +000096 HashTable[BucketNo] = FullHashValue;
Chris Lattner149e6662006-10-29 23:42:03 +000097 return BucketNo;
98 }
99
Chris Lattner77baa562007-02-11 20:58:00 +0000100 if (BucketItem == getTombstoneVal()) {
101 // Skip over tombstones. However, remember the first one we see.
102 if (FirstTombstone == -1) FirstTombstone = BucketNo;
Benjamin Kramerffa24e02012-08-29 22:57:04 +0000103 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
Chris Lattner77baa562007-02-11 20:58:00 +0000104 // If the full hash value matches, check deeply for a match. The common
105 // case here is that we are only looking at the buckets (for item info
106 // being non-null and for the full hash value) not at the items. This
107 // is important for cache locality.
108
Daniel Dunbar5bf72e22009-07-23 18:17:34 +0000109 // Do the comparison like this because Name isn't necessarily
Chris Lattner149e6662006-10-29 23:42:03 +0000110 // null-terminated!
111 char *ItemStr = (char*)BucketItem+ItemSize;
Daniel Dunbar5bf72e22009-07-23 18:17:34 +0000112 if (Name == StringRef(ItemStr, BucketItem->getKeyLength())) {
Chris Lattner149e6662006-10-29 23:42:03 +0000113 // We found a match!
114 return BucketNo;
115 }
116 }
117
118 // Okay, we didn't find the item. Probe to the next bucket.
119 BucketNo = (BucketNo+ProbeAmt) & (HTSize-1);
120
121 // Use quadratic probing, it has fewer clumping artifacts than linear
122 // probing and has good cache behavior in the common case.
123 ++ProbeAmt;
124 }
125}
126
Chris Lattnerdb08c1b2007-02-11 19:49:41 +0000127/// FindKey - Look up the bucket that contains the specified key. If it exists
128/// in the map, return the bucket number of the key. Otherwise return -1.
129/// This does not modify the map.
Daniel Dunbarad36e8a2009-11-06 10:58:06 +0000130int StringMapImpl::FindKey(StringRef Key) const {
Chris Lattnerdb08c1b2007-02-11 19:49:41 +0000131 unsigned HTSize = NumBuckets;
Chris Lattner23763462007-04-04 00:29:37 +0000132 if (HTSize == 0) return -1; // Really empty table?
Daniel Dunbar77668002009-10-17 18:21:06 +0000133 unsigned FullHashValue = HashString(Key);
Chris Lattnerdb08c1b2007-02-11 19:49:41 +0000134 unsigned BucketNo = FullHashValue & (HTSize-1);
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000135 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1);
136
Chris Lattnerdb08c1b2007-02-11 19:49:41 +0000137 unsigned ProbeAmt = 1;
Eugene Zelenko33d7b762016-08-23 17:14:32 +0000138 while (true) {
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000139 StringMapEntryBase *BucketItem = TheTable[BucketNo];
Chris Lattnerdb08c1b2007-02-11 19:49:41 +0000140 // If we found an empty bucket, this key isn't in the table yet, return.
Craig Topper8d399f82014-04-09 04:20:00 +0000141 if (LLVM_LIKELY(!BucketItem))
Chris Lattnerdb08c1b2007-02-11 19:49:41 +0000142 return -1;
143
Chris Lattner77baa562007-02-11 20:58:00 +0000144 if (BucketItem == getTombstoneVal()) {
145 // Ignore tombstones.
Benjamin Kramerffa24e02012-08-29 22:57:04 +0000146 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
Chris Lattner77baa562007-02-11 20:58:00 +0000147 // If the full hash value matches, check deeply for a match. The common
148 // case here is that we are only looking at the buckets (for item info
149 // being non-null and for the full hash value) not at the items. This
150 // is important for cache locality.
151
Chris Lattnerdb08c1b2007-02-11 19:49:41 +0000152 // Do the comparison like this because NameStart isn't necessarily
153 // null-terminated!
154 char *ItemStr = (char*)BucketItem+ItemSize;
Daniel Dunbar5bf72e22009-07-23 18:17:34 +0000155 if (Key == StringRef(ItemStr, BucketItem->getKeyLength())) {
Chris Lattnerdb08c1b2007-02-11 19:49:41 +0000156 // We found a match!
157 return BucketNo;
158 }
159 }
160
161 // Okay, we didn't find the item. Probe to the next bucket.
162 BucketNo = (BucketNo+ProbeAmt) & (HTSize-1);
163
164 // Use quadratic probing, it has fewer clumping artifacts than linear
165 // probing and has good cache behavior in the common case.
166 ++ProbeAmt;
167 }
168}
169
Chris Lattner77baa562007-02-11 20:58:00 +0000170/// RemoveKey - Remove the specified StringMapEntry from the table, but do not
171/// delete it. This aborts if the value isn't in the table.
172void StringMapImpl::RemoveKey(StringMapEntryBase *V) {
173 const char *VStr = (char*)V + ItemSize;
Daniel Dunbar5bf72e22009-07-23 18:17:34 +0000174 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength()));
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000175 (void)V2;
Chris Lattner77baa562007-02-11 20:58:00 +0000176 assert(V == V2 && "Didn't find key?");
177}
178
179/// RemoveKey - Remove the StringMapEntry for the specified key from the
180/// table, returning it. If the key is not in the table, this returns null.
Daniel Dunbarad36e8a2009-11-06 10:58:06 +0000181StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) {
Daniel Dunbar5bf72e22009-07-23 18:17:34 +0000182 int Bucket = FindKey(Key);
Craig Topperc10719f2014-04-07 04:17:22 +0000183 if (Bucket == -1) return nullptr;
Chris Lattner77baa562007-02-11 20:58:00 +0000184
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000185 StringMapEntryBase *Result = TheTable[Bucket];
186 TheTable[Bucket] = getTombstoneVal();
Chris Lattner77baa562007-02-11 20:58:00 +0000187 --NumItems;
188 ++NumTombstones;
Jakob Stoklund Olesen846f9502011-03-30 18:32:51 +0000189 assert(NumItems + NumTombstones <= NumBuckets);
190
Chris Lattner77baa562007-02-11 20:58:00 +0000191 return Result;
192}
193
Chris Lattner149e6662006-10-29 23:42:03 +0000194/// RehashTable - Grow the table, redistributing values into the buckets with
195/// the appropriate mod-of-hashtable-size.
David Blaikie16a9eab2014-06-23 18:28:53 +0000196unsigned StringMapImpl::RehashTable(unsigned BucketNo) {
Jakob Stoklund Olesenf587f442011-03-30 18:32:44 +0000197 unsigned NewSize;
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000198 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1);
Jakob Stoklund Olesenf587f442011-03-30 18:32:44 +0000199
200 // If the hash table is now more than 3/4 full, or if fewer than 1/8 of
201 // the buckets are empty (meaning that many are filled with tombstones),
202 // grow/rehash the table.
Benjamin Kramer654a85e2015-02-23 16:41:36 +0000203 if (LLVM_UNLIKELY(NumItems * 4 > NumBuckets * 3)) {
Jakob Stoklund Olesenf587f442011-03-30 18:32:44 +0000204 NewSize = NumBuckets*2;
Benjamin Kramer654a85e2015-02-23 16:41:36 +0000205 } else if (LLVM_UNLIKELY(NumBuckets - (NumItems + NumTombstones) <=
206 NumBuckets / 8)) {
Jakob Stoklund Olesenf587f442011-03-30 18:32:44 +0000207 NewSize = NumBuckets;
208 } else {
David Blaikie16a9eab2014-06-23 18:28:53 +0000209 return BucketNo;
Jakob Stoklund Olesenf587f442011-03-30 18:32:44 +0000210 }
211
David Blaikie16a9eab2014-06-23 18:28:53 +0000212 unsigned NewBucketNo = BucketNo;
Chris Lattnere15605c2007-02-11 08:20:35 +0000213 // Allocate one extra bucket which will always be non-empty. This allows the
214 // iterators to stop at end.
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000215 StringMapEntryBase **NewTableArray =
216 (StringMapEntryBase **)calloc(NewSize+1, sizeof(StringMapEntryBase *) +
217 sizeof(unsigned));
218 unsigned *NewHashArray = (unsigned *)(NewTableArray + NewSize + 1);
219 NewTableArray[NewSize] = (StringMapEntryBase*)2;
220
Chris Lattner149e6662006-10-29 23:42:03 +0000221 // Rehash all the items into their new buckets. Luckily :) we already have
222 // the hash values available, so we don't have to rehash any strings.
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000223 for (unsigned I = 0, E = NumBuckets; I != E; ++I) {
224 StringMapEntryBase *Bucket = TheTable[I];
225 if (Bucket && Bucket != getTombstoneVal()) {
Chris Lattner149e6662006-10-29 23:42:03 +0000226 // Fast case, bucket available.
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000227 unsigned FullHash = HashTable[I];
Chris Lattner149e6662006-10-29 23:42:03 +0000228 unsigned NewBucket = FullHash & (NewSize-1);
Craig Topper8d399f82014-04-09 04:20:00 +0000229 if (!NewTableArray[NewBucket]) {
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000230 NewTableArray[FullHash & (NewSize-1)] = Bucket;
231 NewHashArray[FullHash & (NewSize-1)] = FullHash;
David Blaikie16a9eab2014-06-23 18:28:53 +0000232 if (I == BucketNo)
233 NewBucketNo = NewBucket;
Chris Lattner149e6662006-10-29 23:42:03 +0000234 continue;
235 }
236
Chris Lattner77baa562007-02-11 20:58:00 +0000237 // Otherwise probe for a spot.
Chris Lattner149e6662006-10-29 23:42:03 +0000238 unsigned ProbeSize = 1;
239 do {
240 NewBucket = (NewBucket + ProbeSize++) & (NewSize-1);
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000241 } while (NewTableArray[NewBucket]);
Chris Lattner149e6662006-10-29 23:42:03 +0000242
243 // Finally found a slot. Fill it in.
Benjamin Kramer46236ee2011-12-27 20:35:07 +0000244 NewTableArray[NewBucket] = Bucket;
245 NewHashArray[NewBucket] = FullHash;
David Blaikie16a9eab2014-06-23 18:28:53 +0000246 if (I == BucketNo)
247 NewBucketNo = NewBucket;
Chris Lattner149e6662006-10-29 23:42:03 +0000248 }
249 }
250
Chris Lattnerc770a022007-04-04 17:24:28 +0000251 free(TheTable);
Chris Lattner149e6662006-10-29 23:42:03 +0000252
253 TheTable = NewTableArray;
254 NumBuckets = NewSize;
Jakob Stoklund Olesen846f9502011-03-30 18:32:51 +0000255 NumTombstones = 0;
David Blaikie16a9eab2014-06-23 18:28:53 +0000256 return NewBucketNo;
Chris Lattner149e6662006-10-29 23:42:03 +0000257}