index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Support
/
MemoryBuffer.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Change MemoryBuffer::getFile to take a Twine.
Rafael Espindola
2013-10-25
1
-8
/
+12
*
Fix typo
Matt Arsenault
2013-09-10
1
-1
/
+1
*
MemoryBuffer.cpp: Don't peek the next page if file is multiple of *physical* ...
NAKAMURA Takumi
2013-09-04
1
-0
/
+9
*
Whitespace.
NAKAMURA Takumi
2013-09-04
1
-1
/
+1
*
MemoryBuffer.cpp: Consider if PageSize were not 4096 in shouldUseMmap(). Foll...
NAKAMURA Takumi
2013-08-22
1
-1
/
+1
*
Split getOpenFile into getOpenFile and getOpenFileSlice.
Rafael Espindola
2013-07-23
1
-7
/
+25
*
Convert two uses if fstat with sys::fs::status.
Rafael Espindola
2013-07-18
1
-14
/
+13
*
Add a wrapper for open.
Rafael Espindola
2013-07-16
1
-8
/
+4
*
Remove an extra is_directory call.
Rafael Espindola
2013-07-15
1
-11
/
+0
*
keep only the StringRef version of getFileOrSTDIN.
Rafael Espindola
2013-06-25
1
-8
/
+0
*
Remove the program class.
Rafael Espindola
2013-06-12
1
-1
/
+1
*
Remove the old file memory mapping functions.
Rafael Espindola
2013-06-12
1
-2
/
+1
*
Put private class into an anonmyous namespace.
Benjamin Kramer
2013-03-30
1
-0
/
+2
*
[Support] Fix lifetime of file descriptors when using MemoryBuffer.
Michael J. Spencer
2013-03-14
1
-1
/
+2
*
[Support][MemoryBuffer] Use sys::fs::mapped_file_region instead of sys::Path:...
Michael J. Spencer
2013-03-12
1
-35
/
+44
*
In llvm::MemoryBuffer::getFile() remove an unnecessary stat call check.
Argyrios Kyrtzidis
2013-03-01
1
-0
/
+3
*
Update a portability kludge to keep it in sync with changes in the code
Dan Gohman
2013-02-19
1
-2
/
+7
*
Whitelist files and block devices instead of blacklisting fifos and
Dan Gohman
2013-02-19
1
-3
/
+4
*
Don't trust st_size of a character device. This fixes using
Dan Gohman
2013-02-19
1
-3
/
+3
*
Go ahead and get rid of the old page size interface and convert all the
Chandler Carruth
2012-12-31
1
-2
/
+2
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-3
/
+3
*
MemoryBuffer: Windows doesn't define S_IFIFO.
Daniel Dunbar
2012-11-06
1
-1
/
+4
*
MemoryBuffer: Support reading named pipes in getFile().
Daniel Dunbar
2012-11-05
1
-16
/
+29
*
Add LLVM_OVERRIDE to methods that override their base classes.
Craig Topper
2012-09-23
1
-5
/
+5
*
In MemoryBuffer::getOpenFile() don't verify that the mmap'ed
Argyrios Kyrtzidis
2012-07-11
1
-10
/
+0
*
Remove an "else" that snuck in after a "return" ;)
Kaelyn Uhrain
2012-06-20
1
-1
/
+1
*
Check that a file is not a directory before reading it into a MemoryBuffer.
Kaelyn Uhrain
2012-06-20
1
-0
/
+9
*
In MemoryBuffer::getOpenFile() make sure that the buffer is null-terminated if
Argyrios Kyrtzidis
2012-04-05
1
-0
/
+11
*
Add a sanity check in MemoryBuffer::getOpenFile() to make sure we don't hang
Argyrios Kyrtzidis
2012-03-13
1
-1
/
+5
*
Change default error_code ctor to a 'named ctor' so it's more self-documenting.
David Blaikie
2012-02-09
1
-5
/
+3
*
Add configure checking for pread(2) and use it to save a syscall when reading...
Benjamin Kramer
2011-11-22
1
-0
/
+7
*
Turn error recovery into an assert.
Benjamin Kramer
2011-11-22
1
-6
/
+1
*
Remove unused include of sys/uio.h in MemoryBuffer.cpp. It was not correctly ...
David Meyer
2011-10-20
1
-1
/
+0
*
use 64-bit types instead of off_t/size_t to avoid the issue when
Ivan Krasin
2011-09-15
1
-4
/
+4
*
random comment cleanups.
Chris Lattner
2011-05-22
1
-4
/
+4
*
Add MemoryBuffer::getBufferKind() to report whether a memory buffer uses mall...
Ted Kremenek
2011-04-28
1
-0
/
+8
*
We don't need a null terminator for the output file.
Rafael Espindola
2011-03-22
1
-4
/
+8
*
Check RequiresNullTerminator first, or we might read from an invalid address.
Rafael Espindola
2011-03-18
1
-1
/
+1
*
Use RequiresNullTerminator to create buffers without a null terminator
Rafael Espindola
2011-03-17
1
-2
/
+4
*
Don't compute the file size if we don't need to.
Rafael Espindola
2011-03-10
1
-14
/
+29
*
Add r127409 back now that the windows file was updated.
Rafael Espindola
2011-03-10
1
-25
/
+74
*
Revert r127409 which broke all the Windows bots.
Jakob Stoklund Olesen
2011-03-10
1
-74
/
+25
*
Add support for MemoryBuffers that are not null terminated and add
Rafael Espindola
2011-03-10
1
-25
/
+74
*
Don't open the file again in the gold plugin. To be able to do this, update
Rafael Espindola
2011-02-08
1
-12
/
+3
*
Add missing standard headers. Patch by Joerg Sonnenberger!
Nick Lewycky
2010-12-19
1
-0
/
+1
*
MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...
Michael J. Spencer
2010-12-16
1
-34
/
+38
*
Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...
Michael J. Spencer
2010-12-09
1
-18
/
+20
*
Merge System into Support.
Michael J. Spencer
2010-11-29
1
-9
/
+9
*
add a MemoryBuffer::getOpenFile method, which turns an open
Chris Lattner
2010-11-23
1
-0
/
+7
*
Revert functionality doug added in r98575 that was never
Chris Lattner
2010-11-23
1
-15
/
+11
[next]