1. c4a7446 Revert "unique_ptrify LiveRange::segmentSet" by David Blaikie · 11 years ago
  2. 87a61e9 Move TargetLibraryInfo data from two files into one common .def file. by Jan Wen Voung · 11 years ago
  3. 45499d3 unique_ptrify LiveRange::segmentSet by David Blaikie · 11 years ago
  4. ae0620c [sanitizer/coverage] Add AFL-style coverage counters (search heuristic for fuzzing). by Kostya Serebryany · 11 years ago
  5. 0e5fc6e Remove subtarget dependence in pass pipeline setup for AArch64. by Eric Christopher · 11 years ago
  6. ec0a396 WinEH: Remove vestigial EH object by Reid Kleckner · 11 years ago
  7. 9ab9224 LangRef: Clarify select's semantics with vector arguments by David Majnemer · 11 years ago
  8. 8db493c InstCombine: Ensure select condition types are identical before merging by David Majnemer · 11 years ago
  9. 92dabb5 Moving WinEH outlining tests to an architecture neutral location by Andrew Kaylor · 11 years ago
  10. 5f4b9f8 Avoid copying LiveInterval, this could lead to a double-delete by David Blaikie · 11 years ago
  11. 63295d8 Fix a problem where the TwoAddressInstructionPass which generate redundant register moves in a loop. by Eric Christopher · 11 years ago
  12. a716c07 Remove getDataLayout() from Instruction/GlobalValue/BasicBlock/Function by Mehdi Amini · 11 years ago
  13. 7cecca6 Fix the build broken in r231142 by David Blaikie · 11 years ago
  14. e8bbce6 DAGCombiner::LoadedSlice: Remove explicit copy ctor in favor of the Rule of Zero by David Blaikie · 11 years ago
  15. 9bc6a97 RewriteStatepointsForGC::PhiState: Remove explicit copy ctor in favor of the Rule of Zero by David Blaikie · 11 years ago
  16. 017ba39 CFG::SuccessorIterator: Remove explicit copy assignment, as the default is fine by David Blaikie · 11 years ago
  17. c853fd1 CFG::SuccessorIterator::SuccessorProxy:: Expliictly default copy construction as it is deprecated in C++11 in the presence of explicit copy assignment. by David Blaikie · 11 years ago
  18. 10faa1b Teach ComputeNumSignBits about signed divisions. by Nadav Rotem · 11 years ago
  19. fdba200 Remove the explicit SDNodeIterator::operator= in favor of the implicit default by David Blaikie · 11 years ago
  20. 317ccaf Revert "Remove the explicit SDNodeIterator::operator= in favor of the implicit default" by David Blaikie · 11 years ago
  21. b13215e Remove the explicit SDNodeIterator::operator= in favor of the implicit default by David Blaikie · 11 years ago
  22. 113c43b Remove the explicit SUnitIterator::operator= as the default is just fine by David Blaikie · 11 years ago
  23. fd9cb11 Remove LatencyPriorityQueue::dump because it relies on an implicit copy ctor which is deprecated in C++11 (due to the presence of a user-declare dtor in the base class) by David Blaikie · 11 years ago
  24. 0685d06 Correctly handle -pass-remarks in the gold plugin. by Rafael Espindola · 11 years ago
  25. 1f8fa31 [X86][ELF] Correct relocation for DWARF TLS references by Paul Robinson · 11 years ago
  26. 4549d73 remove enum value names from comments; NFC by Sanjay Patel · 11 years ago
  27. 221418e Add support for SunOS function/data sections and associated section gc. by Eric Christopher · 11 years ago
  28. 0bec909 unique_ptrify ResourcePriorityQueue::ResourceModel by David Blaikie · 11 years ago
  29. d6b76f9 Remove ResourcePriorityQueue::dump as it relies on copying a non-copyable type which would result in a double-delete by David Blaikie · 11 years ago
  30. 4b7263d [ADT] fail-fast iterators for DenseMap by Sanjoy Das · 11 years ago
  31. d885b86 use bool operator shortcut; NFC by Sanjay Patel · 11 years ago
  32. 630bf05 Fixing problem with field initialization order by Andrew Kaylor · 11 years ago
  33. e8e51a1 Fix PR22762. When emitting a DWARF expression check whether this is the by Adrian Prantl · 11 years ago
  34. 83eaade Outline cleanup handlers for native Windows C++ exception handling by Andrew Kaylor · 11 years ago
  35. 40057e8 Add the following 64-bit vector integer arithmetic instructions added in POWER8: by Kit Barton · 11 years ago
  36. 7462aea DeltaAlgorithm: Provide protected default copy ctor for use by test derived class. by David Blaikie · 11 years ago
  37. 394b3ac Remove explicit no-op dtor in favor of the implicit dtor so as not to disable/deprecate the copy operations. by David Blaikie · 11 years ago
  38. b858734 Remove no-op dtor so that use of the implicit copy ctor/assignment operator are not deprecated. by David Blaikie · 11 years ago
  39. 7b1d76b Add a comment above findRepresentativeClass explaining why it's by Eric Christopher · 11 years ago
  40. dddc398 Remove explicit copy ctor in favor of the implicit one so that the use of the copy assignment operator is not deprecated. by David Blaikie · 11 years ago
  41. 7ff255b Remove explicit copy assignment operator in favor of the implicit/default to avoid disabling/deprecating the implicit copy ctor. by David Blaikie · 11 years ago
  42. f9a9c6f Remove explicit copy ctor in favor of the default so as not to disable/deprecate the implicit copy assignment operator by David Blaikie · 11 years ago
  43. 6e274fd unique_ptrify FullDependenceAnalysis::DV by David Blaikie · 11 years ago
  44. 9fefa52 FullDependenceAnalysis: Avoid using the (deprecated in C++11) copy ctor by David Blaikie · 11 years ago
  45. f7699e8 Remove some explicit copy assignment operators is favor of implicit ones, as their presence makes the use of the implicit copy ctor deprecated in C++11 by David Blaikie · 11 years ago
  46. 2a6c6e9 Fix PR22750: non-determinism causes assertion failure in DWARF generation by Dario Domizioli · 11 years ago
  47. f5e27ed [Small]BitVector::reference: Explicitly default copy construction as it is deprecated in C++11 in the presence of explicit copy assignment. by David Blaikie · 11 years ago
  48. 24a7df3 Avoid explicitly declaring the copy assignment operator, as this unnecessarily makes the copy ctor deprecated in C++11 by David Blaikie · 11 years ago
  49. 6283687 Twine: Explicitly default the copy ctor as it's otherwise deprecated in C++11 by the presence of a user-declared copy assignment operator. by David Blaikie · 11 years ago
  50. 88f45e5 DenseMapIterator: Avoid explicitly declaring the copy ctor as this makes the copy assignment operator deprecated in C++11 by David Blaikie · 11 years ago
  51. a33c652 Make Triple::getOSVersion make sense for Android. by Dan Albert · 11 years ago
  52. b900a6d 80-column fixup. by Eric Christopher · 11 years ago
  53. 9c28314 Make llvm.eh.begincatch use an outparam by Reid Kleckner · 11 years ago
  54. f1de1ad [AArch64] When combining constant mul of -3, prefer (sub x, (shl x, N)). by Chad Rosier · 11 years ago
  55. b056aa7 DebugInfo: Move new hierarchy into place by Duncan P. N. Exon Smith · 11 years ago
  56. 853cd26 IR: Add missing API to specialized metadata nodes by Duncan P. N. Exon Smith · 11 years ago
  57. 6800198 Make llvm/test/Object/archive-format.test CRLF-tolerant. by NAKAMURA Takumi · 11 years ago
  58. 822a753 [X86][Haswell][SchedModel] Fix patterns for scalar FMA3 variants. by Michael Kuperstein · 11 years ago
  59. ae76541 AVX-512: Moved patterns for masked load/store under avx_store, avx_load classes. by Elena Demikhovsky · 11 years ago
  60. bbaf4fd During PHI elimination, split critical edges that move copies out of loops. by Daniel Jasper · 11 years ago
  61. 21d5465 Add range iterators to Extract/InsertValueInst indices by Daniel Berlin · 11 years ago
  62. ca99858 Switch up whitespace with better whitespace. by Nick Lewycky · 11 years ago
  63. 146db69 Revert the non-cleanup part of r230769 because it introduced a non-determinism found only in the names of symbols. by Nick Lewycky · 11 years ago
  64. 25dc6c8 Cleanup after r230934 per Dave's suggestions. by Owen Anderson · 11 years ago
  65. fc2c7a5 [X86] Remove some unused code from disassembler. by Craig Topper · 11 years ago
  66. e288a5b Revert "[ADT] fail-fast iterators for DenseMap" by Sanjoy Das · 11 years ago
  67. 7abe807 Add explicit type to empty std::set initializer to fix the libc++ build. by Peter Collingbourne · 11 years ago
  68. 14593eb [X86] Special-case 2x CMOV when custom-inserting. by Ahmed Bougacha · 11 years ago
  69. 8b5527d [X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)). by Ahmed Bougacha · 11 years ago
  70. a818202 Fix cppeh breakage due to racing commits by Reid Kleckner · 11 years ago
  71. 27821d7 LowerBitSets: Use byte arrays instead of bit sets to represent in-memory bit sets. by Peter Collingbourne · 11 years ago
  72. f89c6af Remap arguments and non-alloca values used by outlined C++ exception handlers. by Andrew Kaylor · 11 years ago
  73. 51a8339 LoopIdiom: Give globals for memset_pattern16 private linkage. by Benjamin Kramer · 11 years ago
  74. 8594a2a WinEH: Run opt -instnamer over some cppeh tests and update CHECKs by Reid Kleckner · 11 years ago
  75. 47ffd6e [ADT] fail-fast iterators for DenseMap by Sanjoy Das · 11 years ago
  76. a6f1fd6 TLI: Factor out sanitizeFunctionName. NFC. by Michael Zolotukhin · 11 years ago
  77. 0b08b96 IndexedMap: Document why SmallVector<T, 0> is preferable here. by Benjamin Kramer · 11 years ago
  78. e4ffd28 Revert "Revert "For the dwarf expression code get the subtarget off of the current"" by Adrian Prantl · 11 years ago
  79. 994176a Refactor DebugLocDWARFExpression so it doesn't require access to the by Adrian Prantl · 11 years ago
  80. fd78a7d cmake: Use MSVC atomics with clang-cl by Reid Kleckner · 11 years ago
  81. ef20302 Support: Use const pointers for reads. by Jan Vesely · 11 years ago
  82. caee94b Revert some changes that were made to fix PR20680. by Sanjoy Das · 11 years ago
  83. 2dc2d3f lit: Add 'cd' support to the internal shell and port some tests by Reid Kleckner · 11 years ago
  84. 4d1d4ba Use read{16,32,64}{le,be}() instead of *reinterpret_cast<u{little,big}{16,32,64}_t>(). by Rui Ueyama · 11 years ago
  85. 3ad0e2c SmallVector: Allow initialization and assignment from initializer_list. by Benjamin Kramer · 11 years ago
  86. f027454 TLI: Use lambda. NFC. by Michael Zolotukhin · 11 years ago
  87. f5b6989 Make ToVectorTy static. by Michael Zolotukhin · 11 years ago
  88. dc84228 Fix a copy-paste bug. by Michael Zolotukhin · 11 years ago
  89. a2e69c9 Revert "Refactor DebugLocDWARFExpression so it doesn't require access to the" by Adrian Prantl · 11 years ago
  90. db52ec3 Revert "For the dwarf expression code get the subtarget off of the current" by Adrian Prantl · 11 years ago
  91. 955419e Support: Add {read,write}{16,32,64}{le,be} functions. by Rui Ueyama · 11 years ago
  92. 7f9bc09 Remove useless .debug_macinfo section setup. by Paul Robinson · 11 years ago
  93. 7f620e5 Change SystemZ large tests to use the existing long_tests property by David Blaikie · 11 years ago
  94. 131d7fbd [PerformanceTips] Document various items folks have suggested by Philip Reames · 11 years ago
  95. de83324 Add r230655 back with a fix. by Rafael Espindola · 11 years ago
  96. 45ba21c For the dwarf expression code get the subtarget off of the current by Eric Christopher · 11 years ago
  97. 0a5c301 Restore LLVMLinkModules C API until it is properly deprecated. by Juergen Ributzka · 11 years ago
  98. e8676a2 R600: Use c++11 style for loop by Jan Vesely · 11 years ago
  99. a2541bd Revert r230979, should apply to all X86 ELF. by Paul Robinson · 11 years ago
  100. b07ab5d Making the SO version major.minor instead of just major because ABI and API change between minor versions. by Chris Bieneman · 11 years ago