Re: [Qemu-devel] [PATCH 20/60] AArch64: Add SIMD ORR family instruction emulation

2013-09-27 Thread Richard Henderson
On 09/26/2013 05:48 PM, Alexander Graf wrote: > +/* SIMD ORR */ > +static void handle_simdorr(DisasContext *s, uint32_t insn) A better name please. E.g. handle_simd_three_same, which is the name given to the insn group by C3.6.16. r~

[Qemu-devel] [PATCH 20/60] AArch64: Add SIMD ORR family instruction emulation

2013-09-26 Thread Alexander Graf
This patch adds emulation support for SIMD ORR instructions (and, or, xor). Signed-off-by: Alexander Graf --- target-arm/translate-a64.c | 66 ++ 1 file changed, 66 insertions(+) diff --git a/target-arm/translate-a64.c b/target-arm/translate-a64.c ind