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