aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/LCSSA.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-12-22[LCSSA] Handle PHI insertion in disjoint loopsBruno Cardoso Lopes1-8/+41
2014-04-22[Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-17remove some dead codeNuno Lopes1-2/+0
2014-03-09[C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth1-9/+8
2014-03-05[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-3/+3
2014-03-04[Modules] Move the PredIteratorCache into the IR library -- it isChandler Carruth1-1/+1
2014-02-10[LPM] A terribly simple fix to a terribly complex bug: PR18773.Chandler Carruth1-0/+2
2014-01-28[LPM] Fix PR18616 where the shifts to the loop pass manager to extractChandler Carruth1-13/+14
2014-01-25[LPM] Make LCSSA a utility with a FunctionPass that applies it to allChandler Carruth1-161/+192
2014-01-13[PM] Split DominatorTree into a concrete analysis result object whichChandler Carruth1-4/+4
2014-01-13[cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth1-1/+1
2013-10-26Quick look-up for block in loop.Wan Xiaofei1-13/+2
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-3/+3
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-7/+7
2012-10-31LCSSA: Try to recover compile time regressions due to SCEV updates.Benjamin Kramer1-15/+9
2012-10-31LCSSA: Add a workaround for another nasty SCEV cache invalidation issue.Benjamin Kramer1-0/+5
2012-10-26Fix SCEV cache invalidation in LCSSA and LoopSimplify.Benjamin Kramer1-0/+14
2011-05-16There is no need to force DebugLoc on a PHI at this point.Devang Patel1-2/+0
2011-05-04Set debug location for new PHI nodes created in exit block. Devang Patel1-0/+2
2011-03-30Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad1-2/+3
2011-03-15Clean up something noticed by Fritz.Cameron Zwarich1-1/+1
2011-03-15Do not add PHIs with no users when creating LCSSA form. Patch by Andrew Clinton.Cameron Zwarich1-0/+10
2011-01-02split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner1-3/+0
2010-10-19Passes do not need to recursively initialize passes that they preserve, ifOwen Anderson1-3/+0
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson1-1/+3
2010-10-12Begin adding static dependence information to passes, which will allow us toOwen Anderson1-1/+7
2010-10-07Now with fewer extraneous semicolons!Owen Anderson1-1/+1
2010-09-02Reapply commit 112699, speculatively reverted by echristo, sinceDuncan Sands1-1/+1
2010-09-01Speculatively revert 112699 and 112702, they seem to be causingEric Christopher1-1/+1
2010-09-01If PrototypeValue is erased in the middle of using the SSAUpdatorDuncan Sands1-1/+1
2010-08-23Now that PassInfo and Pass::ID have been separated, move the rest of the pass...Owen Anderson1-1/+1
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson1-2/+2
2010-08-06Revert r110396 to fix buildbots.Owen Anderson1-2/+2
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson1-2/+2
2010-07-26Remove LCSSA's bogus dependence on LoopSimplify and LoopSimplify's bogusDan Gohman1-7/+2
2010-07-16Reorder the contents of various getAnalysisUsage functions, eliminatingDan Gohman1-11/+7
2010-07-09cache result of operator*Gabor Greif1-3/+4
2010-03-10Add a DominatorTree argument to isLCSSA so that it doesn't have toDan Gohman1-2/+2
2009-11-09Fix a comment in a typo that Duncan noticed.Dan Gohman1-1/+1
2009-11-09Generalize LCSSA to handle loops with exits with predecessors outsideDan Gohman1-2/+14
2009-11-05Delete an unused member variable.Dan Gohman1-2/+0
2009-10-11rewrite LCSSA to use SSAUpdate, to only return true if it modifiesChris Lattner1-154/+130
2009-10-11clean up and simplify some code. Don't use setvector when things will beChris Lattner1-28/+23
2009-10-10random tidyingChris Lattner1-7/+5
2009-09-28Remove a redundant #ifndef and add an assertion string.Dan Gohman1-3/+1
2009-09-08Re-apply r80926, with fixes: keep the domtree informed of new blocksDan Gohman1-3/+14
2009-09-06Revert r80926. It causes loop unswitch assertion and slow down some JIT tests...Evan Cheng1-16/+3
2009-09-03Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verifyDan Gohman1-3/+16
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