blob: 0495ee9616689e17c6efce7b5a4898123638ce96 (
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
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
|
//===- CXString.h - Routines for manipulating CXStrings -------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines routines for manipulating CXStrings.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_CXSTRING_H
#define LLVM_CLANG_CXSTRING_H
#include "clang-c/Index.h"
#include "clang/Basic/LLVM.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/StringRef.h"
#include <vector>
namespace clang {
namespace cxstring {
struct CXStringBuf;
/// \brief Create a CXString object for an empty "" string.
CXString createEmpty();
/// \brief Create a CXString object for an NULL string.
CXString createNull();
/// \brief Create a CXString object from a C string.
CXString createCXString(const char *String, bool DupString = false);
/// \brief Create a CXString object from a StringRef.
CXString createCXString(StringRef String, bool DupString = true);
/// \brief Create a CXString object that is backed by a string buffer.
CXString createCXString(CXStringBuf *buf);
/// \brief A string pool used for fast allocation/deallocation of strings.
class CXStringPool {
public:
~CXStringPool();
CXStringBuf *getCXStringBuf(CXTranslationUnit TU);
private:
std::vector<CXStringBuf *> Pool;
friend struct CXStringBuf;
};
struct CXStringBuf {
SmallString<128> Data;
CXTranslationUnit TU;
CXStringBuf(CXTranslationUnit TU) : TU(TU) {}
/// \brief Return this buffer to the pool.
void dispose();
};
CXStringBuf *getCXStringBuf(CXTranslationUnit TU);
/// \brief Returns true if the CXString data is managed by a pool.
bool isManagedByPool(CXString str);
}
}
#endif
|