Re: [PATCH] target/arm: Restrict arm_do_plugin_vcpu_discon_cb() to TCG
Philippe Mathieu-Daudé <[email protected]>
| Newsgroups | org.nongnu.qemu-devel,org.nongnu.qemu-arm |
|---|---|
| Message-ID | <[email protected]> |
On 14/8/26 10:05, Philippe Mathieu-Daudé wrote: > So far TCG plugins can only be used when TCG is available. > Move the arm_do_plugin_vcpu_discon_cb() call within the > 'if tcg_enabled' block and wrap the definition with #ifdef'ry. > > Signed-off-by: Philippe Mathieu-Daudé <[email protected]> > --- BTW luckily, except PPC, all other targets with HW accelerator support already have this restricted to TCG (X86, LoongArch, RISCV, S390x). Since I'm only testing hybrid acceleration on ARM I don't have the need to do the equivalent cleanup on PPC. > target/arm/helper.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/target/arm/helper.c b/target/arm/helper.c > index af45234ad2a..adae2b2b8e5 100644 > --- a/target/arm/helper.c > +++ b/target/arm/helper.c > @@ -8915,6 +8915,7 @@ static void take_aarch32_exception(CPUARMState *env, int new_mode, > } > } > > +#ifdef CONFIG_TCG > void arm_do_plugin_vcpu_discon_cb(CPUState *cs, uint64_t from) > { > switch (cs->exception_index) { > @@ -8932,6 +8933,7 @@ void arm_do_plugin_vcpu_discon_cb(CPUState *cs, uint64_t from) > qemu_plugin_vcpu_exception_cb(cs, from); > } > } > +#endif > > static void arm_cpu_do_interrupt_aarch32_hyp(CPUState *cs) > { > @@ -9677,9 +9679,9 @@ void arm_cpu_do_interrupt(CPUState *cs) > > if (tcg_enabled()) { > cpu_set_interrupt(cs, CPU_INTERRUPT_EXITTB); > - } > > - arm_do_plugin_vcpu_discon_cb(cs, last_pc); > + arm_do_plugin_vcpu_discon_cb(cs, last_pc); > + } > } > #endif /* !CONFIG_USER_ONLY */ >