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
*
Formatting and comment tweaks.
Duncan Sands
2011-02-09
1
-5
/
+5
*
Teach instsimplify some tricks about exact/nuw/nsw shifts.
Chris Lattner
2011-02-09
1
-39
/
+69
*
Rework InstrTypes.h so to reduce the repetition around the NSW/NUW/Exact
Chris Lattner
2011-02-09
1
-2
/
+2
*
Add an m_Div pattern for matching either a udiv or an sdiv and use it
Duncan Sands
2011-02-07
1
-4
/
+2
*
teach instsimplify to transform (X / Y) * Y to X
Chris Lattner
2011-02-06
1
-3
/
+5
*
Remove premature optimization that avoided calculating argument weights
Eric Christopher
2011-02-06
1
-5
/
+0
*
Simplify test, as suggested by Chris.
Anders Carlsson
2011-02-06
1
-6
/
+2
*
When loading from a constant, fold inttoptr if the integer type and the resul...
Anders Carlsson
2011-02-06
1
-0
/
+11
*
Fix another warning.
Anders Carlsson
2011-02-05
1
-1
/
+1
*
Fix cut and paste error spotted by Jakob.
Eric Christopher
2011-02-05
1
-1
/
+1
*
Rewrite how the indirect call bonus is handled. This now works by:
Eric Christopher
2011-02-05
1
-78
/
+125
*
Improve threading of comparisons over select instructions (spotted by my
Duncan Sands
2011-02-03
1
-3
/
+25
*
Fix typo in comment.
Devang Patel
2011-02-03
1
-1
/
+1
*
Add support to describe template value parameter in debug info.
Devang Patel
2011-02-02
2
-0
/
+27
*
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
[next]