| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix an oversight in isPotentiallyReachable where we wouldn't do any CFG-walking | Nick Lewycky | 2013-08-13 | 1 | -53/+70 |
* | Slightly simplify code with helper functions | Matt Arsenault | 2013-08-12 | 1 | -14/+16 |
* | Add some braces, and spaces around operators | Matt Arsenault | 2013-08-12 | 1 | -26/+42 |
* | Teach ValueTracking about address spaces | Matt Arsenault | 2013-08-10 | 1 | -8/+12 |
* | Disable inlining between sanitized and non-sanitized functions. | Evgeniy Stepanov | 2013-08-08 | 1 | -5/+23 |
* | Add ISD::FROUND for libm round() | Hal Finkel | 2013-08-07 | 1 | -0/+1 |
* | Remove extraneous semicolon. | Jakub Staszak | 2013-08-06 | 1 | -1/+1 |
* | Minor address space code simplification. | Matt Arsenault | 2013-08-03 | 1 | -9/+3 |
* | Teach InstructionSimplify about pointer address spaces | Matt Arsenault | 2013-08-02 | 1 | -4/+9 |
* | Fix a severe compile time problem when forming large SCEV expressions. | Andrew Trick | 2013-07-31 | 1 | -0/+3 |
* | isKnownToBeAPowerOfTwo: Strengthen isKnownToBeAPowerOfTwo's analysis on add i... | David Majnemer | 2013-07-30 | 1 | -16/+30 |
* | Also update CMakeLists.txt for r187283. | Nick Lewycky | 2013-07-27 | 1 | -0/+1 |
* | Reimplement isPotentiallyReachable to make nocapture deduction much stronger. | Nick Lewycky | 2013-07-27 | 2 | -22/+230 |
* | SimplifyCFG: Use parallel-and and parallel-or mode to consolidate branch cond... | Tom Stellard | 2013-07-27 | 1 | -0/+6 |
* | Treat nothrow forms of ::operator delete and ::operator delete[] as | Richard Smith | 2013-07-21 | 1 | -4/+10 |
* | Comment: try to clarify loop iteration order. | Andrew Trick | 2013-07-20 | 1 | -0/+4 |
* | Have InlineCost check constant fcmps | Matt Arsenault | 2013-07-20 | 1 | -4/+8 |
* | Give 'hasPath' a longer but clearer name 'isPotentiallyReachable'. Also expand | Nick Lewycky | 2013-07-18 | 1 | -5/+7 |
* | Add 'const' qualifiers to static const char* variables. | Craig Topper | 2013-07-16 | 1 | -1/+1 |
* | Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s... | Craig Topper | 2013-07-14 | 3 | -5/+5 |
* | Remove a bunch of old SCEVExpander FIXME's for preserving NoWrap. | Andrew Trick | 2013-07-14 | 1 | -17/+11 |
* | Teach indvars to generate nsw/nuw flags when widening an induction variable. | Andrew Trick | 2013-07-14 | 1 | -1/+6 |
* | Fix logic error optimizing "icmp pred (urem X, Y), Y" where pred is signed. | Nick Lewycky | 2013-07-12 | 1 | -4/+7 |
* | TargetTransformInfo: address calculation parameter for gather/scather | Arnold Schwaighofer | 2013-07-12 | 1 | -3/+4 |
* | Stylistic change. | Shuxin Yang | 2013-07-12 | 1 | -2/+2 |
* | Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s... | Craig Topper | 2013-07-11 | 3 | -3/+3 |
* | Don't use a potentially expensive shift if all we want is one set bit. | Benjamin Kramer | 2013-07-11 | 1 | -3/+3 |
* | Fix indentation. No functional change. | Craig Topper | 2013-07-11 | 1 | -8/+8 |
* | InstSimplify: X >> X -> 0 | David Majnemer | 2013-07-09 | 1 | -0/+8 |
* | Don't crash in SE dealing with ashr x, -1 | Hal Finkel | 2013-07-09 | 1 | -1/+1 |
* | ValueTracking: Fix bugs in isKnownToBeAPowerOfTwo | David Majnemer | 2013-07-09 | 1 | -6/+4 |
* | Fix a SCEV update problem. | Shuxin Yang | 2013-07-08 | 1 | -2/+40 |
* | Eliminate trivial redundant loads across nocapture+readonly calls to uncaptured | Nick Lewycky | 2013-07-07 | 1 | -4/+11 |
* | isKnownToBeAPowerOfTwo: Fix a typo in a comment | David Majnemer | 2013-07-06 | 1 | -1/+1 |
* | Extend 'readonly' and 'readnone' to work on function arguments as well as | Nick Lewycky | 2013-07-06 | 1 | -4/+4 |
* | Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ... | Craig Topper | 2013-07-04 | 3 | -18/+18 |
* | Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ... | Craig Topper | 2013-07-03 | 1 | -1/+1 |
* | ValueTracking: Teach isKnownToBeAPowerOfTwo about (ADD X, (XOR X, Y)) where X... | David Majnemer | 2013-06-29 | 1 | -10/+18 |
* | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185187 91177308-0d34... | Preston Briggs | 2013-06-28 | 1 | -0/+5 |
* | Added support for the Builtin attribute. | Michael Gottesman | 2013-06-27 | 1 | -1/+1 |
* | BlockFrequency: Bump up the entry frequency a bit. | Benjamin Kramer | 2013-06-25 | 1 | -5/+0 |
* | Fix xemacs mode line, don't put them in .cpp files (just header files). No | Nick Lewycky | 2013-06-10 | 1 | -1/+1 |
* | Silencing an MSVC warning about */ being found outside of a comment. | Aaron Ballman | 2013-06-04 | 1 | -2/+2 |
* | Prevent loop-unroll from making assumptions about undefined behavior. | Andrew Trick | 2013-05-31 | 1 | -5/+14 |
* | Loop Strength Reduce: Scaling factor cost. | Quentin Colombet | 2013-05-31 | 1 | -0/+17 |
* | Fix ScalarEvolution::ComputeExitLimitFromCond for 'or' conditions. | Andrew Trick | 2013-05-31 | 1 | -32/+54 |
* | Add support for llvm.vectorizer metadata | Paul Redmond | 2013-05-28 | 1 | -6/+57 |
* | Make BasicAliasAnalysis recognize the fact a noalias argument cannot alias an... | Michael Kuperstein | 2013-05-28 | 2 | -4/+24 |
* | Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros. | Michael J. Spencer | 2013-05-24 | 1 | -6/+6 |
* | Do not reserve space for the ColdEdges and NormalEdges vectors. | Diego Novillo | 2013-05-24 | 1 | -2/+0 |