mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target-arm: Split DISAS_YIELD from DISAS_WFE
Currently we use DISAS_WFE for both WFE and YIELD instructions. This is functionally correct because at the moment both of them are implemented as "yield this CPU back to the top level loop so another CPU has a chance to run". However it's rather confusing that YIELD ends up calling HELPER(wfe), and if we ever want to implement real behaviour for WFE and SEV it's likely to trip us up. Split out the yield codepath to use DISAS_YIELD and a new HELPER(yield) function, and have HELPER(wfe) call HELPER(yield). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1435672316-3311-2-git-send-email-peter.maydell@linaro.org Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
This commit is contained in:
parent
a7ffaf5c96
commit
049e24a191
4 changed files with 23 additions and 3 deletions
|
@ -323,13 +323,25 @@ void HELPER(wfi)(CPUARMState *env)
|
|||
|
||||
void HELPER(wfe)(CPUARMState *env)
|
||||
{
|
||||
CPUState *cs = CPU(arm_env_get_cpu(env));
|
||||
|
||||
/* Don't actually halt the CPU, just yield back to top
|
||||
/* This is a hint instruction that is semantically different
|
||||
* from YIELD even though we currently implement it identically.
|
||||
* Don't actually halt the CPU, just yield back to top
|
||||
* level loop. This is not going into a "low power state"
|
||||
* (ie halting until some event occurs), so we never take
|
||||
* a configurable trap to a different exception level.
|
||||
*/
|
||||
HELPER(yield)(env);
|
||||
}
|
||||
|
||||
void HELPER(yield)(CPUARMState *env)
|
||||
{
|
||||
ARMCPU *cpu = arm_env_get_cpu(env);
|
||||
CPUState *cs = CPU(cpu);
|
||||
|
||||
/* This is a non-trappable hint instruction that generally indicates
|
||||
* that the guest is currently busy-looping. Yield control back to the
|
||||
* top level loop so that a more deserving VCPU has a chance to run.
|
||||
*/
|
||||
cs->exception_index = EXCP_YIELD;
|
||||
cpu_loop_exit(cs);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue