aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
Commit message (Expand)AuthorAgeFilesLines
...
* Use ScalarEvolution::getConstant instead of getUnknown to createDan Gohman2009-06-241-7/+8
* Include the maximum trip count expression in ScalarEvolution's print output.Dan Gohman2009-06-241-0/+9
* Add an isAllOnesValue utility function, similar to isZero and isOne.Dan Gohman2009-06-241-0/+6
* It is not a good idea to have data member's name match argument's name. In fa...Devang Patel2009-06-231-21/+21
* Use getReturnTypeName() to print return type.Devang Patel2009-06-231-1/+1
* Fix a bug in the trip-count computation with And/Or. If either of theDan Gohman2009-06-221-8/+4
* Remove unneeded #include.Owen Anderson2009-06-221-1/+0
* Fix a few minor issues that were exposed by the removal of SCEVHandle.Dan Gohman2009-06-221-1/+1
* Fix llvm::ComputeNumSignBits to handle pointer typesDan Gohman2009-06-221-1/+5
* Remove the parent pointer from SCEV, since it did not end up being needed.Owen Anderson2009-06-221-30/+22
* SCEVHandle is no more!Owen Anderson2009-06-224-311/+310
* Fix some typos that Duncan noticed.Dan Gohman2009-06-221-2/+2
* Banish global state from ScalarEvolution! SCEV uniquing is now done by table...Owen Anderson2009-06-221-58/+50
* Make use of getUMinFromMismatchedTypes when computing backedge-takenDan Gohman2009-06-221-14/+14
* Add a getUMinFromMismatchedTypes helper function.Dan Gohman2009-06-221-0/+16
* Factor out code for computing umin and smin for SCEV expressions intoDan Gohman2009-06-221-7/+14
* Teach ScalarEvolution how to analyze loops with multiple exitDan Gohman2009-06-221-27/+221
* Delete an unused variable.Dan Gohman2009-06-221-1/+0
* Fix ScalarEvolution's backedge-taken count computations to check forDan Gohman2009-06-211-7/+29
* Generalize isLoopGuardedByCond's checking to consider twoDan Gohman2009-06-201-3/+27
* Use ScalarEvolution's new GetMinSignBits and GetMinLeadingZerosDan Gohman2009-06-201-3/+6
* Make GetMinTrailingZeros a member function of ScalarEvolution,Dan Gohman2009-06-191-22/+83
* Make ScalarEvolution::print print getSCEVAtScope values forDan Gohman2009-06-191-2/+10
* Don't (unconditionally) use getSCEVAtScope to simplify the stepDan Gohman2009-06-191-1/+0
* Add a parent pointer to SCEV, in preparation for getting rid of the global un...Owen Anderson2009-06-181-21/+26
* Recognize n != 0 ? n : 1 as umax(n, 1). Previously only ULT/UGT/ULE/UGEDan Gohman2009-06-181-0/+18
* Remove the code from IVUsers that attempted to handleDan Gohman2009-06-181-27/+3
* Update a comment to reflect the code.Dan Gohman2009-06-181-2/+1
* Fix trailing whitespace from ScalarEvolution::print.Dan Gohman2009-06-181-2/+1
* Teach ScalarEvolution how to recognize another xor(and(x, C), C) case.Dan Gohman2009-06-181-4/+19
* Delete unnecessary braces.Dan Gohman2009-06-171-2/+1
* Fix ScalarEvolution's Xor handling to not assume that an AndDan Gohman2009-06-171-3/+6
* Instcombine's ShrinkDemandedConstant may strip bits out of constants,Dan Gohman2009-06-161-3/+18
* Support vector casts in more places, fixing a variety of assertionDan Gohman2009-06-154-18/+36
* Code cleanups. getSCEVAtScope no longer uses SCEVCouldNotCompute.Dan Gohman2009-06-151-9/+9
* Fix old-style type names in comments.Dan Gohman2009-06-141-1/+1
* Implement more aggressive folding of add operand lists whenDan Gohman2009-06-141-0/+128
* Check for the short-circuiting condition before performingDan Gohman2009-06-141-1/+1
* Do compare constant SCEV values in SCEVComplexityCompare, becauseDan Gohman2009-06-141-3/+12
* Convert several parts of the ScalarEvolution framework to useDan Gohman2009-06-142-44/+50
* Teach SCEVExpander's visitAddRecExpr to reuse an existing canonicalDan Gohman2009-06-131-8/+51
* Add a ScalarEvolution::getAnyExtendExpr utility function for performingDan Gohman2009-06-131-0/+59
* Use expandCodeFor instead of expand when the result will beDan Gohman2009-06-091-29/+18
* Rename UnknownValue to CouldNotCompute, since it holds an instance ofDan Gohman2009-06-061-37/+37
* Simplify.Devang Patel2009-06-051-15/+6
* Move SCEVExpander::getOrInsertCanonicalInductionVariable out of line.Dan Gohman2009-06-051-0/+13
* Remove some unnecessary #includes.Dan Gohman2009-06-053-3/+0
* Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman2009-06-041-1/+1
* Change ConstantFoldConstantExpression to accept a nullDan Gohman2009-06-021-2/+0
* Delete an obsolete sentance from a comment.Dan Gohman2009-05-311-3/+1