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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Add support to describe template parameter type in debug info.
Devang Patel
2011-02-02
2
-2
/
+28
*
Reenable the transform "(X*Y)/Y->X" when the multiplication is known not to
Duncan Sands
2011-02-02
1
-5
/
+5
*
Add a m_Undef pattern for convenience. This is so that code that uses
Duncan Sands
2011-02-01
1
-16
/
+16
*
Add a m_SignBit pattern for convenience.
Duncan Sands
2011-02-01
1
-3
/
+1
*
Have m_One also match constant vectors for which every element is 1.
Duncan Sands
2011-02-01
1
-6
/
+0
*
Reapply 124275 since the Dragonegg failure was unreproducible.
Eric Christopher
2011-02-01
1
-82
/
+85
*
Commit 124487 broke 254.gap. See if disabling the part that might be triggered
Duncan Sands
2011-01-30
1
-5
/
+5
*
Transform (X/Y)*Y into X if the division is exact. Instcombine already knows...
Duncan Sands
2011-01-30
1
-0
/
+9
*
Fix comment.
Nick Lewycky
2011-01-29
1
-1
/
+1
*
Move InstCombine's knowledge of fdiv to SimplifyInstruction().
Frits van Bommel
2011-01-29
1
-2
/
+24
*
Fix typo: should have been testing that X was odd, not V.
Duncan Sands
2011-01-29
1
-3
/
+3
*
Implementation of path profiling.
Andrew Trick
2011-01-29
5
-3
/
+1176
*
This dyn_cast should be a cast. Pointed out by Frits van Bommel.
Duncan Sands
2011-01-28
1
-1
/
+1
*
Thread divisions over selects and phis. This doesn't fire much and has basic...
Duncan Sands
2011-01-28
1
-9
/
+19
*
My auto-simplifier noticed that ((X/Y)*Y)/Y occurs several times in SPEC
Duncan Sands
2011-01-28
1
-0
/
+107
*
Temporarily revert 124275 to see if it brings the dragonegg buildbot back.
Eric Christopher
2011-01-26
1
-85
/
+82
*
APInt has a method for determining whether a number is a power of 2
Duncan Sands
2011-01-26
1
-1
/
+1
*
Fix memory corruption. If one of the SCEV creation functions calls another but
Nick Lewycky
2011-01-26
1
-0
/
+2
*
Separate out the constant bonus from the size reduction metrics. Rework
Eric Christopher
2011-01-26
1
-82
/
+85
*
Coding style formatting changes.
Eric Christopher
2011-01-26
1
-7
/
+2
*
In which I discover that zero+zero is zero, d'oh!
Duncan Sands
2011-01-25
1
-3
/
+3
*
See if this fixes llvm-gcc bootstrap.
Duncan Sands
2011-01-25
1
-1
/
+2
*
According to my auto-simplifier the most common missed simplifications in
Duncan Sands
2011-01-25
2
-13
/
+228
*
Reorganize this so that the early exit and special cases come early
Eric Christopher
2011-01-25
1
-26
/
+26
*
Give GetUnderlyingObject a TargetData, to keep it in sync
Dan Gohman
2011-01-24
5
-11
/
+13
*
fix PR8928 by clearing a stale map, patch by Jakub Staszak!
Chris Lattner
2011-01-24
1
-0
/
+1
*
Add a comment.
Dan Gohman
2011-01-24
1
-0
/
+1
*
Simplify some code with no functionality change. Make the test a lot more
Nick Lewycky
2011-01-23
1
-12
/
+4
*
Null initialize a few variables flagged by
Ted Kremenek
2011-01-23
1
-1
/
+1
*
Use value ranges to fold ext(trunc) in SCEV when possible.
Nick Lewycky
2011-01-23
1
-0
/
+34
*
Have SCEV turn sext(x) into zext(x) when x is s>= 0. This applies many times in
Nick Lewycky
2011-01-22
1
-0
/
+4
*
Add a FIXME explaining the move to a single indirect call bonus per function
Eric Christopher
2011-01-22
1
-0
/
+5
*
Only apply the devirtualization bonus once instead of per-call site in the
Eric Christopher
2011-01-22
1
-2
/
+6
*
At -O123 the early-cse pass is run before instcombine has run. According to my
Duncan Sands
2011-01-20
1
-0
/
+162
*
Similarly, analyze truncate through multiply.
Nick Lewycky
2011-01-19
1
-0
/
+14
*
Add a missed SCEV fold that is required to continue analyzing the IR produced
Nick Lewycky
2011-01-19
1
-0
/
+14
*
Add a missing SCEV simplification sext(zext x) --> zext x.
Nick Lewycky
2011-01-19
1
-0
/
+4
*
Teach BasicAA to return PartialAlias in cases where both pointers
Dan Gohman
2011-01-18
1
-12
/
+35
*
For completeness, generalize the (X + Y) - Y -> X transform and add X - (X + ...
Duncan Sands
2011-01-18
1
-15
/
+57
*
Simplify (X<<1)-X into X. According to my auto-simplier this is the most com...
Duncan Sands
2011-01-18
1
-0
/
+6
*
Move DominanceFrontier from VMCore to Analysis.
Cameron Zwarich
2011-01-18
3
-0
/
+139
*
fix PR8983, a broken assertion.
Chris Lattner
2011-01-16
1
-1
/
+1
*
Teach LazyValueInfo that allocas aren't NULL. Over all of llvm-test, this saves
Nick Lewycky
2011-01-15
1
-5
/
+27
*
Turn X-(X-Y) into Y. According to my auto-simplifier this is the most common
Duncan Sands
2011-01-14
1
-1
/
+15
*
Factorize common code out of the InstructionSimplify shift logic. Add in
Duncan Sands
2011-01-14
1
-62
/
+38
*
Move some shift transforms out of instcombine and into InstructionSimplify.
Duncan Sands
2011-01-14
1
-0
/
+142
*
Add single entry / single exit accessors.
Tobias Grosser
2011-01-13
1
-23
/
+32
*
Remove some wrong code which fortunately was never executed (as explained in
Duncan Sands
2011-01-13
1
-6
/
+9
*
The most common simplification missed by instsimplify in unoptimized bitcode
Duncan Sands
2011-01-13
1
-19
/
+70
*
some comment improvements.
Chris Lattner
2011-01-11
1
-3
/
+4
[prev]
[next]