mbox series

[v3,00/47] Add LoongArch LASX instructions

Message ID 20230714084615.2448038-1-gaosong@loongson.cn
Headers show
Series Add LoongArch LASX instructions | expand

Message

gaosong July 14, 2023, 8:45 a.m. UTC
Hi,

This series adds LoongArch LASX instructions.

About test:
We use RISU test the LoongArch LASX instructions.

QEMU:
    https://github.com/loongson/qemu/tree/tcg-old-abi-support-lasx
RISU:
    https://github.com/loongson/risu/tree/loongarch-suport-lasx

Please review, Thanks.

Changes for v3:
- Add a new patch 9, rename lsx_helper.c to vec_helper.c,
  and use gen_helper_gvec_* series functions;
- Use i < oprsz / (BIT / 8) in loop;
- Some helper functions use loop;
- patch 46: use tcg_gen_qemu_ld/st_i64 for xvld/xvst{x};
- R-b.

Changes for v2:
- Expand the definition of VReg to be 256 bits.
- Use more LSX functions.
- R-b.

Song Gao (47):
  target/loongarch: Add LASX data support
  target/loongarch: meson.build support build LASX
  target/loongarch: Add CHECK_ASXE maccro for check LASX enable
  target/loongarch: Implement xvadd/xvsub
  target/loongarch: Implement xvreplgr2vr
  target/loongarch: Implement xvaddi/xvsubi
  target/loongarch: Implement xvneg
  target/loongarch: Implement xvsadd/xvssub
  target/loongarch: rename lsx_helper.c to vec_helper.c
  target/loongarch: Implement xvhaddw/xvhsubw
  target/loongarch: Implement xvaddw/xvsubw
  target/loongarch: Implement xavg/xvagr
  target/loongarch: Implement xvabsd
  target/loongarch: Implement xvadda
  target/loongarch: Implement xvmax/xvmin
  target/loongarch: Implement xvmul/xvmuh/xvmulw{ev/od}
  target/loongarch: Implement xvmadd/xvmsub/xvmaddw{ev/od}
  target/loongarch; Implement xvdiv/xvmod
  target/loongarch: Implement xvsat
  target/loongarch: Implement xvexth
  target/loongarch: Implement vext2xv
  target/loongarch: Implement xvsigncov
  target/loongarch: Implement xvmskltz/xvmskgez/xvmsknz
  target/loognarch: Implement xvldi
  target/loongarch: Implement LASX logic instructions
  target/loongarch: Implement xvsll xvsrl xvsra xvrotr
  target/loongarch: Implement xvsllwil xvextl
  target/loongarch: Implement xvsrlr xvsrar
  target/loongarch: Implement xvsrln xvsran
  target/loongarch: Implement xvsrlrn xvsrarn
  target/loongarch: Implement xvssrln xvssran
  target/loongarch: Implement xvssrlrn xvssrarn
  target/loongarch: Implement xvclo xvclz
  target/loongarch: Implement xvpcnt
  target/loongarch: Implement xvbitclr xvbitset xvbitrev
  target/loongarch: Implement xvfrstp
  target/loongarch: Implement LASX fpu arith instructions
  target/loongarch: Implement LASX fpu fcvt instructions
  target/loongarch: Implement xvseq xvsle xvslt
  target/loongarch: Implement xvfcmp
  target/loongarch: Implement xvbitsel xvset
  target/loongarch: Implement xvinsgr2vr xvpickve2gr
  target/loongarch: Implement xvreplve xvinsve0 xvpickve xvb{sll/srl}v
  target/loongarch: Implement xvpack xvpick xvilv{l/h}
  target/loongarch: Implement xvshuf xvperm{i} xvshuf4i xvextrins
  target/loongarch: Implement xvld xvst
  target/loongarch: CPUCFG support LASX

 linux-user/loongarch64/signal.c              |    1 +
 target/loongarch/cpu.c                       |    4 +
 target/loongarch/cpu.h                       |   26 +-
 target/loongarch/disas.c                     |  925 +++++
 target/loongarch/gdbstub.c                   |    1 +
 target/loongarch/helper.h                    |  689 ++--
 target/loongarch/insn_trans/trans_lasx.c.inc | 1008 +++++
 target/loongarch/insn_trans/trans_lsx.c.inc  | 2047 ++++++-----
 target/loongarch/insns.decode                |  782 ++++
 target/loongarch/internals.h                 |   22 -
 target/loongarch/lsx_helper.c                | 3004 ---------------
 target/loongarch/machine.c                   |   36 +-
 target/loongarch/meson.build                 |    2 +-
 target/loongarch/translate.c                 |    6 +
 target/loongarch/vec.h                       |   98 +
 target/loongarch/vec_helper.c                | 3431 ++++++++++++++++++
 16 files changed, 7723 insertions(+), 4359 deletions(-)
 create mode 100644 target/loongarch/insn_trans/trans_lasx.c.inc
 delete mode 100644 target/loongarch/lsx_helper.c
 create mode 100644 target/loongarch/vec.h
 create mode 100644 target/loongarch/vec_helper.c

Comments

gaosong July 28, 2023, 7:02 a.m. UTC | #1
ping !

