mirror of https://gitee.com/openkylin/qemu.git
target-tricore: Remove the dummy interrupt boilerplate
It can go back in when it actually does something. Cc: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Signed-off-by: Richard Henderson <rth@twiddle.net> Reviewed-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Message-id: 1410626734-3804-18-git-send-email-rth@twiddle.net Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
fbb96c4b7f
commit
dfdb483454
|
@ -523,11 +523,6 @@ int cpu_exec(CPUArchState *env)
|
|||
cc->do_interrupt(cpu);
|
||||
next_tb = 0;
|
||||
}
|
||||
#elif defined(TARGET_TRICORE)
|
||||
if ((interrupt_request & CPU_INTERRUPT_HARD)) {
|
||||
cc->do_interrupt(cpu);
|
||||
next_tb = 0;
|
||||
}
|
||||
#endif
|
||||
/* The target hook has 3 exit conditions:
|
||||
False when the interrupt isn't processed,
|
||||
|
|
|
@ -63,7 +63,6 @@ static inline TriCoreCPU *tricore_env_get_cpu(CPUTriCoreState *env)
|
|||
#define ENV_OFFSET offsetof(TriCoreCPU, env)
|
||||
|
||||
hwaddr tricore_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
|
||||
void tricore_cpu_do_interrupt(CPUState *cpu);
|
||||
void tricore_cpu_dump_state(CPUState *cpu, FILE *f,
|
||||
fprintf_function cpu_fprintf, int flags);
|
||||
|
||||
|
|
|
@ -145,7 +145,6 @@ static void tricore_cpu_class_init(ObjectClass *c, void *data)
|
|||
cc->class_by_name = tricore_cpu_class_by_name;
|
||||
cc->has_work = tricore_cpu_has_work;
|
||||
|
||||
cc->do_interrupt = tricore_cpu_do_interrupt;
|
||||
cc->dump_state = tricore_cpu_dump_state;
|
||||
cc->set_pc = tricore_cpu_set_pc;
|
||||
cc->synchronize_from_tb = tricore_cpu_synchronize_from_tb;
|
||||
|
|
|
@ -400,6 +400,4 @@ static inline void cpu_pc_from_tb(CPUTriCoreState *env, TranslationBlock *tb)
|
|||
env->PC = tb->pc;
|
||||
}
|
||||
|
||||
void do_interrupt(CPUTriCoreState *env);
|
||||
|
||||
#endif /*__TRICORE_CPU_H__ */
|
||||
|
|
|
@ -82,10 +82,6 @@ int cpu_tricore_handle_mmu_fault(CPUState *cs, target_ulong address,
|
|||
return ret;
|
||||
}
|
||||
|
||||
void tricore_cpu_do_interrupt(CPUState *cs)
|
||||
{
|
||||
}
|
||||
|
||||
TriCoreCPU *cpu_tricore_init(const char *cpu_model)
|
||||
{
|
||||
return TRICORE_CPU(cpu_generic_init(TYPE_TRICORE_CPU, cpu_model));
|
||||
|
|
Loading…
Reference in New Issue