LLVM  8.0.1
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Static Protected Attributes | List of all members
llvm::MemoryBuffer Class Referenceabstract

This interface provides simple read-only access to a block of memory, and provides simple methods for reading files and standard input into a memory buffer. More...

#include "llvm/Support/MemoryBuffer.h"

Inheritance diagram for llvm::MemoryBuffer:
Inheritance graph
[legend]
Collaboration diagram for llvm::MemoryBuffer:
Collaboration graph
[legend]

Public Types

enum  BufferKind { MemoryBuffer_Malloc, MemoryBuffer_MMap }
 The kind of memory backing used to support the MemoryBuffer. More...
 

Public Member Functions

 MemoryBuffer (const MemoryBuffer &)=delete
 
MemoryBufferoperator= (const MemoryBuffer &)=delete
 
virtual ~MemoryBuffer ()
 
const chargetBufferStart () const
 
const chargetBufferEnd () const
 
size_t getBufferSize () const
 
StringRef getBuffer () const
 
virtual StringRef getBufferIdentifier () const
 Return an identifier for this buffer, typically the filename it was read from. More...
 
virtual BufferKind getBufferKind () const =0
 Return information on the memory mechanism used to support the MemoryBuffer. More...
 
MemoryBufferRef getMemBufferRef () const
 

Static Public Member Functions

