Correct debugserver to write xmm/ymm/zmm reg values

debugserver does not call thread_set_state when changing xmm/ymm/zmm
register values, so the register contents are never updated.  Fix
that.  Mark the shell tests which xfail'ed these tests on darwin systems
to xfail them when the system debugserver, they will pass when using
the in-tree debugserver.  When this makes it into the installed
system debugservers, we'll remove the xfails.

Differential Revision: https://reviews.llvm.org/D123269
rdar://91258333
rdar://31294382
This commit is contained in:
Jason Molenda 2022-04-06 23:33:19 -07:00
parent f891123556
commit 4d3cc27831
4 changed files with 26 additions and 7 deletions
lldb
test/Shell/Register
tools/debugserver/source/MacOSX/x86_64

@ -1,4 +1,9 @@
# XFAIL: system-darwin
# xfail with system debugserver until the fix for
# https://reviews.llvm.org/D123269 in
# lldb/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp
# has made it into released tools.
# XFAIL: system-debugserver
# XFAIL: system-windows
# REQUIRES: native && target-x86_64
# RUN: %clangxx_host %p/Inputs/x86-64-write.cpp -o %t

@ -1,4 +1,9 @@
# XFAIL: system-darwin
# xfail with system debugserver until the fix for
# https://reviews.llvm.org/D123269 in
# lldb/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp
# has made it into released tools.
# XFAIL: system-debugserver
# XFAIL: system-windows
# REQUIRES: native && target-x86_64 && native-cpu-avx
# RUN: %clangxx_host %p/Inputs/x86-ymm-write.cpp -o %t

@ -1,4 +1,9 @@
# XFAIL: system-darwin
# xfail with system debugserver until the fix for
# https://reviews.llvm.org/D123269 in
# lldb/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp
# has made it into released tools.
# XFAIL: system-debugserver
# XFAIL: system-freebsd
# XFAIL: system-linux
# XFAIL: system-netbsd

@ -2632,7 +2632,8 @@ bool DNBArchImplX86_64::SetRegisterValue(uint32_t set, uint32_t reg,
&value->value.uint8, 16);
memcpy(&m_state.context.fpu.avx.__fpu_ymmh0 + (reg - fpu_ymm0),
(&value->value.uint8) + 16, 16);
return true;
success = true;
break;
case fpu_k0:
case fpu_k1:
case fpu_k2:
@ -2643,7 +2644,8 @@ bool DNBArchImplX86_64::SetRegisterValue(uint32_t set, uint32_t reg,
case fpu_k7:
memcpy(&m_state.context.fpu.avx512f.__fpu_k0 + (reg - fpu_k0),
&value->value.uint8, 8);
return true;
success = true;
break;
case fpu_zmm0:
case fpu_zmm1:
case fpu_zmm2:
@ -2666,7 +2668,8 @@ bool DNBArchImplX86_64::SetRegisterValue(uint32_t set, uint32_t reg,
&value->value.uint8 + 16, 16);
memcpy(&m_state.context.fpu.avx512f.__fpu_zmmh0 + (reg - fpu_zmm0),
&value->value.uint8 + 32, 32);
return true;
success = true;
break;
case fpu_zmm16:
case fpu_zmm17:
case fpu_zmm18:
@ -2685,7 +2688,8 @@ bool DNBArchImplX86_64::SetRegisterValue(uint32_t set, uint32_t reg,
case fpu_zmm31:
memcpy(&m_state.context.fpu.avx512f.__fpu_zmm16 + (reg - fpu_zmm16),
&value->value.uint8, 64);
return true;
success = true;
break;
}
break;