qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org
Subject: [PULL 00/31] tcg + linux-user patch queue
Date: Sun, 22 Sep 2024 14:00:41 +0200	[thread overview]
Message-ID: <20240922120112.5067-1-richard.henderson@linaro.org> (raw)

The following changes since commit 01dc65a3bc262ab1bec8fe89775e9bbfa627becb:

  Merge tag 'pull-target-arm-20240919' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2024-09-19 14:15:15 +0100)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20240922

for you to fetch changes up to c4d80fa63e823dc8dbf094b29e39b6978a3073b6:

  linux-user: update syscall.tbl to Linux v6.11 (2024-09-22 09:30:18 +0200)

----------------------------------------------------------------
target/ppc: Fix lxvx/stxvx facility check
linux-user: update syscall_nr.h to Linux v6.10
linux-user: update syscall.tbl to Linux v6.11
tcg: Fix iteration step in 32-bit gvec operation
tcg: Propagate new TCGOp to add_as_label_use
tcg/*: Do not expand cmp_vec, cmpsel_vec early
tcg/optimize: Fold movcond with true and false values identical
tcg/optimize: Optimize cmp_vec and cmpsel_vec
tcg/optimize: Optimize bitsel_vec
tcg/i386: Optimize cmpsel with constant 0 operand 3.
tcg/i386: Implement cmp_vec with avx512 insns
tcg/i386: Implement cmpsel_vec with avx512 insns
tcg/i386: Implement vector TST{EQ,NE} for avx512
tcg/ppc: Implement cmpsel_vec and optimize with constant 0/-1 arguments
tcg/s390x: Implement cmpsel_vec and optimize with constant 0/-1 arguments

----------------------------------------------------------------
Fabiano Rosas (1):
      target/ppc: Fix lxvx/stxvx facility check

Laurent Vivier (9):
      linux-user: update syscall_nr.h to Linux v6.10
      linux-user, mips: update syscall-args-o32.c.inc to Linux v6.10
      linux-user: update syscall.tbl to Linux v6.10
      linux-user,aarch64: move to syscalltbl file
      linux-user,openrisc: move to syscalltbl file
      linux-user,riscv: move to syscalltbl file
      linux-user,hexagon: move to syscalltbl file
      linux-user,loongarch: move to syscalltbl file
      linux-user: update syscall.tbl to Linux v6.11

Richard Henderson (20):
      tcg: Return TCGOp from tcg_gen_op[1-6]
      tcg: Propagate new TCGOp to add_as_label_use
      tcg: Export vec_gen_6
      tcg/i386: Split out tcg_out_vex_modrm_type
      tcg/i386: Do not expand cmp_vec early
      tcg/i386: Do not expand cmpsel_vec early
      tcg/ppc: Do not expand cmp_vec early
      tcg/s390x: Do not expand cmp_vec early
      tcg/optimize: Fold movcond with true and false values identical
      tcg/optimize: Optimize cmp_vec and cmpsel_vec
      tcg/optimize: Optimize bitsel_vec
      tcg/i386: Optimize cmpsel with constant 0 operand 3.
      tcg/i386: Implement cmp_vec with avx512 insns
      tcg/i386: Add predicate parameters to tcg_out_evex_opc
      tcg/i386: Implement cmpsel_vec with avx512 insns
      tcg/i386: Implement vector TST{EQ,NE} for avx512
      tcg/ppc: Implement cmpsel_vec
      tcg/ppc: Optimize cmpsel with constant 0/-1 arguments
      tcg/s390x: Implement cmpsel_vec
      tcg/s390x: Optimize cmpsel with constant 0/-1 arguments

TANG Tiancheng (1):
      tcg: Fix iteration step in 32-bit gvec operation

 linux-user/aarch64/syscall_nr.h            | 314 +------------------
 linux-user/hexagon/syscall_nr.h            | 332 --------------------
 linux-user/loongarch64/syscall_nr.h        | 312 ------------------
 linux-user/openrisc/syscall_nr.h           | 334 --------------------
 linux-user/riscv/syscall32_nr.h            | 308 ------------------
 linux-user/riscv/syscall64_nr.h            | 314 -------------------
 linux-user/riscv/syscall_nr.h              |  15 -
 linux-user/syscall_defs.h                  |   7 +-
 tcg/i386/tcg-target-con-set.h              |   1 +
 tcg/i386/tcg-target-con-str.h              |   1 +
 tcg/i386/tcg-target.h                      |   4 +-
 tcg/i386/tcg-target.opc.h                  |   1 -
 tcg/ppc/tcg-target-con-set.h               |   1 +
 tcg/ppc/tcg-target.h                       |   2 +-
 tcg/s390x/tcg-target-con-set.h             |   2 +
 tcg/s390x/tcg-target-con-str.h             |   1 +
 tcg/s390x/tcg-target.h                     |   2 +-
 tcg/tcg-internal.h                         |  14 +-
 linux-user/riscv/cpu_loop.c                |   2 +-
 tcg/optimize.c                             |  99 ++++++
 tcg/tcg-op-gvec.c                          |   2 +-
 tcg/tcg-op-vec.c                           |   4 +-
 tcg/tcg-op.c                               |  86 ++---
 configs/targets/aarch64-linux-user.mak     |   2 +
 configs/targets/aarch64_be-linux-user.mak  |   2 +
 configs/targets/hexagon-linux-user.mak     |   2 +
 configs/targets/loongarch64-linux-user.mak |   2 +
 configs/targets/or1k-linux-user.mak        |   2 +
 configs/targets/riscv32-linux-user.mak     |   3 +
 configs/targets/riscv64-linux-user.mak     |   3 +
 linux-user/aarch64/meson.build             |   6 +
 linux-user/aarch64/syscall_64.tbl          | 405 ++++++++++++++++++++++++
 linux-user/aarch64/syscallhdr.sh           |  28 ++
 linux-user/alpha/syscall.tbl               |  28 +-
 linux-user/arm/syscall.tbl                 |  25 +-
 linux-user/hexagon/meson.build             |   6 +
 linux-user/hexagon/syscall.tbl             | 405 ++++++++++++++++++++++++
 linux-user/hexagon/syscallhdr.sh           |  28 ++
 linux-user/hppa/syscall.tbl                |  41 ++-
 linux-user/i386/syscall_32.tbl             |  35 ++-
 linux-user/loongarch64/meson.build         |   7 +
 linux-user/loongarch64/syscall.tbl         | 405 ++++++++++++++++++++++++
 linux-user/loongarch64/syscallhdr.sh       |  28 ++
 linux-user/m68k/syscall.tbl                |  22 +-
 linux-user/meson.build                     |   2 +
 linux-user/microblaze/syscall.tbl          |  22 +-
 linux-user/mips/syscall-args-o32.c.inc     |  20 ++
 linux-user/mips/syscall_o32.tbl            |  36 ++-
 linux-user/mips64/syscall_n32.tbl          |  32 +-
 linux-user/mips64/syscall_n64.tbl          |  20 +-
 linux-user/openrisc/meson.build            |   5 +
 linux-user/openrisc/syscall.tbl            | 405 ++++++++++++++++++++++++
 linux-user/openrisc/syscallhdr.sh          |  28 ++
 linux-user/ppc/syscall.tbl                 |  71 +++--
 linux-user/riscv/meson.build               |   6 +
 linux-user/riscv/syscall.tbl               | 405 ++++++++++++++++++++++++
 linux-user/riscv/syscallhdr.sh             |  28 ++
 linux-user/s390x/syscall.tbl               |  34 +-
 linux-user/sh4/syscall.tbl                 |  25 +-
 linux-user/sparc/syscall.tbl               |  40 ++-
 linux-user/x86_64/syscall_64.tbl           |  30 +-
 linux-user/xtensa/syscall.tbl              |  22 +-
 scripts/gensyscalls.sh                     | 103 ------
 scripts/update-syscalltbl.sh               |   5 +
 target/ppc/translate/vsx-impl.c.inc        |   2 +-
 tcg/i386/tcg-target.c.inc                  | 488 ++++++++++++++++++-----------
 tcg/ppc/tcg-target.c.inc                   | 254 +++++++++------
 tcg/s390x/tcg-target.c.inc                 | 195 ++++++------
 68 files changed, 3361 insertions(+), 2560 deletions(-)
 delete mode 100644 linux-user/hexagon/syscall_nr.h
 delete mode 100644 linux-user/loongarch64/syscall_nr.h
 delete mode 100644 linux-user/openrisc/syscall_nr.h
 delete mode 100644 linux-user/riscv/syscall32_nr.h
 delete mode 100644 linux-user/riscv/syscall64_nr.h
 delete mode 100644 linux-user/riscv/syscall_nr.h
 create mode 100644 linux-user/aarch64/syscall_64.tbl
 create mode 100644 linux-user/aarch64/syscallhdr.sh
 create mode 100644 linux-user/hexagon/meson.build
 create mode 100644 linux-user/hexagon/syscall.tbl
 create mode 100644 linux-user/hexagon/syscallhdr.sh
 create mode 100644 linux-user/loongarch64/syscall.tbl
 create mode 100644 linux-user/loongarch64/syscallhdr.sh
 create mode 100644 linux-user/openrisc/meson.build
 create mode 100644 linux-user/openrisc/syscall.tbl
 create mode 100644 linux-user/openrisc/syscallhdr.sh
 create mode 100644 linux-user/riscv/syscall.tbl
 create mode 100644 linux-user/riscv/syscallhdr.sh
 delete mode 100755 scripts/gensyscalls.sh


             reply	other threads:[~2024-09-22 12:08 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-22 12:00 Richard Henderson [this message]
2024-09-22 12:00 ` [PULL 01/31] tcg: Return TCGOp from tcg_gen_op[1-6] Richard Henderson
2024-09-22 12:00 ` [PULL 02/31] tcg: Propagate new TCGOp to add_as_label_use Richard Henderson
2024-09-22 12:00 ` [PULL 03/31] tcg: Fix iteration step in 32-bit gvec operation Richard Henderson
2024-09-22 12:00 ` [PULL 04/31] tcg: Export vec_gen_6 Richard Henderson
2024-09-22 12:00 ` [PULL 05/31] tcg/i386: Split out tcg_out_vex_modrm_type Richard Henderson
2024-09-22 12:00 ` [PULL 06/31] tcg/i386: Do not expand cmp_vec early Richard Henderson
2024-09-22 12:00 ` [PULL 07/31] tcg/i386: Do not expand cmpsel_vec early Richard Henderson
2024-09-22 12:00 ` [PULL 08/31] tcg/ppc: Do not expand cmp_vec early Richard Henderson
2024-09-22 12:00 ` [PULL 09/31] tcg/s390x: " Richard Henderson
2024-09-22 12:00 ` [PULL 10/31] tcg/optimize: Fold movcond with true and false values identical Richard Henderson
2024-09-22 12:00 ` [PULL 11/31] tcg/optimize: Optimize cmp_vec and cmpsel_vec Richard Henderson
2024-09-22 12:00 ` [PULL 12/31] tcg/optimize: Optimize bitsel_vec Richard Henderson
2024-09-22 12:00 ` [PULL 13/31] tcg/i386: Optimize cmpsel with constant 0 operand 3 Richard Henderson
2024-09-22 12:00 ` [PULL 14/31] tcg/i386: Implement cmp_vec with avx512 insns Richard Henderson
2024-09-22 12:00 ` [PULL 15/31] tcg/i386: Add predicate parameters to tcg_out_evex_opc Richard Henderson
2024-09-22 12:00 ` [PULL 16/31] tcg/i386: Implement cmpsel_vec with avx512 insns Richard Henderson
2024-09-22 12:00 ` [PULL 17/31] tcg/i386: Implement vector TST{EQ,NE} for avx512 Richard Henderson
2024-09-22 12:00 ` [PULL 18/31] tcg/ppc: Implement cmpsel_vec Richard Henderson
2024-09-22 12:01 ` [PULL 19/31] tcg/ppc: Optimize cmpsel with constant 0/-1 arguments Richard Henderson
2024-09-22 12:01 ` [PULL 20/31] tcg/s390x: Implement cmpsel_vec Richard Henderson
2024-09-22 12:01 ` [PULL 21/31] tcg/s390x: Optimize cmpsel with constant 0/-1 arguments Richard Henderson
2024-09-22 12:01 ` [PULL 22/31] target/ppc: Fix lxvx/stxvx facility check Richard Henderson
2024-09-22 12:01 ` [PULL 23/31] linux-user: update syscall_nr.h to Linux v6.10 Richard Henderson
2024-09-22 12:01 ` [PULL 24/31] linux-user, mips: update syscall-args-o32.c.inc " Richard Henderson
2024-09-22 12:01 ` [PULL 25/31] linux-user: update syscall.tbl " Richard Henderson
2024-09-22 12:01 ` [PULL 26/31] linux-user,aarch64: move to syscalltbl file Richard Henderson
2024-09-22 12:01 ` [PULL 27/31] linux-user,openrisc: " Richard Henderson
2024-09-22 12:01 ` [PULL 28/31] linux-user,riscv: " Richard Henderson
2024-09-22 12:01 ` [PULL 29/31] linux-user,hexagon: " Richard Henderson
2024-09-22 12:01 ` [PULL 30/31] linux-user,loongarch: " Richard Henderson
2024-09-22 12:01 ` [PULL 31/31] linux-user: update syscall.tbl to Linux v6.11 Richard Henderson
2024-09-27 15:18 ` [PULL 00/31] tcg + linux-user patch queue Peter Maydell

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=20240922120112.5067-1-richard.henderson@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.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).