1. e3f3714 Make llvm-rtdlyd -check preserve automatic address mappings made by RuntimeDyld. by Lang Hames · 8 years ago
  2. 038bc52 [SCEV] Use move semantics in ScalarEvolution::setRange by Craig Topper · 8 years ago
  3. 2a7ef8d [InstSimplify] use ConstantRange to simplify or-of-icmps by Sanjay Patel · 8 years ago
  4. 2c224bc [Kaleidoscope] toy.cpp use after move fix by Peter Szecsi · 8 years ago
  5. 8582763 Remove unnecessary const_cast by Sanjoy Das · 8 years ago
  6. 23430d8 Use array_pod_sort instead of std::sort by Sanjoy Das · 8 years ago
  7. 98dab84 Fix comment. by Lang Hames · 8 years ago
  8. 731d5fe COFF: add ARM64 relocation types by Saleem Abdulrasool · 8 years ago
  9. 93ed699 [X86][AVX512] Relax assertion and just exit combine for unsupported types (PR32907) by Simon Pilgrim · 8 years ago
  10. a299d1a [X86][AVX512] Move v2i64/v4i64 VPABS lowering to tablegen by Simon Pilgrim · 8 years ago
  11. 3f0b5e2 [X86] Reduce code for setting operations actions by merging into loops across multiple types/ops. NFCI. by Simon Pilgrim · 8 years ago
  12. cd67ae1 [NVPTX] Add support for ISD::ABS lowering by Simon Pilgrim · 8 years ago
  13. ad81451 [X86][SSE] Break register dependencies on v16i8/v8i16 BUILD_VECTOR on SSE41 by Simon Pilgrim · 8 years ago
  14. 8a886c7 [Analysis] Print out unreachable loops by Brian Gesiak · 8 years ago
  15. 88a4e3b [X86][AVX2] Add scheduling latency/throughput tests for some AVX2 instructions by Simon Pilgrim · 8 years ago
  16. 4617982 [DAGCombiner] If ISD::ABS is legal/custom, use it directly instead of canonicalizing first. by Simon Pilgrim · 8 years ago
  17. 74fe5ca [SCEV] Remove extra APInt copies from getRangeForAffineARHelper. by Craig Topper · 8 years ago
  18. f5a46e8 [SCEV] Use std::move to avoid some APInt copies. by Craig Topper · 8 years ago
  19. f1e55e5 [SCEV] Use APInt's uint64_t operations instead of creating a temporary APInt to hold 1. by Craig Topper · 8 years ago
  20. 7ab4d48 [SCEV] Avoid a couple APInt copies by capturing by reference since the method returns a reference. by Craig Topper · 8 years ago
  21. 583a251 [LazyValueInfo] Avoid unnecessary copies of ConstantRanges by Craig Topper · 8 years ago
  22. 3ff0533 Note addition of NetBSD support in googletest by Kamil Rytarowski · 8 years ago
  23. 9d90a01 [sanitizer-coverage] implement -fsanitize-coverage=no-prune,... instead of a hidden -mllvm flag. llvm part. by Kostya Serebryany · 8 years ago
  24. ce22b10 [RegisterBankInfo] Uniquely allocate instruction mapping. by Quentin Colombet · 8 years ago
  25. 58d2d98 [BitVector] Improve the description of the BitVector::clear to say it removes the bits rather than clearing since clearing could be interpreted as just zeroing. NFC by Craig Topper · 8 years ago
  26. da0638f Fix spelling error in command line option description. NFC by Craig Topper · 8 years ago
  27. e5dc33d [IR] Fix some Clang-tidy modernize-use-using warnings; other minor fixes (NFC). by Eugene Zelenko · 8 years ago
  28. 66092ae Override invalidate of ProfileSummaryInfo to return false. by Easwaran Raman · 8 years ago
  29. 3804dab [Hexagon] Disable predicated calls by default by Krzysztof Parzyszek · 8 years ago
  30. b5c0fee [Hexagon] Remove C6 and C7 as separate registers by Krzysztof Parzyszek · 8 years ago
  31. 6d59bf7 [RDF] Remove covered parts of reached uses for phi and use in same block by Krzysztof Parzyszek · 8 years ago
  32. 97beda0 ARM: Compute MaxCallFrame size early by Matthias Braun · 8 years ago
  33. 4a6f9ee [CodeView] Reserve TypeDatabase records up front. by Zachary Turner · 8 years ago
  34. 4463e11 Add missing target triple to test by Matthias Braun · 8 years ago
  35. 1ed19d1 Fix -Wreorder warning. by Zachary Turner · 8 years ago
  36. ba51299 [StreamArray] Pipe the Offset through the constructor. by Zachary Turner · 8 years ago
  37. 96d48fa [AMDGPU] In the new waitcnt insertion pass, use getHeader by Kannan Narayanan · 8 years ago
  38. 0cb25a2 MIParser/MIRPrinter: Compute block successors if not explicitely specified by Matthias Braun · 8 years ago
  39. 4468ee1 [X86] Use SDValue::getConstantOperandVal helper. NFCI. by Simon Pilgrim · 8 years ago
  40. 738a26c TargetLibraryInfo: Introduce wcslen by Matthias Braun · 8 years ago
  41. d2ff919 AMDGPU/AMDHSA: Set COMPUTE_PGM_RSRC2:LDS_SIZE to 0 by Konstantin Zhuravlyov · 8 years ago
  42. 9d64d17 Simplify dbg.value handling in SDISel with early returns by Reid Kleckner · 8 years ago
  43. afe8111 [WebAssembly] Add ObjectYAML support for wasm name section by Sam Clegg · 8 years ago
  44. 0a1cb72 [bpf] fix a bug which causes incorrect big endian reloc fixup by Alexei Starovoitov · 8 years ago
  45. 7b3685b Add NetBSD to the list of platforms supporting death tests. Two unit by Joerg Sonnenberger · 8 years ago
  46. 5096d8d If posix_fallocate returns EOPNOTSUPP, fallback to ftruncate. by Joerg Sonnenberger · 8 years ago
  47. ace8b39 [KnownBits] Add wrapper methods for setting and clear all bits in the underlying APInts in KnownBits. by Craig Topper · 8 years ago
  48. dca600b Allow operator-> to work from a FixedStreamArrayIterator. by Adrian McCarthy · 8 years ago
  49. a76abe9 [Float2Int] Replace a ConstantRange copy with a move. Remove an extra call to MapVector::find. by Craig Topper · 8 years ago
  50. 6a4e43b [ADT] Add BitVector::find_prev. by Zachary Turner · 8 years ago
  51. 91c57a1 Add more variations of addcarry in the tests. NFC. by Amaury Sechet · 8 years ago
  52. d439e70 [InstSimplify] fix copy-paste mistake in test comments; NFC by Sanjay Patel · 8 years ago
  53. f93836e [llvm-dwarfdump] - Add comment for maybeDecompress(). NFC. by George Rimar · 8 years ago
  54. 5eef1b5 [InstSimplify] add tests for (icmp X, C1 | icmp X, C2); NFC by Sanjay Patel · 8 years ago
  55. 1febb5c fix build on Cygwin by Nuno Lopes · 8 years ago
  56. dec99cb [AArch64] Remove AArch64AddressTypePromotion pass by Jun Bum Lim · 8 years ago
  57. 776b058 [X86][SSE] Add 128/256/512 bit vector build vector from register tests by Simon Pilgrim · 8 years ago
  58. 978eb7c [LoopIdiom] check for safety while expanding by Aditya Kumar · 8 years ago
  59. 4df5059 [X86][AVX512] Improve support and testing for CTLZ of 512-bit vectors without CDI by Simon Pilgrim · 8 years ago
  60. ded2272 [X86] Remove duplicate operation actions. NFCI. by Simon Pilgrim · 8 years ago
  61. 35e2a9f4 [X86][AVX512CDI] Move v2i64/v4i64 and v4i32/v8i32 VPLZCNT lowering to tablegen by Simon Pilgrim · 8 years ago
  62. 3da6edb Remove stale live-ins in the branch folder by Krzysztof Parzyszek · 8 years ago
  63. bc20017 Remove unused variable by Simon Pilgrim · 8 years ago
  64. 69798f0 [ARM] Add support for ORR and ORN instruction substitutions by John Brawn · 8 years ago
  65. 09fdcb4 [X86][AVX] Add LowerIntUnary helpers to split unary vector ops in half. NFCI. by Simon Pilgrim · 8 years ago
  66. a83f092 [llvm-dwarfdump] - Print an error message if section decompression failed. by George Rimar · 8 years ago
  67. eb74f78 [X86] Remove unused code from X86 optimize LEAs. NFC. by Andrew Ng · 8 years ago
  68. ae5b79d [ArgPromotion] Add a testcase for PR32917 by Martin Storsjo · 8 years ago
  69. 13790c8 Initialize new member X86Operand::FrontendSize in all codepaths. by Daniel Jasper · 8 years ago
  70. c6a0731 Update VP prof metadata during inlining. by Dehao Chen · 8 years ago
  71. 8038a28 [ADT] A few minor improvements to BitVector by Zachary Turner · 8 years ago
  72. 6bf4f87 [pdb] Don't verify TPI hash values up front. by Zachary Turner · 8 years ago
  73. 505c76a [PDB] Don't build the entire source file list up front. by Zachary Turner · 8 years ago
  74. b18693c [llvm-pdbdump] Only build the TypeDatabase if necessary. by Zachary Turner · 8 years ago
  75. 1565077 Remap metadata attached to global variables. by Evgeniy Stepanov · 8 years ago
  76. 197e49d [RegisterBankInfo] Fix 80-col introduced in r293506. by Quentin Colombet · 8 years ago
  77. b39d793 [GlobalISel] Add missing doxygen keyword for doxygen groups. by Quentin Colombet · 8 years ago
  78. 24aaeeb AMDGPU: GFX9 GS and HS shaders always have the scratch wave offset in SGPR5 by Marek Olsak · 8 years ago
  79. 7d7f10b [GISel]:Skip legalizing Intermediate inst(with generic types) by Aditya Nandakumar · 8 years ago
  80. 195a2d9 [JumpThreading] When processing compares, explicitly check that the result type is not a vector rather than check for it being an integer. by Craig Topper · 8 years ago
  81. 0e59845 [JumpThreading] Change a dyn_cast that is already protected by an isa check to a static cast. Combine the with another static cast. NFC by Craig Topper · 8 years ago
  82. 6007e72 [GISel]: Add support to translate ConstantVectors by Aditya Nandakumar · 8 years ago
  83. 09867ca [ConstantRange] Add LLVM_NODISCARD to ConstantRange since a large number of its methods construct new ConstantRange objects. by Craig Topper · 8 years ago
  84. 7a94f0c [Float2Int] Remove return of ConstantRange from seen method. Nothing uses it so it just creates and discards a ConstantRange object for no reason. by Craig Topper · 8 years ago
  85. 3e84c2c Strip trailing whitespace. NFCI. by Simon Pilgrim · 8 years ago
  86. 0eebc29 [InstSimplify] add folds for or-of-casted-icmps by Sanjay Patel · 8 years ago
  87. 740b80d [WebAssembly] Add wasm symbol table support to llvm-objdump by Sam Clegg · 8 years ago
  88. 8175a1d [PPC] When restoring R30 (PIC base pointer), mark it as <def> by Krzysztof Parzyszek · 8 years ago
  89. b1cbece Don't return an invalid line table if the DW_AT_stmt_list value is not in the .debug_line section. by Greg Clayton · 8 years ago
  90. 984dc04 [ms-inline-asm] Use the frontend size only for ambiguous instructions by Reid Kleckner · 8 years ago
  91. b6a6182 [InstSimplify] move logic-of-icmps helper functions; NFC by Sanjay Patel · 8 years ago
  92. e611018 Re-apply r302108, "IR: Use pointers instead of GUIDs to represent edges in the module summary. NFCI." by Peter Collingbourne · 8 years ago
  93. ae22fd9 Fix a typo. by Michael Zolotukhin · 8 years ago
  94. 151fce6 [InstSimplify] add tests for or-of-casted-icmps; NFC by Sanjay Patel · 8 years ago
  95. 316966e [NewGVN] Remove unneeded newline and format assertions. NFCI. by Davide Italiano · 8 years ago
  96. f0e5c50 [APInt] Reduce number of allocations involved in multiplying. Reduce worst case multiply size by Craig Topper · 8 years ago
  97. de37aad [PM] Add ProfileSummaryAnalysis as a required pass in the new pipeline. by Easwaran Raman · 8 years ago
  98. 97bb64d [Lexicon] Add BDCE by Brian Gesiak · 8 years ago
  99. cf1aa41 Add accidentally deleted testcase back. by Adrian Prantl · 8 years ago
  100. 5013f63 Cleanup tests to not share a DISubprogram between multiple Functions. by Adrian Prantl · 8 years ago