1. afa75d7 [macho] save the SDK version stored in module metadata into the version min and by Alex Lorenz · 7 years ago
  2. 4d5b107 [MC] Error on a .zerofill directive in a non-virtual section by Francis Visoiu Mistrih · 7 years ago
  3. c0dba0a Revert "[MC] Factor MCObjectStreamer::addFragmentAtoms out of MachO streamer." by Sam Clegg · 7 years ago
  4. 57f661b [MC] Pass MCSubtargetInfo to fixupNeedsRelaxation and applyFixup by Peter Smith · 7 years ago
  5. f7b81db MC: Change the streamer ctors to take an object writer instead of a stream. NFCI. by Peter Collingbourne · 7 years ago
  6. 87cc4db [MC] Factor MCObjectStreamer::addFragmentAtoms out of MachO streamer. by Sam Clegg · 7 years ago
  7. 07657a8 Don't create MCFillFragment directly. by Rafael Espindola · 8 years ago
  8. 5dd72ad MC/AsmPrinter: Reduce code duplication. by Matthias Braun · 8 years ago
  9. 0148c88 MC: Add support for mach-o build_version by Matthias Braun · 8 years ago
  10. 2241ffa [MC] Have MCObjectStreamer take its MCAsmBackend argument via unique_ptr. by Lang Hames · 8 years ago
  11. 02d3305 [MC] Have MCObjectStreamer take its MCAsmBackend argument via unique_ptr. by Lang Hames · 8 years ago
  12. 6bda14b Sort the remaining #include lines in include/... and lib/.... by Chandler Carruth · 8 years ago
  13. 618d342 Simplify/make more explicit (by making less explicit in some ways) some function calls by David Blaikie · 9 years ago
  14. 5b75fd9 MC: De-duplicate the object streamer implementations of EmitFileDirective into MCObjectStreamer. NFCI. by Peter Collingbourne · 9 years ago
  15. 1f4e26f [MC] Factor out non-COFF handling of COFF-specific directives. by Dan Gohman · 9 years ago
  16. be99157 Move some error handling down to MCStreamer. by Rafael Espindola · 9 years ago
  17. 1d43552 [MC] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC). by Eugene Zelenko · 9 years ago
  18. 8d115a3 MCMacho: Allow __thread_ptr section after dwarf sections by Matthias Braun · 9 years ago
  19. c52c74e MachO: enable .data_region directives everywhere by Tim Northover · 9 years ago
  20. abda4d2 [MachO] Extend the alt_entry support for aliases added in r263521 to by Lang Hames · 10 years ago
  21. 1b640e0 [MachO] Add MachO alt-entry directive support. by Lang Hames · 10 years ago
  22. ecefe5a Fix Clang-tidy readability-redundant-control-flow warnings; other minor fixes. by Eugene Zelenko · 10 years ago
  23. 1a7e8b4 Simplify MCFillFragment. by Rafael Espindola · 10 years ago
  24. 72e8189 MC: Make sure to clear *all* of MCMachOStreamer's state by Justin Bogner · 10 years ago
  25. 2d4d161 ARM: support .watchos_version_min and .tvos_version_min. by Tim Northover · 10 years ago
  26. 1129a00 Use range-based for loops. NFC by Craig Topper · 10 years ago
  27. a5f45da MC: Remove implicit ilist iterator conversions, NFC by Duncan P. N. Exon Smith · 10 years ago
  28. e3a20f5 Fix pr24486. by Rafael Espindola · 10 years ago
  29. 2f83437 Disallow assigning symbol a null section. by Rafael Espindola · 10 years ago
  30. 556b21a Remove and forbid raw_svector_ostream::flush() calls. by Yaron Keren · 10 years ago
  31. 9927206 Force the MachO generated for Darwin to have VERSION_MIN load command by Steven Wu · 10 years ago
  32. 4915dd0 Remove includes of MCMachOSymbolFlags.h after it was deleted by Pete Cooper · 10 years ago
  33. 916f79e Move all flags logic to MCSymbolMachO. by Pete Cooper · 10 years ago
  34. a869576 Create a MCSymbolELF. by Rafael Espindola · 10 years ago
  35. 499c99c The fragment implies the section, don't store both. by Rafael Espindola · 10 years ago
  36. 4d37b2a Remove getData. by Rafael Espindola · 10 years ago
  37. beb6060 Remove the MCSymbolData typedef. by Rafael Espindola · 10 years ago
  38. b5d316b Rename getOrCreateSymbolData to registerSymbol and return void. by Rafael Espindola · 10 years ago
  39. 2229d33 Move Flags from MCSymbolData to MCSymbol. by Rafael Espindola · 10 years ago
  40. 1467250 Move common symbol related information from MCSectionData to MCSymbol. by Rafael Espindola · 10 years ago
  41. 3a5d3cc Remove a trivial forwarding function. NFC. by Rafael Espindola · 10 years ago
  42. 983bec6 Rename and move getCurrentSectionData. by Rafael Espindola · 10 years ago
  43. 2f9bdd8 There is only one current section. by Rafael Espindola · 10 years ago
  44. a32d0e9 Delete MCSectionData. by Rafael Espindola · 10 years ago
  45. bb9a71c Replace getOrCreateSectionData with registerSection. by Rafael Espindola · 10 years ago
  46. 3d2aeb2 Have getCurrentSectionData return a MCSection. by Rafael Espindola · 10 years ago
  47. 64acc7f Remove most uses of MCSectionData from MCAssembler. by Rafael Espindola · 10 years ago
  48. 8324c2f Store a MCSection in MCFragment. by Rafael Espindola · 10 years ago
  49. 967d6a6 Stop forwarding (get|set)Aligment from MCSectionData to MCSection. by Rafael Espindola · 10 years ago
  50. 0709a7b Move alignment from MCSectionData to MCSection. by Rafael Espindola · 10 years ago
  51. 92a699c MC: Remove most remaining uses of MCSymbolData::getSymbol(), NFC by Duncan P. N. Exon Smith · 10 years ago
  52. 6f48200 MC: Clean up method names in MCContext. by Jim Grosbach · 10 years ago
  53. 09bfa58 MC: Change MCFragment::Atom to an MCSymbol, NFC by Duncan P. N. Exon Smith · 10 years ago
  54. f48de1c MC: Change MCAssembler::Symbols to store MCSymbol, NFC by Duncan P. N. Exon Smith · 10 years ago
  55. 91df21f MC: Update MCCodeEmitter naming. NFC. by Jim Grosbach · 10 years ago
  56. 5560a4c Use raw_pwrite_stream in the object writer/streamer. by Rafael Espindola · 10 years ago
  57. 36a15cb Don't declare all text sections at the start of the .s by Rafael Espindola · 11 years ago
  58. cd584a8 Split the object streamer callback in one per file format. by Rafael Espindola · 11 years ago
  59. 8c0809c Replace size method call of containers to empty method where appropriate by Alexander Kornienko · 11 years ago
  60. 559b47d Add and update reset() and doInitialization() methods to MC* and passes. by Yaron Keren · 11 years ago
  61. 8c90fd7 Add override to overriden virtual methods, remove virtual keywords. by Benjamin Kramer · 11 years ago
  62. f491704 Print a=b as an assignment. by Rafael Espindola · 11 years ago
  63. 7f4ccce Remove an always true argument. by Rafael Espindola · 11 years ago
  64. b60c829 Centralize the handling of the thumb bit. by Rafael Espindola · 11 years ago
  65. 583a31c Add range access to MCAssembler's symbol collection. by David Blaikie · 11 years ago
  66. bb694de [C++11] More 'nullptr' conversion or in some cases just using a boolean check instead of comparing to nullptr. by Craig Topper · 11 years ago
  67. 53d3251 MachO: Add linker-optimisation hint framework to MC. by Tim Northover · 12 years ago
  68. c3988b4 MachO: allow each section to have a linker-private symbol by Tim Northover · 12 years ago
  69. 448334a Darwin: Add assembler directives to create version-min load commands. by Jim Grosbach · 12 years ago
  70. 34a61bc [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 12 years ago
  71. 9784cef Explictly pass MCSubtargetInfo to MCCodeEmitter::EncodeInstruction() by David Woodhouse · 12 years ago
  72. 6f3c73f Modify MCObjectStreamer EmitInstTo* interface by David Woodhouse · 12 years ago
  73. 24ea09e Construct the MCStreamer before constructing the MCTargetStreamer. by Rafael Espindola · 12 years ago
  74. 61adb27 Most streamers' InitSections just create a text section. Make that the default by Rafael Espindola · 12 years ago
  75. f144034 InitToTextSection is redundant with InitSections. Remove it. by Rafael Espindola · 12 years ago
  76. e308c0c Remove duplicated info on what .text, .data and .bss look like. by Rafael Espindola · 12 years ago
  77. 5645bad Move .ident handling to MCStreamer. by Rafael Espindola · 12 years ago
  78. a17151a Add a MCTargetStreamer interface. by Rafael Espindola · 12 years ago
  79. ac4ad25 Remove some really nasty uses of hasRawTextSupport. by Rafael Espindola · 12 years ago
  80. 21101b3 Added support for generate DWARF .debug_aranges sections automatically. by Richard Mitton · 12 years ago
  81. 550c76d Call generateCompactUnwindEncodings() right before we need to output the frame information. by Bill Wendling · 12 years ago
  82. 58e2d3d Generate compact unwind encoding from CFI directives. by Bill Wendling · 12 years ago
  83. b1e2183 Add missing header line. by Bill Wendling · 12 years ago
  84. 4208b61 [CodeGen] prevent abnormal on invalid attributes by Saleem Abdulrasool · 12 years ago
  85. 42ae459 Fix a FIXME, on darwin all virtual sections have a zerofill type. by Eric Christopher · 12 years ago
  86. 2f495b9 Add support for subsections to the ELF assembler. Fixes PR8717. by Peter Collingbourne · 12 years ago
  87. de093ef Give the MCStreamer class hierarchy LLVM RTTI facilities for use with by Chandler Carruth · 13 years ago
  88. eec0f32 [MC/Mach-O] Add support for linker options in Mach-O files. by Daniel Dunbar · 13 years ago
  89. cbb2514 Expose an InitToTextSection through MCStreamer. by Eli Bendersky · 13 years ago
  90. aee4d5d1 This patch is needed to make c++ exceptions work for mips16. by Reed Kotler · 13 years ago
  91. a31a894 Refactor MCInstFragment and MCDataFragment to adhere to a common interface, by Eli Bendersky · 13 years ago
  92. ea2824d Lift EmitAssignment into MCObjectStreamer which gets rid of at least three by Eli Bendersky · 13 years ago
  93. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  94. 64ddcb0 Hoist some grossly duplicated code from the COFF/ELF/MachO streamers into MCObjectStreamer. by Benjamin Kramer · 13 years ago
  95. 745c52d MachO: direct-to-object attribute for data-in-code markers. by Jim Grosbach · 13 years ago
  96. 47f9ec9 MC: Overhaul handling of .lcomm by Benjamin Kramer · 13 years ago
  97. f5bd6c6 EmitZerofill should take a 64-bit size or else it's chopping off large zero-filled global. rdar://11729134 by Evan Cheng · 13 years ago
  98. 4b63d2a Refactor data-in-code annotations. by Jim Grosbach · 13 years ago
  99. a2886c2 Convert assert(0) to llvm_unreachable by Craig Topper · 14 years ago
  100. aba3de9 Tidy up. MCAsmBackend naming conventions. by Jim Grosbach · 14 years ago