qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Song Gao <gaosong@loongson.cn>, qemu-devel@nongnu.org
Cc: richard.henderson@linaro.org
Subject: Re: [PULL v2 00/45] loongarch-to-apply queue
Date: Wed, 10 May 2023 13:17:10 +0200	[thread overview]
Message-ID: <bd4d0fa0-6ce6-058c-22a3-f11909af8d12@redhat.com> (raw)
In-Reply-To: <20230506063540.178794-1-gaosong@loongson.cn>

On 5/6/23 08:34, Song Gao wrote:
> 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)

Hi,

this causes three failures on FreeBSD (detected by the 
x64-freebsd-13-build CI job):

Summary of Failures:
   8/779 qemu:qtest+qtest-loongarch64 / qtest-loongarch64/qom-test 
           ERROR           0.94s   killed by signal 6 SIGABRT
  47/779 qemu:qtest+qtest-loongarch64 / qtest-loongarch64/test-hmp 
           ERROR           0.97s   killed by signal 6 SIGABRT
353/779 qemu:qtest+qtest-loongarch64 / 
qtest-loongarch64/machine-none-test        ERROR           0.73s 
killed by signal 6 SIGABRT

Paolo

> ----------------------------------------------------------------
> 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
> 
> 



  parent reply	other threads:[~2023-05-10 11:18 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
2023-05-10 12:06   ` Richard Henderson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bd4d0fa0-6ce6-058c-22a3-f11909af8d12@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=gaosong@loongson.cn \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).