From 655aedc0ebd2326d69d389bc714c2d622bf2cb08 Mon Sep 17 00:00:00 2001 From: Chih-Min Chao Date: Thu, 6 Jun 2019 03:24:27 -0700 Subject: rvv: add integer/fixed-point/mask/reduction/permutation instructions based on v-spec 0.7.1, support sections: 12/13/15.1 ~ 15.2/16/17 element size: 8/16/32/64 support ediv: 1 Signed-off-by: Bruce Hoult Signed-off-by: Chih-Min Chao Signed-off-by: Dave Wen --- riscv/insns/vmin_vv.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 riscv/insns/vmin_vv.h (limited to 'riscv/insns/vmin_vv.h') diff --git a/riscv/insns/vmin_vv.h b/riscv/insns/vmin_vv.h new file mode 100644 index 0000000..21da0b3 --- /dev/null +++ b/riscv/insns/vmin_vv.h @@ -0,0 +1,11 @@ +// vmin.vv vd, vs2, vs1, vm # Vector-vector +VI_VV_LOOP +({ + if (vs1 <= vs2) { + vd = vs1; + } else { + vd = vs2; + } + + +}) -- cgit v1.1