qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 4/9] target-arm/arm-semi.c: Factor out repeated


From: Christopher Covington
Subject: Re: [Qemu-devel] [PATCH 4/9] target-arm/arm-semi.c: Factor out repeated 'return env->regs[0]'
Date: Wed, 19 Aug 2015 08:52:45 -0700

On Thu, Aug 13, 2015 at 9:35 AM, Peter Maydell <address@hidden> wrote:
> Factor out a repeated pattern in the semihosting code:
>
>     gdb_do_syscall(arm_semi_cb, "system,%s", arg0, (int)arg1+1);
>     /* arm_semi_cb sets env->regs[0] to the syscall return value */
>     return env->regs[0];
>
> For A64 the return value will go in a different register; pull
> the sequence out into its own function that passes the return
> value in a static variable rather than overloading regs[0]
> for the purpose, so the code will work on both A32/T32 and A64.
>
> Note that the lack-of-synchronization bug noted in the FIXME
> comment is not introduced by this commit, but was already present.
>
> Signed-off-by: Peter Maydell <address@hidden>

Reviewed-by: Christopher Covington <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]