2007-04-29 06:58:52 +00:00
|
|
|
//===--- MemoryBuffer.cpp - Memory Buffer implementation ------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-04-29 06:58:52 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the MemoryBuffer interface.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2008-04-01 06:05:21 +00:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2011-11-22 12:31:53 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2014-06-13 17:20:48 +00:00
|
|
|
#include "llvm/Support/Errc.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Errno.h"
|
2012-06-20 20:21:33 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include "llvm/Support/Process.h"
|
|
|
|
#include "llvm/Support/Program.h"
|
2007-04-29 14:21:44 +00:00
|
|
|
#include <cassert>
|
2012-12-03 16:50:05 +00:00
|
|
|
#include <cerrno>
|
2007-04-29 06:58:52 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2010-12-19 20:43:38 +00:00
|
|
|
#include <new>
|
2012-12-03 16:50:05 +00:00
|
|
|
#include <sys/types.h>
|
2014-06-12 17:38:55 +00:00
|
|
|
#include <system_error>
|
2008-04-01 06:05:21 +00:00
|
|
|
#if !defined(_MSC_VER) && !defined(__MINGW32__)
|
|
|
|
#include <unistd.h>
|
|
|
|
#else
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
2007-04-29 06:58:52 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MemoryBuffer implementation itself.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-06-25 11:50:40 +00:00
|
|
|
MemoryBuffer::~MemoryBuffer() { }
|
2007-04-29 06:58:52 +00:00
|
|
|
|
|
|
|
/// init - Initialize this MemoryBuffer as a reference to externally allocated
|
|
|
|
/// memory, memory that we know is already null terminated.
|
2011-03-10 18:33:29 +00:00
|
|
|
void MemoryBuffer::init(const char *BufStart, const char *BufEnd,
|
|
|
|
bool RequiresNullTerminator) {
|
2011-03-18 02:55:51 +00:00
|
|
|
assert((!RequiresNullTerminator || BufEnd[0] == 0) &&
|
2011-03-10 18:33:29 +00:00
|
|
|
"Buffer is not null terminated!");
|
2007-04-29 06:58:52 +00:00
|
|
|
BufferStart = BufStart;
|
|
|
|
BufferEnd = BufEnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MemoryBufferMem implementation.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-06-25 11:50:40 +00:00
|
|
|
/// CopyStringRef - Copies contents of a StringRef into a block of memory and
|
|
|
|
/// null-terminates it.
|
|
|
|
static void CopyStringRef(char *Memory, StringRef Data) {
|
|
|
|
memcpy(Memory, Data.data(), Data.size());
|
|
|
|
Memory[Data.size()] = 0; // Null terminate string.
|
|
|
|
}
|
|
|
|
|
2013-03-30 15:23:08 +00:00
|
|
|
namespace {
|
2013-03-12 19:28:19 +00:00
|
|
|
struct NamedBufferAlloc {
|
|
|
|
StringRef Name;
|
|
|
|
NamedBufferAlloc(StringRef Name) : Name(Name) {}
|
|
|
|
};
|
2013-03-30 15:23:08 +00:00
|
|
|
}
|
2013-03-12 19:28:19 +00:00
|
|
|
|
|
|
|
void *operator new(size_t N, const NamedBufferAlloc &Alloc) {
|
|
|
|
char *Mem = static_cast<char *>(operator new(N + Alloc.Name.size() + 1));
|
|
|
|
CopyStringRef(Mem + N, Alloc.Name);
|
|
|
|
return Mem;
|
2010-06-25 11:50:40 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 06:58:52 +00:00
|
|
|
namespace {
|
2010-06-25 11:50:40 +00:00
|
|
|
/// MemoryBufferMem - Named MemoryBuffer pointing to a block of memory.
|
2007-04-29 06:58:52 +00:00
|
|
|
class MemoryBufferMem : public MemoryBuffer {
|
|
|
|
public:
|
2011-03-10 18:33:29 +00:00
|
|
|
MemoryBufferMem(StringRef InputData, bool RequiresNullTerminator) {
|
|
|
|
init(InputData.begin(), InputData.end(), RequiresNullTerminator);
|
2007-04-29 06:58:52 +00:00
|
|
|
}
|
2010-06-25 11:50:40 +00:00
|
|
|
|
2014-03-10 03:53:12 +00:00
|
|
|
const char *getBufferIdentifier() const override {
|
2010-06-25 11:50:40 +00:00
|
|
|
// The name is stored after the class itself.
|
|
|
|
return reinterpret_cast<const char*>(this + 1);
|
2007-04-29 06:58:52 +00:00
|
|
|
}
|
2012-09-23 02:12:10 +00:00
|
|
|
|
2014-03-10 03:53:12 +00:00
|
|
|
BufferKind getBufferKind() const override {
|
2011-04-28 20:34:18 +00:00
|
|
|
return MemoryBuffer_Malloc;
|
|
|
|
}
|
2007-04-29 06:58:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getMemBuffer - Open the specified memory range as a MemoryBuffer. Note
|
2011-05-22 00:50:53 +00:00
|
|
|
/// that InputData must be a null terminated if RequiresNullTerminator is true!
|
2010-04-05 22:42:30 +00:00
|
|
|
MemoryBuffer *MemoryBuffer::getMemBuffer(StringRef InputData,
|
2011-03-17 22:18:42 +00:00
|
|
|
StringRef BufferName,
|
|
|
|
bool RequiresNullTerminator) {
|
2013-03-12 19:28:19 +00:00
|
|
|
return new (NamedBufferAlloc(BufferName))
|
|
|
|
MemoryBufferMem(InputData, RequiresNullTerminator);
|
2007-04-29 06:58:52 +00:00
|
|
|
}
|
|
|
|
|
2014-08-26 21:49:01 +00:00
|
|
|
std::unique_ptr<MemoryBuffer>
|
|
|
|
MemoryBuffer::getMemBuffer(MemoryBufferRef Ref, bool RequiresNullTerminator) {
|
|
|
|
return std::unique_ptr<MemoryBuffer>(getMemBuffer(
|
|
|
|
Ref.getBuffer(), Ref.getBufferIdentifier(), RequiresNullTerminator));
|
|
|
|
}
|
|
|
|
|
2007-10-09 21:46:38 +00:00
|
|
|
/// getMemBufferCopy - Open the specified memory range as a MemoryBuffer,
|
|
|
|
/// copying the contents and taking ownership of it. This has no requirements
|
|
|
|
/// on EndPtr[0].
|
2010-04-05 22:42:30 +00:00
|
|
|
MemoryBuffer *MemoryBuffer::getMemBufferCopy(StringRef InputData,
|
2010-06-25 11:50:40 +00:00
|
|
|
StringRef BufferName) {
|
|
|
|
MemoryBuffer *Buf = getNewUninitMemBuffer(InputData.size(), BufferName);
|
2014-04-07 04:17:22 +00:00
|
|
|
if (!Buf) return nullptr;
|
2010-06-25 11:50:40 +00:00
|
|
|
memcpy(const_cast<char*>(Buf->getBufferStart()), InputData.data(),
|
|
|
|
InputData.size());
|
|
|
|
return Buf;
|
2007-10-09 21:46:38 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 06:58:52 +00:00
|
|
|
/// getNewUninitMemBuffer - Allocate a new MemoryBuffer of the specified size
|
2010-06-25 11:50:40 +00:00
|
|
|
/// that is not initialized. Note that the caller should initialize the
|
|
|
|
/// memory allocated by this method. The memory is owned by the MemoryBuffer
|
|
|
|
/// object.
|
2008-05-05 18:30:58 +00:00
|
|
|
MemoryBuffer *MemoryBuffer::getNewUninitMemBuffer(size_t Size,
|
2009-11-10 00:43:58 +00:00
|
|
|
StringRef BufferName) {
|
2010-06-25 11:50:40 +00:00
|
|
|
// Allocate space for the MemoryBuffer, the data and the name. It is important
|
|
|
|
// that MemoryBuffer and data are aligned so PointerIntPair works with them.
|
2013-12-16 18:18:12 +00:00
|
|
|
// TODO: Is 16-byte alignment enough? We copy small object files with large
|
|
|
|
// alignment expectations into this buffer.
|
2010-06-25 11:50:40 +00:00
|
|
|
size_t AlignedStringLen =
|
2013-12-16 18:18:12 +00:00
|
|
|
RoundUpToAlignment(sizeof(MemoryBufferMem) + BufferName.size() + 1, 16);
|
2010-06-25 11:50:40 +00:00
|
|
|
size_t RealLen = AlignedStringLen + Size + 1;
|
|
|
|
char *Mem = static_cast<char*>(operator new(RealLen, std::nothrow));
|
2014-04-07 04:17:22 +00:00
|
|
|
if (!Mem) return nullptr;
|
2010-06-25 11:50:40 +00:00
|
|
|
|
|
|
|
// The name is stored after the class itself.
|
|
|
|
CopyStringRef(Mem + sizeof(MemoryBufferMem), BufferName);
|
|
|
|
|
|
|
|
// The buffer begins after the name and must be aligned.
|
|
|
|
char *Buf = Mem + AlignedStringLen;
|
|
|
|
Buf[Size] = 0; // Null terminate buffer.
|
|
|
|
|
2011-03-10 18:33:29 +00:00
|
|
|
return new (Mem) MemoryBufferMem(StringRef(Buf, Size), true);
|
2007-04-29 06:58:52 +00:00
|
|
|
}
|
|
|
|
|
2014-08-08 22:09:00 +00:00
|
|
|
/// getNewMemBuffer - Allocate a new zero-initialized MemoryBuffer of the
|
2014-08-09 00:26:27 +00:00
|
|
|
/// specified size. Note that the caller need not initialize the memory
|
2014-08-08 22:09:00 +00:00
|
|
|
/// allocated by this method. The memory is owned by the MemoryBuffer object.
|
2010-06-25 11:50:40 +00:00
|
|
|
MemoryBuffer *MemoryBuffer::getNewMemBuffer(size_t Size, StringRef BufferName) {
|
2007-04-29 06:58:52 +00:00
|
|
|
MemoryBuffer *SB = getNewUninitMemBuffer(Size, BufferName);
|
2014-04-07 04:17:22 +00:00
|
|
|
if (!SB) return nullptr;
|
2010-06-25 11:50:40 +00:00
|
|
|
memset(const_cast<char*>(SB->getBufferStart()), 0, Size);
|
2007-04-29 06:58:52 +00:00
|
|
|
return SB;
|
|
|
|
}
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
MemoryBuffer::getFileOrSTDIN(StringRef Filename, int64_t FileSize) {
|
2009-11-10 00:43:58 +00:00
|
|
|
if (Filename == "-")
|
2014-07-06 17:43:13 +00:00
|
|
|
return getSTDIN();
|
|
|
|
return getFile(Filename, FileSize);
|
2007-11-18 18:52:28 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 10:27:34 +00:00
|
|
|
|
2007-04-29 06:58:52 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-04-01 06:05:21 +00:00
|
|
|
// MemoryBuffer::getFile implementation.
|
2007-04-29 06:58:52 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
2013-09-10 19:54:54 +00:00
|
|
|
/// \brief Memory maps a file descriptor using sys::fs::mapped_file_region.
|
2013-03-12 19:28:19 +00:00
|
|
|
///
|
|
|
|
/// This handles converting the offset into a legal offset on the platform.
|
|
|
|
class MemoryBufferMMapFile : public MemoryBuffer {
|
|
|
|
sys::fs::mapped_file_region MFR;
|
|
|
|
|
|
|
|
static uint64_t getLegalMapOffset(uint64_t Offset) {
|
|
|
|
return Offset & ~(sys::fs::mapped_file_region::alignment() - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t getLegalMapSize(uint64_t Len, uint64_t Offset) {
|
|
|
|
return Len + (Offset - getLegalMapOffset(Offset));
|
|
|
|
}
|
2010-06-25 11:50:40 +00:00
|
|
|
|
2013-03-12 19:28:19 +00:00
|
|
|
const char *getStart(uint64_t Len, uint64_t Offset) {
|
|
|
|
return MFR.const_data() + (Offset - getLegalMapOffset(Offset));
|
|
|
|
}
|
2011-03-10 18:33:29 +00:00
|
|
|
|
2013-03-12 19:28:19 +00:00
|
|
|
public:
|
|
|
|
MemoryBufferMMapFile(bool RequiresNullTerminator, int FD, uint64_t Len,
|
2014-06-13 02:24:39 +00:00
|
|
|
uint64_t Offset, std::error_code EC)
|
2013-03-14 00:20:10 +00:00
|
|
|
: MFR(FD, false, sys::fs::mapped_file_region::readonly,
|
2013-03-12 19:28:19 +00:00
|
|
|
getLegalMapSize(Len, Offset), getLegalMapOffset(Offset), EC) {
|
|
|
|
if (!EC) {
|
|
|
|
const char *Start = getStart(Len, Offset);
|
|
|
|
init(Start, Start + Len, RequiresNullTerminator);
|
|
|
|
}
|
|
|
|
}
|
2011-03-10 18:33:29 +00:00
|
|
|
|
2014-03-10 03:53:12 +00:00
|
|
|
const char *getBufferIdentifier() const override {
|
2013-03-12 19:28:19 +00:00
|
|
|
// The name is stored after the class itself.
|
|
|
|
return reinterpret_cast<const char *>(this + 1);
|
2008-04-01 06:05:21 +00:00
|
|
|
}
|
2012-09-23 02:12:10 +00:00
|
|
|
|
2014-03-10 03:53:12 +00:00
|
|
|
BufferKind getBufferKind() const override {
|
2011-04-28 20:34:18 +00:00
|
|
|
return MemoryBuffer_MMap;
|
|
|
|
}
|
2007-04-29 06:58:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
static ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
getMemoryBufferForStream(int FD, StringRef BufferName) {
|
2012-11-05 21:55:40 +00:00
|
|
|
const ssize_t ChunkSize = 4096*4;
|
|
|
|
SmallString<ChunkSize> Buffer;
|
|
|
|
ssize_t ReadBytes;
|
|
|
|
// Read into Buffer until we hit EOF.
|
|
|
|
do {
|
|
|
|
Buffer.reserve(Buffer.size() + ChunkSize);
|
|
|
|
ReadBytes = read(FD, Buffer.end(), ChunkSize);
|
|
|
|
if (ReadBytes == -1) {
|
|
|
|
if (errno == EINTR) continue;
|
2014-06-13 02:24:39 +00:00
|
|
|
return std::error_code(errno, std::generic_category());
|
2012-11-05 21:55:40 +00:00
|
|
|
}
|
|
|
|
Buffer.set_size(Buffer.size() + ReadBytes);
|
|
|
|
} while (ReadBytes != 0);
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> Ret(
|
|
|
|
MemoryBuffer::getMemBufferCopy(Buffer, BufferName));
|
|
|
|
return std::move(Ret);
|
2012-11-05 21:55:40 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
static ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
getFileAux(const char *Filename, int64_t FileSize, bool RequiresNullTerminator,
|
|
|
|
bool IsVolatileSize);
|
2014-06-13 02:24:39 +00:00
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
MemoryBuffer::getFile(Twine Filename, int64_t FileSize,
|
|
|
|
bool RequiresNullTerminator, bool IsVolatileSize) {
|
2010-11-23 22:20:27 +00:00
|
|
|
// Ensure the path is null terminated.
|
2013-10-25 19:06:52 +00:00
|
|
|
SmallString<256> PathBuf;
|
|
|
|
StringRef NullTerminatedName = Filename.toNullTerminatedStringRef(PathBuf);
|
2014-07-06 17:43:13 +00:00
|
|
|
return getFileAux(NullTerminatedName.data(), FileSize, RequiresNullTerminator,
|
|
|
|
IsVolatileSize);
|
2010-06-24 16:25:50 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
static ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
getOpenFileImpl(int FD, const char *Filename, uint64_t FileSize,
|
|
|
|
uint64_t MapSize, int64_t Offset, bool RequiresNullTerminator,
|
|
|
|
bool IsVolatileSize);
|
|
|
|
|
|
|
|
static ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
getFileAux(const char *Filename, int64_t FileSize, bool RequiresNullTerminator,
|
|
|
|
bool IsVolatileSize) {
|
2013-07-16 19:44:17 +00:00
|
|
|
int FD;
|
2014-06-13 02:24:39 +00:00
|
|
|
std::error_code EC = sys::fs::openFileForRead(Filename, FD);
|
2013-07-16 19:44:17 +00:00
|
|
|
if (EC)
|
|
|
|
return EC;
|
2011-05-22 00:50:53 +00:00
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> Ret =
|
|
|
|
getOpenFileImpl(FD, Filename, FileSize, FileSize, 0,
|
2014-06-13 02:24:39 +00:00
|
|
|
RequiresNullTerminator, IsVolatileSize);
|
2013-03-14 00:20:10 +00:00
|
|
|
close(FD);
|
2014-07-06 17:43:13 +00:00
|
|
|
return Ret;
|
2010-11-23 22:20:27 +00:00
|
|
|
}
|
2010-11-29 18:16:10 +00:00
|
|
|
|
2011-03-10 20:54:07 +00:00
|
|
|
static bool shouldUseMmap(int FD,
|
|
|
|
size_t FileSize,
|
2011-03-10 18:33:29 +00:00
|
|
|
size_t MapSize,
|
|
|
|
off_t Offset,
|
|
|
|
bool RequiresNullTerminator,
|
2014-05-06 00:51:45 +00:00
|
|
|
int PageSize,
|
2014-05-06 01:03:52 +00:00
|
|
|
bool IsVolatileSize) {
|
2014-05-06 00:51:45 +00:00
|
|
|
// mmap may leave the buffer without null terminator if the file size changed
|
|
|
|
// by the time the last page is mapped in, so avoid it if the file size is
|
|
|
|
// likely to change.
|
2014-05-06 01:03:52 +00:00
|
|
|
if (IsVolatileSize)
|
2014-05-06 00:51:45 +00:00
|
|
|
return false;
|
|
|
|
|
2011-03-10 18:33:29 +00:00
|
|
|
// We don't use mmap for small files because this can severely fragment our
|
|
|
|
// address space.
|
2013-08-22 10:23:52 +00:00
|
|
|
if (MapSize < 4 * 4096 || MapSize < (unsigned)PageSize)
|
2011-03-10 18:33:29 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!RequiresNullTerminator)
|
|
|
|
return true;
|
|
|
|
|
2011-03-10 20:54:07 +00:00
|
|
|
|
|
|
|
// If we don't know the file size, use fstat to find out. fstat on an open
|
|
|
|
// file descriptor is cheaper than stat on a random path.
|
|
|
|
// FIXME: this chunk of code is duplicated, but it avoids a fstat when
|
|
|
|
// RequiresNullTerminator = false and MapSize != -1.
|
|
|
|
if (FileSize == size_t(-1)) {
|
2013-07-18 03:04:20 +00:00
|
|
|
sys::fs::file_status Status;
|
2014-05-09 08:57:32 +00:00
|
|
|
if (sys::fs::status(FD, Status))
|
|
|
|
return false;
|
2013-07-18 03:04:20 +00:00
|
|
|
FileSize = Status.getSize();
|
2011-03-10 20:54:07 +00:00
|
|
|
}
|
|
|
|
|
2011-03-10 18:33:29 +00:00
|
|
|
// If we need a null terminator and the end of the map is inside the file,
|
|
|
|
// we cannot use mmap.
|
|
|
|
size_t End = Offset + MapSize;
|
|
|
|
assert(End <= FileSize);
|
|
|
|
if (End != FileSize)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Don't try to map files that are exactly a multiple of the system page size
|
|
|
|
// if we need a null terminator.
|
|
|
|
if ((FileSize & (PageSize -1)) == 0)
|
|
|
|
return false;
|
|
|
|
|
2014-08-04 01:43:37 +00:00
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
// Don't try to map files that are exactly a multiple of the physical page size
|
|
|
|
// if we need a null terminator.
|
|
|
|
// FIXME: We should reorganize again getPageSize() on Win32.
|
|
|
|
if ((FileSize & (4096 - 1)) == 0)
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
2011-03-10 18:33:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
static ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
getOpenFileImpl(int FD, const char *Filename, uint64_t FileSize,
|
|
|
|
uint64_t MapSize, int64_t Offset, bool RequiresNullTerminator,
|
|
|
|
bool IsVolatileSize) {
|
2012-12-31 23:31:56 +00:00
|
|
|
static int PageSize = sys::process::get_self()->page_size();
|
2011-03-10 18:33:29 +00:00
|
|
|
|
|
|
|
// Default is to map the full file.
|
2011-09-15 23:13:00 +00:00
|
|
|
if (MapSize == uint64_t(-1)) {
|
2011-03-10 20:54:07 +00:00
|
|
|
// If we don't know the file size, use fstat to find out. fstat on an open
|
|
|
|
// file descriptor is cheaper than stat on a random path.
|
2011-09-15 23:13:00 +00:00
|
|
|
if (FileSize == uint64_t(-1)) {
|
2013-07-18 03:04:20 +00:00
|
|
|
sys::fs::file_status Status;
|
2014-06-13 02:24:39 +00:00
|
|
|
std::error_code EC = sys::fs::status(FD, Status);
|
2013-07-18 03:04:20 +00:00
|
|
|
if (EC)
|
|
|
|
return EC;
|
2012-11-05 21:55:40 +00:00
|
|
|
|
2013-02-19 19:36:55 +00:00
|
|
|
// If this not a file or a block device (e.g. it's a named pipe
|
|
|
|
// or character device), we can't trust the size. Create the memory
|
|
|
|
// buffer by copying off the stream.
|
2013-07-18 03:04:20 +00:00
|
|
|
sys::fs::file_type Type = Status.type();
|
|
|
|
if (Type != sys::fs::file_type::regular_file &&
|
|
|
|
Type != sys::fs::file_type::block_file)
|
2014-07-06 17:43:13 +00:00
|
|
|
return getMemoryBufferForStream(FD, Filename);
|
2012-11-05 21:55:40 +00:00
|
|
|
|
2013-07-18 03:04:20 +00:00
|
|
|
FileSize = Status.getSize();
|
2011-03-10 20:54:07 +00:00
|
|
|
}
|
2011-03-10 18:33:29 +00:00
|
|
|
MapSize = FileSize;
|
2011-03-10 20:54:07 +00:00
|
|
|
}
|
2011-03-10 18:33:29 +00:00
|
|
|
|
2014-05-06 00:51:45 +00:00
|
|
|
if (shouldUseMmap(FD, FileSize, MapSize, Offset, RequiresNullTerminator,
|
2014-05-06 01:03:52 +00:00
|
|
|
PageSize, IsVolatileSize)) {
|
2014-06-13 02:24:39 +00:00
|
|
|
std::error_code EC;
|
2014-07-06 17:43:13 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> Result(
|
|
|
|
new (NamedBufferAlloc(Filename))
|
|
|
|
MemoryBufferMMapFile(RequiresNullTerminator, FD, MapSize, Offset, EC));
|
2013-03-12 19:28:19 +00:00
|
|
|
if (!EC)
|
2014-07-06 17:43:13 +00:00
|
|
|
return std::move(Result);
|
2007-05-06 07:24:46 +00:00
|
|
|
}
|
2009-02-13 07:54:34 +00:00
|
|
|
|
2011-03-10 18:33:29 +00:00
|
|
|
MemoryBuffer *Buf = MemoryBuffer::getNewUninitMemBuffer(MapSize, Filename);
|
2009-02-13 07:54:34 +00:00
|
|
|
if (!Buf) {
|
2010-12-09 17:36:48 +00:00
|
|
|
// Failed to create a buffer. The only way it can fail is if
|
|
|
|
// new(std::nothrow) returns 0.
|
2014-06-13 17:20:48 +00:00
|
|
|
return make_error_code(errc::not_enough_memory);
|
2009-02-13 07:54:34 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 10:27:34 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> SB(Buf);
|
2007-04-29 06:58:52 +00:00
|
|
|
char *BufPtr = const_cast<char*>(SB->getBufferStart());
|
2010-04-01 14:35:22 +00:00
|
|
|
|
2011-03-10 18:33:29 +00:00
|
|
|
size_t BytesLeft = MapSize;
|
2011-11-22 12:31:53 +00:00
|
|
|
#ifndef HAVE_PREAD
|
2011-03-10 18:33:29 +00:00
|
|
|
if (lseek(FD, Offset, SEEK_SET) == -1)
|
2014-06-13 02:36:09 +00:00
|
|
|
return std::error_code(errno, std::generic_category());
|
2011-11-22 12:31:53 +00:00
|
|
|
#endif
|
2011-03-10 18:33:29 +00:00
|
|
|
|
2007-04-29 06:58:52 +00:00
|
|
|
while (BytesLeft) {
|
2011-11-22 12:31:53 +00:00
|
|
|
#ifdef HAVE_PREAD
|
|
|
|
ssize_t NumRead = ::pread(FD, BufPtr, BytesLeft, MapSize-BytesLeft+Offset);
|
|
|
|
#else
|
2007-04-29 06:58:52 +00:00
|
|
|
ssize_t NumRead = ::read(FD, BufPtr, BytesLeft);
|
2011-11-22 12:31:53 +00:00
|
|
|
#endif
|
2010-04-01 14:35:22 +00:00
|
|
|
if (NumRead == -1) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
// Error while reading.
|
2014-06-13 02:24:39 +00:00
|
|
|
return std::error_code(errno, std::generic_category());
|
2007-04-29 06:58:52 +00:00
|
|
|
}
|
2012-03-13 20:18:42 +00:00
|
|
|
if (NumRead == 0) {
|
2014-05-06 00:51:45 +00:00
|
|
|
memset(BufPtr, 0, BytesLeft); // zero-initialize rest of the buffer.
|
2012-03-13 20:18:42 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-04-01 14:35:22 +00:00
|
|
|
BytesLeft -= NumRead;
|
|
|
|
BufPtr += NumRead;
|
2007-04-29 06:58:52 +00:00
|
|
|
}
|
2010-04-01 14:35:22 +00:00
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
return std::move(SB);
|
2007-04-29 06:58:52 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
MemoryBuffer::getOpenFile(int FD, const char *Filename, uint64_t FileSize,
|
|
|
|
bool RequiresNullTerminator, bool IsVolatileSize) {
|
|
|
|
return getOpenFileImpl(FD, Filename, FileSize, FileSize, 0,
|
2014-05-06 01:03:52 +00:00
|
|
|
RequiresNullTerminator, IsVolatileSize);
|
2013-07-23 20:25:01 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
MemoryBuffer::getOpenFileSlice(int FD, const char *Filename, uint64_t MapSize,
|
|
|
|
int64_t Offset, bool IsVolatileSize) {
|
|
|
|
return getOpenFileImpl(FD, Filename, -1, MapSize, Offset, false,
|
2014-05-06 01:03:52 +00:00
|
|
|
IsVolatileSize);
|
2013-07-23 20:25:01 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> MemoryBuffer::getSTDIN() {
|
2007-04-29 06:58:52 +00:00
|
|
|
// Read in all of the data from stdin, we cannot mmap stdin.
|
2009-11-10 00:43:58 +00:00
|
|
|
//
|
|
|
|
// FIXME: That isn't necessarily true, we should try to mmap stdin and
|
|
|
|
// fallback if it fails.
|
2013-06-12 20:58:35 +00:00
|
|
|
sys::ChangeStdinToBinary();
|
2007-08-08 20:01:58 +00:00
|
|
|
|
2014-07-06 17:43:13 +00:00
|
|
|
return getMemoryBufferForStream(0, "<stdin>");
|
2014-03-05 10:27:34 +00:00
|
|
|
}
|
2014-08-19 18:44:46 +00:00
|
|
|
|
|
|
|
MemoryBufferRef MemoryBuffer::getMemBufferRef() const {
|
|
|
|
StringRef Data = getBuffer();
|
|
|
|
StringRef Identifier = getBufferIdentifier();
|
|
|
|
return MemoryBufferRef(Data, Identifier);
|
|
|
|
}
|