mbox series

[0/3] target/ppc: Moving VMX insns to decodetree

Message ID 20240429051317.289426-1-rathc@linux.ibm.com (mailing list archive)
Headers show
Series target/ppc: Moving VMX insns to decodetree | expand

Message

Chinmay Rath April 29, 2024, 5:13 a.m. UTC
Moving VMX instructions of the following types to decodetree
specification : storage access, integer logical & integer max/min.

Chinmay Rath (3):
  target/ppc: Move VMX storage access instructions to decodetree
  target/ppc: Move VMX integer logical instructions to decodetree
  target/ppc: Move VMX integer max/min instructions to decodetree.

 target/ppc/helper.h                 |  12 +-
 target/ppc/insn32.decode            |  50 +++++
 target/ppc/mem_helper.c             |  12 +-
 target/ppc/translate.c              |   2 -
 target/ppc/translate/vmx-impl.c.inc | 280 ++++++++++++----------------
 target/ppc/translate/vmx-ops.c.inc  |  50 -----
 6 files changed, 184 insertions(+), 222 deletions(-)

Comments

Nicholas Piggin May 18, 2024, 9:05 a.m. UTC | #1
On Mon Apr 29, 2024 at 3:13 PM AEST, Chinmay Rath wrote:
> Moving VMX instructions of the following types to decodetree
> specification : storage access, integer logical & integer max/min.

FYI I've added these to

https://gitlab.com/npiggin/qemu/-/commits/ppc-next-test

With the 32-bit fixes. I'll send a PR with them after
some more testing.

Thanks,
Nick