2015-06-13 14:49:52 +02:00
|
|
|
//===-- StringSaver.cpp ---------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// 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
|
2015-06-13 14:49:52 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/StringSaver.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2016-10-05 03:32:41 +02:00
|
|
|
StringRef StringSaver::save(StringRef S) {
|
2015-06-13 14:49:52 +02:00
|
|
|
char *P = Alloc.Allocate<char>(S.size() + 1);
|
2018-08-20 15:12:54 +02:00
|
|
|
if (!S.empty())
|
|
|
|
memcpy(P, S.data(), S.size());
|
2015-06-13 14:49:52 +02:00
|
|
|
P[S.size()] = '\0';
|
2016-10-05 03:32:41 +02:00
|
|
|
return StringRef(P, S.size());
|
2015-06-13 14:49:52 +02:00
|
|
|
}
|
2018-07-23 12:44:40 +02:00
|
|
|
|
|
|
|
StringRef UniqueStringSaver::save(StringRef S) {
|
2020-05-15 04:16:45 +02:00
|
|
|
auto R = Unique.insert(S);
|
|
|
|
if (R.second) // cache miss, need to actually save the string
|
|
|
|
*R.first = Strings.save(S); // safe replacement with equal value
|
|
|
|
return *R.first;
|
2018-07-23 12:44:40 +02:00
|
|
|
}
|