1. 1c86ce8 [IR] add shuffle query for vector concatenation by Sanjay Patel · 7 years ago
  2. dff6e8d [IR] reduce duplication in unittest for shuffles; NFC by Sanjay Patel · 7 years ago
  3. 14ea008 [IR] add shuffle queries for identity extend/extract by Sanjay Patel · 7 years ago
  4. ab0a33b Rename skipDebugInfo -> skipDebugIntrinsics, NFC by Vedant Kumar · 7 years ago
  5. 83a6451 [IR] Introduce helpers to skip debug instructions (NFC) by Vedant Kumar · 7 years ago
  6. 42f462a [IR] move shuffle mask queries from TTI to ShuffleVectorInst by Sanjay Patel · 7 years ago
  7. 816047d [IR] De-virtualize ~Value to save a vptr by Reid Kleckner · 8 years ago
  8. f4d18ab IR: Add a shufflevector mask commutation helper function. NFC. by Zvi Rackover · 8 years ago
  9. ddfada2 [IR] Redesign the case iterator in SwitchInst to actually be an iterator by Chandler Carruth · 8 years ago
  10. 6707770 Rename AttributeSet to AttributeList by Reid Kleckner · 8 years ago
  11. bff5a6e [IR] Add range accessors for the indices of a GEP instruction. by Chandler Carruth · 8 years ago
  12. 9e36975 [IR] Add a Instruction::dropPoisonGeneratingFlags helper by Sanjoy Das · 8 years ago
  13. 8be7707 Remove every uses of getGlobalContext() in LLVM (but the C API) by Mehdi Amini · 9 years ago
  14. df4beed [InstructionsTest] delete via unique_ptr (NFC) by Joseph Tremoulet · 10 years ago
  15. 92d091b InstructionsTest.cpp: Fix a warning. [-Wsign-compare] by NAKAMURA Takumi · 10 years ago
  16. 6f91687 [UnitTest] Fix warning, NFC. by Joseph Tremoulet · 10 years ago
  17. 0d05e6c [OperandBundles] Copy DebugLoc with calls/invokes by Joseph Tremoulet · 10 years ago
  18. f0295e4 [opaque pointer type] gep API migration by David Blaikie · 10 years ago
  19. 529919f DataLayout is mandatory, update the API to reflect it with references. by Mehdi Amini · 10 years ago
  20. b177041 [C++11] Use 'nullptr'. by Craig Topper · 11 years ago
  21. 3949749 Copy the full TailCallKind in CallInst::clone_impl by Reid Kleckner · 11 years ago
  22. c112990 Untabify. by NAKAMURA Takumi · 11 years ago
  23. 2b8b903 SmallVector<3> may be used here. by NAKAMURA Takumi · 11 years ago
  24. da56c39 IRTests/InstructionsTest.cpp: Avoid initializer list. by NAKAMURA Takumi · 11 years ago
  25. d8f4993 Add a unit test for Invoke iteration, similar to the one for Call by Eli Bendersky · 11 years ago
  26. 927eb31 Fix bot breakage in InstructionsTest. by Eli Bendersky · 11 years ago
  27. 1003e8f Fix problem with r204836 by Eli Bendersky · 11 years ago
  28. d628f19 [C++11] Replace llvm::next and llvm::prior with std::next and std::prev. by Benjamin Kramer · 11 years ago
  29. 79e3fb5 Bug 18228 - Fix accepting bitcasts between vectors of pointers with a by Matt Arsenault · 12 years ago
  30. f343bc9 Use a: and s: instead of a0: and s0: in the DataLayout strings. by Rafael Espindola · 12 years ago
  31. 59d3ae6 Add addrspacecast instruction. by Matt Arsenault · 12 years ago
  32. 1bf0ec4 Fix ptr vector inconsistency in CreatePointerCast by Matt Arsenault · 12 years ago
  33. 3181f59 Respect address space sizes in isEliminableCastPair. by Matt Arsenault · 12 years ago
  34. 485c7fd Revert "Remove isCastable since nothing uses it now" by Matt Arsenault · 12 years ago
  35. 0de6832 Remove isCastable since nothing uses it now by Matt Arsenault · 12 years ago
  36. f34dc42 Change behavior of calling bitcasted alias functions. by Matt Arsenault · 12 years ago
  37. 76bf61f Fix copypaste error in test. by Matt Arsenault · 12 years ago
  38. a070d2a Change GetPointerBaseWithConstantOffset's DataLayout argument from a by Dan Gohman · 13 years ago
  39. 4802b9d A test for r172535. by Evgeniy Stepanov · 13 years ago
  40. c779e96 Rename the VMCore unittest tree to IR. Somehow was missed when doing the by Chandler Carruth · 13 years ago[Renamed (98%) from unittests/VMCore/InstructionsTest.cpp]
  41. 0b8c9a8 Move all of the header files which are involved in modelling the LLVM IR by Chandler Carruth · 13 years ago
  42. 5a88dda Sort the #include lines for unittest/... by Chandler Carruth · 13 years ago
  43. 446cf94 Fix isEliminableCastPair to work correctly in the presence of pointers by Duncan Sands · 13 years ago
  44. 791cfc2 Move TargetData to DataLayout. by Micah Villmow · 13 years ago
  45. 0baa480 Move llvm/Support/MDBuilder.h to llvm/MDBuilder.h, to live with by Chandler Carruth · 13 years ago
  46. 06cb8ed Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h by Chandler Carruth · 13 years ago
  47. 2867c85 Remove support for the special 'fast' value for fpmath accuracy for the moment. by Duncan Sands · 13 years ago
  48. 8883c43 Make it possible to indicate relaxed floating point requirements at the IR level by Duncan Sands · 13 years ago
  49. 1608769 by Nadav Rotem · 14 years ago
  50. f5ec9b5 The 'expected' argument to EXPECT_EQ is actually the first one; by John McCall · 14 years ago
  51. db125cf land David Blaikie's patch to de-constify Type, with a few tweaks. by Chris Lattner · 14 years ago
  52. 117feba Teach getCastOpcode about element-by-element vector casts. For example, "trunc" by Duncan Sands · 14 years ago
  53. 562b84b Don't include Operator.h from InstrTypes.h. by Jay Foad · 14 years ago
  54. 6079465 While testing dragonegg I noticed that isCastable and getCastOpcode by Duncan Sands · 14 years ago
  55. 43eaade Remove the "ugly" method BranchInst::setUnconditionalDest(). by Jay Foad · 15 years ago
  56. ee56c42 Prefix `next' iterator operation with `llvm::'. by Oscar Fuentes · 15 years ago
  57. fe7bb05 another one by Gabor Greif · 15 years ago
  58. f5bf7c5 feedback from Nick by Gabor Greif · 15 years ago
  59. abf657f more BranchInst tests by Gabor Greif · 15 years ago
  60. d165e1a add BranchInst tests by Gabor Greif · 15 years ago
  61. 642c066 appease valgrind testers by Gabor Greif · 15 years ago
  62. 22385eb add single return tests by Gabor Greif · 15 years ago
  63. 138acfe fix PR6589 adjusted unittest by Gabor Greif · 15 years ago
  64. 5a7069a begin humbly with a repro of PR6589 by Gabor Greif · 15 years ago