From 1aeb13bd9cbc1be096af7d4f9da9d5fa566f606b Mon Sep 17 00:00:00 2001 From: Akira Hatanaka Date: Mon, 20 May 2013 18:18:07 +0000 Subject: [PATCH] [mips] Add (setne $lhs, 0) instruction selection pattern. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182307 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/MipsInstrInfo.td | 2 ++ test/CodeGen/Mips/setcc-se.ll | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/lib/Target/Mips/MipsInstrInfo.td b/lib/Target/Mips/MipsInstrInfo.td index f7d21ce4d35..f37a93e8877 100644 --- a/lib/Target/Mips/MipsInstrInfo.td +++ b/lib/Target/Mips/MipsInstrInfo.td @@ -1282,6 +1282,8 @@ multiclass SeteqPats { def : MipsPat<(seteq RC:$lhs, 0), (SLTiuOp RC:$lhs, 1)>; + def : MipsPat<(setne RC:$lhs, 0), + (SLTuOp ZEROReg, RC:$lhs)>; def : MipsPat<(seteq RC:$lhs, RC:$rhs), (SLTiuOp (XOROp RC:$lhs, RC:$rhs), 1)>; def : MipsPat<(setne RC:$lhs, RC:$rhs), diff --git a/test/CodeGen/Mips/setcc-se.ll b/test/CodeGen/Mips/setcc-se.ll index 6679536164b..03af9138608 100644 --- a/test/CodeGen/Mips/setcc-se.ll +++ b/test/CodeGen/Mips/setcc-se.ll @@ -9,3 +9,13 @@ entry: %conv = zext i1 %cmp to i32 ret i32 %conv } + +; CHECK: setne0: +; CHECK: sltu ${{[0-9]+}}, $zero, $4 + +define i32 @setne0(i32 %a) { +entry: + %cmp = icmp ne i32 %a, 0 + %conv = zext i1 %cmp to i32 + ret i32 %conv +} -- 2.34.1