在 2023/7/14 下午4:45, Song Gao 写道:
> Hi,
>
> This series adds LoongArch LASX instructions.
>
> About test:
> We use RISU test the LoongArch LASX instructions.
>
> QEMU:
>      https://github.com/loongson/qemu/tree/tcg-old-abi-support-lasx
> RISU:
>      https://github.com/loongson/risu/tree/loongarch-suport-lasx
>
> Please review, Thanks.
>
> Changes for v3:
> - Add a new patch 9, rename lsx_helper.c to vec_helper.c,
>    and use gen_helper_gvec_* series functions;
> - Use i < oprsz / (BIT / 8) in loop;
> - Some helper functions use loop;
> - patch 46: use tcg_gen_qemu_ld/st_i64 for xvld/xvst{x};
> - R-b.
>
> Changes for v2:
> - Expand the definition of VReg to be 256 bits.
> - Use more LSX functions.
> - R-b.
>
> Song Gao (47):
>    target/loongarch: Add LASX data support
>    target/loongarch: meson.build support build LASX
>    target/loongarch: Add CHECK_ASXE maccro for check LASX enable
>    target/loongarch: Implement xvadd/xvsub
>    target/loongarch: Implement xvreplgr2vr
>    target/loongarch: Implement xvaddi/xvsubi
>    target/loongarch: Implement xvneg
>    target/loongarch: Implement xvsadd/xvssub
>    target/loongarch: rename lsx_helper.c to vec_helper.c
>    target/loongarch: Implement xvhaddw/xvhsubw
>    target/loongarch: Implement xvaddw/xvsubw
>    target/loongarch: Implement xavg/xvagr
>    target/loongarch: Implement xvabsd
>    target/loongarch: Implement xvadda
>    target/loongarch: Implement xvmax/xvmin
>    target/loongarch: Implement xvmul/xvmuh/xvmulw{ev/od}
>    target/loongarch: Implement xvmadd/xvmsub/xvmaddw{ev/od}
>    target/loongarch; Implement xvdiv/xvmod
>    target/loongarch: Implement xvsat
>    target/loongarch: Implement xvexth
>    target/loongarch: Implement vext2xv
>    target/loongarch: Implement xvsigncov
>    target/loongarch: Implement xvmskltz/xvmskgez/xvmsknz
>    target/loognarch: Implement xvldi
>    target/loongarch: Implement LASX logic instructions
>    target/loongarch: Implement xvsll xvsrl xvsra xvrotr
>    target/loongarch: Implement xvsllwil xvextl
>    target/loongarch: Implement xvsrlr xvsrar
>    target/loongarch: Implement xvsrln xvsran
>    target/loongarch: Implement xvsrlrn xvsrarn
>    target/loongarch: Implement xvssrln xvssran
>    target/loongarch: Implement xvssrlrn xvssrarn
>    target/loongarch: Implement xvclo xvclz
>    target/loongarch: Implement xvpcnt
>    target/loongarch: Implement xvbitclr xvbitset xvbitrev
>    target/loongarch: Implement xvfrstp
>    target/loongarch: Implement LASX fpu arith instructions
>    target/loongarch: Implement LASX fpu fcvt instructions
>    target/loongarch: Implement xvseq xvsle xvslt
>    target/loongarch: Implement xvfcmp
>    target/loongarch: Implement xvbitsel xvset
>    target/loongarch: Implement xvinsgr2vr xvpickve2gr
>    target/loongarch: Implement xvreplve xvinsve0 xvpickve xvb{sll/srl}v
>    target/loongarch: Implement xvpack xvpick xvilv{l/h}
>    target/loongarch: Implement xvshuf xvperm{i} xvshuf4i xvextrins
>    target/loongarch: Implement xvld xvst
>    target/loongarch: CPUCFG support LASX
>
>   linux-user/loongarch64/signal.c              |    1 +
>   target/loongarch/cpu.c                       |    4 +
>   target/loongarch/cpu.h                       |   26 +-
>   target/loongarch/disas.c                     |  925 +++++
>   target/loongarch/gdbstub.c                   |    1 +
>   target/loongarch/helper.h                    |  689 ++--
>   target/loongarch/insn_trans/trans_lasx.c.inc | 1008 +++++
>   target/loongarch/insn_trans/trans_lsx.c.inc  | 2047 ++++++-----
>   target/loongarch/insns.decode                |  782 ++++
>   target/loongarch/internals.h                 |   22 -
>   target/loongarch/lsx_helper.c                | 3004 ---------------
>   target/loongarch/machine.c                   |   36 +-
>   target/loongarch/meson.build                 |    2 +-
>   target/loongarch/translate.c                 |    6 +
>   target/loongarch/vec.h                       |   98 +
>   target/loongarch/vec_helper.c                | 3431 ++++++++++++++++++
>   16 files changed, 7723 insertions(+), 4359 deletions(-)
>   create mode 100644 target/loongarch/insn_trans/trans_lasx.c.inc
>   delete mode 100644 target/loongarch/lsx_helper.c
>   create mode 100644 target/loongarch/vec.h
>   create mode 100644 target/loongarch/vec_helper.c
>