[llvm] 31f02e9 - [InstCombine] Precommit updated and-xor-or.ll tests. NFC.

Stanislav Mekhanoshin via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 1 15:21:46 PDT 2021


Author: Stanislav Mekhanoshin
Date: 2021-11-01T15:20:41-07:00
New Revision: 31f02e9d7ac5b696ab5141d715e02f1cc9c2bf0d

URL: https://github.com/llvm/llvm-project/commit/31f02e9d7ac5b696ab5141d715e02f1cc9c2bf0d
DIFF: https://github.com/llvm/llvm-project/commit/31f02e9d7ac5b696ab5141d715e02f1cc9c2bf0d.diff

LOG: [InstCombine] Precommit updated 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 a565991825d5..d5267f1507d1 100644
--- a/llvm/test/Transforms/InstCombine/and-xor-or.ll
+++ b/llvm/test/Transforms/InstCombine/and-xor-or.ll
@@ -1606,3 +1606,338 @@ define i32 @and_not_or_or_not_or_xor_use6(i32 %a, i32 %b, i32 %c) {
   call void @use(i32 %not2)
   ret i32 %or3
 }
+
+; (~a & b & c) | ~(a | b | c) -> ~(a | (b ^ c))
+
+define i32 @not_and_and_or_not_or_or(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_commute1_or(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_commute1_or(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[C:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[B:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %c, %a
+  %or2 = or i32 %or1, %b
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_commute2_or(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_commute2_or(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[C:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[A:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %c
+  %or2 = or i32 %or1, %a
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_commute1_and(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_commute1_and(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[C]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[B]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %c
+  %and2 = and i32 %and1, %b
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_commute2_and(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_commute2_and(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[B]], [[C]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[NOT2]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %b, %c
+  %and2 = and i32 %and1, %not2
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_commute1(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_commute1(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[A:%.*]], [[B:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %a, %b
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_commute2(i32 %a, i32 %b, i32 %c0) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_commute2(
+; CHECK-NEXT:    [[C:%.*]] = sdiv i32 42, [[C0:%.*]]
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[C]], [[OR1]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %c = sdiv i32 42, %c0 ; thwart complexity-based canonicalization
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %c, %or1
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_commute3(i32 %a, i32 %b0, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_commute3(
+; CHECK-NEXT:    [[B:%.*]] = sdiv i32 42, [[B0:%.*]]
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[B]], [[NOT2]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %b = sdiv i32 42, %b0 ; thwart complexity-based canonicalization
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %b, %not2
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_commute4(i32 %a, i32 %b, i32 %c0) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_commute4(
+; CHECK-NEXT:    [[C:%.*]] = sdiv i32 42, [[C0:%.*]]
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[C]], [[AND1]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %c = sdiv i32 42, %c0 ; thwart complexity-based canonicalization
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %c, %and1
+  %or3 = or i32 %and2, %not1
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_use1(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_use1(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    call void @use(i32 [[OR1]])
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  call void @use(i32 %or1)
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_use2(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_use2(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    call void @use(i32 [[OR2]])
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  call void @use(i32 %or2)
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_use3(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_use3(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    call void @use(i32 [[NOT1]])
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  call void @use(i32 %not1)
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_use4(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_use4(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    call void @use(i32 [[NOT2]])
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  call void @use(i32 %not2)
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_use5(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_use5(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    call void @use(i32 [[AND1]])
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  call void @use(i32 %and1)
+  ret i32 %or3
+}
+
+define i32 @not_and_and_or_not_or_or_use6(i32 %a, i32 %b, i32 %c) {
+; CHECK-LABEL: @not_and_and_or_not_or_or_use6(
+; CHECK-NEXT:    [[OR1:%.*]] = or i32 [[B:%.*]], [[A:%.*]]
+; CHECK-NEXT:    [[OR2:%.*]] = or i32 [[OR1]], [[C:%.*]]
+; CHECK-NEXT:    [[NOT1:%.*]] = xor i32 [[OR2]], -1
+; CHECK-NEXT:    [[NOT2:%.*]] = xor i32 [[A]], -1
+; CHECK-NEXT:    [[AND1:%.*]] = and i32 [[NOT2]], [[B]]
+; CHECK-NEXT:    [[AND2:%.*]] = and i32 [[AND1]], [[C]]
+; CHECK-NEXT:    [[OR3:%.*]] = or i32 [[AND2]], [[NOT1]]
+; CHECK-NEXT:    call void @use(i32 [[AND2]])
+; CHECK-NEXT:    ret i32 [[OR3]]
+;
+  %or1 = or i32 %b, %a
+  %or2 = or i32 %or1, %c
+  %not1 = xor i32 %or2, -1
+  %not2 = xor i32 %a, -1
+  %and1 = and i32 %not2, %b
+  %and2 = and i32 %and1, %c
+  %or3 = or i32 %and2, %not1
+  call void @use(i32 %and2)
+  ret i32 %or3
+}


        


More information about the llvm-commits mailing list