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