aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/LoopSimplify.cpp
Commit message (Expand)AuthorAgeFilesLines
* Factor code for testing whether replacing one value with anotherDuncan Sands2010-11-181-14/+16
* Have a few places that want to simplify phi nodes use SimplifyInstructionDuncan Sands2010-11-161-3/+4
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-6/+3
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-121-1/+10
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Fix LoopSimplify to notify ScalarEvolution when splitting a loop backedgeDan Gohman2010-09-041-1/+10
* Now that PassInfo and Pass::ID have been separated, move the rest of the pass...Owen Anderson2010-08-231-2/+2
* Avoid #include <ScalarEvolution.h> in LoopSimplify.cpp, which doesn'tDan Gohman2010-08-161-2/+1
* LoopSimplify shouldn't split loop backedges that use indirectbr. PR7867.Dan Gohman2010-08-141-0/+5
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-2/+2
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-2/+2
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-2/+2
* Remove LCSSA's bogus dependence on LoopSimplify and LoopSimplify's bogusDan Gohman2010-07-261-9/+4
* keep in 80 colsGabor Greif2010-07-221-3/+4
* Reorder the contents of various getAnalysisUsage functions, eliminatingDan Gohman2010-07-161-3/+10
* cache result of operator*Gabor Greif2010-07-091-2/+4
* cache operator*'s result (in multiple functions)Gabor Greif2010-07-091-15/+22
* Use pre-increment instead of post-increment when the result is not used.Dan Gohman2010-06-221-3/+3
* Skip debug info intrinsics.Devang Patel2010-03-151-0/+4
* Fix a comment.Dan Gohman2010-03-101-1/+1
* Add some debug output to LoopSimplify.Dan Gohman2010-03-011-0/+30
* Make LoopSimplify change conditional branches in loop exiting blocksDan Gohman2010-02-251-2/+16
* Use a SmallSetVector instead of a SetVector; this code showed up as aDan Gohman2010-02-051-2/+3
* Fix a comment typo.Bob Wilson2010-01-151-1/+1
* revert r89298, which was committed without a testcase. I thinkChris Lattner2009-12-211-6/+0
* Update a comment.Dan Gohman2009-12-181-1/+1
* Make Loop::getLoopLatch() work on loops which don't have preheaders, asDan Gohman2009-11-201-1/+6
* Eliminate duplicate phi nodes in loops. Loop rotation, for example, can intro...Jim Grosbach2009-11-191-0/+6
* Avoid calling getUniqueExitBlocks from within LoopSimplify, as it dependsDan Gohman2009-11-051-1/+8
* The introduction of indirectbr meant the introduction ofDan Gohman2009-11-051-21/+82
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-251-1/+0
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-251-1/+1
* Fix this code so that it doesn't try to iterate through a std::vectorDan Gohman2009-09-301-3/+4
* Convert LoopSimplify and LoopExtractor from FunctionPass to LoopPass.Dan Gohman2009-09-281-83/+48
* Re-apply r80926, with fixes: keep the domtree informed of new blocksDan Gohman2009-09-081-29/+11
* Revert r80926. It causes loop unswitch assertion and slow down some JIT tests...Evan Cheng2009-09-061-12/+28
* Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verifyDan Gohman2009-09-031-28/+12
* Change PHINode::hasConstantValue to have a DominatorTree argumentDan Gohman2009-09-031-9/+8
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-2/+3
* Move more code back to 2.5 APIs.Owen Anderson2009-07-301-1/+1
* Get rid of the Pass+Context magic.Owen Anderson2009-07-221-1/+1
* Make makeLoopInvariant report whether it made any changes or not,Dan Gohman2009-07-151-6/+4
* Update LoopSimplify and LoopUnswitch to use the new makeLoopInvariantDan Gohman2009-07-141-14/+9
* More LLVMContext-ification.Owen Anderson2009-07-051-1/+2
* Minor code simplification.Dan Gohman2009-06-301-3/+2
* Remove the block from the LoopInfo, rather than just the Loop.Dan Gohman2009-06-271-1/+1
* Teach LoopSimplify how to merge multiple loop exits into a single exit,Dan Gohman2009-06-271-0/+75
* Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands2009-01-281-2/+2
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-1/+1
* Use Loop::block_iterator.Dan Gohman2008-06-221-2/+3