qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/49] i386, qom, build changes for 2024-10-31
@ 2024-10-31 17:51 Paolo Bonzini
  2024-10-31 17:51 ` [PULL 01/49] stubs: avoid duplicate symbols in libqemuutil.a Paolo Bonzini
                   ` (49 more replies)
  0 siblings, 50 replies; 58+ messages in thread
From: Paolo Bonzini @ 2024-10-31 17:51 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 58d49b5895f2e0b5cfe4b2901bf24f3320b74f29:

  Merge tag 'net-pull-request' of https://github.com/jasowang/qemu into staging (2024-10-29 14:00:43 +0000)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream-i386

for you to fetch changes up to 1a519388a882fbb352e49cbebb0ed8f62d05842d:

  target/i386: Introduce GraniteRapids-v2 model (2024-10-31 18:28:33 +0100)

----------------------------------------------------------------
* target/i386: new feature bits for AMD processors
* target/i386/tcg: improvements around flag handling
* target/i386: add AVX10 support
* target/i386: add GraniteRapids-v2 model
* dockerfiles: add libcbor
* New nitro-enclave machine type
* qom: cleanups to object_new
* configure: detect 64-bit MIPS for rust
* configure: deprecate 32-bit MIPS

----------------------------------------------------------------
Babu Moger (3):
      target/i386: Fix minor typo in NO_NESTED_DATA_BP feature bit
      target/i386: Expose bits related to SRSO vulnerability
      target/i386: Expose new feature bits in CPUID 8000_0021_EAX/EBX

Daniel P. Berrangé (2):
      tests: add 'rust' and 'bindgen' to CI package list
      ci: enable rust in the Fedora system build job

Dorjoy Chowdhury (6):
      tests/lcitool: Update libvirt-ci and add libcbor dependency
      device/virtio-nsm: Support for Nitro Secure Module device
      hw/core: Add Enclave Image Format (EIF) related helpers
      core/machine: Make create_default_memdev machine a virtual method
      machine/nitro-enclave: New machine type for AWS Nitro Enclaves
      docs/nitro-enclave: Documentation for nitro-enclave machine type

Paolo Bonzini (25):
      stubs: avoid duplicate symbols in libqemuutil.a
      target/i386: fix CPUID check for LFENCE and SFENCE
      configure: detect 64-bit MIPS
      configure, meson: deprecate 32-bit MIPS
      accel: remove dead statement and useless assertion
      qom: remove unused function
      qom: use object_new_with_class when possible
      qom: centralize module-loading functionality
      qom: let object_new use a module if the type is not present
      qom: allow user-creatable classes to be in modules
      target/i386/hvf: fix handling of XSAVE-related CPUID bits
      ci: always invoke meson through pyvenv
      target/i386: use tcg_gen_ext_tl when applicable
      target/i386: remove CC_OP_CLR
      target/i386: optimize computation of ZF from CC_OP_DYNAMIC
      target/i386: optimize TEST+Jxx sequences
      target/i386: add a few more trivial CCPrepare cases
      target/i386: add a note about gen_jcc1
      target/i386: make flag variables unsigned
      target/i386: use compiler builtin to compute PF
      target/i386: use higher-precision arithmetic to compute CF
      target/i386: use + to put flags together
      target/i386: cpu: set correct supported XCR0 features for TCG
      target/i386: do not rely on ExtSaveArea for accelerator-supported XCR0 bits
      target/i386: return bool from x86_cpu_filter_features

Pierrick Bouvier (1):
      scripts: remove erroneous file that breaks git clone on Windows

Richard Henderson (4):
      target/i386: Tidy cc_op_str usage
      target/i386: Rearrange CCOp
      target/i386: Introduce cc_op_size
      target/i386: Wrap cc_op_live with a validity check

Sandipan Das (1):
      target/i386: Add PerfMonV2 feature bit

Tao Su (5):
      target/i386: add AVX10 feature and AVX10 version property
      target/i386: add CPUID.24 features for AVX10
      target/i386: Add feature dependencies for AVX10
      target/i386: Add AVX512 state when AVX10 is supported
      target/i386: Introduce GraniteRapids-v2 model

Xiaoyao Li (1):
      i386/cpu: Drop the check of phys_bits in host_cpu_realizefn()

