mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
edf029713d
Summary: Clarify contract of StringSaver (it null-terminates, callers rely on it). Reviewers: hokein Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D49596 llvm-svn: 337677
27 lines
834 B
C++
27 lines
834 B
C++
//===-- StringSaver.cpp ---------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Support/StringSaver.h"
|
|
|
|
using namespace llvm;
|
|
|
|
StringRef StringSaver::save(StringRef S) {
|
|
char *P = Alloc.Allocate<char>(S.size() + 1);
|
|
memcpy(P, S.data(), S.size());
|
|
P[S.size()] = '\0';
|
|
return StringRef(P, S.size());
|
|
}
|
|
|
|
StringRef UniqueStringSaver::save(StringRef S) {
|
|
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;
|
|
}
|