| Commit message (Expand) | Author | Age | Files | Lines |
| * | Generalize createSCEV to be able to form SCEV expressions from | Dan Gohman | 2008-06-22 | 1 | -110/+117 |
| * | Move LSR's private isZero function to a public SCEV member | Dan Gohman | 2008-06-18 | 1 | -8/+12 |
| * | Crash less. The i64 restriction in BinomialCoefficient caused some problems | Nick Lewycky | 2008-06-13 | 1 | -24/+30 |
| * | Don't treat values as signed when looking at loop steppings in HowForToNonZero. | Nick Lewycky | 2008-05-25 | 1 | -2/+2 |
| * | Clean up the use of static and anonymous namespaces. This turned up | Dan Gohman | 2008-05-13 | 1 | -5/+3 |
| * | Fix typo and indentation. | Nick Lewycky | 2008-05-06 | 1 | -2/+2 |
| * | (re)fix handling of UGT. Pointed out by Nick Lewycky. | Dale Johannesen | 2008-04-20 | 1 | -1/+2 |
| * | Switch to using Simplified ConstantFP::get API. | Chris Lattner | 2008-04-20 | 1 | -2/+2 |
| * | Fix a scalar evolution bug. Reversing everything | Dale Johannesen | 2008-04-18 | 1 | -2/+1 |
| * | In the special case, call the comparison function instead of | Dan Gohman | 2008-04-14 | 1 | -2/+2 |
| * | Restore isCFGOnly property of various analysis passes. | Devang Patel | 2008-03-20 | 1 | -1/+1 |
| * | PassInfo keep tracks whether a pass is an analysis pass or not. | Devang Patel | 2008-03-19 | 1 | -1/+1 |
| * | Temporarily reverting 46959. | Evan Cheng | 2008-02-25 | 1 | -2/+2 |
| * | Simplify this code, no functionality change. | Nick Lewycky | 2008-02-21 | 1 | -5/+2 |
| * | GlobalValues are Constants, remove redundant code. Also fix typo in a comment. | Nick Lewycky | 2008-02-21 | 1 | -3/+1 |
| * | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov | 2008-02-20 | 1 | -1/+2 |
| * | Use getConstant for ConstantInts. | Nick Lewycky | 2008-02-20 | 1 | -2/+2 |
| * | Add 'umax' similar to 'smax' SCEV. Closes PR2003. | Nick Lewycky | 2008-02-20 | 1 | -44/+146 |
| * | Fix typo. Thanks to Duncan for noticing. | Wojciech Matyjewicz | 2008-02-13 | 1 | -1/+1 |
| * | Add comments as per review feedback. | Wojciech Matyjewicz | 2008-02-13 | 1 | -5/+13 |
| * | Fix PR2002. Suppose n is the initial value for the induction | Wojciech Matyjewicz | 2008-02-12 | 1 | -6/+4 |
| * | If the LHS of the comparison is a loop-invariant we also want to move it | Wojciech Matyjewicz | 2008-02-11 | 1 | -2/+2 |
| * | Fix PR1798 - an error in the evaluation of SCEVAddRecExpr at an | Wojciech Matyjewicz | 2008-02-11 | 1 | -49/+100 |
| * | Avoid unnecessarily casting away const, fixing a FIXME. | Dan Gohman | 2008-01-31 | 1 | -1/+1 |
| * | Don't be rude, emit debugging info where asked to. | Nick Lewycky | 2008-01-02 | 1 | -5/+5 |
| * | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
| * | Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp. | Chris Lattner | 2007-12-10 | 1 | -2/+14 |
| * | Add new SCEV, SCEVSMax. This allows LLVM to analyze do-while loops. | Nick Lewycky | 2007-11-25 | 1 | -80/+130 |
| * | simplify some code. | Chris Lattner | 2007-11-23 | 1 | -5/+1 |
| * | Fix a bug where we'd try to find a scev value for a bitcast operand, | Chris Lattner | 2007-11-23 | 1 | -0/+8 |
| * | Instead of calculating constant factors, calculate the number of trailing | Nick Lewycky | 2007-11-22 | 1 | -54/+47 |
| * | Small cleanup. Use APInt::getHighBitsSet method instead of shift left. | Nick Lewycky | 2007-11-20 | 1 | -5/+4 |
| * | Be more careful when transforming | to +. Patch from Wojciech Matyjewicz. | Nick Lewycky | 2007-11-20 | 1 | -6/+8 |
| * | Reverted r44163 per request | Anton Korobeynikov | 2007-11-15 | 1 | -52/+4 |
| * | Fix handling of overflow in loop calculation by adding new UDiv SCEV. This SCEV | Nick Lewycky | 2007-11-15 | 1 | -4/+51 |
| * | Move the SCEV object factors from being static members of the individual | Dan Gohman | 2007-10-22 | 1 | -172/+188 |
| * | Build the correct range for loops with unusual bounds. Fix from Jay Foad. | Nick Lewycky | 2007-09-27 | 1 | -1/+1 |
| * | Next round of APFloat changes. | Dale Johannesen | 2007-09-06 | 1 | -1/+2 |
| * | Use SmallVector instead of std::vector. | Devang Patel | 2007-08-21 | 1 | -2/+2 |
| * | Let scalar-evolution analyze loops with an unsigned comparison for the exit | Nick Lewycky | 2007-08-06 | 1 | -17/+35 |
| * | Don't assume it's safe to transform a loop just because it's dominated by any | Nick Lewycky | 2007-08-06 | 1 | -1/+1 |
| * | Handle decrementing loops properly. Fixes PR1533. | Nick Lewycky | 2007-07-16 | 1 | -15/+13 |
| * | Move the APInt form of SCEVUnknown::getIntegerSCEV to SCEVConstant::get, and | Dan Gohman | 2007-07-09 | 1 | -15/+14 |
| * | Rename ScalarEvolution::deleteInstructionFromRecords to | Dan Gohman | 2007-06-19 | 1 | -14/+14 |
| * | In SCEVAddExpr::get, skip over any cast operands before looking for nested | Dan Gohman | 2007-06-18 | 1 | -2/+5 |
| * | Add a SCEV class and supporting code for sign-extend expressions. | Dan Gohman | 2007-06-15 | 1 | -0/+47 |
| * | Optimize this test. Firstly, only Instructions may use other Instructions. | Nick Lewycky | 2007-06-06 | 1 | -2/+2 |
| * | Fix PR1487 and Transforms/IndVar/2007-06-06-DeleteDanglesPtr.ll | Nick Lewycky | 2007-06-06 | 1 | -3/+22 |
| * | Drop 'const' | Devang Patel | 2007-05-03 | 1 | -1/+1 |
| * | Use 'static const char' instead of 'static const int'. | Devang Patel | 2007-05-02 | 1 | -1/+1 |