Re: [Qemu-devel] [PATCH v2 04/16] target/arm: Use pointers in neon tbl helper

2018-01-22 Thread Alex Bennée
Richard Henderson writes: > Rather than passing a regno to the helper, pass pointers to the > vector register directly. This eliminates the need to pass in > the environment pointer and reduces the number of places that > directly access env->vfp.regs[]. > > Reviewed-by: Peter Maydell > Signed

[Qemu-devel] [PATCH v2 04/16] target/arm: Use pointers in neon tbl helper

2018-01-18 Thread Richard Henderson
Rather than passing a regno to the helper, pass pointers to the vector register directly. This eliminates the need to pass in the environment pointer and reduces the number of places that directly access env->vfp.regs[]. Reviewed-by: Peter Maydell Signed-off-by: Richard Henderson --- target/ar