| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix MSVC "result of 32-bit shift implicitly converted to 64 bits" warnings. N... | Simon Pilgrim | 2019-10-18 | 1 | -1/+1 |
| * | [Object] Extend MachOUniversalBinary::getObjectForArch | Alexander Shaposhnikov | 2019-09-19 | 1 | -4/+19 |
| * | [Object] Add public MaxSectionAlignment to MachOUniversal | Shoaib Meenai | 2019-07-25 | 1 | -6/+7 |
| * | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
| * | Fix a bugs with using some Mach-O command line flags like "-arch armv7m". | Kevin Enderby | 2016-12-16 | 1 | -1/+1 |
| * | Add error checking for Mach-O universal files. | Kevin Enderby | 2016-11-28 | 1 | -6/+67 |
| * | Make the Error class constructor protected | Mehdi Amini | 2016-11-11 | 1 | -1/+1 |
| * | [lib/Object] Modernize. NFCI. | Davide Italiano | 2016-11-07 | 1 | -4/+3 |
| * | nother additional error check for an invalid Mach-O file | Kevin Enderby | 2016-10-24 | 1 | -3/+7 |
| * | [Support] Make ErrorAsOutParameter take an Error* rather than an Error&. | Lang Hames | 2016-07-22 | 1 | -1/+1 |
| * | Change Archive::create() from ErrorOr<...> to Expected<...> and update | Kevin Enderby | 2016-06-29 | 1 | -1/+1 |
| * | [Object] Fix a -Wpessimizing-move error; clang-format; NFC | Vedant Kumar | 2016-06-29 | 1 | -5/+8 |
| * | Finish cleaning up most of the error handling in libObject’s MachOUniversal... | Kevin Enderby | 2016-06-28 | 1 | -6/+12 |
| * | Change all but the last ErrorOr<...> use for MachOUniversalBinary to Expected... | Kevin Enderby | 2016-06-27 | 1 | -11/+22 |
| * | [MachO] Finish moving fat header swap functions to MachO.h | Chris Bieneman | 2016-06-22 | 1 | -29/+1 |
| * | Add support for Darwin’s 64-bit universal files with 64-bit offsets and siz... | Kevin Enderby | 2016-06-20 | 1 | -11/+47 |
| * | Change llvm-objdump, llvm-nm and llvm-size when reporting an object file error | Kevin Enderby | 2016-05-31 | 1 | -6/+6 |
| * | [Object] Make createMachOObjectFile return Expected<...> rather than | Lang Hames | 2016-03-25 | 1 | -1/+1 |
| * | Use early return NFC. | Frederic Riss | 2015-08-03 | 1 | -8/+8 |
| * | [Object] Search for architecures by name in MachOUniversalBinary::getObjectFo... | Frederic Riss | 2015-06-22 | 1 | -16/+4 |
| * | Remove object_error::success and use std::error_code() instead | Rui Ueyama | 2015-06-09 | 1 | -1/+1 |
| * | [cleanup] Re-sort all the #include lines in LLVM using | Chandler Carruth | 2015-01-14 | 1 | -1/+1 |
| * | Return ErrorOr<std::unique_ptr<Archive>> form getAsArchive. | Rafael Espindola | 2014-12-09 | 1 | -14/+10 |
| * | Be more specific about return type of MachOUniversalBinary::getObjectForArch | Alexey Samsonov | 2014-10-20 | 1 | -2/+2 |
| * | unique_ptrify MachOUniversalBinary::create | David Blaikie | 2014-09-03 | 1 | -2/+2 |
| * | Fix a pair of use after free. Should bring the bots back. | Rafael Espindola | 2014-08-19 | 1 | -2/+2 |
| * | Don't own the buffer in object::Binary. | Rafael Espindola | 2014-08-19 | 1 | -13/+9 |
| * | A std::unique_ptr case I missed in the previous patch. | Rafael Espindola | 2014-07-31 | 1 | -2/+3 |
| * | Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy. | Rafael Espindola | 2014-06-24 | 1 | -8/+9 |
| * | Pass a std::unique_ptr& to the create??? methods is lib/Object. | Rafael Espindola | 2014-06-23 | 1 | -2/+2 |
| * | Convert a few methods to use ErrorOr. | Rafael Espindola | 2014-06-23 | 1 | -10/+6 |
| * | Change the output of llvm-nm and llvm-size for Mach-O universal files (aka | Kevin Enderby | 2014-06-19 | 1 | -6/+2 |
| * | Teach llvm-size to know about Mach-O universal files (aka fat files) and | Kevin Enderby | 2014-06-18 | 1 | -1/+1 |
| * | Replacing the private implementations of SwapValue with calls to sys::swapByt... | Artyom Skrobov | 2014-06-14 | 1 | -12/+7 |
| * | Renaming SwapByteOrder() to getSwappedBytes() | Artyom Skrobov | 2014-06-14 | 1 | -1/+1 |
| * | Remove 'using std::errro_code' from lib. | Rafael Espindola | 2014-06-13 | 1 | -10/+8 |
| * | Don't use 'using std::error_code' in include/llvm. | Rafael Espindola | 2014-06-12 | 1 | -0/+1 |
| * | Teach llvm-nm to know about fat archives (aka MachOUniversal files | Kevin Enderby | 2014-05-14 | 1 | -0/+20 |
| * | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 2014-04-15 | 1 | -1/+1 |
| * | Replace OwningPtr<T> with std::unique_ptr<T>. | Ahmed Charles | 2014-03-06 | 1 | -5/+5 |
| * | [C++11] Replace OwningPtr::take() with OwningPtr::release(). | Ahmed Charles | 2014-03-05 | 1 | -1/+1 |
| * | Be a bit more consistent about using ErrorOr when constructing Binary objects. | Rafael Espindola | 2014-01-21 | 1 | -4/+14 |
| * | Re-sort all of the includes with ./utils/sort_includes.py so that | Chandler Carruth | 2014-01-07 | 1 | -1/+0 |
| * | Move everything depending on Object/MachOFormat.h over to Support/MachO.h. | Charles Davis | 2013-09-01 | 1 | -29/+29 |
| * | Revert "Fix the build broken by r189315." and "Move everything depending on O... | Charles Davis | 2013-08-27 | 1 | -29/+29 |
| * | Move everything depending on Object/MachOFormat.h over to Support/MachO.h. | Charles Davis | 2013-08-27 | 1 | -29/+29 |
| * | MachOUniversal.cpp: Fix abuse of Twine. It would be sufficient to use std::st... | NAKAMURA Takumi | 2013-06-19 | 1 | -3/+3 |
| * | Basic support for parsing Mach-O universal binaries in LLVMObject library | Alexey Samsonov | 2013-06-18 | 1 | -0/+139 |