index
:
external_llvm
replicant-6.0
external/llvm
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
InstCombine
/
InstCombineAddSub.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add a generic expansion transform: A op (B op' C) -> (A op B) op' (A op C)
Duncan Sands
2010-12-22
1
-6
/
+8
*
Move Sub simplifications and additional Add simplifications out of
Duncan Sands
2010-12-15
1
-28
/
+4
*
Rename SimplifyDistributed to the more meaningfull name SimplifyByFactorizing.
Duncan Sands
2010-11-23
1
-2
/
+2
*
Exploit distributive laws (eg: And distributes over Or, Mul over Add, etc) in a
Duncan Sands
2010-11-23
1
-0
/
+5
*
InstCombine: Implement X - A*-B -> X + A*B.
Benjamin Kramer
2010-11-22
1
-0
/
+9
*
Generalize the reassociation transform in SimplifyCommutative (now renamed to
Duncan Sands
2010-11-13
1
-2
/
+2
*
Floating-point add, sub, and mul are now spelled fadd, fsub, and fmul,
Dan Gohman
2010-03-02
1
-3
/
+3
*
Uniformize the names of type predicates: rather than having isFloatTy and
Duncan Sands
2010-02-15
1
-6
/
+6
*
Simplify/generalize the xor+add->sign-extend instcombine.
Eli Friedman
2010-01-31
1
-35
/
+19
*
Add a small transform: transform -(X<<Y) to (-X<<Y) when the shift has a single
Eli Friedman
2010-01-31
1
-0
/
+7
*
When the visitSub method was split into visitSub and visitFSub, this xform was
Bill Wendling
2010-01-13
1
-11
/
+0
*
reduce indentation
Chris Lattner
2010-01-05
1
-15
/
+18
*
Convert a ton of simple integer type equality tests to the new predicate.
Benjamin Kramer
2010-01-05
1
-2
/
+2
*
split add/sub out to its own file. Eliminate use of
Chris Lattner
2010-01-05
1
-0
/
+748