Age | Commit message (Expand) | Author |
2010-11-29 | Merge System into Support. | Michael J. Spencer |
2010-11-23 | add a MemoryBuffer::getOpenFile method, which turns an open | Chris Lattner |
2010-11-23 | Revert functionality doug added in r98575 that was never | Chris Lattner |
2010-06-25 | Rewrite MemoryBuffer::getSTDIN to use read(2) and a SmallVector buffer. | Benjamin Kramer |
2010-06-25 | Bring back the empty vector workaround I removed in r106839. Looks like MSVC ... | Benjamin Kramer |
2010-06-25 | Tweak MemoryBuffer to allocate the class itself, the name and possibly the | Benjamin Kramer |
2010-06-24 | Add overloads for getFile and getFileOrSTDIN which take a const char * | Dan Gohman |
2010-06-22 | Add an explicit keyword. | Dan Gohman |
2010-05-27 | Add basic error checking to MemoryBuffer::getSTDIN. | Dan Gohman |
2010-04-05 | stringref-ize the MemoryBuffer::get apis. This requires | Chris Lattner |
2010-04-01 | Remove accidental include and add a comment. | Benjamin Kramer |
2010-04-01 | Various improvements to MemoryBuffer::getFile: | Benjamin Kramer |
2010-03-15 | Extend MemoryBuffer::getFile() to take an optional "stat" structure | Douglas Gregor |
2010-02-26 | Replace a temporary std::string with SmallString. | Benjamin Kramer |
2009-12-23 | sizeof(char) is always 1. | Chris Lattner |
2009-12-01 | return more useful error messages by using strerror to format errno | Chris Lattner |
2009-11-10 | Fix MemoryBuffer::getSTDIN to *not* return null if stdin is empty, this is a ... | Daniel Dunbar |
2009-11-04 | A value is only assigned to errno if NumRead equals -1, so do | Duncan Sands |
2009-11-03 | Make this code more robust by not thinking we are making progress | Duncan Sands |
2009-05-18 | Tweak MemoryBuffer::getSTDIN so that it returns after the first EOF. | Eli Friedman |
2009-02-13 | Switch from new[] + delete[] to malloc + free since llvm does not catch C++ e... | Evan Cheng |
2009-02-13 | If new[] fails, return 0 rather then trying to dereference a null pointer. | Evan Cheng |
2008-05-05 | Fix more -Wshorten-64-to-32 warnings. | Evan Cheng |
2008-04-30 | fcntl.h is pretty standard on unix (without the sys/) | Gabor Greif |
2008-04-01 | Fix compilation errors on MSVC. Patch by Argiris Kirtzidis! | Bill Wendling |
2008-04-01 | Change the MemoryBuffer::getFile* methods to take just a pointer to the | Chris Lattner |
2008-04-01 | Reimplement MemoryBuffer::getFile with three enhancements: | Chris Lattner |
2008-04-01 | Remove the MappedFile::charBase member, rename base -> getBase() and | Chris Lattner |
2008-04-01 | Remove MappedFile support for mapping files for write and exec | Chris Lattner |
2007-12-29 | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner |
2007-11-18 | Fix the Linker testcase regressions, by making MemoryBuffer::getFileOrSTDIN r... | Chris Lattner |
2007-10-09 | Add new MemoryBuffer::getMemBufferCopy method. | Chris Lattner |
2007-08-08 | Make getSTDIN return null if the standard input is empty, as the header file | Reid Spencer |
2007-07-01 | Fix undefined behaviour reported by the new --enable-expensive-checks option. | Nick Lewycky |
2007-05-11 | fix a memory leak | Chris Lattner |
2007-05-07 | Unbreak VC++ build. | Jeff Cohen |
2007-05-06 | Enhance MemoryBuffer to return error messages in strings if they occur. | Chris Lattner |
2007-05-06 | Fix MemoryBuffer::getFile to return null if it has an error opening the | Chris Lattner |
2007-04-29 | Fix MemoryBuffer breakage correctly. | Jeff Cohen |
2007-04-29 | Unbreak build. | Jeff Cohen |
2007-04-29 | Add a new memorybuffer class, to unify all the file reading code in the system | Chris Lattner |