aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/ScalarEvolutionExpander.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix a typo (the the => the)Sylvestre Ledru2012-07-231-1/+1
* LSR Fix: check SCEV expression safety before expansion.Andrew Trick2012-07-131-0/+41
* LSR fix: add a missing phi check during IV hoisting.Andrew Trick2012-05-221-1/+2
* Fix this assert. IP can point to an instruction with strange dominanceRafael Espindola2012-02-271-15/+20
* And update the comment...Rafael Espindola2012-02-261-1/+0
* Enable the assert that got all this dominator work started.Rafael Espindola2012-02-261-1/+1
* Change the implementation of dominates(inst, inst) to one based on what theRafael Espindola2012-02-261-6/+5
* Fix typo.Rafael Espindola2012-02-231-1/+1
* Improve comment. Thanks for Andrew for the suggestion.Rafael Espindola2012-02-221-2/+3
* Semantically revert 151015. Add a comment on why we should be able to assertRafael Espindola2012-02-221-7/+17
* s/the the/the/Rafael Espindola2012-02-211-1/+1
* Use more idiomatic assert.Rafael Espindola2012-02-211-2/+2
* Avoid warning on non assert builds.Rafael Espindola2012-02-211-2/+3
* It turns out that with the current scev organization ReuseOrCreateCast cannotRafael Espindola2012-02-211-9/+9
* Temporarily disable this assert. Looks like it found a similar issue whenRafael Espindola2012-02-181-1/+3
* Don't skip debug instructions when looking for the insertion point ofRafael Espindola2012-02-181-5/+8
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-1/+0
* SCEVExpander fixes. Affects LSR and indvars.Andrew Trick2012-01-201-115/+114
* Fix a corner case hit by redundant phi elimination running after LSR.Andrew Trick2012-01-141-1/+11
* Enable LSR IV Chains with sufficient heuristics.Andrew Trick2012-01-101-2/+5
* Cleanup comments and argument types related to my previous replaceCongruentPh...Andrew Trick2012-01-071-4/+5
* Extended replaceCongruentPhis to handle mixed phi types.Andrew Trick2012-01-071-13/+61
* Expose isNonConstantNegative to users of ScalarEvolution.Andrew Trick2012-01-071-20/+6
* SCEVExpander: hoistStep should check strict dominance.Andrew Trick2012-01-061-1/+1
* Fix SCEVExpander to handle loops with no preheader when LSR gives it aAndrew Trick2012-01-021-0/+6
* LSR: Fix another corner case in expansion of postinc users.Andrew Trick2011-12-201-0/+14
* LSR: Fold redundant bitcasts on-the-fly.Andrew Trick2011-12-141-3/+8
* LSR: handle the expansion of phi operands that use postinc forms of the IV.Andrew Trick2011-11-301-36/+68
* Fix SCEVExpander assert during LSR: "argument of incompatible type".Andrew Trick2011-10-151-6/+5
* Reapply r141870, SCEV expansion of post-inc.Andrew Trick2011-10-131-2/+14
* Revert r141870. The test case crashes on linux with data corruption. A deeper...Andrew Trick2011-10-131-14/+2
* LSR: Reuse the post-inc expansion of expressions.Andrew Trick2011-10-131-2/+14
* Move replaceCongruentIVs into SCEVExapander and bias toward "expanded"Andrew Trick2011-10-111-0/+100
* Add an extra safety check in front of the optimization in r141442.Andrew Trick2011-10-081-0/+9
* LSR should only reuse phis that match its formula.Andrew Trick2011-10-071-61/+113
* Stop emitting instructions with the name "tmp" they eat up memory and have to...Benjamin Kramer2011-09-271-7/+7
* Skip the landingpad instruction when determining the insertion point.Bill Wendling2011-08-241-3/+7
* Use the getFirstInsertionPt() method instead of getFirstNonPHI + an 'isa<>'Bill Wendling2011-08-161-5/+2
* A few places where we want to skip the landingpad instruction for insertion.Bill Wendling2011-08-161-1/+4
* Convert IRBuilder::CreateGEP and IRBuilder::CreateInBoundsGEP to useJay Foad2011-07-221-2/+1
* Convert ConstantExpr::getGetElementPtr andJay Foad2011-07-211-1/+1
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-32/+32
* Silence compiler warnings.Benjamin Kramer2011-07-161-5/+4
* Fix SCEVEXpander to handle arbitrary phi expansion. Includes twoAndrew Trick2011-07-161-7/+18
* Preserve debug loc.Devang Patel2011-07-051-1/+1
* Cleanup. Fix a stupid variable name.Andrew Trick2011-06-281-3/+3
* SCEVExpander: give new insts a name that identifies the reponsible pass.Andrew Trick2011-06-281-3/+4
* New binops need debug loc.Devang Patel2011-06-221-1/+3
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-301-4/+3
* (Almost) always call reserveOperandSpace() on newly created PHINodes.Jay Foad2011-03-301-6/+8