1. 66ec4e6 Updating the credits after r158717 by Aaron Ballman · 12 years ago
  2. 540fe7d Put flag names on one line. by Bill Wendling · 12 years ago
  3. ce6e0a1 Fix italicized text. by Bill Wendling · 12 years ago
  4. 67d31c6 Use correct URL. by Bill Wendling · 12 years ago
  5. ea2a7d7 Fix numbering of list items. by Bill Wendling · 12 years ago
  6. e2658d6 Fix some Sphinx mistakes. by Bill Wendling · 12 years ago
  7. 4caaa1a First attempt at Sphinx. Convert the Projects.html file to Sphinx format. by Bill Wendling · 12 years ago
  8. b51c8e9 [Support/PathV2] Fix out of bounds access in identify_magic when the file is empty. by Michael J. Spencer · 12 years ago
  9. bde801b Make MipsLongBranch::runOnMachineFunction return true. by Akira Hatanaka · 12 years ago
  10. 226ae40 Use MachineBasicBlock::instr_iterator instead of MachineBasicBlock::iterator in by Akira Hatanaka · 12 years ago
  11. ac81cc3 Add support for generating reg+reg preinc stores on PPC. by Hal Finkel · 12 years ago
  12. 565bdbf really add a triple :-( by Rafael Espindola · 12 years ago
  13. e08c134 Add a triple to the test. by Rafael Espindola · 12 years ago
  14. d6b43a3 Move the support for using .init_array from ARM to the generic by Rafael Espindola · 12 years ago
  15. f6fc855 revert r158660, since Chris has some issues with this patch (namely using code to reprent information only used by the compiler) by Nuno Lopes · 12 years ago
  16. 9042010 Don't copy a potentially-uninitialized variable. by David Blaikie · 12 years ago
  17. eda9fdf ARM: use NOEN loads and stores if possible when handling struct byval. by Manman Ren · 12 years ago
  18. e877c4f Allow up to 64 functional units per processor itinerary. by Hal Finkel · 12 years ago
  19. 0ed5cf4 [docs] Port FAQ over to Sphinx. by Michael J. Spencer · 12 years ago
  20. 9ac0f1d Added accessors for getting coff_relocation info by Marshall Clow · 12 years ago
  21. 7e99a60 ARM: Define generic HINT instruction. by Jim Grosbach · 12 years ago
  22. 325bd66 TableGen: AsmMatcher missing-features list minimization. by Jim Grosbach · 12 years ago
  23. 0fad48f Add mipsel-* to the list of targets recognized by configure script. by Simon Atanasyan · 12 years ago
  24. fa74943 add the 'alloc' metadata node to represent the size of offset of buffers pointed to by pointers. by Nuno Lopes · 12 years ago
  25. 96ef284 This change handles a another case for generating the bic instruction by Joel Jones · 12 years ago
  26. 457dfba Add a regression test for the bug exposed by r158087, which has been by Chandler Carruth · 12 years ago
  27. 4336924 Temporarily revert r158087. by Chandler Carruth · 12 years ago
  28. 1b9d890 TableGen.cmake: Fix to work without LLVM_COMMON_DEPENDS. by NAKAMURA Takumi · 12 years ago
  29. 3b6752e For reasons I can't fathom MSVC supports ULL but not LLU suffixes on long long integer literals. by Benjamin Kramer · 12 years ago
  30. 044de9c Add missing unittest files to the cmake build. by Benjamin Kramer · 12 years ago
  31. 1721b61 Remove SmallMap unittests, unbreaking the build. by Benjamin Kramer · 12 years ago
  32. d45f7b6 Bring the return value of SmallVector::insert in line with std::vector::insert. by Benjamin Kramer · 12 years ago
  33. b4bec53 Remove SmallMap, and the several files that were used to implement it. by Chandler Carruth · 12 years ago
  34. 5f6c7cf SmallVector: return a valid iterator for the rare case of inserting an empty range into a SmallVector. by Benjamin Kramer · 12 years ago
  35. 8dffa4a Add a unit test for 'swap', and fix a pile of bugs in SmallDenseMap::swap. by Chandler Carruth · 12 years ago
  36. 3967f50 Disable a particular assertion on MSVC... I'm deeply disturbed by its by Chandler Carruth · 12 years ago
  37. 6446d7e Add tests for *DenesMap for both key and value types' construction and by Chandler Carruth · 12 years ago
  38. dd9d38d Introduce a SmallDenseMap container that re-uses the existing DenseMap by Chandler Carruth · 12 years ago
  39. f445be8 Add some somewhat exhaustive tests of sizeof properties of this horrible by Chandler Carruth · 12 years ago
  40. 80f020a Now that SROA can form alloca's for dynamic vector accesses, further improve it to be able to replace operations on these vector alloca's with insert/extract element insts by Pete Cooper · 12 years ago
  41. e04690e Disable the right instance of TheJIT, this one is only used in asserts. by Benjamin Kramer · 12 years ago
  42. a978366 Guard private fields that are unused in Release builds with #ifndef NDEBUG. by Benjamin Kramer · 12 years ago
  43. 2741d2c Cleanup trip-count finding for PPC CTR loops (and some bug fixes). by Hal Finkel · 12 years ago
  44. ab4684e Teach BBVectorize to combine, when possible, or discard metadata when fusing instructions. by Hal Finkel · 12 years ago
  45. 7b4ff93 Move the Metadata merging methods from GVN and make them public in MDNode. by Hal Finkel · 12 years ago
  46. fc9216e Implement irpc. Extracted from a patch by the PaX team. I just added the test. by Rafael Espindola · 12 years ago
  47. 19e5015 *no need to pollute Intel syntax with bonus mnemonics; operand size is explicitly specified by Kay Tiong Khoo · 12 years ago
  48. 9d58f93 Mips/AsmParser/CMakeLists.txt: Fix dependency. by NAKAMURA Takumi · 12 years ago
  49. f4e4c30 Update CMake build. by Benjamin Kramer · 12 years ago
  50. 904cf82 Merge the SmallBitVector and BitVector unit tests with gtest's typed test magic and bring SmallBitVector up to date. by Benjamin Kramer · 12 years ago
  51. fd2b40e Relax one assertion -- long double has strange alignments on lots of platforms. by Chandler Carruth · 12 years ago
  52. 9755cd6 Try to reduce the size of the array used for compile-time testing by by Chandler Carruth · 12 years ago
  53. 585de7a Add support to the alignment support header for conjuring a character by Chandler Carruth · 12 years ago
  54. 6e406d8 It's not deterministic to iterate over SmallPtrSet. Replace it with SmallSetVector. Patch by Daniel Reynaud. rdar://11671029 by Evan Cheng · 12 years ago
  55. 7027ba9 Work around a bug with MSVC 10 where it fails to recognize a valid use by Chandler Carruth · 12 years ago
  56. 06e6c38 Fix crash from r158529 on Bullet. by Pete Cooper · 12 years ago
  57. e5c7bc6 Type parameterize the DenseMap unit tests. by Chandler Carruth · 12 years ago
  58. 48f4dcf Lift the NumElements and NumTombstones members into the super class by Chandler Carruth · 12 years ago
  59. 7f6c82a Factor DenseMap into a base class that implements the hashtable logic, by Chandler Carruth · 12 years ago
  60. 2943662 Don't call 'FilesToRemove[0]' when the vector is empty, even to compute by Chandler Carruth · 12 years ago
  61. 0b8b3ba Harden the Unix signals code to be more async signal safe. by Chandler Carruth · 12 years ago
  62. af06825 Remove final verification in RABasic. by Jakob Stoklund Olesen · 12 years ago
  63. 127cdba Print out register number in InlineSpiller. by Jakob Stoklund Olesen · 12 years ago
  64. 2399469 Unit test for LSR kind=Special fix: r158536. by Andrew Trick · 12 years ago
  65. eb06b0b Accept null PhysReg arguments to checkRegMaskInterference. by Jakob Stoklund Olesen · 12 years ago
  66. 12a88f8 [docs] Make it pretty. by Michael J. Spencer · 12 years ago
  67. f49a409 Fix the encoding of the armv7m (MClass) for MSR registers other than aspr, by Kevin Enderby · 12 years ago
  68. 307473d ARM: optimization for sub+abs. by Manman Ren · 12 years ago
  69. 695fd1a *fixed to separate mnemonic from operands with tab by Kay Tiong Khoo · 12 years ago
  70. b6b5b7b LSR: fix expansion of scaled reg in non-address type formulae. by Andrew Trick · 12 years ago
  71. 546f210 LSR fix: "Special" users are just like "Basic" users but allow -1 scale. by Andrew Trick · 12 years ago
  72. 4b8e1fd Remove assignments which aren't used afterwards. by Bill Wendling · 12 years ago
  73. e68470a Remove assignments which aren't used afterwards. by Bill Wendling · 12 years ago
  74. cbf7390 Allow SROA to split up an array of vectors into multiple vectors, even when the vectors are dynamically indexed by Pete Cooper · 12 years ago
  75. 2f135d4 Some optimizations done by globalopt are safe only for internal linkage, not by Rafael Espindola · 12 years ago
  76. d628a58 Preserve <undef> flags in ARMExpandPseudo. by Jakob Stoklund Olesen · 12 years ago
  77. 324143d Use regunit liveness in RegisterCoalescer when it is available. by Jakob Stoklund Olesen · 12 years ago
  78. aa7a2f2 Factor macro argument parsing into helper methods and add support for .irp. by Rafael Espindola · 12 years ago
  79. 6207cb5 Free the allocated filename. Found by clang static analyzer. by Bill Wendling · 12 years ago
  80. cd117f7 Fix issues (infinite loop and/or crash) with self-referential instructions, for by Duncan Sands · 12 years ago
  81. 8e58b3e Move AVX version of convert instructions that write to GPRs to the Op1 table. by Craig Topper · 12 years ago
  82. 45aad16 Had a closing brace inside an #ifdef -- oops! by Marshall Clow · 12 years ago
  83. d4d03e0 Adding acessors to COFFObjectFile so that clients can get at the (non-generic) bits by Marshall Clow · 12 years ago
  84. 6399b7c Recommit r158407: Allow SROA to look at a vector type and see if the offset is out of range to be replaced with a scalar access. Now with additional fix and test for indexing into a vector inside a struct by Pete Cooper · 12 years ago
  85. 0397729 Implement the isSafeToDiscardIfUnused predicate and use it in globalopt and by Rafael Espindola · 12 years ago
  86. 312091e Move X86::VCVTTSD2SIrr from the 2 operand to 1 operand MemRegOp table. by Pete Cooper · 12 years ago
  87. 864f660 Fix coding style violations. Remove white spaces and tabs. by Akira Hatanaka · 12 years ago
  88. 1418045 1. introduce MipsPat in place of Pat in order to exclude those from by Akira Hatanaka · 12 years ago
  89. 6b0cd9b Make machine verifier check the first instruction of the last bundle instead of by Akira Hatanaka · 12 years ago
  90. 0180694 Make comment slightly more helpful. by Lang Hames · 12 years ago
  91. 9e06662 Revert r158454: Allow SROA to look at a vector type... Its breaking the vectorise buildbot by Pete Cooper · 12 years ago
  92. 42120a2 misched: disable SSA check pending PR13112. by Andrew Trick · 12 years ago
  93. cba9123 SmallMap, FlatArrayMap::copyFrom by Stepan Dyatkovskiy · 12 years ago
  94. 722f254 Remove/modify C backend references from LLVM documentation. by David Blaikie · 12 years ago
  95. deb8780 Remove C backend reference from the FAQ. by David Blaikie · 12 years ago
  96. 77fdd3a Recommit r158407: Allow SROA to look at a vector type and see if the offset is out of range to be replaced with a scalar access. Now with additional fix and test for indexing into a vector inside a struct by Pete Cooper · 12 years ago
  97. b5a1bf4 Clarify a bit that the types have to be the same. Came up on IRC. by Duncan Sands · 12 years ago
  98. f1ece22 MipsLongBranch.cpp: Tweak llvm::next() to appease msvc. by NAKAMURA Takumi · 12 years ago
  99. a1c7367 Replace assertion failure for badly formatted CPS instrution with error message. by Richard Barton · 12 years ago
  100. efc967e Cleanup whitespace. by Jush Lu · 12 years ago