LLVM 24.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"
24#include "llvm/Support/File.h"
26#include <cstddef>
27#include <cstdint>
28#include <memory>
29
30namespace llvm {
31
32/// This interface provides simple read-only access to a block of memory, and
33/// provides simple methods for reading files and standard input into a memory
34/// buffer. In addition to basic access to the characters in the file, this
35/// interface guarantees you can read one character past the end of the file,
36/// and that this character will read as '\0'.
37///
38/// The '\0' guarantee is needed to support an optimization -- it's intended to
39/// be more efficient for clients which are reading all the data to stop
40/// reading when they encounter a '\0' than to continually check the file
41/// position to see if it has reached the end of the file.
43 const char *BufferStart; // Start of the buffer.
44 const char *BufferEnd; // End of the buffer.
45
46protected:
47 MemoryBuffer() = default;
48
49 void init(const char *BufStart, const char *BufEnd,
50 bool RequiresNullTerminator);
51
52public:
53 MemoryBuffer(const MemoryBuffer &) = delete;
55 virtual ~MemoryBuffer();
56
57 const char *getBufferStart() const { return BufferStart; }
58 const char *getBufferEnd() const { return BufferEnd; }
59 size_t getBufferSize() const { return BufferEnd-BufferStart; }
60
62 return StringRef(BufferStart, getBufferSize());
63 }
64
65 /// Return an identifier for this buffer, typically the filename it was read
66 /// from.
67 virtual StringRef getBufferIdentifier() const { return "Unknown buffer"; }
68
69 /// For read-only MemoryBuffer_MMap, mark the buffer as unused in the near
70 /// future and the kernel can free resources associated with it. Further
71 /// access is supported but may be expensive. This calls
72 /// madvise(MADV_DONTNEED) on read-only file mappings on *NIX systems. This
73 /// function should not be called on a writable buffer.
74 virtual void dontNeedIfMmap() {}
75
76 /// Mark the buffer as to-be-used in a near future. This shall trigger OS
77 /// prefetching from the storage device and into memory, if possible.
78 /// This should be use purely as an read optimization.
79 virtual void willNeedIfMmap() {}
80
81 /// For read-only MemoryBuffer_MMap, advise the kernel that accesses will be
82 /// random, disabling readahead. This calls madvise(MADV_RANDOM) on *NIX.
83 /// This function should not be called on a writable buffer.
84 virtual void randomAccessIfMmap() {}
85
86 /// Open the specified file as a MemoryBuffer, returning a new MemoryBuffer
87 /// if successful, otherwise returning null.
88 ///
89 /// \param IsText Set to true to indicate that the file should be read in
90 /// text mode.
91 ///
92 /// \param IsVolatile Set to true to indicate that the contents of the file
93 /// can change outside the user's control, e.g. when libclang tries to parse
94 /// while the user is editing/updating the file or if the file is on an NFS.
95 ///
96 /// \param Alignment Set to indicate that the buffer should be aligned to at
97 /// least the specified alignment.
99 getFile(const Twine &Filename, bool IsText = false,
100 bool RequiresNullTerminator = true, bool IsVolatile = false,
101 std::optional<Align> Alignment = std::nullopt);
102
103 /// Read all of the specified file into a MemoryBuffer as a stream
104 /// (i.e. until EOF reached). This is useful for special files that
105 /// look like a regular file but have 0 size (e.g. /proc/cpuinfo on Linux).
107 getFileAsStream(const Twine &Filename);
108
109 /// Given an already-open file descriptor, map some slice of it into a
110 /// MemoryBuffer. The slice is specified by an \p Offset and \p MapSize.
111 /// Since this is in the middle of a file, the buffer is not null terminated.
113 getOpenFileSlice(sys::fs::file_t FD, const Twine &Filename, uint64_t MapSize,
114 int64_t Offset, bool IsVolatile = false,
115 std::optional<Align> Alignment = std::nullopt);
116
117 /// Given an already-open file descriptor, read the file and return a
118 /// MemoryBuffer.
119 ///
120 /// \param IsVolatile Set to true to indicate that the contents of the file
121 /// can change outside the user's control, e.g. when libclang tries to parse
122 /// while the user is editing/updating the file or if the file is on an NFS.
123 ///
124 /// \param Alignment Set to indicate that the buffer should be aligned to at
125 /// least the specified alignment.
127 getOpenFile(sys::fs::file_t FD, const Twine &Filename, uint64_t FileSize,
128 bool RequiresNullTerminator = true, bool IsVolatile = false,
129 std::optional<Align> Alignment = std::nullopt);
130
131 /// Open the specified memory range as a MemoryBuffer. Note that InputData
132 /// must be null terminated if RequiresNullTerminator is true.
133 static std::unique_ptr<MemoryBuffer>
134 getMemBuffer(StringRef InputData, StringRef BufferName = "",
135 bool RequiresNullTerminator = true);
136
137 static std::unique_ptr<MemoryBuffer>
138 getMemBuffer(MemoryBufferRef Ref, bool RequiresNullTerminator = true);
139
140 /// Open the specified memory range as a MemoryBuffer, copying the contents
141 /// and taking ownership of it. InputData does not have to be null terminated.
142 static std::unique_ptr<MemoryBuffer>
143 getMemBufferCopy(StringRef InputData, const Twine &BufferName = "");
144
145 /// Read all of stdin into a file buffer, and return it.
146 static ErrorOr<std::unique_ptr<MemoryBuffer>> getSTDIN();
147
148 /// Open the specified file as a MemoryBuffer, or open stdin if the Filename
149 /// is "-".
151 getFileOrSTDIN(const Twine &Filename, bool IsText = false,
152 bool RequiresNullTerminator = true,
153 std::optional<Align> Alignment = std::nullopt);
154
155 /// Map a subrange of the specified file as a MemoryBuffer.
157 getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset,
158 bool IsVolatile = false,
159 std::optional<Align> Alignment = std::nullopt);
160
161 //===--------------------------------------------------------------------===//
162 // Provided for performance analysis.
163 //===--------------------------------------------------------------------===//
164
165 /// The kind of memory backing used to support the MemoryBuffer.
170
171 /// Return information on the memory mechanism used to support the
172 /// MemoryBuffer.
173 virtual BufferKind getBufferKind() const = 0;
174
176};
177
178/// This class is an extension of MemoryBuffer, which allows copy-on-write
179/// access to the underlying contents. It only supports creation methods that
180/// are guaranteed to produce a writable buffer. For example, mapping a file
181/// read-only is not supported.
183protected:
185
186public:
190
191 // const_cast is well-defined here, because the underlying buffer is
192 // guaranteed to have been initialized with a mutable buffer.
194 return const_cast<char *>(MemoryBuffer::getBufferStart());
195 }
196 char *getBufferEnd() {
197 return const_cast<char *>(MemoryBuffer::getBufferEnd());
198 }
202
204 getFile(const Twine &Filename, bool IsVolatile = false,
205 std::optional<Align> Alignment = std::nullopt);
206
207 /// Map a subrange of the specified file as a WritableMemoryBuffer.
210 bool IsVolatile = false,
211 std::optional<Align> Alignment = std::nullopt);
212
213 /// Allocate a new MemoryBuffer of the specified size that is not initialized.
214 /// Note that the caller should initialize the memory allocated by this
215 /// method. The memory is owned by the MemoryBuffer object.
216 ///
217 /// \param Alignment Set to indicate that the buffer should be aligned to at
218 /// least the specified alignment.
219 LLVM_ABI static std::unique_ptr<WritableMemoryBuffer>
220 getNewUninitMemBuffer(size_t Size, const Twine &BufferName = "",
221 std::optional<Align> Alignment = std::nullopt);
222
223 /// Allocate a new zero-initialized MemoryBuffer of the specified size. Note
224 /// that the caller need not initialize the memory allocated by this method.
225 /// The memory is owned by the MemoryBuffer object.
226 LLVM_ABI static std::unique_ptr<WritableMemoryBuffer>
227 getNewMemBuffer(size_t Size, const Twine &BufferName = "");
228
229private:
230 // Hide these base class factory function so one can't write
231 // WritableMemoryBuffer::getXXX()
232 // and be surprised that he got a read-only Buffer.
240};
241
242/// This class is an extension of MemoryBuffer, which allows write access to
243/// the underlying contents and committing those changes to the original source.
244/// It only supports creation methods that are guaranteed to produce a writable
245/// buffer. For example, mapping a file read-only is not supported.
247protected:
249
250public:
254
255 // const_cast is well-defined here, because the underlying buffer is
256 // guaranteed to have been initialized with a mutable buffer.
258 return const_cast<char *>(MemoryBuffer::getBufferStart());
259 }
260 char *getBufferEnd() {
261 return const_cast<char *>(MemoryBuffer::getBufferEnd());
262 }
266
268 getFile(const Twine &Filename, int64_t FileSize = -1);
269
270 /// Map a subrange of the specified file as a ReadWriteMemoryBuffer.
273
274private:
275 // Hide these base class factory function so one can't write
276 // WritableMemoryBuffer::getXXX()
277 // and be surprised that he got a read-only Buffer.
285};
286
287// Create wrappers for C Binding types (see CBindingWrapping.h).
289
290} // end namespace llvm
291
292#endif // LLVM_SUPPORT_MEMORYBUFFER_H
unsigned uint64_t
#define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref)
#define LLVM_ABI
Definition Compiler.h:215
Provides ErrorOr<T> smart pointer.
This file declares llvm::sys::fs::file_t type.
static constexpr StringLiteral Filename
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...
virtual void randomAccessIfMmap()
For read-only MemoryBuffer_MMap, advise the kernel that accesses will be random, disabling readahead.
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
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:294
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
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.
@ Offset
Definition DWP.cpp:577
@ Ref
The access may reference the value stored in memory.
Definition ModRef.h:32
This class wraps the platform specific file handle/descriptor type to provide an unified representati...
Definition File.h:21