- Aug 04, 2015
-
-
Chandler Carruth authored
this is the last of them in my build of LLVM. Haven't tried Clang yet. Found via UBSan. llvm-svn: 243934
-
- Jun 23, 2015
-
-
Alexander Kornienko authored
Apparently, the style needs to be agreed upon first. llvm-svn: 240390
-
- Jun 19, 2015
-
-
Alexander Kornienko authored
The patch is generated using this command: tools/clang/tools/extra/clang-tidy/tool/run-clang-tidy.py -fix \ -checks=-*,llvm-namespace-comment -header-filter='llvm/.*|clang/.*' \ llvm/lib/ Thanks to Eugene Kosov for the original patch! llvm-svn: 240137
-
- Mar 23, 2015
-
-
Benjamin Kramer authored
NFC. llvm-svn: 232976
-
- Dec 12, 2014
-
-
Yaron Keren authored
Patch by Kim Grasman! llvm-svn: 224159
-
- Dec 11, 2014
-
-
Rafael Espindola authored
As a bonus we can actually check the return value. llvm-svn: 224046
-
- Dec 04, 2014
-
-
Rafael Espindola authored
This interface was added 2 years ago but users never developed. llvm-svn: 223368
-
- Oct 08, 2014
-
-
Nick Kledzik authored
mach-o supports "fat" files which are a header/table-of-contents followed by a concatenation of mach-o files built for different architectures. Currently, MemoryBuffer has no easy way to map a subrange (slice) of a file which lld will need to select a mach-o slice of a fat file. The new function provides an easy way to map a slice of a file into a MemoryBuffer. Test case included. llvm-svn: 219260
-
- Oct 07, 2014
-
-
Rafael Espindola authored
getOpenFileSlice gets passed the map size, so it makes no sense to say that the size is volatile. The code will not even compute the size. llvm-svn: 219226
-
Rafael Espindola authored
On this file we had a mix of * Twine * const char * * StringRef The two that make sense are * const Twine & (caller convenience) * consc char * (that is what will eventually be passed to open. Given that sys::fs::openFileForRead takes a "const Twine &", I picked that. llvm-svn: 219224
-
- Aug 27, 2014
-
-
Rafael Espindola authored
llvm-svn: 216583
-
- Aug 26, 2014
-
-
Rafael Espindola authored
The attached patch simplifies a few interfaces that don't need to take ownership of a buffer. For example, both parseAssembly and parseBitcodeFile will parse the entire buffer before returning. There is no need to take ownership. Using a MemoryBufferRef makes it obvious in the type signature that there is no ownership transfer. llvm-svn: 216488
-
- Aug 19, 2014
-
-
Rafael Espindola authored
Owning the buffer is somewhat inflexible. Some Binaries have sub Binaries (like Archive) and we had to create dummy buffers just to handle that. It is also a bad fit for IRObjectFile where the Module wants to own the buffer too. Keeping this ownership would make supporting IR inside native objects particularly painful. This patch focuses in lib/Object. If something elsewhere used to own an Binary, now it also owns a MemoryBuffer. This patch introduces a few new types. * MemoryBufferRef. This is just a pair of StringRefs for the data and name. This is to MemoryBuffer as StringRef is to std::string. * OwningBinary. A combination of Binary and a MemoryBuffer. This is needed for convenience functions that take a filename and return both the buffer and the Binary using that buffer. The C api now uses OwningBinary to avoid any change in semantics. I will start a new thread to see if we want to change it and how. llvm-svn: 216002
-
- Aug 09, 2014
-
-
Eric Christopher authored
llvm-svn: 215266
-
Eric Christopher authored
llvm-svn: 215248
-
- Aug 06, 2014
-
-
Yaron Keren authored
the caller don't have to initialize it. llvm-svn: 214994
-
- Aug 04, 2014
-
-
NAKAMURA Takumi authored
On Cygwin, getpagesize() returns 64k(AllocationGranularity). In r214580, the size of X86GenInstrInfo.inc became 1499136. FIXME: We should reorganize again getPageSize() on Win32. MapFile allocates address along AllocationGranularity but view is mapped by physical page. llvm-svn: 214681
-
- Jul 06, 2014
-
-
Rafael Espindola authored
llvm-svn: 212405
-
- Jun 13, 2014
-
-
Rafael Espindola authored
While std::error_code itself seems to work OK in all platforms, there are few annoying differences with regards to the std::errc enumeration. This patch adds a simple llvm enumeration, which will hopefully avoid build breakages in other platforms and surprises as we get more uses of std::error_code. llvm-svn: 210920
-
Rafael Espindola authored
llvm-svn: 210873
-
Rafael Espindola authored
llvm-svn: 210871
-
- Jun 12, 2014
-
-
Rafael Espindola authored
This should make sure that most new uses use the std prefix. llvm-svn: 210835
-
Rafael Espindola authored
This is a minimal change to remove the header. I will remove the occurrences of "using std::error_code" in a followup patch. llvm-svn: 210803
-
Rafael Espindola authored
llvm-svn: 210772
-
Rafael Espindola authored
llvm-svn: 210737
-
- Jun 11, 2014
-
-
Rafael Espindola authored
The idea of this patch is to turn llvm/Support/system_error.h into a transitional header that just brings in the erorr_code api to the llvm namespace. I will remove it shortly afterwards. The cases where the general idea needed some tweaking: * std::errc is a namespace in msvc, so we cannot use "using std::errc". I could add an #ifdef, but there were not that many uses, so I just added std:: to them in this patch. * Template specialization had to be moved to the std namespace in this patch set already. * The msvc implementation of default_error_condition doesn't seem to provide the same transformations as we need. Not too surprising since the standard doesn't actually say what "equivalent" means. I fixed the problem by keeping our old mapping and using it at error_code construction time. Despite these shortcomings I think this is still a good thing. Some reasons: * The different implementations of system_error might improve over time. * It removes 925 lines of code from llvm already. * It removes 6313 bytes from the text segment of the clang binary when it is built with gcc and 2816 bytes when building with clang and libstdc++. llvm-svn: 210687
-
Rafael Espindola authored
llvm-svn: 210630
-
- May 31, 2014
-
-
Rafael Espindola authored
There is no std::error_code::success, so this removes much of the noise in transitioning to std::error_code. llvm-svn: 209952
-
- May 19, 2014
-
-
Alp Toker authored
Removes old 4096 byte workaround. This functionality has been available since Windows XP. llvm-svn: 209137
-
- May 18, 2014
-
-
Craig Topper authored
Remove last uses of OwningPtr from llvm. As far as I can tell these method versions are not used by lldb, lld, or clang. llvm-svn: 209103
-
- May 09, 2014
- May 07, 2014
-
-
Argyrios Kyrtzidis authored
This can happen in practice with the user changing files and we can recover from it. llvm-svn: 208143
-
- May 06, 2014
-
-
Argyrios Kyrtzidis authored
[Support/MemoryBuffer] Rename IsVolatile -> IsVolatileSize and add a comment about the use case for the new parameter. llvm-svn: 208026
-
Argyrios Kyrtzidis authored
[Support/MemoryBuffer] Move the IsVolatile check inside shouldUseMmap() and make sure to zero-initialize the rest of the buffer if we unexpectedly reach end-of-file while reading. llvm-svn: 208021
-
- May 05, 2014
-
-
Argyrios Kyrtzidis authored
[Support/MemoryBuffer] Introduce a boolean parameter (false by default) 'IsVolatile' for the open file functions. This provides a hint that the file may be changing often so mmap is avoided. llvm-svn: 208007
-
- Apr 07, 2014
-
-
Craig Topper authored
llvm-svn: 205697
-
- Mar 10, 2014
-
-
Craig Topper authored
llvm-svn: 203442
-
- Mar 05, 2014
-
-
Ahmed Charles authored
This will allow external callers of these functions to switch over time rather than forcing a breaking change all a once. These particular functions were determined by building clang/lld/lldb. llvm-svn: 202959
-
- Mar 02, 2014
-
-
Craig Topper authored
llvm-svn: 202621
-