Re: [Qemu-devel] [PATCH 3/3] target-arm: explicitly decode SEVL instruction

2013-07-02 Thread Peter Maydell
On 13 June 2013 14:15, Andreas Färber wrote: > Am 07.06.2013 14:06, schrieb Mans Rullgard: >> case 2: /* wfe */ >> case 4: /* sev */ >> +case 5: /* sevl */ >> /* TODO: Implement SEV and WFE. May help SMP performance. */ >> default: /* nop */ >> break; > > So

Re: [Qemu-devel] [PATCH 3/3] target-arm: explicitly decode SEVL instruction

2013-06-13 Thread Måns Rullgård
Andreas Färber writes: > Am 07.06.2013 14:06, schrieb Mans Rullgard: >> The ARMv8 SEVL instruction is in the architectural hint space already >> emulated as nop. This makes the decoding of SEVL explicit for clarity. >> >> Signed-off-by: Mans Rullgard >> --- >> target-arm/translate.c | 1 + >>

Re: [Qemu-devel] [PATCH 3/3] target-arm: explicitly decode SEVL instruction

2013-06-13 Thread Andreas Färber
Am 07.06.2013 14:06, schrieb Mans Rullgard: > The ARMv8 SEVL instruction is in the architectural hint space already > emulated as nop. This makes the decoding of SEVL explicit for clarity. > > Signed-off-by: Mans Rullgard > --- > target-arm/translate.c | 1 + > 1 file changed, 1 insertion(+) >

Re: [Qemu-devel] [PATCH 3/3] target-arm: explicitly decode SEVL instruction

2013-06-13 Thread Peter Maydell
On 7 June 2013 13:06, Mans Rullgard wrote: > The ARMv8 SEVL instruction is in the architectural hint space already > emulated as nop. This makes the decoding of SEVL explicit for clarity. > > Signed-off-by: Mans Rullgard Reviewed-by: Peter Maydell -- PMM

[Qemu-devel] [PATCH 3/3] target-arm: explicitly decode SEVL instruction

2013-06-07 Thread Mans Rullgard
The ARMv8 SEVL instruction is in the architectural hint space already emulated as nop. This makes the decoding of SEVL explicit for clarity. Signed-off-by: Mans Rullgard --- target-arm/translate.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target-arm/translate.c b/target-arm/translate.