Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.)
[oota-llvm.git] / lib / Transforms / Scalar / SROA.cpp
2014-09-07 Hal FinkelMake use of @llvm.assume in ValueTracking (computeKnown...
2014-09-01 David MajnemerSROA: Don't insert instructions before a PHI
2014-08-22 Jingyue Wu[SROA] Fold a PHI node if all its incoming values are...
2014-08-22 Reid KlecknerSROA: Handle a case of store size being smaller than...
2014-08-21 Craig TopperRepace SmallPtrSet with SmallPtrSetImpl in function...
2014-08-18 Craig TopperRevert "Repace SmallPtrSet with SmallPtrSetImpl in...
2014-08-17 Craig TopperRepace SmallPtrSet with SmallPtrSetImpl in function...
2014-08-07 Owen AndersonFix a case in SROA where lifetime intrinsics could...
2014-07-24 Hal FinkelAA metadata refactoring (introduce AAMDNodes)
2014-07-10 Hal FinkelAllow isDereferenceablePointer to look through some...
2014-06-17 Duncan P. N. Exon... SROA: Only split loads on byte boundaries
2014-04-25 Craig Topper[C++] Use 'nullptr'. Transforms edition.
2014-04-22 Chandler Carruth[Modules] Fix potential ODR violations by sinking the...
2014-03-09 Chandler Carruth[C++11] Add range based accessors for the Use-Def chain...
2014-03-06 Chandler Carruth[Layering] Move InstVisitor.h into the IR library as...
2014-03-06 Chandler Carruth[Layering] Move DebugInfo.h into the IR library where...
2014-03-06 Chandler Carruth[Layering] Move DIBuilder.h into the IR library where...
2014-03-05 Craig Topper[C++11] Add 'override' keyword to virtual methods that...
2014-03-03 Chandler Carruth[C++11] Remove the completely unnecessary requirement...
2014-03-03 Chandler Carruth[C++11] Add two range adaptor views to User: operands and
2014-03-02 Benjamin Kramer[C++11] Replace llvm::tie with std::tie.
2014-03-02 Benjamin Kramer[C++11] Replace llvm::next and llvm::prior with std...
2014-03-01 Benjamin KramerNow that we have C++11, turn simple functors into lambd...
2014-02-26 Chandler Carruth[SROA] Use the correct index integer size in GEPs throu...
2014-02-26 Chandler Carruth[SROA] Teach SROA how to handle pointers from address...
2014-02-26 Chandler Carruth[SROA] Split the alignment computation complete for...
2014-02-26 Chandler Carruth[SROA] The original refactoring inspired by the addrspa...
2014-02-26 Chandler Carruth[SROA] Yet another slight refactoring that simplifies...
2014-02-26 Chandler Carruth[SROA] Simplify the computing of alignment: we only...
2014-02-26 Chandler Carruth[SROA] Use NewOffsetBegin in the unsplit case for memse...
2014-02-26 Chandler Carruth[SROA] Use the members for New{Begin,End}Offset in...
2014-02-26 Chandler Carruth[SROA] Compute the New{Begin,End}Offset values once...
2014-02-26 Chandler Carruth[SROA] Fix PR18615 with some long overdue simplificatio...
2014-02-25 Chandler Carruth[SROA] Add an off-by-default *strict* inbounds check...
2014-02-25 Rafael EspindolaMake DataLayout a plain object, not a pass.
2014-02-25 Chandler Carruth[SROA] Use the original load name with the SROA-prefixe...
2014-02-25 Chandler Carruth[SROA] Thread the ability to add a pointer-specific...
2014-02-25 Chandler Carruth[SROA] Rather than copying the logic for building a...
2014-02-25 Chandler Carruth[SROA] Simplify some of the logic to dig out the old...
2014-02-25 Chandler Carruth[SROA] Adjust to new clang-format style.
2014-02-25 Chandler Carruth[SROA] Fix a *glaring* bug in r202091: you have to...
2014-02-25 Alexey SamsonovSilence GCC warning
2014-02-25 Chandler Carruth[SROA] Add a debugging tool which shuffles the slices...
2014-02-25 Chandler Carruth[SROA] Use a more direct way of determining whether...
2014-02-25 Chandler Carruth[SROA] Fix another instability in SROA with respect...
2014-02-14 Rafael EspindolaTrivial cleanup: reuse existing variable.
2014-02-06 Paul RobinsonDisable most IR-level transform passes on functions...
2014-01-21 Chandler Carruth[SROA] Fix a bug which could cause the common type...
2014-01-19 Chandler CarruthFix a really nasty SROA bug with how we handled out...
2014-01-13 Chandler Carruth[PM] Split DominatorTree into a concrete analysis resul...
2014-01-13 Chandler Carruth[cleanup] Move the Dominators.h and Verifier.h headers...
2014-01-04 Alp TokerAdd missed cleanup from r198456
2014-01-03 Nico WeberAdd a LLVM_DUMP_METHOD macro.
2013-11-19 Chandler CarruthFix an issue where SROA computed different results...
2013-09-22 Benjamin KramerDrop spurious handle in comment.
2013-09-21 Benjamin KramerSROA: Handle casts involving vectors of pointers and...
2013-08-13 Nick LewyckyRevert r187191, which broke opt -mem2reg on the testcas...
2013-08-11 Chandler CarruthRe-instate r187323 which fast-tracks promotable allocas...
2013-08-11 Chandler CarruthFinish fixing the SSAUpdater-based AllocaPromoter strat...
2013-08-11 Chandler CarruthReformat some bits of AllocaPromoter and simplify the...
2013-07-29 Chandler CarruthTeach the AllocaPromoter which is wrapped around the...
2013-07-28 Chandler CarruthTemporarily revert r187323 until I update SSAUpdater...
2013-07-28 Chandler CarruthNow that mem2reg understands how to cope with a slightl...
2013-07-28 Chandler CarruthThread DataLayout through the callers and into mem2reg...
2013-07-27 Chandler CarruthDon't use all the #ifdefs to hide the stats counters...
2013-07-24 Chandler CarruthFix a problem I introduced in r187029 where we would...
2013-07-24 Chandler CarruthFix PR16687 where we were incorrectly promoting an...
2013-07-22 Nick LewyckyRemove extraneous null statement. No functionality...
2013-07-22 Jakub StaszakOldPtr is llvm::Instruction. Remove unneeded cast<>.
2013-07-20 Benjamin KramerSROA: Microoptimization: Remove dead entries first...
2013-07-19 Chandler CarruthCleanup the stats counters for the new implementation...
2013-07-19 Chandler CarruthFix another assert failure very similar to PR16651...
2013-07-19 Chandler CarruthTry to move to a more reasonable set of naming conventi...
2013-07-19 Chandler CarruthA long overdue cleanup in SROA to use 'DL' instead...
2013-07-19 Chandler CarruthFix PR16651, an assert introduced in my recent re-work...
2013-07-18 Chandler CarruthReapply r186316 with a fix for one bug where the code...
2013-07-15 Chandler CarruthRevert r186316 while I track down an ASan failure and...
2013-07-15 Chandler CarruthReimplement SROA yet again. Same fundamental principle...
2013-07-03 Craig TopperUse SmallVectorImpl::iterator/const_iterator instead...
2013-06-25 Bob WilsonFix SROA to avoid unnecessary scalar conversions for...
2013-05-01 Nadav RotemSROA: Generate selects instead of shuffles when blendin...
2013-04-21 Benjamin KramerSROA: Don't crash on a select with two identical operands.
2013-04-07 Chandler CarruthFix PR15674 (and PR15603): a SROA think-o.
2013-03-24 Jakub StaszakMinor cleanups. No functionality change.
2013-03-21 Chandler Carruth[SROA] Prefix names using a custom IRBuilder inserter.
2013-03-20 Chandler CarruthFix a silly search-and-replace goof with r177495 that...
2013-03-20 Chandler Carruth[SROA] Don't preserve the IR names in release builds.
2013-03-20 Chandler CarruthMove the endif to the correct line so we don't have...
2013-03-20 Chandler CarruthIntroduce some new statistics to help track the exact...
2013-03-18 Chandler CarruthMark internal classes as POD-like to get better behavio...
2013-03-14 Chandler CarruthPR14972: SROA vs. GVN exposed a really bad bug in SROA.
2013-03-07 Jakub StaszakKeep coding stanard.
2013-03-07 Jakub StaszakDon't create IRBuilder if we can return from the method...
2013-02-19 Jakub StaszakRemove unused variable.
2013-02-19 Jakub StaszakMinor cleanups. No functionality change.
2013-02-19 Jakub StaszakRemove unneeded #includes.
2013-02-19 Jakub StaszakFix typos.
2013-01-29 Edwin VaneFixing warnings revealed by gcc release build
2013-01-02 Chandler CarruthMove all of the header files which are involved in...
2013-01-01 Benjamin KramerAdd IRBuilder::CreateVectorSplat and use it to simplify...
next