[PATCH] D15420: [mips] Do not use SLL for ANY_EXTEND nodes as the high bits are undefined.
Vasileios Kalintiris via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 10 07:35:37 PST 2015
vkalintiris created this revision.
vkalintiris added a reviewer: dsanders.
vkalintiris added a subscriber: llvm-commits.
Herald added a subscriber: dsanders.
http://reviews.llvm.org/D15420
Files:
lib/Target/Mips/Mips64InstrInfo.td
test/CodeGen/Mips/cconv/return-struct.ll
test/CodeGen/Mips/fcopysign-f32-f64.ll
Index: test/CodeGen/Mips/fcopysign-f32-f64.ll
===================================================================
--- test/CodeGen/Mips/fcopysign-f32-f64.ll
+++ test/CodeGen/Mips/fcopysign-f32-f64.ll
@@ -8,7 +8,8 @@
define float @func2(float %d, double %f) nounwind readnone {
entry:
-; 64: func2
+; CHECK-LABEL: func2:
+
; 64-DAG: lui $[[T0:[0-9]+]], 32767
; 64-DAG: ori $[[MSK0:[0-9]+]], $[[T0]], 65535
; 64-DAG: and $[[AND0:[0-9]+]], ${{[0-9]+}}, $[[MSK0]]
@@ -30,17 +31,18 @@
define double @func3(double %d, float %f) nounwind readnone {
entry:
-
-; 64: func3
-; 64-DAG: daddiu $[[T0:[0-9]+]], $zero, 1
-; 64-DAG: dsll $[[T1:[0-9]+]], $[[T0]], 63
-; 64-DAG: daddiu $[[MSK0:[0-9]+]], $[[T1]], -1
-; 64-DAG: and $[[AND0:[0-9]+]], ${{[0-9]+}}, $[[MSK0]]
-; 64-DAG: srl $[[SRL:[0-9]+]], ${{[0-9]+}}, 31
-; 64-DAG: sll $[[SLL:[0-9]+]], $[[SRL]], 0
-; 64-DAG: dsll $[[DSLL:[0-9]+]], $[[SLL]], 63
-; 64: or $[[OR:[0-9]+]], $[[AND0]], $[[DSLL]]
-; 64: dmtc1 $[[OR]], $f0
+; CHECK-LABEL: func3:
+
+; 64-DAG: mfc1 $[[MFC:[0-9]+]], $f13
+; 64-DAG: srl $[[SRL:[0-9]+]], $[[MFC:[0-9]+]], 31
+; 64: dsll $[[DSLL:[0-9]+]], $[[SRL]], 63
+; 64-DAG: daddiu $[[R1:[0-9]+]], $zero, 1
+; 64-DAG: dsll $[[R2:[0-9]+]], $[[R1]], 63
+; 64-DAG: daddiu $[[R3:[0-9]+]], $[[R2]], -1
+; 64-DAG: dmfc1 $[[R0:[0-9]+]], $f0
+; 64: and $[[AND0:[0-9]+]], $[[R0]], $[[R3]]
+; 64: or $[[OR:[0-9]+]], $[[AND0]], $[[DSLL]]
+; 64: dmtc1 $[[OR]], $f0
; 64R2: ext ${{[0-9]+}}, ${{[0-9]+}}, 31, 1
; 64R2: dins $[[INS:[0-9]+]], ${{[0-9]+}}, 63, 1
@@ -51,4 +53,3 @@
%call = tail call double @copysign(double %add, double %conv) nounwind readnone
ret double %call
}
-
Index: test/CodeGen/Mips/cconv/return-struct.ll
===================================================================
--- test/CodeGen/Mips/cconv/return-struct.ll
+++ test/CodeGen/Mips/cconv/return-struct.ll
@@ -158,9 +158,6 @@
; sret pointer is already in $4
; N32-DAG: lui [[PTR_HI:\$[0-9]+]], %hi(struct_128xi16)
; N32-DAG: addiu [[PTR:\$[0-9]+]], [[PTR_HI]], %lo(struct_128xi16)
-; FIXME: This signext isn't necessary. Like integers, pointers are
-; but unlike integers, pointers cannot have the signext attribute.
-; N32-DAG: sll $5, [[PTR]], 0
; N32: jal memcpy
; sret pointer is already in $4
Index: lib/Target/Mips/Mips64InstrInfo.td
===================================================================
--- lib/Target/Mips/Mips64InstrInfo.td
+++ lib/Target/Mips/Mips64InstrInfo.td
@@ -512,7 +512,8 @@
(DROTRV GPR64:$rt, (EXTRACT_SUBREG GPR64:$rs, sub_32))>;
// 32-to-64-bit extension
-def : MipsPat<(i64 (anyext GPR32:$src)), (SLL64_32 GPR32:$src)>;
+def : MipsPat<(i64 (anyext GPR32:$src)),
+ (INSERT_SUBREG (i64 (IMPLICIT_DEF)), GPR32:$src, sub_32)>;
def : MipsPat<(i64 (zext GPR32:$src)), (DSRL (DSLL64_32 GPR32:$src), 32)>;
def : MipsPat<(i64 (sext GPR32:$src)), (SLL64_32 GPR32:$src)>;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15420.42431.patch
Type: text/x-patch
Size: 3009 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151210/b7aba031/attachment.bin>
More information about the llvm-commits
mailing list