aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/StringPool.cpp
blob: 7d345df14cad2e29607e0723bf6a3f76330f2efa (plain)
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
//===-- StringPool.cpp - Intern'd string pool -----------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This file implements the StringPool class.
//
//===----------------------------------------------------------------------===//

#include "llvm/Support/StringPool.h"
using namespace llvm;

StringPool::StringPool() {}

StringPool::~StringPool() {
  assert(internTable.empty() && "PooledStringPtr leaked!");
}

PooledStringPtr StringPool::intern(StringRef key) {
  auto it = internTable.find(key);
  if (it != internTable.end())
    return PooledStringPtr(&*it);

  MallocAllocator allocator;
  auto *entry = Entry::Create(key, allocator);
  entry->getValue().pool = this;
  internTable.insert(entry);

  return PooledStringPtr(entry);
}