1. ce637fe StringTableBuilder: Don't assert when writing an empty raw string table. by Peter Collingbourne · 8 years ago
  2. 1f64ee0 Bitcode: Remove an unused declaration. NFC. by Peter Collingbourne · 8 years ago
  3. 062224c [Bugpoint] Use `unique_ptr` correctly. by Bryant Wong · 8 years ago
  4. 15bfd0f [X86 TTI] Implement LSV hook by Keno Fischer · 8 years ago
  5. 4640b8e Remove accidental debug printf. Follow up to r299583. by Ivan Krasin · 8 years ago
  6. f836c7d Revert r299536. [AMDGPU] SDWA peephole: enable by default. by Ivan Krasin · 8 years ago
  7. acdd135 [Hexagon] Use -mattr to select HVX mode in a testcase, NFC by Krzysztof Parzyszek · 8 years ago
  8. d6a6d70 MemorySSA: Remove MemorySSA walker caching. by Daniel Berlin · 8 years ago
  9. 12290fa [llvm-readobj] Only print the real size of the note by Petr Hosek · 8 years ago
  10. c0a4814 [DAGCombine] Support FMF contract in fused multiple-and-sub too by Adam Nemet · 8 years ago
  11. 0a518c3 [DAGCombine] Remove commented-out code from r299096 by Adam Nemet · 8 years ago
  12. bcca3be [InstCombine] add fold for icmp with or mask of low bits (PR32542) by Sanjay Patel · 8 years ago
  13. 5acb804 [ExecutionDepsFix] Don't recurse over the CFG by Keno Fischer · 8 years ago
  14. 9dd1db1 [InstCombine] fix formatting and variable names; NFCI by Sanjay Patel · 8 years ago
  15. 4b7a5e5 [AMDGPU][MC] Fix for Bug 28158 + LIT tests by Dmitry Preobrazhensky · 8 years ago
  16. 5def10a MemorySSA: Fix and use optimized_def_chain by Daniel Berlin · 8 years ago
  17. 3282f4e [lit] Revert to old execution strategy while I debug these pickling errors by Reid Kleckner · 8 years ago
  18. 3f58a16 [lit] Use Python 3 style print to satisfy some bots by Reid Kleckner · 8 years ago
  19. 5b76b29 ARMFrameLowering: Slight cleanups; NFC by Matthias Braun · 8 years ago
  20. e514965 [lit] Use process pools for test execution by default by Reid Kleckner · 8 years ago
  21. 9331ebe [ARM] Try to re-enable MachineBranchProb.ll for ARM/AArch64 by Renato Golin · 8 years ago
  22. 81a71c4 [InstCombine] add tests for missing icmp fold (PR32524) by Sanjay Patel · 8 years ago
  23. 8067b87 [AMDGPU][MC] Fix for Bug 28167 + LIT tests by Dmitry Preobrazhensky · 8 years ago
  24. af1205b [SystemZ] Prevent Merging Bitcast with non-normal loads by Nirav Dave · 8 years ago
  25. 6bc97db [yaml2obj] Factor out error handling code. by Davide Italiano · 8 years ago
  26. cfe642f [llvm-ar] Remove unneeded std::, NFCI. by Davide Italiano · 8 years ago
  27. 6edf98c [llvm-ar] errors go on stderr and not on stdout. by Davide Italiano · 8 years ago
  28. 50982d3 Respect CMAKE_INSTALL_MANDIR for sphinx generated manpages by Jonathan Roelofs · 8 years ago
  29. 4561efc [yaml2obj] Improve error message when output file cannot be opened. by Davide Italiano · 8 years ago
  30. a9eefb0 [LV] Make test case more robust by Matthew Simpson · 8 years ago
  31. a070c92 [DAGCombiner] add and use TLI hook to convert and-of-seteq / or-of-setne to bitwise logic+setcc (PR32401) by Sanjay Patel · 8 years ago
  32. 4a035b6 [DAGCombiner] Don't make a BUILD_VECTOR with operands of illegal type. by Jonas Paulsson · 8 years ago
  33. 0a06935 [InstCombine] add tests for missing add canonicalization; NFC by Sanjay Patel · 8 years ago
  34. be2d374 [globalisel][tablegen] Fix patterns involving multiple ComplexPatterns. by Daniel Sanders · 8 years ago
  35. 4523389 [AMDGPU] SDWA peephole: enable by default by Sam Kolton · 8 years ago
  36. 9544eb3 Fix WebAssembly after r299529. by Alexander Kornienko · 8 years ago
  37. a71e6d9 [X86][SSE] Renamed combine to make it clear that it only handles the vector shift by immediate opcodes. NFCI by Simon Pilgrim · 8 years ago
  38. f058160 [AArch64] Crypto requires FP. by James Molloy · 8 years ago
  39. ff1254b Add MCContext argument to MCAsmBackend::applyFixup for error reporting by Alex Bradbury · 8 years ago
  40. 3a16856 [LAA] Correctly return a half-open range in expandBounds by James Molloy · 8 years ago
  41. f202abf [coroutines] Add syntax coloring to examples in Coroutines.rst by Gor Nishanov · 8 years ago
  42. 1115fbd [ObjCArc] Do not dereference an invalidated iterator. by Akira Hatanaka · 8 years ago
  43. 9be01ddb [RuntimeDyld] Remove an unused static member left over from r299449. by Lang Hames · 8 years ago
  44. ed735da ThinLTOBitcodeWriter: handle aliases first in filterModule by Bob Haarman · 8 years ago
  45. e339e10 [X86] Relax assert in broadcast-of-subvector lowering. by Ahmed Bougacha · 8 years ago
  46. 73135b6 Allow targets to opt-in to codegen in SCC order by Matt Arsenault · 8 years ago
  47. 4977b97 Re-apply MemorySSA: Add support for caching clobbering access in by Daniel Berlin · 8 years ago
  48. d8050a7 Revert "MemorySSA: Add support for caching clobbering access in stores" by Daniel Berlin · 8 years ago
  49. 802fcd9 [MC] Set defaults based on section names and support name suffixes by Petr Hosek · 8 years ago
  50. 6f50c7f [AArch64] Avoid partial register deps on insertelt of load into lane 0. by Ahmed Bougacha · 8 years ago
  51. 8719ab1 Change section flag character for SHF_LINK_ORDER to "o". by Evgeniy Stepanov · 8 years ago
  52. 862117b [InstCombine] Add test cases for various add/subtracts of constants(scalar, splat, and vector) with phis and selects. Improvements coming in a future commit. by Craig Topper · 8 years ago
  53. 7cc76f2 [lit] Add a minimum export implementation. by Rafael Espindola · 8 years ago
  54. 828ad88 [InstCombine] rename variable for easier reading; NFC by Sanjay Patel · 8 years ago
  55. 7597f2a [InstCombine] Turn subtract of vectors of i1 into xor like we do for scalar i1. Matches what we already do for add. by Craig Topper · 8 years ago
  56. 340999b [AArch64] Add missing schedinfo, check completeness for Falkor. by Balaram Makam · 8 years ago
  57. 54eda94 [ExecutionDepsFix] Don't revisit true dependencies by Keno Fischer · 8 years ago
  58. d6c407e [InstCombine] Support folding and/or/xor with a constant vector RHS into selects and phis by Craig Topper · 8 years ago
  59. 75d6508 [AArch64][Fuchsia] Allow -mcmodel=kernel for --target=aarch64-fuchsia by Petr Hosek · 8 years ago
  60. 80bfe66 [InstCombine] Add test cases for missing combines of phis with and/or/xor with constant argument. NFC by Craig Topper · 8 years ago
  61. 4dd33e6 Implement host CPU detection for AArch64 by Yi Kong · 8 years ago
  62. dce3b51 Verifier: Check some amdgpu calling convention restrictions by Matt Arsenault · 8 years ago
  63. 5d76ab9 [AArch64] Refine Falkor Machine Model - Part 2 by Balaram Makam · 8 years ago
  64. 983e1a1 [X86][inline-asm] Add support for MS 'EVEN' directive by Coby Tayree · 8 years ago
  65. c1eaf3a [InstCombine] Add more test cases for missing combines of selects with and/or/xor with constant argument. NFC by Craig Topper · 8 years ago
  66. e65aa1c [RuntimeDyld] Make RuntimeDyld honor the ProcessAllSections flag. by Lang Hames · 8 years ago
  67. 1f3f346 [x86] remove dead select-of-constants transform; NFCI by Sanjay Patel · 8 years ago
  68. 9e52f8e [PGO] Memory intrinsic calls optimization based on profiled size by Rong Xu · 8 years ago
  69. 452506a AMDGPU: Remove legacy export intrinsic by Matt Arsenault · 8 years ago
  70. f486610 AMDGPU: Remove legacy image intrinsics by Matt Arsenault · 8 years ago
  71. 7c1642c [X86][MS-compatability]Allow named synonymous for MS-assembly operators by Coby Tayree · 8 years ago
  72. 21de338 Strip trailing whitespace by Simon Pilgrim · 8 years ago
  73. 62b3ad7 [globalisel][tablegen] Fix non-determinism introduced in r299430. by Daniel Sanders · 8 years ago
  74. 8eaecfe [globalisel][tablegen] Try to make MSVC happy with r299430 by Daniel Sanders · 8 years ago
  75. 3341db9 [X86][LLVM] Converting __mm{|256|512}_movm_epi{8|16|32|64} LLVMIR call into generic intrinsics. by Michael Zuckerman · 8 years ago
  76. 690f0b2 [tablegen][globalisel] Add support for nested instruction matching. by Daniel Sanders · 8 years ago
  77. d7a71bf [mips] Deal with empty blocks in the mips hazard scheduler by Simon Dardis · 8 years ago
  78. 78ed6ce [X86] Add 64 bit pattern matching for PSADBW by Oren Ben Simhon · 8 years ago
  79. ba1514c Align all scalar numbers to LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR by Jonas Hahnfeld · 8 years ago
  80. 099a6fd [InstCombine] Use setAllBits in place of getAllOnesValue since we know the bitwidths are the same. NFCI by Craig Topper · 8 years ago
  81. c7f9b76 InstCombine: Use the InstSimplify hook for shufflevector by Zvi Rackover · 8 years ago
  82. 48f7bb5 [PDB] Save one type record copy by Reid Kleckner · 8 years ago
  83. 7c5b7f3 [codeview] Cope with unsorted streams in type merging by Reid Kleckner · 8 years ago
  84. d6780cc [Fuzzer] Flush std::cout before aborting in CxxStringEqTest by Reid Kleckner · 8 years ago
  85. e203309 add/move codegen tests for and/or of setcc; NFC by Sanjay Patel · 8 years ago
  86. 9d740a4 Update stale doxygen links in ProgrammersManual.rst by Tim Northover · 8 years ago
  87. 07d42b8 InstSimplify: Add a hook for shufflevector by Zvi Rackover · 8 years ago
  88. c4d3801 Reland r298901 with modifications (reverted in r298932) by Weiming Zhao · 8 years ago
  89. 513e714 AMDGPU: Remove llvm.SI.vs.load.input by Matt Arsenault · 8 years ago
  90. 5b7b340 DAG: Fix missing legalization for any_extend_vector_inreg operands by Matt Arsenault · 8 years ago
  91. 2c2955a [codeview] Add support for label type records by Reid Kleckner · 8 years ago
  92. dc4f56d [X86][SSE]] Lower BUILD_VECTOR with repeated elts as BUILD_VECTOR + VECTOR_SHUFFLE by Simon Pilgrim · 8 years ago
  93. d1815f3 [InstCombine] Remove canonicalization for (X & C1) | C2 --> (X | C2) & (C1|C2) when C1 & C2 have common bits. by Craig Topper · 8 years ago
  94. 019f65e x86 interrupt calling convention: re-align stack pointer on 64-bit if an error code was pushed by Amjad Aboud · 8 years ago
  95. 78c95b3 [CodeGenPrep] move aarch64-type-promotion to CGP by Jun Bum Lim · 8 years ago
  96. 445d3cf [DAGCombine][InstCombine] Fix inverted if condition in equivalent comments in DAGCombine and InstCombine. NFC by Craig Topper · 8 years ago
  97. 5b2afe9 Fix LLVMBuild.txt typo. NFC by Joel Jones · 8 years ago
  98. cd7c9c3 AMDGPU: Remove legacy bfe intrinsics by Matt Arsenault · 8 years ago
  99. 2118027 [Support] Make printAllJSONValues public, for custom output. by Graydon Hoare · 8 years ago
  100. 7bceb16 Bitcode: Remove reader support for MODULE_CODE_PURGEVALS. by Peter Collingbourne · 8 years ago