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
/
Reassociate.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add intermediate subtract instructions to reassociation worklist.
Owen Anderson
2015-11-16
1
-9
/
+39
*
[ScalarOpts] Remove dead code.
Benjamin Kramer
2015-10-15
1
-14
/
+0
*
Scalar: Remove remaining ilist iterator implicit conversions
Duncan P. N. Exon Smith
2015-10-13
1
-8
/
+7
*
Add GlobalsAA as preserved to a bunch of transforms
James Molloy
2015-09-10
1
-0
/
+2
*
[IR] Give catchret an optional 'return value' operand
David Majnemer
2015-08-15
1
-0
/
+2
*
[Reassociation] Fix miscompile for va_arg arguments.
Quentin Colombet
2015-08-06
1
-22
/
+2
*
[Reassociate] Don't propogate flags when creating negations
David Majnemer
2015-06-24
1
-0
/
+10
*
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
2015-06-23
1
-2
/
+2
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
1
-2
/
+2
*
Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types
Benjamin Kramer
2015-05-29
1
-1
/
+1
*
[Reassociate] Canonicalizing 'x [+-] (-Constant * y)' isn't always a win
David Majnemer
2015-05-28
1
-35
/
+21
*
don't repeat function names in comments; NFC
Sanjay Patel
2015-04-22
1
-38
/
+31
*
Reapply "[Reassociate] Add initial support for vector instructions."
Robert Lougher
2015-03-13
1
-19
/
+15
*
Revert: "[Reassociate] Add initial support for vector instructions."
Robert Lougher
2015-03-13
1
-15
/
+19
*
[Reassociate] Add initial support for vector instructions.
Robert Lougher
2015-03-13
1
-19
/
+15
*
Reassociate: cannot negate a INT_MIN value
Mehdi Amini
2015-02-11
1
-1
/
+1
*
Fix Reassociate handling of constant in presence of undef float
Mehdi Amini
2015-01-16
1
-3
/
+6
*
[Reassociate] Use dbgs() instead of errs().
Chad Rosier
2014-12-12
1
-2
/
+2
*
This Reassociate change unintentionally slipped in r222499
David Majnemer
2014-11-21
1
-7
/
+0
*
SROA: The alloca type isn't a candidate promotion type for vectors
David Majnemer
2014-11-21
1
-0
/
+7
*
Revert "[Reassociate] As the expression tree is rewritten make sure the opera...
Chad Rosier
2014-11-19
1
-8
/
+7
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-4
/
+4
*
[Reassociate] Rename local variable to not use same name as a member
Chad Rosier
2014-11-18
1
-4
/
+4
*
[Reassociate] As the expression tree is rewritten make sure the operands are
Chad Rosier
2014-11-17
1
-7
/
+8
*
[Reassociate] Canonicalize constants to RHS operand.
Chad Rosier
2014-11-17
1
-1
/
+4
*
[Reassociate] Canonicalize the operands of all binary operators.
Chad Rosier
2014-11-14
1
-12
/
+12
*
[Reassociate] Canonicalize operands of vector binary operators.
Chad Rosier
2014-11-14
1
-6
/
+1
*
[Reassociate] Canonicalize constants to RHS operand.
Chad Rosier
2014-11-14
1
-12
/
+17
*
[Reassociate] Improve rank debug information. NFC.
Chad Rosier
2014-11-14
1
-4
/
+5
*
[Reassociate] Update comment. NFC.
Chad Rosier
2014-11-13
1
-1
/
+1
*
[Reassociate] Canonicalize negative constants out of expressions.
Chad Rosier
2014-11-11
1
-1
/
+2
*
[Reassociate] Canonicalize negative constants out of expressions.
Chad Rosier
2014-11-11
1
-42
/
+91
*
[Reassociate] Better preserve NSW/NUW flags.
Chad Rosier
2014-11-07
1
-0
/
+11
*
[Reassociate] Don't reassociate when mixing regular and fast-math FP
Chad Rosier
2014-11-06
1
-3
/
+9
*
Revert "[Reassociate] Canonicalize negative constants out of expressions."
Reid Kleckner
2014-11-04
1
-101
/
+42
*
[Reassociate] Canonicalize negative constants out of expressions.
Chad Rosier
2014-11-03
1
-42
/
+101
*
[Reassociate] Don't canonicalize X - undef to X + (-undef).
Chad Rosier
2014-10-09
1
-0
/
+4
*
Give the Reassociate pass a bit more flexibility and autonomy when optimizing...
Owen Anderson
2014-10-05
1
-2
/
+12
*
Reassociate x + -0.1234 * y into x - 0.1234 * y
Erik Verbruggen
2014-08-21
1
-2
/
+49
*
[Reassociation] Add support for reassociation with unsafe algebra.
Chad Rosier
2014-08-14
1
-81
/
+228
*
[Reassociate] Similar to "X + -X" -> "0", added code to handle "X + ~X" -> "-1".
Benjamin Kramer
2014-05-31
1
-8
/
+23
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-20
/
+20
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-13
/
+12
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-2
/
+2
*
[Modules] Move CFG.h to the IR library as it defines graph traits over
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move ValueHandle into the IR library where Value itself lives.
Chandler Carruth
2014-03-04
1
-1
/
+1
*
Now that we have C++11, turn simple functors into lambdas and remove a ton of...
Benjamin Kramer
2014-03-01
1
-13
/
+0
*
[reassociate] Switch two std::sort calls into std::stable_sort calls as
Chandler Carruth
2014-02-25
1
-2
/
+2
*
Disable most IR-level transform passes on functions marked 'optnone'.
Paul Robinson
2014-02-06
1
-0
/
+3
[next]