mirror of https://github.com/xemu-project/xemu.git
target/riscv: Split out the vill from vtype
We need not specially process vtype when XLEN changes. Signed-off-by: LIU Zhiwei <zhiwei_liu@c-sky.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 20220120122050.41546-16-zhiwei_liu@c-sky.com Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
4208dc7e9e
commit
d96a271a8d
|
@ -125,6 +125,7 @@ struct CPURISCVState {
|
||||||
target_ulong vl;
|
target_ulong vl;
|
||||||
target_ulong vstart;
|
target_ulong vstart;
|
||||||
target_ulong vtype;
|
target_ulong vtype;
|
||||||
|
bool vill;
|
||||||
|
|
||||||
target_ulong pc;
|
target_ulong pc;
|
||||||
target_ulong load_res;
|
target_ulong load_res;
|
||||||
|
|
|
@ -60,8 +60,7 @@ void cpu_get_tb_cpu_state(CPURISCVState *env, target_ulong *pc,
|
||||||
uint32_t maxsz = vlmax << sew;
|
uint32_t maxsz = vlmax << sew;
|
||||||
bool vl_eq_vlmax = (env->vstart == 0) && (vlmax == env->vl) &&
|
bool vl_eq_vlmax = (env->vstart == 0) && (vlmax == env->vl) &&
|
||||||
(maxsz >= 8);
|
(maxsz >= 8);
|
||||||
flags = FIELD_DP32(flags, TB_FLAGS, VILL,
|
flags = FIELD_DP32(flags, TB_FLAGS, VILL, env->vill);
|
||||||
FIELD_EX64(env->vtype, VTYPE, VILL));
|
|
||||||
flags = FIELD_DP32(flags, TB_FLAGS, SEW, sew);
|
flags = FIELD_DP32(flags, TB_FLAGS, SEW, sew);
|
||||||
flags = FIELD_DP32(flags, TB_FLAGS, LMUL,
|
flags = FIELD_DP32(flags, TB_FLAGS, LMUL,
|
||||||
FIELD_EX64(env->vtype, VTYPE, VLMUL));
|
FIELD_EX64(env->vtype, VTYPE, VLMUL));
|
||||||
|
|
|
@ -283,7 +283,18 @@ static RISCVException write_fcsr(CPURISCVState *env, int csrno,
|
||||||
static RISCVException read_vtype(CPURISCVState *env, int csrno,
|
static RISCVException read_vtype(CPURISCVState *env, int csrno,
|
||||||
target_ulong *val)
|
target_ulong *val)
|
||||||
{
|
{
|
||||||
*val = env->vtype;
|
uint64_t vill;
|
||||||
|
switch (env->xl) {
|
||||||
|
case MXL_RV32:
|
||||||
|
vill = (uint32_t)env->vill << 31;
|
||||||
|
break;
|
||||||
|
case MXL_RV64:
|
||||||
|
vill = (uint64_t)env->vill << 63;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
g_assert_not_reached();
|
||||||
|
}
|
||||||
|
*val = (target_ulong)vill | env->vtype;
|
||||||
return RISCV_EXCP_NONE;
|
return RISCV_EXCP_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -124,8 +124,8 @@ static bool vector_needed(void *opaque)
|
||||||
|
|
||||||
static const VMStateDescription vmstate_vector = {
|
static const VMStateDescription vmstate_vector = {
|
||||||
.name = "cpu/vector",
|
.name = "cpu/vector",
|
||||||
.version_id = 1,
|
.version_id = 2,
|
||||||
.minimum_version_id = 1,
|
.minimum_version_id = 2,
|
||||||
.needed = vector_needed,
|
.needed = vector_needed,
|
||||||
.fields = (VMStateField[]) {
|
.fields = (VMStateField[]) {
|
||||||
VMSTATE_UINT64_ARRAY(env.vreg, RISCVCPU, 32 * RV_VLEN_MAX / 64),
|
VMSTATE_UINT64_ARRAY(env.vreg, RISCVCPU, 32 * RV_VLEN_MAX / 64),
|
||||||
|
@ -134,6 +134,7 @@ static const VMStateDescription vmstate_vector = {
|
||||||
VMSTATE_UINTTL(env.vl, RISCVCPU),
|
VMSTATE_UINTTL(env.vl, RISCVCPU),
|
||||||
VMSTATE_UINTTL(env.vstart, RISCVCPU),
|
VMSTATE_UINTTL(env.vstart, RISCVCPU),
|
||||||
VMSTATE_UINTTL(env.vtype, RISCVCPU),
|
VMSTATE_UINTTL(env.vtype, RISCVCPU),
|
||||||
|
VMSTATE_BOOL(env.vill, RISCVCPU),
|
||||||
VMSTATE_END_OF_LIST()
|
VMSTATE_END_OF_LIST()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -52,7 +52,8 @@ target_ulong HELPER(vsetvl)(CPURISCVState *env, target_ulong s1,
|
||||||
|| (ediv != 0)
|
|| (ediv != 0)
|
||||||
|| (reserved != 0)) {
|
|| (reserved != 0)) {
|
||||||
/* only set vill bit. */
|
/* only set vill bit. */
|
||||||
env->vtype = FIELD_DP64(0, VTYPE, VILL, 1);
|
env->vill = 1;
|
||||||
|
env->vtype = 0;
|
||||||
env->vl = 0;
|
env->vl = 0;
|
||||||
env->vstart = 0;
|
env->vstart = 0;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue