]> git.proxmox.com Git - mirror_qemu.git/commit
target/i386: Check CR0.TS before enter_mmx
authorMatt Borgerson <contact@mborgerson.com>
Thu, 13 Jul 2023 07:29:01 +0000 (00:29 -0700)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 4 Aug 2023 09:42:18 +0000 (11:42 +0200)
commitb2ea6450d8e1336a33eb958ccc64604bc35a43dd
tree5c4e49ab60b305c6e9cc8fc8040ecf08b210a970
parentc26d005e62f4fd177dae0cd70c24cb96761edebc
target/i386: Check CR0.TS before enter_mmx

When CR0.TS=1, execution of x87 FPU, MMX, and some SSE instructions will
cause a Device Not Available (DNA) exception (#NM). System software uses
this exception event to lazily context switch FPU state.

Before this patch, enter_mmx helpers may be generated just before #NM
generation, prematurely resetting FPU state before the guest has a
chance to save it.

Signed-off-by: Matt Borgerson <contact@mborgerson.com>
Message-ID: <CADc=-s5F10muEhLs4f3mxqsEPAHWj0XFfOC2sfFMVHrk9fcpMg@mail.gmail.com>
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
target/i386/tcg/decode-new.c.inc