summaryrefslogtreecommitdiff
path: root/lib/Support/MemoryBuffer.cpp
Commit message (Expand)AuthorAge
* Finishing touch for the std::error_code transition.Rafael Espindola2014-06-13
* Fix build on windows.Rafael Espindola2014-06-13
* Remove 'using std::errro_code' from lib.Rafael Espindola2014-06-13
* Don't use 'using std::error_code' in include/llvm.Rafael Espindola2014-06-12
* Remove system_error.h.Rafael Espindola2014-06-12
* Don't import make_error_code into the llvm namespace.Rafael Espindola2014-06-12
* Don't put generic_category in the llvm namespace.Rafael Espindola2014-06-12
* Use std::error_code instead of llvm::error_code.Rafael Espindola2014-06-11
* There is no posix_category in std, use generic_category.Rafael Espindola2014-06-11
* Use error_code() instead of error_code::succes()Rafael Espindola2014-05-31
* MemoryBuffer: Use GetNativeSystemInfo()Alp Toker2014-05-19
* Remove last uses of OwningPtr from llvm. As far as I can tell these method ve...Craig Topper2014-05-18
* MemoryBuffer: don't force mmap when stat failsAlp Toker2014-05-09
* MemoryBuffer: remove unusued definitionsAlp Toker2014-05-09
* [Support/MemoryBuffer] Remove the assertion that the file size did not shrink.Argyrios Kyrtzidis2014-05-06
* [Support/MemoryBuffer] Rename IsVolatile -> IsVolatileSize and add a comment ...Argyrios Kyrtzidis2014-05-06
* [Support/MemoryBuffer] Move the IsVolatile check inside shouldUseMmap() and m...Argyrios Kyrtzidis2014-05-06
* [Support/MemoryBuffer] Introduce a boolean parameter (false by default) 'IsVo...Argyrios Kyrtzidis2014-05-05
* [C++11] Make use of 'nullptr' in the Support library.Craig Topper2014-04-07
* [C++11] Remove 'virtual' keyword from methods marked with 'override' keyword.Craig Topper2014-03-10
* [C++11] Add overloads for externally used OwningPtr functions.Ahmed Charles2014-03-05
* Switch all uses of LLVM_OVERRIDE to just use 'override' directly.Craig Topper2014-03-02
* MemoryBuffer: Increase the alignment of small file buffers to 16Reid Kleckner2013-12-16
* Change MemoryBuffer::getFile to take a Twine.Rafael Espindola2013-10-25
* Fix typoMatt Arsenault2013-09-10
* MemoryBuffer.cpp: Don't peek the next page if file is multiple of *physical* ...NAKAMURA Takumi2013-09-04
* Whitespace.NAKAMURA Takumi2013-09-04
* MemoryBuffer.cpp: Consider if PageSize were not 4096 in shouldUseMmap(). Foll...NAKAMURA Takumi2013-08-22
* Split getOpenFile into getOpenFile and getOpenFileSlice.Rafael Espindola2013-07-23
* Convert two uses if fstat with sys::fs::status.Rafael Espindola2013-07-18
* Add a wrapper for open.Rafael Espindola2013-07-16
* Remove an extra is_directory call.Rafael Espindola2013-07-15
* keep only the StringRef version of getFileOrSTDIN.Rafael Espindola2013-06-25
* Remove the program class.Rafael Espindola2013-06-12
* Remove the old file memory mapping functions.Rafael Espindola2013-06-12
* Put private class into an anonmyous namespace.Benjamin Kramer2013-03-30
* [Support] Fix lifetime of file descriptors when using MemoryBuffer.Michael J. Spencer2013-03-14
* [Support][MemoryBuffer] Use sys::fs::mapped_file_region instead of sys::Path:...Michael J. Spencer2013-03-12
* In llvm::MemoryBuffer::getFile() remove an unnecessary stat call check.Argyrios Kyrtzidis2013-03-01
* Update a portability kludge to keep it in sync with changes in the codeDan Gohman2013-02-19
* Whitelist files and block devices instead of blacklisting fifos andDan Gohman2013-02-19
* Don't trust st_size of a character device. This fixes usingDan Gohman2013-02-19
* Go ahead and get rid of the old page size interface and convert all theChandler Carruth2012-12-31
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* MemoryBuffer: Windows doesn't define S_IFIFO.Daniel Dunbar2012-11-06
* MemoryBuffer: Support reading named pipes in getFile().Daniel Dunbar2012-11-05
* Add LLVM_OVERRIDE to methods that override their base classes.Craig Topper2012-09-23
* In MemoryBuffer::getOpenFile() don't verify that the mmap'edArgyrios Kyrtzidis2012-07-11
* Remove an "else" that snuck in after a "return" ;)Kaelyn Uhrain2012-06-20
* Check that a file is not a directory before reading it into a MemoryBuffer.Kaelyn Uhrain2012-06-20