[llvm] 01b3e16 - [X86] Use the same sequence for i128 ISD::ABS on 64-bit targets as we use for i64 on 32-bit targets.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 7 12:21:19 PDT 2020
Author: Craig Topper
Date: 2020-09-07T11:14:05-07:00
New Revision: 01b3e167575412792901c705032e304ef184a75d
URL: https://github.com/llvm/llvm-project/commit/01b3e167575412792901c705032e304ef184a75d
DIFF: https://github.com/llvm/llvm-project/commit/01b3e167575412792901c705032e304ef184a75d.diff
LOG: [X86] Use the same sequence for i128 ISD::ABS on 64-bit targets as we use for i64 on 32-bit targets.
Differential Revision: https://reviews.llvm.org/D87214
Added:
Modified:
llvm/lib/Target/X86/X86ISelLowering.cpp
llvm/test/CodeGen/X86/abs.ll
llvm/test/CodeGen/X86/iabs.ll
Removed:
################################################################################
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 1395db57b57a..ad8704f686c1 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -195,6 +195,8 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
setOperationAction(ISD::ABS , MVT::i32 , Custom);
}
setOperationAction(ISD::ABS , MVT::i64 , Custom);
+ if (Subtarget.is64Bit())
+ setOperationAction(ISD::ABS , MVT::i128 , Custom);
// Funnel shifts.
for (auto ShiftOp : {ISD::FSHL, ISD::FSHR}) {
@@ -29719,9 +29721,12 @@ void X86TargetLowering::ReplaceNodeResults(SDNode *N,
return;
}
case ISD::ABS: {
- assert(N->getValueType(0) == MVT::i64 &&
+ assert((Subtarget.is64Bit() || N->getValueType(0) == MVT::i64) &&
"Unexpected type (!= i64) on ABS.");
- MVT HalfT = MVT::i32;
+ assert((!Subtarget.is64Bit() || N->getValueType(0) == MVT::i128) &&
+ "Unexpected type (!= i128) on ABS.");
+ MVT VT = N->getSimpleValueType(0);
+ MVT HalfT = VT == MVT::i128 ? MVT::i64 : MVT::i32;
SDValue Lo, Hi, Tmp;
SDVTList VTList = DAG.getVTList(HalfT, MVT::i1);
@@ -29737,7 +29742,7 @@ void X86TargetLowering::ReplaceNodeResults(SDNode *N,
SDValue(Lo.getNode(), 1));
Hi = DAG.getNode(ISD::XOR, dl, HalfT, Tmp, Hi);
Lo = DAG.getNode(ISD::XOR, dl, HalfT, Tmp, Lo);
- Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi));
+ Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi));
return;
}
// We might have generated v2f32 FMIN/FMAX operations. Widen them to v4f32.
diff --git a/llvm/test/CodeGen/X86/abs.ll b/llvm/test/CodeGen/X86/abs.ll
index 345830676aba..63faafc10ec8 100644
--- a/llvm/test/CodeGen/X86/abs.ll
+++ b/llvm/test/CodeGen/X86/abs.ll
@@ -132,13 +132,14 @@ define i64 @test_i64(i64 %a) nounwind {
define i128 @test_i128(i128 %a) nounwind {
; X64-LABEL: test_i128:
; X64: # %bb.0:
-; X64-NEXT: xorl %edx, %edx
+; X64-NEXT: movq %rsi, %rdx
; X64-NEXT: movq %rdi, %rax
-; X64-NEXT: negq %rax
-; X64-NEXT: sbbq %rsi, %rdx
-; X64-NEXT: testq %rsi, %rsi
-; X64-NEXT: cmovnsq %rdi, %rax
-; X64-NEXT: cmovnsq %rsi, %rdx
+; X64-NEXT: movq %rsi, %rcx
+; X64-NEXT: sarq $63, %rcx
+; X64-NEXT: addq %rcx, %rax
+; X64-NEXT: adcq %rcx, %rdx
+; X64-NEXT: xorq %rcx, %rax
+; X64-NEXT: xorq %rcx, %rdx
; X64-NEXT: retq
;
; X86-LABEL: test_i128:
diff --git a/llvm/test/CodeGen/X86/iabs.ll b/llvm/test/CodeGen/X86/iabs.ll
index d9fc452510c7..f052718d9840 100644
--- a/llvm/test/CodeGen/X86/iabs.ll
+++ b/llvm/test/CodeGen/X86/iabs.ll
@@ -191,13 +191,14 @@ define i128 @test_i128(i128 %a) nounwind {
;
; X64-LABEL: test_i128:
; X64: # %bb.0:
-; X64-NEXT: xorl %edx, %edx
+; X64-NEXT: movq %rsi, %rdx
; X64-NEXT: movq %rdi, %rax
-; X64-NEXT: negq %rax
-; X64-NEXT: sbbq %rsi, %rdx
-; X64-NEXT: testq %rsi, %rsi
-; X64-NEXT: cmovnsq %rdi, %rax
-; X64-NEXT: cmovnsq %rsi, %rdx
+; X64-NEXT: movq %rsi, %rcx
+; X64-NEXT: sarq $63, %rcx
+; X64-NEXT: addq %rcx, %rax
+; X64-NEXT: adcq %rcx, %rdx
+; X64-NEXT: xorq %rcx, %rax
+; X64-NEXT: xorq %rcx, %rdx
; X64-NEXT: retq
%tmp1neg = sub i128 0, %a
%b = icmp sgt i128 %a, -1
More information about the llvm-commits
mailing list