mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
target/openrisc: Split out is_user
This allows us to limit the amount of ifdefs and isolate the test for usermode. Reviewed-by: Stafford Horne <shorne@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Stafford Horne <shorne@gmail.com>
This commit is contained in:
parent
8000ba56cc
commit
2ba6541792
1 changed files with 12 additions and 15 deletions
|
@ -50,6 +50,15 @@ typedef struct DisasContext {
|
||||||
target_ulong jmp_pc_imm;
|
target_ulong jmp_pc_imm;
|
||||||
} DisasContext;
|
} DisasContext;
|
||||||
|
|
||||||
|
static inline bool is_user(DisasContext *dc)
|
||||||
|
{
|
||||||
|
#ifdef CONFIG_USER_ONLY
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return dc->mem_idx == MMU_USER_IDX;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/* Include the auto-generated decoder. */
|
/* Include the auto-generated decoder. */
|
||||||
#include "decode.inc.c"
|
#include "decode.inc.c"
|
||||||
|
|
||||||
|
@ -853,33 +862,25 @@ static bool trans_l_mfspr(DisasContext *dc, arg_l_mfspr *a, uint32_t insn)
|
||||||
{
|
{
|
||||||
check_r0_write(a->d);
|
check_r0_write(a->d);
|
||||||
|
|
||||||
#ifdef CONFIG_USER_ONLY
|
if (is_user(dc)) {
|
||||||
gen_illegal_exception(dc);
|
|
||||||
#else
|
|
||||||
if (dc->mem_idx == MMU_USER_IDX) {
|
|
||||||
gen_illegal_exception(dc);
|
gen_illegal_exception(dc);
|
||||||
} else {
|
} else {
|
||||||
TCGv_i32 ti = tcg_const_i32(a->k);
|
TCGv_i32 ti = tcg_const_i32(a->k);
|
||||||
gen_helper_mfspr(cpu_R[a->d], cpu_env, cpu_R[a->d], cpu_R[a->a], ti);
|
gen_helper_mfspr(cpu_R[a->d], cpu_env, cpu_R[a->d], cpu_R[a->a], ti);
|
||||||
tcg_temp_free_i32(ti);
|
tcg_temp_free_i32(ti);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool trans_l_mtspr(DisasContext *dc, arg_l_mtspr *a, uint32_t insn)
|
static bool trans_l_mtspr(DisasContext *dc, arg_l_mtspr *a, uint32_t insn)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_USER_ONLY
|
if (is_user(dc)) {
|
||||||
gen_illegal_exception(dc);
|
|
||||||
#else
|
|
||||||
if (dc->mem_idx == MMU_USER_IDX) {
|
|
||||||
gen_illegal_exception(dc);
|
gen_illegal_exception(dc);
|
||||||
} else {
|
} else {
|
||||||
TCGv_i32 ti = tcg_const_i32(a->k);
|
TCGv_i32 ti = tcg_const_i32(a->k);
|
||||||
gen_helper_mtspr(cpu_env, cpu_R[a->a], cpu_R[a->b], ti);
|
gen_helper_mtspr(cpu_env, cpu_R[a->a], cpu_R[a->b], ti);
|
||||||
tcg_temp_free_i32(ti);
|
tcg_temp_free_i32(ti);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1104,16 +1105,12 @@ static bool trans_l_csync(DisasContext *dc, arg_l_csync *a, uint32_t insn)
|
||||||
|
|
||||||
static bool trans_l_rfe(DisasContext *dc, arg_l_rfe *a, uint32_t insn)
|
static bool trans_l_rfe(DisasContext *dc, arg_l_rfe *a, uint32_t insn)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_USER_ONLY
|
if (is_user(dc)) {
|
||||||
gen_illegal_exception(dc);
|
|
||||||
#else
|
|
||||||
if (dc->mem_idx == MMU_USER_IDX) {
|
|
||||||
gen_illegal_exception(dc);
|
gen_illegal_exception(dc);
|
||||||
} else {
|
} else {
|
||||||
gen_helper_rfe(cpu_env);
|
gen_helper_rfe(cpu_env);
|
||||||
dc->base.is_jmp = DISAS_EXIT;
|
dc->base.is_jmp = DISAS_EXIT;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue