Remove the IsVolatileSize parameter of getOpenFileSlice.
[oota-llvm.git] / lib / Support / MemoryBuffer.cpp
2014-10-07 Rafael EspindolaRemove the IsVolatileSize parameter of getOpenFileSlice.
2014-10-07 Rafael EspindolaBe consistent about using "const Twine &" for filenames.
2014-08-27 Rafael EspindolaReturn a std::unique_ptr when creating a new MemoryBuffer.
2014-08-26 Rafael EspindolaPass a MemoryBufferRef when we can avoid taking ownership.
2014-08-19 Rafael EspindolaDon't own the buffer in object::Binary.
2014-08-09 Eric ChristopherFix typo.
2014-08-08 Eric ChristopherReword comment slightly.
2014-08-06 Yaron KerengetNewMemBuffer memsets the buffer to zeros,
2014-08-04 NAKAMURA TakumiMemoryBuffer: Don't use mmap when FileSize is multiple...
2014-07-06 Rafael EspindolaUpdate the MemoryBuffer API to use ErrorOr.
2014-06-13 Rafael EspindolaFinishing touch for the std::error_code transition.
2014-06-13 Rafael EspindolaFix build on windows.
2014-06-13 Rafael EspindolaRemove 'using std::errro_code' from lib.
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-06-12 Rafael EspindolaRemove system_error.h.
2014-06-12 Rafael EspindolaDon't import make_error_code into the llvm namespace.
2014-06-12 Rafael EspindolaDon't put generic_category in the llvm namespace.
2014-06-11 Rafael EspindolaUse std::error_code instead of llvm::error_code.
2014-06-11 Rafael EspindolaThere is no posix_category in std, use generic_category.
2014-05-31 Rafael EspindolaUse error_code() instead of error_code::succes()
2014-05-19 Alp TokerMemoryBuffer: Use GetNativeSystemInfo()
2014-05-18 Craig TopperRemove last uses of OwningPtr from llvm. As far as...
2014-05-09 Alp TokerMemoryBuffer: don't force mmap when stat fails
2014-05-09 Alp TokerMemoryBuffer: remove unusued definitions
2014-05-06 Argyrios Kyrtzidis[Support/MemoryBuffer] Remove the assertion that the...
2014-05-06 Argyrios Kyrtzidis[Support/MemoryBuffer] Rename IsVolatile -> IsVolatileS...
2014-05-06 Argyrios Kyrtzidis[Support/MemoryBuffer] Move the IsVolatile check inside...
2014-05-05 Argyrios Kyrtzidis[Support/MemoryBuffer] Introduce a boolean parameter...
2014-04-07 Craig Topper[C++11] Make use of 'nullptr' in the Support library.
2014-03-10 Craig Topper[C++11] Remove 'virtual' keyword from methods marked...
2014-03-05 Ahmed Charles[C++11] Add overloads for externally used OwningPtr...
2014-03-02 Craig TopperSwitch all uses of LLVM_OVERRIDE to just use 'override...
2013-12-16 Reid KlecknerMemoryBuffer: Increase the alignment of small file...
2013-10-25 Rafael EspindolaChange MemoryBuffer::getFile to take a Twine.
2013-09-10 Matt ArsenaultFix typo
2013-09-04 NAKAMURA TakumiMemoryBuffer.cpp: Don't peek the next page if file...
2013-09-04 NAKAMURA TakumiWhitespace.
2013-08-22 NAKAMURA TakumiMemoryBuffer.cpp: Consider if PageSize were not 4096...
2013-07-23 Rafael EspindolaSplit getOpenFile into getOpenFile and getOpenFileSlice.
2013-07-18 Rafael EspindolaConvert two uses if fstat with sys::fs::status.
2013-07-16 Rafael EspindolaAdd a wrapper for open.
2013-07-15 Rafael EspindolaRemove an extra is_directory call.
2013-06-25 Rafael Espindolakeep only the StringRef version of getFileOrSTDIN.
2013-06-12 Rafael EspindolaRemove the program class.
2013-06-12 Rafael EspindolaRemove the old file memory mapping functions.
2013-03-30 Benjamin KramerPut private class into an anonmyous namespace.
2013-03-14 Michael J. Spencer[Support] Fix lifetime of file descriptors when using...
2013-03-12 Michael J. Spencer[Support][MemoryBuffer] Use sys::fs::mapped_file_region...
2013-03-01 Argyrios KyrtzidisIn llvm::MemoryBuffer::getFile() remove an unnecessary...
2013-02-19 Dan GohmanUpdate a portability kludge to keep it in sync with...
2013-02-19 Dan GohmanWhitelist files and block devices instead of blacklisti...
2013-02-19 Dan GohmanDon't trust st_size of a character device. This fixes...
2012-12-31 Chandler CarruthGo ahead and get rid of the old page size interface...
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-11-06 Daniel DunbarMemoryBuffer: Windows doesn't define S_IFIFO.
2012-11-05 Daniel DunbarMemoryBuffer: Support reading named pipes in getFile().
2012-09-23 Craig TopperAdd LLVM_OVERRIDE to methods that override their base...
2012-07-11 Argyrios KyrtzidisIn MemoryBuffer::getOpenFile() don't verify that the...
2012-06-20 Kaelyn UhrainRemove an "else" that snuck in after a "return" ;)
2012-06-20 Kaelyn UhrainCheck that a file is not a directory before reading...
2012-04-05 Argyrios KyrtzidisIn MemoryBuffer::getOpenFile() make sure that the buffe...
2012-03-13 Argyrios KyrtzidisAdd a sanity check in MemoryBuffer::getOpenFile() to...
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...
next