Re: [Qemu-devel] [PATCH 3/5] target-arm/translate.c: Don't use IS_M()

2014-11-04 Thread Claudio Fontana
Reviewed-by: Claudio Fontana On 28.10.2014 20:24, Peter Maydell wrote: > Instead of using IS_M(), use arm_dc_feature(s, ARM_FEATURE_M), so we > don't need to pass CPUARMState pointers around the decoder. > > Signed-off-by: Peter Maydell > --- > target-arm/translate.c | 19 +++ >

Re: [Qemu-devel] [PATCH 3/5] target-arm/translate.c: Don't use IS_M()

2014-11-03 Thread Peter Maydell
On 31 October 2014 13:42, Alex Bennée wrote: > > Peter Maydell writes: > >> Instead of using IS_M(), use arm_dc_feature(s, ARM_FEATURE_M), so we >> don't need to pass CPUARMState pointers around the decoder. >> >> Signed-off-by: Peter Maydell > > I almost wondered if it was killing of the IS_M m

Re: [Qemu-devel] [PATCH 3/5] target-arm/translate.c: Don't use IS_M()

2014-10-31 Thread Alex Bennée
Peter Maydell writes: > Instead of using IS_M(), use arm_dc_feature(s, ARM_FEATURE_M), so we > don't need to pass CPUARMState pointers around the decoder. > > Signed-off-by: Peter Maydell I almost wondered if it was killing of the IS_M macro and making direct calls in cpu.h and helper.c. Anyw

[Qemu-devel] [PATCH 3/5] target-arm/translate.c: Don't use IS_M()

2014-10-28 Thread Peter Maydell
Instead of using IS_M(), use arm_dc_feature(s, ARM_FEATURE_M), so we don't need to pass CPUARMState pointers around the decoder. Signed-off-by: Peter Maydell --- target-arm/translate.c | 19 +++ 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/target-arm/translate.c