qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 00/45] loongarch-to-apply queue
@ 2023-05-06  6:34 Song Gao
  2023-05-06  6:34 ` [PULL v2 01/45] target/loongarch: Add LSX data type VReg Song Gao
                   ` (46 more replies)
  0 siblings, 47 replies; 49+ messages in thread
From: Song Gao @ 2023-05-06  6:34 UTC (permalink / raw)
  To: qemu-devel; +Cc: richard.henderson

The following changes since commit eb5c3932a383ba1ef3a911232c644f2e053ef66c:

  Merge tag 'pw-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2023-05-05 19:18:05 +0100)

are available in the Git repository at:

  https://gitlab.com/gaosong/qemu.git tags/pull-loongarch-20230506

for you to fetch changes up to 725d7e763a802321e1bb303348afc551d564d31e:

  hw/intc: don't use target_ulong for LoongArch ipi (2023-05-06 11:19:50 +0800)

----------------------------------------------------------------
Add LoongArch LSX instructions.

v2: Fixes build error.

----------------------------------------------------------------
Alex Bennée (1):
      hw/intc: don't use target_ulong for LoongArch ipi

Song Gao (44):
      target/loongarch: Add LSX data type VReg
      target/loongarch: meson.build support build LSX
      target/loongarch: Add CHECK_SXE maccro for check LSX enable
      target/loongarch: Implement vadd/vsub
      target/loongarch: Implement vaddi/vsubi
      target/loongarch: Implement vneg
      target/loongarch: Implement vsadd/vssub
      target/loongarch: Implement vhaddw/vhsubw
      target/loongarch: Implement vaddw/vsubw
      target/loongarch: Implement vavg/vavgr
      target/loongarch: Implement vabsd
      target/loongarch: Implement vadda
      target/loongarch: Implement vmax/vmin
      target/loongarch: Implement vmul/vmuh/vmulw{ev/od}
      target/loongarch: Implement vmadd/vmsub/vmaddw{ev/od}
      target/loongarch: Implement vdiv/vmod
      target/loongarch: Implement vsat
      target/loongarch: Implement vexth
      target/loongarch: Implement vsigncov
      target/loongarch: Implement vmskltz/vmskgez/vmsknz
      target/loongarch: Implement LSX logic instructions
      target/loongarch: Implement vsll vsrl vsra vrotr
      target/loongarch: Implement vsllwil vextl
      target/loongarch: Implement vsrlr vsrar
      target/loongarch: Implement vsrln vsran
      target/loongarch: Implement vsrlrn vsrarn
      target/loongarch: Implement vssrln vssran
      target/loongarch: Implement vssrlrn vssrarn
      target/loongarch: Implement vclo vclz
      target/loongarch: Implement vpcnt
      target/loongarch: Implement vbitclr vbitset vbitrev
      target/loongarch: Implement vfrstp
      target/loongarch: Implement LSX fpu arith instructions
      target/loongarch: Implement LSX fpu fcvt instructions
      target/loongarch: Implement vseq vsle vslt
      target/loongarch: Implement vfcmp
      target/loongarch: Implement vbitsel vset
      target/loongarch: Implement vinsgr2vr vpickve2gr vreplgr2vr
      target/loongarch: Implement vreplve vpack vpick
      target/loongarch: Implement vilvl vilvh vextrins vshuf
      target/loongarch: Implement vld vst
      target/loongarch: Implement vldi
      target/loongarch: Use {set/get}_gpr replace to cpu_fpr
      target/loongarch: CPUCFG support LSX

 hw/intc/loongarch_ipi.c                         |    2 +-
 linux-user/loongarch64/signal.c                 |    4 +-
 target/loongarch/cpu.c                          |    5 +-
 target/loongarch/cpu.h                          |   27 +-
 target/loongarch/disas.c                        |  911 +++++
 target/loongarch/fpu_helper.c                   |    2 +-
 target/loongarch/gdbstub.c                      |    4 +-
 target/loongarch/helper.h                       |  566 +++
 target/loongarch/insn_trans/trans_farith.c.inc  |   72 +-
 target/loongarch/insn_trans/trans_fcmp.c.inc    |   12 +-
 target/loongarch/insn_trans/trans_fmemory.c.inc |   37 +-
 target/loongarch/insn_trans/trans_fmov.c.inc    |   31 +-
 target/loongarch/insn_trans/trans_lsx.c.inc     | 4400 +++++++++++++++++++++++
 target/loongarch/insns.decode                   |  811 +++++
 target/loongarch/internals.h                    |   23 +
 target/loongarch/lsx_helper.c                   | 3004 ++++++++++++++++
 target/loongarch/machine.c                      |   79 +-
 target/loongarch/meson.build                    |    1 +
 target/loongarch/translate.c                    |   55 +-
 target/loongarch/translate.h                    |    1 +
 20 files changed, 9989 insertions(+), 58 deletions(-)
 create mode 100644 target/loongarch/insn_trans/trans_lsx.c.inc
 create mode 100644 target/loongarch/lsx_helper.c



^ permalink raw reply	[flat|nested] 49+ messages in thread

