2012-05-04 22:18:50 +02:00
|
|
|
//===-- ManagedStringPool.h - Managed String Pool ---------------*- C++ -*-===//
|
|
|
|
//
|
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
|
2012-05-04 22:18:50 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The strings allocated from a managed string pool are owned by the string
|
|
|
|
// pool and will be deleted together with the managed string pool.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 18:26:38 +02:00
|
|
|
#ifndef LLVM_LIB_TARGET_NVPTX_MANAGEDSTRINGPOOL_H
|
|
|
|
#define LLVM_LIB_TARGET_NVPTX_MANAGEDSTRINGPOOL_H
|
2012-05-04 22:18:50 +02:00
|
|
|
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// ManagedStringPool - The strings allocated from a managed string pool are
|
|
|
|
/// owned by the string pool and will be deleted together with the managed
|
|
|
|
/// string pool.
|
|
|
|
class ManagedStringPool {
|
|
|
|
SmallVector<std::string *, 8> Pool;
|
|
|
|
|
|
|
|
public:
|
2017-01-09 23:16:51 +01:00
|
|
|
ManagedStringPool() = default;
|
|
|
|
|
2012-05-04 22:18:50 +02:00
|
|
|
~ManagedStringPool() {
|
2013-07-04 03:31:24 +02:00
|
|
|
SmallVectorImpl<std::string *>::iterator Current = Pool.begin();
|
2012-05-04 22:18:50 +02:00
|
|
|
while (Current != Pool.end()) {
|
|
|
|
delete *Current;
|
2019-11-07 17:43:47 +01:00
|
|
|
++Current;
|
2012-05-04 22:18:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string *getManagedString(const char *S) {
|
|
|
|
std::string *Str = new std::string(S);
|
|
|
|
Pool.push_back(Str);
|
|
|
|
return Str;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-09 23:16:51 +01:00
|
|
|
} // end namespace llvm
|
2012-05-04 22:18:50 +02:00
|
|
|
|
2017-01-09 23:16:51 +01:00
|
|
|
#endif // LLVM_LIB_TARGET_NVPTX_MANAGEDSTRINGPOOL_H
|