index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Transforms
/
Scalar
/
LoopStrengthReduce.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Clarify that the scale factor from CheckForIVReuse
Dale Johannesen
2008-12-16
1
-11
/
+26
*
Fix a really subtle off-by-one bug that Duncan noticed with valgrind
Chris Lattner
2008-12-09
1
-1
/
+1
*
Make LoopStrengthReduce smarter about hoisting things out of
Dale Johannesen
2008-12-05
1
-57
/
+127
*
Remove an unused field.
Dale Johannesen
2008-12-03
1
-8
/
+1
*
Fix a misspelled function name.
Dale Johannesen
2008-12-03
1
-4
/
+4
*
Fix a really wrong comment.
Dale Johannesen
2008-12-03
1
-1
/
+1
*
Minor rewrite per review feedback.
Dale Johannesen
2008-12-02
1
-8
/
+7
*
Make the code do what the comment says it does.
Dale Johannesen
2008-12-02
1
-4
/
+5
*
some random comment improvements.
Chris Lattner
2008-12-02
1
-11
/
+22
*
Consider only references to an IV within the loop when
Dale Johannesen
2008-12-01
1
-6
/
+26
*
Introduce a new array_pod_sort function and switch LSR to use it
Chris Lattner
2008-12-01
1
-1
/
+1
*
Eliminate use of setvector for the DeadInsts set, just use a smallvector.
Chris Lattner
2008-12-01
1
-17
/
+31
*
DeleteTriviallyDeadInstructions is always passed the
Chris Lattner
2008-12-01
1
-10
/
+9
*
simplify DeleteTriviallyDeadInstructions again, unlike my previous
Chris Lattner
2008-12-01
1
-20
/
+13
*
Temporarily revert r60195. It's causing an optimized bootstrap of llvm-gcc to...
Bill Wendling
2008-11-29
1
-20
/
+21
*
Simplify LoopStrengthReduce::DeleteTriviallyDeadInstructions by
Chris Lattner
2008-11-27
1
-21
/
+20
*
use continue to reduce indentation
Chris Lattner
2008-11-27
1
-18
/
+19
*
Change create*Pass factory functions to return Pass* instead of
Daniel Dunbar
2008-10-22
1
-1
/
+1
*
Call ScalarEvolution's deleteValueFromRecords before deleting an
Dan Gohman
2008-10-01
1
-3
/
+3
*
Teach LSR to optimize away SMAX operations for tripcounts in common
Dan Gohman
2008-09-15
1
-0
/
+127
*
fix overflow check.
Devang Patel
2008-09-09
1
-2
/
+1
*
Remove unused counter.
Devang Patel
2008-09-08
1
-1
/
+0
*
Remove OptimizeIVType()
Devang Patel
2008-09-08
1
-206
/
+0
*
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-09-04
1
-1
/
+1
*
Add additional check to ensure that iv is canonicalized.
Devang Patel
2008-09-03
1
-0
/
+1
*
Check iteration count.
Devang Patel
2008-09-03
1
-0
/
+4
*
While removing PHI, use basicblock to identify incoming value.
Devang Patel
2008-09-03
1
-2
/
+3
*
If all IV uses are extending integer IV then change the type of IV itself, if...
Devang Patel
2008-09-02
1
-0
/
+201
*
Do not apply the transformation if the target does not support DestTy natively.
Devang Patel
2008-08-27
1
-2
/
+9
*
Fix typos and whitespaces. Other cosmetic changes based on feedback.
Devang Patel
2008-08-27
1
-12
/
+9
*
If IV is used in a int-to-float cast inside the loop then try to eliminate th...
Devang Patel
2008-08-26
1
-2
/
+118
*
Revert 54821. It's miscompiling 252.eon and 447.dealII
Evan Cheng
2008-08-17
1
-118
/
+1
*
Reapply 54786. Add overflow and number of mantissa bits checks.
Devang Patel
2008-08-15
1
-1
/
+118
*
Revert 54786. It's not checking for overflows, etc.
Evan Cheng
2008-08-15
1
-101
/
+0
*
If IV is used in a int-to-float cast inside the loop then try to eliminate th...
Devang Patel
2008-08-14
1
-0
/
+101
*
Rename. s/FindIVForUser/FindIVUserForCond/g
Devang Patel
2008-08-13
1
-4
/
+4
*
Check sign to detect overflow before changing compare stride.
Devang Patel
2008-08-13
1
-1
/
+8
*
Fix PR2355: bug in ChangeCompareStride. When the loop termination compare is ...
Evan Cheng
2008-08-06
1
-2
/
+2
*
Fix a bug in LSR's dead-PHI cleanup. If a PHI has a def-use chain that
Dan Gohman
2008-07-21
1
-0
/
+5
*
Fix uninitialized use of the Changed variable.
Dan Gohman
2008-07-14
1
-0
/
+2
*
Fix two serious LSR bugs.
Evan Cheng
2008-07-07
1
-37
/
+37
*
Fix spelling and grammar in a comment.
Dan Gohman
2008-06-23
1
-2
/
+2
*
Improve LSR's dead-phi detection to handle use-def cycles
Dan Gohman
2008-06-22
1
-20
/
+17
*
Move LSR's private isZero function to a public SCEV member
Dan Gohman
2008-06-18
1
-17
/
+7
*
Refine the change in r52258 for avoiding use-before-def conditions
Dan Gohman
2008-06-16
1
-9
/
+12
*
Switch over to SetVector to ensure same order of iterations do not vary acros...
Evan Cheng
2008-06-16
1
-8
/
+9
*
Iterating over SmallPtrSet is not deterministic.
Evan Cheng
2008-06-16
1
-6
/
+6
*
Protect ChangeCompareStride from situations in which it is possible
Dan Gohman
2008-06-13
1
-3
/
+12
*
op_iterator-ify some loops, fix 80col violations
Gabor Greif
2008-06-11
1
-9
/
+11
*
Remove x86.sse2.loadh.pd and x86.sse2.loadl.pd. These will be lowered into lo...
Evan Cheng
2008-05-24
1
-5
/
+0
[prev]
[next]