index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
ScalarEvolution.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
SCEV: Make the final add of an inbounds GEP nuw if we know that the index is ...
Benjamin Kramer
2013-10-28
1
-4
/
+9
*
Clarify SCEV comments.
Andrew Trick
2013-10-22
1
-8
/
+11
*
Use more type helper functions
Matt Arsenault
2013-10-21
1
-1
/
+1
*
Fix creating bitcasts between address spaces in SCEV.
Matt Arsenault
2013-10-21
1
-5
/
+10
*
Remove unused SCEV functions
Matt Arsenault
2013-10-21
1
-20
/
+1
*
SCEV should use NSW to get trip count for positive nonunit stride loops.
Andrew Trick
2013-10-18
1
-18
/
+21
*
Minor code simplification
Matt Arsenault
2013-09-27
1
-11
/
+8
*
Teach ScalarEvolution about pointer address spaces
Matt Arsenault
2013-09-10
1
-11
/
+17
*
Fix a severe compile time problem when forming large SCEV expressions.
Andrew Trick
2013-07-31
1
-0
/
+3
*
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
1
-1
/
+1
*
Don't use a potentially expensive shift if all we want is one set bit.
Benjamin Kramer
2013-07-11
1
-3
/
+3
*
Don't crash in SE dealing with ashr x, -1
Hal Finkel
2013-07-09
1
-1
/
+1
*
Fix a SCEV update problem.
Shuxin Yang
2013-07-08
1
-2
/
+40
*
Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...
Craig Topper
2013-07-03
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
*
Fix ScalarEvolution::ComputeExitLimitFromCond for 'or' conditions.
Andrew Trick
2013-05-31
1
-32
/
+54
*
Fix SCEV forgetMemoizedResults should search and destroy backedge exprs.
Andrew Trick
2013-03-26
1
-0
/
+30
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-8
/
+8
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-12
/
+13
*
Follow up to 168711: It's safe to base this analysis on the found compare, ju...
Benjamin Kramer
2012-11-29
1
-4
/
+3
*
Improve isImpliedCond comment a bit.
Andrew Trick
2012-11-29
1
-2
/
+2
*
SCEV: Even if the latch terminator is foldable we can't deduce the result of ...
Benjamin Kramer
2012-11-27
1
-3
/
+4
*
Revert the series of commits starting with r166578 which introduced the
Chandler Carruth
2012-11-01
1
-7
/
+8
*
SCEV validator: Ignore CouldNotCompute/undef on both sides. This is mostly no...
Benjamin Kramer
2012-10-27
1
-3
/
+6
*
SCEV validator: Add workarounds for some common false positives due to the wa...
Benjamin Kramer
2012-10-27
1
-0
/
+18
*
Add a basic verifier for SCEV's backedge taken counts.
Benjamin Kramer
2012-10-26
1
-0
/
+68
*
getSmallConstantTripMultiple should never return zero.
Hal Finkel
2012-10-24
1
-2
/
+5
*
Add in support for getIntPtrType to get the pointer type based on the address...
Micah Villmow
2012-10-24
1
-8
/
+7
*
Move TargetData to DataLayout.
Micah Villmow
2012-10-08
1
-8
/
+8
*
Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...
Sylvestre Ledru
2012-09-27
1
-2
/
+2
*
Fix a typo 'iff' => 'if'
Sylvestre Ledru
2012-09-27
1
-2
/
+2
*
Release build: guard dump functions with
Manman Ren
2012-09-12
1
-1
/
+1
*
Release build: guard dump functions with "ifndef NDEBUG"
Manman Ren
2012-09-06
1
-0
/
+2
*
Stay rational; don't assert trying to take the square root of a negative value.
Nick Lewycky
2012-08-01
1
-0
/
+6
*
Factor SCEV traversal code so I can use it elsewhere. No functionality.
Andrew Trick
2012-07-13
1
-51
/
+19
*
Delete code for folding undefs in ScalarEvolution. It's invalid in
Dan Gohman
2012-07-09
1
-14
/
+0
*
Reduce use list thrashing by using DenseMap's find_as for maps with ValueHand...
Benjamin Kramer
2012-06-30
1
-6
/
+8
*
If the step value is a constant zero, the loop isn't going to terminate. Fixes
Nick Lewycky
2012-06-28
1
-1
/
+1
*
Fix typos found by http://github.com/lyda/misspell-check
Benjamin Kramer
2012-06-02
1
-1
/
+1
*
Make sure that we're dealing with a binary SCEVExpr when simplifying.
Benjamin Kramer
2012-05-30
1
-1
/
+2
*
Teach SCEV's icmp simplification logic that a-b == 0 is equivalent to a == b.
Benjamin Kramer
2012-05-30
1
-1
/
+20
*
SCEV: Handle a corner case reducing AddRecExpr * AddRecExpr
Andrew Trick
2012-05-30
1
-1
/
+4
*
Reformat the loop that does AddRecExpr * AddRecExpr reduction.
Andrew Trick
2012-05-30
1
-55
/
+56
*
SCEV: Add MarkPendingLoopPredicates to avoid recursive isImpliedCond.
Andrew Trick
2012-05-19
1
-0
/
+24
*
reuse the result of some expensive computations in getSignExtendExpr() and ge...
Nuno Lopes
2012-05-15
1
-18
/
+20
*
minor simplification to code: Ty is already a SCEV type; don't need to run ge...
Nuno Lopes
2012-05-15
1
-6
/
+3
*
Rewrite ScalarEvolution::hasOperand to use an explicit worklist instead
Dan Gohman
2012-05-10
1
-35
/
+50
*
Revert "SCEV: When expanding a GEP the final addition to the base pointer has...
Benjamin Kramer
2012-04-17
1
-1
/
+1
[next]