mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target/microblaze: Prefer fast cpu_env() over slower CPU QOM cast macro
Mechanical patch produced running the command documented in scripts/coccinelle/cpu_env.cocci_template header. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20240129164514.73104-18-philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
e22a456036
commit
da9536433f
3 changed files with 4 additions and 8 deletions
|
@ -110,9 +110,8 @@ int mb_cpu_gdb_read_stack_protect(CPUState *cs, GByteArray *mem_buf, int n)
|
|||
|
||||
int mb_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
||||
{
|
||||
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
||||
CPUClass *cc = CPU_GET_CLASS(cs);
|
||||
CPUMBState *env = &cpu->env;
|
||||
CPUMBState *env = cpu_env(cs);
|
||||
uint32_t tmp;
|
||||
|
||||
if (n > cc->gdb_num_core_regs) {
|
||||
|
|
|
@ -252,8 +252,7 @@ hwaddr mb_cpu_get_phys_page_attrs_debug(CPUState *cs, vaddr addr,
|
|||
|
||||
bool mb_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
||||
{
|
||||
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
||||
CPUMBState *env = &cpu->env;
|
||||
CPUMBState *env = cpu_env(cs);
|
||||
|
||||
if ((interrupt_request & CPU_INTERRUPT_HARD)
|
||||
&& (env->msr & MSR_IE)
|
||||
|
|
|
@ -1630,7 +1630,6 @@ static void mb_tr_insn_start(DisasContextBase *dcb, CPUState *cs)
|
|||
static void mb_tr_translate_insn(DisasContextBase *dcb, CPUState *cs)
|
||||
{
|
||||
DisasContext *dc = container_of(dcb, DisasContext, base);
|
||||
CPUMBState *env = cpu_env(cs);
|
||||
uint32_t ir;
|
||||
|
||||
/* TODO: This should raise an exception, not terminate qemu. */
|
||||
|
@ -1641,7 +1640,7 @@ static void mb_tr_translate_insn(DisasContextBase *dcb, CPUState *cs)
|
|||
|
||||
dc->tb_flags_to_set = 0;
|
||||
|
||||
ir = cpu_ldl_code(env, dc->base.pc_next);
|
||||
ir = cpu_ldl_code(cpu_env(cs), dc->base.pc_next);
|
||||
if (!decode(dc, ir)) {
|
||||
trap_illegal(dc, true);
|
||||
}
|
||||
|
@ -1800,8 +1799,7 @@ void gen_intermediate_code(CPUState *cpu, TranslationBlock *tb, int *max_insns,
|
|||
|
||||
void mb_cpu_dump_state(CPUState *cs, FILE *f, int flags)
|
||||
{
|
||||
MicroBlazeCPU *cpu = MICROBLAZE_CPU(cs);
|
||||
CPUMBState *env = &cpu->env;
|
||||
CPUMBState *env = cpu_env(cs);
|
||||
uint32_t iflags;
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue