1. ef421f9 Make the ELFObjectFile constructor private. by Rafael Espindola · 8 years ago
  2. 04e4dba Simplify. NFC. by Rafael Espindola · 8 years ago
  3. 12db383 Convert two uses of ErrorOr to Expected. by Rafael Espindola · 8 years ago
  4. a5ba4ee [Triple] Add isThumb and isARM functions. by Florian Hahn · 8 years ago
  5. 264b5d9 Move Object format code to lib/BinaryFormat. by Zachary Turner · 8 years ago
  6. 6bda14b Sort the remaining #include lines in include/... and lib/.... by Chandler Carruth · 8 years ago
  7. 1df42fa [Object] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC). by Eugene Zelenko · 8 years ago
  8. b0de00d [ARM] Create SubtargetFeatures from build attrs by Sam Parker · 9 years ago
  9. df7c6ef [ARM] Create objdump subtarget from build attrs by Sam Parker · 9 years ago
  10. 1ed7896 Revert r291903 and r291898. Reason: they break check-lld on the bots. by Ivan Krasin · 9 years ago
  11. 770ceb6 [ARM] Enable objdump to construct triple for ARM by Sam Parker · 9 years ago
  12. 1d14864 [llvm-objdump] Support detection of feature bits from the object and implement this for Mips. by Daniel Sanders · 9 years ago
  13. 49179dd [Object, ELF] Don't assert on invalid magic in createELFObjectFile. by Alexey Samsonov · 10 years ago
  14. 18ad2e5 [Object, ELF] Don't call llvm_unreachable() from createELFObjectFile. by Alexey Samsonov · 10 years ago
  15. ac729b4 Simplify now that we always use an alignment of 2 for ELF files. by Rafael Espindola · 10 years ago
  16. 48af1c2 Don't own the buffer in object::Binary. by Rafael Espindola · 11 years ago
  17. ab73774 Add a non-templated ELFObjectFileBase class. by Rafael Espindola · 11 years ago
  18. 437b0d5 Use std::unique_ptr to make the ownership explicit. by Rafael Espindola · 11 years ago
  19. d5a8efe This only needs a StringRef. No functionality change. by Rafael Espindola · 11 years ago
  20. 6fa0cb8 Replace two release calls with std::move. I missed this on the previous commit. by Rafael Espindola · 11 years ago
  21. 2e60ca9 Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy. by Rafael Espindola · 11 years ago
  22. 6304e94 Pass a std::unique_ptr& to the create??? methods is lib/Object. by Rafael Espindola · 11 years ago
  23. c3f9b5a Make ObjectFile and BitcodeReader always own the MemoryBuffer. by Rafael Espindola · 11 years ago
  24. 24d8b84 Fix a memory leak in the error path. by Rafael Espindola · 11 years ago
  25. 95cf2f2 Fix pr17056. by Rafael Espindola · 11 years ago
  26. db4ed0b Remove 'using std::errro_code' from lib. by Rafael Espindola · 11 years ago
  27. 3acea39 Don't use 'using std::error_code' in include/llvm. by Rafael Espindola · 11 years ago
  28. 56440fd Replace OwningPtr<T> with std::unique_ptr<T>. by Ahmed Charles · 12 years ago
  29. 96c9d95 [C++11] Replace OwningPtr::take() with OwningPtr::release(). by Ahmed Charles · 12 years ago
  30. afcc3df Make ObjectFile ownership of the MemoryBuffer optional. by Rafael Espindola · 12 years ago
  31. 692410e Be a bit more consistent about using ErrorOr when constructing Binary objects. by Rafael Espindola · 12 years ago
  32. 126973b [Object] Split the ELF interface into 3 parts. by Michael J. Spencer · 12 years ago
  33. df1ecbd7 Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros. by Michael J. Spencer · 12 years ago
  34. 39678d8 [Support] Add LLVM_IS_UNALIGNED_ACCESS_FAST. by Michael J. Spencer · 13 years ago
  35. 1a79161 [Object][ELF] Simplify ELFObjectFile by using ELFType. by Michael J. Spencer · 13 years ago
  36. bae14ce [Object][ELF] Add a maximum alignment. This is used by createELFObjectFile to create a properly aligned reader. by Michael J. Spencer · 13 years ago
  37. cc31af9 Implement GDB integration for source level debugging of code JITed using by Preston Gurd · 14 years ago
  38. c7d23dd Expose the ELFObjectFile class directly in the Object/ELF.h header, similarly by Eli Bendersky · 14 years ago
  39. 1d966ae Object: avoid undefined behavior when bounds-checking by Dylan Noblesmith · 14 years ago
  40. 88297ef Sink assert-only variables into the asserts by Matt Beaumont-Gay · 14 years ago
  41. 54db64e Silence warnings in -asserts build by Matt Beaumont-Gay · 14 years ago
  42. c3c80f0 Basic runtime dynamic loading capabilities added to ELFObjectFile, implemented by Eli Bendersky · 14 years ago
  43. cbe72fc Fixed ObjectFile functions: by Danil Malyshev · 14 years ago
  44. 37ab257 Revert r145180 as it is causing test failures on all the bots. by Chandler Carruth · 14 years ago
  45. 2631f93 Fixed ObjectFile functions: by Danil Malyshev · 14 years ago
  46. 7be7659 Expand relocation type field to 64 bits. MachO scattered relocations require 33 bits of type info. by Owen Anderson · 14 years ago
  47. 1d19f97 Object: Add some types to SymbolRef::Type. by Michael J. Spencer · 14 years ago
  48. 321731539 Object: Add isSymbolAbsolute and getSymbolSection. by Michael J. Spencer · 14 years ago
  49. 0175975 Object: Add isSymbolWeak. by Michael J. Spencer · 14 years ago
  50. 4f91c2f Object: Implement casting for concrete classes. by Michael J. Spencer · 14 years ago
  51. d394667 Object: Fix redundant name. by Michael J. Spencer · 14 years ago
  52. 834bd602 ELF: Fix the section that relocations apply to. Add test to verify. Patch by Danil Malyshev! by Michael J. Spencer · 14 years ago
  53. d304396 Elf_Word is not POD! Stop using it in a DenseMap. by Nick Lewycky · 14 years ago
  54. 9bfcf77 lib/Object/ELFObjectFile.cpp: Fix undefined behavior for MC/ELF/many-section.s not to fail (on msvc). by NAKAMURA Takumi · 14 years ago
  55. 43f01ca Reapply r141605 with fixes for appropriate handling of reserved section numbers by Nick Lewycky · 14 years ago
  56. 7adc437 Add support for .symtab_shnidx. Unfortunately, doing this required breaking a by Nick Lewycky · 14 years ago
  57. 35a90c4 Revert r141605 as it broke tests for llvm-nm. by Nick Lewycky · 14 years ago
  58. fdbb7c5 Add support for reading many-section ELF files. by Nick Lewycky · 14 years ago
  59. 7989460 Object: add getSectionAlignment. by Michael J. Spencer · 14 years ago
  60. cfb6cc7 Fix GCC again. by Michael J. Spencer · 14 years ago
  61. e5fd004 Change relocation API to be per section. This time without breaking GCC. by Michael J. Spencer · 14 years ago
  62. 206d8a7 Revert 141376 and 141377 due to breaking the build. by Bill Wendling · 14 years ago
  63. b0d6154 Change relocation API to be per section. by Michael J. Spencer · 14 years ago
  64. 800619f Object: Add isSection{Data,BSS}. by Michael J. Spencer · 14 years ago
  65. 75d1cf33 Object: make the following changes into SymbolRef by Benjamin Kramer · 14 years ago
  66. 022ecdf Add support for relocations to ObjectFile. by Benjamin Kramer · 14 years ago
  67. f6f3e81 ObjectFile: Add a method to check whether a section contains a symbol. by Benjamin Kramer · 14 years ago
  68. 1d6167f Object: Add proper error handling. by Michael J. Spencer · 14 years ago
  69. ec29b12 Make Binary the parent of ObjectFile and update children to new interface. by Michael J. Spencer · 14 years ago
  70. aa41981 Revert the last two commits in the series. r132911, r132912. by Michael J. Spencer · 14 years ago
  71. a7f9c49 Make Binary the parent of ObjectFile and update children to new interface. by Michael J. Spencer · 14 years ago
  72. ee066fc Assorted bugfixes in object file handling: by Eric Christopher · 15 years ago
  73. 0324b67 Object: Fix type punned pointer issues by making DataRefImpl a union and using intptr_t. by Michael J. Spencer · 15 years ago
  74. b60a18d Object: Add ELF support. by Michael J. Spencer · 15 years ago