| Commit message (Expand) | Author | Age | Files | Lines |
| * | [Object] Add tapi files to object | Cyndy Ishida | 2019-08-21 | 1 | -2/+2 |
| * | [BinaryFormat] Teach identify_magic about Tapi files. | Cyndy Ishida | 2019-08-21 | 1 | -0/+3 |
| * | [Object][XCOFF] Add support for 64-bit file header and section header dumping. | Sean Fertile | 2019-07-09 | 1 | -0/+1 |
| * | [XCOFF] Add functionality for parsing AIX XCOFF object file headers | Hubert Tong | 2019-04-04 | 1 | -0/+1 |
| * | [Object] Add basic minidump support | Pavel Labath | 2019-03-21 | 1 | -0/+3 |
| * | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
| * | Don't require a null terminator when loading objects | David Major | 2019-01-09 | 1 | -1/+2 |
| * | Update a few switch statements to handle file_magic::pdb. | Zachary Turner | 2018-03-07 | 1 | -0/+3 |
| * | Move Object format code to lib/BinaryFormat. | Zachary Turner | 2017-06-07 | 1 | -33/+34 |
| * | Sort the remaining #include lines in include/... and lib/.... | Chandler Carruth | 2017-06-06 | 1 | -1/+1 |
| * | Add functionality to cvtres to parse all entries in res file. | Eric Beckmann | 2017-05-20 | 1 | -1/+3 |
| * | [Object] Fix some Clang-tidy modernize and Include What You Use warnings; oth... | Eugene Zelenko | 2017-04-19 | 1 | -8/+12 |
| * | [WebAssembly] Add llvm-objdump support for wasm file format | Derek Schuff | 2016-11-30 | 1 | -0/+1 |
| * | Fix -Wswitch. | Rui Ueyama | 2016-11-15 | 1 | -0/+1 |
| * | Change Archive::create() from ErrorOr<...> to Expected<...> and update | Kevin Enderby | 2016-06-29 | 1 | -1/+1 |
| * | Change all but the last ErrorOr<...> use for MachOUniversalBinary to Expected... | Kevin Enderby | 2016-06-27 | 1 | -1/+1 |
| * | Thread Expected<...> up from createMachOObjectFile() to allow llvm-objdump to... | Kevin Enderby | 2016-04-06 | 1 | -9/+9 |
| * | 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 |
| * | unique_ptrify MachOUniversalBinary::create | David Blaikie | 2014-09-03 | 1 | -2/+1 |
| * | Ensure ErrorOr cannot implicitly invoke explicit ctors of the underlying type. | David Blaikie | 2014-09-03 | 1 | -1/+2 |
| * | Don't own the buffer in object::Binary. | Rafael Espindola | 2014-08-19 | 1 | -16/+21 |
| * | Use std::unique_ptr to make the ownership explicit. | Rafael Espindola | 2014-07-31 | 1 | -3/+4 |
| * | Correct the ownership passing semantics of object::createBinary and make them... | David Blaikie | 2014-07-21 | 1 | -2/+2 |
| * | 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 | -4/+4 |
| * | Pass a std::unique_ptr& to the create??? methods is lib/Object. | Rafael Espindola | 2014-06-23 | 1 | -4/+4 |
| * | Make ObjectFile and BitcodeReader always own the MemoryBuffer. | Rafael Espindola | 2014-06-23 | 1 | -13/+8 |
| * | Don't use 'using std::error_code' in include/llvm. | Rafael Espindola | 2014-06-12 | 1 | -1/+1 |
| * | Replace OwningPtr<T> with std::unique_ptr<T>. | Ahmed Charles | 2014-03-06 | 1 | -2/+2 |
| * | [C++11] Replace OwningPtr::take() with OwningPtr::release(). | Ahmed Charles | 2014-03-05 | 1 | -4/+4 |
| * | Add a SymbolicFile interface between Binary and ObjectFile. | Rafael Espindola | 2014-02-21 | 1 | -5/+5 |
| * | Make createObjectFile's signature a bit less error prone. | Rafael Espindola | 2014-01-29 | 1 | -1/+1 |
| * | Make ObjectFile ownership of the MemoryBuffer optional. | Rafael Espindola | 2014-01-24 | 1 | -4/+4 |
| * | Pass the computed magic to createBinary and createObjectFile if available. | Rafael Espindola | 2014-01-22 | 1 | -10/+10 |
| * | Be a bit more consistent about using ErrorOr when constructing Binary objects. | Rafael Espindola | 2014-01-21 | 1 | -35/+10 |
| * | Return an ErrorOr<Binary *> from createBinary. | Rafael Espindola | 2014-01-15 | 1 | -31/+25 |
| * | Re-sort all of the includes with ./utils/sort_includes.py so that | Chandler Carruth | 2014-01-07 | 1 | -1/+1 |
| * | 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 | -1/+2 |
| * | Make a switch in createBinary fully-covered. Add forgotten macho_dsym_compani... | Alexey Samsonov | 2013-06-28 | 1 | -2/+7 |
| * | Basic support for parsing Mach-O universal binaries in LLVMObject library | Alexey Samsonov | 2013-06-18 | 1 | -0/+7 |
| * | readobj: Dump PE/COFF optional records. | Rui Ueyama | 2013-06-12 | 1 | -2/+4 |
| * | Convert a use of sys::identifyFileType to sys::fs::identify_magic. | Rafael Espindola | 2013-06-11 | 1 | -16/+18 |
| * | Pass a StringRef to sys::identifyFileType. | Rafael Espindola | 2013-06-10 | 1 | -2/+1 |
| * | Don't artifically restrict input object size. | Sean Silva | 2013-06-08 | 1 | -2/+0 |
| * | Object: Add support for opening stdin. | Michael J. Spencer | 2011-10-08 | 1 | -1/+1 |
| * | Object: Add archive support. | Michael J. Spencer | 2011-09-27 | 1 | -1/+8 |
| * | Make Binary the parent of ObjectFile and update children to new interface. | Michael J. Spencer | 2011-06-25 | 1 | -3/+49 |
| * | Add Binary class. This is a cleaner parent than ObjectFile. | Michael J. Spencer | 2011-06-25 | 1 | -0/+50 |