aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LCSSA.cpp
AgeCommit message (Expand)Author
2009-01-23Simplify the logic of getting hold of a PHI predecessor block.Gabor Greif
2008-10-22Change create*Pass factory functions to return Pass* instead ofDaniel Dunbar
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-07-23Enable first-class aggregates support.Dan Gohman
2008-06-03Fix whitespace in whitespace-significant pseudocode in a comment.Dan Gohman
2008-05-30Since LCSSA switched over to DenseMap, we have to be more careful to avoid it...Owen Anderson
2008-05-26Use a DenseMap instead of an std::map, speeding up the testcase in PR2368 by ...Owen Anderson
2008-05-23Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places toDan Gohman
2008-05-15Fix a bunch of 80col violations that arose from the Create API change. Tweak ...Gabor Greif
2008-05-13Change class' public PassInfo variables to by initialized with theDan Gohman
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-05-03Handle multiple return values.Devang Patel
2008-04-06API changes for class Use size reduction, wave 1.Gabor Greif
2008-02-20Fix newly-introduced 4.3 warningsAnton Korobeynikov
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-08-21Use SmallVector instead of std::vector.Devang Patel
2007-08-17When one branch of condition is eliminated then head of the otherDevang Patel
2007-07-30LCSSA preserves dom info.Devang Patel
2007-07-19Now this temp. fix is not required.Devang Patel
2007-07-16Return Undef if the block has no dominator. This was required to allowReid Spencer
2007-07-13Make LCSSA a loop pass.Devang Patel
2007-06-07Maintain ETNode as part of DomTreeNode.Devang Patel
2007-06-04s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel
2007-06-03s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel
2007-05-11Fix typos.Dan Gohman
2007-05-06Fix typo in comment.Nick Lewycky
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-04-18Revert Owen's last check-in. This is breaking Mac OS X / PPC llvm-gcc bootstrap.Evan Cheng
2007-04-18Use ETForest instead of DominatorTree.Owen Anderson
2007-04-14avoid copying sets and vectors around.Chris Lattner
2007-02-05Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes inReid Spencer
2007-02-05For PR1177:Reid Spencer
2007-02-05Use DenseMap for pointer->pointer maps.Owen Anderson
2006-12-19switch more statistics over to STATISTIC, eliminating static ctors. Also,Chris Lattner
2006-12-06Detemplatize the Statistic class. The only type it is instantiated withChris Lattner
2006-10-31generalize the fix for PR977 to also fixChris Lattner
2006-10-31Fix PR977 and Transforms/LCSSA/2006-10-31-UnreachableBlock.llChris Lattner
2006-08-27eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner
2006-08-02Add special check to avoid isLoop call. Simple, but doesn't seem to speedChris Lattner
2006-08-02Replace the SSA update code in LCSSA with a bottom-up approach instead of a topChris Lattner
2006-07-09Fix typo in the comment.Owen Anderson
2006-07-09Add a fix for an issue where LCSSA would fail to insert undef's in some cornerOwen Anderson
2006-06-14Use the PotDoms map to memoize 'dominating value' lookup. With this patch,Chris Lattner
2006-06-13Fix another instance where PHI nodes need special treatment.Owen Anderson
2006-06-13Fix a bug that was causing major slowdowns in povray. This was due to LCSSAOwen Anderson
2006-06-12Fix for 2006-06-26-MultipleExitsSingleBlock.Owen Anderson
2006-06-11Re-commit the safe parts of my 6/9 patch. Still working on fixing the unsafe...Owen Anderson
2006-06-11Back out Owen's 6/9 changes. They broke MultiSource/Benchmarks/Prolangs-C/bis...Evan Cheng