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
/
InstCombine
/
InstCombineCompares.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[InstCombine] Fix PR24605.
Sanjoy Das
2015-08-28
1
-0
/
+6
*
Re-apply r245635, "[InstCombine] Transform A & (L - 1) u< L --> L != 0"
Sanjoy Das
2015-08-21
1
-0
/
+12
*
Revert r245635, "[InstCombine] Transform A & (L - 1) u< L --> L != 0"
NAKAMURA Takumi
2015-08-21
1
-13
/
+0
*
[InstCombine] Transform A & (L - 1) u< L --> L != 0
Sanjoy Das
2015-08-20
1
-0
/
+13
*
[InstCombine] Replace an and+icmp with a trunc+icmp
David Majnemer
2015-08-16
1
-0
/
+17
*
Fix PR24354.
Sanjoy Das
2015-08-11
1
-3
/
+2
*
[InstSimplify] Fold away ord/uno fcmps when nnan is present.
Benjamin Kramer
2015-07-10
1
-2
/
+2
*
[InstCombine] call SimplifyICmpInst with correct context
Jingyue Wu
2015-06-25
1
-2
/
+4
*
[InstCombine][NFC] Add a ``break;`` statement.
Sanjoy Das
2015-06-05
1
-0
/
+1
*
[InstCombine] Fix PR23751.
Sanjoy Das
2015-06-05
1
-0
/
+1
*
[InstSimplify] Handle some overflow intrinsics in InstSimplify
David Majnemer
2015-05-22
1
-12
/
+0
*
[InstCombine] X - 0 is equal to X, not undef
David Majnemer
2015-05-21
1
-27
/
+21
*
Reapply r237539 with a fix for the Chromium build.
James Molloy
2015-05-20
1
-0
/
+13
*
Revert r237539: "Reapply r237520 with another fix for infinite looping"
Hans Wennborg
2015-05-19
1
-13
/
+0
*
Simplify IRBuilder::CreateCall* by using ArrayRef+initializer_list/braced ini...
David Blaikie
2015-05-18
1
-2
/
+2
*
Reapply r237520 with another fix for infinite looping
James Molloy
2015-05-17
1
-0
/
+13
*
Revert commits r237521 and r237520.
James Molloy
2015-05-16
1
-13
/
+0
*
Reapply r237453 with a fix for the test timeouts.
James Molloy
2015-05-16
1
-0
/
+13
*
Revert "Canonicalize min/max expressions correctly."
James Molloy
2015-05-15
1
-13
/
+0
*
Canonicalize min/max expressions correctly.
James Molloy
2015-05-15
1
-0
/
+13
*
Subtraction is not commutative. Fixes PR23212!
Nick Lewycky
2015-04-13
1
-1
/
+2
*
[InstCombine][CodeGenPrep] Create llvm.uadd.with.overflow in CGP.
Sanjoy Das
2015-04-10
1
-44
/
+12
*
[InstCombine] Refactor out OptimizeOverflowCheck. NFCI.
Sanjoy Das
2015-04-08
1
-0
/
+107
*
InstCombine: fold (A << C) == (B << C) --> ((A^B) & (~0U >> C)) == 0
Benjamin Kramer
2015-03-26
1
-0
/
+15
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-29
/
+19
*
[InstCombine] Fix a bug when combining `icmp` from `ptrtoint`
Michael Liao
2015-02-13
1
-7
/
+10
*
[PM] Rename InstCombine.h to InstCombineInternal.h in preparation for
Chandler Carruth
2015-01-22
1
-1
/
+1
*
[PM] Move TargetLibraryInfo into the Analysis library.
Chandler Carruth
2015-01-15
1
-1
/
+1
*
InstCombine: Don't take A-B<0 into A<B if A-B has other uses
David Majnemer
2015-01-14
1
-26
/
+28
*
Fix fcmp + fabs instcombines when using the intrinsic
Matt Arsenault
2015-01-08
1
-26
/
+28
*
Convert fcmp with 0.0 from casted integers to icmp
Matt Arsenault
2015-01-06
1
-4
/
+34
*
[PM] Split the AssumptionTracker immutable pass into two separate APIs:
Chandler Carruth
2015-01-04
1
-5
/
+4
*
InstCombine: try to transform A-B < 0 into A < B
David Majnemer
2014-12-31
1
-0
/
+20
*
Removed extra line from a comment to test first commit. NFC.
Ankur Garg
2014-11-28
1
-1
/
+0
*
InstCombine: Silence a parenthesis warning
David Majnemer
2014-11-22
1
-1
/
+1
*
[InstCombine] Re-commit of r218721 (Optimize icmp-select-icmp sequence)
Gerolf Hoflehner
2014-11-21
1
-4
/
+150
*
InstCombine: Rely on cmpxchg's return code when it's strong
David Majnemer
2014-11-06
1
-0
/
+16
*
InstCombine: Don't assume that m_ZExt matches an Instruction
David Majnemer
2014-11-01
1
-2
/
+2
*
InstCombine: Combine (X+cst) < 0 --> X < -cst
David Majnemer
2014-11-01
1
-0
/
+6
*
InstCombine: Remove overzealous asserts
David Majnemer
2014-10-25
1
-12
/
+19
*
InstCombine: Simplify FoldICmpCstShrCst
David Majnemer
2014-10-21
1
-48
/
+16
*
InstCombine: Optimize icmp eq/ne (shl Const2, A), Const1
David Majnemer
2014-10-19
1
-1
/
+48
*
[InstCombine] Fix wrong folding of constant comparisons involving ashr and ne...
Andrea Di Biagio
2014-10-09
1
-1
/
+2
*
Revert "[InstCombine] re-commit r218721 with fix for pr21199"
Justin Bogner
2014-10-08
1
-134
/
+2
*
[InstCombine] re-commit r218721 with fix for pr21199
Gerolf Hoflehner
2014-10-08
1
-2
/
+134
*
Revert r219175 - [InstCombine] re-commit r218721 icmp-select-icmp optimization
Hans Wennborg
2014-10-08
1
-138
/
+2
*
[InstCombine] re-commit r218721 icmp-select-icmp optimization
Gerolf Hoflehner
2014-10-07
1
-2
/
+138
*
Revert r218721, r218735.
Evgeniy Stepanov
2014-10-01
1
-142
/
+2
*
[InstCombine] Fix for assert build failures caused by r218721
Gerolf Hoflehner
2014-10-01
1
-1
/
+7
*
[InstCombine] Optimize icmp-select-icmp
Gerolf Hoflehner
2014-10-01
1
-2
/
+136
[prev]
[next]