Zhao Liu (1):
      MAINTAINERS: Add myself as a reviewer of x86 general architecture support

 MAINTAINERS                                        |   21 +
 docs/about/build-platforms.rst                     |    2 +-
 docs/about/deprecated.rst                          |   12 +-
 docs/system/i386/nitro-enclave.rst                 |   78 +
 docs/system/target-i386.rst                        |    3 +-
 configure                                          |   10 +-
 configs/devices/i386-softmmu/default.mak           |    1 +
 meson.build                                        |   17 +
 host/include/i386/host/cpuinfo.h                   |    1 +
 hw/core/eif.h                                      |   22 +
 include/hw/boards.h                                |    2 +
 include/hw/i386/microvm.h                          |    2 +
 include/hw/i386/nitro_enclave.h                    |   62 +
 include/hw/virtio/cbor-helpers.h                   |   45 +
 include/hw/virtio/virtio-nsm.h                     |   49 +
 include/qemu/host-utils.h                          |    9 +
 include/qom/object.h                               |    8 -
 include/sysemu/hostmem.h                           |    2 +
 target/i386/cpu.h                                  |   76 +-
 target/i386/helper.h                               |    1 +
 target/i386/tcg/helper-tcg.h                       |    6 +-
 target/i386/tcg/cc_helper_template.h.inc           |  127 +-
 accel/accel-system.c                               |    4 +-
 backends/hostmem-memfd.c                           |    2 -
 hw/core/eif.c                                      |  719 ++++++++
 hw/core/machine.c                                  |   71 +-
 hw/core/qdev.c                                     |   21 +-
 hw/i386/microvm.c                                  |    6 +-
 hw/i386/nitro_enclave.c                            |  354 ++++
 hw/virtio/cbor-helpers.c                           |  321 ++++
 hw/virtio/virtio-nsm-pci.c                         |   73 +
 hw/virtio/virtio-nsm.c                             | 1732 ++++++++++++++++++++
 qom/object.c                                       |   80 +-
 qom/object_interfaces.c                            |    4 +-
 qom/qom-qmp-cmds.c                                 |    4 +-
 target/i386/cpu-dump.c                             |   18 +-
 target/i386/cpu.c                                  |  218 ++-
 target/i386/host-cpu.c                             |   16 +-
 target/i386/hvf/x86_cpuid.c                        |   56 +-
 target/i386/kvm/kvm-cpu.c                          |    4 -
 target/i386/kvm/kvm.c                              |    3 +-
 target/i386/tcg/cc_helper.c                        |   51 +-
 target/i386/tcg/int_helper.c                       |    4 +-
 target/i386/tcg/translate.c                        |  103 +-
 tests/qtest/libqtest.c                             |    3 +-
 util/cpuinfo-i386.c                                |    1 +
 target/i386/tcg/decode-new.c.inc                   |    6 +-
 target/i386/tcg/emit.c.inc                         |   24 +-
 .gitlab-ci.d/buildtest-template.yml                |    2 +-
 .gitlab-ci.d/buildtest.yml                         |    2 +-
 .gitlab-ci.d/cirrus/freebsd-14.vars                |    2 +-
 .gitlab-ci.d/cirrus/macos-14.vars                  |    2 +-
 .gitlab-ci.d/cirrus/macos-15.vars                  |    2 +-
 Kconfig.host                                       |    6 +
 hw/core/Kconfig                                    |    4 +
 hw/core/meson.build                                |    1 +
 hw/i386/Kconfig                                    |   10 +
 hw/i386/meson.build                                |    1 +
 hw/virtio/Kconfig                                  |    4 +
 hw/virtio/meson.build                              |    2 +
 meson_options.txt                                  |    2 +
 scripts/ci/setup/ubuntu/ubuntu-2204-aarch64.yaml   |    3 +
 scripts/ci/setup/ubuntu/ubuntu-2204-s390x.yaml     |    3 +
 scripts/meson-buildoptions.                        |    0
 scripts/meson-buildoptions.sh                      |    3 +
 stubs/meson.build                                  |    7 +-
 tests/docker/dockerfiles/alpine.docker             |    3 +
 tests/docker/dockerfiles/centos9.docker            |    2 +
 tests/docker/dockerfiles/debian-amd64-cross.docker |    4 +
 tests/docker/dockerfiles/debian-arm64-cross.docker |    4 +
 tests/docker/dockerfiles/debian-armhf-cross.docker |    4 +
 tests/docker/dockerfiles/debian-i686-cross.docker  |    4 +
 .../dockerfiles/debian-mips64el-cross.docker       |    4 +
 .../docker/dockerfiles/debian-mipsel-cross.docker  |    4 +
 .../docker/dockerfiles/debian-ppc64el-cross.docker |    4 +
 tests/docker/dockerfiles/debian-s390x-cross.docker |    4 +
 tests/docker/dockerfiles/debian.docker             |    3 +
 .../docker/dockerfiles/fedora-rust-nightly.docker  |    3 +
 tests/docker/dockerfiles/fedora-win64-cross.docker |    2 +
 tests/docker/dockerfiles/fedora.docker             |    3 +
 tests/docker/dockerfiles/opensuse-leap.docker      |    3 +
 tests/docker/dockerfiles/ubuntu2204.docker         |    3 +
 tests/lcitool/projects/qemu.yml                    |    3 +
 tests/vm/generated/freebsd.json                    |    2 +
 84 files changed, 4219 insertions(+), 350 deletions(-)
 create mode 100644 docs/system/i386/nitro-enclave.rst
 create mode 100644 hw/core/eif.h
 create mode 100644 include/hw/i386/nitro_enclave.h
 create mode 100644 include/hw/virtio/cbor-helpers.h
 create mode 100644 include/hw/virtio/virtio-nsm.h
 create mode 100644 hw/core/eif.c
 create mode 100644 hw/i386/nitro_enclave.c
 create mode 100644 hw/virtio/cbor-helpers.c
 create mode 100644 hw/virtio/virtio-nsm-pci.c
 create mode 100644 hw/virtio/virtio-nsm.c
 delete mode 100644 scripts/meson-buildoptions.
