Automatic date update in version.in
[binutils-gdb.git] / gdb / amd64-windows-nat.c
bloba282762d027be9b3eaa5978cb8a55cc158bdfcd3
1 /* Copyright (C) 2008-2024 Free Software Foundation, Inc.
3 This file is part of GDB.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include "windows-nat.h"
19 #include "x86-nat.h"
20 #include "amd64-tdep.h"
22 #include <windows.h>
24 #define context_offset(x) (offsetof (CONTEXT, x))
25 const int amd64_mappings[] =
27 context_offset (Rax),
28 context_offset (Rbx),
29 context_offset (Rcx),
30 context_offset (Rdx),
31 context_offset (Rsi),
32 context_offset (Rdi),
33 context_offset (Rbp),
34 context_offset (Rsp),
35 context_offset (R8),
36 context_offset (R9),
37 context_offset (R10),
38 context_offset (R11),
39 context_offset (R12),
40 context_offset (R13),
41 context_offset (R14),
42 context_offset (R15),
43 context_offset (Rip),
44 context_offset (EFlags),
45 context_offset (SegCs),
46 context_offset (SegSs),
47 context_offset (SegDs),
48 context_offset (SegEs),
49 context_offset (SegFs),
50 context_offset (SegGs),
51 context_offset (FloatSave.FloatRegisters[0]),
52 context_offset (FloatSave.FloatRegisters[1]),
53 context_offset (FloatSave.FloatRegisters[2]),
54 context_offset (FloatSave.FloatRegisters[3]),
55 context_offset (FloatSave.FloatRegisters[4]),
56 context_offset (FloatSave.FloatRegisters[5]),
57 context_offset (FloatSave.FloatRegisters[6]),
58 context_offset (FloatSave.FloatRegisters[7]),
59 context_offset (FloatSave.ControlWord),
60 context_offset (FloatSave.StatusWord),
61 context_offset (FloatSave.TagWord),
62 context_offset (FloatSave.ErrorSelector),
63 context_offset (FloatSave.ErrorOffset),
64 context_offset (FloatSave.DataSelector),
65 context_offset (FloatSave.DataOffset),
66 context_offset (FloatSave.ErrorSelector)
67 /* XMM0-7 */ ,
68 context_offset (Xmm0),
69 context_offset (Xmm1),
70 context_offset (Xmm2),
71 context_offset (Xmm3),
72 context_offset (Xmm4),
73 context_offset (Xmm5),
74 context_offset (Xmm6),
75 context_offset (Xmm7),
76 context_offset (Xmm8),
77 context_offset (Xmm9),
78 context_offset (Xmm10),
79 context_offset (Xmm11),
80 context_offset (Xmm12),
81 context_offset (Xmm13),
82 context_offset (Xmm14),
83 context_offset (Xmm15),
84 /* MXCSR */
85 context_offset (FloatSave.MxCsr)
87 #undef context_offset
89 /* segment_register_p_ftype implementation for amd64. */
91 int
92 amd64_windows_segment_register_p (int regnum)
94 return regnum >= AMD64_CS_REGNUM && regnum <= AMD64_GS_REGNUM;
97 void _initialize_amd64_windows_nat ();
98 void
99 _initialize_amd64_windows_nat ()
101 x86_set_debug_register_length (8);