]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gcc.target/riscv/rvv/vsetvl/vlmax_phi-20.c
RISC-V: Simplify testcase condition for RVV tests [NFC]
[gcc.git] / gcc / testsuite / gcc.target / riscv / rvv / vsetvl / vlmax_phi-20.c
1 /* { dg-do compile } */
2 /* { dg-options "-march=rv32gcv -mabi=ilp32" } */
3
4 #include "riscv_vector.h"
5
6 /* The for loop body should not have vsetvl instruction. */
7 void f (void * restrict in, void * restrict out, int n, int cond)
8 {
9 switch (cond)
10 {
11 case 1:{
12 vuint8mf2_t v = *(vuint8mf2_t*)(in + 100);
13 *(vuint8mf2_t*)(out + 100) = v;
14 break;
15 }
16 case 2:{
17 vuint8mf2_t v = *(vuint8mf2_t*)(in + 200);
18 *(vuint8mf2_t*)(out + 100) = v;
19 break;
20 }
21 case 3:{
22 vuint8mf2_t v = *(vuint8mf2_t*)(in + 300);
23 *(vuint8mf2_t*)(out + 100) = v;
24 break;
25 }
26 default:{
27 vuint8mf2_t v = *(vuint8mf2_t*)(in + 400);
28 *(vuint8mf2_t*)(out + 400) = v;
29 break;
30 }
31 }
32 for (int i = 0; i < n; i++)
33 {
34 vuint8mf2_t v = *(vuint8mf2_t*)(in + i);
35 *(vuint8mf2_t*)(out + i) = v;
36 }
37 }
38
39 /* { dg-final { scan-assembler-times {vsetvli\s+[a-x0-9]+,\s*zero,\s*e8,\s*mf2,\s*t[au],\s*m[au]} 4 { target { no-opts "-O0" no-opts "-Os" no-opts "-funroll-loops" no-opts "-g" no-opts "-flto" } } } } */
40 /* { dg-final { scan-assembler-times {ble\t[a-x0-9]+,zero,.L[0-9]+\s+\.L[0-9]+\:\s+vle8\.v\s+v[0-9]+,0\([a-x0-9]+\)} 1 { target { no-opts "-O0" no-opts "-Os" no-opts "-funroll-loops" no-opts "-g" no-opts "-flto" } } } } */
This page took 0.037131 seconds and 5 git commands to generate.