Age | Commit message (Expand) | Author |
2010-11-19 | Silence warning about an uninitialized variable. | Benjamin Kramer |
2010-11-18 | Factor code for testing whether replacing one value with another | Duncan Sands |
2010-11-18 | Introduce memoization for ScalarEvolution dominates and properlyDominates | Dan Gohman |
2010-11-17 | Factor out the code for purging a SCEV from all the various memoization maps. | Dan Gohman |
2010-11-17 | Merge the implementations of isLoopInvariant and hasComputableLoopEvolution, and | Dan Gohman |
2010-11-17 | Make SCEV::getType() and SCEV::print non-virtual. Move SCEV::hasOperand | Dan Gohman |
2010-11-17 | Move SCEV::dominates and properlyDominates to ScalarEvolution. | Dan Gohman |
2010-11-17 | Move SCEV::isLoopInvariant and hasComputableLoopEvolution to be member | Dan Gohman |
2010-11-17 | Before replacing a phi node with a different value, it | Duncan Sands |
2010-11-17 | Verify SCEVAddRecExpr's invariant in ScalarEvolution::getAddRecExpr | Dan Gohman |
2010-11-17 | Fix ScalarEvolution's range memoization to avoid using a | Dan Gohman |
2010-11-17 | Have ScalarEvolution use SimplifyInstruction rather than hasConstantValue. | Duncan Sands |
2010-11-17 | Memoize results from ScalarEvolution's getUnsignedRange and getSignedRange. | Dan Gohman |
2010-10-29 | Make ScalarEvolution::forgetLoop forget all contained loops too, because | Dan Gohman |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson |
2010-10-12 | Begin adding static dependence information to passes, which will allow us to | Owen Anderson |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson |
2010-10-04 | Don't add the operand count to SCEV uniquing data; FoldingSetNodeID | Dan Gohman |
2010-08-31 | Reapply r112432, now that the real problem is addressed. | Dan Gohman |
2010-08-31 | Reapply r112433, now that the real problem is addressed. | Dan Gohman |
2010-08-31 | Revert r110916. This patch is buggy because the code inside the | Dan Gohman |
2010-08-31 | Revert r112432. It appears to be exposing a problem in the emacs build. | Dan Gohman |
2010-08-31 | Speculatively revert r112433. | Dan Gohman |
2010-08-29 | Restructure the {A,+,B}<L> * {C,+,D}<L> folding so that it folds | Dan Gohman |
2010-08-29 | Batch up subtracts along with adds, when analyzing long chains of | Dan Gohman |
2010-08-29 | Micro-optimize GroupByComplexity. | Dan Gohman |
2010-08-29 | Hold AddRec->getLoop() in a variable, to make the Mul code more consistent | Dan Gohman |
2010-08-29 | Rename a variable, for consistency. | Dan Gohman |
2010-08-29 | Use iterators instead of indices. | Dan Gohman |
2010-08-28 | Fix an index calculation thinko. | Dan Gohman |
2010-08-27 | When merging adjacent operands, scan ahead and merge all equal | Dan Gohman |
2010-08-27 | Make the {A,+,B}<L> + {C,+,D}<L> --> Other + {A+C,+,B+D}<L> | Dan Gohman |
2010-08-27 | Switch ScalarEvolution's main Value*->SCEV* map from std::map | Dan Gohman |
2010-08-27 | Optimize SCEVComplexityCompare. Use a 3-way return instead of a 2-way | Dan Gohman |
2010-08-16 | To create a copy of a SmallVector with an element removed from the | Dan Gohman |
2010-08-16 | Tidy whitespace. | Dan Gohman |
2010-08-16 | Add a comment. | Dan Gohman |
2010-08-16 | Use const_iterator in a few places. | Dan Gohman |
2010-08-16 | Use iterators instead of indices in a few more places. | Dan Gohman |
2010-08-16 | Micro-optimize SCEVConstant comparison. | Dan Gohman |
2010-08-16 | Move SCEVNAryExpr's virtual member functions out of line, and convert | Dan Gohman |
2010-08-16 | Use iterators instead of indices in simple cases. | Dan Gohman |
2010-08-16 | Avoid gratuitous inefficiency in ifndef NDEBUG code. | Dan Gohman |
2010-08-16 | Make one getAddExpr call when analyzing a+b+c+d+e+... instead of one | Dan Gohman |
2010-08-16 | Delete an unused function. | Dan Gohman |
2010-08-13 | Various optimizations. Don't compare two loops' depths | Dan Gohman |
2010-08-13 | When testing whether one loop contains another, test this directly | Dan Gohman |
2010-08-13 | Add a const. | Dan Gohman |
2010-08-13 | When creating a symmetric SCEV with a constant operand, put | Dan Gohman |
2010-08-13 | An add recurrence is loop-invariant in any loop inside of its | Dan Gohman |