[llvm] 4faf88c - [InstCombine] Precommit new and-xor-or.ll tests. NFC.
Stanislav Mekhanoshin via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 26 12:57:40 PDT 2021
Author: Stanislav Mekhanoshin
Date: 2021-10-26T12:57:17-07:00
New Revision: 4faf88cc146bebf63697b0d2785d18b02b738b0b
URL: https://github.com/llvm/llvm-project/commit/4faf88cc146bebf63697b0d2785d18b02b738b0b
DIFF: https://github.com/llvm/llvm-project/commit/4faf88cc146bebf63697b0d2785d18b02b738b0b.diff
LOG: [InstCombine] Precommit new and-xor-or.ll tests. NFC.
Added:
Modified:
llvm/test/Transforms/InstCombine/and-xor-or.ll
Removed:
################################################################################
diff --git a/llvm/test/Transforms/InstCombine/and-xor-or.ll b/llvm/test/Transforms/InstCombine/and-xor-or.ll
index 72b66c4fe522..26fef50f6156 100644
--- a/llvm/test/Transforms/InstCombine/and-xor-or.ll
+++ b/llvm/test/Transforms/InstCombine/and-xor-or.ll
@@ -812,6 +812,125 @@ define i32 @or_not_and_commute4(i32 %a, i32 %b, i32 %c0) {
ret i32 %or3
}
+define i32 @or_not_and_commute5(i32 %a0, i32 %b, i32 %c0) {
+; CHECK-LABEL: @or_not_and_commute5(
+; CHECK-NEXT: [[A:%.*]] = sdiv i32 42, [[A0:%.*]]
+; CHECK-NEXT: [[C:%.*]] = sdiv i32 42, [[C0:%.*]]
+; CHECK-NEXT: [[OR1:%.*]] = or i32 [[A]], [[B:%.*]]
+; CHECK-NEXT: [[NOT1:%.*]] = xor i32 [[OR1]], -1
+; CHECK-NEXT: [[AND1:%.*]] = and i32 [[C]], [[NOT1]]
+; CHECK-NEXT: [[OR2:%.*]] = or i32 [[A]], [[C]]
+; CHECK-NEXT: [[NOT2:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT: [[AND2:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT: [[OR3:%.*]] = or i32 [[AND1]], [[AND2]]
+; CHECK-NEXT: ret i32 [[OR3]]
+;
+ %a = sdiv i32 42, %a0 ; thwart complexity-based canonicalization
+ %c = sdiv i32 42, %c0 ; thwart complexity-based canonicalization
+ %or1 = or i32 %a, %b
+ %not1 = xor i32 %or1, -1
+ %and1 = and i32 %c, %not1
+ %or2 = or i32 %a, %c
+ %not2 = xor i32 %or2, -1
+ %and2 = and i32 %not2, %b
+ %or3 = or i32 %and1, %and2
+ ret i32 %or3
+}
+
+define i32 @or_not_and_commute6(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @or_not_and_commute6(
+; CHECK-NEXT: [[OR1:%.*]] = or i32 [[A:%.*]], [[B:%.*]]
+; CHECK-NEXT: [[NOT1:%.*]] = xor i32 [[OR1]], -1
+; CHECK-NEXT: [[AND1:%.*]] = and i32 [[NOT1]], [[C:%.*]]
+; CHECK-NEXT: [[OR2:%.*]] = or i32 [[C]], [[A]]
+; CHECK-NEXT: [[NOT2:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT: [[AND2:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT: [[OR3:%.*]] = or i32 [[AND1]], [[AND2]]
+; CHECK-NEXT: ret i32 [[OR3]]
+;
+ %or1 = or i32 %a, %b
+ %not1 = xor i32 %or1, -1
+ %and1 = and i32 %not1, %c
+ %or2 = or i32 %c, %a
+ %not2 = xor i32 %or2, -1
+ %and2 = and i32 %not2, %b
+ %or3 = or i32 %and1, %and2
+ ret i32 %or3
+}
+
+define i32 @or_not_and_commute7(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @or_not_and_commute7(
+; CHECK-NEXT: [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT: [[NOT1:%.*]] = xor i32 [[OR1]], -1
+; CHECK-NEXT: [[AND1:%.*]] = and i32 [[NOT1]], [[C:%.*]]
+; CHECK-NEXT: [[OR2:%.*]] = or i32 [[A]], [[C]]
+; CHECK-NEXT: [[NOT2:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT: [[AND2:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT: [[OR3:%.*]] = or i32 [[AND1]], [[AND2]]
+; CHECK-NEXT: ret i32 [[OR3]]
+;
+ %or1 = or i32 %b, %a
+ %not1 = xor i32 %or1, -1
+ %and1 = and i32 %not1, %c
+ %or2 = or i32 %a, %c
+ %not2 = xor i32 %or2, -1
+ %and2 = and i32 %not2, %b
+ %or3 = or i32 %and1, %and2
+ ret i32 %or3
+}
+
+define i32 @or_not_and_commute8(i32 %a0, i32 %b0, i32 %c) {
+; CHECK-LABEL: @or_not_and_commute8(
+; CHECK-NEXT: [[A:%.*]] = sdiv i32 42, [[A0:%.*]]
+; CHECK-NEXT: [[B:%.*]] = sdiv i32 42, [[B0:%.*]]
+; CHECK-NEXT: [[OR1:%.*]] = or i32 [[A]], [[B]]
+; CHECK-NEXT: [[NOT1:%.*]] = xor i32 [[OR1]], -1
+; CHECK-NEXT: [[AND1:%.*]] = and i32 [[NOT1]], [[C:%.*]]
+; CHECK-NEXT: [[OR2:%.*]] = or i32 [[A]], [[C]]
+; CHECK-NEXT: [[NOT2:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT: [[AND2:%.*]] = and i32 [[B]], [[NOT2]]
+; CHECK-NEXT: [[OR3:%.*]] = or i32 [[AND1]], [[AND2]]
+; CHECK-NEXT: ret i32 [[OR3]]
+;
+ %a = sdiv i32 42, %a0 ; thwart complexity-based canonicalization
+ %b = sdiv i32 42, %b0 ; thwart complexity-based canonicalization
+ %or1 = or i32 %a, %b
+ %not1 = xor i32 %or1, -1
+ %and1 = and i32 %not1, %c
+ %or2 = or i32 %c, %a
+ %not2 = xor i32 %or2, -1
+ %and2 = and i32 %b, %not2
+ %or3 = or i32 %and1, %and2
+ ret i32 %or3
+}
+
+define i32 @or_not_and_commute9(i32 %a0, i32 %b0, i32 %c0) {
+; CHECK-LABEL: @or_not_and_commute9(
+; CHECK-NEXT: [[A:%.*]] = sdiv i32 42, [[A0:%.*]]
+; CHECK-NEXT: [[B:%.*]] = sdiv i32 42, [[B0:%.*]]
+; CHECK-NEXT: [[C:%.*]] = sdiv i32 42, [[C0:%.*]]
+; CHECK-NEXT: [[OR1:%.*]] = or i32 [[A]], [[B]]
+; CHECK-NEXT: [[NOT1:%.*]] = xor i32 [[OR1]], -1
+; CHECK-NEXT: [[AND1:%.*]] = and i32 [[C]], [[NOT1]]
+; CHECK-NEXT: [[OR2:%.*]] = or i32 [[A]], [[C]]
+; CHECK-NEXT: [[NOT2:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT: [[AND2:%.*]] = and i32 [[B]], [[NOT2]]
+; CHECK-NEXT: [[OR3:%.*]] = or i32 [[AND1]], [[AND2]]
+; CHECK-NEXT: ret i32 [[OR3]]
+;
+ %a = sdiv i32 42, %a0 ; thwart complexity-based canonicalization
+ %b = sdiv i32 42, %b0 ; thwart complexity-based canonicalization
+ %c = sdiv i32 42, %c0 ; thwart complexity-based canonicalization
+ %or1 = or i32 %a, %b
+ %not1 = xor i32 %or1, -1
+ %and1 = and i32 %not1, %c
+ %or2 = or i32 %a, %c
+ %not2 = xor i32 %or2, -1
+ %and2 = and i32 %b, %not2
+ %or3 = or i32 %and1, %and2
+ ret i32 %or3
+}
+
define i32 @or_not_and_extra_not_use1(i32 %a, i32 %b, i32 %c) {
; CHECK-LABEL: @or_not_and_extra_not_use1(
; CHECK-NEXT: [[OR1:%.*]] = or i32 [[A:%.*]], [[B:%.*]]
More information about the llvm-commits
mailing list