Introduce common-debug.h
[deliverable/binutils-gdb.git] / gdb / nat / i386-dregs.c
CommitLineData
3a8ee006
GB
1/* Debug register 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#ifdef GDBSERVER
21#include "server.h"
3a8ee006
GB
22#else
23#include "defs.h"
3a8ee006
GB
24#include "inferior.h"
25#endif
125f8a3d 26#include "i386-dregs.h"
3a8ee006
GB
27
28/* Support for hardware watchpoints and breakpoints using the i386
29 debug registers.
30
31 This provides several functions for inserting and removing
32 hardware-assisted breakpoints and watchpoints, testing if one or
33 more of the watchpoints triggered and at what address, checking
34 whether a given region can be watched, etc.
35
36 The functions below implement debug registers sharing by reference
37 counts, and allow to watch regions up to 16 bytes long. */
38
42995dbd
GB
39/* Accessor macros for low-level function vector. */
40
41/* Can we update the inferior's debug registers? */
42#define i386_dr_low_can_set_addr() (i386_dr_low.set_addr != NULL)
43
44/* Update the inferior's debug register REGNUM from STATE. */
45#define i386_dr_low_set_addr(new_state, i) \
46 (i386_dr_low.set_addr ((i), (new_state)->dr_mirror[(i)]))
47
48/* Return the inferior's debug register REGNUM. */
49#define i386_dr_low_get_addr(i) (i386_dr_low.get_addr ((i)))
50
51/* Can we update the inferior's DR7 control register? */
52#define i386_dr_low_can_set_control() (i386_dr_low.set_control != NULL)
53
54/* Update the inferior's DR7 debug control register from STATE. */
55#define i386_dr_low_set_control(new_state) \
56 (i386_dr_low.set_control ((new_state)->dr_control_mirror))
57
58/* Return the value of the inferior's DR7 debug control register. */
59#define i386_dr_low_get_control() (i386_dr_low.get_control ())
60
61/* Return the value of the inferior's DR6 debug status register. */
62#define i386_dr_low_get_status() (i386_dr_low.get_status ())
63
64/* Return the debug register size, in bytes. */
65#define i386_get_debug_register_length() \
66 (i386_dr_low.debug_register_length)
67
3a8ee006
GB
68/* Support for 8-byte wide hw watchpoints. */
69#define TARGET_HAS_DR_LEN_8 (i386_get_debug_register_length () == 8)
70
71/* DR7 Debug Control register fields. */
72
73/* How many bits to skip in DR7 to get to R/W and LEN fields. */
74#define DR_CONTROL_SHIFT 16
75/* How many bits in DR7 per R/W and LEN field for each watchpoint. */
76#define DR_CONTROL_SIZE 4
77
78/* Watchpoint/breakpoint read/write fields in DR7. */
79#define DR_RW_EXECUTE (0x0) /* Break on instruction execution. */
80#define DR_RW_WRITE (0x1) /* Break on data writes. */
81#define DR_RW_READ (0x3) /* Break on data reads or writes. */
82
83/* This is here for completeness. No platform supports this
84 functionality yet (as of March 2001). Note that the DE flag in the
85 CR4 register needs to be set to support this. */
86#ifndef DR_RW_IORW
87#define DR_RW_IORW (0x2) /* Break on I/O reads or writes. */
88#endif
89
90/* Watchpoint/breakpoint length fields in DR7. The 2-bit left shift
91 is so we could OR this with the read/write field defined above. */
92#define DR_LEN_1 (0x0 << 2) /* 1-byte region watch or breakpoint. */
93#define DR_LEN_2 (0x1 << 2) /* 2-byte region watch. */
94#define DR_LEN_4 (0x3 << 2) /* 4-byte region watch. */
95#define DR_LEN_8 (0x2 << 2) /* 8-byte region watch (AMD64). */
96
97/* Local and Global Enable flags in DR7.
98
99 When the Local Enable flag is set, the breakpoint/watchpoint is
100 enabled only for the current task; the processor automatically
101 clears this flag on every task switch. When the Global Enable flag
102 is set, the breakpoint/watchpoint is enabled for all tasks; the
103 processor never clears this flag.
104
105 Currently, all watchpoint are locally enabled. If you need to
106 enable them globally, read the comment which pertains to this in
107 i386_insert_aligned_watchpoint below. */
108#define DR_LOCAL_ENABLE_SHIFT 0 /* Extra shift to the local enable bit. */
109#define DR_GLOBAL_ENABLE_SHIFT 1 /* Extra shift to the global enable bit. */
110#define DR_ENABLE_SIZE 2 /* Two enable bits per debug register. */
111
112/* Local and global exact breakpoint enable flags (a.k.a. slowdown
113 flags). These are only required on i386, to allow detection of the
114 exact instruction which caused a watchpoint to break; i486 and
115 later processors do that automatically. We set these flags for
116 backwards compatibility. */
117#define DR_LOCAL_SLOWDOWN (0x100)
118#define DR_GLOBAL_SLOWDOWN (0x200)
119
120/* Fields reserved by Intel. This includes the GD (General Detect
121 Enable) flag, which causes a debug exception to be generated when a
122 MOV instruction accesses one of the debug registers.
123
124 FIXME: My Intel manual says we should use 0xF800, not 0xFC00. */
125#define DR_CONTROL_RESERVED (0xFC00)
126
127/* Auxiliary helper macros. */
128
129/* A value that masks all fields in DR7 that are reserved by Intel. */
130#define I386_DR_CONTROL_MASK (~DR_CONTROL_RESERVED)
131
132/* The I'th debug register is vacant if its Local and Global Enable
133 bits are reset in the Debug Control register. */
134#define I386_DR_VACANT(state, i) \
135 (((state)->dr_control_mirror & (3 << (DR_ENABLE_SIZE * (i)))) == 0)
136
137/* Locally enable the break/watchpoint in the I'th debug register. */
138#define I386_DR_LOCAL_ENABLE(state, i) \
139 do { \
140 (state)->dr_control_mirror |= \
141 (1 << (DR_LOCAL_ENABLE_SHIFT + DR_ENABLE_SIZE * (i))); \
142 } while (0)
143
144/* Globally enable the break/watchpoint in the I'th debug register. */
145#define I386_DR_GLOBAL_ENABLE(state, i) \
146 do { \
147 (state)->dr_control_mirror |= \
148 (1 << (DR_GLOBAL_ENABLE_SHIFT + DR_ENABLE_SIZE * (i))); \
149 } while (0)
150
151/* Disable the break/watchpoint in the I'th debug register. */
152#define I386_DR_DISABLE(state, i) \
153 do { \
154 (state)->dr_control_mirror &= \
155 ~(3 << (DR_ENABLE_SIZE * (i))); \
156 } while (0)
157
158/* Set in DR7 the RW and LEN fields for the I'th debug register. */
159#define I386_DR_SET_RW_LEN(state, i, rwlen) \
160 do { \
161 (state)->dr_control_mirror &= \
162 ~(0x0f << (DR_CONTROL_SHIFT + DR_CONTROL_SIZE * (i))); \
163 (state)->dr_control_mirror |= \
164 ((rwlen) << (DR_CONTROL_SHIFT + DR_CONTROL_SIZE * (i))); \
165 } while (0)
166
167/* Get from DR7 the RW and LEN fields for the I'th debug register. */
168#define I386_DR_GET_RW_LEN(dr7, i) \
169 (((dr7) \
170 >> (DR_CONTROL_SHIFT + DR_CONTROL_SIZE * (i))) & 0x0f)
171
172/* Did the watchpoint whose address is in the I'th register break? */
173#define I386_DR_WATCH_HIT(dr6, i) ((dr6) & (1 << (i)))
174
175/* Types of operations supported by i386_handle_nonaligned_watchpoint. */
176typedef enum { WP_INSERT, WP_REMOVE, WP_COUNT } i386_wp_op_t;
177
3a8ee006 178#ifndef GDBSERVER
42995dbd
GB
179/* Whether or not to print the mirrored debug registers. */
180extern int debug_hw_points;
3a8ee006
GB
181#endif
182
183/* Print the values of the mirrored debug registers. */
184
185static void
186i386_show_dr (struct i386_debug_reg_state *state,
187 const char *func, CORE_ADDR addr,
188 int len, enum target_hw_bp_type type)
189{
190 int i;
191
192 debug_printf ("%s", func);
193 if (addr || len)
194 debug_printf (" (addr=%s, len=%d, type=%s)",
195 phex (addr, 8), len,
196 type == hw_write ? "data-write"
197 : (type == hw_read ? "data-read"
198 : (type == hw_access ? "data-read/write"
199 : (type == hw_execute ? "instruction-execute"
200 /* FIXME: if/when I/O read/write
201 watchpoints are supported, add them
202 here. */
203 : "??unknown??"))));
204 debug_printf (":\n");
205 debug_printf ("\tCONTROL (DR7): %s STATUS (DR6): %s\n",
206 phex (state->dr_control_mirror, 8),
207 phex (state->dr_status_mirror, 8));
208 ALL_DEBUG_REGISTERS (i)
209 {
210 debug_printf ("\
211\tDR%d: addr=0x%s, ref.count=%d DR%d: addr=0x%s, ref.count=%d\n",
212 i, phex (state->dr_mirror[i],
213 i386_get_debug_register_length ()),
214 state->dr_ref_count[i],
215 i + 1, phex (state->dr_mirror[i + 1],
216 i386_get_debug_register_length ()),
217 state->dr_ref_count[i + 1]);
218 i++;
219 }
220}
221
222/* Return the value of a 4-bit field for DR7 suitable for watching a
223 region of LEN bytes for accesses of type TYPE. LEN is assumed to
224 have the value of 1, 2, or 4. */
225
226static unsigned
227i386_length_and_rw_bits (int len, enum target_hw_bp_type type)
228{
229 unsigned rw;
230
231 switch (type)
232 {
233 case hw_execute:
234 rw = DR_RW_EXECUTE;
235 break;
236 case hw_write:
237 rw = DR_RW_WRITE;
238 break;
239 case hw_read:
240 internal_error (__FILE__, __LINE__,
241 _("The i386 doesn't support "
242 "data-read watchpoints.\n"));
243 case hw_access:
244 rw = DR_RW_READ;
245 break;
246#if 0
247 /* Not yet supported. */
248 case hw_io_access:
249 rw = DR_RW_IORW;
250 break;
251#endif
252 default:
253 internal_error (__FILE__, __LINE__, _("\
254Invalid hardware breakpoint type %d in i386_length_and_rw_bits.\n"),
255 (int) type);
256 }
257
258 switch (len)
259 {
260 case 1:
261 return (DR_LEN_1 | rw);
262 case 2:
263 return (DR_LEN_2 | rw);
264 case 4:
265 return (DR_LEN_4 | rw);
266 case 8:
267 if (TARGET_HAS_DR_LEN_8)
268 return (DR_LEN_8 | rw);
269 /* ELSE FALL THROUGH */
270 default:
271 internal_error (__FILE__, __LINE__, _("\
272Invalid hardware breakpoint length %d in i386_length_and_rw_bits.\n"), len);
273 }
274}
275
276/* Insert a watchpoint at address ADDR, which is assumed to be aligned
277 according to the length of the region to watch. LEN_RW_BITS is the
278 value of the bits from DR7 which describes the length and access
279 type of the region to be watched by this watchpoint. Return 0 on
280 success, -1 on failure. */
281
282static int
283i386_insert_aligned_watchpoint (struct i386_debug_reg_state *state,
284 CORE_ADDR addr, unsigned len_rw_bits)
285{
286 int i;
287
288 if (!i386_dr_low_can_set_addr () || !i386_dr_low_can_set_control ())
289 return -1;
290
291 /* First, look for an occupied debug register with the same address
292 and the same RW and LEN definitions. If we find one, we can
293 reuse it for this watchpoint as well (and save a register). */
294 ALL_DEBUG_REGISTERS (i)
295 {
296 if (!I386_DR_VACANT (state, i)
297 && state->dr_mirror[i] == addr
298 && I386_DR_GET_RW_LEN (state->dr_control_mirror, i) == len_rw_bits)
299 {
300 state->dr_ref_count[i]++;
301 return 0;
302 }
303 }
304
305 /* Next, look for a vacant debug register. */
306 ALL_DEBUG_REGISTERS (i)
307 {
308 if (I386_DR_VACANT (state, i))
309 break;
310 }
311
312 /* No more debug registers! */
313 if (i >= DR_NADDR)
314 return -1;
315
316 /* Now set up the register I to watch our region. */
317
318 /* Record the info in our local mirrored array. */
319 state->dr_mirror[i] = addr;
320 state->dr_ref_count[i] = 1;
321 I386_DR_SET_RW_LEN (state, i, len_rw_bits);
322 /* Note: we only enable the watchpoint locally, i.e. in the current
323 task. Currently, no i386 target allows or supports global
324 watchpoints; however, if any target would want that in the
325 future, GDB should probably provide a command to control whether
326 to enable watchpoints globally or locally, and the code below
327 should use global or local enable and slow-down flags as
328 appropriate. */
329 I386_DR_LOCAL_ENABLE (state, i);
330 state->dr_control_mirror |= DR_LOCAL_SLOWDOWN;
331 state->dr_control_mirror &= I386_DR_CONTROL_MASK;
332
333 return 0;
334}
335
336/* Remove a watchpoint at address ADDR, which is assumed to be aligned
337 according to the length of the region to watch. LEN_RW_BITS is the
338 value of the bits from DR7 which describes the length and access
339 type of the region watched by this watchpoint. Return 0 on
340 success, -1 on failure. */
341
342static int
343i386_remove_aligned_watchpoint (struct i386_debug_reg_state *state,
344 CORE_ADDR addr, unsigned len_rw_bits)
345{
346 int i, retval = -1;
8e9db26e 347 int all_vacant = 1;
3a8ee006
GB
348
349 ALL_DEBUG_REGISTERS (i)
350 {
351 if (!I386_DR_VACANT (state, i)
352 && state->dr_mirror[i] == addr
353 && I386_DR_GET_RW_LEN (state->dr_control_mirror, i) == len_rw_bits)
354 {
355 if (--state->dr_ref_count[i] == 0) /* No longer in use? */
356 {
357 /* Reset our mirror. */
358 state->dr_mirror[i] = 0;
359 I386_DR_DISABLE (state, i);
8e9db26e
PA
360 /* Even though not strictly necessary, clear out all
361 bits in DR_CONTROL related to this debug register.
362 Debug output is clearer when we don't have stale bits
363 in place. This also allows the assertion below. */
364 I386_DR_SET_RW_LEN (state, i, 0);
3a8ee006
GB
365 }
366 retval = 0;
367 }
8e9db26e
PA
368
369 if (!I386_DR_VACANT (state, i))
370 all_vacant = 0;
3a8ee006
GB
371 }
372
8e9db26e
PA
373 if (all_vacant)
374 {
375 /* Even though not strictly necessary, clear out all of
376 DR_CONTROL, so that when we have no debug registers in use,
377 we end up with DR_CONTROL == 0. The Linux support relies on
378 this for an optimization. Plus, it makes for clearer debug
379 output. */
380 state->dr_control_mirror &= ~DR_LOCAL_SLOWDOWN;
381
382 gdb_assert (state->dr_control_mirror == 0);
383 }
3a8ee006
GB
384 return retval;
385}
386
387/* Insert or remove a (possibly non-aligned) watchpoint, or count the
388 number of debug registers required to watch a region at address
389 ADDR whose length is LEN for accesses of type TYPE. Return 0 on
390 successful insertion or removal, a positive number when queried
391 about the number of registers, or -1 on failure. If WHAT is not a
392 valid value, bombs through internal_error. */
393
394static int
395i386_handle_nonaligned_watchpoint (struct i386_debug_reg_state *state,
396 i386_wp_op_t what, CORE_ADDR addr, int len,
397 enum target_hw_bp_type type)
398{
399 int retval = 0;
400 int max_wp_len = TARGET_HAS_DR_LEN_8 ? 8 : 4;
401
402 static const int size_try_array[8][8] =
403 {
404 {1, 1, 1, 1, 1, 1, 1, 1}, /* Trying size one. */
405 {2, 1, 2, 1, 2, 1, 2, 1}, /* Trying size two. */
406 {2, 1, 2, 1, 2, 1, 2, 1}, /* Trying size three. */
407 {4, 1, 2, 1, 4, 1, 2, 1}, /* Trying size four. */
408 {4, 1, 2, 1, 4, 1, 2, 1}, /* Trying size five. */
409 {4, 1, 2, 1, 4, 1, 2, 1}, /* Trying size six. */
410 {4, 1, 2, 1, 4, 1, 2, 1}, /* Trying size seven. */
411 {8, 1, 2, 1, 4, 1, 2, 1}, /* Trying size eight. */
412 };
413
414 while (len > 0)
415 {
416 int align = addr % max_wp_len;
417 /* Four (eight on AMD64) is the maximum length a debug register
418 can watch. */
419 int try = (len > max_wp_len ? (max_wp_len - 1) : len - 1);
420 int size = size_try_array[try][align];
421
422 if (what == WP_COUNT)
423 {
424 /* size_try_array[] is defined such that each iteration
425 through the loop is guaranteed to produce an address and a
426 size that can be watched with a single debug register.
427 Thus, for counting the registers required to watch a
428 region, we simply need to increment the count on each
429 iteration. */
430 retval++;
431 }
432 else
433 {
434 unsigned len_rw = i386_length_and_rw_bits (size, type);
435
436 if (what == WP_INSERT)
437 retval = i386_insert_aligned_watchpoint (state, addr, len_rw);
438 else if (what == WP_REMOVE)
439 retval = i386_remove_aligned_watchpoint (state, addr, len_rw);
440 else
441 internal_error (__FILE__, __LINE__, _("\
442Invalid value %d of operation in i386_handle_nonaligned_watchpoint.\n"),
443 (int) what);
444 if (retval)
445 break;
446 }
447
448 addr += size;
449 len -= size;
450 }
451
452 return retval;
453}
454
455/* Update the inferior debug registers state, in STATE, with the
456 new debug registers state, in NEW_STATE. */
457
458static void
459i386_update_inferior_debug_regs (struct i386_debug_reg_state *state,
460 struct i386_debug_reg_state *new_state)
461{
462 int i;
463
464 ALL_DEBUG_REGISTERS (i)
465 {
466 if (I386_DR_VACANT (new_state, i) != I386_DR_VACANT (state, i))
467 i386_dr_low_set_addr (new_state, i);
468 else
469 gdb_assert (new_state->dr_mirror[i] == state->dr_mirror[i]);
470 }
471
472 if (new_state->dr_control_mirror != state->dr_control_mirror)
473 i386_dr_low_set_control (new_state);
474
475 *state = *new_state;
476}
477
478/* Insert a watchpoint to watch a memory region which starts at
479 address ADDR and whose length is LEN bytes. Watch memory accesses
480 of the type TYPE. Return 0 on success, -1 on failure. */
481
482int
483i386_dr_insert_watchpoint (struct i386_debug_reg_state *state,
484 enum target_hw_bp_type type,
485 CORE_ADDR addr, int len)
486{
487 int retval;
488 /* Work on a local copy of the debug registers, and on success,
489 commit the change back to the inferior. */
490 struct i386_debug_reg_state local_state = *state;
491
492 if (type == hw_read)
493 return 1; /* unsupported */
494
495 if (((len != 1 && len != 2 && len != 4)
496 && !(TARGET_HAS_DR_LEN_8 && len == 8))
497 || addr % len != 0)
498 {
499 retval = i386_handle_nonaligned_watchpoint (&local_state,
500 WP_INSERT,
501 addr, len, type);
502 }
503 else
504 {
505 unsigned len_rw = i386_length_and_rw_bits (len, type);
506
507 retval = i386_insert_aligned_watchpoint (&local_state,
508 addr, len_rw);
509 }
510
511 if (retval == 0)
512 i386_update_inferior_debug_regs (state, &local_state);
513
514 if (debug_hw_points)
515 i386_show_dr (state, "insert_watchpoint", addr, len, type);
516
517 return retval;
518}
519
520/* Remove a watchpoint that watched the memory region which starts at
521 address ADDR, whose length is LEN bytes, and for accesses of the
522 type TYPE. Return 0 on success, -1 on failure. */
523
524int
525i386_dr_remove_watchpoint (struct i386_debug_reg_state *state,
526 enum target_hw_bp_type type,
527 CORE_ADDR addr, int len)
528{
529 int retval;
530 /* Work on a local copy of the debug registers, and on success,
531 commit the change back to the inferior. */
532 struct i386_debug_reg_state local_state = *state;
533
534 if (((len != 1 && len != 2 && len != 4)
535 && !(TARGET_HAS_DR_LEN_8 && len == 8))
536 || addr % len != 0)
537 {
538 retval = i386_handle_nonaligned_watchpoint (&local_state,
539 WP_REMOVE,
540 addr, len, type);
541 }
542 else
543 {
544 unsigned len_rw = i386_length_and_rw_bits (len, type);
545
546 retval = i386_remove_aligned_watchpoint (&local_state,
547 addr, len_rw);
548 }
549
550 if (retval == 0)
551 i386_update_inferior_debug_regs (state, &local_state);
552
553 if (debug_hw_points)
554 i386_show_dr (state, "remove_watchpoint", addr, len, type);
555
556 return retval;
557}
558
559/* Return non-zero if we can watch a memory region that starts at
560 address ADDR and whose length is LEN bytes. */
561
562int
563i386_dr_region_ok_for_watchpoint (struct i386_debug_reg_state *state,
564 CORE_ADDR addr, int len)
565{
566 int nregs;
567
568 /* Compute how many aligned watchpoints we would need to cover this
569 region. */
570 nregs = i386_handle_nonaligned_watchpoint (state, WP_COUNT,
571 addr, len, hw_write);
572 return nregs <= DR_NADDR ? 1 : 0;
573}
574
575/* If the inferior has some break/watchpoint that triggered, set the
576 address associated with that break/watchpoint and return non-zero.
577 Otherwise, return zero. */
578
579int
580i386_dr_stopped_data_address (struct i386_debug_reg_state *state,
581 CORE_ADDR *addr_p)
582{
583 CORE_ADDR addr = 0;
584 int i;
585 int rc = 0;
586 /* The current thread's DR_STATUS. We always need to read this to
587 check whether some watchpoint caused the trap. */
588 unsigned status;
589 /* We need DR_CONTROL as well, but only iff DR_STATUS indicates a
590 data breakpoint trap. Only fetch it when necessary, to avoid an
591 unnecessary extra syscall when no watchpoint triggered. */
592 int control_p = 0;
593 unsigned control = 0;
594
595 /* In non-stop/async, threads can be running while we change the
596 global dr_mirror (and friends). Say, we set a watchpoint, and
597 let threads resume. Now, say you delete the watchpoint, or
598 add/remove watchpoints such that dr_mirror changes while threads
599 are running. On targets that support non-stop,
600 inserting/deleting watchpoints updates the global dr_mirror only.
601 It does not update the real thread's debug registers; that's only
602 done prior to resume. Instead, if threads are running when the
603 mirror changes, a temporary and transparent stop on all threads
604 is forced so they can get their copy of the debug registers
605 updated on re-resume. Now, say, a thread hit a watchpoint before
606 having been updated with the new dr_mirror contents, and we
607 haven't yet handled the corresponding SIGTRAP. If we trusted
608 dr_mirror below, we'd mistake the real trapped address (from the
609 last time we had updated debug registers in the thread) with
610 whatever was currently in dr_mirror. So to fix this, dr_mirror
611 always represents intention, what we _want_ threads to have in
612 debug registers. To get at the address and cause of the trap, we
613 need to read the state the thread still has in its debug
614 registers.
615
616 In sum, always get the current debug register values the current
617 thread has, instead of trusting the global mirror. If the thread
618 was running when we last changed watchpoints, the mirror no
619 longer represents what was set in this thread's debug
620 registers. */
621 status = i386_dr_low_get_status ();
622
623 ALL_DEBUG_REGISTERS (i)
624 {
625 if (!I386_DR_WATCH_HIT (status, i))
626 continue;
627
628 if (!control_p)
629 {
630 control = i386_dr_low_get_control ();
631 control_p = 1;
632 }
633
634 /* This second condition makes sure DRi is set up for a data
635 watchpoint, not a hardware breakpoint. The reason is that
636 GDB doesn't call the target_stopped_data_address method
637 except for data watchpoints. In other words, I'm being
638 paranoiac. */
639 if (I386_DR_GET_RW_LEN (control, i) != 0)
640 {
641 addr = i386_dr_low_get_addr (i);
642 rc = 1;
643 if (debug_hw_points)
644 i386_show_dr (state, "watchpoint_hit", addr, -1, hw_write);
645 }
646 }
647
648 if (debug_hw_points && addr == 0)
649 i386_show_dr (state, "stopped_data_addr", 0, 0, hw_write);
650
651 if (rc)
652 *addr_p = addr;
653 return rc;
654}
655
656/* Return non-zero if the inferior has some watchpoint that triggered.
657 Otherwise return zero. */
658
659int
660i386_dr_stopped_by_watchpoint (struct i386_debug_reg_state *state)
661{
662 CORE_ADDR addr = 0;
663 return i386_dr_stopped_data_address (state, &addr);
664}
This page took 0.0752 seconds and 4 git commands to generate.