aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/MemoryBuffer.h
Commit message (Expand)AuthorAgeFilesLines
* use 64-bit types instead of off_t/size_t to avoid the issue whenIvan Krasin2011-09-151-3/+3
* random comment cleanups.Chris Lattner2011-05-221-1/+1
* Add MemoryBuffer::getBufferKind() to report whether a memory buffer uses mall...Ted Kremenek2011-04-281-0/+15
* We don't need a null terminator for the output file.Rafael Espindola2011-03-221-2/+4
* Use RequiresNullTerminator to create buffers without a null terminatorRafael Espindola2011-03-171-1/+2
* Add r127409 back now that the windows file was updated.Rafael Espindola2011-03-101-2/+6
* Revert r127409 which broke all the Windows bots.Jakob Stoklund Olesen2011-03-101-6/+2
* Add support for MemoryBuffers that are not null terminated and addRafael Espindola2011-03-101-2/+6
* Don't open the file again in the gold plugin. To be able to do this, updateRafael Espindola2011-02-081-2/+1
* MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer2010-12-161-14/+16
* Fix whitespace.Michael J. Spencer2010-12-091-1/+1
* Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...Michael J. Spencer2010-12-091-12/+13
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* add a MemoryBuffer::getOpenFile method, which turns an openChris Lattner2010-11-231-4/+9
* Revert functionality doug added in r98575 that was neverChris Lattner2010-11-231-9/+4
* There is no EndPtr anymore - reinterpret the original comment in termsDuncan Sands2010-11-101-3/+3
* Tweak MemoryBuffer to allocate the class itself, the name and possibly theBenjamin Kramer2010-06-251-9/+6
* Add overloads for getFile and getFileOrSTDIN which take a const char *Dan Gohman2010-06-241-0/+8
* Add a comment explaining a non-obvious API.Dan Gohman2010-06-221-0/+5
* Add basic error checking to MemoryBuffer::getSTDIN.Dan Gohman2010-05-271-1/+2
* stringref-ize the MemoryBuffer::get apis. This requiresChris Lattner2010-04-051-2/+2
* Extend MemoryBuffer::getFile() to take an optional "stat" structureDouglas Gregor2010-03-151-2/+5
* Remove spurious @verbatim. Patch by Timo Juhani Lindfors!Jeffrey Yasskin2009-11-181-1/+1
* Fix MemoryBuffer::getSTDIN to *not* return null if stdin is empty, this is a ...Daniel Dunbar2009-11-101-16/+5
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* Add MemoryBuffer::getBuffer() -> StringRef.Daniel Dunbar2009-08-241-0/+5
* Removed trailing whitespace.Misha Brukman2009-02-201-9/+9
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-051-3/+3
* Change the MemoryBuffer::getFile* methods to take just a pointer to theChris Lattner2008-04-011-3/+3
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Fix the Linker testcase regressions, by making MemoryBuffer::getFileOrSTDIN r...Chris Lattner2007-11-181-6/+3
* Add new MemoryBuffer::getMemBufferCopy method.Chris Lattner2007-10-091-0/+6
* Make it clear that getSTDIN returns null when stdin is empty.Reid Spencer2007-08-081-1/+1
* Fix minor doxygen nits.Reid Spencer2007-08-051-1/+1
* Enhance MemoryBuffer to return error messages in strings if they occur.Chris Lattner2007-05-061-2/+14
* Add a helper that either opens a file or stdin.Chris Lattner2007-05-061-0/+11
* Add a new memorybuffer class, to unify all the file reading code in the systemChris Lattner2007-04-291-0/+83