Re: [RFC PATCH 18/43] target/loongarch: Implement vsat

2022-12-24 Thread Richard Henderson
On 12/24/22 00:16, Song Gao wrote: +TRANS(vsat_b, gen_vv_i, gen_helper_vsat_b) +TRANS(vsat_h, gen_vv_i, gen_helper_vsat_h) +TRANS(vsat_w, gen_vv_i, gen_helper_vsat_w) +TRANS(vsat_d, gen_vv_i, gen_helper_vsat_d) +TRANS(vsat_bu, gen_vv_i, gen_helper_vsat_bu) +TRANS(vsat_hu, gen_vv_i, gen_helper_vsa

[RFC PATCH 18/43] target/loongarch: Implement vsat

2022-12-24 Thread Song Gao
This patch includes: - VSAT.{B/H/W/D}[U]. Signed-off-by: Song Gao --- target/loongarch/disas.c| 9 +++ target/loongarch/helper.h | 9 +++ target/loongarch/insn_trans/trans_lsx.c.inc | 9 +++ target/loongarch/insns.decode | 12 target/lo