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/vadd_vv.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 riscv/insns/vadd_vv.h (limited to 'riscv/insns/vadd_vv.h') diff --git a/riscv/insns/vadd_vv.h b/riscv/insns/vadd_vv.h new file mode 100644 index 0000000..45c6bdc --- /dev/null +++ b/riscv/insns/vadd_vv.h @@ -0,0 +1,5 @@ +// vadd.vv vd, vs1, vs2, vm +VI_VV_LOOP +({ + vd = vs1 + vs2; +}) -- cgit v1.1