mbox

[PULL,00/28] linux-user patch queue

Message ID 20240527005001.642825-1-richard.henderson@linaro.org (mailing list archive)
State New
Headers show

Pull-request

https://gitlab.com/rth7680/qemu.git tags/pull-lu-20240526

Message

Richard Henderson May 27, 2024, 12:49 a.m. UTC
The following changes since commit 70581940cabcc51b329652becddfbc6a261b1b83:

  Merge tag 'pull-tcg-20240523' of https://gitlab.com/rth7680/qemu into staging (2024-05-23 09:47:40 -0700)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-lu-20240526

for you to fetch changes up to 701890bdd09b289fd9cb852e714e91373088b0f3:

  target/i386: Pass host pointer and size to cpu_x86_{xsave,xrstor} (2024-05-26 15:49:58 -0700)

----------------------------------------------------------------
target/i386: Introduce X86Access and use for xsave and friends
linux-user/i386: Fix allocation and alignment of fp state in signal frame

----------------------------------------------------------------
Richard Henderson (28):
      target/i386: Add tcg/access.[ch]
      target/i386: Convert do_fldt, do_fstt to X86Access
      target/i386: Convert helper_{fbld,fbst}_ST0 to X86Access
      target/i386: Convert do_fldenv to X86Access
      target/i386: Convert do_fstenv to X86Access
      target/i386: Convert do_fsave, do_frstor to X86Access
      target/i386: Convert do_xsave_{fpu,mxcr,sse} to X86Access
      target/i386: Convert do_xrstor_{fpu,mxcr,sse} to X86Access
      tagret/i386: Convert do_fxsave, do_fxrstor to X86Access
      target/i386: Convert do_xsave_* to X86Access
      target/i386: Convert do_xrstor_* to X86Access
      target/i386: Split out do_xsave_chk
      target/i386: Add rbfm argument to cpu_x86_{xsave,xrstor}
      target/i386: Add {hw,sw}_reserved to X86LegacyXSaveArea
      linux-user/i386: Drop xfeatures_size from sigcontext arithmetic
      linux-user/i386: Remove xfeatures from target_fpstate_fxsave
      linux-user/i386: Replace target_fpstate_fxsave with X86LegacyXSaveArea
      linux-user/i386: Split out struct target_fregs_state
      linux-user/i386: Fix -mregparm=3 for signal delivery
      linux-user/i386: Return boolean success from restore_sigcontext
      linux-user/i386: Return boolean success from xrstor_sigcontext
      linux-user/i386: Fix allocation and alignment of fp state
      linux-user/i386: Honor xfeatures in xrstor_sigcontext
      target/i386: Convert do_xsave to X86Access
      target/i386: Convert do_xrstor to X86Access
      target/i386: Pass host pointer and size to cpu_x86_{fsave,frstor}
      target/i386: Pass host pointer and size to cpu_x86_{fxsave,fxrstor}
      target/i386: Pass host pointer and size to cpu_x86_{xsave,xrstor}

 target/i386/cpu.h                |  57 ++--
 target/i386/tcg/access.h         |  40 +++
 linux-user/i386/signal.c         | 671 +++++++++++++++++++++++----------------
 target/i386/tcg/access.c         | 169 ++++++++++
 target/i386/tcg/fpu_helper.c     | 561 +++++++++++++++++++-------------
 tests/tcg/x86_64/test-1648.c     |  33 ++
 target/i386/tcg/meson.build      |   1 +
 tests/tcg/x86_64/Makefile.target |   1 +
 8 files changed, 1024 insertions(+), 509 deletions(-)
 create mode 100644 target/i386/tcg/access.h
 create mode 100644 target/i386/tcg/access.c
 create mode 100644 tests/tcg/x86_64/test-1648.c

Comments

Richard Henderson May 27, 2024, 2:34 a.m. UTC | #1
On 5/26/24 17:49, Richard Henderson wrote:
> The following changes since commit 70581940cabcc51b329652becddfbc6a261b1b83:
> 
>    Merge tag 'pull-tcg-20240523' ofhttps://gitlab.com/rth7680/qemu  into staging (2024-05-23 09:47:40 -0700)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/rth7680/qemu.git  tags/pull-lu-20240526
> 
> for you to fetch changes up to 701890bdd09b289fd9cb852e714e91373088b0f3:
> 
>    target/i386: Pass host pointer and size to cpu_x86_{xsave,xrstor} (2024-05-26 15:49:58 -0700)
> 
> ----------------------------------------------------------------
> target/i386: Introduce X86Access and use for xsave and friends
> linux-user/i386: Fix allocation and alignment of fp state in signal frame

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/9.1 as appropriate.


r~