Set proc->priv->new_inferior out of linux_add_process
[deliverable/binutils-gdb.git] / gdb / gdbserver / win32-i386-low.c
CommitLineData
32d0add0 1/* Copyright (C) 2007-2015 Free Software Foundation, Inc.
68070c10
PA
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
a9762ec7 7 the Free Software Foundation; either version 3 of the License, or
68070c10
PA
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
a9762ec7 16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
68070c10
PA
17
18#include "server.h"
19#include "win32-low.h"
df7e5265 20#include "x86-low.h"
68070c10 21
54709339
PM
22#ifndef CONTEXT_EXTENDED_REGISTERS
23#define CONTEXT_EXTENDED_REGISTERS 0
24#endif
25
68070c10
PA
26#define FCS_REGNUM 27
27#define FOP_REGNUM 31
28
29#define FLAG_TRACE_BIT 0x100
30
1c07cc19
PM
31#ifdef __x86_64__
32/* Defined in auto-generated file reg-amd64.c. */
54709339 33void init_registers_amd64 (void);
3aee8918 34extern const struct target_desc *tdesc_amd64;
54709339 35#else
d05b4ac3
UW
36/* Defined in auto-generated file reg-i386.c. */
37void init_registers_i386 (void);
3aee8918 38extern const struct target_desc *tdesc_i386;
54709339 39#endif
d05b4ac3 40
df7e5265 41static struct x86_debug_reg_state debug_reg_state;
68070c10 42
a2abc7de
PA
43static int
44update_debug_registers_callback (struct inferior_list_entry *entry,
45 void *pid_p)
46{
47 struct thread_info *thr = (struct thread_info *) entry;
48 win32_thread_info *th = inferior_target_data (thr);
49 int pid = *(int *) pid_p;
50
51 /* Only update the threads of this process. */
52 if (pid_of (thr) == pid)
53 {
54 /* The actual update is done later just before resuming the lwp,
55 we just mark that the registers need updating. */
56 th->debug_registers_changed = 1;
57 }
58
59 return 0;
60}
34b34921 61
aa5ca48f
DE
62/* Update the inferior's debug register REGNUM from STATE. */
63
42995dbd 64static void
df7e5265 65x86_dr_low_set_addr (int regnum, CORE_ADDR addr)
aa5ca48f 66{
a2abc7de
PA
67 /* Only update the threads of this process. */
68 int pid = pid_of (current_thread);
aa5ca48f 69
0a5b1e09 70 gdb_assert (DR_FIRSTADDR <= regnum && regnum <= DR_LASTADDR);
964e4306 71
a2abc7de 72 find_inferior (&all_threads, update_debug_registers_callback, &pid);
964e4306
PA
73}
74
aa5ca48f
DE
75/* Update the inferior's DR7 debug control register from STATE. */
76
42995dbd 77static void
df7e5265 78x86_dr_low_set_control (unsigned long control)
aa5ca48f 79{
a2abc7de
PA
80 /* Only update the threads of this process. */
81 int pid = pid_of (current_thread);
82
83 find_inferior (&all_threads, update_debug_registers_callback, &pid);
84}
85
86/* Return the current value of a DR register of the current thread's
87 context. */
88
89static DWORD64
90win32_get_current_dr (int dr)
91{
92 win32_thread_info *th = inferior_target_data (current_thread);
93
94 win32_require_context (th);
95
96#define RET_DR(DR) \
97 case DR: \
98 return th->context.Dr ## DR
99
100 switch (dr)
101 {
102 RET_DR (0);
103 RET_DR (1);
104 RET_DR (2);
105 RET_DR (3);
106 RET_DR (6);
107 RET_DR (7);
108 }
109
110#undef RET_DR
111
112 gdb_assert_not_reached ("unhandled dr");
113}
114
115static CORE_ADDR
116x86_dr_low_get_addr (int regnum)
117{
118 gdb_assert (DR_FIRSTADDR <= regnum && regnum <= DR_LASTADDR);
119
120 return win32_get_current_dr (regnum - DR_FIRSTADDR);
aa5ca48f
DE
121}
122
42995dbd 123static unsigned long
df7e5265 124x86_dr_low_get_control (void)
964e4306 125{
a2abc7de 126 return win32_get_current_dr (7);
964e4306
PA
127}
128
aa5ca48f
DE
129/* Get the value of the DR6 debug status register from the inferior
130 and record it in STATE. */
131
42995dbd 132static unsigned long
df7e5265 133x86_dr_low_get_status (void)
aa5ca48f 134{
a2abc7de 135 return win32_get_current_dr (6);
aa5ca48f
DE
136}
137
42995dbd 138/* Low-level function vector. */
df7e5265 139struct x86_dr_low_type x86_dr_low =
42995dbd 140 {
df7e5265
GB
141 x86_dr_low_set_control,
142 x86_dr_low_set_addr,
143 x86_dr_low_get_addr,
144 x86_dr_low_get_status,
145 x86_dr_low_get_control,
42995dbd
GB
146 sizeof (void *),
147 };
148
802e8e6d 149/* Breakpoint/watchpoint support. */
aa5ca48f
DE
150
151static int
802e8e6d
PA
152i386_supports_z_point_type (char z_type)
153{
154 switch (z_type)
155 {
156 case Z_PACKET_WRITE_WP:
157 case Z_PACKET_ACCESS_WP:
158 return 1;
159 default:
160 return 0;
161 }
162}
163
164static int
165i386_insert_point (enum raw_bkpt_type type, CORE_ADDR addr,
166 int size, struct raw_breakpoint *bp)
aa5ca48f
DE
167{
168 switch (type)
169 {
802e8e6d
PA
170 case raw_bkpt_type_write_wp:
171 case raw_bkpt_type_access_wp:
a4165e94 172 {
802e8e6d
PA
173 enum target_hw_bp_type hw_type
174 = raw_bkpt_type_to_target_hw_bp_type (type);
a4165e94 175
df7e5265
GB
176 return x86_dr_insert_watchpoint (&debug_reg_state,
177 hw_type, addr, size);
a4165e94 178 }
aa5ca48f
DE
179 default:
180 /* Unsupported. */
181 return 1;
182 }
183}
184
185static int
802e8e6d
PA
186i386_remove_point (enum raw_bkpt_type type, CORE_ADDR addr,
187 int size, struct raw_breakpoint *bp)
aa5ca48f
DE
188{
189 switch (type)
190 {
802e8e6d
PA
191 case raw_bkpt_type_write_wp:
192 case raw_bkpt_type_access_wp:
a4165e94 193 {
802e8e6d
PA
194 enum target_hw_bp_type hw_type
195 = raw_bkpt_type_to_target_hw_bp_type (type);
a4165e94 196
df7e5265
GB
197 return x86_dr_remove_watchpoint (&debug_reg_state,
198 hw_type, addr, size);
a4165e94 199 }
aa5ca48f
DE
200 default:
201 /* Unsupported. */
202 return 1;
203 }
204}
205
206static int
df7e5265 207x86_stopped_by_watchpoint (void)
aa5ca48f 208{
df7e5265 209 return x86_dr_stopped_by_watchpoint (&debug_reg_state);
aa5ca48f
DE
210}
211
212static CORE_ADDR
df7e5265 213x86_stopped_data_address (void)
aa5ca48f
DE
214{
215 CORE_ADDR addr;
df7e5265 216 if (x86_dr_stopped_data_address (&debug_reg_state, &addr))
aa5ca48f
DE
217 return addr;
218 return 0;
219}
220
68070c10 221static void
34b34921 222i386_initial_stuff (void)
68070c10 223{
df7e5265 224 x86_low_init_dregs (&debug_reg_state);
68070c10
PA
225}
226
227static void
a2abc7de 228i386_get_thread_context (win32_thread_info *th)
68070c10 229{
912cf4ba
PA
230 /* Requesting the CONTEXT_EXTENDED_REGISTERS register set fails if
231 the system doesn't support extended registers. */
232 static DWORD extended_registers = CONTEXT_EXTENDED_REGISTERS;
34b34921 233
912cf4ba
PA
234 again:
235 th->context.ContextFlags = (CONTEXT_FULL
236 | CONTEXT_FLOATING_POINT
237 | CONTEXT_DEBUG_REGISTERS
238 | extended_registers);
239
240 if (!GetThreadContext (th->h, &th->context))
241 {
242 DWORD e = GetLastError ();
243
244 if (extended_registers && e == ERROR_INVALID_PARAMETER)
245 {
246 extended_registers = 0;
247 goto again;
248 }
249
250 error ("GetThreadContext failure %ld\n", (long) e);
251 }
68070c10
PA
252}
253
254static void
a2abc7de 255i386_prepare_to_resume (win32_thread_info *th)
68070c10 256{
a2abc7de 257 if (th->debug_registers_changed)
34b34921 258 {
df7e5265 259 struct x86_debug_reg_state *dr = &debug_reg_state;
a2abc7de
PA
260
261 win32_require_context (th);
262
aa5ca48f
DE
263 th->context.Dr0 = dr->dr_mirror[0];
264 th->context.Dr1 = dr->dr_mirror[1];
265 th->context.Dr2 = dr->dr_mirror[2];
266 th->context.Dr3 = dr->dr_mirror[3];
8d26e50c 267 /* th->context.Dr6 = dr->dr_status_mirror;
34b34921 268 FIXME: should we set dr6 also ?? */
8d26e50c 269 th->context.Dr7 = dr->dr_control_mirror;
34b34921 270
a2abc7de
PA
271 th->debug_registers_changed = 0;
272 }
68070c10
PA
273}
274
68070c10 275static void
34b34921 276i386_thread_added (win32_thread_info *th)
68070c10 277{
a2abc7de 278 th->debug_registers_changed = 1;
68070c10
PA
279}
280
281static void
34b34921 282i386_single_step (win32_thread_info *th)
68070c10
PA
283{
284 th->context.EFlags |= FLAG_TRACE_BIT;
285}
286
1c07cc19 287#ifndef __x86_64__
54709339 288
68070c10
PA
289/* An array of offset mappings into a Win32 Context structure.
290 This is a one-to-one mapping which is indexed by gdb's register
291 numbers. It retrieves an offset into the context structure where
292 the 4 byte register is located.
293 An offset value of -1 indicates that Win32 does not provide this
294 register in it's CONTEXT structure. In this case regptr will return
295 a pointer into a dummy register. */
296#define context_offset(x) ((int)&(((CONTEXT *)NULL)->x))
297static const int mappings[] = {
298 context_offset (Eax),
299 context_offset (Ecx),
300 context_offset (Edx),
301 context_offset (Ebx),
302 context_offset (Esp),
303 context_offset (Ebp),
304 context_offset (Esi),
305 context_offset (Edi),
306 context_offset (Eip),
307 context_offset (EFlags),
308 context_offset (SegCs),
309 context_offset (SegSs),
310 context_offset (SegDs),
311 context_offset (SegEs),
312 context_offset (SegFs),
313 context_offset (SegGs),
314 context_offset (FloatSave.RegisterArea[0 * 10]),
315 context_offset (FloatSave.RegisterArea[1 * 10]),
316 context_offset (FloatSave.RegisterArea[2 * 10]),
317 context_offset (FloatSave.RegisterArea[3 * 10]),
318 context_offset (FloatSave.RegisterArea[4 * 10]),
319 context_offset (FloatSave.RegisterArea[5 * 10]),
320 context_offset (FloatSave.RegisterArea[6 * 10]),
321 context_offset (FloatSave.RegisterArea[7 * 10]),
322 context_offset (FloatSave.ControlWord),
323 context_offset (FloatSave.StatusWord),
324 context_offset (FloatSave.TagWord),
325 context_offset (FloatSave.ErrorSelector),
326 context_offset (FloatSave.ErrorOffset),
327 context_offset (FloatSave.DataSelector),
328 context_offset (FloatSave.DataOffset),
329 context_offset (FloatSave.ErrorSelector),
330 /* XMM0-7 */
331 context_offset (ExtendedRegisters[10 * 16]),
332 context_offset (ExtendedRegisters[11 * 16]),
333 context_offset (ExtendedRegisters[12 * 16]),
334 context_offset (ExtendedRegisters[13 * 16]),
335 context_offset (ExtendedRegisters[14 * 16]),
336 context_offset (ExtendedRegisters[15 * 16]),
337 context_offset (ExtendedRegisters[16 * 16]),
338 context_offset (ExtendedRegisters[17 * 16]),
339 /* MXCSR */
340 context_offset (ExtendedRegisters[24])
341};
342#undef context_offset
343
1c07cc19 344#else /* __x86_64__ */
54709339
PM
345
346#define context_offset(x) (offsetof (CONTEXT, x))
347static const int mappings[] =
348{
349 context_offset (Rax),
350 context_offset (Rbx),
351 context_offset (Rcx),
352 context_offset (Rdx),
353 context_offset (Rsi),
354 context_offset (Rdi),
355 context_offset (Rbp),
356 context_offset (Rsp),
357 context_offset (R8),
358 context_offset (R9),
359 context_offset (R10),
360 context_offset (R11),
361 context_offset (R12),
362 context_offset (R13),
363 context_offset (R14),
364 context_offset (R15),
365 context_offset (Rip),
366 context_offset (EFlags),
367 context_offset (SegCs),
368 context_offset (SegSs),
369 context_offset (SegDs),
370 context_offset (SegEs),
371 context_offset (SegFs),
372 context_offset (SegGs),
373 context_offset (FloatSave.FloatRegisters[0]),
374 context_offset (FloatSave.FloatRegisters[1]),
375 context_offset (FloatSave.FloatRegisters[2]),
376 context_offset (FloatSave.FloatRegisters[3]),
377 context_offset (FloatSave.FloatRegisters[4]),
378 context_offset (FloatSave.FloatRegisters[5]),
379 context_offset (FloatSave.FloatRegisters[6]),
380 context_offset (FloatSave.FloatRegisters[7]),
381 context_offset (FloatSave.ControlWord),
382 context_offset (FloatSave.StatusWord),
383 context_offset (FloatSave.TagWord),
384 context_offset (FloatSave.ErrorSelector),
385 context_offset (FloatSave.ErrorOffset),
386 context_offset (FloatSave.DataSelector),
387 context_offset (FloatSave.DataOffset),
388 context_offset (FloatSave.ErrorSelector)
389 /* XMM0-7 */ ,
390 context_offset (Xmm0),
391 context_offset (Xmm1),
392 context_offset (Xmm2),
393 context_offset (Xmm3),
394 context_offset (Xmm4),
395 context_offset (Xmm5),
396 context_offset (Xmm6),
397 context_offset (Xmm7),
398 context_offset (Xmm8),
399 context_offset (Xmm9),
400 context_offset (Xmm10),
401 context_offset (Xmm11),
402 context_offset (Xmm12),
403 context_offset (Xmm13),
404 context_offset (Xmm14),
405 context_offset (Xmm15),
406 /* MXCSR */
407 context_offset (FloatSave.MxCsr)
408};
409#undef context_offset
410
1c07cc19 411#endif /* __x86_64__ */
54709339 412
34b34921
PA
413/* Fetch register from gdbserver regcache data. */
414static void
442ea881
PA
415i386_fetch_inferior_register (struct regcache *regcache,
416 win32_thread_info *th, int r)
34b34921
PA
417{
418 char *context_offset = (char *) &th->context + mappings[r];
419
420 long l;
421 if (r == FCS_REGNUM)
422 {
423 l = *((long *) context_offset) & 0xffff;
442ea881 424 supply_register (regcache, r, (char *) &l);
34b34921
PA
425 }
426 else if (r == FOP_REGNUM)
427 {
428 l = (*((long *) context_offset) >> 16) & ((1 << 11) - 1);
442ea881 429 supply_register (regcache, r, (char *) &l);
34b34921
PA
430 }
431 else
442ea881 432 supply_register (regcache, r, context_offset);
34b34921
PA
433}
434
435/* Store a new register value into the thread context of TH. */
436static void
442ea881
PA
437i386_store_inferior_register (struct regcache *regcache,
438 win32_thread_info *th, int r)
34b34921
PA
439{
440 char *context_offset = (char *) &th->context + mappings[r];
442ea881 441 collect_register (regcache, r, context_offset);
34b34921
PA
442}
443
912cf4ba
PA
444static const unsigned char i386_win32_breakpoint = 0xcc;
445#define i386_win32_breakpoint_len 1
446
54709339 447static void
3aee8918 448i386_arch_setup (void)
54709339 449{
1c07cc19 450#ifdef __x86_64__
54709339 451 init_registers_amd64 ();
3aee8918 452 win32_tdesc = tdesc_amd64;
54709339
PM
453#else
454 init_registers_i386 ();
3aee8918 455 win32_tdesc = tdesc_i386;
54709339
PM
456#endif
457}
458
68070c10 459struct win32_target_ops the_low_target = {
3aee8918 460 i386_arch_setup,
68070c10 461 sizeof (mappings) / sizeof (mappings[0]),
34b34921
PA
462 i386_initial_stuff,
463 i386_get_thread_context,
a2abc7de 464 i386_prepare_to_resume,
34b34921
PA
465 i386_thread_added,
466 i386_fetch_inferior_register,
467 i386_store_inferior_register,
468 i386_single_step,
912cf4ba
PA
469 &i386_win32_breakpoint,
470 i386_win32_breakpoint_len,
802e8e6d 471 i386_supports_z_point_type,
aa5ca48f
DE
472 i386_insert_point,
473 i386_remove_point,
df7e5265
GB
474 x86_stopped_by_watchpoint,
475 x86_stopped_data_address
68070c10 476};
This page took 0.678093 seconds and 4 git commands to generate.