From: Elena Lepilkina Date: Fri, 16 Dec 2022 06:49:11 +0000 (+0300) Subject: [Precommit][RISCV] Test folding for RISCVISD::BR_CC node X-Git-Tag: upstream/17.0.6~22991 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ea21fa3a5977e769a8ba8e7fb7e867dad9306efa;p=platform%2Fupstream%2Fllvm.git [Precommit][RISCV] Test folding for RISCVISD::BR_CC node Precommit test for https://reviews.llvm.org/D140206 --- diff --git a/llvm/test/CodeGen/RISCV/branch_zero.ll b/llvm/test/CodeGen/RISCV/branch_zero.ll new file mode 100644 index 0000000..2d6a3c9 --- /dev/null +++ b/llvm/test/CodeGen/RISCV/branch_zero.ll @@ -0,0 +1,87 @@ +; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py +; RUN: llc -mtriple=riscv64 -verify-machineinstrs < %s \ +; RUN: | FileCheck %s + +define void @foo(i16 %finder_idx) { +; CHECK-LABEL: foo: +; CHECK: # %bb.0: # %entry +; CHECK-NEXT: .LBB0_1: # %for.body +; CHECK-NEXT: # =>This Inner Loop Header: Depth=1 +; CHECK-NEXT: slli a0, a0, 48 +; CHECK-NEXT: srai a0, a0, 48 +; CHECK-NEXT: bltz a0, .LBB0_4 +; CHECK-NEXT: # %bb.2: # %while.cond.preheader.i +; CHECK-NEXT: # in Loop: Header=BB0_1 Depth=1 +; CHECK-NEXT: li a0, 0 +; CHECK-NEXT: bnez zero, .LBB0_1 +; CHECK-NEXT: # %bb.3: # %while.body +; CHECK-NEXT: .LBB0_4: # %while.cond1.preheader.i +entry: + br label %for.body + +for.body: + %info = phi i16 [ 0, %if.then ], [ %finder_idx, %entry ] + %cmp.i = icmp sgt i16 %info, -1 + %tobool = icmp eq ptr poison, null + br i1 %cmp.i, label %while.cond.preheader.i, label %while.cond1.preheader.i + +while.cond1.preheader.i: + unreachable + +while.cond.preheader.i: + br label %exit + +exit: + br i1 %tobool, label %exit1, label %while.body + +while.body: + unreachable + +exit1: + br label %if.then + +if.then: + br label %for.body +} + +define void @bar(i16 %finder_idx) { +; CHECK-LABEL: bar: +; CHECK: # %bb.0: # %entry +; CHECK-NEXT: .LBB1_1: # %for.body +; CHECK-NEXT: # =>This Inner Loop Header: Depth=1 +; CHECK-NEXT: slli a0, a0, 48 +; CHECK-NEXT: srai a0, a0, 48 +; CHECK-NEXT: bgez a0, .LBB1_4 +; CHECK-NEXT: # %bb.2: # %while.cond.preheader.i +; CHECK-NEXT: # in Loop: Header=BB1_1 Depth=1 +; CHECK-NEXT: li a0, 0 +; CHECK-NEXT: bnez zero, .LBB1_1 +; CHECK-NEXT: # %bb.3: # %while.body +; CHECK-NEXT: .LBB1_4: # %while.cond1.preheader.i +entry: + br label %for.body + +for.body: + %info = phi i16 [ 0, %if.then ], [ %finder_idx, %entry ] + %cmp.i = icmp sle i16 %info, -1 + %tobool = icmp eq ptr poison, null + br i1 %cmp.i, label %while.cond.preheader.i, label %while.cond1.preheader.i + +while.cond1.preheader.i: + unreachable + +while.cond.preheader.i: + br label %exit + +exit: + br i1 %tobool, label %exit1, label %while.body + +while.body: + unreachable + +exit1: + br label %if.then + +if.then: + br label %for.body +}