1. b6a812e Add support for having multiple sections with the same name and comdat. by Rafael Espindola · 11 years ago
  2. bbcdb9d Invert the section relocation map. by Rafael Espindola · 11 years ago
  3. 62118a1 Use the existing SymbolTableIndex instead of doing a lookup. NFC. by Rafael Espindola · 11 years ago
  4. fbfbdc4 Create the Seciton -> Rel Section map when it is first needed. NFC. by Rafael Espindola · 11 years ago
  5. ef6baea Remove unused argument. NFC. by Rafael Espindola · 11 years ago
  6. fbd0ddf Don't recompute the entire section map just to add 3 entries. NFC. by Rafael Espindola · 11 years ago
  7. d966522 Remove unused argument. NFC. by Rafael Espindola · 11 years ago
  8. ba31e27 Compute the ELF SectionKind from the flags. by Rafael Espindola · 11 years ago
  9. 5a67ed1 [pr21886] Change MCJIT/ELF to support MSVC C++ mangled symbol. by Rafael Espindola · 11 years ago
  10. 2658554 Add r224985 back with fixes. by Rafael Espindola · 11 years ago
  11. 7244bb3 Revert "Add r224985 back with two fixes." by Rafael Espindola · 11 years ago
  12. d990388 [cleanup] Re-sort all the #include lines in LLVM using utils/sort_includes.py. by Chandler Carruth · 11 years ago
  13. d9c3e30 Add r224985 back with two fixes. by Rafael Espindola · 11 years ago
  14. 04b37c4 Revert r225048: It broke ObjC on AArch64. by Lang Hames · 11 years ago
  15. 54b435e Add r224985 back with a fix. by Rafael Espindola · 11 years ago
  16. d4da904 Revert "Remove doesSectionRequireSymbols." by Rafael Espindola · 11 years ago
  17. b22d5aa Remove doesSectionRequireSymbols. by Rafael Espindola · 11 years ago
  18. b661302 Add back commits r219835 and a fixed version of r219829. by Rafael Espindola · 11 years ago
  19. 4544a40 Revert commit r219835 and r219829. by Rafael Espindola · 11 years ago
  20. a74b5e6 Correctly handle references to section symbols. by Rafael Espindola · 11 years ago
  21. 7b61ddf Simplify handling of --noexecstack by using getNonexecutableStackSection. by Rafael Espindola · 11 years ago
  22. 11527a1 Note that a gold bug has been fixed. by Rafael Espindola · 11 years ago
  23. f26bfc1 WinCOFFObjectWriter: optimize the string table for common suffices by Hans Wennborg · 11 years ago
  24. 04f9da8 Elide unnecessary DenseMap copy. by Benjamin Kramer · 11 years ago
  25. 46797c6 [MC] Pass MCSymbolData to needsRelocateWithSymbol by Ulrich Weigand · 11 years ago
  26. fb8a2a9 Mips.abiflags is a new implicitly generated section that will be present on all new modules. The section contains a versioned data structure which represents essentially information to allow a program loader to determine the requirements of the application. This patch implements mips.abiflags section and provides test cases for it. by Vladimir Medic · 11 years ago
  27. 97de474 Invert the MC -> Object dependency. by Rafael Espindola · 11 years ago
  28. 35b2f75 Convert some assert(0) to llvm_unreachable or fold an 'if' condition into the assert. by Craig Topper · 11 years ago
  29. 9aea843 Using llvm::sys::swapByteOrder() for the common case of byte-swapping a value in place by Artyom Skrobov · 11 years ago
  30. ef5e867 Renaming SwapByteOrder() to getSwappedBytes() by Artyom Skrobov · 11 years ago
  31. 3d082fa Fix pr19645. by Rafael Espindola · 12 years ago
  32. 2aeac7a Move getBaseSymbol somewhere the COFF writer can use. by Rafael Espindola · 12 years ago
  33. d5bbf36 Make getBaseSymbol non recursive. by Rafael Espindola · 12 years ago
  34. fee224f Provide a version of getSymbolOffset that returns false on error. by Rafael Espindola · 12 years ago
  35. 553e5eb Simplify ELFObjectWriter::SymbolValue. by Rafael Espindola · 12 years ago
  36. 83e6e1e ELFObjectWriter: deduplicate suffices in strtab by Hans Wennborg · 12 years ago
  37. b60c829 Centralize the handling of the thumb bit. by Rafael Espindola · 12 years ago
  38. bc91d7e Add an option for evaluating past symbols. by Rafael Espindola · 12 years ago
  39. 6efaf11 Simplify ELFObjectWriter::ExecutePostLayoutBinding. by Rafael Espindola · 12 years ago
  40. 39f5042 Simplify isLocal(). by Rafael Espindola · 12 years ago
  41. 3b5ee55 Don't include an invalid symbol in the symbol table. by Rafael Espindola · 12 years ago
  42. 9645090 Produce an error instead of a crash in an expr we cannot represent. by Rafael Espindola · 12 years ago
  43. 39fa6a2 Fix quadratic performance during debug compression due to sections x symbols iteration. by David Blaikie · 12 years ago
  44. 908f4d4 Spread some const around for non-mutating uses of MCSymbolData. by David Blaikie · 12 years ago
  45. 6a4a079 Centralize handling of ELF_Other_ThumbFunc. No functionality change. by Rafael Espindola · 12 years ago
  46. 3e993d0 Follow aliases when determining if a symbol is thumb. by Rafael Espindola · 12 years ago
  47. b5956d2 Add parens to appease GCC warning. by David Blaikie · 12 years ago
  48. 76d3a3c Compress debug sections only when beneficial. by David Blaikie · 12 years ago
  49. c029ab4 Update the fragments of symbols in compressed sections. by David Blaikie · 12 years ago
  50. 583a31c Add range access to MCAssembler's symbol collection. by David Blaikie · 12 years ago
  51. bb694de [C++11] More 'nullptr' conversion or in some cases just using a boolean check instead of comparing to nullptr. by Craig Topper · 12 years ago
  52. e06e801 Format fixes for r205990 by David Blaikie · 12 years ago
  53. 9ef8441 Don't lose the thumb bit by using relocations with sections. by Rafael Espindola · 12 years ago
  54. 8019bf8 Reimplement debug info compression by compressing the whole section, rather than a fragment. by David Blaikie · 12 years ago
  55. b1b4978 Work around gold bug http://sourceware.org/PR16794. by Rafael Espindola · 12 years ago
  56. 5904e12 Completely rewrite ELFObjectWriter::RecordRelocation. by Rafael Espindola · 12 years ago
  57. c03f44c Remove another unused argument. by Rafael Espindola · 12 years ago
  58. 9ab3801 Remove unused argument. by Rafael Espindola · 12 years ago
  59. a041ef1 Correctly propagates st_size. by Rafael Espindola · 12 years ago
  60. 85a8491 Correctly detect if a symbol uses a reserved section index or not. by Rafael Espindola · 12 years ago
  61. 10be083 Create .symtab_shndxr only when needed. by Rafael Espindola · 12 years ago
  62. 0ce0971 Use Endian.h to simplify this code a bit. by Rafael Espindola · 12 years ago
  63. 022bb76 Propagate section from base to derived symbol. by Rafael Espindola · 12 years ago
  64. a6e3a59 Propagate types from symbol to aliases. by Rafael Espindola · 12 years ago
  65. 66f96fe Fix the value computation in by Rafael Espindola · 12 years ago
  66. 39f773f Reapply 'ARM IAS: support .thumb_set' by Saleem Abdulrasool · 12 years ago
  67. 7fadc0e Look through variables when computing relocations. by Rafael Espindola · 12 years ago
  68. 7bbd5c2 Revert "Add back r203962, r204028 and r204059." by Rafael Espindola · 12 years ago
  69. 574bfa1 Add back r203962, r204028 and r204059. by Rafael Espindola · 12 years ago
  70. 64de613 Revert r203962 and two revisions depending on it: r204028 and r204059. by Alexander Kornienko · 12 years ago
  71. 11543a9 ARM IAS: support .thumb_set by Saleem Abdulrasool · 12 years ago
  72. f863a3e Consider the base pointer for setting the symbol type. by Rafael Espindola · 12 years ago
  73. 8953f81 Correctly handle an ELF symbol defined with "a = b + expr". by Rafael Espindola · 12 years ago
  74. 34a61bc [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 12 years ago
  75. 56440fd Replace OwningPtr<T> with std::unique_ptr<T>. by Ahmed Charles · 12 years ago
  76. 12f0498 doesSectionRequireSymbols is meaningless on ELF, remove. by Rafael Espindola · 12 years ago
  77. fb4d390 Force emit a relocation for @gnu_indirect_function symbols so that the indirect by Roman Divacky · 12 years ago
  78. 5a1c549 In the ELFWriter when writing aliased (.set) symbols dont blindly by Roman Divacky · 12 years ago
  79. a45a176 MC: Fatally error if subtraction operand is bad by David Majnemer · 12 years ago
  80. ee36595 [mc] Fix ELF st_other flag. by Logan Chien · 12 years ago
  81. fc18473 Move the STT_FILE symbols out of the normal symbol table processing for by Joerg Sonnenberger · 12 years ago
  82. 15b25df MC: Support multiple sections with the same name in the same comdat group by David Blaikie · 12 years ago
  83. 1e412ea Whitespace by David Blaikie · 12 years ago
  84. 8817cca Provide basic type safety for array_pod_sort comparators. by Benjamin Kramer · 12 years ago
  85. a630fb0 Put ELF COMDAT relocations into the relevant COMDAT group. by Tim Northover · 12 years ago
  86. 0684076 by Ulrich Weigand · 12 years ago
  87. 4288f9e Commit the right files for r176762. Sigh. by Nick Lewycky · 13 years ago
  88. 2f8d9d9 ELF symbol table field st_other support, excluding visibility bits. by Jack Carter · 13 years ago
  89. f6622ba This patch just fixes up various llvm formatting by Jack Carter · 13 years ago
  90. 4b72442 Link .ARM.exidx with corresponding text section. by Logan Chien · 13 years ago
  91. 1bd90ff This patch reworks how llvm targets set and update ELF header e_flags. by Jack Carter · 13 years ago
  92. c1b17ed This is a resubmittal. For some reason it broke the bots yesterday by Jack Carter · 13 years ago
  93. 226fea5 Remove redundant 'llvm::' qualifications by Dmitri Gribenko · 13 years ago
  94. 84b2a79 Make the contents of encoded sections SmallVector<char, N> instead of by Eli Bendersky · 13 years ago
  95. 5cc3dc8 Added Mapping Symbols for ARM ELF by Tim Northover · 13 years ago
  96. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  97. f2aceda Initial TOC support for PowerPC64 object creation by Adhemerval Zanella · 13 years ago
  98. d6f3168 Check .rela instead of ELF64 for the compensation vaue resetting by Michael Liao · 13 years ago
  99. 073ee7d Fix comment. by Rafael Espindola · 13 years ago
  100. 8ad0c27 The ELF relocation record format is different for N64 by Jack Carter · 13 years ago