summaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/SSAUpdater.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-1/+3
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-24/+17
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-10/+11
* Update to LLVM 3.5a.Stephen Hines2014-04-241-3/+1
* Basic blocks typically have few predecessors. Use a SmallDenseMap toChris Lattner2013-10-141-3/+3
* Update comments for SSAUpdater to use the modern doxygen commentChandler Carruth2013-07-281-41/+3
* 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-4/+4
* Fix undefined behavior (binding a reference to a dereferenced null pointer) ifRichard Smith2012-08-171-1/+1
* LICM uses AliasSet information to hoist and sink instructions. However, other...Nadav Rotem2012-08-131-0/+5
* The name (and comment describing) of llvm::GetFirstDebuigLocInBasicBlock no l...Eli Bendersky2012-06-251-2/+5
* Fix two rather subtle internal vs. external linker issues.Chandler Carruth2012-06-201-25/+20
* Make headers standalone, move a virtual method out of line.Benjamin Kramer2011-11-141-0/+7
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-1/+1
* fix a warning in TinyPtrVector, adopt it in SSAUpdater, saving someChris Lattner2011-07-181-3/+3
* Simplify. Consolidate dbg.declare handling in AllocaPromoter.Devang Patel2011-07-061-11/+3
* Clean up the lazy initialization of DIBuilder a bit.Cameron Zwarich2011-05-241-9/+3
* Make LoadAndStorePromoter preserve debug info and create llvm.dbg.values whenCameron Zwarich2011-05-241-7/+25
* Assing line number info to new PHIs created by SSA updater.Devang Patel2011-04-291-0/+5
* Don't include Operator.h from InstrTypes.h.Jay Foad2011-04-111-0/+1
* Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad2011-03-301-5/+4
* fix PR9017, a bug where we'd assert when promoting in unreachableChris Lattner2011-01-241-0/+3
* Generalize LoadAndStorePromoter a bit and switch LICMChris Lattner2011-01-151-16/+25
* Add a new LoadAndStorePromoter class, which implements the generalChris Lattner2011-01-141-0/+154
* Have a few places that want to simplify phi nodes use SimplifyInstructionDuncan Sands2010-11-161-2/+3
* Reapply commit 112699, speculatively reverted by echristo, sinceDuncan Sands2010-09-021-13/+11
* Speculatively revert 112699 and 112702, they seem to be causingEric Christopher2010-09-011-11/+13
* If PrototypeValue is erased in the middle of using the SSAUpdatorDuncan Sands2010-09-011-13/+11
* implement SSAUpdater::RewriteUseAfterInsertions, a helpful form of RewriteUse.Chris Lattner2010-08-291-0/+16
* Combine the implementations of the core part of the SSAUpdater andBob Wilson2010-05-041-429/+102
* Fix a performance problem with the new SSAUpdater. This showed up in theBob Wilson2010-04-211-2/+8
* Re-commit my previous SSAUpdater changes. The previous version naively triedBob Wilson2010-04-171-179/+434
* Revert all my SSAUpdater patches. The PHI placement algorithm is not correctBob Wilson2010-04-031-315/+183
* Add a DEBUG_TYPE for the SSAUpdater.Bob Wilson2010-04-031-0/+1
* Recommit 100158 now that the buildbots are happy again.Bob Wilson2010-04-021-21/+29
* Revert 100158 in case it is causing some of the buildbot problems.Bob Wilson2010-04-021-29/+21
* Check for terminating conditions before adding PHIs to the worklists.Bob Wilson2010-04-021-21/+29
* Remove trailing whitespace.Bob Wilson2010-04-011-5/+5
* Rewrite another SSAUpdater function to avoid recursion.Bob Wilson2010-04-011-32/+46
* Change another SSAUpdater function to avoid recursion.Bob Wilson2010-04-011-18/+24
* Simplify the code to check for existing PHIs, now that it is only used inBob Wilson2010-04-011-30/+12
* The SSAUpdater should avoid recursive traversals of the CFG, since that mayBob Wilson2010-04-011-15/+23
* Rewrite part of the SSAUpdater to be more careful about inserting redundantBob Wilson2010-03-311-150/+263
* Avoid creating redundant PHIs in SSAUpdater::GetValueInMiddleOfBlock.Bob Wilson2010-01-271-41/+75
* Change errs() to dbgs().David Greene2010-01-051-2/+2
* improve indentation avoid a pointless conversion from weakvh to trackingvh,Chris Lattner2009-12-211-3/+3
* fix PR5837 by having SSAUpdate reuse phi nodes for theChris Lattner2009-12-211-1/+23
* add an assert to make it really clear what this is doing. Return singularval asChris Lattner2009-12-041-1/+5
* alternate fix for PR5258 which avoids worklist problems, with reduced testcase.Chris Lattner2009-10-201-11/+6
* Fix PR5258, jump-threading creating invalid PHIs.Torok Edwin2009-10-201-2/+10