| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Add an ELFSymbolRef type. | Rafael Espindola | 2015-06-25 | 1 | -2/+2 |
| * | Use computeSymbolSizes in llvm-symbolize. | Rafael Espindola | 2015-06-25 | 1 | -1/+4 |
| * | libObject/COFF: Add a function to get pointers to relocation entries. | Rui Ueyama | 2015-06-25 | 1 | -0/+10 |
| * | Make computeSymbolSizes never fail. | Rafael Espindola | 2015-06-24 | 3 | -15/+45 |
| * | Use Symbol::getValue to simplify object::computeSymbolSizes. NFC. | Rafael Espindola | 2015-06-24 | 1 | -4/+2 |
| * | Add a SymbolRef::getValue. | Rafael Espindola | 2015-06-24 | 2 | -17/+24 |
| * | Refactor duplicated code. NFC. | Rafael Espindola | 2015-06-24 | 1 | -27/+19 |
| * | Simplify the logic, NFC. | Rafael Espindola | 2015-06-24 | 1 | -12/+8 |
| * | Change how symbol sizes are handled in lib/Object. | Rafael Espindola | 2015-06-24 | 4 | -20/+13 |
| * | Revert "[FaultMaps] Move FaultMapParser to Object/" | Sanjoy Das | 2015-06-23 | 2 | -62/+0 |
| * | Make helper functions static. NFC. | Benjamin Kramer | 2015-06-23 | 1 | -1/+1 |
| * | Simplify the Mangler interface now that DataLayout is mandatory. | Rafael Espindola | 2015-06-23 | 1 | -3/+1 |
| * | Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) | Alexander Kornienko | 2015-06-23 | 3 | -6/+6 |
| * | Handle multiple symbols having the same address. | Rafael Espindola | 2015-06-23 | 1 | -1/+9 |
| * | Extract an utility for computing symbol sizes on MachO and COFF. | Rafael Espindola | 2015-06-23 | 2 | -0/+89 |
| * | [FaultMaps] Move FaultMapParser to Object/ | Sanjoy Das | 2015-06-23 | 2 | -0/+62 |
| * | [Object] Search for architecures by name in MachOUniversalBinary::getObjectFo... | Frederic Riss | 2015-06-22 | 1 | -16/+4 |
| * | Make getRelocationSection MachO only. | Rafael Espindola | 2015-06-19 | 1 | -13/+0 |
| * | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 2015-06-19 | 3 | -6/+6 |
| * | Fix the build. | Rafael Espindola | 2015-06-19 | 1 | -1/+1 |
| * | Improve the --expand-relocs handling of MachO. | Rafael Espindola | 2015-06-18 | 1 | -2/+4 |
| * | [ArchiveWriter] Use EndianStream. No functional change intended. | Benjamin Kramer | 2015-06-17 | 1 | -9/+4 |
| * | Return a unique_ptr from getLazyBitcodeModule and parseBitcodeFile. NFC. | Rafael Espindola | 2015-06-16 | 1 | -2/+2 |
| * | Have MachOObjectFile::isValidArch() accept armv7 | Frederic Riss | 2015-06-16 | 1 | -0/+1 |
| * | Recommit r239721: Replace string GNU Triples with llvm::Triple in InitMCObjec... | Daniel Sanders | 2015-06-16 | 1 | -6/+6 |
| * | modules: Add explicit dependency on intrinsics_gen | Duncan P. N. Exon Smith | 2015-06-16 | 1 | -0/+3 |
| * | Revert r239721 - Replace string GNU Triples with llvm::Triple in InitMCObject... | Daniel Sanders | 2015-06-15 | 1 | -6/+6 |
| * | Replace string GNU Triples with llvm::Triple in InitMCObjectFileInfo. NFC. | Daniel Sanders | 2015-06-15 | 1 | -6/+6 |
| * | Don't use std::errc. | Rafael Espindola | 2015-06-13 | 1 | -1/+2 |
| * | Object: Prepend __imp_ when mangling a dllimport symbol in IRObjectFile. | Peter Collingbourne | 2015-06-11 | 1 | -0/+3 |
| * | Remove object_error::success and use std::error_code() instead | Rui Ueyama | 2015-06-09 | 7 | -86/+85 |
| * | Fix Windows build. | Peter Collingbourne | 2015-06-08 | 1 | -0/+4 |
| * | llvm-ar: Move archive writer to Object. | Peter Collingbourne | 2015-06-08 | 2 | -0/+339 |
| * | [Object, ELF] Don't assert on invalid magic in createELFObjectFile. | Alexey Samsonov | 2015-06-04 | 1 | -2/+3 |
| * | [Object, ELF] Don't call llvm_unreachable() from createELFObjectFile. | Alexey Samsonov | 2015-06-04 | 1 | -2/+2 |
| * | [Object, MachO] Fixup for r239075: use union to store mach_header and mach_he... | Alexey Samsonov | 2015-06-04 | 1 | -8/+2 |
| * | [Object, MachO] Don't crash on incomplete MachO segment load commands. | Alexey Samsonov | 2015-06-04 | 1 | -1/+4 |
| * | [Object, MachO] Simplify load segment parsing code. NFC. | Alexey Samsonov | 2015-06-04 | 1 | -52/+30 |
| * | [Object, MachO] Don't crash on invalid MachO segment load commands. | Alexey Samsonov | 2015-06-04 | 2 | -11/+19 |
| * | [Object, MachO] Don't crash on invalid MachO load commands. | Alexey Samsonov | 2015-06-04 | 2 | -9/+25 |
| * | [Object, MachO] Don't crash on parsing invalid MachO header. | Alexey Samsonov | 2015-06-04 | 1 | -4/+29 |
| * | [Object, MachO] Remove some code duplication. NFC. | Alexey Samsonov | 2015-06-04 | 1 | -25/+25 |
| * | [Object, MachO] Cache parsed MachO header in MachOObjectFile. NFC. | Alexey Samsonov | 2015-06-04 | 1 | -20/+20 |
| * | [Object, MachO] Introduce MachOObjectFile::load_commands() range iterator. | Alexey Samsonov | 2015-06-03 | 1 | -6/+21 |
| * | Move to llvm-objdump a large amount of code to that is only used there. | Rafael Espindola | 2015-06-03 | 3 | -263/+1 |
| * | Simplify now that we always use an alignment of 2 for ELF files. | Rafael Espindola | 2015-06-02 | 1 | -42/+18 |
| * | Simplify another function that doesn't fail. | Rafael Espindola | 2015-06-01 | 3 | -17/+7 |
| * | Simplify interface of function that doesn't fail. | Rafael Espindola | 2015-05-31 | 2 | -11/+4 |
| * | Add RelocVisitor support for MachO | Keno Fischer | 2015-05-30 | 1 | -0/+5 |
| * | Object: Add Archive::getNumberOfSymbols(). | Rui Ueyama | 2015-05-26 | 1 | -14/+13 |