static ErrorOr< std::unique_ptr< MemoryBuffer > > getFile (const Twine &Filename, int64_t FileSize=-1, bool RequiresNullTerminator=true, bool IsVolatile=false)
 Open the specified file as a MemoryBuffer, returning a new MemoryBuffer if successful, otherwise returning null. More...
 
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileAsStream (const Twine &Filename)
 Read all of the specified file into a MemoryBuffer as a stream (i.e. More...
 
static ErrorOr< std::unique_ptr< MemoryBuffer > > getOpenFileSlice (int FD, const Twine &Filename, uint64_t MapSize, int64_t Offset, bool IsVolatile=false)
 Given an already-open file descriptor, map some slice of it into a MemoryBuffer. More...
 
static ErrorOr< std::unique_ptr< MemoryBuffer > > getOpenFile (int FD, const Twine &Filename, uint64_t FileSize, bool RequiresNullTerminator=true, bool IsVolatile=false)
 Given an already-open file descriptor, read the file and return a MemoryBuffer. More...
 
static std::unique_ptr< MemoryBuffergetMemBuffer (StringRef InputData, StringRef BufferName="", bool RequiresNullTerminator=true)
 Open the specified memory range as a MemoryBuffer. More...
 
static std::unique_ptr< MemoryBuffergetMemBuffer (MemoryBufferRef Ref, bool RequiresNullTerminator=true)
 
static std::unique_ptr< MemoryBuffergetMemBufferCopy (StringRef InputData, const Twine &BufferName="")
 Open the specified memory range as a MemoryBuffer, copying the contents and taking ownership of it. More...
 
static ErrorOr< std::unique_ptr< MemoryBuffer > > getSTDIN ()
 Read all of stdin into a file buffer, and return it. More...
 
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileOrSTDIN (const Twine &Filename, int64_t FileSize=-1, bool RequiresNullTerminator=true)
 Open the specified file as a MemoryBuffer, or open stdin if the Filename is "-". More...
 
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileSlice (const Twine &Filename, uint64_t MapSize, uint64_t Offset, bool IsVolatile=false)
 Map a subrange of the specified file as a MemoryBuffer. More...
 

Protected Member Functions

 MemoryBuffer ()=default
 
void init (const char *BufStart, const char *BufEnd, bool RequiresNullTerminator)
 init - Initialize this MemoryBuffer as a reference to externally allocated memory, memory that we know is already null terminated. More...
 

Static Protected Attributes

static constexpr sys::fs::mapped_file_region::mapmode Mapmode
 

Detailed Description

This interface provides simple read-only access to a block of memory, and provides simple methods for reading files and standard input into a memory buffer.

In addition to basic access to the characters in the file, this interface guarantees you can read one character past the end of the file, and that this character will read as '\0'.

The '\0' guarantee is needed to support an optimization – it's intended to be more efficient for clients which are reading all the data to stop reading when they encounter a '\0' than to continually check the file position to see if it has reached the end of the file.

Definition at line 42 of file MemoryBuffer.h.

Member Enumeration Documentation

◆ BufferKind

The kind of memory backing used to support the MemoryBuffer.

Enumerator
MemoryBuffer_Malloc 
MemoryBuffer_MMap 

Definition at line 140 of file MemoryBuffer.h.

Constructor & Destructor Documentation

◆ MemoryBuffer() [1/2]

llvm::MemoryBuffer::MemoryBuffer ( )
protecteddefault

◆ MemoryBuffer() [2/2]

llvm::MemoryBuffer::MemoryBuffer ( const MemoryBuffer )
delete

◆ ~MemoryBuffer()

MemoryBuffer::~MemoryBuffer ( )
virtual

Definition at line 42 of file MemoryBuffer.cpp.

Member Function Documentation

◆ getBuffer()

StringRef llvm::MemoryBuffer::getBuffer ( ) const
inline

◆ getBufferEnd()

const char* llvm::MemoryBuffer::getBufferEnd ( ) const
inline

◆ getBufferIdentifier()

virtual StringRef llvm::MemoryBuffer::getBufferIdentifier ( ) const
inlinevirtual

◆ getBufferKind()

virtual BufferKind llvm::MemoryBuffer::getBufferKind ( ) const
pure virtual

Return information on the memory mechanism used to support the MemoryBuffer.

Implemented in llvm::SmallVectorMemoryBuffer.

◆ getBufferSize()

size_t llvm::MemoryBuffer::getBufferSize ( ) const
inline

◆ getBufferStart()

const char* llvm::MemoryBuffer::getBufferStart ( ) const
inline

◆ getFile()

ErrorOr< std::unique_ptr< MemoryBuffer > > MemoryBuffer::getFile ( const Twine Filename,
int64_t  FileSize = -1,
bool  RequiresNullTerminator = true,
bool  IsVolatile = false 
)
static

◆ getFileAsStream()

ErrorOr< std::unique_ptr< MemoryBuffer > > MemoryBuffer::getFileAsStream ( const Twine Filename)
static

Read all of the specified file into a MemoryBuffer as a stream (i.e.

until EOF reached). This is useful for special files that look like a regular file but have 0 size (e.g. /proc/cpuinfo on Linux).

Definition at line 519 of file MemoryBuffer.cpp.

References getMemoryBufferForStream(), llvm::sys::fs::OF_None, llvm::sys::fs::openFileForRead(), and llvm::MipsISD::Ret.

Referenced by llvm::WritableMemoryBuffer::getBuffer(), llvm::WriteThroughMemoryBuffer::getBuffer(), getBufferIdentifier(), llvm::sys::getHostCPUName(), and getProcCpuinfoContent().

◆ getFileOrSTDIN()

ErrorOr< std::unique_ptr< MemoryBuffer > > MemoryBuffer::getFileOrSTDIN ( const Twine Filename,
int64_t  FileSize = -1,
bool  RequiresNullTerminator = true 
)
static

◆ getFileSlice()

ErrorOr< std::unique_ptr< MemoryBuffer > > MemoryBuffer::getFileSlice ( const Twine Filename,
uint64_t  MapSize,
uint64_t  Offset,
bool  IsVolatile = false 
)
static

◆ getMemBuffer() [1/2]

std::unique_ptr< MemoryBuffer > MemoryBuffer::getMemBuffer ( StringRef  InputData,
StringRef  BufferName = "",
bool  RequiresNullTerminator = true 
)
static

◆ getMemBuffer() [2/2]

std::unique_ptr< MemoryBuffer > MemoryBuffer::getMemBuffer ( MemoryBufferRef  Ref,
bool  RequiresNullTerminator = true 
)
static

◆ getMemBufferCopy()

std::unique_ptr< MemoryBuffer > MemoryBuffer::getMemBufferCopy ( StringRef  InputData,
const Twine BufferName = "" 
)
static

◆ getMemBufferRef()

MemoryBufferRef MemoryBuffer::getMemBufferRef ( ) const

◆ getOpenFile()

ErrorOr< std::unique_ptr< MemoryBuffer > > MemoryBuffer::getOpenFile ( int  FD,
const Twine Filename,
uint64_t  FileSize,
bool  RequiresNullTerminator = true,
bool  IsVolatile = false 
)
static

Given an already-open file descriptor, read the file and return a MemoryBuffer.

Parameters
IsVolatileSet to true to indicate that the contents of the file can change outside the user's control, e.g. when libclang tries to parse while the user is editing/updating the file or if the file is on an NFS.

Definition at line 494 of file MemoryBuffer.cpp.

References llvm::AMDGPU::HSAMD::Kernel::Arg::Key::IsVolatile.

Referenced by llvm::WritableMemoryBuffer::getBuffer(), llvm::WriteThroughMemoryBuffer::getBuffer(), getBufferIdentifier(), llvm::NewArchiveMember::getFile(), llvm::lto::localCache(), and pathHasTraversal().

◆ getOpenFileSlice()

ErrorOr< std::unique_ptr< MemoryBuffer > > MemoryBuffer::getOpenFileSlice ( int  FD,
const Twine Filename,
uint64_t  MapSize,
int64_t  Offset,
bool  IsVolatile = false 
)
static

Given an already-open file descriptor, map some slice of it into a MemoryBuffer.

The slice is specified by an Offset and MapSize. Since this is in the middle of a file, the buffer is not null terminated.

Definition at line 501 of file MemoryBuffer.cpp.

References assert(), and llvm::AMDGPU::HSAMD::Kernel::Arg::Key::IsVolatile.

Referenced by llvm::LTOModule::createFromOpenFileSlice(), llvm::WritableMemoryBuffer::getBuffer(), llvm::WriteThroughMemoryBuffer::getBuffer(), and getBufferIdentifier().

◆ getSTDIN()

ErrorOr< std::unique_ptr< MemoryBuffer > > MemoryBuffer::getSTDIN ( )
static

◆ init()

void MemoryBuffer::init ( const char BufStart,
const char BufEnd,
bool  RequiresNullTerminator 
)
protected

init - Initialize this MemoryBuffer as a reference to externally allocated memory, memory that we know is already null terminated.

Definition at line 46 of file MemoryBuffer.cpp.

References assert().

Referenced by llvm::SmallVectorMemoryBuffer::SmallVectorMemoryBuffer().

◆ operator=()

MemoryBuffer& llvm::MemoryBuffer::operator= ( const MemoryBuffer )
delete

Member Data Documentation

◆ Mapmode

constexpr sys::fs::mapped_file_region::mapmode llvm::MemoryBuffer::Mapmode
staticprotected
Initial value:

Definition at line 52 of file MemoryBuffer.h.


The documentation for this class was generated from the following files: