aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/LoopSimplify.cpp
AgeCommit message (Expand)AuthorFilesLines
2009-10-25Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky1-1/+0
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky1-1/+1
2009-09-30Fix this code so that it doesn't try to iterate through a std::vectorDan Gohman1-3/+4
2009-09-28Convert LoopSimplify and LoopExtractor from FunctionPass to LoopPass.Dan Gohman1-83/+48
2009-09-08Re-apply r80926, with fixes: keep the domtree informed of new blocksDan Gohman1-29/+11
2009-09-06Revert r80926. It causes loop unswitch assertion and slow down some JIT tests...Evan Cheng1-12/+28
2009-09-03Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verifyDan Gohman1-28/+12
2009-09-03Change PHINode::hasConstantValue to have a DominatorTree argumentDan Gohman1-9/+8
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson1-2/+3
2009-07-30Move more code back to 2.5 APIs.Owen Anderson1-1/+1
2009-07-22Get rid of the Pass+Context magic.Owen Anderson1-1/+1
2009-07-15Make makeLoopInvariant report whether it made any changes or not,Dan Gohman1-6/+4
2009-07-14Update LoopSimplify and LoopUnswitch to use the new makeLoopInvariantDan Gohman1-14/+9
2009-07-05More LLVMContext-ification.Owen Anderson1-1/+2
2009-06-30Minor code simplification.Dan Gohman1-3/+2
2009-06-27Remove the block from the LoopInfo, rather than just the Loop.Dan Gohman1-1/+1
2009-06-27Teach LoopSimplify how to merge multiple loop exits into a single exit,Dan Gohman1-0/+75
2009-01-28Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands1-2/+2
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman1-1/+1
2008-06-22Use Loop::block_iterator.Dan Gohman1-2/+3
2008-06-06LoopSimplify preserves AA.Devang Patel1-3/+5
2008-05-13Change class' public PassInfo variables to by initialized with theDan Gohman1-1/+1
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman1-4/+4
2008-04-25Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989Nick Lewycky1-10/+7
2008-04-21Move SplitBlockPredecessors out of loopsimplify into BasicBlockUtils.hChris Lattner1-107/+14
2008-04-21Move domtree/frontier updating earlier, allowing us to use it to update phi Chris Lattner1-31/+18
2008-04-21Factor dominator tree and frontier updating into SplitBlockPredecessorsChris Lattner1-18/+14
2008-04-21simplify code, fit in 80 cols.Chris Lattner1-65/+67
2008-04-06API changes for class Use size reduction, wave 1.Gabor Greif1-7/+7
2008-03-09Update the block cloner which fixes bugpoint on code using unwind_to (phew!)Nick Lewycky1-7/+13
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner1-2/+2
2007-11-27Make LoopInfoBase more generic, in preparation for having MachineLoopInfo. T...Owen Anderson1-4/+4
2007-10-29Fix PR1752 and LoopSimplify/2007-10-28-InvokeCrash.ll: terminators Chris Lattner1-4/+6
2007-10-18Move Split<...>() into DomTreeBase. This should make the #include's of Domin...Owen Anderson1-1/+0
2007-10-17Fixed linker errors (unresolved externals: split<>(...)) when compiling with ...Hartmut Kaiser1-0/+1
2007-08-21Use SmallVector instead of std::vector.Devang Patel1-1/+1
2007-08-06remove some dead linesChris Lattner1-2/+0
2007-07-19Verify loop info.Devang Patel1-0/+10
2007-06-29Fix reference to iterator invalidated by an erase operation. UncoveredDavid Greene1-3/+4
2007-06-21Move code to update dominator information after basic block is splitDevang Patel1-189/+20
2007-06-11Add and use DominatorTreeBase::findNearestCommonDominator().Devang Patel1-1/+1
2007-06-11Simplify.Devang Patel1-4/+2
2007-06-11simplifyDevang Patel1-4/+3
2007-06-11Simplify. Dominator Tree is required so always available.Devang Patel1-31/+26
2007-06-08Update LoopSimplify to require and preserve DominatorTree only.Devang Patel1-32/+26
2007-06-04s/DominatorTree::createNewNode/DominatorTree::addNewBlock/gDevang Patel1-2/+1
2007-06-04s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel1-3/+3
2007-06-03s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel1-3/+3
2007-05-06Fix typo in comment.Nick Lewycky1-1/+1
2007-05-03Drop 'const'Devang Patel1-2/+2