blob: b2c561c77a0798d2f797be4c58696fba2e4d0a68 [file] [log] [blame]
Chris Lattneree2d1f12007-04-29 06:58:52 +00001//===--- MemoryBuffer.cpp - Memory Buffer implementation ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the MemoryBuffer interface.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Support/MemoryBuffer.h"
15#include "llvm/System/MappedFile.h"
16#include "llvm/System/Process.h"
Jeff Cohen50b2d2c62007-04-29 14:21:44 +000017#include <cassert>
Chris Lattneree2d1f12007-04-29 06:58:52 +000018#include <cstdio>
19#include <cstring>
20#include <cerrno>
21using namespace llvm;
22
23//===----------------------------------------------------------------------===//
24// MemoryBuffer implementation itself.
25//===----------------------------------------------------------------------===//
26
27MemoryBuffer::~MemoryBuffer() {
28 if (MustDeleteBuffer)
29 delete [] BufferStart;
30}
31
32/// initCopyOf - Initialize this source buffer with a copy of the specified
33/// memory range. We make the copy so that we can null terminate it
34/// successfully.
35void MemoryBuffer::initCopyOf(const char *BufStart, const char *BufEnd) {
36 size_t Size = BufEnd-BufStart;
37 BufferStart = new char[Size+1];
38 BufferEnd = BufferStart+Size;
39 memcpy(const_cast<char*>(BufferStart), BufStart, Size);
40 *const_cast<char*>(BufferEnd) = 0; // Null terminate buffer.
41 MustDeleteBuffer = false;
42}
43
44/// init - Initialize this MemoryBuffer as a reference to externally allocated
45/// memory, memory that we know is already null terminated.
46void MemoryBuffer::init(const char *BufStart, const char *BufEnd) {
47 assert(BufEnd[0] == 0 && "Buffer is not null terminated!");
48 BufferStart = BufStart;
49 BufferEnd = BufEnd;
50 MustDeleteBuffer = false;
51}
52
53//===----------------------------------------------------------------------===//
54// MemoryBufferMem implementation.
55//===----------------------------------------------------------------------===//
56
57namespace {
58class MemoryBufferMem : public MemoryBuffer {
59 std::string FileID;
60public:
61 MemoryBufferMem(const char *Start, const char *End, const char *FID)
62 : FileID(FID) {
63 init(Start, End);
64 }
65
66 virtual const char *getBufferIdentifier() const {
67 return FileID.c_str();
68 }
69};
70}
71
72/// getMemBuffer - Open the specified memory range as a MemoryBuffer. Note
73/// that EndPtr[0] must be a null byte and be accessible!
74MemoryBuffer *MemoryBuffer::getMemBuffer(const char *StartPtr,
75 const char *EndPtr,
76 const char *BufferName) {
77 return new MemoryBufferMem(StartPtr, EndPtr, BufferName);
78}
79
80/// getNewUninitMemBuffer - Allocate a new MemoryBuffer of the specified size
81/// that is completely initialized to zeros. Note that the caller should
82/// initialize the memory allocated by this method. The memory is owned by
83/// the MemoryBuffer object.
84MemoryBuffer *MemoryBuffer::getNewUninitMemBuffer(unsigned Size,
85 const char *BufferName) {
86 char *Buf = new char[Size+1];
87 Buf[Size] = 0;
88 MemoryBufferMem *SB = new MemoryBufferMem(Buf, Buf+Size, BufferName);
89 // The memory for this buffer is owned by the MemoryBuffer.
90 SB->MustDeleteBuffer = true;
91 return SB;
92}
93
94/// getNewMemBuffer - Allocate a new MemoryBuffer of the specified size that
95/// is completely initialized to zeros. Note that the caller should
96/// initialize the memory allocated by this method. The memory is owned by
97/// the MemoryBuffer object.
98MemoryBuffer *MemoryBuffer::getNewMemBuffer(unsigned Size,
99 const char *BufferName) {
100 MemoryBuffer *SB = getNewUninitMemBuffer(Size, BufferName);
101 memset(const_cast<char*>(SB->getBufferStart()), 0, Size+1);
102 return SB;
103}
104
105
106//===----------------------------------------------------------------------===//
107// MemoryBufferMMapFile implementation.
108//===----------------------------------------------------------------------===//
109
110namespace {
111class MemoryBufferMMapFile : public MemoryBuffer {
112 sys::MappedFile File;
113public:
Chris Lattner5db36d32007-05-06 07:24:46 +0000114 MemoryBufferMMapFile() {}
115
Chris Lattner275757a2007-05-06 23:32:36 +0000116 bool open(const sys::Path &Filename, std::string *ErrStr);
Chris Lattneree2d1f12007-04-29 06:58:52 +0000117
118 virtual const char *getBufferIdentifier() const {
119 return File.path().c_str();
120 }
121
122 ~MemoryBufferMMapFile();
123};
124}
125
Chris Lattner275757a2007-05-06 23:32:36 +0000126bool MemoryBufferMMapFile::open(const sys::Path &Filename,
127 std::string *ErrStr) {
Chris Lattneree2d1f12007-04-29 06:58:52 +0000128 // FIXME: This does an extra stat syscall to figure out the size, but we
129 // already know the size!
Chris Lattner275757a2007-05-06 23:32:36 +0000130 bool Failure = File.open(Filename, sys::MappedFile::READ_ACCESS, ErrStr);
Chris Lattner5db36d32007-05-06 07:24:46 +0000131 if (Failure) return true;
Chris Lattneree2d1f12007-04-29 06:58:52 +0000132
Chris Lattner275757a2007-05-06 23:32:36 +0000133 if (!File.map(ErrStr))
134 return true;
Chris Lattneree2d1f12007-04-29 06:58:52 +0000135
136 size_t Size = File.size();
137
138 static unsigned PageSize = sys::Process::GetPageSize();
139 assert(((PageSize & (PageSize-1)) == 0) && PageSize &&
140 "Page size is not a power of 2!");
141
142 // If this file is not an exact multiple of the system page size (common
143 // case), then the OS has zero terminated the buffer for us.
144 if ((Size & (PageSize-1))) {
145 init(File.charBase(), File.charBase()+Size);
146 } else {
147 // Otherwise, we allocate a new memory buffer and copy the data over
148 initCopyOf(File.charBase(), File.charBase()+Size);
149
150 // No need to keep the file mapped any longer.
151 File.unmap();
152 }
Chris Lattner5db36d32007-05-06 07:24:46 +0000153 return false;
Chris Lattneree2d1f12007-04-29 06:58:52 +0000154}
155
156MemoryBufferMMapFile::~MemoryBufferMMapFile() {
Chris Lattner5db36d32007-05-06 07:24:46 +0000157 if (File.isMapped())
158 File.unmap();
Chris Lattneree2d1f12007-04-29 06:58:52 +0000159}
160
161//===----------------------------------------------------------------------===//
162// MemoryBuffer::getFile implementation.
163//===----------------------------------------------------------------------===//
164
165MemoryBuffer *MemoryBuffer::getFile(const char *FilenameStart, unsigned FnSize,
Chris Lattner275757a2007-05-06 23:32:36 +0000166 std::string *ErrStr, int64_t FileSize){
167 // FIXME: it would be nice if PathWithStatus didn't copy the filename into a
168 // temporary string. :(
Jeff Cohen990a58f2007-04-29 14:43:31 +0000169 sys::PathWithStatus P(FilenameStart, FnSize);
Chris Lattneree2d1f12007-04-29 06:58:52 +0000170#if 1
Chris Lattner5db36d32007-05-06 07:24:46 +0000171 MemoryBufferMMapFile *M = new MemoryBufferMMapFile();
Chris Lattner275757a2007-05-06 23:32:36 +0000172 if (!M->open(P, ErrStr))
Chris Lattner5db36d32007-05-06 07:24:46 +0000173 return M;
174 delete M;
175 return 0;
Chris Lattneree2d1f12007-04-29 06:58:52 +0000176#else
177 // FIXME: We need an efficient and portable method to open a file and then use
178 // 'read' to copy the bits out. The unix implementation is below. This is
179 // an important optimization for clients that want to open large numbers of
180 // small files (using mmap on everything can easily exhaust address space!).
181
182 // If the user didn't specify a filesize, do a stat to find it.
183 if (FileSize == -1) {
184 const sys::FileStatus *FS = P.getFileStatus();
185 if (FS == 0) return 0; // Error stat'ing file.
186
187 FileSize = FS->fileSize;
188 }
189
190 // If the file is larger than some threshold, use mmap, otherwise use 'read'.
Chris Lattner5db36d32007-05-06 07:24:46 +0000191 if (FileSize >= 4096*4) {
192 MemoryBufferMMapFile *M = new MemoryBufferMMapFile();
Chris Lattner275757a2007-05-06 23:32:36 +0000193 if (!M->open(P, ErrStr))
Chris Lattner5db36d32007-05-06 07:24:46 +0000194 return M;
195 delete M;
196 return 0;
197 }
Chris Lattneree2d1f12007-04-29 06:58:52 +0000198
199 MemoryBuffer *SB = getNewUninitMemBuffer(FileSize, FilenameStart);
200 char *BufPtr = const_cast<char*>(SB->getBufferStart());
201
202 int FD = ::open(FilenameStart, O_RDONLY);
203 if (FD == -1) {
204 delete SB;
205 return 0;
206 }
207
208 unsigned BytesLeft = FileSize;
209 while (BytesLeft) {
210 ssize_t NumRead = ::read(FD, BufPtr, BytesLeft);
211 if (NumRead != -1) {
212 BytesLeft -= NumRead;
213 BufPtr += NumRead;
214 } else if (errno == EINTR) {
215 // try again
216 } else {
217 // error reading.
218 close(FD);
219 delete SB;
220 return 0;
221 }
222 }
223 close(FD);
224
225 return SB;
226#endif
227}
228
229
230//===----------------------------------------------------------------------===//
231// MemoryBuffer::getSTDIN implementation.
232//===----------------------------------------------------------------------===//
233
234namespace {
235class STDINBufferFile : public MemoryBuffer {
236public:
237 virtual const char *getBufferIdentifier() const {
238 return "<stdin>";
239 }
240};
241}
242
243MemoryBuffer *MemoryBuffer::getSTDIN() {
244 char Buffer[4096*4];
245
246 std::vector<char> FileData;
247
248 // Read in all of the data from stdin, we cannot mmap stdin.
249 while (size_t ReadBytes = fread(Buffer, 1, 4096*4, stdin))
250 FileData.insert(FileData.end(), Buffer, Buffer+ReadBytes);
251
252 size_t Size = FileData.size();
253 MemoryBuffer *B = new STDINBufferFile();
254 B->initCopyOf(&FileData[0], &FileData[Size]);
255 return B;
256}