| Commit message (Expand) | Author | Age | Files | Lines |
| * | Move Object format code to lib/BinaryFormat. | Zachary Turner | 2017-06-07 | 1 | -29/+30 |
| * | Sort the remaining #include lines in include/... and lib/.... | Chandler Carruth | 2017-06-06 | 1 | -1/+1 |
| * | [Object] Fix some Clang-tidy modernize and Include What You Use warnings; oth... | Eugene Zelenko | 2017-04-19 | 1 | -3/+11 |
| * | [WebAssembly] Add llvm-objdump support for wasm file format | Derek Schuff | 2016-11-30 | 1 | -1/+4 |
| * | Add a file magic for CL.exe's object file created with /GL. | Rui Ueyama | 2016-11-15 | 1 | -0/+1 |
| * | Object: Add a missing return in ObjectFile::createObjectFile | Justin Bogner | 2016-10-18 | 1 | -2/+2 |
| * | Thread Expected<...> up from libObject’s getType() for symbols to allow llv... | Kevin Enderby | 2016-05-02 | 1 | -2/+5 |
| * | Thread Expected<...> up from libObject’s getName() for symbols to allow llv... | Kevin Enderby | 2016-04-20 | 1 | -3/+3 |
| * | Thread Expected<...> up from createMachOObjectFile() to allow llvm-objdump to... | Kevin Enderby | 2016-04-06 | 1 | -10/+10 |
| * | [Object] Make createMachOObjectFile return Expected<...> rather than | Lang Hames | 2016-03-25 | 1 | -1/+1 |
| * | Rename embedded bitcode section in MachO | Steven Wu | 2016-02-29 | 1 | -0/+7 |
| * | Convert getSymbolSection to return an ErrorOr. | Rafael Espindola | 2015-08-07 | 1 | -3/+3 |
| * | Delete UnknownAddress. It is a perfectly valid symbol value. | Rafael Espindola | 2015-07-07 | 1 | -0/+9 |
| * | Return ErrorOr from SymbolRef::getName. | Rafael Espindola | 2015-07-02 | 1 | -3/+3 |
| * | Implement containsSymbol with other lower level methods. | Rafael Espindola | 2015-06-30 | 1 | -0/+7 |
| * | Remove object_error::success and use std::error_code() instead | Rui Ueyama | 2015-06-09 | 1 | -1/+1 |
| * | Simplify interface of function that doesn't fail. | Rafael Espindola | 2015-05-31 | 1 | -5/+1 |
| * | Object: Handle Mach-O kext bundle files | Justin Bogner | 2015-02-25 | 1 | -0/+1 |
| * | Support ELF files of unknown type. | Michael J. Spencer | 2014-11-18 | 1 | -0/+1 |
| * | Don't own the buffer in object::Binary. | Rafael Espindola | 2014-08-19 | 1 | -8/+16 |
| * | Use std::unique_ptr to make the ownership explicit. | Rafael Espindola | 2014-07-31 | 1 | -2/+5 |
| * | Update the MemoryBuffer API to use ErrorOr. | Rafael Espindola | 2014-07-06 | 1 | -3/+4 |
| * | Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy. | Rafael Espindola | 2014-06-24 | 1 | -3/+3 |
| * | Pass a std::unique_ptr& to the create??? methods is lib/Object. | Rafael Espindola | 2014-06-23 | 1 | -4/+5 |
| * | Make ObjectFile and BitcodeReader always own the MemoryBuffer. | Rafael Espindola | 2014-06-23 | 1 | -9/+5 |
| * | Remove 'using std::errro_code' from lib. | Rafael Espindola | 2014-06-13 | 1 | -7/+6 |
| * | Don't use 'using std::error_code' in include/llvm. | Rafael Espindola | 2014-06-12 | 1 | -0/+1 |
| * | Remove system_error.h. | Rafael Espindola | 2014-06-12 | 1 | -1/+1 |
| * | Replace OwningPtr<T> with std::unique_ptr<T>. | Ahmed Charles | 2014-03-06 | 1 | -2/+1 |
| * | [C++11] Replace OwningPtr::take() with OwningPtr::release(). | Ahmed Charles | 2014-03-05 | 1 | -1/+1 |
| * | Shankar kindly pointed out that I wasn't following the coding convention prop... | Aaron Ballman | 2014-02-21 | 1 | -1/+1 |
| * | Fixing the MSVC build by including a file. | Aaron Ballman | 2014-02-21 | 1 | -0/+1 |
| * | Add a SymbolicFile interface between Binary and ObjectFile. | Rafael Espindola | 2014-02-21 | 1 | -1/+10 |
| * | Make ObjectFile ownership of the MemoryBuffer optional. | Rafael Espindola | 2014-01-24 | 1 | -7/+9 |
| * | Pass the computed magic to createBinary and createObjectFile if available. | Rafael Espindola | 2014-01-22 | 1 | -2/+4 |
| * | Change createObjectFile to return an ErrorOr. | Rafael Espindola | 2014-01-22 | 1 | -14/+10 |
| * | Be a bit more consistent about using ErrorOr when constructing Binary objects. | Rafael Espindola | 2014-01-21 | 1 | -3/+3 |
| * | Path: Recognize COFF import library file magic. | Rui Ueyama | 2013-11-15 | 1 | -0/+1 |
| * | Path: Recognize Windows compiled resource file. | Rui Ueyama | 2013-10-15 | 1 | -0/+1 |
| * | Delete the buffer in createObjectFile if it fails. | Rafael Espindola | 2013-07-24 | 1 | -1/+4 |
| * | Basic support for parsing Mach-O universal binaries in LLVMObject library | Alexey Samsonov | 2013-06-18 | 1 | -0/+1 |
| * | Fix variable name style. Don't cast to and from int. | Rafael Espindola | 2013-06-11 | 1 | -0/+2 |
| * | Convert another use of sys::identifyFileType. | Rafael Espindola | 2013-06-11 | 1 | -25/+26 |
| * | Pass a StringRef to sys::identifyFileType. | Rafael Espindola | 2013-06-10 | 1 | -2/+1 |
| * | Change how we iterate over relocations on ELF. | Rafael Espindola | 2013-05-30 | 1 | -0/+4 |
| * | Add getSymbolAlignment to the ObjectFile interface. | Rafael Espindola | 2013-04-29 | 1 | -0/+6 |
| * | Remove unused argument. | Rafael Espindola | 2013-04-07 | 1 | -1/+1 |
| * | When encountering an unknown file format, ObjectFile::createObjectFile should | Eli Bendersky | 2013-01-25 | 1 | -1/+3 |
| * | Remove unused variables. | Rafael Espindola | 2011-12-25 | 1 | -1/+1 |
| * | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie | 2011-12-20 | 1 | -0/+2 |