File: HashMappedTrieTest.cpp

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (337 lines) | stat: -rw-r--r-- 12,074 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
//===- HashMappedTrieTest.cpp ---------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/CAS/HashMappedTrie.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Support/Endian.h"
#include "llvm/Support/SHA1.h"
#include "gtest/gtest.h"

using namespace llvm;
using namespace llvm::cas;

static StringRef takeNextLine(StringRef &Lines) {
  size_t Newline = Lines.find('\n');
  StringRef Line = Lines.take_front(Newline);
  Lines = Lines.drop_front(Newline + 1);
  return Line;
}

namespace {

TEST(HashMappedTrieTest, TrieStructure) {
  using NumType = uint64_t;
  using HashType = std::array<uint8_t, sizeof(NumType)>;
  using TrieType = ThreadSafeHashMappedTrie<NumType, sizeof(HashType)>;
  NumType Numbers[] = {
      // Three numbers that will nest deeply to test (1) sinking subtries and
      // (2) deep, non-trivial hints.
      std::numeric_limits<NumType>::max(),
      std::numeric_limits<NumType>::max() - 2u,
      std::numeric_limits<NumType>::max() - 3u,
      // One number to stay at the top-level.
      0x37,
  };

  // Use the number itself as hash to test the pathological case.
  auto hash = [](NumType Num) {
    NumType HashN = llvm::support::endian::byte_swap(Num, llvm::support::big);
    HashType Hash;
    memcpy(&Hash[0], &HashN, sizeof(HashType));
    return Hash;
  };

  // Use root and subtrie sizes of 1 so this gets sunk quite deep.
  TrieType Trie(1, 1);
  for (NumType N : Numbers) {
    // Lookup first to exercise hint code for deep tries.
    TrieType::pointer Lookup = Trie.find(hash(N));
    EXPECT_FALSE(Lookup);

    Trie.insert(Lookup, TrieType::value_type(hash(N), N));
  }
  for (NumType N : Numbers) {
    TrieType::pointer Lookup = Trie.find(hash(N));
    EXPECT_TRUE(Lookup);
    if (!Lookup)
      continue;
    EXPECT_EQ(hash(N), Lookup->Hash);
    EXPECT_EQ(N, Lookup->Data);

    // Confirm a subsequent insertion fails to overwrite by trying to insert a
    // bad value.
    EXPECT_EQ(N,
              Trie.insert(Lookup, TrieType::value_type(hash(N), N - 1))->Data);
  }

  // Dump out the trie so we can confirm the structure is correct. Each subtrie
  // should have 2 slots. The root's index=0 should have the content for
  // 0x37 directly, and index=1 should be a linked-list of subtries, finally
  // ending with content for (max-2) and (max-3).
  //
  // Note: This structure is not exhaustive (too expensive to update tests),
  // but it does test that the dump format is somewhat readable and that the
  // basic structure is correct.
  //
  // Note: This test requires that the trie reads bytes starting from index 0
  // of the array of uint8_t, and then reads each byte's bits from high to low.
  SmallString<128> Dump;
  {
    raw_svector_ostream OS(Dump);
    Trie.print(OS);
  }

  // Check the header.
  StringRef DumpRef = Dump;
  ASSERT_EQ("root-bits=1 subtrie-bits=1", takeNextLine(DumpRef));

  // Check the root trie.
  ASSERT_EQ("root num-slots=2", takeNextLine(DumpRef));
  ASSERT_EQ("- index=0 content=[0000]000000000000037", takeNextLine(DumpRef));
  ASSERT_EQ("- index=1 subtrie=[1]", takeNextLine(DumpRef));
  ASSERT_EQ("subtrie=[1] num-slots=2", takeNextLine(DumpRef));

  // Check the last subtrie.
  size_t LastSubtrie = DumpRef.rfind("\nsubtrie=");
  ASSERT_NE(StringRef::npos, LastSubtrie);
  DumpRef = DumpRef.substr(LastSubtrie + 1);
  ASSERT_EQ("subtrie=fffffffffffffff[110] num-slots=2", takeNextLine(DumpRef));
  ASSERT_EQ("- index=0 content=fffffffffffffff[1100]", takeNextLine(DumpRef));
  ASSERT_EQ("- index=1 content=fffffffffffffff[1101]", takeNextLine(DumpRef));
  ASSERT_TRUE(DumpRef.empty());
}

TEST(HashMappedTrieTest, TrieStructureSmallFinalSubtrie) {
  using NumType = uint64_t;
  using HashType = std::array<uint8_t, sizeof(NumType)>;
  using TrieType = ThreadSafeHashMappedTrie<NumType, sizeof(HashType)>;
  NumType Numbers[] = {
      // Three numbers that will nest deeply to test (1) sinking subtries and
      // (2) deep, non-trivial hints.
      std::numeric_limits<NumType>::max(),
      std::numeric_limits<NumType>::max() - 2u,
      std::numeric_limits<NumType>::max() - 3u,
      // One number to stay at the top-level.
      0x37,
  };

  // Use the number itself as hash to test the pathological case.
  auto hash = [](NumType Num) {
    NumType HashN = llvm::support::endian::byte_swap(Num, llvm::support::big);
    HashType Hash;
    memcpy(&Hash[0], &HashN, sizeof(HashType));
    return Hash;
  };

  // Use subtrie size of 7 to avoid hitting 64 evenly, making the final subtrie
  // small.
  TrieType Trie(8, 5);
  for (NumType N : Numbers) {
    // Lookup first to exercise hint code for deep tries.
    TrieType::pointer Lookup = Trie.find(hash(N));
    EXPECT_FALSE(Lookup);

    Trie.insert(Lookup, TrieType::value_type(hash(N), N));
  }
  for (NumType N : Numbers) {
    TrieType::pointer Lookup = Trie.find(hash(N));
    EXPECT_TRUE(Lookup);
    if (!Lookup)
      continue;
    EXPECT_EQ(hash(N), Lookup->Hash);
    EXPECT_EQ(N, Lookup->Data);

    // Confirm a subsequent insertion fails to overwrite by trying to insert a
    // bad value.
    EXPECT_EQ(N,
              Trie.insert(Lookup, TrieType::value_type(hash(N), N - 1))->Data);
  }

  // Dump out the trie so we can confirm the structure is correct. The root
  // should have 2^8=256 slots, most subtries should have 2^5=32 slots, and the
  // deepest subtrie should have 2^1=2 slots (since (64-8)mod(5)=1).
  // should have 2 slots. The root's index=0 should have the content for
  // 0x37 directly, and index=1 should be a linked-list of subtries, finally
  // ending with content for (max-2) and (max-3).
  //
  // Note: This structure is not exhaustive (too expensive to update tests),
  // but it does test that the dump format is somewhat readable and that the
  // basic structure is correct.
  //
  // Note: This test requires that the trie reads bytes starting from index 0
  // of the array of uint8_t, and then reads each byte's bits from high to low.
  SmallString<128> Dump;
  {
    raw_svector_ostream OS(Dump);
    Trie.print(OS);
  }

  // Check the header.
  StringRef DumpRef = Dump;
  ASSERT_EQ("root-bits=8 subtrie-bits=5", takeNextLine(DumpRef));

  // Check the root trie.
  ASSERT_EQ("root num-slots=256", takeNextLine(DumpRef));
  ASSERT_EQ("- index=0 content=[00000000]00000000000037",
            takeNextLine(DumpRef));
  ASSERT_EQ("- index=255 subtrie=ff", takeNextLine(DumpRef));
  ASSERT_EQ("subtrie=ff num-slots=32", takeNextLine(DumpRef));

  // Check the last subtrie.
  size_t LastSubtrie = DumpRef.rfind("\nsubtrie=");
  ASSERT_NE(StringRef::npos, LastSubtrie);
  DumpRef = DumpRef.substr(LastSubtrie + 1);
  ASSERT_EQ("subtrie=fffffffffffffff[110] num-slots=2", takeNextLine(DumpRef));
  ASSERT_EQ("- index=0 content=fffffffffffffff[1100]", takeNextLine(DumpRef));
  ASSERT_EQ("- index=1 content=fffffffffffffff[1101]", takeNextLine(DumpRef));
  ASSERT_TRUE(DumpRef.empty());
}

TEST(HashMappedTrieTest, TrieDestructionLoop) {
  using NumT = uint64_t;
  struct NumWithDestructorT {
    NumT Num;
    operator NumT() const { return Num; }
    ~NumWithDestructorT() {}
  };

  using HashT = std::array<uint8_t, sizeof(NumT)>;
  using TrieT = ThreadSafeHashMappedTrie<NumT, sizeof(HashT)>;
  using TrieWithDestructorT =
      ThreadSafeHashMappedTrie<NumWithDestructorT, sizeof(HashT)>;

  // Use the number itself in big-endian order as the hash.
  auto hash = [](NumT Num) {
    NumT HashN = llvm::support::endian::byte_swap(Num, llvm::support::big);
    HashT Hash;
    memcpy(&Hash[0], &HashN, sizeof(HashT));
    return Hash;
  };

  // Use optionals to control when destructors are called.
  std::optional<TrieT> Trie;
  std::optional<TrieWithDestructorT> TrieWithDestructor;

  // Limit the tries to 2 slots (1 bit) to generate subtries at a higher rate.
  Trie.emplace(/*NumRootBits=*/1, /*NumSubtrieBits=*/1);
  TrieWithDestructor.emplace(/*NumRootBits=*/1, /*NumSubtrieBits=*/1);

  // Fill them up. Pick a MaxN high enough to cause a stack overflow in debug
  // builds.
  static constexpr uint64_t MaxN = 100000;
  for (uint64_t N = 0; N != MaxN; ++N) {
    HashT Hash = hash(N);
    Trie->insert(TrieT::pointer(), TrieT::value_type(Hash, N));
    TrieWithDestructor->insert(
        TrieWithDestructorT::pointer(),
        TrieWithDestructorT::value_type(Hash, NumWithDestructorT{N}));
  }

  // Destroy tries. If destruction is recursive and MaxN is high enough, these
  // will both fail.
  Trie.reset();
  TrieWithDestructor.reset();
}

namespace {
using HasherT = SHA1;
using HashType = decltype(HasherT::hash(std::declval<ArrayRef<uint8_t> &>()));
template <class T>
class ThreadSafeHashMappedTrieSet
    : ThreadSafeHashMappedTrie<T, sizeof(HashType)> {
public:
  using TrieType =
      typename ThreadSafeHashMappedTrieSet::ThreadSafeHashMappedTrie;
  using LazyValueConstructor = typename ThreadSafeHashMappedTrieSet::
      ThreadSafeHashMappedTrie::LazyValueConstructor;

  class pointer : public TrieType::const_pointer {
    using BaseType = typename TrieType::const_pointer;

  public:
    const T &operator*() const {
      return TrieType::const_pointer::operator*().Data;
    }
    const T *operator->() const { return &operator*(); }

    pointer() = default;
    pointer(pointer &&) = default;
    pointer(const pointer &) = default;
    pointer &operator=(pointer &&) = default;
    pointer &operator=(const pointer &) = default;

  private:
    pointer(BaseType Result) : BaseType(Result) {}
    friend class ThreadSafeHashMappedTrieSet;
  };

  ThreadSafeHashMappedTrieSet(
      std::optional<size_t> NumRootBits = std::nullopt,
      std::optional<size_t> NumSubtrieBits = std::nullopt)
      : TrieType(NumRootBits, NumSubtrieBits) {}

  static HashType hash(const T &V) {
    return HasherT::hash(ArrayRef<uint8_t>(
        reinterpret_cast<const uint8_t *>(V.data()), V.size()));
  }
  pointer find(const T &Value) const {
    return pointer(TrieType::find(hash(Value)));
  }
  pointer insert(pointer Hint, T &&Value) {
    return pointer(TrieType::insertLazy(
        typename pointer::BaseType(Hint),
        [&](LazyValueConstructor C) { C(std::move(Value)); }));
  }
  pointer insert(pointer Hint, const T &Value) {
    return pointer(
        TrieType::insertLazy(typename pointer::BaseType(Hint), hash(Value),
                             [&](LazyValueConstructor C) { C(Value); }));
  }
  pointer insert(T &&Value) { return insert(pointer(), Value); }
  pointer insert(const T &Value) { return insert(pointer(), Value); }
};
} // end anonymous namespace

TEST(HashMappedTrieTest, Strings) {
  for (unsigned RootBits : {2, 3, 6, 10}) {
    for (unsigned SubtrieBits : {2, 3, 4}) {
      ThreadSafeHashMappedTrieSet<std::string> Strings(RootBits, SubtrieBits);
      const std::string &A1 = *Strings.insert("A");
      EXPECT_EQ(&A1, &*Strings.insert("A"));
      std::string A2 = A1;
      EXPECT_EQ(&A1, &*Strings.insert(A2));

      const std::string &B1 = *Strings.insert("B");
      EXPECT_EQ(&B1, &*Strings.insert(B1));
      std::string B2 = B1;
      EXPECT_EQ(&B1, &*Strings.insert(B2));

      for (int I = 0, E = 1000; I != E; ++I) {
        ThreadSafeHashMappedTrieSet<std::string>::pointer Lookup;
        std::string S = Twine(I).str();
        if (I & 1)
          Lookup = Strings.find(S);
        const std::string &S1 = *Strings.insert(Lookup, S);
        EXPECT_EQ(&S1, &*Strings.insert(S1));
        std::string S2 = S1;
        EXPECT_EQ(&S1, &*Strings.insert(S2));
      }
      for (int I = 0, E = 1000; I != E; ++I) {
        std::string S = Twine(I).str();
        ThreadSafeHashMappedTrieSet<std::string>::pointer Lookup =
            Strings.find(S);
        EXPECT_TRUE(Lookup);
        if (!Lookup)
          continue;
        EXPECT_EQ(S, *Lookup);
      }
    }
  }
}

} // namespace