Fix doc build: sublists require a blank line before/after.
[oota-llvm.git] / lib / Transforms /
2015-09-16 Sanjoy Das[InstCombine] Optimize icmp slt signum(x), 1 --> icmp...
2015-09-16 Sanjay Pateldon't repeat function names in comments; NFC
2015-09-16 Adhemerval Zanella[sanitizer] Add MSan support for AArch64
2015-09-16 David L KreitzerTest commit: Fixed a few typos in the comments.
2015-09-16 Michael Zolotukhin[Unroll] Fix a bug in UnrolledInstAnalyzer::visitLoad.
2015-09-15 Sanjoy Das[IndVars] Fix PR24783.
2015-09-15 Sanjoy Das[IndVars] Rename variable; NFC.
2015-09-15 Alexey Samsonov[ASan] Don't instrument globals in .preinit_array/...
2015-09-15 Larisse VoufoRevert "Clean up: Refactoring the hardcoded value of...
2015-09-15 Arch D. RobisonBroaden optimization of fcmp ([us]itofp x, constant...
2015-09-15 Igor Laevsky[CorrelatedValuePropagation] Infer nonnull attributes
2015-09-15 Marcello Maggioni[NaryReassociate] Add support for Mul instructions
2015-09-15 Sanjay Patelmore space; NFC
2015-09-15 James Molloy[GlobalsAA] Disable globals-aa by default
2015-09-15 Sanjoy Das[PlaceSafepoints] Make the width of a counted loop...
2015-09-14 David Blaikie[opaque pointer types] Switch a few cases of getElement...
2015-09-14 Chen Li[InstCombineCalls] Use isKnownNonNullAt() to check...
2015-09-14 David BlaikieRevert "[opaque pointer type] Pass GlobalAlias the...
2015-09-14 JF Bastien[MergeFuncs] Fix bug in merging GetElementPointers
2015-09-13 Chandler Carruth[FunctionAttrs] Move the malloc-like test to a static...
2015-09-13 Chandler Carruth[FunctionAttrs] Factor the logic to test for a known...
2015-09-13 Chandler Carruth[FunctionAttrs] Make the per-function attribute inferen...
2015-09-13 Chandler Carruth[FunctionAttrs] Collect utility functions as static...
2015-09-13 Chandler CarruthClean up doxygen comments in FunctionAttrs, promoting...
2015-09-13 Chandler CarruthDo some spring cleaning on FunctionAttrs.cpp with clang...
2015-09-12 Simon PilgrimFixed unused variable warning.
2015-09-12 Simon Pilgrim[InstCombine] CVTPH2PS Vector Demanded Elements + Const...
2015-09-12 Chandler Carruth[PM] Port SROA to the new pass manager.
2015-09-12 Larisse VoufoClean up: Refactoring the hardcoded value of 6 for...
2015-09-12 Bruce MitchenerFix typos.
2015-09-11 Sanjay Pateltypo; NFC
2015-09-11 Mehdi AminiRevert "[InstCombineCalls] Use isKnownNonNullAt() to...
2015-09-10 Chen Li[InstCombineCalls] Use isKnownNonNullAt() to check...
2015-09-10 Chen Li[InstCombineCalls] Use isKnownNonNullAt() to check...
2015-09-10 Filipe CabecinhasRemove gcc warning when comparing an unsigned var for...
2015-09-10 Matthew Simpson[LV] Relax Small Size Reduction Type Requirement
2015-09-10 JF Bastien[MergeFuncs] Fix callsite attributes in thunk generation
2015-09-10 Philip Reames[SimplifyCFG] Use known bits to eliminate dead switch...
2015-09-10 Hans WennborgRe-commit r247216: "Fix Clang-tidy misc-use-override...
2015-09-10 Sanjay Patel80-cols; NFC
2015-09-10 Sanjay Pateluse range-based for loop; NFCI
2015-09-10 Sanjay Pateluse range-based for loop; NFCI
2015-09-10 Sanjay Patelfix typo; NFC
2015-09-10 Jakub KuderskiThere is a trunc(lshr (zext A), Cst) optimization in...
2015-09-10 James MolloyEnable GlobalsAA by default
2015-09-10 James MolloyAdd GlobalsAA as preserved to a bunch of transforms
2015-09-10 Hans WennborgRevert r247216: "Fix Clang-tidy misc-use-override warni...
2015-09-10 Philip Reames[RewriteStatepointsForGC] Minor refactor to use shared...
2015-09-10 Philip Reames[RewriteStatepointsForGC] Strengthen a confusingly...
2015-09-10 Philip Reames[RewriteStatepointsForGC] One last bit of naming [NFCI]
2015-09-10 Philip Reames[RewriteStatepointsForGC] Further style/naming fixup...
2015-09-10 Hans WennborgFix Clang-tidy misc-use-override warnings, other minor...
2015-09-10 Philip Reames[RewriteStatepointsForGC] More naming cleanup [NFCI]
2015-09-09 Philip Reames[RewriteStatepointsForGC] Code cleanup [NFC]
2015-09-09 Philip Reames[RewriteStatepointsForGC] Extend base pointer inference...
2015-09-09 Philip Reames[RewriteStatepointsForGC] Make base pointer inference...
2015-09-09 Peter CollingbourneLowerBitSets: Fix non-determinism bug.
2015-09-09 David MajnemerRevert trunc(lshr (sext A), Cst) to ashr A, Cst
2015-09-09 Chandler Carruth[PM/AA] Rebuild LLVM's alias analysis infrastructure...
2015-09-09 Sanjay Pateldon't repeat function names in comments; NFC
2015-09-09 Sanjay Patelfunction names start with a lower case letter; NFC
2015-09-09 Sanjay Pateldon't repeat function names in comments; NFC
2015-09-09 James MolloyRename ExitCount to BackedgeTakenCount, because that...
2015-09-09 James MolloyDelay predication of stores until near the end of vecto...
2015-09-09 Chandler CarruthFix a typo I spotted when hacking on SROA. Somewhat...
2015-09-09 Sanjoy Das[IRCE] Add INITIALIZE_PASS_DEPENDENCY invocations.
2015-09-08 Peter CollingbourneRe-apply r247080 with order of evaluation fix.
2015-09-08 Peter CollingbourneRevert r247080, "LowerBitSets: Extend pass to support...
2015-09-08 Peter CollingbourneLowerBitSets: Extend pass to support functions as bitse...
2015-09-08 Sanjay Patelrefactor matches for De Morgan's Laws; NFCI
2015-09-08 Sanjay Patelremove function names from comments; NFC
2015-09-08 Jakub KuderskiThere is a trunc(lshr (zext A), Cst) optimization in...
2015-09-07 NAKAMURA TakumiPrune utf8 chars in comments.
2015-09-06 David Majnemer[InstCombine] Don't divide by zero when evaluating...
2015-09-05 David Majnemer[InstCombine] Don't assume m_Mul gives back an Instruction
2015-09-05 Craig TopperFix build warning.
2015-09-05 Andrew KaylorFix build warning
2015-09-04 Andrew KaylorFix build warning
2015-09-04 Andrew Kaylor[WinEH] Teach SimplfyCFG to eliminate empty cleanup...
2015-09-04 Yaron KerenRemove two unused includes and C++11 rangify for loops.
2015-09-03 Philip Reames[RewriteStatepointsForGC] Extract common code, comment...
2015-09-03 Philip Reames[RewriteStatepointsForGC] Strengthen invariants around...
2015-09-03 Philip Reames[RewriteStatepointsForGC] Workaround a lack of determin...
2015-09-03 Reid Kleckner[sancov] Disable sanitizer coverage on functions using SEH
2015-09-03 Joseph Tremoulet[WinEH] Add cleanupendpad instruction
2015-09-02 JF Bastien[MergeFuncs] Efficiently defer functions on merge
2015-09-02 Philip Reames[RewriteStatepointsForGC] Delete stale comment [NFC]
2015-09-02 Philip Reames[RewriteStatepointsForGC] Pull a function out of anon...
2015-09-02 Philip Reames[RewriteStatepointsForGC] Bugfix for change 246133
2015-09-02 Philip ReamesFix release build warning for unused function
2015-09-02 Philip Reames[RewriteStatepointsForGC] Improve debug output [NFC]
2015-09-02 Piotr Padlewskiassuem(X) handling in GVN bugfix
2015-09-02 Piotr PadlewskiConstant propagation after hitting assume(cmp) bugfix
2015-09-02 Piotr PadlewskiConstant propagation after hiting llvm.assume
2015-09-02 Benjamin Kramer[RemoveDuplicatePHINodes] Start over after removing...
2015-09-02 James Molloy[LV] Don't bail to MiddleBlock if a runtime check fails...
2015-09-02 James Molloy[LV] Move some code around slightly to make the intent...
2015-09-02 James Molloy[LV] Cleanup: Sink an IRBuilder closer to its uses.
2015-09-02 James Molloy[LV] Refactor all runtime check emissions into helper...
2015-09-02 James Molloy[LV] Pull creation of trip counts into a helper function.
next