mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 19:14:58 -06:00
target/avr: Call avr_cpu_do_interrupt directly
There is no need to go through cc->tcg_ops when we know what value that must have. Reviewed-by: Michael Rolnik <mrolnik@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
7bccb9e322
commit
9e1b2375da
1 changed files with 2 additions and 3 deletions
|
@ -29,14 +29,13 @@
|
||||||
bool avr_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
bool avr_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
||||||
{
|
{
|
||||||
bool ret = false;
|
bool ret = false;
|
||||||
CPUClass *cc = CPU_GET_CLASS(cs);
|
|
||||||
AVRCPU *cpu = AVR_CPU(cs);
|
AVRCPU *cpu = AVR_CPU(cs);
|
||||||
CPUAVRState *env = &cpu->env;
|
CPUAVRState *env = &cpu->env;
|
||||||
|
|
||||||
if (interrupt_request & CPU_INTERRUPT_RESET) {
|
if (interrupt_request & CPU_INTERRUPT_RESET) {
|
||||||
if (cpu_interrupts_enabled(env)) {
|
if (cpu_interrupts_enabled(env)) {
|
||||||
cs->exception_index = EXCP_RESET;
|
cs->exception_index = EXCP_RESET;
|
||||||
cc->tcg_ops->do_interrupt(cs);
|
avr_cpu_do_interrupt(cs);
|
||||||
|
|
||||||
cs->interrupt_request &= ~CPU_INTERRUPT_RESET;
|
cs->interrupt_request &= ~CPU_INTERRUPT_RESET;
|
||||||
|
|
||||||
|
@ -47,7 +46,7 @@ bool avr_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
||||||
if (cpu_interrupts_enabled(env) && env->intsrc != 0) {
|
if (cpu_interrupts_enabled(env) && env->intsrc != 0) {
|
||||||
int index = ctz32(env->intsrc);
|
int index = ctz32(env->intsrc);
|
||||||
cs->exception_index = EXCP_INT(index);
|
cs->exception_index = EXCP_INT(index);
|
||||||
cc->tcg_ops->do_interrupt(cs);
|
avr_cpu_do_interrupt(cs);
|
||||||
|
|
||||||
env->intsrc &= env->intsrc - 1; /* clear the interrupt */
|
env->intsrc &= env->intsrc - 1; /* clear the interrupt */
|
||||||
if (!env->intsrc) {
|
if (!env->intsrc) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue