target/tricore: Change effective address (ea) to target_ulong

as this is an effective address and those cannot be signed,
it should not be a signed integer.

Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Message-ID: <20230913105326.40832-11-kbastian@mail.uni-paderborn.de>
This commit is contained in:
Bastian Koppelmann 2023-09-13 12:53:26 +02:00
parent 824b2cb39c
commit ceada00084

View File

@ -2458,7 +2458,7 @@ static bool cdc_zero(target_ulong *psw)
return count == 0; return count == 0;
} }
static void save_context_upper(CPUTriCoreState *env, int ea) static void save_context_upper(CPUTriCoreState *env, target_ulong ea)
{ {
cpu_stl_data(env, ea, env->PCXI); cpu_stl_data(env, ea, env->PCXI);
cpu_stl_data(env, ea+4, psw_read(env)); cpu_stl_data(env, ea+4, psw_read(env));
@ -2478,7 +2478,7 @@ static void save_context_upper(CPUTriCoreState *env, int ea)
cpu_stl_data(env, ea+60, env->gpr_d[15]); cpu_stl_data(env, ea+60, env->gpr_d[15]);
} }
static void save_context_lower(CPUTriCoreState *env, int ea) static void save_context_lower(CPUTriCoreState *env, target_ulong ea)
{ {
cpu_stl_data(env, ea, env->PCXI); cpu_stl_data(env, ea, env->PCXI);
cpu_stl_data(env, ea+4, env->gpr_a[11]); cpu_stl_data(env, ea+4, env->gpr_a[11]);
@ -2498,7 +2498,7 @@ static void save_context_lower(CPUTriCoreState *env, int ea)
cpu_stl_data(env, ea+60, env->gpr_d[7]); cpu_stl_data(env, ea+60, env->gpr_d[7]);
} }
static void restore_context_upper(CPUTriCoreState *env, int ea, static void restore_context_upper(CPUTriCoreState *env, target_ulong ea,
target_ulong *new_PCXI, target_ulong *new_PSW) target_ulong *new_PCXI, target_ulong *new_PSW)
{ {
*new_PCXI = cpu_ldl_data(env, ea); *new_PCXI = cpu_ldl_data(env, ea);
@ -2519,7 +2519,7 @@ static void restore_context_upper(CPUTriCoreState *env, int ea,
env->gpr_d[15] = cpu_ldl_data(env, ea+60); env->gpr_d[15] = cpu_ldl_data(env, ea+60);
} }
static void restore_context_lower(CPUTriCoreState *env, int ea, static void restore_context_lower(CPUTriCoreState *env, target_ulong ea,
target_ulong *ra, target_ulong *pcxi) target_ulong *ra, target_ulong *pcxi)
{ {
*pcxi = cpu_ldl_data(env, ea); *pcxi = cpu_ldl_data(env, ea);
@ -2763,26 +2763,26 @@ void helper_rfm(CPUTriCoreState *env)
} }
} }
void helper_ldlcx(CPUTriCoreState *env, uint32_t ea) void helper_ldlcx(CPUTriCoreState *env, target_ulong ea)
{ {
uint32_t dummy; uint32_t dummy;
/* insn doesn't load PCXI and RA */ /* insn doesn't load PCXI and RA */
restore_context_lower(env, ea, &dummy, &dummy); restore_context_lower(env, ea, &dummy, &dummy);
} }
void helper_lducx(CPUTriCoreState *env, uint32_t ea) void helper_lducx(CPUTriCoreState *env, target_ulong ea)
{ {
uint32_t dummy; uint32_t dummy;
/* insn doesn't load PCXI and PSW */ /* insn doesn't load PCXI and PSW */
restore_context_upper(env, ea, &dummy, &dummy); restore_context_upper(env, ea, &dummy, &dummy);
} }
void helper_stlcx(CPUTriCoreState *env, uint32_t ea) void helper_stlcx(CPUTriCoreState *env, target_ulong ea)
{ {
save_context_lower(env, ea); save_context_lower(env, ea);
} }
void helper_stucx(CPUTriCoreState *env, uint32_t ea) void helper_stucx(CPUTriCoreState *env, target_ulong ea)
{ {
save_context_upper(env, ea); save_context_upper(env, ea);
} }