-- 
2.47.0



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

end of thread, other threads:[~2024-11-05 16:23 UTC | newest]

Thread overview: 58+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-31 17:51 [PULL 00/49] i386, qom, build changes for 2024-10-31 Paolo Bonzini
2024-10-31 17:51 ` [PULL 01/49] stubs: avoid duplicate symbols in libqemuutil.a Paolo Bonzini
2024-10-31 17:51 ` [PULL 02/49] tests: add 'rust' and 'bindgen' to CI package list Paolo Bonzini
2024-10-31 17:51 ` [PULL 03/49] ci: enable rust in the Fedora system build job Paolo Bonzini
2024-10-31 17:51 ` [PULL 04/49] target/i386: fix CPUID check for LFENCE and SFENCE Paolo Bonzini
2024-11-04 18:17   ` Michael Tokarev
2024-11-04 18:31     ` Paolo Bonzini
2024-10-31 17:51 ` [PULL 05/49] scripts: remove erroneous file that breaks git clone on Windows Paolo Bonzini
2024-10-31 17:51 ` [PULL 06/49] configure: detect 64-bit MIPS Paolo Bonzini
2024-10-31 17:51 ` [PULL 07/49] configure, meson: deprecate 32-bit MIPS Paolo Bonzini
2024-10-31 17:51 ` [PULL 08/49] MAINTAINERS: Add myself as a reviewer of x86 general architecture support Paolo Bonzini
2024-10-31 17:51 ` [PULL 09/49] accel: remove dead statement and useless assertion Paolo Bonzini
2024-10-31 17:51 ` [PULL 10/49] i386/cpu: Drop the check of phys_bits in host_cpu_realizefn() Paolo Bonzini
2024-10-31 17:51 ` [PULL 11/49] qom: remove unused function Paolo Bonzini
2024-10-31 17:51 ` [PULL 12/49] qom: use object_new_with_class when possible Paolo Bonzini
2024-10-31 17:51 ` [PULL 13/49] qom: centralize module-loading functionality Paolo Bonzini
2024-10-31 17:51 ` [PULL 14/49] qom: let object_new use a module if the type is not present Paolo Bonzini
2024-10-31 17:51 ` [PULL 15/49] qom: allow user-creatable classes to be in modules Paolo Bonzini
2024-10-31 17:51 ` [PULL 16/49] target/i386: Fix minor typo in NO_NESTED_DATA_BP feature bit Paolo Bonzini
2024-10-31 17:51 ` [PULL 17/49] target/i386: Add PerfMonV2 " Paolo Bonzini
2024-10-31 17:51 ` [PULL 18/49] target/i386: Expose bits related to SRSO vulnerability Paolo Bonzini
2024-10-31 17:51 ` [PULL 19/49] target/i386: Expose new feature bits in CPUID 8000_0021_EAX/EBX Paolo Bonzini
2024-10-31 17:51 ` [PULL 20/49] target/i386/hvf: fix handling of XSAVE-related CPUID bits Paolo Bonzini
2024-10-31 17:51 ` [PULL 21/49] tests/lcitool: Update libvirt-ci and add libcbor dependency Paolo Bonzini
2024-10-31 17:51 ` [PULL 22/49] device/virtio-nsm: Support for Nitro Secure Module device Paolo Bonzini
2024-10-31 17:51 ` [PULL 23/49] hw/core: Add Enclave Image Format (EIF) related helpers Paolo Bonzini
2024-11-05 11:43   ` Peter Maydell
2024-11-05 12:51     ` Paolo Bonzini
2024-11-05 13:56       ` Dorjoy Chowdhury
2024-11-05 15:37         ` Alexander Graf
2024-11-05 16:22           ` Dorjoy Chowdhury
2024-10-31 17:51 ` [PULL 24/49] core/machine: Make create_default_memdev machine a virtual method Paolo Bonzini
2024-10-31 17:51 ` [PULL 25/49] machine/nitro-enclave: New machine type for AWS Nitro Enclaves Paolo Bonzini
2024-10-31 17:51 ` [PULL 26/49] docs/nitro-enclave: Documentation for nitro-enclave machine type Paolo Bonzini
2024-10-31 17:51 ` [PULL 27/49] ci: always invoke meson through pyvenv Paolo Bonzini
2024-10-31 17:51 ` [PULL 28/49] target/i386: use tcg_gen_ext_tl when applicable Paolo Bonzini
2024-10-31 17:51 ` [PULL 29/49] target/i386: Tidy cc_op_str usage Paolo Bonzini
2024-10-31 17:51 ` [PULL 30/49] target/i386: remove CC_OP_CLR Paolo Bonzini
2024-10-31 17:51 ` [PULL 31/49] target/i386: Rearrange CCOp Paolo Bonzini
2024-10-31 17:51 ` [PULL 32/49] target/i386: Introduce cc_op_size Paolo Bonzini
2024-10-31 17:51 ` [PULL 33/49] target/i386: Wrap cc_op_live with a validity check Paolo Bonzini
2024-10-31 17:51 ` [PULL 34/49] target/i386: optimize computation of ZF from CC_OP_DYNAMIC Paolo Bonzini
2024-10-31 17:51 ` [PULL 35/49] target/i386: optimize TEST+Jxx sequences Paolo Bonzini
2024-10-31 17:52 ` [PULL 36/49] target/i386: add a few more trivial CCPrepare cases Paolo Bonzini
2024-10-31 17:52 ` [PULL 37/49] target/i386: add a note about gen_jcc1 Paolo Bonzini
2024-10-31 17:52 ` [PULL 38/49] target/i386: make flag variables unsigned Paolo Bonzini
2024-10-31 17:52 ` [PULL 39/49] target/i386: use compiler builtin to compute PF Paolo Bonzini
2024-10-31 17:52 ` [PULL 40/49] target/i386: use higher-precision arithmetic to compute CF Paolo Bonzini
2024-10-31 17:52 ` [PULL 41/49] target/i386: use + to put flags together Paolo Bonzini
2024-10-31 17:52 ` [PULL 42/49] target/i386: cpu: set correct supported XCR0 features for TCG Paolo Bonzini
2024-10-31 17:52 ` [PULL 43/49] target/i386: do not rely on ExtSaveArea for accelerator-supported XCR0 bits Paolo Bonzini
2024-10-31 17:52 ` [PULL 44/49] target/i386: return bool from x86_cpu_filter_features Paolo Bonzini
2024-10-31 17:52 ` [PULL 45/49] target/i386: add AVX10 feature and AVX10 version property Paolo Bonzini
2024-10-31 17:52 ` [PULL 46/49] target/i386: add CPUID.24 features for AVX10 Paolo Bonzini
2024-10-31 17:52 ` [PULL 47/49] target/i386: Add feature dependencies " Paolo Bonzini
2024-10-31 17:52 ` [PULL 48/49] target/i386: Add AVX512 state when AVX10 is supported Paolo Bonzini
2024-10-31 17:52 ` [PULL 49/49] target/i386: Introduce GraniteRapids-v2 model Paolo Bonzini
2024-11-04 10:47 ` [PULL 00/49] i386, qom, build changes for 2024-10-31 Peter Maydell

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