aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/SSAUpdater.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-02-06[LICM/MSSA] Add promotion to scalars by building an AliasSetTracker with Memo...Alina Sbirlea1-2/+1
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-10-16[DebugInfo][LCSSA] Rewrite pre-existing debug values outside loopDavid Stenberg1-0/+5
2018-07-30Remove trailing spaceFangrui Song1-19/+19
2018-05-14Rename DEBUG macro to LLVM_DEBUG.Nicola Zaghen1-1/+1
2017-12-30Use phi ranges to simplify code. No functionality change intended.Benjamin Kramer1-5/+3
2017-10-11[Transforms] Fix some Clang-tidy modernize and Include What You Use warnings;...Eugene Zelenko1-20/+19
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth1-2/+2
2017-01-18[Target, Transforms] Fix some Clang-tidy modernize and Include What You Use w...Eugene Zelenko1-9/+18
2016-08-11Use the range variant of find instead of unpacking begin/endDavid Majnemer1-1/+1
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko1-1/+1
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-1/+1
2015-05-13Change LoadAndStorePromoter to take ArrayRef instead of SmallVectorImpl&.Pete Cooper1-3/+3
2015-03-10DataLayout is mandatory, update the API to reflect it with references.Mehdi Amini1-1/+3
2015-02-19SSAUpdater: Use range-based for. NFC.Benjamin Kramer1-24/+17
2014-07-21Revert "[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) ite...Duncan P. N. Exon Smith1-2/+4
2014-07-20[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) iterator ra...Manuel Jacob1-4/+2
2014-04-28[C++] Use 'nullptr'.Craig Topper1-1/+1
2014-04-25[C++] Use 'nullptr'. Transforms edition.Craig Topper1-8/+8
2014-04-21[Modules] Make Support/Debug.h modular. This requires it to not changeChandler Carruth1-1/+2
2014-03-04[Modules] Move CFG.h to the IR library as it defines graph traits overChandler Carruth1-1/+1
2014-02-01Remove some unused #includesEli Bendersky1-2/+0
2013-10-14Basic blocks typically have few predecessors. Use a SmallDenseMap toChris Lattner1-3/+3
2013-07-28Update comments for SSAUpdater to use the modern doxygen commentChandler Carruth1-41/+3
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-4/+4
2012-08-17Fix undefined behavior (binding a reference to a dereferenced null pointer) ifRichard Smith1-1/+1
2012-08-13LICM uses AliasSet information to hoist and sink instructions. However, other...Nadav Rotem1-0/+5
2012-06-25The name (and comment describing) of llvm::GetFirstDebuigLocInBasicBlock no l...Eli Bendersky1-2/+5
2012-06-20Fix two rather subtle internal vs. external linker issues.Chandler Carruth1-25/+20
2011-11-14Make headers standalone, move a virtual method out of line.Benjamin Kramer1-0/+7
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner1-1/+1
2011-07-18fix a warning in TinyPtrVector, adopt it in SSAUpdater, saving someChris Lattner1-3/+3
2011-07-06Simplify. Consolidate dbg.declare handling in AllocaPromoter.Devang Patel1-11/+3
2011-05-24Clean up the lazy initialization of DIBuilder a bit.Cameron Zwarich1-9/+3
2011-05-24Make LoadAndStorePromoter preserve debug info and create llvm.dbg.values whenCameron Zwarich1-7/+25
2011-04-29Assing line number info to new PHIs created by SSA updater.Devang Patel1-0/+5
2011-04-11Don't include Operator.h from InstrTypes.h.Jay Foad1-0/+1
2011-03-30Remove PHINode::reserveOperandSpace(). Instead, add a parameter toJay Foad1-5/+4
2011-01-24fix PR9017, a bug where we'd assert when promoting in unreachableChris Lattner1-0/+3
2011-01-15Generalize LoadAndStorePromoter a bit and switch LICMChris Lattner1-16/+25
2011-01-14Add a new LoadAndStorePromoter class, which implements the generalChris Lattner1-0/+154
2010-11-16Have a few places that want to simplify phi nodes use SimplifyInstructionDuncan Sands1-2/+3
2010-09-02Reapply commit 112699, speculatively reverted by echristo, sinceDuncan Sands1-13/+11
2010-09-01Speculatively revert 112699 and 112702, they seem to be causingEric Christopher1-11/+13
2010-09-01If PrototypeValue is erased in the middle of using the SSAUpdatorDuncan Sands1-13/+11
2010-08-29implement SSAUpdater::RewriteUseAfterInsertions, a helpful form of RewriteUse.Chris Lattner1-0/+16
2010-05-04Combine the implementations of the core part of the SSAUpdater andBob Wilson1-429/+102
2010-04-21Fix a performance problem with the new SSAUpdater. This showed up in theBob Wilson1-2/+8
2010-04-17Re-commit my previous SSAUpdater changes. The previous version naively triedBob Wilson1-179/+434