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
/
IndVarSimplify.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Re-apply 70645, converting ScalarEvolution to use
Dan Gohman
2009-05-04
1
-2
/
+0
*
Revert r70645 for now; it's causing a variety of regressions.
Dan Gohman
2009-05-03
1
-0
/
+2
*
Convert ScalarEvolution to use CallbackVH for its internal map. This
Dan Gohman
2009-05-02
1
-2
/
+0
*
Remove an obsolete comment.
Dan Gohman
2009-04-27
1
-5
/
+3
*
Fix PR 4086, a bug in FP IV elimination.
Dale Johannesen
2009-04-27
1
-2
/
+4
*
Change SCEVExpander's expandCodeFor to provide more flexibility
Dan Gohman
2009-04-23
1
-15
/
+12
*
Make sure both operands have binary instructions have the same type.
Evan Cheng
2009-04-22
1
-11
/
+23
*
A few more places where the check of use_empty is needed.
Evan Cheng
2009-04-22
1
-0
/
+3
*
Avoid deferencing use_begin() if value does not have a use.
Evan Cheng
2009-04-22
1
-0
/
+1
*
Introduce encapsulation for ScalarEvolution's TargetData object, and refactor
Dan Gohman
2009-04-21
1
-20
/
+20
*
Use more const qualifiers with SCEV interfaces.
Dan Gohman
2009-04-18
1
-4
/
+5
*
Expand GEPs in ScalarEvolution expressions. SCEV expressions can now
Dan Gohman
2009-04-16
1
-122
/
+35
*
Eliminate zext over (iv | const) or (signed iv),
Dale Johannesen
2009-04-15
1
-22
/
+77
*
Eliminate zext over (iv & const) or ((iv+const)&const)
Dale Johannesen
2009-04-15
1
-31
/
+89
*
Enhance induction variable code to remove the
Dale Johannesen
2009-04-15
1
-40
/
+121
*
Rename ScalarEvolution's getIterationCount to getBackedgeTakenCount,
Dan Gohman
2009-02-24
1
-36
/
+35
*
Back out the change in 64918 that used sign-extensions when promoting
Dan Gohman
2009-02-23
1
-34
/
+12
*
IndVarSimplify preserves ScalarEvolution. In the
Dan Gohman
2009-02-23
1
-0
/
+1
*
Use a sign-extend instead of a zero-extend when promoting a
Dan Gohman
2009-02-18
1
-15
/
+39
*
Simplify by using dyn_cast instead of isa and cast.
Dan Gohman
2009-02-18
1
-6
/
+5
*
Fix a corner case in the new indvars promotion logic: if there
Dan Gohman
2009-02-18
1
-19
/
+25
*
Add a method to ScalarEvolution for telling it when a loop has been
Dan Gohman
2009-02-17
1
-9
/
+16
*
Delete trailing whitespace.
Dan Gohman
2009-02-17
1
-34
/
+34
*
Fix 80-column violation.
Dan Gohman
2009-02-17
1
-1
/
+2
*
Simplify; fix some 80-column violations.
Dan Gohman
2009-02-17
1
-6
/
+7
*
Delete this long-commented-out code. The situation it seems to have
Dan Gohman
2009-02-16
1
-26
/
+0
*
Extend the IndVarSimplify support for promoting induction variables:
Dan Gohman
2009-02-14
1
-44
/
+134
*
Clarify debug output.
Dan Gohman
2009-02-14
1
-1
/
+1
*
Simplify some code. hasComputableLoopEvolution is overkill in this case.
Dan Gohman
2009-02-14
1
-9
/
+8
*
Teach IndVarSimplify to optimize code using the C "int" type for
Dan Gohman
2009-02-12
1
-226
/
+200
*
Revert r60042. IndVarSimplify should check if APFloat is PPCDoubleDouble firs...
Evan Cheng
2008-11-26
1
-0
/
+2
*
Cast to remove warning about comparing signed and unsigned.
Bill Wendling
2008-11-18
1
-1
/
+1
*
Give SIToFPInst preference over UIToFPInst because it is faster on platforms ...
Devang Patel
2008-11-18
1
-3
/
+20
*
While handling floating point IVs lift restrictions on initial value and incr...
Devang Patel
2008-11-17
1
-25
/
+42
*
Handle floating point ivs during doInitialization().
Devang Patel
2008-11-17
1
-144
/
+130
*
eliminate some std::set's.
Chris Lattner
2008-11-16
1
-9
/
+10
*
Turn floating point IVs into integer IVs where possible.
Devang Patel
2008-11-03
1
-0
/
+150
*
Change create*Pass factory functions to return Pass* instead of
Daniel Dunbar
2008-10-22
1
-1
/
+1
*
fix white spaces.
Devang Patel
2008-09-10
1
-5
/
+5
*
if loop induction variable is always sign or zero extended then
Devang Patel
2008-09-09
1
-1
/
+118
*
Remove unused map.
Devang Patel
2008-09-05
1
-1
/
+0
*
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-09-04
1
-1
/
+1
*
Pass the computed iteration count value to RewriteLoopExitValues
Dan Gohman
2008-08-05
1
-4
/
+4
*
Use Loop::block_iterator.
Dan Gohman
2008-06-22
1
-3
/
+5
*
Use recently added getTruncateOrZeroExtend method to make the code shorter.
Wojciech Matyjewicz
2008-06-13
1
-5
/
+1
*
Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places to
Dan Gohman
2008-05-23
1
-4
/
+2
*
API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac...
Gabor Greif
2008-05-16
1
-1
/
+1
*
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-05-13
1
-3
/
+4
*
API changes for class Use size reduction, wave 1.
Gabor Greif
2008-04-06
1
-5
/
+5
*
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-29
1
-2
/
+2
[prev]
[next]