diff options
author | Craig Topper <craig.topper@intel.com> | 2018-06-28 17:58:01 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-06-28 17:58:01 +0000 |
commit | 90317d1d94afddb77ec5f78c8f5df4887f3e3a09 (patch) | |
tree | 4b5314f104339e5a0ea7d253483b7c12edd94033 | |
parent | b757fc3878d90976cd7ca92291aa8b626d5dff6b (diff) | |
download | bcm5719-llvm-90317d1d94afddb77ec5f78c8f5df4887f3e3a09.tar.gz bcm5719-llvm-90317d1d94afddb77ec5f78c8f5df4887f3e3a09.zip |
[X86] Suppress load folding into and/or/xor if it will prevent matching btr/bts/btc.
This is a follow up to r335753. At the time I forgot about isProfitableToFold which makes this pretty easy.
Differential Revision: https://reviews.llvm.org/D48706
llvm-svn: 335895
-rw-r--r-- | llvm/lib/Target/X86/X86ISelDAGToDAG.cpp | 29 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/btc_bts_btr.ll | 110 |
2 files changed, 71 insertions, 68 deletions
diff --git a/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp b/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp index e54115e532a..c7120cf3673 100644 --- a/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp +++ b/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp @@ -569,6 +569,35 @@ X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const { return false; } + // Don't fold load if this matches the BTS/BTR/BTC patterns. + // BTS: (or X, (shl 1, n)) + // BTR: (and X, (rotl -2, n)) + // BTC: (xor X, (shl 1, n)) + if (U->getOpcode() == ISD::OR || U->getOpcode() == ISD::XOR) { + if (U->getOperand(0).getOpcode() == ISD::SHL && + isOneConstant(U->getOperand(0).getOperand(0))) + return false; + + if (U->getOperand(1).getOpcode() == ISD::SHL && + isOneConstant(U->getOperand(1).getOperand(0))) + return false; + } + if (U->getOpcode() == ISD::AND) { + SDValue U0 = U->getOperand(0); + SDValue U1 = U->getOperand(1); + if (U0.getOpcode() == ISD::ROTL) { + auto *C = dyn_cast<ConstantSDNode>(U0.getOperand(0)); + if (C && C->getSExtValue() == -2) + return false; + } + + if (U1.getOpcode() == ISD::ROTL) { + auto *C = dyn_cast<ConstantSDNode>(U1.getOperand(0)); + if (C && C->getSExtValue() == -2) + return false; + } + } + break; } case ISD::SHL: diff --git a/llvm/test/CodeGen/X86/btc_bts_btr.ll b/llvm/test/CodeGen/X86/btc_bts_btr.ll index 7dd844e1e60..4b14d391391 100644 --- a/llvm/test/CodeGen/X86/btc_bts_btr.ll +++ b/llvm/test/CodeGen/X86/btc_bts_btr.ll @@ -15,10 +15,9 @@ define i16 @btr_16(i16 %x, i16 %n) { ; ; X86-LABEL: btr_16: ; X86: # %bb.0: +; X86-NEXT: movzwl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movw $-2, %ax -; X86-NEXT: rolw %cl, %ax -; X86-NEXT: andw {{[0-9]+}}(%esp), %ax +; X86-NEXT: btrw %cx, %ax ; X86-NEXT: retl %1 = shl i16 1, %n %2 = xor i16 %1, -1 @@ -75,10 +74,9 @@ define i32 @btr_32(i32 %x, i32 %n) { ; ; X86-LABEL: btr_32: ; X86: # %bb.0: +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $-2, %eax -; X86-NEXT: roll %cl, %eax -; X86-NEXT: andl {{[0-9]+}}(%esp), %eax +; X86-NEXT: btrl %ecx, %eax ; X86-NEXT: retl %1 = shl i32 1, %n %2 = xor i32 %1, -1 @@ -95,10 +93,9 @@ define i32 @bts_32(i32 %x, i32 %n) { ; ; X86-LABEL: bts_32: ; X86: # %bb.0: +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $1, %eax -; X86-NEXT: shll %cl, %eax -; X86-NEXT: orl {{[0-9]+}}(%esp), %eax +; X86-NEXT: btsl %ecx, %eax ; X86-NEXT: retl %1 = shl i32 1, %n %2 = or i32 %x, %1 @@ -114,10 +111,9 @@ define i32 @btc_32(i32 %x, i32 %n) { ; ; X86-LABEL: btc_32: ; X86: # %bb.0: +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $1, %eax -; X86-NEXT: shll %cl, %eax -; X86-NEXT: xorl {{[0-9]+}}(%esp), %eax +; X86-NEXT: btcl %ecx, %eax ; X86-NEXT: retl %1 = shl i32 1, %n %2 = xor i32 %x, %1 @@ -223,10 +219,9 @@ define i16 @btr_16_mask(i16 %x, i16 %n) { ; ; X86-LABEL: btr_16_mask: ; X86: # %bb.0: +; X86-NEXT: movzwl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movw $-2, %ax -; X86-NEXT: rolw %cl, %ax -; X86-NEXT: andw {{[0-9]+}}(%esp), %ax +; X86-NEXT: btrw %cx, %ax ; X86-NEXT: retl %1 = and i16 %n, 15 %2 = shl i16 1, %1 @@ -290,10 +285,9 @@ define i32 @btr_32_mask(i32 %x, i32 %n) { ; ; X86-LABEL: btr_32_mask: ; X86: # %bb.0: +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $-2, %eax -; X86-NEXT: roll %cl, %eax -; X86-NEXT: andl {{[0-9]+}}(%esp), %eax +; X86-NEXT: btrl %ecx, %eax ; X86-NEXT: retl %1 = and i32 %n, 31 %2 = shl i32 1, %1 @@ -311,10 +305,9 @@ define i32 @bts_32_mask(i32 %x, i32 %n) { ; ; X86-LABEL: bts_32_mask: ; X86: # %bb.0: +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $1, %eax -; X86-NEXT: shll %cl, %eax -; X86-NEXT: orl {{[0-9]+}}(%esp), %eax +; X86-NEXT: btsl %ecx, %eax ; X86-NEXT: retl %1 = and i32 %n, 31 %2 = shl i32 1, %1 @@ -331,10 +324,9 @@ define i32 @btc_32_mask(i32 %x, i32 %n) { ; ; X86-LABEL: btc_32_mask: ; X86: # %bb.0: +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $1, %eax -; X86-NEXT: shll %cl, %eax -; X86-NEXT: xorl {{[0-9]+}}(%esp), %eax +; X86-NEXT: btcl %ecx, %eax ; X86-NEXT: retl %1 = and i32 %n, 31 %2 = shl i32 1, %1 @@ -437,19 +429,16 @@ define i64 @btc_64_mask(i64 %x, i64 %n) { define i16 @btr_16_load(i16* %x, i16 %n) { ; X64-LABEL: btr_16_load: ; X64: # %bb.0: -; X64-NEXT: movw $-2, %ax -; X64-NEXT: movl %esi, %ecx -; X64-NEXT: rolw %cl, %ax -; X64-NEXT: andw (%rdi), %ax +; X64-NEXT: movzwl (%rdi), %eax +; X64-NEXT: btrw %si, %ax ; X64-NEXT: retq ; ; X86-LABEL: btr_16_load: ; X86: # %bb.0: -; X86-NEXT: movl {{[0-9]+}}(%esp), %edx ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movw $-2, %ax -; X86-NEXT: rolw %cl, %ax -; X86-NEXT: andw (%edx), %ax +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax +; X86-NEXT: movzwl (%eax), %eax +; X86-NEXT: btrw %cx, %ax ; X86-NEXT: retl %1 = load i16, i16* %x %2 = shl i16 1, %n @@ -511,19 +500,16 @@ define i16 @btc_16_load(i16* %x, i16 %n) { define i32 @btr_32_load(i32* %x, i32 %n) { ; X64-LABEL: btr_32_load: ; X64: # %bb.0: -; X64-NEXT: movl $-2, %eax -; X64-NEXT: movl %esi, %ecx -; X64-NEXT: roll %cl, %eax -; X64-NEXT: andl (%rdi), %eax +; X64-NEXT: movl (%rdi), %eax +; X64-NEXT: btrl %esi, %eax ; X64-NEXT: retq ; ; X86-LABEL: btr_32_load: ; X86: # %bb.0: -; X86-NEXT: movl {{[0-9]+}}(%esp), %edx ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $-2, %eax -; X86-NEXT: roll %cl, %eax -; X86-NEXT: andl (%edx), %eax +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax +; X86-NEXT: movl (%eax), %eax +; X86-NEXT: btrl %ecx, %eax ; X86-NEXT: retl %1 = load i32, i32* %x %2 = shl i32 1, %n @@ -535,19 +521,16 @@ define i32 @btr_32_load(i32* %x, i32 %n) { define i32 @bts_32_load(i32* %x, i32 %n) { ; X64-LABEL: bts_32_load: ; X64: # %bb.0: -; X64-NEXT: movl $1, %eax -; X64-NEXT: movl %esi, %ecx -; X64-NEXT: shll %cl, %eax -; X64-NEXT: orl (%rdi), %eax +; X64-NEXT: movl (%rdi), %eax +; X64-NEXT: btsl %esi, %eax ; X64-NEXT: retq ; ; X86-LABEL: bts_32_load: ; X86: # %bb.0: -; X86-NEXT: movl {{[0-9]+}}(%esp), %edx ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $1, %eax -; X86-NEXT: shll %cl, %eax -; X86-NEXT: orl (%edx), %eax +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax +; X86-NEXT: movl (%eax), %eax +; X86-NEXT: btsl %ecx, %eax ; X86-NEXT: retl %1 = load i32, i32* %x %2 = shl i32 1, %n @@ -558,19 +541,16 @@ define i32 @bts_32_load(i32* %x, i32 %n) { define i32 @btc_32_load(i32* %x, i32 %n) { ; X64-LABEL: btc_32_load: ; X64: # %bb.0: -; X64-NEXT: movl $1, %eax -; X64-NEXT: movl %esi, %ecx -; X64-NEXT: shll %cl, %eax -; X64-NEXT: xorl (%rdi), %eax +; X64-NEXT: movl (%rdi), %eax +; X64-NEXT: btcl %esi, %eax ; X64-NEXT: retq ; ; X86-LABEL: btc_32_load: ; X86: # %bb.0: -; X86-NEXT: movl {{[0-9]+}}(%esp), %edx ; X86-NEXT: movb {{[0-9]+}}(%esp), %cl -; X86-NEXT: movl $1, %eax -; X86-NEXT: shll %cl, %eax -; X86-NEXT: xorl (%edx), %eax +; X86-NEXT: movl {{[0-9]+}}(%esp), %eax +; X86-NEXT: movl (%eax), %eax +; X86-NEXT: btcl %ecx, %eax ; X86-NEXT: retl %1 = load i32, i32* %x %2 = shl i32 1, %n @@ -581,10 +561,8 @@ define i32 @btc_32_load(i32* %x, i32 %n) { define i64 @btr_64_load(i64* %x, i64 %n) { ; X64-LABEL: btr_64_load: ; X64: # %bb.0: -; X64-NEXT: movq $-2, %rax -; X64-NEXT: movl %esi, %ecx -; X64-NEXT: rolq %cl, %rax -; X64-NEXT: andq (%rdi), %rax +; X64-NEXT: movq (%rdi), %rax +; X64-NEXT: btrq %rsi, %rax ; X64-NEXT: retq ; ; X86-LABEL: btr_64_load: @@ -621,10 +599,8 @@ define i64 @btr_64_load(i64* %x, i64 %n) { define i64 @bts_64_load(i64* %x, i64 %n) { ; X64-LABEL: bts_64_load: ; X64: # %bb.0: -; X64-NEXT: movl $1, %eax -; X64-NEXT: movl %esi, %ecx -; X64-NEXT: shlq %cl, %rax -; X64-NEXT: orq (%rdi), %rax +; X64-NEXT: movq (%rdi), %rax +; X64-NEXT: btsq %rsi, %rax ; X64-NEXT: retq ; ; X86-LABEL: bts_64_load: @@ -658,10 +634,8 @@ define i64 @bts_64_load(i64* %x, i64 %n) { define i64 @btc_64_load(i64* %x, i64 %n) { ; X64-LABEL: btc_64_load: ; X64: # %bb.0: -; X64-NEXT: movl $1, %eax -; X64-NEXT: movl %esi, %ecx -; X64-NEXT: shlq %cl, %rax -; X64-NEXT: xorq (%rdi), %rax +; X64-NEXT: movq (%rdi), %rax +; X64-NEXT: btcq %rsi, %rax ; X64-NEXT: retq ; ; X86-LABEL: btc_64_load: |