| Commit message (Expand) | Author | Age | Files | Lines |
| * | It is not a good idea to have data member's name match argument's name. In fa... | Devang Patel | 2009-06-23 | 1 | -21/+21 |
| * | Use getReturnTypeName() to print return type. | Devang Patel | 2009-06-23 | 1 | -1/+1 |
| * | Fix a bug in the trip-count computation with And/Or. If either of the | Dan Gohman | 2009-06-22 | 1 | -8/+4 |
| * | Remove unneeded #include. | Owen Anderson | 2009-06-22 | 1 | -1/+0 |
| * | Fix a few minor issues that were exposed by the removal of SCEVHandle. | Dan Gohman | 2009-06-22 | 1 | -1/+1 |
| * | Fix llvm::ComputeNumSignBits to handle pointer types | Dan Gohman | 2009-06-22 | 1 | -1/+5 |
| * | Remove the parent pointer from SCEV, since it did not end up being needed. | Owen Anderson | 2009-06-22 | 1 | -30/+22 |
| * | SCEVHandle is no more! | Owen Anderson | 2009-06-22 | 4 | -311/+310 |
| * | Fix some typos that Duncan noticed. | Dan Gohman | 2009-06-22 | 1 | -2/+2 |
| * | Banish global state from ScalarEvolution! SCEV uniquing is now done by table... | Owen Anderson | 2009-06-22 | 1 | -58/+50 |
| * | Make use of getUMinFromMismatchedTypes when computing backedge-taken | Dan Gohman | 2009-06-22 | 1 | -14/+14 |
| * | Add a getUMinFromMismatchedTypes helper function. | Dan Gohman | 2009-06-22 | 1 | -0/+16 |
| * | Factor out code for computing umin and smin for SCEV expressions into | Dan Gohman | 2009-06-22 | 1 | -7/+14 |
| * | Teach ScalarEvolution how to analyze loops with multiple exit | Dan Gohman | 2009-06-22 | 1 | -27/+221 |
| * | Delete an unused variable. | Dan Gohman | 2009-06-22 | 1 | -1/+0 |
| * | Fix ScalarEvolution's backedge-taken count computations to check for | Dan Gohman | 2009-06-21 | 1 | -7/+29 |
| * | Generalize isLoopGuardedByCond's checking to consider two | Dan Gohman | 2009-06-20 | 1 | -3/+27 |
| * | Use ScalarEvolution's new GetMinSignBits and GetMinLeadingZeros | Dan Gohman | 2009-06-20 | 1 | -3/+6 |
| * | Make GetMinTrailingZeros a member function of ScalarEvolution, | Dan Gohman | 2009-06-19 | 1 | -22/+83 |
| * | Make ScalarEvolution::print print getSCEVAtScope values for | Dan Gohman | 2009-06-19 | 1 | -2/+10 |
| * | Don't (unconditionally) use getSCEVAtScope to simplify the step | Dan Gohman | 2009-06-19 | 1 | -1/+0 |
| * | Add a parent pointer to SCEV, in preparation for getting rid of the global un... | Owen Anderson | 2009-06-18 | 1 | -21/+26 |
| * | Recognize n != 0 ? n : 1 as umax(n, 1). Previously only ULT/UGT/ULE/UGE | Dan Gohman | 2009-06-18 | 1 | -0/+18 |
| * | Remove the code from IVUsers that attempted to handle | Dan Gohman | 2009-06-18 | 1 | -27/+3 |
| * | Update a comment to reflect the code. | Dan Gohman | 2009-06-18 | 1 | -2/+1 |
| * | Fix trailing whitespace from ScalarEvolution::print. | Dan Gohman | 2009-06-18 | 1 | -2/+1 |
| * | Teach ScalarEvolution how to recognize another xor(and(x, C), C) case. | Dan Gohman | 2009-06-18 | 1 | -4/+19 |
| * | Delete unnecessary braces. | Dan Gohman | 2009-06-17 | 1 | -2/+1 |
| * | Fix ScalarEvolution's Xor handling to not assume that an And | Dan Gohman | 2009-06-17 | 1 | -3/+6 |
| * | Instcombine's ShrinkDemandedConstant may strip bits out of constants, | Dan Gohman | 2009-06-16 | 1 | -3/+18 |
| * | Support vector casts in more places, fixing a variety of assertion | Dan Gohman | 2009-06-15 | 4 | -18/+36 |
| * | Code cleanups. getSCEVAtScope no longer uses SCEVCouldNotCompute. | Dan Gohman | 2009-06-15 | 1 | -9/+9 |
| * | Fix old-style type names in comments. | Dan Gohman | 2009-06-14 | 1 | -1/+1 |
| * | Implement more aggressive folding of add operand lists when | Dan Gohman | 2009-06-14 | 1 | -0/+128 |
| * | Check for the short-circuiting condition before performing | Dan Gohman | 2009-06-14 | 1 | -1/+1 |
| * | Do compare constant SCEV values in SCEVComplexityCompare, because | Dan Gohman | 2009-06-14 | 1 | -3/+12 |
| * | Convert several parts of the ScalarEvolution framework to use | Dan Gohman | 2009-06-14 | 2 | -44/+50 |
| * | Teach SCEVExpander's visitAddRecExpr to reuse an existing canonical | Dan Gohman | 2009-06-13 | 1 | -8/+51 |
| * | Add a ScalarEvolution::getAnyExtendExpr utility function for performing | Dan Gohman | 2009-06-13 | 1 | -0/+59 |
| * | Use expandCodeFor instead of expand when the result will be | Dan Gohman | 2009-06-09 | 1 | -29/+18 |
| * | Rename UnknownValue to CouldNotCompute, since it holds an instance of | Dan Gohman | 2009-06-06 | 1 | -37/+37 |
| * | Simplify. | Devang Patel | 2009-06-05 | 1 | -15/+6 |
| * | Move SCEVExpander::getOrInsertCanonicalInductionVariable out of line. | Dan Gohman | 2009-06-05 | 1 | -0/+13 |
| * | Remove some unnecessary #includes. | Dan Gohman | 2009-06-05 | 3 | -3/+0 |
| * | Split the Add, Sub, and Mul instruction opcodes into separate | Dan Gohman | 2009-06-04 | 1 | -1/+1 |
| * | Change ConstantFoldConstantExpression to accept a null | Dan Gohman | 2009-06-02 | 1 | -2/+0 |
| * | Delete an obsolete sentance from a comment. | Dan Gohman | 2009-05-31 | 1 | -3/+1 |
| * | Add braces around an array initializer. | Dan Gohman | 2009-05-27 | 1 | -1/+1 |
| * | Teach SCEVExpander to avoid creating over-indexed GEP indices when | Dan Gohman | 2009-05-27 | 1 | -10/+25 |
| * | Teach BasicAliasAnalysis to understand constant gep indices that fall | Dan Gohman | 2009-05-27 | 1 | -4/+25 |