Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH v2] gdbserver: Clear X86_XSTATE_MPX bits in xcr0 on x32
@ 2024-03-20 11:13 H.J. Lu
  2024-03-20 14:45 ` Willgerodt, Felix
  2024-03-23 11:29 ` Andrew Burgess
  0 siblings, 2 replies; 6+ messages in thread
From: H.J. Lu @ 2024-03-20 11:13 UTC (permalink / raw)
  To: gdb-patches; +Cc: felix.willgerodt, jhb

Since MPX isn't available for x32, we should clear X86_XSTATE_MPX bits
on x32.

	PR server/31511
	* linux-x86-low.cc (x86_linux_read_description): Clear
	X86_XSTATE_MPX bits in xcr0 on x32.
---
 gdbserver/linux-x86-low.cc | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gdbserver/linux-x86-low.cc b/gdbserver/linux-x86-low.cc
index 3af0a009052..933d1fb012a 100644
--- a/gdbserver/linux-x86-low.cc
+++ b/gdbserver/linux-x86-low.cc
@@ -938,6 +938,10 @@ x86_linux_read_description (void)
 	  xcr0 = xstateregs[(I386_LINUX_XSAVE_XCR0_OFFSET
 			     / sizeof (uint64_t))];
 
+	  /* No MPX on x32.  */
+	  if (machine == EM_X86_64 && !is_elf64)
+	    xcr0 &= ~X86_XSTATE_MPX;
+
 	  xsave_len = x86_xsave_length ();
 
 	  /* Use PTRACE_GETREGSET if it is available.  */
-- 
2.44.0


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

end of thread, other threads:[~2024-03-23 17:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-20 11:13 [PATCH v2] gdbserver: Clear X86_XSTATE_MPX bits in xcr0 on x32 H.J. Lu
2024-03-20 14:45 ` Willgerodt, Felix
2024-03-21 17:29   ` John Baldwin
2024-03-23 11:29 ` Andrew Burgess
2024-03-23 16:39   ` Andrew Burgess
2024-03-23 17:08     ` H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox