Index: lib/Target/X86/X86ISelLowering.cpp =================================================================== --- lib/Target/X86/X86ISelLowering.cpp +++ lib/Target/X86/X86ISelLowering.cpp @@ -28631,18 +28631,23 @@ unsigned Opc = X86ISD::SHLD; SDValue Op0 = N0.getOperand(0); SDValue Op1 = N1.getOperand(0); - if (ShAmt0.getOpcode() == ISD::SUB) { + if (ShAmt0.getOpcode() == ISD::SUB || + ShAmt0.getOpcode() == ISD::XOR) { Opc = X86ISD::SHRD; std::swap(Op0, Op1); std::swap(ShAmt0, ShAmt1); } + // OR( SHL( X, C ), SRL( Y, 32 - C ) ) -> SHLD( X, Y, C ) + // OR( SRL( X, C ), SHL( Y, 32 - C ) ) -> SHRD( X, Y, C ) + // OR( SHL( X, C ), SRL( SRL( Y, 1 ), XOR( C, 31 ) ) ) -> SHLD( X, Y, C ) + // OR( SRL( X, C ), SHL( SHL( Y, 1 ), XOR( C, 31 ) ) ) -> SHRD( X, Y, C ) unsigned Bits = VT.getSizeInBits(); if (ShAmt1.getOpcode() == ISD::SUB) { SDValue Sum = ShAmt1.getOperand(0); if (ConstantSDNode *SumC = dyn_cast(Sum)) { SDValue ShAmt1Op1 = ShAmt1.getOperand(1); - if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE) + if (ShAmt1Op1.getOpcode() == ISD::TRUNCATE) ShAmt1Op1 = ShAmt1Op1.getOperand(0); if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0) return DAG.getNode(Opc, DL, VT, @@ -28652,12 +28657,26 @@ } } else if (ConstantSDNode *ShAmt1C = dyn_cast(ShAmt1)) { ConstantSDNode *ShAmt0C = dyn_cast(ShAmt0); - if (ShAmt0C && - ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits) + if (ShAmt0C && (ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue()) == Bits) return DAG.getNode(Opc, DL, VT, N0.getOperand(0), N1.getOperand(0), DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ShAmt0)); + } else if (ShAmt1.getOpcode() == ISD::XOR) { + SDValue Mask = ShAmt1.getOperand(1); + if (ConstantSDNode *MaskC = dyn_cast(Mask)) { + unsigned InnerShift = (X86ISD::SHLD == Opc ? ISD::SRL : ISD::SHL); + SDValue ShAmt1Op0 = ShAmt1.getOperand(0); + if (ShAmt1Op0.getOpcode() == ISD::TRUNCATE) + ShAmt1Op0 = ShAmt1Op0.getOperand(0); + if (MaskC->getSExtValue() == (Bits - 1) && ShAmt1Op0 == ShAmt0 && + Op1.getOpcode() == InnerShift && + isa(Op1.getOperand(1)) && + Op1.getConstantOperandVal(1) == 1) { + return DAG.getNode(Opc, DL, VT, Op0, Op1.getOperand(0), + DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ShAmt0)); + } + } } return SDValue(); Index: test/CodeGen/X86/legalize-shift-64.ll =================================================================== --- test/CodeGen/X86/legalize-shift-64.ll +++ test/CodeGen/X86/legalize-shift-64.ll @@ -24,19 +24,13 @@ ; CHECK-LABEL: test2: ; CHECK: # BB#0: ; CHECK-NEXT: pushl %esi -; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax ; CHECK-NEXT: movl {{[0-9]+}}(%esp), %esi -; CHECK-NEXT: movb {{[0-9]+}}(%esp), %ch -; CHECK-NEXT: andb $7, %ch -; CHECK-NEXT: movb %ch, %cl -; CHECK-NEXT: shll %cl, %esi -; CHECK-NEXT: movl %eax, %edx -; CHECK-NEXT: shrl %edx -; CHECK-NEXT: xorb $31, %cl -; CHECK-NEXT: shrl %cl, %edx -; CHECK-NEXT: orl %esi, %edx -; CHECK-NEXT: movb %ch, %cl +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx +; CHECK-NEXT: movb {{[0-9]+}}(%esp), %cl +; CHECK-NEXT: andb $7, %cl +; CHECK-NEXT: movl %esi, %eax ; CHECK-NEXT: shll %cl, %eax +; CHECK-NEXT: shldl %cl, %esi, %edx ; CHECK-NEXT: popl %esi ; CHECK-NEXT: retl %and = and i32 %test, 7 @@ -48,20 +42,12 @@ define i64 @test3(i64 %xx, i32 %test) nounwind { ; CHECK-LABEL: test3: ; CHECK: # BB#0: -; CHECK-NEXT: pushl %esi -; CHECK-NEXT: movl {{[0-9]+}}(%esp), %esi +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax ; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx -; CHECK-NEXT: movb {{[0-9]+}}(%esp), %ch -; CHECK-NEXT: andb $7, %ch -; CHECK-NEXT: movb %ch, %cl -; CHECK-NEXT: shrl %cl, %esi -; CHECK-NEXT: leal (%edx,%edx), %eax -; CHECK-NEXT: xorb $31, %cl -; CHECK-NEXT: shll %cl, %eax -; CHECK-NEXT: orl %esi, %eax -; CHECK-NEXT: movb %ch, %cl +; CHECK-NEXT: movb {{[0-9]+}}(%esp), %cl +; CHECK-NEXT: andb $7, %cl +; CHECK-NEXT: shrdl %cl, %edx, %eax ; CHECK-NEXT: shrl %cl, %edx -; CHECK-NEXT: popl %esi ; CHECK-NEXT: retl %and = and i32 %test, 7 %sh_prom = zext i32 %and to i64 @@ -72,20 +58,12 @@ define i64 @test4(i64 %xx, i32 %test) nounwind { ; CHECK-LABEL: test4: ; CHECK: # BB#0: -; CHECK-NEXT: pushl %esi -; CHECK-NEXT: movl {{[0-9]+}}(%esp), %esi +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax ; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx -; CHECK-NEXT: movb {{[0-9]+}}(%esp), %ch -; CHECK-NEXT: andb $7, %ch -; CHECK-NEXT: movb %ch, %cl -; CHECK-NEXT: shrl %cl, %esi -; CHECK-NEXT: leal (%edx,%edx), %eax -; CHECK-NEXT: xorb $31, %cl -; CHECK-NEXT: shll %cl, %eax -; CHECK-NEXT: orl %esi, %eax -; CHECK-NEXT: movb %ch, %cl +; CHECK-NEXT: movb {{[0-9]+}}(%esp), %cl +; CHECK-NEXT: andb $7, %cl +; CHECK-NEXT: shrdl %cl, %edx, %eax ; CHECK-NEXT: sarl %cl, %edx -; CHECK-NEXT: popl %esi ; CHECK-NEXT: retl %and = and i32 %test, 7 %sh_prom = zext i32 %and to i64 Index: test/CodeGen/X86/shift-double.ll =================================================================== --- test/CodeGen/X86/shift-double.ll +++ test/CodeGen/X86/shift-double.ll @@ -151,19 +151,13 @@ ; CHECK-LABEL: test8: ; CHECK: # BB#0: ; CHECK-NEXT: pushl %esi -; CHECK-NEXT: movb {{[0-9]+}}(%esp), %ch -; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax +; CHECK-NEXT: movb {{[0-9]+}}(%esp), %cl ; CHECK-NEXT: movl {{[0-9]+}}(%esp), %esi -; CHECK-NEXT: movb %ch, %cl -; CHECK-NEXT: shll %cl, %esi -; CHECK-NEXT: movl %eax, %edx -; CHECK-NEXT: shrl %edx -; CHECK-NEXT: andb $31, %cl -; CHECK-NEXT: xorb $31, %cl -; CHECK-NEXT: shrl %cl, %edx -; CHECK-NEXT: orl %esi, %edx -; CHECK-NEXT: movb %ch, %cl +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx +; CHECK-NEXT: movl %esi, %eax ; CHECK-NEXT: shll %cl, %eax +; CHECK-NEXT: andb $31, %cl +; CHECK-NEXT: shldl %cl, %esi, %edx ; CHECK-NEXT: popl %esi ; CHECK-NEXT: retl %and = and i32 %bits, 31 @@ -176,18 +170,13 @@ ; CHECK-LABEL: test9: ; CHECK: # BB#0: ; CHECK-NEXT: pushl %esi -; CHECK-NEXT: movb {{[0-9]+}}(%esp), %ch +; CHECK-NEXT: movb {{[0-9]+}}(%esp), %cl +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax ; CHECK-NEXT: movl {{[0-9]+}}(%esp), %esi -; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx -; CHECK-NEXT: movb %ch, %cl -; CHECK-NEXT: shrl %cl, %esi -; CHECK-NEXT: leal (%edx,%edx), %eax -; CHECK-NEXT: andb $31, %cl -; CHECK-NEXT: xorb $31, %cl -; CHECK-NEXT: shll %cl, %eax -; CHECK-NEXT: orl %esi, %eax -; CHECK-NEXT: movb %ch, %cl +; CHECK-NEXT: movl %esi, %edx ; CHECK-NEXT: sarl %cl, %edx +; CHECK-NEXT: andb $31, %cl +; CHECK-NEXT: shrdl %cl, %esi, %eax ; CHECK-NEXT: popl %esi ; CHECK-NEXT: retl %and = and i32 %bits, 31 @@ -200,18 +189,13 @@ ; CHECK-LABEL: test10: ; CHECK: # BB#0: ; CHECK-NEXT: pushl %esi -; CHECK-NEXT: movb {{[0-9]+}}(%esp), %ch +; CHECK-NEXT: movb {{[0-9]+}}(%esp), %cl +; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax ; CHECK-NEXT: movl {{[0-9]+}}(%esp), %esi -; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx -; CHECK-NEXT: movb %ch, %cl -; CHECK-NEXT: shrl %cl, %esi -; CHECK-NEXT: leal (%edx,%edx), %eax -; CHECK-NEXT: andb $31, %cl -; CHECK-NEXT: xorb $31, %cl -; CHECK-NEXT: shll %cl, %eax -; CHECK-NEXT: orl %esi, %eax -; CHECK-NEXT: movb %ch, %cl +; CHECK-NEXT: movl %esi, %edx ; CHECK-NEXT: shrl %cl, %edx +; CHECK-NEXT: andb $31, %cl +; CHECK-NEXT: shrdl %cl, %esi, %eax ; CHECK-NEXT: popl %esi ; CHECK-NEXT: retl %and = and i32 %bits, 31