aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LoopSimplify.cpp
AgeCommit message (Expand)Author
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-10-26LoopSimplify: Preserve DependenceAnalysis.Benjamin Kramer
2012-10-26Fix SCEV cache invalidation in LCSSA and LoopSimplify.Benjamin Kramer
2012-03-20LoopSimplify bug fix. Handle indirect loop back edges.Andrew Trick
2012-03-20whitespaceAndrew Trick
2011-12-15Make loop preheader insertion in LoopSimplify handle the case where the loop ...Eli Friedman
2011-12-09SplitBlockPredecessors uses ArrayRef instead of Data and Size.Jakub Staszak
2011-12-01Propagate TargetLibraryInfo throughout ConstantFolding.cpp and Chad Rosier
2011-08-19Intelligently split the landing pad block.Bill Wendling
2011-08-18Revert r137871. The loop simplify pass should require all exits from a loop thatBill Wendling
2011-08-17Don't optimize the landing pad exit block.Bill Wendling
2011-08-12Silence a bunch (but not all) "variable written but not read" warningsDuncan Sands
2011-08-03SCEV: Use AssertingVH to catch dangling BasicBlock* when passes forgetAndrew Trick
2011-08-03whitespaceAndrew Trick
2011-06-17Set debug loc for new preheader's terminator.Devang Patel
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner
2011-03-30Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad
2011-02-10Rename 'loopsimplify' to 'loop-simplify'.Cameron Zwarich
2011-01-18Remove code for updating dominance frontiers and some outdated references toCameron Zwarich
2011-01-11this pass claims to preserve scev, make sure to tell it about deletions.Chris Lattner
2011-01-02split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner
2011-01-02Fix PR8702 by not having LoopSimplify claim to preserve LCSSA form. As descr...Duncan Sands
2010-11-18Factor code for testing whether replacing one value with anotherDuncan Sands
2010-11-16Have a few places that want to simplify phi nodes use SimplifyInstructionDuncan Sands
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-09-04Fix LoopSimplify to notify ScalarEvolution when splitting a loop backedgeDan Gohman
2010-08-23Now that PassInfo and Pass::ID have been separated, move the rest of the pass...Owen Anderson
2010-08-16Avoid #include <ScalarEvolution.h> in LoopSimplify.cpp, which doesn'tDan Gohman
2010-08-14LoopSimplify shouldn't split loop backedges that use indirectbr. PR7867.Dan Gohman
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson
2010-08-06Revert r110396 to fix buildbots.Owen Anderson
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson
2010-07-26Remove LCSSA's bogus dependence on LoopSimplify and LoopSimplify's bogusDan Gohman
2010-07-22keep in 80 colsGabor Greif
2010-07-16Reorder the contents of various getAnalysisUsage functions, eliminatingDan Gohman
2010-07-09cache result of operator*Gabor Greif
2010-07-09cache operator*'s result (in multiple functions)Gabor Greif
2010-06-22Use pre-increment instead of post-increment when the result is not used.Dan Gohman
2010-03-15Skip debug info intrinsics.Devang Patel
2010-03-10Fix a comment.Dan Gohman
2010-03-01Add some debug output to LoopSimplify.Dan Gohman
2010-02-25Make LoopSimplify change conditional branches in loop exiting blocksDan Gohman
2010-02-05Use a SmallSetVector instead of a SetVector; this code showed up as aDan Gohman
2010-01-15Fix a comment typo.Bob Wilson
2009-12-21revert r89298, which was committed without a testcase. I thinkChris Lattner
2009-12-18Update a comment.Dan Gohman
2009-11-20Make Loop::getLoopLatch() work on loops which don't have preheaders, asDan Gohman