Re: [RFC PATCH 36/43] target/loongarch: Implement vseq vsle vslt

2022-12-24 Thread Richard Henderson
On 12/24/22 00:16, Song Gao wrote: +DEF_HELPER_4(vseq_b, void, env, i32, i32, i32) +DEF_HELPER_4(vseq_h, void, env, i32, i32, i32) +DEF_HELPER_4(vseq_w, void, env, i32, i32, i32) +DEF_HELPER_4(vseq_d, void, env, i32, i32, i32) +DEF_HELPER_4(vseqi_b, void, env, i32, i32, i32) +DEF_HELPER_4(vseqi_h

[RFC PATCH 36/43] target/loongarch: Implement vseq vsle vslt

2022-12-24 Thread Song Gao
This patch includes: - VSEQ[I].{B/H/W/D}; - VSLE[I].{B/H/W/D}[U]; - VSLT[I].{B/H/W/D/}[U]. Signed-off-by: Song Gao --- target/loongarch/disas.c| 43 +++ target/loongarch/helper.h | 43 +++ target/loongarch/insn_trans/trans_lsx.c.inc | 43 +++ target/loong