Fix issue with bitwise and precedence.
[oota-llvm.git] / lib / Support / MemoryBuffer.cpp
2012-02-09 David BlaikieChange default error_code ctor to a 'named ctor' so...
2011-11-22 Benjamin KramerAdd configure checking for pread(2) and use it to save...
2011-11-22 Benjamin KramerTurn error recovery into an assert.
2011-10-20 David MeyerRemove unused include of sys/uio.h in MemoryBuffer...
2011-09-15 Ivan Krasinuse 64-bit types instead of off_t/size_t to avoid the...
2011-05-22 Chris Lattnerrandom comment cleanups.
2011-04-28 Ted KremenekAdd MemoryBuffer::getBufferKind() to report whether...
2011-03-22 Rafael EspindolaWe don't need a null terminator for the output file.
2011-03-18 Rafael EspindolaCheck RequiresNullTerminator first, or we might read...
2011-03-17 Rafael EspindolaUse RequiresNullTerminator to create buffers without...
2011-03-10 Rafael EspindolaDon't compute the file size if we don't need to.
2011-03-10 Rafael EspindolaAdd r127409 back now that the windows file was updated.
2011-03-10 Jakob Stoklund OlesenRevert r127409 which broke all the Windows bots.
2011-03-10 Rafael EspindolaAdd support for MemoryBuffers that are not null termina...
2011-02-08 Rafael EspindolaDon't open the file again in the gold plugin. To be...
2010-12-19 Nick LewyckyAdd missing standard headers. Patch by Joerg Sonnenberger!
2010-12-16 Michael J. SpencerMemoryBuffer now return an error_code and returns a...
2010-12-09 Michael J. SpencerSupport/MemoryBuffer: Replace all uses of std::string...
2010-11-29 Michael J. SpencerMerge System into Support.
2010-11-23 Chris Lattneradd a MemoryBuffer::getOpenFile method, which turns...
2010-11-23 Chris LattnerRevert functionality doug added in r98575 that was...
2010-06-25 Benjamin KramerRewrite MemoryBuffer::getSTDIN to use read(2) and a...
2010-06-25 Benjamin KramerBring back the empty vector workaround I removed in...
2010-06-25 Benjamin KramerTweak MemoryBuffer to allocate the class itself, the...
2010-06-24 Dan GohmanAdd overloads for getFile and getFileOrSTDIN which...
2010-06-22 Dan GohmanAdd an explicit keyword.
2010-05-27 Dan GohmanAdd basic error checking to MemoryBuffer::getSTDIN.
2010-04-05 Chris Lattnerstringref-ize the MemoryBuffer::get apis. This requires
2010-04-01 Benjamin KramerRemove accidental include and add a comment.
2010-04-01 Benjamin KramerVarious improvements to MemoryBuffer::getFile:
2010-03-15 Douglas GregorExtend MemoryBuffer::getFile() to take an optional...
2010-02-26 Benjamin KramerReplace a temporary std::string with SmallString.
2009-12-23 Chris Lattnersizeof(char) is always 1.
2009-12-01 Chris Lattnerreturn more useful error messages by using strerror...
2009-11-10 Daniel DunbarFix MemoryBuffer::getSTDIN to *not* return null if...
2009-11-04 Duncan SandsA value is only assigned to errno if NumRead equals...
2009-11-03 Duncan SandsMake this code more robust by not thinking we are makin...
2009-05-18 Eli FriedmanTweak MemoryBuffer::getSTDIN so that it returns after...
2009-02-13 Evan ChengSwitch from new[] + delete[] to malloc + free since...
2009-02-13 Evan ChengIf new[] fails, return 0 rather then trying to derefere...
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-04-30 Gabor Greiffcntl.h is pretty standard on unix (without the sys/)
2008-04-01 Bill WendlingFix compilation errors on MSVC. Patch by Argiris Kirtzidis!
2008-04-01 Chris LattnerChange the MemoryBuffer::getFile* methods to take just...
2008-04-01 Chris LattnerReimplement MemoryBuffer::getFile with three enhancements:
2008-04-01 Chris LattnerRemove the MappedFile::charBase member, rename base...
2008-04-01 Chris LattnerRemove MappedFile support for mapping files for write...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-11-18 Chris LattnerFix the Linker testcase regressions, by making MemoryBu...
2007-10-09 Chris LattnerAdd new MemoryBuffer::getMemBufferCopy method.
2007-08-08 Reid SpencerMake getSTDIN return null if the standard input is...
2007-07-01 Nick LewyckyFix undefined behaviour reported by the new --enable...
2007-05-11 Chris Lattnerfix a memory leak
2007-05-07 Jeff CohenUnbreak VC++ build.
2007-05-06 Chris LattnerEnhance MemoryBuffer to return error messages in string...
2007-05-06 Chris LattnerFix MemoryBuffer::getFile to return null if it has...
2007-04-29 Jeff CohenFix MemoryBuffer breakage correctly.
2007-04-29 Jeff CohenUnbreak build.
2007-04-29 Chris LattnerAdd a new memorybuffer class, to unify all the file...