summaryrefslogtreecommitdiff
path: root/lib/Support/MemoryBuffer.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-03-10 20:54:07 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-03-10 20:54:07 +0000
commit9d2234d6a0a5b2840427927ac971027aec0ddf63 (patch)
tree1b675e9281594c3e3baaeba56b7248d577d367b6 /lib/Support/MemoryBuffer.cpp
parentfa0e6facc793d0a67e89f873e18cd35a9d7c02e0 (diff)
downloadllvm-9d2234d6a0a5b2840427927ac971027aec0ddf63.tar.gz
llvm-9d2234d6a0a5b2840427927ac971027aec0ddf63.tar.bz2
llvm-9d2234d6a0a5b2840427927ac971027aec0ddf63.tar.xz
Don't compute the file size if we don't need to.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127426 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/MemoryBuffer.cpp')
-rw-r--r--lib/Support/MemoryBuffer.cpp43
1 files changed, 29 insertions, 14 deletions
diff --git a/lib/Support/MemoryBuffer.cpp b/lib/Support/MemoryBuffer.cpp
index 80d556cbf5..2be0460149 100644
--- a/lib/Support/MemoryBuffer.cpp
+++ b/lib/Support/MemoryBuffer.cpp
@@ -216,7 +216,8 @@ error_code MemoryBuffer::getFile(const char *Filename,
return ret;
}
-static bool shouldUseMmap(size_t FileSize,
+static bool shouldUseMmap(int FD,
+ size_t FileSize,
size_t MapSize,
off_t Offset,
bool RequiresNullTerminator,
@@ -229,6 +230,20 @@ static bool shouldUseMmap(size_t FileSize,
if (!RequiresNullTerminator)
return true;
+
+ // 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)) {
+ struct stat FileInfo;
+ // TODO: This should use fstat64 when available.
+ if (fstat(FD, &FileInfo) == -1) {
+ return error_code(errno, posix_category());
+ }
+ FileSize = FileInfo.st_size;
+ }
+
// 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;
@@ -251,22 +266,22 @@ error_code MemoryBuffer::getOpenFile(int FD, const char *Filename,
bool RequiresNullTerminator) {
static int PageSize = sys::Process::GetPageSize();
- // 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.
- if (FileSize == size_t(-1)) {
- struct stat FileInfo;
- // TODO: This should use fstat64 when available.
- if (fstat(FD, &FileInfo) == -1) {
- return error_code(errno, posix_category());
- }
- FileSize = FileInfo.st_size;
- }
-
// Default is to map the full file.
- if (MapSize == size_t(-1))
+ if (MapSize == size_t(-1)) {
+ // 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.
+ if (FileSize == size_t(-1)) {
+ struct stat FileInfo;
+ // TODO: This should use fstat64 when available.
+ if (fstat(FD, &FileInfo) == -1) {
+ return error_code(errno, posix_category());
+ }
+ FileSize = FileInfo.st_size;
+ }
MapSize = FileSize;
+ }
- if (shouldUseMmap(FileSize, MapSize, Offset, RequiresNullTerminator,
+ if (shouldUseMmap(FD, FileSize, MapSize, Offset, RequiresNullTerminator,
PageSize)) {
off_t RealMapOffset = Offset & ~(PageSize - 1);
off_t Delta = Offset - RealMapOffset;