Skip to content

Commit 7fea6be

Browse files
committed
Pre-commit tests
1 parent e75f054 commit 7fea6be

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

llvm/test/CodeGen/RISCV/rvv/vl-opt.ll

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,3 +198,28 @@ define void @fadd_fcmp_select_copy(<vscale x 4 x float> %v, <vscale x 4 x i1> %c
198198
call void @llvm.riscv.vsm(<vscale x 4 x i1> %select, ptr %p, iXLen %vl)
199199
ret void
200200
}
201+
202+
define <vscale x 8 x i32> @vcompress_cmp(<vscale x 8 x i32> %a, <vscale x 8 x i32> %b, <vscale x 8 x i32> %c, iXLen %vl) {
203+
; CHECK-LABEL: vcompress_cmp:
204+
; CHECK: # %bb.0:
205+
; CHECK-NEXT: vsetvli a1, zero, e32, m4, ta, ma
206+
; CHECK-NEXT: vmseq.vv v20, v8, v12
207+
; CHECK-NEXT: vsetvli zero, a0, e32, m4, ta, ma
208+
; CHECK-NEXT: vcompress.vm v8, v16, v20
209+
; CHECK-NEXT: ret
210+
%cmp = icmp eq <vscale x 8 x i32> %a, %b
211+
%compress = call <vscale x 8 x i32> @llvm.riscv.vcompress.nxv8i32(<vscale x 8 x i32> poison, <vscale x 8 x i32> %c, <vscale x 8 x i1> %cmp, iXLen %vl)
212+
ret <vscale x 8 x i32> %compress
213+
}
214+
215+
define <vscale x 8 x i32> @vcompress_add(<vscale x 8 x i32> %a, <vscale x 8 x i32> %b, <vscale x 8 x i1> %c, iXLen %vl) {
216+
; CHECK-LABEL: vcompress_add:
217+
; CHECK: # %bb.0:
218+
; CHECK-NEXT: vsetvli zero, a0, e32, m4, ta, ma
219+
; CHECK-NEXT: vadd.vv v12, v8, v12
220+
; CHECK-NEXT: vcompress.vm v8, v12, v0
221+
; CHECK-NEXT: ret
222+
%add = add <vscale x 8 x i32> %a, %b
223+
%compress = call <vscale x 8 x i32> @llvm.riscv.vcompress.nxv8i32(<vscale x 8 x i32> poison, <vscale x 8 x i32> %add, <vscale x 8 x i1> %c, iXLen %vl)
224+
ret <vscale x 8 x i32> %compress
225+
}

0 commit comments

Comments
 (0)