| Commit message (Expand) | Author | Age | Files | Lines |
* | [LICM/MSSA] Add promotion to scalars by building an AliasSetTracker with Memo... | Alina Sbirlea | 2019-02-06 | 1 | -2/+1 |
* | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
* | [DebugInfo][LCSSA] Rewrite pre-existing debug values outside loop | David Stenberg | 2018-10-16 | 1 | -0/+5 |
* | Remove trailing space | Fangrui Song | 2018-07-30 | 1 | -19/+19 |
* | Rename DEBUG macro to LLVM_DEBUG. | Nicola Zaghen | 2018-05-14 | 1 | -1/+1 |
* | Use phi ranges to simplify code. No functionality change intended. | Benjamin Kramer | 2017-12-30 | 1 | -5/+3 |
* | [Transforms] Fix some Clang-tidy modernize and Include What You Use warnings;... | Eugene Zelenko | 2017-10-11 | 1 | -20/+19 |
* | Sort the remaining #include lines in include/... and lib/.... | Chandler Carruth | 2017-06-06 | 1 | -2/+2 |
* | [Target, Transforms] Fix some Clang-tidy modernize and Include What You Use w... | Eugene Zelenko | 2017-01-18 | 1 | -9/+18 |
* | Use the range variant of find instead of unpacking begin/end | David Majnemer | 2016-08-11 | 1 | -1/+1 |
* | Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) | Alexander Kornienko | 2015-06-23 | 1 | -1/+1 |
* | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 2015-06-19 | 1 | -1/+1 |
* | Change LoadAndStorePromoter to take ArrayRef instead of SmallVectorImpl&. | Pete Cooper | 2015-05-13 | 1 | -3/+3 |
* | DataLayout is mandatory, update the API to reflect it with references. | Mehdi Amini | 2015-03-10 | 1 | -1/+3 |
* | SSAUpdater: Use range-based for. NFC. | Benjamin Kramer | 2015-02-19 | 1 | -24/+17 |
* | Revert "[C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) ite... | Duncan P. N. Exon Smith | 2014-07-21 | 1 | -2/+4 |
* | [C++11] Add predecessors(BasicBlock *) / successors(BasicBlock *) iterator ra... | Manuel Jacob | 2014-07-20 | 1 | -4/+2 |
* | [C++] Use 'nullptr'. | Craig Topper | 2014-04-28 | 1 | -1/+1 |
* | [C++] Use 'nullptr'. Transforms edition. | Craig Topper | 2014-04-25 | 1 | -8/+8 |
* | [Modules] Make Support/Debug.h modular. This requires it to not change | Chandler Carruth | 2014-04-21 | 1 | -1/+2 |
* | [Modules] Move CFG.h to the IR library as it defines graph traits over | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | Remove some unused #includes | Eli Bendersky | 2014-02-01 | 1 | -2/+0 |
* | Basic blocks typically have few predecessors. Use a SmallDenseMap to | Chris Lattner | 2013-10-14 | 1 | -3/+3 |
* | Update comments for SSAUpdater to use the modern doxygen comment | Chandler Carruth | 2013-07-28 | 1 | -41/+3 |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -3/+3 |
* | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -4/+4 |
* | Fix undefined behavior (binding a reference to a dereferenced null pointer) if | Richard Smith | 2012-08-17 | 1 | -1/+1 |
* | LICM uses AliasSet information to hoist and sink instructions. However, other... | Nadav Rotem | 2012-08-13 | 1 | -0/+5 |
* | The name (and comment describing) of llvm::GetFirstDebuigLocInBasicBlock no l... | Eli Bendersky | 2012-06-25 | 1 | -2/+5 |
* | Fix two rather subtle internal vs. external linker issues. | Chandler Carruth | 2012-06-20 | 1 | -25/+20 |
* | Make headers standalone, move a virtual method out of line. | Benjamin Kramer | 2011-11-14 | 1 | -0/+7 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -1/+1 |
* | fix a warning in TinyPtrVector, adopt it in SSAUpdater, saving some | Chris Lattner | 2011-07-18 | 1 | -3/+3 |
* | Simplify. Consolidate dbg.declare handling in AllocaPromoter. | Devang Patel | 2011-07-06 | 1 | -11/+3 |
* | Clean up the lazy initialization of DIBuilder a bit. | Cameron Zwarich | 2011-05-24 | 1 | -9/+3 |
* | Make LoadAndStorePromoter preserve debug info and create llvm.dbg.values when | Cameron Zwarich | 2011-05-24 | 1 | -7/+25 |
* | Assing line number info to new PHIs created by SSA updater. | Devang Patel | 2011-04-29 | 1 | -0/+5 |
* | Don't include Operator.h from InstrTypes.h. | Jay Foad | 2011-04-11 | 1 | -0/+1 |
* | Remove PHINode::reserveOperandSpace(). Instead, add a parameter to | Jay Foad | 2011-03-30 | 1 | -5/+4 |
* | fix PR9017, a bug where we'd assert when promoting in unreachable | Chris Lattner | 2011-01-24 | 1 | -0/+3 |
* | Generalize LoadAndStorePromoter a bit and switch LICM | Chris Lattner | 2011-01-15 | 1 | -16/+25 |
* | Add a new LoadAndStorePromoter class, which implements the general | Chris Lattner | 2011-01-14 | 1 | -0/+154 |
* | Have a few places that want to simplify phi nodes use SimplifyInstruction | Duncan Sands | 2010-11-16 | 1 | -2/+3 |
* | Reapply commit 112699, speculatively reverted by echristo, since | Duncan Sands | 2010-09-02 | 1 | -13/+11 |
* | Speculatively revert 112699 and 112702, they seem to be causing | Eric Christopher | 2010-09-01 | 1 | -11/+13 |
* | If PrototypeValue is erased in the middle of using the SSAUpdator | Duncan Sands | 2010-09-01 | 1 | -13/+11 |
* | implement SSAUpdater::RewriteUseAfterInsertions, a helpful form of RewriteUse. | Chris Lattner | 2010-08-29 | 1 | -0/+16 |
* | Combine the implementations of the core part of the SSAUpdater and | Bob Wilson | 2010-05-04 | 1 | -429/+102 |
* | Fix a performance problem with the new SSAUpdater. This showed up in the | Bob Wilson | 2010-04-21 | 1 | -2/+8 |
* | Re-commit my previous SSAUpdater changes. The previous version naively tried | Bob Wilson | 2010-04-17 | 1 | -179/+434 |