[PATCH] D49290: [Mips][FastISel] Fix handling of icmp with i1 type.
Petar Jovanovic via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 17 08:03:02 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL337288: [Mips][FastISel] Fix handling of icmp with i1 type (authored by petarj, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D49290?vs=155880&id=155888#toc
Repository:
rL LLVM
https://reviews.llvm.org/D49290
Files:
llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
llvm/trunk/test/CodeGen/Mips/Fast-ISel/icmpi1.ll
llvm/trunk/test/CodeGen/Mips/Fast-ISel/sel1.ll
Index: llvm/trunk/test/CodeGen/Mips/Fast-ISel/icmpi1.ll
===================================================================
--- llvm/trunk/test/CodeGen/Mips/Fast-ISel/icmpi1.ll
+++ llvm/trunk/test/CodeGen/Mips/Fast-ISel/icmpi1.ll
@@ -0,0 +1,14 @@
+; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel=true -mcpu=mips32r2 \
+; RUN: < %s -verify-machineinstrs | FileCheck %s
+
+
+define zeroext i1 @foo(i8* nocapture readonly) {
+; CHECK-LABEL: foo
+; CHECK: lbu $[[REG0:[0-9]+]], 0($4)
+; CHECK-NEXT: xori $[[REG1:[0-9]+]], $[[REG0]], 1
+; CHECK-NEXT: andi $2, $[[REG1]], 1
+ %2 = load i8, i8* %0, align 1
+ %3 = trunc i8 %2 to i1
+ %4 = icmp ne i1 %3, true
+ ret i1 %4
+}
Index: llvm/trunk/test/CodeGen/Mips/Fast-ISel/sel1.ll
===================================================================
--- llvm/trunk/test/CodeGen/Mips/Fast-ISel/sel1.ll
+++ llvm/trunk/test/CodeGen/Mips/Fast-ISel/sel1.ll
@@ -7,13 +7,12 @@
; CHECK-LABEL: sel_i1:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: xor $1, $4, $zero
-; CHECK-NEXT: sltu $1, $zero, $1
; CHECK-NEXT: andi $1, $1, 1
; CHECK-NEXT: movn $6, $5, $1
; CHECK-NEXT: jr $ra
; CHECK-NEXT: move $2, $6
entry:
- %cond = icmp ne i1 %j, 0
+ %cond = xor i1 %j, false
%res = select i1 %cond, i1 %k, i1 %l
ret i1 %res
}
Index: llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
===================================================================
--- llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
+++ llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
@@ -2062,6 +2062,10 @@
if (VReg == 0)
return 0;
MVT VMVT = TLI.getValueType(DL, V->getType(), true).getSimpleVT();
+
+ if (VMVT == MVT::i1)
+ return 0;
+
if ((VMVT == MVT::i8) || (VMVT == MVT::i16)) {
unsigned TempReg = createResultReg(&Mips::GPR32RegClass);
if (!emitIntExt(VMVT, VReg, MVT::i32, TempReg, IsUnsigned))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49290.155888.patch
Type: text/x-patch
Size: 1882 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180717/c3295e12/attachment.bin>
More information about the llvm-commits
mailing list