]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/i386-nat.c
Merge i386_update_inferior_debug_regs
[thirdparty/binutils-gdb.git] / gdb / i386-nat.c
1 /* Native-dependent code for the i386.
2
3 Copyright (C) 2001-2014 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "i386-nat.h"
22 #include "breakpoint.h"
23 #include "command.h"
24 #include "gdbcmd.h"
25 #include "target.h"
26 #include "gdb_assert.h"
27 #include "inferior.h"
28
29 /* Support for hardware watchpoints and breakpoints using the i386
30 debug registers.
31
32 This provides several functions for inserting and removing
33 hardware-assisted breakpoints and watchpoints, testing if one or
34 more of the watchpoints triggered and at what address, checking
35 whether a given region can be watched, etc.
36
37 The functions below implement debug registers sharing by reference
38 counts, and allow to watch regions up to 16 bytes long. */
39
40 /* Whether or not to print the mirrored debug registers. */
41 static int debug_hw_points;
42
43 /* Function used for printing mirrored debug registers. */
44 #define debug_printf(fmt, args...) \
45 fprintf_unfiltered (gdb_stdlog, fmt, ##args);
46
47 /* Low-level function vector. */
48 struct i386_dr_low_type i386_dr_low;
49
50 /* Debug register size, in bytes. */
51 #define i386_get_debug_register_length() \
52 (i386_dr_low.debug_register_length)
53
54 /* Support for 8-byte wide hw watchpoints. */
55 #define TARGET_HAS_DR_LEN_8 (i386_get_debug_register_length () == 8)
56
57 /* DR7 Debug Control register fields. */
58
59 /* How many bits to skip in DR7 to get to R/W and LEN fields. */
60 #define DR_CONTROL_SHIFT 16
61 /* How many bits in DR7 per R/W and LEN field for each watchpoint. */
62 #define DR_CONTROL_SIZE 4
63
64 /* Watchpoint/breakpoint read/write fields in DR7. */
65 #define DR_RW_EXECUTE (0x0) /* Break on instruction execution. */
66 #define DR_RW_WRITE (0x1) /* Break on data writes. */
67 #define DR_RW_READ (0x3) /* Break on data reads or writes. */
68
69 /* This is here for completeness. No platform supports this
70 functionality yet (as of March 2001). Note that the DE flag in the
71 CR4 register needs to be set to support this. */
72 #ifndef DR_RW_IORW
73 #define DR_RW_IORW (0x2) /* Break on I/O reads or writes. */
74 #endif
75
76 /* Watchpoint/breakpoint length fields in DR7. The 2-bit left shift
77 is so we could OR this with the read/write field defined above. */
78 #define DR_LEN_1 (0x0 << 2) /* 1-byte region watch or breakpoint. */
79 #define DR_LEN_2 (0x1 << 2) /* 2-byte region watch. */
80 #define DR_LEN_4 (0x3 << 2) /* 4-byte region watch. */
81 #define DR_LEN_8 (0x2 << 2) /* 8-byte region watch (AMD64). */
82
83 /* Local and Global Enable flags in DR7.
84
85 When the Local Enable flag is set, the breakpoint/watchpoint is
86 enabled only for the current task; the processor automatically
87 clears this flag on every task switch. When the Global Enable flag
88 is set, the breakpoint/watchpoint is enabled for all tasks; the
89 processor never clears this flag.
90
91 Currently, all watchpoint are locally enabled. If you need to
92 enable them globally, read the comment which pertains to this in
93 i386_insert_aligned_watchpoint below. */
94 #define DR_LOCAL_ENABLE_SHIFT 0 /* Extra shift to the local enable bit. */
95 #define DR_GLOBAL_ENABLE_SHIFT 1 /* Extra shift to the global enable bit. */
96 #define DR_ENABLE_SIZE 2 /* Two enable bits per debug register. */
97
98 /* Local and global exact breakpoint enable flags (a.k.a. slowdown
99 flags). These are only required on i386, to allow detection of the
100 exact instruction which caused a watchpoint to break; i486 and
101 later processors do that automatically. We set these flags for
102 backwards compatibility. */
103 #define DR_LOCAL_SLOWDOWN (0x100)
104 #define DR_GLOBAL_SLOWDOWN (0x200)
105
106 /* Fields reserved by Intel. This includes the GD (General Detect
107 Enable) flag, which causes a debug exception to be generated when a
108 MOV instruction accesses one of the debug registers.
109
110 FIXME: My Intel manual says we should use 0xF800, not 0xFC00. */
111 #define DR_CONTROL_RESERVED (0xFC00)
112
113 /* Auxiliary helper macros. */
114
115 /* A value that masks all fields in DR7 that are reserved by Intel. */
116 #define I386_DR_CONTROL_MASK (~DR_CONTROL_RESERVED)
117
118 /* The I'th debug register is vacant if its Local and Global Enable
119 bits are reset in the Debug Control register. */
120 #define I386_DR_VACANT(state, i) \
121 (((state)->dr_control_mirror & (3 << (DR_ENABLE_SIZE * (i)))) == 0)
122
123 /* Locally enable the break/watchpoint in the I'th debug register. */
124 #define I386_DR_LOCAL_ENABLE(state, i) \
125 do { \
126 (state)->dr_control_mirror |= \
127 (1 << (DR_LOCAL_ENABLE_SHIFT + DR_ENABLE_SIZE * (i))); \
128 } while (0)
129
130 /* Globally enable the break/watchpoint in the I'th debug register. */
131 #define I386_DR_GLOBAL_ENABLE(state, i) \
132 do { \
133 (state)->dr_control_mirror |= \
134 (1 << (DR_GLOBAL_ENABLE_SHIFT + DR_ENABLE_SIZE * (i))); \
135 } while (0)
136
137 /* Disable the break/watchpoint in the I'th debug register. */
138 #define I386_DR_DISABLE(state, i) \
139 do { \
140 (state)->dr_control_mirror &= \
141 ~(3 << (DR_ENABLE_SIZE * (i))); \
142 } while (0)
143
144 /* Set in DR7 the RW and LEN fields for the I'th debug register. */
145 #define I386_DR_SET_RW_LEN(state, i, rwlen) \
146 do { \
147 (state)->dr_control_mirror &= \
148 ~(0x0f << (DR_CONTROL_SHIFT + DR_CONTROL_SIZE * (i))); \
149 (state)->dr_control_mirror |= \
150 ((rwlen) << (DR_CONTROL_SHIFT + DR_CONTROL_SIZE * (i))); \
151 } while (0)
152
153 /* Get from DR7 the RW and LEN fields for the I'th debug register. */
154 #define I386_DR_GET_RW_LEN(dr7, i) \
155 (((dr7) \
156 >> (DR_CONTROL_SHIFT + DR_CONTROL_SIZE * (i))) & 0x0f)
157
158 /* Did the watchpoint whose address is in the I'th register break? */
159 #define I386_DR_WATCH_HIT(dr6, i) ((dr6) & (1 << (i)))
160
161 /* A macro to loop over all debug registers. */
162 #define ALL_DEBUG_REGISTERS(i) for (i = 0; i < DR_NADDR; i++)
163
164 /* Per-process data. We don't bind this to a per-inferior registry
165 because of targets like x86 GNU/Linux that need to keep track of
166 processes that aren't bound to any inferior (e.g., fork children,
167 checkpoints). */
168
169 struct i386_process_info
170 {
171 /* Linked list. */
172 struct i386_process_info *next;
173
174 /* The process identifier. */
175 pid_t pid;
176
177 /* Copy of i386 hardware debug registers. */
178 struct i386_debug_reg_state state;
179 };
180
181 static struct i386_process_info *i386_process_list = NULL;
182
183 /* Find process data for process PID. */
184
185 static struct i386_process_info *
186 i386_find_process_pid (pid_t pid)
187 {
188 struct i386_process_info *proc;
189
190 for (proc = i386_process_list; proc; proc = proc->next)
191 if (proc->pid == pid)
192 return proc;
193
194 return NULL;
195 }
196
197 /* Add process data for process PID. Returns newly allocated info
198 object. */
199
200 static struct i386_process_info *
201 i386_add_process (pid_t pid)
202 {
203 struct i386_process_info *proc;
204
205 proc = xcalloc (1, sizeof (*proc));
206 proc->pid = pid;
207
208 proc->next = i386_process_list;
209 i386_process_list = proc;
210
211 return proc;
212 }
213
214 /* Get data specific info for process PID, creating it if necessary.
215 Never returns NULL. */
216
217 static struct i386_process_info *
218 i386_process_info_get (pid_t pid)
219 {
220 struct i386_process_info *proc;
221
222 proc = i386_find_process_pid (pid);
223 if (proc == NULL)
224 proc = i386_add_process (pid);
225
226 return proc;
227 }
228
229 /* Get debug registers state for process PID. */
230
231 struct i386_debug_reg_state *
232 i386_debug_reg_state (pid_t pid)
233 {
234 return &i386_process_info_get (pid)->state;
235 }
236
237 /* See declaration in i386-nat.h. */
238
239 void
240 i386_forget_process (pid_t pid)
241 {
242 struct i386_process_info *proc, **proc_link;
243
244 proc = i386_process_list;
245 proc_link = &i386_process_list;
246
247 while (proc != NULL)
248 {
249 if (proc->pid == pid)
250 {
251 *proc_link = proc->next;
252
253 xfree (proc);
254 return;
255 }
256
257 proc_link = &proc->next;
258 proc = *proc_link;
259 }
260 }
261
262 /* Types of operations supported by i386_handle_nonaligned_watchpoint. */
263 typedef enum { WP_INSERT, WP_REMOVE, WP_COUNT } i386_wp_op_t;
264
265 /* Implementation. */
266
267 /* Clear the reference counts and forget everything we knew about the
268 debug registers. */
269
270 void
271 i386_cleanup_dregs (void)
272 {
273 /* Starting from scratch has the same effect. */
274 i386_forget_process (ptid_get_pid (inferior_ptid));
275 }
276
277 /* Print the values of the mirrored debug registers. */
278
279 static void
280 i386_show_dr (struct i386_debug_reg_state *state,
281 const char *func, CORE_ADDR addr,
282 int len, enum target_hw_bp_type type)
283 {
284 int i;
285
286 debug_printf ("%s", func);
287 if (addr || len)
288 debug_printf (" (addr=%s, len=%d, type=%s)",
289 phex (addr, 8), len,
290 type == hw_write ? "data-write"
291 : (type == hw_read ? "data-read"
292 : (type == hw_access ? "data-read/write"
293 : (type == hw_execute ? "instruction-execute"
294 /* FIXME: if/when I/O read/write
295 watchpoints are supported, add them
296 here. */
297 : "??unknown??"))));
298 debug_printf (":\n");
299 debug_printf ("\tCONTROL (DR7): %s STATUS (DR6): %s\n",
300 phex (state->dr_control_mirror, 8),
301 phex (state->dr_status_mirror, 8));
302 ALL_DEBUG_REGISTERS (i)
303 {
304 debug_printf ("\
305 \tDR%d: addr=0x%s, ref.count=%d DR%d: addr=0x%s, ref.count=%d\n",
306 i, phex (state->dr_mirror[i],
307 i386_get_debug_register_length ()),
308 state->dr_ref_count[i],
309 i + 1, phex (state->dr_mirror[i + 1],
310 i386_get_debug_register_length ()),
311 state->dr_ref_count[i + 1]);
312 i++;
313 }
314 }
315
316 /* Return the value of a 4-bit field for DR7 suitable for watching a
317 region of LEN bytes for accesses of type TYPE. LEN is assumed to
318 have the value of 1, 2, or 4. */
319
320 static unsigned
321 i386_length_and_rw_bits (int len, enum target_hw_bp_type type)
322 {
323 unsigned rw;
324
325 switch (type)
326 {
327 case hw_execute:
328 rw = DR_RW_EXECUTE;
329 break;
330 case hw_write:
331 rw = DR_RW_WRITE;
332 break;
333 case hw_read:
334 internal_error (__FILE__, __LINE__,
335 _("The i386 doesn't support "
336 "data-read watchpoints.\n"));
337 case hw_access:
338 rw = DR_RW_READ;
339 break;
340 #if 0
341 /* Not yet supported. */
342 case hw_io_access:
343 rw = DR_RW_IORW;
344 break;
345 #endif
346 default:
347 internal_error (__FILE__, __LINE__, _("\
348 Invalid hardware breakpoint type %d in i386_length_and_rw_bits.\n"),
349 (int) type);
350 }
351
352 switch (len)
353 {
354 case 1:
355 return (DR_LEN_1 | rw);
356 case 2:
357 return (DR_LEN_2 | rw);
358 case 4:
359 return (DR_LEN_4 | rw);
360 case 8:
361 if (TARGET_HAS_DR_LEN_8)
362 return (DR_LEN_8 | rw);
363 /* ELSE FALL THROUGH */
364 default:
365 internal_error (__FILE__, __LINE__, _("\
366 Invalid hardware breakpoint length %d in i386_length_and_rw_bits.\n"), len);
367 }
368 }
369
370 /* Insert a watchpoint at address ADDR, which is assumed to be aligned
371 according to the length of the region to watch. LEN_RW_BITS is the
372 value of the bits from DR7 which describes the length and access
373 type of the region to be watched by this watchpoint. Return 0 on
374 success, -1 on failure. */
375
376 static int
377 i386_insert_aligned_watchpoint (struct i386_debug_reg_state *state,
378 CORE_ADDR addr, unsigned len_rw_bits)
379 {
380 int i;
381
382 if (!i386_dr_low.set_addr || !i386_dr_low.set_control)
383 return -1;
384
385 /* First, look for an occupied debug register with the same address
386 and the same RW and LEN definitions. If we find one, we can
387 reuse it for this watchpoint as well (and save a register). */
388 ALL_DEBUG_REGISTERS (i)
389 {
390 if (!I386_DR_VACANT (state, i)
391 && state->dr_mirror[i] == addr
392 && I386_DR_GET_RW_LEN (state->dr_control_mirror, i) == len_rw_bits)
393 {
394 state->dr_ref_count[i]++;
395 return 0;
396 }
397 }
398
399 /* Next, look for a vacant debug register. */
400 ALL_DEBUG_REGISTERS (i)
401 {
402 if (I386_DR_VACANT (state, i))
403 break;
404 }
405
406 /* No more debug registers! */
407 if (i >= DR_NADDR)
408 return -1;
409
410 /* Now set up the register I to watch our region. */
411
412 /* Record the info in our local mirrored array. */
413 state->dr_mirror[i] = addr;
414 state->dr_ref_count[i] = 1;
415 I386_DR_SET_RW_LEN (state, i, len_rw_bits);
416 /* Note: we only enable the watchpoint locally, i.e. in the current
417 task. Currently, no i386 target allows or supports global
418 watchpoints; however, if any target would want that in the
419 future, GDB should probably provide a command to control whether
420 to enable watchpoints globally or locally, and the code below
421 should use global or local enable and slow-down flags as
422 appropriate. */
423 I386_DR_LOCAL_ENABLE (state, i);
424 state->dr_control_mirror |= DR_LOCAL_SLOWDOWN;
425 state->dr_control_mirror &= I386_DR_CONTROL_MASK;
426
427 return 0;
428 }
429
430 /* Remove a watchpoint at address ADDR, which is assumed to be aligned
431 according to the length of the region to watch. LEN_RW_BITS is the
432 value of the bits from DR7 which describes the length and access
433 type of the region watched by this watchpoint. Return 0 on
434 success, -1 on failure. */
435
436 static int
437 i386_remove_aligned_watchpoint (struct i386_debug_reg_state *state,
438 CORE_ADDR addr, unsigned len_rw_bits)
439 {
440 int i, retval = -1;
441
442 ALL_DEBUG_REGISTERS (i)
443 {
444 if (!I386_DR_VACANT (state, i)
445 && state->dr_mirror[i] == addr
446 && I386_DR_GET_RW_LEN (state->dr_control_mirror, i) == len_rw_bits)
447 {
448 if (--state->dr_ref_count[i] == 0) /* No longer in use? */
449 {
450 /* Reset our mirror. */
451 state->dr_mirror[i] = 0;
452 I386_DR_DISABLE (state, i);
453 }
454 retval = 0;
455 }
456 }
457
458 return retval;
459 }
460
461 /* Insert or remove a (possibly non-aligned) watchpoint, or count the
462 number of debug registers required to watch a region at address
463 ADDR whose length is LEN for accesses of type TYPE. Return 0 on
464 successful insertion or removal, a positive number when queried
465 about the number of registers, or -1 on failure. If WHAT is not a
466 valid value, bombs through internal_error. */
467
468 static int
469 i386_handle_nonaligned_watchpoint (struct i386_debug_reg_state *state,
470 i386_wp_op_t what, CORE_ADDR addr, int len,
471 enum target_hw_bp_type type)
472 {
473 int retval = 0;
474 int max_wp_len = TARGET_HAS_DR_LEN_8 ? 8 : 4;
475
476 static const int size_try_array[8][8] =
477 {
478 {1, 1, 1, 1, 1, 1, 1, 1}, /* Trying size one. */
479 {2, 1, 2, 1, 2, 1, 2, 1}, /* Trying size two. */
480 {2, 1, 2, 1, 2, 1, 2, 1}, /* Trying size three. */
481 {4, 1, 2, 1, 4, 1, 2, 1}, /* Trying size four. */
482 {4, 1, 2, 1, 4, 1, 2, 1}, /* Trying size five. */
483 {4, 1, 2, 1, 4, 1, 2, 1}, /* Trying size six. */
484 {4, 1, 2, 1, 4, 1, 2, 1}, /* Trying size seven. */
485 {8, 1, 2, 1, 4, 1, 2, 1}, /* Trying size eight. */
486 };
487
488 while (len > 0)
489 {
490 int align = addr % max_wp_len;
491 /* Four (eight on AMD64) is the maximum length a debug register
492 can watch. */
493 int try = (len > max_wp_len ? (max_wp_len - 1) : len - 1);
494 int size = size_try_array[try][align];
495
496 if (what == WP_COUNT)
497 {
498 /* size_try_array[] is defined such that each iteration
499 through the loop is guaranteed to produce an address and a
500 size that can be watched with a single debug register.
501 Thus, for counting the registers required to watch a
502 region, we simply need to increment the count on each
503 iteration. */
504 retval++;
505 }
506 else
507 {
508 unsigned len_rw = i386_length_and_rw_bits (size, type);
509
510 if (what == WP_INSERT)
511 retval = i386_insert_aligned_watchpoint (state, addr, len_rw);
512 else if (what == WP_REMOVE)
513 retval = i386_remove_aligned_watchpoint (state, addr, len_rw);
514 else
515 internal_error (__FILE__, __LINE__, _("\
516 Invalid value %d of operation in i386_handle_nonaligned_watchpoint.\n"),
517 (int) what);
518 if (retval)
519 break;
520 }
521
522 addr += size;
523 len -= size;
524 }
525
526 return retval;
527 }
528
529 /* Update the inferior debug registers state, in STATE, with the
530 new debug registers state, in NEW_STATE. */
531
532 static void
533 i386_update_inferior_debug_regs (struct i386_debug_reg_state *state,
534 struct i386_debug_reg_state *new_state)
535 {
536 int i;
537
538 ALL_DEBUG_REGISTERS (i)
539 {
540 if (I386_DR_VACANT (new_state, i) != I386_DR_VACANT (state, i))
541 i386_dr_low.set_addr (i, new_state->dr_mirror[i]);
542 else
543 gdb_assert (new_state->dr_mirror[i] == state->dr_mirror[i]);
544 }
545
546 if (new_state->dr_control_mirror != state->dr_control_mirror)
547 i386_dr_low.set_control (new_state->dr_control_mirror);
548
549 *state = *new_state;
550 }
551
552 /* Insert a watchpoint to watch a memory region which starts at
553 address ADDR and whose length is LEN bytes. Watch memory accesses
554 of the type TYPE. Return 0 on success, -1 on failure. */
555
556 static int
557 i386_insert_watchpoint (struct target_ops *self,
558 CORE_ADDR addr, int len, int type,
559 struct expression *cond)
560 {
561 struct i386_debug_reg_state *state
562 = i386_debug_reg_state (ptid_get_pid (inferior_ptid));
563 int retval;
564 /* Work on a local copy of the debug registers, and on success,
565 commit the change back to the inferior. */
566 struct i386_debug_reg_state local_state = *state;
567
568 if (type == hw_read)
569 return 1; /* unsupported */
570
571 if (((len != 1 && len != 2 && len != 4)
572 && !(TARGET_HAS_DR_LEN_8 && len == 8))
573 || addr % len != 0)
574 {
575 retval = i386_handle_nonaligned_watchpoint (&local_state,
576 WP_INSERT,
577 addr, len, type);
578 }
579 else
580 {
581 unsigned len_rw = i386_length_and_rw_bits (len, type);
582
583 retval = i386_insert_aligned_watchpoint (&local_state,
584 addr, len_rw);
585 }
586
587 if (retval == 0)
588 i386_update_inferior_debug_regs (state, &local_state);
589
590 if (debug_hw_points)
591 i386_show_dr (state, "insert_watchpoint", addr, len, type);
592
593 return retval;
594 }
595
596 /* Remove a watchpoint that watched the memory region which starts at
597 address ADDR, whose length is LEN bytes, and for accesses of the
598 type TYPE. Return 0 on success, -1 on failure. */
599 static int
600 i386_remove_watchpoint (struct target_ops *self,
601 CORE_ADDR addr, int len, int type,
602 struct expression *cond)
603 {
604 struct i386_debug_reg_state *state
605 = i386_debug_reg_state (ptid_get_pid (inferior_ptid));
606 int retval;
607 /* Work on a local copy of the debug registers, and on success,
608 commit the change back to the inferior. */
609 struct i386_debug_reg_state local_state = *state;
610
611 if (((len != 1 && len != 2 && len != 4)
612 && !(TARGET_HAS_DR_LEN_8 && len == 8))
613 || addr % len != 0)
614 {
615 retval = i386_handle_nonaligned_watchpoint (&local_state,
616 WP_REMOVE,
617 addr, len, type);
618 }
619 else
620 {
621 unsigned len_rw = i386_length_and_rw_bits (len, type);
622
623 retval = i386_remove_aligned_watchpoint (&local_state,
624 addr, len_rw);
625 }
626
627 if (retval == 0)
628 i386_update_inferior_debug_regs (state, &local_state);
629
630 if (debug_hw_points)
631 i386_show_dr (state, "remove_watchpoint", addr, len, type);
632
633 return retval;
634 }
635
636 /* Return non-zero if we can watch a memory region that starts at
637 address ADDR and whose length is LEN bytes. */
638
639 static int
640 i386_region_ok_for_watchpoint (struct target_ops *self,
641 CORE_ADDR addr, int len)
642 {
643 struct i386_debug_reg_state *state
644 = i386_debug_reg_state (ptid_get_pid (inferior_ptid));
645 int nregs;
646
647 /* Compute how many aligned watchpoints we would need to cover this
648 region. */
649 nregs = i386_handle_nonaligned_watchpoint (state, WP_COUNT,
650 addr, len, hw_write);
651 return nregs <= DR_NADDR ? 1 : 0;
652 }
653
654 /* If the inferior has some break/watchpoint that triggered, set the
655 address associated with that break/watchpoint and return non-zero.
656 Otherwise, return zero. */
657
658 static int
659 i386_stopped_data_address (struct target_ops *ops, CORE_ADDR *addr_p)
660 {
661 struct i386_debug_reg_state *state
662 = i386_debug_reg_state (ptid_get_pid (inferior_ptid));
663 CORE_ADDR addr = 0;
664 int i;
665 int rc = 0;
666 /* The current thread's DR_STATUS. We always need to read this to
667 check whether some watchpoint caused the trap. */
668 unsigned status;
669 /* We need DR_CONTROL as well, but only iff DR_STATUS indicates a
670 data breakpoint trap. Only fetch it when necessary, to avoid an
671 unnecessary extra syscall when no watchpoint triggered. */
672 int control_p = 0;
673 unsigned control = 0;
674
675 /* In non-stop/async, threads can be running while we change the
676 global dr_mirror (and friends). Say, we set a watchpoint, and
677 let threads resume. Now, say you delete the watchpoint, or
678 add/remove watchpoints such that dr_mirror changes while threads
679 are running. On targets that support non-stop,
680 inserting/deleting watchpoints updates the global dr_mirror only.
681 It does not update the real thread's debug registers; that's only
682 done prior to resume. Instead, if threads are running when the
683 mirror changes, a temporary and transparent stop on all threads
684 is forced so they can get their copy of the debug registers
685 updated on re-resume. Now, say, a thread hit a watchpoint before
686 having been updated with the new dr_mirror contents, and we
687 haven't yet handled the corresponding SIGTRAP. If we trusted
688 dr_mirror below, we'd mistake the real trapped address (from the
689 last time we had updated debug registers in the thread) with
690 whatever was currently in dr_mirror. So to fix this, dr_mirror
691 always represents intention, what we _want_ threads to have in
692 debug registers. To get at the address and cause of the trap, we
693 need to read the state the thread still has in its debug
694 registers.
695
696 In sum, always get the current debug register values the current
697 thread has, instead of trusting the global mirror. If the thread
698 was running when we last changed watchpoints, the mirror no
699 longer represents what was set in this thread's debug
700 registers. */
701 status = i386_dr_low.get_status ();
702
703 ALL_DEBUG_REGISTERS (i)
704 {
705 if (!I386_DR_WATCH_HIT (status, i))
706 continue;
707
708 if (!control_p)
709 {
710 control = i386_dr_low.get_control ();
711 control_p = 1;
712 }
713
714 /* This second condition makes sure DRi is set up for a data
715 watchpoint, not a hardware breakpoint. The reason is that
716 GDB doesn't call the target_stopped_data_address method
717 except for data watchpoints. In other words, I'm being
718 paranoiac. */
719 if (I386_DR_GET_RW_LEN (control, i) != 0)
720 {
721 addr = i386_dr_low.get_addr (i);
722 rc = 1;
723 if (debug_hw_points)
724 i386_show_dr (state, "watchpoint_hit", addr, -1, hw_write);
725 }
726 }
727
728 if (debug_hw_points && addr == 0)
729 i386_show_dr (state, "stopped_data_addr", 0, 0, hw_write);
730
731 if (rc)
732 *addr_p = addr;
733 return rc;
734 }
735
736 /* Return non-zero if the inferior has some watchpoint that triggered.
737 Otherwise return zero. */
738
739 static int
740 i386_stopped_by_watchpoint (struct target_ops *ops)
741 {
742 CORE_ADDR addr = 0;
743 return i386_stopped_data_address (ops, &addr);
744 }
745
746 /* Insert a hardware-assisted breakpoint at BP_TGT->placed_address.
747 Return 0 on success, EBUSY on failure. */
748 static int
749 i386_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
750 struct bp_target_info *bp_tgt)
751 {
752 struct i386_debug_reg_state *state
753 = i386_debug_reg_state (ptid_get_pid (inferior_ptid));
754 unsigned len_rw = i386_length_and_rw_bits (1, hw_execute);
755 CORE_ADDR addr = bp_tgt->placed_address;
756 /* Work on a local copy of the debug registers, and on success,
757 commit the change back to the inferior. */
758 struct i386_debug_reg_state local_state = *state;
759 int retval = i386_insert_aligned_watchpoint (&local_state,
760 addr, len_rw) ? EBUSY : 0;
761
762 if (retval == 0)
763 i386_update_inferior_debug_regs (state, &local_state);
764
765 if (debug_hw_points)
766 i386_show_dr (state, "insert_hwbp", addr, 1, hw_execute);
767
768 return retval;
769 }
770
771 /* Remove a hardware-assisted breakpoint at BP_TGT->placed_address.
772 Return 0 on success, -1 on failure. */
773
774 static int
775 i386_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
776 struct bp_target_info *bp_tgt)
777 {
778 struct i386_debug_reg_state *state
779 = i386_debug_reg_state (ptid_get_pid (inferior_ptid));
780 unsigned len_rw = i386_length_and_rw_bits (1, hw_execute);
781 CORE_ADDR addr = bp_tgt->placed_address;
782 /* Work on a local copy of the debug registers, and on success,
783 commit the change back to the inferior. */
784 struct i386_debug_reg_state local_state = *state;
785 int retval = i386_remove_aligned_watchpoint (&local_state,
786 addr, len_rw);
787
788 if (retval == 0)
789 i386_update_inferior_debug_regs (state, &local_state);
790
791 if (debug_hw_points)
792 i386_show_dr (state, "remove_hwbp", addr, 1, hw_execute);
793
794 return retval;
795 }
796
797 /* Returns the number of hardware watchpoints of type TYPE that we can
798 set. Value is positive if we can set CNT watchpoints, zero if
799 setting watchpoints of type TYPE is not supported, and negative if
800 CNT is more than the maximum number of watchpoints of type TYPE
801 that we can support. TYPE is one of bp_hardware_watchpoint,
802 bp_read_watchpoint, bp_write_watchpoint, or bp_hardware_breakpoint.
803 CNT is the number of such watchpoints used so far (including this
804 one). OTHERTYPE is non-zero if other types of watchpoints are
805 currently enabled.
806
807 We always return 1 here because we don't have enough information
808 about possible overlap of addresses that they want to watch. As an
809 extreme example, consider the case where all the watchpoints watch
810 the same address and the same region length: then we can handle a
811 virtually unlimited number of watchpoints, due to debug register
812 sharing implemented via reference counts in i386-nat.c. */
813
814 static int
815 i386_can_use_hw_breakpoint (struct target_ops *self,
816 int type, int cnt, int othertype)
817 {
818 return 1;
819 }
820
821 static void
822 add_show_debug_regs_command (void)
823 {
824 /* A maintenance command to enable printing the internal DRi mirror
825 variables. */
826 add_setshow_boolean_cmd ("show-debug-regs", class_maintenance,
827 &debug_hw_points, _("\
828 Set whether to show variables that mirror the x86 debug registers."), _("\
829 Show whether to show variables that mirror the x86 debug registers."), _("\
830 Use \"on\" to enable, \"off\" to disable.\n\
831 If enabled, the debug registers values are shown when GDB inserts\n\
832 or removes a hardware breakpoint or watchpoint, and when the inferior\n\
833 triggers a breakpoint or watchpoint."),
834 NULL,
835 NULL,
836 &maintenance_set_cmdlist,
837 &maintenance_show_cmdlist);
838 }
839
840 /* There are only two global functions left. */
841
842 void
843 i386_use_watchpoints (struct target_ops *t)
844 {
845 /* After a watchpoint trap, the PC points to the instruction after the
846 one that caused the trap. Therefore we don't need to step over it.
847 But we do need to reset the status register to avoid another trap. */
848 t->to_have_continuable_watchpoint = 1;
849
850 t->to_can_use_hw_breakpoint = i386_can_use_hw_breakpoint;
851 t->to_region_ok_for_hw_watchpoint = i386_region_ok_for_watchpoint;
852 t->to_stopped_by_watchpoint = i386_stopped_by_watchpoint;
853 t->to_stopped_data_address = i386_stopped_data_address;
854 t->to_insert_watchpoint = i386_insert_watchpoint;
855 t->to_remove_watchpoint = i386_remove_watchpoint;
856 t->to_insert_hw_breakpoint = i386_insert_hw_breakpoint;
857 t->to_remove_hw_breakpoint = i386_remove_hw_breakpoint;
858 }
859
860 void
861 i386_set_debug_register_length (int len)
862 {
863 /* This function should be called only once for each native target. */
864 gdb_assert (i386_dr_low.debug_register_length == 0);
865 gdb_assert (len == 4 || len == 8);
866 i386_dr_low.debug_register_length = len;
867 add_show_debug_regs_command ();
868 }