diff options
author | Chih-Min Chao <chihmin.chao@sifive.com> | 2019-06-06 03:24:27 -0700 |
---|---|---|
committer | Chih-Min Chao <chihmin.chao@sifive.com> | 2019-06-18 08:56:11 -0700 |
commit | 655aedc0ebd2326d69d389bc714c2d622bf2cb08 (patch) | |
tree | aa2cf79905906cde9ff6d10c63d1499fb4a484a1 /riscv/insns/vmax_vv.h | |
parent | 235aa58bfb439c9782defe8bdd21f792e40aac31 (diff) | |
download | spike-655aedc0ebd2326d69d389bc714c2d622bf2cb08.zip spike-655aedc0ebd2326d69d389bc714c2d622bf2cb08.tar.gz spike-655aedc0ebd2326d69d389bc714c2d622bf2cb08.tar.bz2 |
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 <bruce@hoult.org>
Signed-off-by: Chih-Min Chao <chihmin.chao@sifive.com>
Signed-off-by: Dave Wen <dave.wen@sifive.com>
Diffstat (limited to 'riscv/insns/vmax_vv.h')
-rw-r--r-- | riscv/insns/vmax_vv.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/riscv/insns/vmax_vv.h b/riscv/insns/vmax_vv.h new file mode 100644 index 0000000..b9f15c5 --- /dev/null +++ b/riscv/insns/vmax_vv.h @@ -0,0 +1,10 @@ +// vmax.vv vd, vs2, vs1, vm # Vector-vector +VI_VV_LOOP +({ + if (vs1 >= vs2) { + vd = vs1; + } else { + vd = vs2; + } + +}) |