LLVM 22.0.0git
MemoryBuffer.h
Go to the documentation of this file.
1//===--- MemoryBuffer.h - Memory Buffer Interface ---------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the MemoryBuffer interface.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_SUPPORT_MEMORYBUFFER_H
14#define LLVM_SUPPORT_MEMORYBUFFER_H
15
16#include "llvm-c/Types.h"
17#include "llvm/ADT/ArrayRef.h"
18#include "llvm/ADT/StringRef.h"
19#include "llvm/ADT/Twine.h"
25#include <cstddef>
26#include <cstdint>
27#include <memory>
28
29namespace llvm {
30namespace sys {
31namespace fs {
32// Duplicated from FileSystem.h to avoid a dependency.
33#if defined(_WIN32)
34// A Win32 HANDLE is a typedef of void*
35using file_t = void *;
36#else
37using file_t = int;
38#endif
39} // namespace fs
40} // namespace sys
41
42/// This interface provides simple read-only access to a block of memory, and
43/// provides simple methods for reading files and standard input into a memory
44/// buffer. In addition to basic access to the characters in the file, this
45/// interface guarantees you can read one character past the end of the file,
46/// and that this character will read as '\0'.
47///
48/// The '\0' guarantee is needed to support an optimization -- it's intended to
49/// be more efficient for clients which are reading all the data to stop
50/// reading when they encounter a '\0' than to continually check the file
51/// position to see if it has reached the end of the file.
53 const char *BufferStart; // Start of the buffer.
54 const char *BufferEnd; // End of the buffer.
55
56protected:
57 MemoryBuffer() = default;
58
59 void init(const char *BufStart, const char *BufEnd,
60 bool RequiresNullTerminator);
61
62public:
63 MemoryBuffer(const MemoryBuffer &) = delete;
65 virtual ~MemoryBuffer();
66
67 const char *getBufferStart() const { return BufferStart; }
68 const char *getBufferEnd() const { return BufferEnd; }
69 size_t getBufferSize() const { return BufferEnd-BufferStart; }
70
72 return StringRef(BufferStart, getBufferSize());
73 }
74
75 /// Return an identifier for this buffer, typically the filename it was read
76 /// from.
77 virtual StringRef getBufferIdentifier() const { return "Unknown buffer"; }
78
79 /// For read-only MemoryBuffer_MMap, mark the buffer as unused in the near
80 /// future and the kernel can free resources associated with it. Further
81 /// access is supported but may be expensive. This calls
82 /// madvise(MADV_DONTNEED) on read-only file mappings on *NIX systems. This
83 /// function should not be called on a writable buffer.
84 virtual void dontNeedIfMmap() {}
85
86 /// Mark the buffer as to-be-used in a near future. This shall trigger OS
87 /// prefetching from the storage device and into memory, if possible.
88 /// This should be use purely as an read optimization.
89 virtual void willNeedIfMmap() {}
90
91 /// Open the specified file as a MemoryBuffer, returning a new MemoryBuffer
92 /// if successful, otherwise returning null.
93 ///
94 /// \param IsText Set to true to indicate that the file should be read in
95 /// text mode.
96 ///
97 /// \param IsVolatile Set to true to indicate that the contents of the file
98 /// can change outside the user's control, e.g. when libclang tries to parse
99 /// while the user is editing/updating the file or if the file is on an NFS.
100 ///
101 /// \param Alignment Set to indicate that the buffer should be aligned to at
102 /// least the specified alignment.
104 getFile(const Twine &Filename, bool IsText = false,
105 bool RequiresNullTerminator = true, bool IsVolatile = false,
106 std::optional<Align> Alignment = std::nullopt);
107
108 /// Read all of the specified file into a MemoryBuffer as a stream
109 /// (i.e. until EOF reached). This is useful for special files that
110 /// look like a regular file but have 0 size (e.g. /proc/cpuinfo on Linux).
112 getFileAsStream(const Twine &Filename);
113
114 /// Given an already-open file descriptor, map some slice of it into a
115 /// MemoryBuffer. The slice is specified by an \p Offset and \p MapSize.
116 /// Since this is in the middle of a file, the buffer is not null terminated.
118 getOpenFileSlice(sys::fs::file_t FD, const Twine &Filename, uint64_t MapSize,
119 int64_t Offset, bool IsVolatile = false,
120 std::optional<Align> Alignment = std::nullopt);
121
122 /// Given an already-open file descriptor, read the file and return a
123 /// MemoryBuffer.
124 ///
125 /// \param IsVolatile Set to true to indicate that the contents of the file
126 /// can change outside the user's control, e.g. when libclang tries to parse
127 /// while the user is editing/updating the file or if the file is on an NFS.
128 ///
129 /// \param Alignment Set to indicate that the buffer should be aligned to at
130 /// least the specified alignment.
132 getOpenFile(sys::fs::file_t FD, const Twine &Filename, uint64_t FileSize,
133 bool RequiresNullTerminator = true, bool IsVolatile = false,
134 std::optional<Align> Alignment = std::nullopt);
135
136 /// Open the specified memory range as a MemoryBuffer. Note that InputData
137 /// must be null terminated if RequiresNullTerminator is true.
138 static std::unique_ptr<MemoryBuffer>
139 getMemBuffer(StringRef InputData, StringRef BufferName = "",
140 bool RequiresNullTerminator = true);
141
142 static std::unique_ptr<MemoryBuffer>
143 getMemBuffer(MemoryBufferRef Ref, bool RequiresNullTerminator = true);
144
145 /// Open the specified memory range as a MemoryBuffer, copying the contents
146 /// and taking ownership of it. InputData does not have to be null terminated.
147 static std::unique_ptr<MemoryBuffer>
148 getMemBufferCopy(StringRef InputData, const Twine &BufferName = "");
149
150 /// Read all of stdin into a file buffer, and return it.
151 static ErrorOr<std::unique_ptr<MemoryBuffer>> getSTDIN();
152
153 /// Open the specified file as a MemoryBuffer, or open stdin if the Filename
154 /// is "-".
156 getFileOrSTDIN(const Twine &Filename, bool IsText = false,
157 bool RequiresNullTerminator = true,
158 std::optional<Align> Alignment = std::nullopt);
159
160 /// Map a subrange of the specified file as a MemoryBuffer.
162 getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset,
163 bool IsVolatile = false,
164 std::optional<Align> Alignment = std::nullopt);
165
166 //===--------------------------------------------------------------------===//
167 // Provided for performance analysis.
168 //===--------------------------------------------------------------------===//
169
170 /// The kind of memory backing used to support the MemoryBuffer.
175
176 /// Return information on the memory mechanism used to support the
177 /// MemoryBuffer.
178 virtual BufferKind getBufferKind() const = 0;
179
181};
182
183/// This class is an extension of MemoryBuffer, which allows copy-on-write
184/// access to the underlying contents. It only supports creation methods that
185/// are guaranteed to produce a writable buffer. For example, mapping a file
186/// read-only is not supported.
188protected:
190
191public:
195
196 // const_cast is well-defined here, because the underlying buffer is
197 // guaranteed to have been initialized with a mutable buffer.
199 return const_cast<char *>(MemoryBuffer::getBufferStart());
200 }
201 char *getBufferEnd() {
202 return const_cast<char *>(MemoryBuffer::getBufferEnd());
203 }
207
209 getFile(const Twine &Filename, bool IsVolatile = false,
210 std::optional<Align> Alignment = std::nullopt);
211
212 /// Map a subrange of the specified file as a WritableMemoryBuffer.
214 getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset,
215 bool IsVolatile = false,
216 std::optional<Align> Alignment = std::nullopt);
217
218 /// Allocate a new MemoryBuffer of the specified size that is not initialized.
219 /// Note that the caller should initialize the memory allocated by this
220 /// method. The memory is owned by the MemoryBuffer object.
221 ///
222 /// \param Alignment Set to indicate that the buffer should be aligned to at
223 /// least the specified alignment.
224 LLVM_ABI static std::unique_ptr<WritableMemoryBuffer>
225 getNewUninitMemBuffer(size_t Size, const Twine &BufferName = "",
226 std::optional<Align> Alignment = std::nullopt);
227
228 /// Allocate a new zero-initialized MemoryBuffer of the specified size. Note
229 /// that the caller need not initialize the memory allocated by this method.
230 /// The memory is owned by the MemoryBuffer object.
231 LLVM_ABI static std::unique_ptr<WritableMemoryBuffer>
232 getNewMemBuffer(size_t Size, const Twine &BufferName = "");
233
234private:
235 // Hide these base class factory function so one can't write
236 // WritableMemoryBuffer::getXXX()
237 // and be surprised that he got a read-only Buffer.
245};
246
247/// This class is an extension of MemoryBuffer, which allows write access to
248/// the underlying contents and committing those changes to the original source.
249/// It only supports creation methods that are guaranteed to produce a writable
250/// buffer. For example, mapping a file read-only is not supported.
252protected:
254
255public:
259
260 // const_cast is well-defined here, because the underlying buffer is
261 // guaranteed to have been initialized with a mutable buffer.
263 return const_cast<char *>(MemoryBuffer::getBufferStart());
264 }
265 char *getBufferEnd() {
266 return const_cast<char *>(MemoryBuffer::getBufferEnd());
267 }
271
273 getFile(const Twine &Filename, int64_t FileSize = -1);
274
275 /// Map a subrange of the specified file as a ReadWriteMemoryBuffer.
277 getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset);
278
279private:
280 // Hide these base class factory function so one can't write
281 // WritableMemoryBuffer::getXXX()
282 // and be surprised that he got a read-only Buffer.
290};
291
292// Create wrappers for C Binding types (see CBindingWrapping.h).
294
295} // end namespace llvm
296
297#endif // LLVM_SUPPORT_MEMORYBUFFER_H
#define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref)
#define LLVM_ABI
Definition Compiler.h:213
Provides ErrorOr<T> smart pointer.
Represents either an error or a value T.
Definition ErrorOr.h:56
static ErrorOr< std::unique_ptr< MemoryBuffer > > getOpenFile(sys::fs::file_t FD, const Twine &Filename, uint64_t FileSize, bool RequiresNullTerminator=true, bool IsVolatile=false, std::optional< Align > Alignment=std::nullopt)
Given an already-open file descriptor, read the file and return a MemoryBuffer.
static std::unique_ptr< MemoryBuffer > getMemBuffer(StringRef InputData, StringRef BufferName="", bool RequiresNullTerminator=true)
Open the specified memory range as a MemoryBuffer.
BufferKind
The kind of memory backing used to support the MemoryBuffer.
virtual StringRef getBufferIdentifier() const
Return an identifier for this buffer, typically the filename it was read from.
size_t getBufferSize() const
static std::unique_ptr< MemoryBuffer > getMemBufferCopy(StringRef InputData, const Twine &BufferName="")
Open the specified memory range as a MemoryBuffer, copying the contents and taking ownership of it.
MemoryBuffer(const MemoryBuffer &)=delete
static ErrorOr< std::unique_ptr< MemoryBuffer > > getOpenFileSlice(sys::fs::file_t FD, const Twine &Filename, uint64_t MapSize, int64_t Offset, bool IsVolatile=false, std::optional< Align > Alignment=std::nullopt)
Given an already-open file descriptor, map some slice of it into a MemoryBuffer.
virtual BufferKind getBufferKind() const =0
Return information on the memory mechanism used to support the MemoryBuffer.
void init(const char *BufStart, const char *BufEnd, bool RequiresNullTerminator)
init - Initialize this MemoryBuffer as a reference to externally allocated memory,...
StringRef getBuffer() const
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileAsStream(const Twine &Filename)
Read all of the specified file into a MemoryBuffer as a stream (i.e.
virtual void dontNeedIfMmap()
For read-only MemoryBuffer_MMap, mark the buffer as unused in the near future and the kernel can free...
MemoryBufferRef getMemBufferRef() const
virtual void willNeedIfMmap()
Mark the buffer as to-be-used in a near future.
virtual ~MemoryBuffer()
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileOrSTDIN(const Twine &Filename, bool IsText=false, bool RequiresNullTerminator=true, std::optional< Align > Alignment=std::nullopt)
Open the specified file as a MemoryBuffer, or open stdin if the Filename is "-".
MemoryBuffer & operator=(const MemoryBuffer &)=delete
MemoryBuffer()=default
const char * getBufferEnd() const
static ErrorOr< std::unique_ptr< MemoryBuffer > > getSTDIN()
Read all of stdin into a file buffer, and return it.
const char * getBufferStart() const
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition ArrayRef.h:298
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
MutableArrayRef< char > getBuffer()
static LLVM_ABI std::unique_ptr< WritableMemoryBuffer > getNewMemBuffer(size_t Size, const Twine &BufferName="")
Allocate a new zero-initialized MemoryBuffer of the specified size.
static LLVM_ABI ErrorOr< std::unique_ptr< WritableMemoryBuffer > > getFile(const Twine &Filename, bool IsVolatile=false, std::optional< Align > Alignment=std::nullopt)
static LLVM_ABI std::unique_ptr< WritableMemoryBuffer > getNewUninitMemBuffer(size_t Size, const Twine &BufferName="", std::optional< Align > Alignment=std::nullopt)
Allocate a new MemoryBuffer of the specified size that is not initialized.
static LLVM_ABI ErrorOr< std::unique_ptr< WritableMemoryBuffer > > getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset, bool IsVolatile=false, std::optional< Align > Alignment=std::nullopt)
Map a subrange of the specified file as a WritableMemoryBuffer.
MutableArrayRef< char > getBuffer()
static LLVM_ABI ErrorOr< std::unique_ptr< WriteThroughMemoryBuffer > > getFile(const Twine &Filename, int64_t FileSize=-1)
static LLVM_ABI ErrorOr< std::unique_ptr< WriteThroughMemoryBuffer > > getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset)
Map a subrange of the specified file as a ReadWriteMemoryBuffer.
struct LLVMOpaqueMemoryBuffer * LLVMMemoryBufferRef
LLVM uses a polymorphic type hierarchy which C cannot represent, therefore parameters must be passed ...
Definition Types.h:48
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
@ Offset
Definition DWP.cpp:532
@ Ref
The access may reference the value stored in memory.
Definition ModRef.h:32