end of thread, other threads:[~2023-05-10 12:07 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-06  6:34 [PULL v2 00/45] loongarch-to-apply queue Song Gao
2023-05-06  6:34 ` [PULL v2 01/45] target/loongarch: Add LSX data type VReg Song Gao
2023-05-06  6:34 ` [PULL v2 02/45] target/loongarch: meson.build support build LSX Song Gao
2023-05-06  6:34 ` [PULL v2 03/45] target/loongarch: Add CHECK_SXE maccro for check LSX enable Song Gao
2023-05-06  6:34 ` [PULL v2 04/45] target/loongarch: Implement vadd/vsub Song Gao
2023-05-06  6:35 ` [PULL v2 05/45] target/loongarch: Implement vaddi/vsubi Song Gao
2023-05-06  6:35 ` [PULL v2 06/45] target/loongarch: Implement vneg Song Gao
2023-05-06  6:35 ` [PULL v2 07/45] target/loongarch: Implement vsadd/vssub Song Gao
2023-05-06  6:35 ` [PULL v2 08/45] target/loongarch: Implement vhaddw/vhsubw Song Gao
2023-05-06  6:35 ` [PULL v2 09/45] target/loongarch: Implement vaddw/vsubw Song Gao
2023-05-06  6:35 ` [PULL v2 10/45] target/loongarch: Implement vavg/vavgr Song Gao
2023-05-06  6:35 ` [PULL v2 11/45] target/loongarch: Implement vabsd Song Gao
2023-05-06  6:35 ` [PULL v2 12/45] target/loongarch: Implement vadda Song Gao
2023-05-06  6:35 ` [PULL v2 13/45] target/loongarch: Implement vmax/vmin Song Gao
2023-05-06  6:35 ` [PULL v2 14/45] target/loongarch: Implement vmul/vmuh/vmulw{ev/od} Song Gao
2023-05-06  6:35 ` [PULL v2 15/45] target/loongarch: Implement vmadd/vmsub/vmaddw{ev/od} Song Gao
2023-05-06  6:35 ` [PULL v2 16/45] target/loongarch: Implement vdiv/vmod Song Gao
2023-05-06  6:35 ` [PULL v2 17/45] target/loongarch: Implement vsat Song Gao
2023-05-06  6:35 ` [PULL v2 18/45] target/loongarch: Implement vexth Song Gao
2023-05-06  6:35 ` [PULL v2 19/45] target/loongarch: Implement vsigncov Song Gao
2023-05-06  6:35 ` [PULL v2 20/45] target/loongarch: Implement vmskltz/vmskgez/vmsknz Song Gao
2023-05-06  6:35 ` [PULL v2 21/45] target/loongarch: Implement LSX logic instructions Song Gao
2023-05-06  6:35 ` [PULL v2 22/45] target/loongarch: Implement vsll vsrl vsra vrotr Song Gao
2023-05-06  6:35 ` [PULL v2 23/45] target/loongarch: Implement vsllwil vextl Song Gao
2023-05-06  6:35 ` [PULL v2 24/45] target/loongarch: Implement vsrlr vsrar Song Gao
2023-05-06  6:35 ` [PULL v2 25/45] target/loongarch: Implement vsrln vsran Song Gao
2023-05-06  6:35 ` [PULL v2 26/45] target/loongarch: Implement vsrlrn vsrarn Song Gao
2023-05-06  6:35 ` [PULL v2 27/45] target/loongarch: Implement vssrln vssran Song Gao
2023-05-06  6:35 ` [PULL v2 28/45] target/loongarch: Implement vssrlrn vssrarn Song Gao
2023-05-06  6:35 ` [PULL v2 29/45] target/loongarch: Implement vclo vclz Song Gao
2023-05-06  6:35 ` [PULL v2 30/45] target/loongarch: Implement vpcnt Song Gao
2023-05-06  6:35 ` [PULL v2 31/45] target/loongarch: Implement vbitclr vbitset vbitrev Song Gao
2023-05-06  6:35 ` [PULL v2 32/45] target/loongarch: Implement vfrstp Song Gao
2023-05-06  6:35 ` [PULL v2 33/45] target/loongarch: Implement LSX fpu arith instructions Song Gao
2023-05-06  6:35 ` [PULL v2 34/45] target/loongarch: Implement LSX fpu fcvt instructions Song Gao
2023-05-06  6:35 ` [PULL v2 35/45] target/loongarch: Implement vseq vsle vslt Song Gao
2023-05-06  6:35 ` [PULL v2 36/45] target/loongarch: Implement vfcmp Song Gao
2023-05-06  6:35 ` [PULL v2 37/45] target/loongarch: Implement vbitsel vset Song Gao
2023-05-06  6:35 ` [PULL v2 38/45] target/loongarch: Implement vinsgr2vr vpickve2gr vreplgr2vr Song Gao
2023-05-06  6:35 ` [PULL v2 39/45] target/loongarch: Implement vreplve vpack vpick Song Gao
2023-05-06  6:35 ` [PULL v2 40/45] target/loongarch: Implement vilvl vilvh vextrins vshuf Song Gao
2023-05-06  6:35 ` [PULL v2 41/45] target/loongarch: Implement vld vst Song Gao
2023-05-06  6:35 ` [PULL v2 42/45] target/loongarch: Implement vldi Song Gao
2023-05-06  6:35 ` [PULL v2 43/45] target/loongarch: Use {set/get}_gpr replace to cpu_fpr Song Gao
2023-05-06  6:35 ` [PULL v2 44/45] target/loongarch: CPUCFG support LSX Song Gao
2023-05-06  6:35 ` [PULL v2 45/45] hw/intc: don't use target_ulong for LoongArch ipi Song Gao
2023-05-06  9:04 ` [PULL v2 00/45] loongarch-to-apply queue Richard Henderson
2023-05-10 11:17 ` Paolo Bonzini
2023-05-10 12:06   ` Richard Henderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).