1 //===--- OnDiskHashTable.h - On-Disk Hash Table Implementation --*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// Defines facilities for reading and writing on-disk hash tables.
12 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_SUPPORT_ONDISKHASHTABLE_H
14 #define LLVM_SUPPORT_ONDISKHASHTABLE_H
16 #include "llvm/Support/Allocator.h"
17 #include "llvm/Support/DataTypes.h"
18 #include "llvm/Support/EndianStream.h"
19 #include "llvm/Support/Host.h"
20 #include "llvm/Support/MathExtras.h"
21 #include "llvm/Support/raw_ostream.h"
27 /// Generates an on disk hash table.
29 /// This needs an \c Info that handles storing values into the hash table's
30 /// payload and computes the hash for a given key. This should provide the
31 /// following interface:
34 /// class ExampleInfo {
36 /// typedef ExampleKey key_type; // Must be copy constructible
37 /// typedef ExampleKey &key_type_ref;
38 /// typedef ExampleData data_type; // Must be copy constructible
39 /// typedef ExampleData &data_type_ref;
40 /// typedef uint32_t hash_value_type; // The type the hash function returns.
41 /// typedef uint32_t offset_type; // The type for offsets into the table.
43 /// /// Calculate the hash for Key
44 /// static hash_value_type ComputeHash(key_type_ref Key);
45 /// /// Return the lengths, in bytes, of the given Key/Data pair.
46 /// static std::pair<offset_type, offset_type>
47 /// EmitKeyDataLength(raw_ostream &Out, key_type_ref Key, data_type_ref Data);
48 /// /// Write Key to Out. KeyLen is the length from EmitKeyDataLength.
49 /// static void EmitKey(raw_ostream &Out, key_type_ref Key,
50 /// offset_type KeyLen);
51 /// /// Write Data to Out. DataLen is the length from EmitKeyDataLength.
52 /// static void EmitData(raw_ostream &Out, key_type_ref Key,
53 /// data_type_ref Data, offset_type DataLen);
54 /// /// Determine if two keys are equal. Optional, only needed by contains.
55 /// static bool EqualKey(key_type_ref Key1, key_type_ref Key2);
58 template <typename Info
> class OnDiskChainedHashTableGenerator
{
59 /// A single item in the hash table.
62 typename
Info::key_type Key
;
63 typename
Info::data_type Data
;
65 const typename
Info::hash_value_type Hash
;
67 Item(typename
Info::key_type_ref Key
, typename
Info::data_type_ref Data
,
69 : Key(Key
), Data(Data
), Next(nullptr), Hash(InfoObj
.ComputeHash(Key
)) {}
72 typedef typename
Info::offset_type offset_type
;
73 offset_type NumBuckets
;
74 offset_type NumEntries
;
75 llvm::SpecificBumpPtrAllocator
<Item
> BA
;
77 /// A linked list of values in a particular hash bucket.
87 /// Insert an item into the appropriate hash bucket.
88 void insert(Bucket
*Buckets
, size_t Size
, Item
*E
) {
89 Bucket
&B
= Buckets
[E
->Hash
& (Size
- 1)];
95 /// Resize the hash table, moving the old entries into the new buckets.
96 void resize(size_t NewSize
) {
97 Bucket
*NewBuckets
= static_cast<Bucket
*>(
98 safe_calloc(NewSize
, sizeof(Bucket
)));
99 // Populate NewBuckets with the old entries.
100 for (size_t I
= 0; I
< NumBuckets
; ++I
)
101 for (Item
*E
= Buckets
[I
].Head
; E
;) {
104 insert(NewBuckets
, NewSize
, E
);
109 NumBuckets
= NewSize
;
110 Buckets
= NewBuckets
;
114 /// Insert an entry into the table.
115 void insert(typename
Info::key_type_ref Key
,
116 typename
Info::data_type_ref Data
) {
118 insert(Key
, Data
, InfoObj
);
121 /// Insert an entry into the table.
123 /// Uses the provided Info instead of a stack allocated one.
124 void insert(typename
Info::key_type_ref Key
,
125 typename
Info::data_type_ref Data
, Info
&InfoObj
) {
127 if (4 * NumEntries
>= 3 * NumBuckets
)
128 resize(NumBuckets
* 2);
129 insert(Buckets
, NumBuckets
, new (BA
.Allocate()) Item(Key
, Data
, InfoObj
));
132 /// Determine whether an entry has been inserted.
133 bool contains(typename
Info::key_type_ref Key
, Info
&InfoObj
) {
134 unsigned Hash
= InfoObj
.ComputeHash(Key
);
135 for (Item
*I
= Buckets
[Hash
& (NumBuckets
- 1)].Head
; I
; I
= I
->Next
)
136 if (I
->Hash
== Hash
&& InfoObj
.EqualKey(I
->Key
, Key
))
141 /// Emit the table to Out, which must not be at offset 0.
142 offset_type
Emit(raw_ostream
&Out
) {
144 return Emit(Out
, InfoObj
);
147 /// Emit the table to Out, which must not be at offset 0.
149 /// Uses the provided Info instead of a stack allocated one.
150 offset_type
Emit(raw_ostream
&Out
, Info
&InfoObj
) {
151 using namespace llvm::support
;
152 endian::Writer
LE(Out
, little
);
154 // Now we're done adding entries, resize the bucket list if it's
155 // significantly too large. (This only happens if the number of
156 // entries is small and we're within our initial allocation of
157 // 64 buckets.) We aim for an occupancy ratio in [3/8, 3/4).
159 // As a special case, if there are two or fewer entries, just
160 // form a single bucket. A linear scan is fine in that case, and
161 // this is very common in C++ class lookup tables. This also
162 // guarantees we produce at least one bucket for an empty table.
164 // FIXME: Try computing a perfect hash function at this point.
165 unsigned TargetNumBuckets
=
166 NumEntries
<= 2 ? 1 : NextPowerOf2(NumEntries
* 4 / 3);
167 if (TargetNumBuckets
!= NumBuckets
)
168 resize(TargetNumBuckets
);
170 // Emit the payload of the table.
171 for (offset_type I
= 0; I
< NumBuckets
; ++I
) {
172 Bucket
&B
= Buckets
[I
];
176 // Store the offset for the data of this bucket.
178 assert(B
.Off
&& "Cannot write a bucket at offset 0. Please add padding.");
180 // Write out the number of items in the bucket.
181 LE
.write
<uint16_t>(B
.Length
);
182 assert(B
.Length
!= 0 && "Bucket has a head but zero length?");
184 // Write out the entries in the bucket.
185 for (Item
*I
= B
.Head
; I
; I
= I
->Next
) {
186 LE
.write
<typename
Info::hash_value_type
>(I
->Hash
);
187 const std::pair
<offset_type
, offset_type
> &Len
=
188 InfoObj
.EmitKeyDataLength(Out
, I
->Key
, I
->Data
);
190 InfoObj
.EmitKey(Out
, I
->Key
, Len
.first
);
191 InfoObj
.EmitData(Out
, I
->Key
, I
->Data
, Len
.second
);
193 // In asserts mode, check that the users length matches the data they
195 uint64_t KeyStart
= Out
.tell();
196 InfoObj
.EmitKey(Out
, I
->Key
, Len
.first
);
197 uint64_t DataStart
= Out
.tell();
198 InfoObj
.EmitData(Out
, I
->Key
, I
->Data
, Len
.second
);
199 uint64_t End
= Out
.tell();
200 assert(offset_type(DataStart
- KeyStart
) == Len
.first
&&
201 "key length does not match bytes written");
202 assert(offset_type(End
- DataStart
) == Len
.second
&&
203 "data length does not match bytes written");
208 // Pad with zeros so that we can start the hashtable at an aligned address.
209 offset_type TableOff
= Out
.tell();
210 uint64_t N
= llvm::OffsetToAlignment(TableOff
, alignof(offset_type
));
213 LE
.write
<uint8_t>(0);
215 // Emit the hashtable itself.
216 LE
.write
<offset_type
>(NumBuckets
);
217 LE
.write
<offset_type
>(NumEntries
);
218 for (offset_type I
= 0; I
< NumBuckets
; ++I
)
219 LE
.write
<offset_type
>(Buckets
[I
].Off
);
224 OnDiskChainedHashTableGenerator() {
227 // Note that we do not need to run the constructors of the individual
228 // Bucket objects since 'calloc' returns bytes that are all 0.
229 Buckets
= static_cast<Bucket
*>(safe_calloc(NumBuckets
, sizeof(Bucket
)));
232 ~OnDiskChainedHashTableGenerator() { std::free(Buckets
); }
235 /// Provides lookup on an on disk hash table.
237 /// This needs an \c Info that handles reading values from the hash table's
238 /// payload and computes the hash for a given key. This should provide the
239 /// following interface:
242 /// class ExampleLookupInfo {
244 /// typedef ExampleData data_type;
245 /// typedef ExampleInternalKey internal_key_type; // The stored key type.
246 /// typedef ExampleKey external_key_type; // The type to pass to find().
247 /// typedef uint32_t hash_value_type; // The type the hash function returns.
248 /// typedef uint32_t offset_type; // The type for offsets into the table.
250 /// /// Compare two keys for equality.
251 /// static bool EqualKey(internal_key_type &Key1, internal_key_type &Key2);
252 /// /// Calculate the hash for the given key.
253 /// static hash_value_type ComputeHash(internal_key_type &IKey);
254 /// /// Translate from the semantic type of a key in the hash table to the
255 /// /// type that is actually stored and used for hashing and comparisons.
256 /// /// The internal and external types are often the same, in which case this
257 /// /// can simply return the passed in value.
258 /// static const internal_key_type &GetInternalKey(external_key_type &EKey);
259 /// /// Read the key and data length from Buffer, leaving it pointing at the
260 /// /// following byte.
261 /// static std::pair<offset_type, offset_type>
262 /// ReadKeyDataLength(const unsigned char *&Buffer);
263 /// /// Read the key from Buffer, given the KeyLen as reported from
264 /// /// ReadKeyDataLength.
265 /// const internal_key_type &ReadKey(const unsigned char *Buffer,
266 /// offset_type KeyLen);
267 /// /// Read the data for Key from Buffer, given the DataLen as reported from
268 /// /// ReadKeyDataLength.
269 /// data_type ReadData(StringRef Key, const unsigned char *Buffer,
270 /// offset_type DataLen);
273 template <typename Info
> class OnDiskChainedHashTable
{
274 const typename
Info::offset_type NumBuckets
;
275 const typename
Info::offset_type NumEntries
;
276 const unsigned char *const Buckets
;
277 const unsigned char *const Base
;
281 typedef Info InfoType
;
282 typedef typename
Info::internal_key_type internal_key_type
;
283 typedef typename
Info::external_key_type external_key_type
;
284 typedef typename
Info::data_type data_type
;
285 typedef typename
Info::hash_value_type hash_value_type
;
286 typedef typename
Info::offset_type offset_type
;
288 OnDiskChainedHashTable(offset_type NumBuckets
, offset_type NumEntries
,
289 const unsigned char *Buckets
,
290 const unsigned char *Base
,
291 const Info
&InfoObj
= Info())
292 : NumBuckets(NumBuckets
), NumEntries(NumEntries
), Buckets(Buckets
),
293 Base(Base
), InfoObj(InfoObj
) {
294 assert((reinterpret_cast<uintptr_t>(Buckets
) & 0x3) == 0 &&
295 "'buckets' must have a 4-byte alignment");
298 /// Read the number of buckets and the number of entries from a hash table
299 /// produced by OnDiskHashTableGenerator::Emit, and advance the Buckets
300 /// pointer past them.
301 static std::pair
<offset_type
, offset_type
>
302 readNumBucketsAndEntries(const unsigned char *&Buckets
) {
303 assert((reinterpret_cast<uintptr_t>(Buckets
) & 0x3) == 0 &&
304 "buckets should be 4-byte aligned.");
305 using namespace llvm::support
;
306 offset_type NumBuckets
=
307 endian::readNext
<offset_type
, little
, aligned
>(Buckets
);
308 offset_type NumEntries
=
309 endian::readNext
<offset_type
, little
, aligned
>(Buckets
);
310 return std::make_pair(NumBuckets
, NumEntries
);
313 offset_type
getNumBuckets() const { return NumBuckets
; }
314 offset_type
getNumEntries() const { return NumEntries
; }
315 const unsigned char *getBase() const { return Base
; }
316 const unsigned char *getBuckets() const { return Buckets
; }
318 bool isEmpty() const { return NumEntries
== 0; }
321 internal_key_type Key
;
322 const unsigned char *const Data
;
323 const offset_type Len
;
327 iterator() : Key(), Data(nullptr), Len(0), InfoObj(nullptr) {}
328 iterator(const internal_key_type K
, const unsigned char *D
, offset_type L
,
330 : Key(K
), Data(D
), Len(L
), InfoObj(InfoObj
) {}
332 data_type
operator*() const { return InfoObj
->ReadData(Key
, Data
, Len
); }
334 const unsigned char *getDataPtr() const { return Data
; }
335 offset_type
getDataLen() const { return Len
; }
337 bool operator==(const iterator
&X
) const { return X
.Data
== Data
; }
338 bool operator!=(const iterator
&X
) const { return X
.Data
!= Data
; }
341 /// Look up the stored data for a particular key.
342 iterator
find(const external_key_type
&EKey
, Info
*InfoPtr
= nullptr) {
343 const internal_key_type
&IKey
= InfoObj
.GetInternalKey(EKey
);
344 hash_value_type KeyHash
= InfoObj
.ComputeHash(IKey
);
345 return find_hashed(IKey
, KeyHash
, InfoPtr
);
348 /// Look up the stored data for a particular key with a known hash.
349 iterator
find_hashed(const internal_key_type
&IKey
, hash_value_type KeyHash
,
350 Info
*InfoPtr
= nullptr) {
351 using namespace llvm::support
;
356 // Each bucket is just an offset into the hash table file.
357 offset_type Idx
= KeyHash
& (NumBuckets
- 1);
358 const unsigned char *Bucket
= Buckets
+ sizeof(offset_type
) * Idx
;
360 offset_type Offset
= endian::readNext
<offset_type
, little
, aligned
>(Bucket
);
362 return iterator(); // Empty bucket.
363 const unsigned char *Items
= Base
+ Offset
;
365 // 'Items' starts with a 16-bit unsigned integer representing the
366 // number of items in this bucket.
367 unsigned Len
= endian::readNext
<uint16_t, little
, unaligned
>(Items
);
369 for (unsigned i
= 0; i
< Len
; ++i
) {
371 hash_value_type ItemHash
=
372 endian::readNext
<hash_value_type
, little
, unaligned
>(Items
);
374 // Determine the length of the key and the data.
375 const std::pair
<offset_type
, offset_type
> &L
=
376 Info::ReadKeyDataLength(Items
);
377 offset_type ItemLen
= L
.first
+ L
.second
;
379 // Compare the hashes. If they are not the same, skip the entry entirely.
380 if (ItemHash
!= KeyHash
) {
386 const internal_key_type
&X
=
387 InfoPtr
->ReadKey((const unsigned char *const)Items
, L
.first
);
389 // If the key doesn't match just skip reading the value.
390 if (!InfoPtr
->EqualKey(X
, IKey
)) {
396 return iterator(X
, Items
+ L
.first
, L
.second
, InfoPtr
);
402 iterator
end() const { return iterator(); }
404 Info
&getInfoObj() { return InfoObj
; }
406 /// Create the hash table.
408 /// \param Buckets is the beginning of the hash table itself, which follows
409 /// the payload of entire structure. This is the value returned by
410 /// OnDiskHashTableGenerator::Emit.
412 /// \param Base is the point from which all offsets into the structure are
413 /// based. This is offset 0 in the stream that was used when Emitting the
415 static OnDiskChainedHashTable
*Create(const unsigned char *Buckets
,
416 const unsigned char *const Base
,
417 const Info
&InfoObj
= Info()) {
418 assert(Buckets
> Base
);
419 auto NumBucketsAndEntries
= readNumBucketsAndEntries(Buckets
);
420 return new OnDiskChainedHashTable
<Info
>(NumBucketsAndEntries
.first
,
421 NumBucketsAndEntries
.second
,
422 Buckets
, Base
, InfoObj
);
426 /// Provides lookup and iteration over an on disk hash table.
428 /// \copydetails llvm::OnDiskChainedHashTable
429 template <typename Info
>
430 class OnDiskIterableChainedHashTable
: public OnDiskChainedHashTable
<Info
> {
431 const unsigned char *Payload
;
434 typedef OnDiskChainedHashTable
<Info
> base_type
;
435 typedef typename
base_type::internal_key_type internal_key_type
;
436 typedef typename
base_type::external_key_type external_key_type
;
437 typedef typename
base_type::data_type data_type
;
438 typedef typename
base_type::hash_value_type hash_value_type
;
439 typedef typename
base_type::offset_type offset_type
;
442 /// Iterates over all of the keys in the table.
443 class iterator_base
{
444 const unsigned char *Ptr
;
445 offset_type NumItemsInBucketLeft
;
446 offset_type NumEntriesLeft
;
449 typedef external_key_type value_type
;
451 iterator_base(const unsigned char *const Ptr
, offset_type NumEntries
)
452 : Ptr(Ptr
), NumItemsInBucketLeft(0), NumEntriesLeft(NumEntries
) {}
454 : Ptr(nullptr), NumItemsInBucketLeft(0), NumEntriesLeft(0) {}
456 friend bool operator==(const iterator_base
&X
, const iterator_base
&Y
) {
457 return X
.NumEntriesLeft
== Y
.NumEntriesLeft
;
459 friend bool operator!=(const iterator_base
&X
, const iterator_base
&Y
) {
460 return X
.NumEntriesLeft
!= Y
.NumEntriesLeft
;
463 /// Move to the next item.
465 using namespace llvm::support
;
466 if (!NumItemsInBucketLeft
) {
467 // 'Items' starts with a 16-bit unsigned integer representing the
468 // number of items in this bucket.
469 NumItemsInBucketLeft
=
470 endian::readNext
<uint16_t, little
, unaligned
>(Ptr
);
472 Ptr
+= sizeof(hash_value_type
); // Skip the hash.
473 // Determine the length of the key and the data.
474 const std::pair
<offset_type
, offset_type
> &L
=
475 Info::ReadKeyDataLength(Ptr
);
476 Ptr
+= L
.first
+ L
.second
;
477 assert(NumItemsInBucketLeft
);
478 --NumItemsInBucketLeft
;
479 assert(NumEntriesLeft
);
483 /// Get the start of the item as written by the trait (after the hash and
484 /// immediately before the key and value length).
485 const unsigned char *getItem() const {
486 return Ptr
+ (NumItemsInBucketLeft
? 0 : 2) + sizeof(hash_value_type
);
491 OnDiskIterableChainedHashTable(offset_type NumBuckets
, offset_type NumEntries
,
492 const unsigned char *Buckets
,
493 const unsigned char *Payload
,
494 const unsigned char *Base
,
495 const Info
&InfoObj
= Info())
496 : base_type(NumBuckets
, NumEntries
, Buckets
, Base
, InfoObj
),
499 /// Iterates over all of the keys in the table.
500 class key_iterator
: public iterator_base
{
504 typedef external_key_type value_type
;
506 key_iterator(const unsigned char *const Ptr
, offset_type NumEntries
,
508 : iterator_base(Ptr
, NumEntries
), InfoObj(InfoObj
) {}
509 key_iterator() : iterator_base(), InfoObj() {}
511 key_iterator
&operator++() {
515 key_iterator
operator++(int) { // Postincrement
516 key_iterator tmp
= *this;
521 internal_key_type
getInternalKey() const {
522 auto *LocalPtr
= this->getItem();
524 // Determine the length of the key and the data.
525 auto L
= Info::ReadKeyDataLength(LocalPtr
);
528 return InfoObj
->ReadKey(LocalPtr
, L
.first
);
531 value_type
operator*() const {
532 return InfoObj
->GetExternalKey(getInternalKey());
536 key_iterator
key_begin() {
537 return key_iterator(Payload
, this->getNumEntries(), &this->getInfoObj());
539 key_iterator
key_end() { return key_iterator(); }
541 iterator_range
<key_iterator
> keys() {
542 return make_range(key_begin(), key_end());
545 /// Iterates over all the entries in the table, returning the data.
546 class data_iterator
: public iterator_base
{
550 typedef data_type value_type
;
552 data_iterator(const unsigned char *const Ptr
, offset_type NumEntries
,
554 : iterator_base(Ptr
, NumEntries
), InfoObj(InfoObj
) {}
555 data_iterator() : iterator_base(), InfoObj() {}
557 data_iterator
&operator++() { // Preincrement
561 data_iterator
operator++(int) { // Postincrement
562 data_iterator tmp
= *this;
567 value_type
operator*() const {
568 auto *LocalPtr
= this->getItem();
570 // Determine the length of the key and the data.
571 auto L
= Info::ReadKeyDataLength(LocalPtr
);
574 const internal_key_type
&Key
= InfoObj
->ReadKey(LocalPtr
, L
.first
);
575 return InfoObj
->ReadData(Key
, LocalPtr
+ L
.first
, L
.second
);
579 data_iterator
data_begin() {
580 return data_iterator(Payload
, this->getNumEntries(), &this->getInfoObj());
582 data_iterator
data_end() { return data_iterator(); }
584 iterator_range
<data_iterator
> data() {
585 return make_range(data_begin(), data_end());
588 /// Create the hash table.
590 /// \param Buckets is the beginning of the hash table itself, which follows
591 /// the payload of entire structure. This is the value returned by
592 /// OnDiskHashTableGenerator::Emit.
594 /// \param Payload is the beginning of the data contained in the table. This
595 /// is Base plus any padding or header data that was stored, ie, the offset
596 /// that the stream was at when calling Emit.
598 /// \param Base is the point from which all offsets into the structure are
599 /// based. This is offset 0 in the stream that was used when Emitting the
601 static OnDiskIterableChainedHashTable
*
602 Create(const unsigned char *Buckets
, const unsigned char *const Payload
,
603 const unsigned char *const Base
, const Info
&InfoObj
= Info()) {
604 assert(Buckets
> Base
);
605 auto NumBucketsAndEntries
=
606 OnDiskIterableChainedHashTable
<Info
>::readNumBucketsAndEntries(Buckets
);
607 return new OnDiskIterableChainedHashTable
<Info
>(
608 NumBucketsAndEntries
.first
, NumBucketsAndEntries
.second
,
609 Buckets
, Payload
, Base
, InfoObj
);
613 } // end namespace llvm