aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/IndVarSimplify.cpp
Commit message (Expand)AuthorAgeFilesLines
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-301-2/+1
* (Almost) always call reserveOperandSpace() on newly created PHINodes.Jay Foad2011-03-301-0/+1
* Remove TargetData and ValueTracking includes. I didn't mean for them to sneak...Andrew Trick2011-03-181-4/+0
* Added isValidRewrite() to check the result of ScalarEvolutionExpander.Andrew Trick2011-03-171-37/+82
* whitespaceAndrew Trick2011-03-171-18/+18
* reduce indentation. Print <nuw> and <nsw> when dumping SCEV AddRec'sChris Lattner2011-01-091-3/+2
* Move SCEV::isLoopInvariant and hasComputableLoopEvolution to be memberDan Gohman2010-11-171-10/+10
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+3
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-121-1/+9
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* do not rely on the implicit-dereference semantics of dyn_cast_or_nullGabor Greif2010-09-181-4/+4
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* mass elimination of reliance on automatic iterator dereferencingGabor Greif2010-07-221-2/+2
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-211-2/+2
* Remember that the induction variable is always a PHINode andDan Gohman2010-07-201-4/+4
* cache result of operator*Gabor Greif2010-07-091-2/+3
* Disable indvars on loops when LoopSimplify form is not available.Dan Gohman2010-06-181-0/+11
* Use getConstant instead of getIntegerSCEV. The two are basically theDan Gohman2010-05-031-6/+6
* Teach IndVarSimplify how to eliminate remainder operators where theDan Gohman2010-04-131-0/+71
* Suppress LinearFunctionTestReplace when the computed backedge-takenDan Gohman2010-04-121-0/+18
* Move the EliminateIVUsers call back out to its original location. Now thatDan Gohman2010-04-121-10/+4
* Use RecursivelyDeleteTriviallyDeadInstructions in EliminateIVComparisons,Dan Gohman2010-04-121-3/+12
* Re-apply r101000, with a fix: Don't eliminate an icmp which is part ofDan Gohman2010-04-121-1/+45
* Revert 101000, which is breaking self-host builds.Dan Gohman2010-04-121-38/+0
* Teach IndVarSimplify how to eliminate comparisons involving inductionDan Gohman2010-04-111-0/+38
* Rename isLoopGuardedByCond to isLoopEntryGuardedByCond, to emphasiseDan Gohman2010-04-111-1/+1
* Generalize IVUsers to track arbitrary expressions rather than expressionsDan Gohman2010-04-071-2/+41
* require that the branch being controlled by the IV Chris Lattner2010-04-031-2/+9
* add integer overflow check for the fp induction variable Chris Lattner2010-04-031-16/+83
* add a comment and fix some consistency issues, convertingChris Lattner2010-04-031-15/+25
* fix PR6761, a miscompilation due to the fp->int IV conversionChris Lattner2010-04-031-2/+2
* just eliminate the uitofp checks. This code isn't doingChris Lattner2010-04-031-26/+5
* rename PH -> PN to be consistent with WeakPN and the restChris Lattner2010-04-031-20/+20
* improve comment and drop a dead check. If PH hadChris Lattner2010-04-031-4/+8
* strength reduce a ridiculous use of APInt.Chris Lattner2010-04-031-2/+1
* rename stuff improve comment grammar.Chris Lattner2010-04-031-22/+21
* simplify some code and resolve a fixme.Chris Lattner2010-04-031-4/+2
* There is no guarantee that the increment and the branchChris Lattner2010-04-031-41/+28
* first half of a pass through IndVarSimplify::HandleFloatingPointIV,Chris Lattner2010-04-031-47/+35
* Manually notify ScalarEvolution before making an operand replacement, sinceDan Gohman2010-04-021-0/+7
* Skip debugging intrinsics when sinking unused invariants.Bill Wendling2010-03-231-10/+24
* Clear the SCEVExpander's insertion point after making deletions,Dan Gohman2010-03-201-0/+4
* Skip debug info intrinsics.Devang Patel2010-03-151-0/+4
* Add a DominatorTree argument to isLCSSA so that it doesn't have toDan Gohman2010-03-101-2/+2
* Spelling fixes.Dan Gohman2010-03-011-6/+6
* Make LoopSimplify change conditional branches in loop exiting blocksDan Gohman2010-02-251-12/+17
* Remove unused variables and parameters.Dan Gohman2010-02-221-9/+5
* This cast<Instruction> is unnecessary.Dan Gohman2010-02-221-1/+1