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
/
Transforms
/
Scalar
/
LoopStrengthReduce.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
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
*
When LSR is replacing an instruction, call
Dan Gohman
2008-05-21
1
-7
/
+10
*
Refine the fix in r51169 to only apply when the operand val being
Dan Gohman
2008-05-20
1
-3
/
+4
*
Fix a bug in LoopStrengthReduce that caused it to emit IR with
Dan Gohman
2008-05-15
1
-3
/
+21
*
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-05-13
1
-2
/
+4
*
Minor whitespace and comment cleanups.
Dan Gohman
2008-04-14
1
-3
/
+3
*
API changes for class Use size reduction, wave 1.
Gabor Greif
2008-04-06
1
-1
/
+1
*
Remove dead options.
Evan Cheng
2008-03-19
1
-13
/
+3
*
Use empty() instead of comparing size() with zero.
Dan Gohman
2008-01-29
1
-1
/
+1
*
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-29
1
-2
/
+2
*
Clean up previous patch: PHI uses should not prevent iv reuse if all other us...
Evan Cheng
2007-12-20
1
-35
/
+16
*
Allow iv reuse if the user is a PHI node which is in turn used as addresses.
Evan Cheng
2007-12-19
1
-29
/
+82
*
Remove indeterminism from a loop. We think this will
Dale Johannesen
2007-11-17
1
-2
/
+6
*
At end of LSR, replace uses of now constant (as result of SplitCriticalEdge) ...
Evan Cheng
2007-10-30
1
-9
/
+33
*
It's not safe to tell SplitCriticalEdge to merge identical edges. It may dele...
Evan Cheng
2007-10-30
1
-11
/
+9
*
- Bug fixes.
Evan Cheng
2007-10-29
1
-10
/
+38
*
Update a comment to reflect the current code.
Dan Gohman
2007-10-29
1
-2
/
+2
*
Remove an unused function argument.
Dan Gohman
2007-10-29
1
-6
/
+6
*
Fix a typo in a comment.
Dan Gohman
2007-10-29
1
-1
/
+1
*
Avoid calling ValidStride when not all uses are addresses.
Dan Gohman
2007-10-29
1
-6
/
+5
[next]