Age | Commit message (Expand) | Author | Files | Lines |
2016-08-09 | Consistently use LoopAnalysisManager | Sean Silva | 1 | -1/+1 |
2016-07-14 | [PM] Port Dead Loop Deletion Pass to the new PM | Jun Bum Lim | 1 | -57/+72 |
2016-06-26 | Apply clang-tidy's modernize-loop-convert to most of lib/Transforms. | Benjamin Kramer | 1 | -6/+4 |
2016-05-03 | Use all_of instead of a raw loop; NFC | Sanjoy Das | 1 | -6/+4 |
2016-05-03 | [LoopDeletion] Clear SCEV loop dispositions | Sanjoy Das | 1 | -11/+27 |
2016-04-22 | Re-commit optimization bisect support (r267022) without new pass manager supp... | Andrew Kaylor | 1 | -1/+1 |
2016-04-22 | Revert "Initial implementation of optimization bisect support." | Vedant Kumar | 1 | -1/+1 |
2016-04-21 | Initial implementation of optimization bisect support. | Andrew Kaylor | 1 | -1/+1 |
2016-02-21 | [LoopDeletion] Add an assert that verifies LCSSA | Sanjoy Das | 1 | -1/+3 |
2016-02-19 | [LPM] Factor all of the loop analysis usage updates into a common helper | Chandler Carruth | 1 | -17/+3 |
2016-01-08 | LoopInfo: Simplify ownership of Loop objects | Justin Bogner | 1 | -1/+1 |
2015-12-16 | LPM: Make callers of LPM.deleteLoopFromQueue update LoopInfo directly. NFC | Justin Bogner | 1 | -5/+4 |
2015-09-10 | Add GlobalsAA as preserved to a bunch of transforms | James Molloy | 1 | -0/+2 |
2015-08-17 | [PM] Port ScalarEvolution to the new pass manager. | Chandler Carruth | 1 | -4/+4 |
2015-06-23 | Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) | Alexander Kornienko | 1 | -1/+1 |
2015-06-19 | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 1 | -1/+1 |
2015-01-17 | [PM] Split the LoopInfo object apart from the legacy pass, creating | Chandler Carruth | 1 | -4/+4 |
2014-08-24 | Use range based for loops to avoid needing to re-mention SmallPtrSet size. | Craig Topper | 1 | -3/+2 |
2014-04-22 | [Modules] Fix potential ODR violations by sinking the DEBUG_TYPE | Chandler Carruth | 1 | -1/+2 |
2014-03-05 | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 1 | -2/+2 |
2014-02-06 | Disable most IR-level transform passes on functions marked 'optnone'. | Paul Robinson | 1 | -0/+3 |
2014-01-13 | [PM] Split DominatorTree into a concrete analysis result object which | Chandler Carruth | 1 | -4/+4 |
2014-01-13 | [cleanup] Move the Dominators.h and Verifier.h headers into the IR | Chandler Carruth | 1 | -1/+1 |
2013-07-14 | Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s... | Craig Topper | 1 | -4/+4 |
2013-07-04 | Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ... | Craig Topper | 1 | -1/+1 |
2013-03-18 | Make method private. Keep coding standard. | Jakub Staszak | 1 | -26/+28 |
2012-12-03 | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 1 | -3/+3 |
2012-07-24 | Clean whitespaces. | Nadav Rotem | 1 | -25/+25 |
2011-06-21 | Don't use PN->replaceUsesOfWith() to change a PHINode's incoming blocks, | Jay Foad | 1 | -1/+3 |
2011-02-22 | Make LoopDeletion work on loops with multiple edges, as long as the incoming | Cameron Zwarich | 1 | -8/+15 |
2011-01-18 | Remove code for updating dominance frontiers and some outdated references to | Cameron Zwarich | 1 | -5/+1 |
2011-01-12 | Use SmallVector instead of SmallPtrSet and avoid non-deterministic behavior. | Devang Patel | 1 | -3/+3 |
2011-01-02 | split dom frontier handling stuff out to its own DominanceFrontier header, | Chris Lattner | 1 | -0/+1 |
2010-10-19 | Passes do not need to recursively initialize passes that they preserve, if | Owen Anderson | 1 | -1/+0 |
2010-10-19 | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 1 | -1/+3 |
2010-10-12 | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 1 | -1/+9 |
2010-10-07 | Now with fewer extraneous semicolons! | Owen Anderson | 1 | -1/+1 |
2010-08-06 | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 1 | -1/+1 |
2010-08-06 | Revert r110396 to fix buildbots. | Owen Anderson | 1 | -1/+1 |
2010-08-05 | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 1 | -1/+1 |
2010-07-26 | Remove LCSSA's bogus dependence on LoopSimplify and LoopSimplify's bogus | Dan Gohman | 1 | -1/+1 |
2010-07-21 | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson | 1 | -1/+2 |
2010-06-22 | Use pre-increment instead of post-increment when the result is not used. | Dan Gohman | 1 | -3/+3 |
2009-11-05 | LoopDeletion depends on loops having dedicated exits. | Dan Gohman | 1 | -0/+4 |
2009-10-31 | Rename forgetLoopBackedgeTakenCount to forgetLoop, because it | Dan Gohman | 1 | -1/+1 |
2009-10-26 | Simplify this code. LoopDeletion doesn't need to explicit check that | Dan Gohman | 1 | -24/+2 |
2009-10-23 | Make LoopDeletion check the maximum backedge taken count, rather than the | Dan Gohman | 1 | -1/+1 |
2009-09-02 | eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861 | Chris Lattner | 1 | -3/+1 |
2009-07-15 | Make makeLoopInvariant report whether it made any changes or not, | Dan Gohman | 1 | -40/+12 |
2009-07-08 | Tell ScalarEvolution to forget a loop before starting to delete it. | Dan Gohman | 1 | -6/+6 |