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
/
test
/
Transforms
/
Reassociate
Commit message (
Expand
)
Author
Age
Files
Lines
*
[opaque pointer type] Add textual IR support for explicit type parameter to l...
David Blaikie
2015-02-27
6
-36
/
+36
*
[opaque pointer type] Add textual IR support for explicit type parameter to g...
David Blaikie
2015-02-27
2
-2
/
+2
*
Reassociate: cannot negate a INT_MIN value
Mehdi Amini
2015-02-11
1
-0
/
+13
*
Fix Reassociate handling of constant in presence of undef float
Mehdi Amini
2015-01-16
1
-0
/
+25
*
Revert "[Reassociate] As the expression tree is rewritten make sure the opera...
Chad Rosier
2014-11-19
16
-54
/
+53
*
[Reassociate] Use test cases that can actually be optimized to verify optional
Chad Rosier
2014-11-18
1
-11
/
+12
*
[Reassociate] As the expression tree is rewritten make sure the operands are
Chad Rosier
2014-11-17
16
-46
/
+46
*
[Reassociate] Canonicalize constants to RHS operand.
Chad Rosier
2014-11-17
3
-6
/
+6
*
[Reassociate] Canonicalize the operands of all binary operators.
Chad Rosier
2014-11-14
2
-1
/
+20
*
[Reassociate] Canonicalize operands of vector binary operators.
Chad Rosier
2014-11-14
1
-2
/
+50
*
[Reassociate] Canonicalize constants to RHS operand.
Chad Rosier
2014-11-14
3
-7
/
+7
*
[Reassociate] Canonicalize negative constants out of expressions.
Chad Rosier
2014-11-11
1
-0
/
+48
*
[Reassociate] Canonicalize negative constants out of expressions.
Chad Rosier
2014-11-11
4
-73
/
+114
*
[Reassociate] Better preserve NSW/NUW flags.
Chad Rosier
2014-11-07
1
-0
/
+34
*
[Reassociate] Don't reassociate when mixing regular and fast-math FP
Chad Rosier
2014-11-06
1
-0
/
+18
*
Revert "[Reassociate] Canonicalize negative constants out of expressions."
Reid Kleckner
2014-11-04
3
-236
/
+70
*
[Reassociate] Canonicalize negative constants out of expressions.
Chad Rosier
2014-11-03
3
-70
/
+236
*
[Reassociate] Don't canonicalize X - undef to X + (-undef).
Chad Rosier
2014-10-09
1
-0
/
+21
*
Give the Reassociate pass a bit more flexibility and autonomy when optimizing...
Owen Anderson
2014-10-05
1
-0
/
+15
*
Reassociate x + -0.1234 * y into x - 0.1234 * y
Erik Verbruggen
2014-08-21
2
-1
/
+70
*
[Reassociation] Add support for reassociation with unsafe algebra.
Chad Rosier
2014-08-14
9
-0
/
+591
*
[Reassociate] FileCheckize and cleanup a few testcases. No functional change
Chad Rosier
2014-06-11
16
-230
/
+275
*
[Reassociate] Similar to "X + -X" -> "0", added code to handle "X + ~X" -> "-1".
Benjamin Kramer
2014-05-31
1
-0
/
+12
*
[tests] Cleanup initialization of test suffixes.
Daniel Dunbar
2013-08-16
1
-1
/
+0
*
Update Transforms tests to use CHECK-LABEL for easier debugging. No functiona...
Stephen Lin
2013-07-14
10
-60
/
+60
*
TBAA: remove !tbaa from testing cases if not used.
Manman Ren
2013-04-30
1
-24
/
+20
*
Fix a XOR reassociation bug.
Shuxin Yang
2013-04-27
1
-0
/
+27
*
Correct assertion condition
Shuxin Yang
2013-04-01
1
-0
/
+15
*
Implement XOR reassociation. It is based on following rules:
Shuxin Yang
2013-03-30
1
-0
/
+151
*
Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod...
Dmitri Gribenko
2012-12-30
1
-1
/
+1
*
Fix PR14060, an infinite loop in reassociate. The problem was that one of the
Duncan Sands
2012-11-18
1
-0
/
+19
*
Fix a crash observed by Shuxin Yang. The issue here is that LinearizeExprTree,
Duncan Sands
2012-11-15
1
-0
/
+9
*
revert r167740
Shuxin Yang
2012-11-13
2
-16
/
+3
*
This change is to fix rdar://12571717 which is about assertion in Reassociate...
Shuxin Yang
2012-11-12
2
-3
/
+16
*
Stop reassociate from looking through expressions of arbitrary complexity. This
Duncan Sands
2012-07-26
2
-0
/
+37
*
Convert all tests using TCL-style quoting to use shell-style quoting.
Chandler Carruth
2012-07-02
2
-2
/
+2
*
Fix a reassociate crash on sozefx when compiling with dragonegg+gcc-4.7 due to
Duncan Sands
2012-06-29
1
-0
/
+11
*
Some reassociate optimizations create new instructions, which they insert just
Duncan Sands
2012-06-27
1
-0
/
+14
*
Remove a dangling reference to a deleted instruction. Fixes PR13185!
Nick Lewycky
2012-06-24
1
-0
/
+11
*
Fix issues (infinite loop and/or crash) with self-referential instructions, for
Duncan Sands
2012-06-15
1
-0
/
+25
*
It is possible for several constants which aren't individually absorbing to
Duncan Sands
2012-06-13
1
-0
/
+11
*
Use std::map rather than SmallMap because SmallMap assumes that the value has
Duncan Sands
2012-06-12
2
-13
/
+16
*
Now that Reassociate's LinearizeExprTree can look through arbitrary expression
Duncan Sands
2012-06-12
1
-0
/
+252
*
Revert commit 158073 while waiting for a fix. The issue is that reassociate
Duncan Sands
2012-06-08
1
-0
/
+21
*
Grab-bag of reassociate tweaks. Unify handling of dead instructions and
Duncan Sands
2012-06-06
1
-4
/
+6
*
Since commit 157467, if reassociate isn't actually going to change an expression
Duncan Sands
2012-05-26
1
-0
/
+38
*
Make the reassociation pass more powerful so that it can handle expressions
Duncan Sands
2012-05-25
1
-1
/
+5
*
Calling ReassociateExpression recursively is extremely dangerous since it will
Duncan Sands
2012-05-08
2
-0
/
+110
*
Teach reassociate to commute FMul's and FAdd's in order to canonicalize the o...
Owen Anderson
2012-05-07
1
-0
/
+16
*
The value held in the vector may be RAUW'ed by some of the canonicalization
Bill Wendling
2012-05-02
1
-0
/
+50
[next]