x86: Move x86-specific linker options to elf_linker_x86_params
[deliverable/binutils-gdb.git] / gdb / amd64-windows-nat.c
CommitLineData
42a4f53d 1/* Copyright (C) 2008-2019 Free Software Foundation, Inc.
d0761299
JB
2
3 This file is part of GDB.
4
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.
9
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.
14
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/>. */
17
18#include "defs.h"
d40dc7a8 19
d55e5aa6 20/* Standard C includes. */
d0761299
JB
21#include <windows.h>
22
d55e5aa6
TT
23/* Local non-gdb includes. */
24#include "amd64-tdep.h"
25#include "windows-nat.h"
26#include "x86-nat.h"
27
d0761299
JB
28#define context_offset(x) (offsetof (CONTEXT, x))
29static const int mappings[] =
30{
31 context_offset (Rax),
32 context_offset (Rbx),
33 context_offset (Rcx),
34 context_offset (Rdx),
35 context_offset (Rsi),
36 context_offset (Rdi),
37 context_offset (Rbp),
38 context_offset (Rsp),
39 context_offset (R8),
40 context_offset (R9),
41 context_offset (R10),
42 context_offset (R11),
43 context_offset (R12),
44 context_offset (R13),
45 context_offset (R14),
46 context_offset (R15),
47 context_offset (Rip),
48 context_offset (EFlags),
49 context_offset (SegCs),
50 context_offset (SegSs),
51 context_offset (SegDs),
52 context_offset (SegEs),
53 context_offset (SegFs),
54 context_offset (SegGs),
55 context_offset (FloatSave.FloatRegisters[0]),
56 context_offset (FloatSave.FloatRegisters[1]),
57 context_offset (FloatSave.FloatRegisters[2]),
58 context_offset (FloatSave.FloatRegisters[3]),
59 context_offset (FloatSave.FloatRegisters[4]),
60 context_offset (FloatSave.FloatRegisters[5]),
61 context_offset (FloatSave.FloatRegisters[6]),
62 context_offset (FloatSave.FloatRegisters[7]),
63 context_offset (FloatSave.ControlWord),
64 context_offset (FloatSave.StatusWord),
65 context_offset (FloatSave.TagWord),
66 context_offset (FloatSave.ErrorSelector),
67 context_offset (FloatSave.ErrorOffset),
68 context_offset (FloatSave.DataSelector),
69 context_offset (FloatSave.DataOffset),
70 context_offset (FloatSave.ErrorSelector)
71 /* XMM0-7 */ ,
72 context_offset (Xmm0),
73 context_offset (Xmm1),
74 context_offset (Xmm2),
75 context_offset (Xmm3),
76 context_offset (Xmm4),
77 context_offset (Xmm5),
78 context_offset (Xmm6),
79 context_offset (Xmm7),
80 context_offset (Xmm8),
81 context_offset (Xmm9),
82 context_offset (Xmm10),
83 context_offset (Xmm11),
84 context_offset (Xmm12),
85 context_offset (Xmm13),
86 context_offset (Xmm14),
87 context_offset (Xmm15),
88 /* MXCSR */
89 context_offset (FloatSave.MxCsr)
90};
91#undef context_offset
92
d40dc7a8
JB
93/* segment_register_p_ftype implementation for amd64. */
94
95static int
96amd64_windows_segment_register_p (int regnum)
97{
98 return regnum >= AMD64_CS_REGNUM && regnum <= AMD64_GS_REGNUM;
99}
100
d0761299
JB
101void
102_initialize_amd64_windows_nat (void)
103{
dc05df57 104 windows_set_context_register_offsets (mappings);
d40dc7a8 105 windows_set_segment_register_p (amd64_windows_segment_register_p);
df7e5265 106 x86_set_debug_register_length (8);
d0761299 107}
This page took 1.452129 seconds and 4 git commands to generate.