Re: [Qemu-devel] [PATCH 12/13] target/arm: Add v8M stack checks for VLDM/VSTM

2018-10-03 Thread Richard Henderson
On 10/2/18 11:35 AM, Peter Maydell wrote: > Add the v8M stack checks for the VLDM/VSTM > (aka VPUSH/VPOP) instructions. This code is currently > unreachable because we haven't yet implemented M profile > floating point support, but since the change is simple, > we add it now because otherwise we're

Re: [Qemu-devel] [PATCH 12/13] target/arm: Add v8M stack checks for VLDM/VSTM

2018-10-03 Thread Richard Henderson
On 10/2/18 11:35 AM, Peter Maydell wrote: > Add the v8M stack checks for the VLDM/VSTM > (aka VPUSH/VPOP) instructions. This code is currently > unreachable because we haven't yet implemented M profile > floating point support, but since the change is simple, > we add it now because otherwise we're

Re: [Qemu-devel] [PATCH 12/13] target/arm: Add v8M stack checks for VLDM/VSTM

2018-10-03 Thread Philippe Mathieu-Daudé
On 02/10/2018 18:35, Peter Maydell wrote: > Add the v8M stack checks for the VLDM/VSTM > (aka VPUSH/VPOP) instructions. This code is currently > unreachable because we haven't yet implemented M profile > floating point support, but since the change is simple, > we add it now because otherwise we're

[Qemu-devel] [PATCH 12/13] target/arm: Add v8M stack checks for VLDM/VSTM

2018-10-02 Thread Peter Maydell
Add the v8M stack checks for the VLDM/VSTM (aka VPUSH/VPOP) instructions. This code is currently unreachable because we haven't yet implemented M profile floating point support, but since the change is simple, we add it now because otherwise we're likely to forget to do it later. Signed-off-by: Pe