summaryrefslogtreecommitdiff
path: root/gdb/i386-windows-nat.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2012-05-04 18:36:28 +0000
committerJoel Brobecker <brobecker@gnat.com>2012-05-04 18:36:28 +0000
commitbe99a4846257d665e0a0db366a4aa0068f3a4568 (patch)
treef33b2b1d35b7d7833ae40e13ca574f1b618b913a /gdb/i386-windows-nat.c
parent0599b1780d127fff8f7c29af624921b987b4d7b4 (diff)
downloadgdb-be99a4846257d665e0a0db366a4aa0068f3a4568.tar.gz
Segment register reading on Windows targets.
This patch makes sure that the value of segment registers are read properly as 16bit values on Windows. gdb/ChangeLog: * windows-nat.h (segment_register_p_ftype): New typedef. (windows_set_segment_register_p): Add declaration. * windows-nat.c (segment_register_p): New static global. (windows_set_segment_register_p): New function. (do_windows_fetch_inferior_registers): Add special handling for segment registers. * amd64-windows-nat.c: #include "amd64-tdep.h". (amd64_windows_segment_register_p): New function. (_initialize_amd64_windows_nat): Call windows_set_segment_register_p. * i386-windows-nat.c: #include "i386-tdep.h". (i386_windows_segment_register_p): New function. (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
Diffstat (limited to 'gdb/i386-windows-nat.c')
-rw-r--r--gdb/i386-windows-nat.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/i386-windows-nat.c b/gdb/i386-windows-nat.c
index 5d93915a72a..0928c9fcc66 100644
--- a/gdb/i386-windows-nat.c
+++ b/gdb/i386-windows-nat.c
@@ -18,6 +18,7 @@
#include "defs.h"
#include "windows-nat.h"
#include "i386-nat.h"
+#include "i386-tdep.h"
#include <windows.h>
@@ -70,6 +71,14 @@ static const int mappings[] =
};
#undef context_offset
+/* segment_register_p_ftype implementation for x86. */
+
+static int
+i386_windows_segment_register_p (int regnum)
+{
+ return regnum >= I386_CS_REGNUM && regnum <= I386_GS_REGNUM;
+}
+
/* -Wmissing-prototypes */
extern initialize_file_ftype _initialize_i386_windows_nat;
@@ -77,5 +86,6 @@ void
_initialize_i386_windows_nat (void)
{
windows_set_context_register_offsets (mappings);
+ windows_set_segment_register_p (i386_windows_segment_register_p);
i386_set_debug_register_length (4);
}