Re: [Qemu-devel] [PATCH v1 4/4] target/arm: remove run time semihosting checks

2019-07-03 Thread Philippe Mathieu-Daudé
On 7/3/19 6:44 PM, Alex Bennée wrote: > Philippe Mathieu-Daudé writes: > >> Hi Alex, Peter. >> >> On 7/3/19 5:52 PM, Alex Bennée wrote: >>> Now we do all our checking and use a common EXCP_SEMIHOST for >>> semihosting operations we can make helper code a lot simpler. >>> >>> Signed-off-by: Alex B

Re: [Qemu-devel] [PATCH v1 4/4] target/arm: remove run time semihosting checks

2019-07-03 Thread Alex Bennée
Philippe Mathieu-Daudé writes: > Hi Alex, Peter. > > On 7/3/19 5:52 PM, Alex Bennée wrote: >> Now we do all our checking and use a common EXCP_SEMIHOST for >> semihosting operations we can make helper code a lot simpler. >> >> Signed-off-by: Alex Bennée >> --- >> target/arm/helper.c | 84

Re: [Qemu-devel] [PATCH v1 4/4] target/arm: remove run time semihosting checks

2019-07-03 Thread Richard Henderson
On 7/3/19 5:52 PM, Alex Bennée wrote: > Now we do all our checking and use a common EXCP_SEMIHOST for > semihosting operations we can make helper code a lot simpler. > > Signed-off-by: Alex Bennée > --- > target/arm/helper.c | 84 + > 1 file changed, 1

Re: [Qemu-devel] [PATCH v1 4/4] target/arm: remove run time semihosting checks

2019-07-03 Thread Philippe Mathieu-Daudé
Hi Alex, Peter. On 7/3/19 5:52 PM, Alex Bennée wrote: > Now we do all our checking and use a common EXCP_SEMIHOST for > semihosting operations we can make helper code a lot simpler. > > Signed-off-by: Alex Bennée > --- > target/arm/helper.c | 84 + >

[Qemu-devel] [PATCH v1 4/4] target/arm: remove run time semihosting checks

2019-07-03 Thread Alex Bennée
Now we do all our checking and use a common EXCP_SEMIHOST for semihosting operations we can make helper code a lot simpler. Signed-off-by: Alex Bennée --- target/arm/helper.c | 84 + 1 file changed, 17 insertions(+), 67 deletions(-) diff --git a/targe