summaryrefslogtreecommitdiffstats
path: root/lib/Support/MemoryBuffer.cpp
Commit message (Expand)AuthorAgeFilesLines
* Recommit "[Support] Add RetryAfterSignal helper function"Pavel Labath2017-06-291-8/+5
* Revert "[Support] Add RetryAfterSignal helper function" and subsequent fixPavel Labath2017-06-221-5/+8
* [Support] Add RetryAfterSignal helper functionPavel Labath2017-06-211-8/+5
* [Support] Add a function to check if a file resides locally.Zachary Turner2017-02-211-18/+16
* Try to fix line endings.Zachary Turner2017-02-211-457/+457
* Remove svn:eol-style property from 2 files.Zachary Turner2017-02-211-457/+457
* Add interface to compute number of physical cores on host systemTeresa Johnson2016-10-131-0/+12
* Use StringRef for MemoryBuffer identifier API (NFC)Mehdi Amini2016-10-011-5/+5
* Fix undefined behavior when compiling in C++14 mode (with sized deletionRichard Smith2016-02-041-0/+8
* Update to use new name alignTo().Rui Ueyama2016-01-141-1/+1
* [llvm-pdbdump] Provide a mechanism to dump the raw contents of a PDBDavid Majnemer2015-10-151-2/+3
* [UB] Fix yet another use of memcpy with a null pointer argument. I thinkChandler Carruth2015-08-041-1/+2
* Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko2015-06-231-2/+2
* Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko2015-06-191-2/+2
* Purge unused includes throughout libSupport.Benjamin Kramer2015-03-231-1/+0
* Pass EC by reference to MemoryBufferMMapFile to return error code.Yaron Keren2014-12-121-1/+1
* Remove a convoluted way of calling close by moving the call to the only caller.Rafael Espindola2014-12-111-1/+1
* Remove dead code. NFC.Rafael Espindola2014-12-041-1/+1
* [Support] Add MemoryBuffer::getFileSlice()Nick Kledzik2014-10-081-8/+15
* Remove the IsVolatileSize parameter of getOpenFileSlice.Rafael Espindola2014-10-071-2/+3
* Be consistent about using "const Twine &" for filenames.Rafael Espindola2014-10-071-22/+27
* Return a std::unique_ptr when creating a new MemoryBuffer.Rafael Espindola2014-08-271-34/+27
* Pass a MemoryBufferRef when we can avoid taking ownership.Rafael Espindola2014-08-261-0/+6
* Don't own the buffer in object::Binary.Rafael Espindola2014-08-191-0/+6
* Fix typo.Eric Christopher2014-08-091-1/+1
* Reword comment slightly.Eric Christopher2014-08-081-4/+3
* getNewMemBuffer memsets the buffer to zeros,Yaron Keren2014-08-061-1/+1
* MemoryBuffer: Don't use mmap when FileSize is multiple of 4k on Cygwin.NAKAMURA Takumi2014-08-041-0/+8
* Update the MemoryBuffer API to use ErrorOr.Rafael Espindola2014-07-061-69/+48
* Finishing touch for the std::error_code transition.Rafael Espindola2014-06-131-1/+2
* Fix build on windows.Rafael Espindola2014-06-131-1/+1
* Remove 'using std::errro_code' from lib.Rafael Espindola2014-06-131-53/+54
* Don't use 'using std::error_code' in include/llvm.Rafael Espindola2014-06-121-0/+1
* Remove system_error.h.Rafael Espindola2014-06-121-1/+1
* Don't import make_error_code into the llvm namespace.Rafael Espindola2014-06-121-1/+1
* Don't put generic_category in the llvm namespace.Rafael Espindola2014-06-121-3/+3
* Use std::error_code instead of llvm::error_code.Rafael Espindola2014-06-111-1/+1
* There is no posix_category in std, use generic_category.Rafael Espindola2014-06-111-3/+3
* Use error_code() instead of error_code::succes()Rafael Espindola2014-05-311-3/+3
* MemoryBuffer: Use GetNativeSystemInfo()Alp Toker2014-05-191-9/+0
* Remove last uses of OwningPtr from llvm. As far as I can tell these method ve...Craig Topper2014-05-181-52/+0
* MemoryBuffer: don't force mmap when stat failsAlp Toker2014-05-091-3/+2
* MemoryBuffer: remove unusued definitionsAlp Toker2014-05-091-8/+0
* [Support/MemoryBuffer] Remove the assertion that the file size did not shrink.Argyrios Kyrtzidis2014-05-061-3/+0
* [Support/MemoryBuffer] Rename IsVolatile -> IsVolatileSize and add a comment ...Argyrios Kyrtzidis2014-05-061-22/+23
* [Support/MemoryBuffer] Move the IsVolatile check inside shouldUseMmap() and m...Argyrios Kyrtzidis2014-05-061-7/+13
* [Support/MemoryBuffer] Introduce a boolean parameter (false by default) 'IsVo...Argyrios Kyrtzidis2014-05-051-18/+32
* [C++11] Make use of 'nullptr' in the Support library.Craig Topper2014-04-071-3/+3
* [C++11] Remove 'virtual' keyword from methods marked with 'override' keyword.Craig Topper2014-03-101-4/+4
* [C++11] Add overloads for externally used OwningPtr functions.Ahmed Charles2014-03-051-20/+68