Re: [Qemu-devel] [PATCH v3 5/5] aarch64-linux-user: Add support for SVE signal frame records

2018-02-23 Thread Richard Henderson
On 02/23/2018 01:59 AM, Peter Maydell wrote: > On 22 February 2018 at 20:14, Richard Henderson > wrote: >> On 02/22/2018 08:41 AM, Peter Maydell wrote: >>> On 16 February 2018 at 21:56, Richard Henderson >>> wrote: > +if (sve_size <= std_size) { +sve_ofs = size; >>>

Re: [Qemu-devel] [PATCH v3 5/5] aarch64-linux-user: Add support for SVE signal frame records

2018-02-23 Thread Peter Maydell
On 22 February 2018 at 20:14, Richard Henderson wrote: > On 02/22/2018 08:41 AM, Peter Maydell wrote: >> On 16 February 2018 at 21:56, Richard Henderson >> wrote: >>> +if (sve_size <= std_size) { >>> +sve_ofs = size; >>> +size += sve_size; >>> +end1_of

Re: [Qemu-devel] [PATCH v3 5/5] aarch64-linux-user: Add support for SVE signal frame records

2018-02-22 Thread Richard Henderson
On 02/22/2018 08:41 AM, Peter Maydell wrote: > On 16 February 2018 at 21:56, Richard Henderson > wrote: >> Depending on the currently selected size of the SVE vector registers, >> we can either store the data within the "standard" allocation, or we >> may beedn to allocate additional space with an

Re: [Qemu-devel] [PATCH v3 5/5] aarch64-linux-user: Add support for SVE signal frame records

2018-02-22 Thread Peter Maydell
On 16 February 2018 at 21:56, Richard Henderson wrote: > Depending on the currently selected size of the SVE vector registers, > we can either store the data within the "standard" allocation, or we > may beedn to allocate additional space with an EXTRA record. > > Signed-off-by: Richard Henderson

[Qemu-devel] [PATCH v3 5/5] aarch64-linux-user: Add support for SVE signal frame records

2018-02-16 Thread Richard Henderson
Depending on the currently selected size of the SVE vector registers, we can either store the data within the "standard" allocation, or we may beedn to allocate additional space with an EXTRA record. Signed-off-by: Richard Henderson --- linux-user/signal.c | 141 +