summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LoopSimplify.cpp
Commit message (Expand)AuthorAge
* SplitBlockPredecessors uses ArrayRef instead of Data and Size.Jakub Staszak2011-12-09
* Propagate TargetLibraryInfo throughout ConstantFolding.cpp and Chad Rosier2011-12-01
* Intelligently split the landing pad block.Bill Wendling2011-08-19
* Revert r137871. The loop simplify pass should require all exits from a loop thatBill Wendling2011-08-18
* Don't optimize the landing pad exit block.Bill Wendling2011-08-17
* Silence a bunch (but not all) "variable written but not read" warningsDuncan Sands2011-08-12
* SCEV: Use AssertingVH to catch dangling BasicBlock* when passes forgetAndrew Trick2011-08-03
* whitespaceAndrew Trick2011-08-03
* Set debug loc for new preheader's terminator.Devang Patel2011-06-17
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-15
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-30
* Rename 'loopsimplify' to 'loop-simplify'.Cameron Zwarich2011-02-10
* Remove code for updating dominance frontiers and some outdated references toCameron Zwarich2011-01-18
* this pass claims to preserve scev, make sure to tell it about deletions.Chris Lattner2011-01-11
* split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner2011-01-02
* Fix PR8702 by not having LoopSimplify claim to preserve LCSSA form. As descr...Duncan Sands2011-01-02
* Factor code for testing whether replacing one value with anotherDuncan Sands2010-11-18
* Have a few places that want to simplify phi nodes use SimplifyInstructionDuncan Sands2010-11-16
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-12
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Fix LoopSimplify to notify ScalarEvolution when splitting a loop backedgeDan Gohman2010-09-04
* Now that PassInfo and Pass::ID have been separated, move the rest of the pass...Owen Anderson2010-08-23
* Avoid #include <ScalarEvolution.h> in LoopSimplify.cpp, which doesn'tDan Gohman2010-08-16
* LoopSimplify shouldn't split loop backedges that use indirectbr. PR7867.Dan Gohman2010-08-14
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* Remove LCSSA's bogus dependence on LoopSimplify and LoopSimplify's bogusDan Gohman2010-07-26
* keep in 80 colsGabor Greif2010-07-22
* Reorder the contents of various getAnalysisUsage functions, eliminatingDan Gohman2010-07-16
* cache result of operator*Gabor Greif2010-07-09
* cache operator*'s result (in multiple functions)Gabor Greif2010-07-09
* Use pre-increment instead of post-increment when the result is not used.Dan Gohman2010-06-22
* Skip debug info intrinsics.Devang Patel2010-03-15
* Fix a comment.Dan Gohman2010-03-10
* Add some debug output to LoopSimplify.Dan Gohman2010-03-01
* Make LoopSimplify change conditional branches in loop exiting blocksDan Gohman2010-02-25
* Use a SmallSetVector instead of a SetVector; this code showed up as aDan Gohman2010-02-05
* Fix a comment typo.Bob Wilson2010-01-15
* revert r89298, which was committed without a testcase. I thinkChris Lattner2009-12-21
* Update a comment.Dan Gohman2009-12-18
* Make Loop::getLoopLatch() work on loops which don't have preheaders, asDan Gohman2009-11-20
* Eliminate duplicate phi nodes in loops. Loop rotation, for example, can intro...Jim Grosbach2009-11-19
* Avoid calling getUniqueExitBlocks from within LoopSimplify, as it dependsDan Gohman2009-11-05
* The introduction of indirectbr meant the introduction ofDan Gohman2009-11-05
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-25
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* Fix this code so that it doesn't try to iterate through a std::vectorDan Gohman2009-09-30
* Convert LoopSimplify and LoopExtractor from FunctionPass to LoopPass.Dan Gohman2009-09-28