1. debcb01 Move types back to the 2.5 API. by Owen Anderson · 15 years ago
  2. baf3c40 Move ConstantExpr to 2.5 API. by Owen Anderson · 15 years ago
  3. 07ad19b Fix wording in comments. by Dan Gohman · 15 years ago
  4. bc3d77a SCEV objects are no longer reference-counted. by Dan Gohman · 15 years ago
  5. 19378d6 When attempting to sign-extend an addrec by interpreting by Dan Gohman · 15 years ago
  6. eb490a7 Teach ScalarEvolution to make use of no-overflow flags when by Dan Gohman · 15 years ago
  7. fef8bb2 Instead of eagerly creating new SCEVs to replace all SCEVs that are by Dan Gohman · 15 years ago
  8. eed707b Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 15 years ago
  9. d1e5db6 Fix whitespace. by Dan Gohman · 15 years ago
  10. e922c02 Get rid of the Pass+Context magic. by Owen Anderson · 15 years ago
  11. 0f4b285 Replace the original ad-hoc code for determining whether (v pred w) implies by Dan Gohman · 15 years ago
  12. a16b576 Make the range calculations for addrecs to be more conservative, by Dan Gohman · 15 years ago
  13. c2b015e Whitespace cleanups. by Dan Gohman · 15 years ago
  14. c268e7c Minor code simplification. by Dan Gohman · 15 years ago
  15. f117ed4 Add a comment to clarify why there isn't any code in this spot. by Dan Gohman · 15 years ago
  16. 4500e9e Remove the code that tried to evaluate whether (A pred B) is known by Dan Gohman · 15 years ago
  17. 0d5bae4 Minor code simplification. by Dan Gohman · 15 years ago
  18. 746f3b1 The upper argument of ConstantRange is exclusive, not inclusive. by Dan Gohman · 15 years ago
  19. f241174 Revert the addition of hasNoPointerOverflow to GEPOperator. by Dan Gohman · 15 years ago
  20. ca17890 Add a new Operator class, for handling Instructions and ConstantExprs by Dan Gohman · 15 years ago
  21. 001dbfe Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a number of issues in by Owen Anderson · 15 years ago
  22. 850f791 Fill in some holes in ScalarEvolution's loop iteration condition by Dan Gohman · 15 years ago
  23. 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 15 years ago
  24. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 15 years ago
  25. 69fcae9 Make SCEVCallbackVH::allUsesReplacedWith more thorough in removing by Dan Gohman · 15 years ago
  26. a653fc5 Add a comment about why ScalarEvolution doesn't recognize non-loop PHIs by Dan Gohman · 15 years ago
  27. 38539622 Move more functionality over to LLVMContext. by Owen Anderson · 15 years ago
  28. c902e13 Print a newline after printing a Value, now that Value's operator<< by Dan Gohman · 15 years ago
  29. ddf9f99 Fix a few assertion strings. by Dan Gohman · 15 years ago
  30. f5074ec Whitespace cleanups. by Dan Gohman · 15 years ago
  31. ba70188 Fix an 80-column violation. by Dan Gohman · 15 years ago
  32. 85b05a2 Reapply 75252, with a fix to avoid the infinite recursion case. The by Dan Gohman · 15 years ago
  33. 73c6b71 Move more functionality over to LLVMContext. by Owen Anderson · 15 years ago
  34. 69fbc7f Move the memoization check for SCEVSignExtendExpr and by Dan Gohman · 15 years ago
  35. c050fd9 Convert SCEV from FoldingSetNode to FastFoldingSetNode. This eliminates by Dan Gohman · 15 years ago
  36. 0a5372e Begin the painful process of tearing apart the rat'ss nest that is Constants.cpp and ConstantFold.cpp. by Owen Anderson · 15 years ago
  37. d0cca24 Revert r75252 which was causing some crashes at compile time. by Nick Lewycky · 15 years ago
  38. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 15 years ago
  39. 1afdc5f Remove ScalarEvolution::hasSCEV, which isn't being used, and which by Dan Gohman · 15 years ago
  40. 1b34258 Generalize ScalarEvolution's cast-folding code to support more kinds by Dan Gohman · 15 years ago
  41. 59ae6b9 Make the code that updates ScalarEvolution's internal state in response by Dan Gohman · 15 years ago
  42. 0bba49c Change all SCEV* to SCEV *. by Dan Gohman · 15 years ago
  43. 07cf79e "LLVMContext* " --> "LLVMContext *" by Owen Anderson · 15 years ago
  44. 76f600b Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's through the ValueTracking API. by Owen Anderson · 15 years ago
  45. 5089551 Thread LLVMContext through the constant folding APIs, which touches a lot of files. by Owen Anderson · 15 years ago
  46. d1ec989 When comparing constants, consider a less wide constant to be "less complex" by Nick Lewycky · 15 years ago
  47. c39f44b Minor code cleanups. by Dan Gohman · 15 years ago
  48. 0998796 Use getSCEV instead of getUnknown to create a SCEV for a by Dan Gohman · 15 years ago
  49. cffddcd Don't cache PHI exit values from exhaustive evaluations, because by Dan Gohman · 15 years ago
  50. 23737e0 Simplify this code, and avoid using APInt(). This fixes by Dan Gohman · 15 years ago
  51. 1c34375 Convert ScalarEvolution to use BumpPtrAllocator and FoldingSet, instead by Dan Gohman · 15 years ago
  52. 9a80b45 Fix ScalarEvolution::getAddRecExpr's code which canonicalized the by Dan Gohman · 15 years ago
  53. e890eea Fix SCEVAddRecExpr::isLoopInvariant to test if all of its operands by Dan Gohman · 15 years ago
  54. 9311ef6 Minor whitespace cleanups. by Dan Gohman · 15 years ago
  55. e5aceed Simplify [su]max(MAX, n) to MAX. This comes up in loop tripcount by Dan Gohman · 15 years ago
  56. 64a845e Delete some orphaned comments, fix some 80-column violations, by Dan Gohman · 15 years ago
  57. 40a5a1b Extend ScalarEvolution's multiple-exit support to compute exact by Dan Gohman · 15 years ago
  58. 62849c0 Teach GetMinSignBits about SCEVAddExprs. by Dan Gohman · 15 years ago
  59. 6bbcba1 Move the special cases for constants out of getUnknown and into by Dan Gohman · 15 years ago
  60. b8be8b7 Use ScalarEvolution::getConstant instead of getUnknown to create by Dan Gohman · 15 years ago
  61. aa551ae Include the maximum trip count expression in ScalarEvolution's print output. by Dan Gohman · 15 years ago
  62. 4d289bf Add an isAllOnesValue utility function, similar to isZero and isOne. by Dan Gohman · 15 years ago
  63. 91380b7 Fix a bug in the trip-count computation with And/Or. If either of the by Dan Gohman · 15 years ago
  64. 753ad61 Remove the parent pointer from SCEV, since it did not end up being needed. by Owen Anderson · 15 years ago
  65. 372b46c SCEVHandle is no more! by Owen Anderson · 15 years ago
  66. d32f5bf Fix some typos that Duncan noticed. by Dan Gohman · 15 years ago
  67. 08367b6 Banish global state from ScalarEvolution! SCEV uniquing is now done by tables attached to the ScalarEvolution pass. by Owen Anderson · 15 years ago
  68. 60e9b07 Make use of getUMinFromMismatchedTypes when computing backedge-taken by Dan Gohman · 15 years ago
  69. c9759e8 Add a getUMinFromMismatchedTypes helper function. by Dan Gohman · 15 years ago
  70. f9a9a99 Factor out code for computing umin and smin for SCEV expressions into by Dan Gohman · 15 years ago
  71. a334aa7 Teach ScalarEvolution how to analyze loops with multiple exit by Dan Gohman · 15 years ago
  72. 743ab49 Delete an unused variable. by Dan Gohman · 15 years ago
  73. 51f53b7 Fix ScalarEvolution's backedge-taken count computations to check for by Dan Gohman · 15 years ago
  74. 763bad1 Generalize isLoopGuardedByCond's checking to consider two by Dan Gohman · 15 years ago
  75. 3964acc Use ScalarEvolution's new GetMinSignBits and GetMinLeadingZeros by Dan Gohman · 15 years ago
  76. 2c364ad Make GetMinTrailingZeros a member function of ScalarEvolution, by Dan Gohman · 15 years ago
  77. 0c689c5 Make ScalarEvolution::print print getSCEVAtScope values for by Dan Gohman · 15 years ago
  78. 4a7893b Add a parent pointer to SCEV, in preparation for getting rid of the global uniquing tables. No functionality change. by Owen Anderson · 15 years ago
  79. 30fb512 Recognize n != 0 ? n : 1 as umax(n, 1). Previously only ULT/UGT/ULE/UGE by Dan Gohman · 15 years ago
  80. 6864db6 Update a comment to reflect the code. by Dan Gohman · 15 years ago
  81. 9e7d988 Fix trailing whitespace from ScalarEvolution::print. by Dan Gohman · 15 years ago
  82. 8205283 Teach ScalarEvolution how to recognize another xor(and(x, C), C) case. by Dan Gohman · 15 years ago
  83. fc3641b Delete unnecessary braces. by Dan Gohman · 15 years ago
  84. 3034c10 Fix ScalarEvolution's Xor handling to not assume that an And by Dan Gohman · 15 years ago
  85. 61ffa8e Instcombine's ShrinkDemandedConstant may strip bits out of constants, by Dan Gohman · 15 years ago
  86. 6de29f8 Support vector casts in more places, fixing a variety of assertion failures. by Dan Gohman · 15 years ago
  87. bd59d7b Implement more aggressive folding of add operand lists when by Dan Gohman · 15 years ago
  88. 7f7c436 Check for the short-circuiting condition before performing by Dan Gohman · 15 years ago
  89. 4dfad29 Do compare constant SCEV values in SCEVComplexityCompare, because by Dan Gohman · 15 years ago
  90. a82752c Convert several parts of the ScalarEvolution framework to use by Dan Gohman · 15 years ago
  91. 2ce84c8d Add a ScalarEvolution::getAnyExtendExpr utility function for performing by Dan Gohman · 15 years ago
  92. 86fbf2f Rename UnknownValue to CouldNotCompute, since it holds an instance of by Dan Gohman · 15 years ago
  93. 5c06f61 Simplify. by Devang Patel · 15 years ago
  94. c965ee2 Remove some unnecessary #includes. by Dan Gohman · 15 years ago
  95. 91bb61a For the return type of SCEVUDivExpr, use the RHS' type instead of by Dan Gohman · 15 years ago
  96. 6c0866c Various comment fixes. by Dan Gohman · 15 years ago
  97. d594e6f Change ScalarEvolution::getSCEVAtScope to always return the original value by Dan Gohman · 15 years ago
  98. a3035a6 Teach SCEV::isLoopInvariant and SCEV::hasComputableLoopEvolution by Dan Gohman · 15 years ago
  99. 1959b75 Make SCEVCallbackVH a private nested class inside ScalarEvolution, as by Dan Gohman · 15 years ago
  100. 5be18e8 Teach SCEVExpander to expand arithmetic involving pointers into GEP by Dan Gohman · 15 years ago