aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/LCSSA.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-11/+44
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-3/+2
* Update to LLVM 3.5a.Stephen Hines2014-04-241-167/+200
* Quick look-up for block in loop.Wan Xiaofei2013-10-261-13/+2
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-3/+3
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-7/+7
* LCSSA: Try to recover compile time regressions due to SCEV updates.Benjamin Kramer2012-10-311-15/+9
* LCSSA: Add a workaround for another nasty SCEV cache invalidation issue.Benjamin Kramer2012-10-311-0/+5
* Fix SCEV cache invalidation in LCSSA and LoopSimplify.Benjamin Kramer2012-10-261-0/+14
* There is no need to force DebugLoc on a PHI at this point.Devang Patel2011-05-161-2/+0
* Set debug location for new PHI nodes created in exit block. Devang Patel2011-05-041-0/+2
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-301-2/+3
* Clean up something noticed by Fritz.Cameron Zwarich2011-03-151-1/+1
* Do not add PHIs with no users when creating LCSSA form. Patch by Andrew Clinton.Cameron Zwarich2011-03-151-0/+10
* split dom frontier handling stuff out to its own DominanceFrontier header,Chris Lattner2011-01-021-3/+0
* Passes do not need to recursively initialize passes that they preserve, ifOwen Anderson2010-10-191-3/+0
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-1/+3
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-121-1/+7
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Reapply commit 112699, speculatively reverted by echristo, sinceDuncan Sands2010-09-021-1/+1
* Speculatively revert 112699 and 112702, they seem to be causingEric Christopher2010-09-011-1/+1
* If PrototypeValue is erased in the middle of using the SSAUpdatorDuncan Sands2010-09-011-1/+1
* Now that PassInfo and Pass::ID have been separated, move the rest of the pass...Owen Anderson2010-08-231-1/+1
* 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-7/+2
* Reorder the contents of various getAnalysisUsage functions, eliminatingDan Gohman2010-07-161-11/+7
* cache result of operator*Gabor Greif2010-07-091-3/+4
* Add a DominatorTree argument to isLCSSA so that it doesn't have toDan Gohman2010-03-101-2/+2
* Fix a comment in a typo that Duncan noticed.Dan Gohman2009-11-091-1/+1
* Generalize LCSSA to handle loops with exits with predecessors outsideDan Gohman2009-11-091-2/+14
* Delete an unused member variable.Dan Gohman2009-11-051-2/+0
* rewrite LCSSA to use SSAUpdate, to only return true if it modifiesChris Lattner2009-10-111-154/+130
* clean up and simplify some code. Don't use setvector when things will beChris Lattner2009-10-111-28/+23
* random tidyingChris Lattner2009-10-101-7/+5
* Remove a redundant #ifndef and add an assertion string.Dan Gohman2009-09-281-3/+1
* Re-apply r80926, with fixes: keep the domtree informed of new blocksDan Gohman2009-09-081-3/+14
* Revert r80926. It causes loop unswitch assertion and slow down some JIT tests...Evan Cheng2009-09-061-16/+3
* Add a verifyAnalysis to LoopInfo, LoopSimplify, and LCSSA form that verifyDan Gohman2009-09-031-3/+16
* 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
* More LLVMContext-ification.Owen Anderson2009-07-051-1/+2
* Fix LCSSA to avoid emitting a PHI node for the unwind destination ofDan Gohman2009-06-261-2/+11
* Real fix for PR3549, by using caching for predecessor counts in addition to t...Owen Anderson2009-04-221-11/+13
* Use PredIteratorCache in LCSSA, which gives a 37% overall speedup on the test...Owen Anderson2009-04-221-2/+5
* Simplify the logic of getting hold of a PHI predecessor block.Gabor Greif2009-01-231-4/+2
* Change create*Pass factory functions to return Pass* instead ofDaniel Dunbar2008-10-221-1/+1
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-041-1/+1
* Enable first-class aggregates support.Dan Gohman2008-07-231-21/+1