Re: [Qemu-devel] [PATCH 18/60] AArch64: Add umov instruction emulation
On 09/26/2013 05:48 PM, Alexander Graf wrote: > +switch (size) { > +case 0: > +idx = get_bits(imm5, 1, 4) << 0; > +tcg_gen_ld8u_i64(cpu_reg(rd), cpu_env, freg_offs_n + idx); > +break; > +case 1: > +idx = get_bits(imm5, 2, 3) << 1; > +tcg_gen_ld16u
[Qemu-devel] [PATCH 18/60] AArch64: Add umov instruction emulation
This patch adds emulation for the umov instruction that copies vector register contents into GPRs. Signed-off-by: Alexander Graf --- target-arm/translate-a64.c | 45 + 1 file changed, 45 insertions(+) diff --git a/target-arm/translate-a64.c b/target-a