target/riscv: rvv-1.0: remove vmford.vv and vmford.vf
Signed-off-by: Frank Chang <frank.chang@sifive.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20211210075704.23951-58-frank.chang@sifive.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
a12c812d19
commit
e29c5cefd8
@ -902,12 +902,6 @@ DEF_HELPER_6(vmfgt_vf_d, void, ptr, ptr, i64, ptr, env, i32)
|
||||
DEF_HELPER_6(vmfge_vf_h, void, ptr, ptr, i64, ptr, env, i32)
|
||||
DEF_HELPER_6(vmfge_vf_w, void, ptr, ptr, i64, ptr, env, i32)
|
||||
DEF_HELPER_6(vmfge_vf_d, void, ptr, ptr, i64, ptr, env, i32)
|
||||
DEF_HELPER_6(vmford_vv_h, void, ptr, ptr, ptr, ptr, env, i32)
|
||||
DEF_HELPER_6(vmford_vv_w, void, ptr, ptr, ptr, ptr, env, i32)
|
||||
DEF_HELPER_6(vmford_vv_d, void, ptr, ptr, ptr, ptr, env, i32)
|
||||
DEF_HELPER_6(vmford_vf_h, void, ptr, ptr, i64, ptr, env, i32)
|
||||
DEF_HELPER_6(vmford_vf_w, void, ptr, ptr, i64, ptr, env, i32)
|
||||
DEF_HELPER_6(vmford_vf_d, void, ptr, ptr, i64, ptr, env, i32)
|
||||
|
||||
DEF_HELPER_5(vfclass_v_h, void, ptr, ptr, ptr, env, i32)
|
||||
DEF_HELPER_5(vfclass_v_w, void, ptr, ptr, ptr, env, i32)
|
||||
|
@ -582,8 +582,6 @@ vmfle_vv 011001 . ..... ..... 001 ..... 1010111 @r_vm
|
||||
vmfle_vf 011001 . ..... ..... 101 ..... 1010111 @r_vm
|
||||
vmfgt_vf 011101 . ..... ..... 101 ..... 1010111 @r_vm
|
||||
vmfge_vf 011111 . ..... ..... 101 ..... 1010111 @r_vm
|
||||
vmford_vv 011010 . ..... ..... 001 ..... 1010111 @r_vm
|
||||
vmford_vf 011010 . ..... ..... 101 ..... 1010111 @r_vm
|
||||
vfclass_v 010011 . ..... 10000 001 ..... 1010111 @r2_vm
|
||||
vfmerge_vfm 010111 0 ..... ..... 101 ..... 1010111 @r_vm_0
|
||||
vfmv_v_f 010111 1 00000 ..... 101 ..... 1010111 @r2
|
||||
|
@ -2425,7 +2425,6 @@ GEN_OPFVV_TRANS(vmfeq_vv, opfvv_cmp_check)
|
||||
GEN_OPFVV_TRANS(vmfne_vv, opfvv_cmp_check)
|
||||
GEN_OPFVV_TRANS(vmflt_vv, opfvv_cmp_check)
|
||||
GEN_OPFVV_TRANS(vmfle_vv, opfvv_cmp_check)
|
||||
GEN_OPFVV_TRANS(vmford_vv, opfvv_cmp_check)
|
||||
|
||||
static bool opfvf_cmp_check(DisasContext *s, arg_rmrr *a)
|
||||
{
|
||||
@ -2441,7 +2440,6 @@ GEN_OPFVF_TRANS(vmflt_vf, opfvf_cmp_check)
|
||||
GEN_OPFVF_TRANS(vmfle_vf, opfvf_cmp_check)
|
||||
GEN_OPFVF_TRANS(vmfgt_vf, opfvf_cmp_check)
|
||||
GEN_OPFVF_TRANS(vmfge_vf, opfvf_cmp_check)
|
||||
GEN_OPFVF_TRANS(vmford_vf, opfvf_cmp_check)
|
||||
|
||||
/* Vector Floating-Point Classify Instruction */
|
||||
GEN_OPFV_TRANS(vfclass_v, opfv_check)
|
||||
|
@ -3630,13 +3630,6 @@ GEN_VEXT_CMP_VF(vmfge_vf_h, uint16_t, H2, vmfge16)
|
||||
GEN_VEXT_CMP_VF(vmfge_vf_w, uint32_t, H4, vmfge32)
|
||||
GEN_VEXT_CMP_VF(vmfge_vf_d, uint64_t, H8, vmfge64)
|
||||
|
||||
GEN_VEXT_CMP_VV_ENV(vmford_vv_h, uint16_t, H2, !float16_unordered_quiet)
|
||||
GEN_VEXT_CMP_VV_ENV(vmford_vv_w, uint32_t, H4, !float32_unordered_quiet)
|
||||
GEN_VEXT_CMP_VV_ENV(vmford_vv_d, uint64_t, H8, !float64_unordered_quiet)
|
||||
GEN_VEXT_CMP_VF(vmford_vf_h, uint16_t, H2, !float16_unordered_quiet)
|
||||
GEN_VEXT_CMP_VF(vmford_vf_w, uint32_t, H4, !float32_unordered_quiet)
|
||||
GEN_VEXT_CMP_VF(vmford_vf_d, uint64_t, H8, !float64_unordered_quiet)
|
||||
|
||||
/* Vector Floating-Point Classify Instruction */
|
||||
#define OPIVV1(NAME, TD, T2, TX2, HD, HS2, OP) \
|
||||
static void do_##NAME(void *vd, void *vs2, int i) \
|
||||
|
Loading…
Reference in New Issue
Block a user