aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/MemoryBuffer.cpp
Commit message (Expand)AuthorAgeFilesLines
* Put private class into an anonmyous namespace.Benjamin Kramer2013-03-301-0/+2
* [Support] Fix lifetime of file descriptors when using MemoryBuffer.Michael J. Spencer2013-03-141-1/+2
* [Support][MemoryBuffer] Use sys::fs::mapped_file_region instead of sys::Path:...Michael J. Spencer2013-03-121-35/+44
* In llvm::MemoryBuffer::getFile() remove an unnecessary stat call check.Argyrios Kyrtzidis2013-03-011-0/+3
* Update a portability kludge to keep it in sync with changes in the codeDan Gohman2013-02-191-2/+7
* Whitelist files and block devices instead of blacklisting fifos andDan Gohman2013-02-191-3/+4
* Don't trust st_size of a character device. This fixes usingDan Gohman2013-02-191-3/+3
* Go ahead and get rid of the old page size interface and convert all theChandler Carruth2012-12-311-2/+2
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-3/+3
* MemoryBuffer: Windows doesn't define S_IFIFO.Daniel Dunbar2012-11-061-1/+4
* MemoryBuffer: Support reading named pipes in getFile().Daniel Dunbar2012-11-051-16/+29
* Add LLVM_OVERRIDE to methods that override their base classes.Craig Topper2012-09-231-5/+5
* In MemoryBuffer::getOpenFile() don't verify that the mmap'edArgyrios Kyrtzidis2012-07-111-10/+0
* Remove an "else" that snuck in after a "return" ;)Kaelyn Uhrain2012-06-201-1/+1
* Check that a file is not a directory before reading it into a MemoryBuffer.Kaelyn Uhrain2012-06-201-0/+9
* In MemoryBuffer::getOpenFile() make sure that the buffer is null-terminated ifArgyrios Kyrtzidis2012-04-051-0/+11
* Add a sanity check in MemoryBuffer::getOpenFile() to make sure we don't hangArgyrios Kyrtzidis2012-03-131-1/+5
* Change default error_code ctor to a 'named ctor' so it's more self-documenting.David Blaikie2012-02-091-5/+3
* Add configure checking for pread(2) and use it to save a syscall when reading...Benjamin Kramer2011-11-221-0/+7
* Turn error recovery into an assert.Benjamin Kramer2011-11-221-6/+1
* Remove unused include of sys/uio.h in MemoryBuffer.cpp. It was not correctly ...David Meyer2011-10-201-1/+0
* use 64-bit types instead of off_t/size_t to avoid the issue whenIvan Krasin2011-09-151-4/+4
* random comment cleanups.Chris Lattner2011-05-221-4/+4
* Add MemoryBuffer::getBufferKind() to report whether a memory buffer uses mall...Ted Kremenek2011-04-281-0/+8
* We don't need a null terminator for the output file.Rafael Espindola2011-03-221-4/+8
* Check RequiresNullTerminator first, or we might read from an invalid address.Rafael Espindola2011-03-181-1/+1
* Use RequiresNullTerminator to create buffers without a null terminatorRafael Espindola2011-03-171-2/+4
* Don't compute the file size if we don't need to.Rafael Espindola2011-03-101-14/+29
* Add r127409 back now that the windows file was updated.Rafael Espindola2011-03-101-25/+74
* Revert r127409 which broke all the Windows bots.Jakob Stoklund Olesen2011-03-101-74/+25
* Add support for MemoryBuffers that are not null terminated and addRafael Espindola2011-03-101-25/+74
* Don't open the file again in the gold plugin. To be able to do this, updateRafael Espindola2011-02-081-12/+3
* Add missing standard headers. Patch by Joerg Sonnenberger!Nick Lewycky2010-12-191-0/+1
* MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer2010-12-161-34/+38
* Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...Michael J. Spencer2010-12-091-18/+20
* Merge System into Support.Michael J. Spencer2010-11-291-9/+9
* add a MemoryBuffer::getOpenFile method, which turns an openChris Lattner2010-11-231-0/+7
* Revert functionality doug added in r98575 that was neverChris Lattner2010-11-231-15/+11
* Rewrite MemoryBuffer::getSTDIN to use read(2) and a SmallVector buffer.Benjamin Kramer2010-06-251-15/+15
* Bring back the empty vector workaround I removed in r106839. Looks like MSVC ...Benjamin Kramer2010-06-251-1/+2
* Tweak MemoryBuffer to allocate the class itself, the name and possibly theBenjamin Kramer2010-06-251-70/+60
* Add overloads for getFile and getFileOrSTDIN which take a const char *Dan Gohman2010-06-241-3/+17
* Add an explicit keyword.Dan Gohman2010-06-221-1/+1
* Add basic error checking to MemoryBuffer::getSTDIN.Dan Gohman2010-05-271-2/+7
* stringref-ize the MemoryBuffer::get apis. This requiresChris Lattner2010-04-051-11/+8
* Remove accidental include and add a comment.Benjamin Kramer2010-04-011-2/+2
* Various improvements to MemoryBuffer::getFile:Benjamin Kramer2010-04-011-17/+26
* Extend MemoryBuffer::getFile() to take an optional "stat" structureDouglas Gregor2010-03-151-7/+10
* Replace a temporary std::string with SmallString.Benjamin Kramer2010-02-261-1/+2
* sizeof(char) is always 1.Chris Lattner2009-12-231-2/+2