*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
CommitLineData
c906108c 1/* Everything about breakpoints, for GDB.
8926118c 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
9b254dd1
DJ
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2008 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
23#include <ctype.h>
776592bf 24#include "hashtab.h"
c906108c
SS
25#include "symtab.h"
26#include "frame.h"
27#include "breakpoint.h"
28#include "gdbtypes.h"
29#include "expression.h"
30#include "gdbcore.h"
31#include "gdbcmd.h"
32#include "value.h"
33#include "command.h"
34#include "inferior.h"
35#include "gdbthread.h"
36#include "target.h"
37#include "language.h"
38#include "gdb_string.h"
39#include "demangle.h"
40#include "annotate.h"
41#include "symfile.h"
42#include "objfiles.h"
0378c332 43#include "source.h"
c5f0f3d0 44#include "linespec.h"
c94fdfd0 45#include "completer.h"
5b7f31a4 46#include "gdb.h"
8b93c638 47#include "ui-out.h"
e1507482 48#include "cli/cli-script.h"
0225421b 49#include "gdb_assert.h"
fe898f56 50#include "block.h"
a77053c2 51#include "solib.h"
84acb35a
JJ
52#include "solist.h"
53#include "observer.h"
60250e8b 54#include "exceptions.h"
765dc015 55#include "memattr.h"
f7f9143b 56#include "ada-lang.h"
d1aa2f50 57#include "top.h"
fa4727a6 58#include "wrapper.h"
c906108c 59
034dad6f 60#include "mi/mi-common.h"
104c1213 61
44feb3ce
TT
62/* Arguments to pass as context to some catch command handlers. */
63#define CATCH_PERMANENT ((void *) (uintptr_t) 0)
64#define CATCH_TEMPORARY ((void *) (uintptr_t) 1)
c906108c 65
44feb3ce 66/* Prototypes for local functions. */
c906108c 67
a14ed312 68static void enable_delete_command (char *, int);
c906108c 69
a14ed312 70static void enable_delete_breakpoint (struct breakpoint *);
c906108c 71
a14ed312 72static void enable_once_command (char *, int);
c906108c 73
a14ed312 74static void enable_once_breakpoint (struct breakpoint *);
c906108c 75
a14ed312 76static void disable_command (char *, int);
c906108c 77
a14ed312 78static void enable_command (char *, int);
c906108c 79
a14ed312 80static void map_breakpoint_numbers (char *, void (*)(struct breakpoint *));
c906108c 81
a14ed312 82static void ignore_command (char *, int);
c906108c 83
4efb68b1 84static int breakpoint_re_set_one (void *);
c906108c 85
a14ed312 86static void clear_command (char *, int);
c906108c 87
a14ed312 88static void catch_command (char *, int);
c906108c 89
a14ed312 90static void watch_command (char *, int);
c906108c 91
a14ed312 92static int can_use_hardware_watchpoint (struct value *);
c906108c 93
98deb0da 94static void break_command_1 (char *, int, int);
c906108c 95
a14ed312 96static void mention (struct breakpoint *);
c906108c 97
4d28f7a8 98struct breakpoint *set_raw_breakpoint (struct symtab_and_line, enum bptype);
c906108c 99
9f60f21b 100static void check_duplicates (struct breakpoint *);
c906108c 101
76897487
KB
102static void breakpoint_adjustment_warning (CORE_ADDR, CORE_ADDR, int, int);
103
88f7da05
KB
104static CORE_ADDR adjust_breakpoint_address (CORE_ADDR bpaddr,
105 enum bptype bptype);
76897487 106
714835d5 107static void describe_other_breakpoints (CORE_ADDR, struct obj_section *, int);
c906108c 108
a14ed312 109static void breakpoints_info (char *, int);
c906108c 110
a14ed312 111static void breakpoint_1 (int, int);
c906108c 112
89f9893c 113static bpstat bpstat_alloc (const struct bp_location *, bpstat);
c906108c 114
4efb68b1 115static int breakpoint_cond_eval (void *);
c906108c 116
4efb68b1 117static void cleanup_executing_breakpoints (void *);
c906108c 118
a14ed312 119static void commands_command (char *, int);
c906108c 120
a14ed312 121static void condition_command (char *, int);
c906108c 122
a14ed312 123static int get_number_trailer (char **, int);
c906108c 124
a14ed312 125void set_breakpoint_count (int);
c906108c 126
c5aa993b
JM
127typedef enum
128 {
129 mark_inserted,
130 mark_uninserted
131 }
132insertion_state_t;
c906108c 133
0bde7532 134static int remove_breakpoint (struct bp_location *, insertion_state_t);
c906108c 135
a14ed312 136static enum print_stop_action print_it_typical (bpstat);
e514a9d6
JM
137
138static enum print_stop_action print_bp_stop_message (bpstat bs);
c906108c 139
4efb68b1 140static int watchpoint_check (void *);
c906108c 141
a14ed312 142static void maintenance_info_breakpoints (char *, int);
c906108c 143
1900040c
MS
144static void create_overlay_event_breakpoint (char *);
145
a14ed312 146static int hw_breakpoint_used_count (void);
c906108c 147
a14ed312 148static int hw_watchpoint_used_count (enum bptype, int *);
c906108c 149
a14ed312 150static void hbreak_command (char *, int);
c906108c 151
a14ed312 152static void thbreak_command (char *, int);
c906108c 153
a14ed312 154static void watch_command_1 (char *, int, int);
c906108c 155
a14ed312 156static void rwatch_command (char *, int);
c906108c 157
a14ed312 158static void awatch_command (char *, int);
c906108c 159
a14ed312 160static void do_enable_breakpoint (struct breakpoint *, enum bpdisp);
c906108c 161
a14ed312
KB
162static void create_fork_vfork_event_catchpoint (int tempflag,
163 char *cond_string,
164 enum bptype bp_kind);
7a292a7a 165
a14ed312 166static void stop_command (char *arg, int from_tty);
7a292a7a 167
a14ed312 168static void stopin_command (char *arg, int from_tty);
7a292a7a 169
a14ed312 170static void stopat_command (char *arg, int from_tty);
7a292a7a 171
a14ed312 172static char *ep_parse_optional_if_clause (char **arg);
7a292a7a 173
a14ed312 174static char *ep_parse_optional_filename (char **arg);
7a292a7a 175
d85310f7
MS
176static void catch_exception_command_1 (enum exception_event_kind ex_event,
177 char *arg, int tempflag, int from_tty);
7a292a7a 178
a14ed312 179static void tcatch_command (char *arg, int from_tty);
7a292a7a 180
a14ed312 181static void ep_skip_leading_whitespace (char **s);
7a292a7a 182
1aafd4da
UW
183static int single_step_breakpoint_inserted_here_p (CORE_ADDR pc);
184
fe3f5fa8
VP
185static void free_bp_location (struct bp_location *loc);
186
a5606eee
VP
187static struct bp_location *
188allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type);
189
b60e7edf 190static void update_global_location_list (int);
a5606eee 191
b60e7edf 192static void update_global_location_list_nothrow (int);
74960c60
VP
193
194static int is_hardware_watchpoint (struct breakpoint *bpt);
195
196static void insert_breakpoint_locations (void);
a5606eee 197
2cec12e5
AR
198static const char *
199bpdisp_text (enum bpdisp disp)
200{
201 /* NOTE: the following values are a part of MI protocol and represent
202 values of 'disp' field returned when inferior stops at a breakpoint. */
203 static char *bpdisps[] = {"del", "dstp", "dis", "keep"};
204 return bpdisps[(int) disp];
205}
c906108c 206
2cec12e5 207/* Prototypes for exported functions. */
c906108c
SS
208/* If FALSE, gdb will not use hardware support for watchpoints, even
209 if such is available. */
210static int can_use_hw_watchpoints;
211
920d2a44
AC
212static void
213show_can_use_hw_watchpoints (struct ui_file *file, int from_tty,
214 struct cmd_list_element *c,
215 const char *value)
216{
217 fprintf_filtered (file, _("\
218Debugger's willingness to use watchpoint hardware is %s.\n"),
219 value);
220}
221
fa8d40ab
JJ
222/* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
223 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
224 for unrecognized breakpoint locations.
225 If AUTO_BOOLEAN_AUTO, gdb will query when breakpoints are unrecognized. */
226static enum auto_boolean pending_break_support;
920d2a44
AC
227static void
228show_pending_break_support (struct ui_file *file, int from_tty,
229 struct cmd_list_element *c,
230 const char *value)
231{
232 fprintf_filtered (file, _("\
233Debugger's behavior regarding pending breakpoints is %s.\n"),
234 value);
235}
fa8d40ab 236
765dc015
VP
237/* If 1, gdb will automatically use hardware breakpoints for breakpoints
238 set with "break" but falling in read-only memory.
239 If 0, gdb will warn about such breakpoints, but won't automatically
240 use hardware breakpoints. */
241static int automatic_hardware_breakpoints;
242static void
243show_automatic_hardware_breakpoints (struct ui_file *file, int from_tty,
244 struct cmd_list_element *c,
245 const char *value)
246{
247 fprintf_filtered (file, _("\
248Automatic usage of hardware breakpoints is %s.\n"),
249 value);
250}
251
33e5cbd6
PA
252/* If on, gdb will keep breakpoints inserted even as inferior is
253 stopped, and immediately insert any new breakpoints. If off, gdb
254 will insert breakpoints into inferior only when resuming it, and
255 will remove breakpoints upon stop. If auto, GDB will behave as ON
256 if in non-stop mode, and as OFF if all-stop mode.*/
257
258static const char always_inserted_auto[] = "auto";
259static const char always_inserted_on[] = "on";
260static const char always_inserted_off[] = "off";
261static const char *always_inserted_enums[] = {
262 always_inserted_auto,
263 always_inserted_off,
264 always_inserted_on,
265 NULL
266};
267static const char *always_inserted_mode = always_inserted_auto;
268static void
74960c60 269show_always_inserted_mode (struct ui_file *file, int from_tty,
33e5cbd6 270 struct cmd_list_element *c, const char *value)
74960c60 271{
33e5cbd6
PA
272 if (always_inserted_mode == always_inserted_auto)
273 fprintf_filtered (file, _("\
274Always inserted breakpoint mode is %s (currently %s).\n"),
275 value,
276 breakpoints_always_inserted_mode () ? "on" : "off");
277 else
278 fprintf_filtered (file, _("Always inserted breakpoint mode is %s.\n"), value);
74960c60
VP
279}
280
33e5cbd6
PA
281int
282breakpoints_always_inserted_mode (void)
283{
284 return (always_inserted_mode == always_inserted_on
285 || (always_inserted_mode == always_inserted_auto && non_stop));
286}
765dc015 287
a14ed312 288void _initialize_breakpoint (void);
c906108c 289
c5aa993b 290extern int addressprint; /* Print machine addresses? */
c906108c 291
c906108c
SS
292/* Are we executing breakpoint commands? */
293static int executing_breakpoint_commands;
294
c02f5703
MS
295/* Are overlay event breakpoints enabled? */
296static int overlay_events_enabled;
297
c906108c
SS
298/* Walk the following statement or block through all breakpoints.
299 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
300 breakpoint. */
301
5c44784c 302#define ALL_BREAKPOINTS(B) for (B = breakpoint_chain; B; B = B->next)
c906108c 303
5c44784c
JM
304#define ALL_BREAKPOINTS_SAFE(B,TMP) \
305 for (B = breakpoint_chain; \
306 B ? (TMP=B->next, 1): 0; \
307 B = TMP)
c906108c 308
7cc221ef
DJ
309/* Similar iterators for the low-level breakpoints. */
310
0d381245 311#define ALL_BP_LOCATIONS(B) for (B = bp_location_chain; B; B = B->global_next)
7cc221ef
DJ
312
313#define ALL_BP_LOCATIONS_SAFE(B,TMP) \
314 for (B = bp_location_chain; \
0d381245 315 B ? (TMP=B->global_next, 1): 0; \
7cc221ef
DJ
316 B = TMP)
317
c906108c
SS
318/* True if breakpoint hit counts should be displayed in breakpoint info. */
319
320int show_breakpoint_hit_counts = 1;
321
7cc221ef 322/* Chains of all breakpoints defined. */
c906108c
SS
323
324struct breakpoint *breakpoint_chain;
325
7cc221ef
DJ
326struct bp_location *bp_location_chain;
327
20874c92
VP
328/* The locations that no longer correspond to any breakpoint,
329 unlinked from bp_location_chain, but for which a hit
330 may still be reported by a target. */
331VEC(bp_location_p) *moribund_locations = NULL;
332
c906108c
SS
333/* Number of last breakpoint made. */
334
335int breakpoint_count;
336
c906108c
SS
337/* This function returns a pointer to the string representation of the
338 pathname of the dynamically-linked library that has just been
339 loaded.
340
341 This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
342 or undefined results are guaranteed.
343
344 This string's contents are only valid immediately after the
345 inferior has stopped in the dynamic linker hook, and becomes
346 invalid as soon as the inferior is continued. Clients should make
347 a copy of this string if they wish to continue the inferior and
348 then access the string. */
349
350#ifndef SOLIB_LOADED_LIBRARY_PATHNAME
351#define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
352#endif
353
354/* This function returns a pointer to the string representation of the
355 pathname of the dynamically-linked library that has just been
356 unloaded.
357
358 This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
359 TRUE, or undefined results are guaranteed.
360
361 This string's contents are only valid immediately after the
362 inferior has stopped in the dynamic linker hook, and becomes
363 invalid as soon as the inferior is continued. Clients should make
364 a copy of this string if they wish to continue the inferior and
365 then access the string. */
366
367#ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
368#define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
369#endif
370
371/* This function is called by the "catch load" command. It allows the
372 debugger to be notified by the dynamic linker when a specified
373 library file (or any library file, if filename is NULL) is loaded. */
374
375#ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
376#define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
8a3fe4f8 377 error (_("catch of library loads not yet implemented on this platform"))
c906108c
SS
378#endif
379
380/* This function is called by the "catch unload" command. It allows
381 the debugger to be notified by the dynamic linker when a specified
382 library file (or any library file, if filename is NULL) is
383 unloaded. */
384
385#ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
1272ad14 386#define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid, tempflag, filename, cond_string) \
8a3fe4f8 387 error (_("catch of library unloads not yet implemented on this platform"))
c906108c
SS
388#endif
389
468d015d
JJ
390/* Return whether a breakpoint is an active enabled breakpoint. */
391static int
392breakpoint_enabled (struct breakpoint *b)
393{
0d381245 394 return (b->enable_state == bp_enabled);
468d015d
JJ
395}
396
c906108c
SS
397/* Set breakpoint count to NUM. */
398
399void
fba45db2 400set_breakpoint_count (int num)
c906108c
SS
401{
402 breakpoint_count = num;
403 set_internalvar (lookup_internalvar ("bpnum"),
8b9b9e1a 404 value_from_longest (builtin_type_int32, (LONGEST) num));
c906108c
SS
405}
406
407/* Used in run_command to zero the hit count when a new run starts. */
408
409void
fba45db2 410clear_breakpoint_hit_counts (void)
c906108c
SS
411{
412 struct breakpoint *b;
413
414 ALL_BREAKPOINTS (b)
415 b->hit_count = 0;
416}
417
418/* Default address, symtab and line to put a breakpoint at
419 for "break" command with no arg.
420 if default_breakpoint_valid is zero, the other three are
421 not valid, and "break" with no arg is an error.
422
423 This set by print_stack_frame, which calls set_default_breakpoint. */
424
425int default_breakpoint_valid;
426CORE_ADDR default_breakpoint_address;
427struct symtab *default_breakpoint_symtab;
428int default_breakpoint_line;
429\f
430/* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
431 Advance *PP after the string and any trailing whitespace.
432
433 Currently the string can either be a number or "$" followed by the name
434 of a convenience variable. Making it an expression wouldn't work well
5c44784c 435 for map_breakpoint_numbers (e.g. "4 + 5 + 6").
40c03ae8
EZ
436
437 If the string is a NULL pointer, that denotes the last breakpoint.
5c44784c
JM
438
439 TRAILER is a character which can be found after the number; most
440 commonly this is `-'. If you don't want a trailer, use \0. */
c906108c 441static int
fba45db2 442get_number_trailer (char **pp, int trailer)
c906108c 443{
5c44784c 444 int retval = 0; /* default */
c906108c
SS
445 char *p = *pp;
446
447 if (p == NULL)
448 /* Empty line means refer to the last breakpoint. */
449 return breakpoint_count;
450 else if (*p == '$')
451 {
452 /* Make a copy of the name, so we can null-terminate it
c5aa993b 453 to pass to lookup_internalvar(). */
c906108c
SS
454 char *varname;
455 char *start = ++p;
278cd55f 456 struct value *val;
c906108c
SS
457
458 while (isalnum (*p) || *p == '_')
459 p++;
460 varname = (char *) alloca (p - start + 1);
461 strncpy (varname, start, p - start);
462 varname[p - start] = '\0';
463 val = value_of_internalvar (lookup_internalvar (varname));
df407dfe 464 if (TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
5c44784c
JM
465 retval = (int) value_as_long (val);
466 else
467 {
a3f17187 468 printf_filtered (_("Convenience variable must have integer value.\n"));
5c44784c
JM
469 retval = 0;
470 }
c906108c
SS
471 }
472 else
473 {
474 if (*p == '-')
475 ++p;
476 while (*p >= '0' && *p <= '9')
477 ++p;
478 if (p == *pp)
479 /* There is no number here. (e.g. "cond a == b"). */
5c44784c
JM
480 {
481 /* Skip non-numeric token */
482 while (*p && !isspace((int) *p))
483 ++p;
484 /* Return zero, which caller must interpret as error. */
485 retval = 0;
486 }
487 else
488 retval = atoi (*pp);
489 }
490 if (!(isspace (*p) || *p == '\0' || *p == trailer))
491 {
492 /* Trailing junk: return 0 and let caller print error msg. */
493 while (!(isspace (*p) || *p == '\0' || *p == trailer))
494 ++p;
495 retval = 0;
c906108c 496 }
c906108c
SS
497 while (isspace (*p))
498 p++;
499 *pp = p;
500 return retval;
501}
5c44784c 502
11cf8741 503
5c44784c
JM
504/* Like get_number_trailer, but don't allow a trailer. */
505int
fba45db2 506get_number (char **pp)
5c44784c
JM
507{
508 return get_number_trailer (pp, '\0');
509}
510
511/* Parse a number or a range.
512 * A number will be of the form handled by get_number.
513 * A range will be of the form <number1> - <number2>, and
514 * will represent all the integers between number1 and number2,
515 * inclusive.
516 *
517 * While processing a range, this fuction is called iteratively;
518 * At each call it will return the next value in the range.
519 *
520 * At the beginning of parsing a range, the char pointer PP will
521 * be advanced past <number1> and left pointing at the '-' token.
522 * Subsequent calls will not advance the pointer until the range
523 * is completed. The call that completes the range will advance
524 * pointer PP past <number2>.
525 */
526
527int
fba45db2 528get_number_or_range (char **pp)
5c44784c
JM
529{
530 static int last_retval, end_value;
531 static char *end_ptr;
532 static int in_range = 0;
533
534 if (**pp != '-')
535 {
536 /* Default case: pp is pointing either to a solo number,
537 or to the first number of a range. */
538 last_retval = get_number_trailer (pp, '-');
539 if (**pp == '-')
540 {
541 char **temp;
542
543 /* This is the start of a range (<number1> - <number2>).
544 Skip the '-', parse and remember the second number,
545 and also remember the end of the final token. */
546
547 temp = &end_ptr;
548 end_ptr = *pp + 1;
549 while (isspace ((int) *end_ptr))
550 end_ptr++; /* skip white space */
551 end_value = get_number (temp);
552 if (end_value < last_retval)
553 {
8a3fe4f8 554 error (_("inverted range"));
5c44784c
JM
555 }
556 else if (end_value == last_retval)
557 {
558 /* degenerate range (number1 == number2). Advance the
559 token pointer so that the range will be treated as a
560 single number. */
561 *pp = end_ptr;
562 }
563 else
564 in_range = 1;
565 }
566 }
567 else if (! in_range)
8a3fe4f8 568 error (_("negative value"));
5c44784c
JM
569 else
570 {
571 /* pp points to the '-' that betokens a range. All
572 number-parsing has already been done. Return the next
573 integer value (one greater than the saved previous value).
574 Do not advance the token pointer 'pp' until the end of range
575 is reached. */
576
577 if (++last_retval == end_value)
578 {
579 /* End of range reached; advance token pointer. */
580 *pp = end_ptr;
581 in_range = 0;
582 }
583 }
584 return last_retval;
585}
586
587
c906108c
SS
588\f
589/* condition N EXP -- set break condition of breakpoint N to EXP. */
590
591static void
fba45db2 592condition_command (char *arg, int from_tty)
c906108c 593{
52f0bd74 594 struct breakpoint *b;
c906108c 595 char *p;
52f0bd74 596 int bnum;
c906108c
SS
597
598 if (arg == 0)
e2e0b3e5 599 error_no_arg (_("breakpoint number"));
c906108c
SS
600
601 p = arg;
602 bnum = get_number (&p);
5c44784c 603 if (bnum == 0)
8a3fe4f8 604 error (_("Bad breakpoint argument: '%s'"), arg);
c906108c
SS
605
606 ALL_BREAKPOINTS (b)
607 if (b->number == bnum)
2f069f6f
JB
608 {
609 struct bp_location *loc = b->loc;
610 for (; loc; loc = loc->next)
611 {
612 if (loc->cond)
613 {
614 xfree (loc->cond);
615 loc->cond = 0;
616 }
617 }
618 if (b->cond_string != NULL)
619 xfree (b->cond_string);
c906108c 620
2f069f6f
JB
621 if (*p == 0)
622 {
623 b->cond_string = NULL;
624 if (from_tty)
625 printf_filtered (_("Breakpoint %d now unconditional.\n"), bnum);
626 }
627 else
628 {
629 arg = p;
630 /* I don't know if it matters whether this is the string the user
631 typed in or the decompiled expression. */
632 b->cond_string = savestring (arg, strlen (arg));
633 b->condition_not_parsed = 0;
634 for (loc = b->loc; loc; loc = loc->next)
635 {
636 arg = p;
637 loc->cond =
638 parse_exp_1 (&arg, block_for_pc (loc->address), 0);
639 if (*arg)
640 error (_("Junk at end of expression"));
641 }
642 }
643 breakpoints_changed ();
383f836e 644 observer_notify_breakpoint_modified (b->number);
2f069f6f
JB
645 return;
646 }
c906108c 647
8a3fe4f8 648 error (_("No breakpoint number %d."), bnum);
c906108c
SS
649}
650
c906108c 651static void
fba45db2 652commands_command (char *arg, int from_tty)
c906108c 653{
52f0bd74 654 struct breakpoint *b;
c906108c 655 char *p;
52f0bd74 656 int bnum;
c906108c
SS
657 struct command_line *l;
658
659 /* If we allowed this, we would have problems with when to
660 free the storage, if we change the commands currently
661 being read from. */
662
663 if (executing_breakpoint_commands)
8a3fe4f8 664 error (_("Can't use the \"commands\" command among a breakpoint's commands."));
c906108c
SS
665
666 p = arg;
667 bnum = get_number (&p);
5c44784c 668
c906108c 669 if (p && *p)
8a3fe4f8 670 error (_("Unexpected extra arguments following breakpoint number."));
c5aa993b 671
c906108c
SS
672 ALL_BREAKPOINTS (b)
673 if (b->number == bnum)
9ebf4acf
AC
674 {
675 char *tmpbuf = xstrprintf ("Type commands for when breakpoint %d is hit, one per line.",
676 bnum);
677 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
311a4e6b 678 l = read_command_lines (tmpbuf, from_tty, 1);
9ebf4acf
AC
679 do_cleanups (cleanups);
680 free_command_lines (&b->commands);
681 b->commands = l;
682 breakpoints_changed ();
383f836e 683 observer_notify_breakpoint_modified (b->number);
9ebf4acf 684 return;
c5aa993b 685 }
8a3fe4f8 686 error (_("No breakpoint number %d."), bnum);
c906108c 687}
40c03ae8
EZ
688
689/* Like commands_command, but instead of reading the commands from
690 input stream, takes them from an already parsed command structure.
691
692 This is used by cli-script.c to DTRT with breakpoint commands
693 that are part of if and while bodies. */
694enum command_control_type
695commands_from_control_command (char *arg, struct command_line *cmd)
696{
697 struct breakpoint *b;
698 char *p;
699 int bnum;
700
701 /* If we allowed this, we would have problems with when to
702 free the storage, if we change the commands currently
703 being read from. */
704
705 if (executing_breakpoint_commands)
706 error (_("Can't use the \"commands\" command among a breakpoint's commands."));
707
708 /* An empty string for the breakpoint number means the last
709 breakpoint, but get_number expects a NULL pointer. */
710 if (arg && !*arg)
711 p = NULL;
712 else
713 p = arg;
714 bnum = get_number (&p);
715
716 if (p && *p)
717 error (_("Unexpected extra arguments following breakpoint number."));
718
719 ALL_BREAKPOINTS (b)
720 if (b->number == bnum)
721 {
722 free_command_lines (&b->commands);
723 if (cmd->body_count != 1)
724 error (_("Invalid \"commands\" block structure."));
725 /* We need to copy the commands because if/while will free the
726 list after it finishes execution. */
727 b->commands = copy_command_lines (cmd->body_list[0]);
728 breakpoints_changed ();
383f836e 729 observer_notify_breakpoint_modified (b->number);
40c03ae8 730 return simple_control;
2f069f6f 731 }
40c03ae8
EZ
732 error (_("No breakpoint number %d."), bnum);
733}
c906108c 734\f
8defab1a
DJ
735/* Update BUF, which is LEN bytes read from the target address MEMADDR,
736 by replacing any memory breakpoints with their shadowed contents. */
c906108c 737
8defab1a
DJ
738void
739breakpoint_restore_shadows (gdb_byte *buf, ULONGEST memaddr, LONGEST len)
c906108c 740{
8defab1a 741 struct bp_location *b;
c906108c
SS
742 CORE_ADDR bp_addr = 0;
743 int bp_size = 0;
8defab1a 744 int bptoffset = 0;
c5aa993b 745
ffce0d52 746 ALL_BP_LOCATIONS (b)
c5aa993b 747 {
ffce0d52 748 if (b->owner->type == bp_none)
8a3fe4f8 749 warning (_("reading through apparently deleted breakpoint #%d?"),
ffce0d52
DJ
750 b->owner->number);
751
752 if (b->loc_type != bp_loc_software_breakpoint)
c5aa993b 753 continue;
ffce0d52 754 if (!b->inserted)
c5aa993b
JM
755 continue;
756 /* Addresses and length of the part of the breakpoint that
757 we need to copy. */
8181d85f
DJ
758 bp_addr = b->target_info.placed_address;
759 bp_size = b->target_info.shadow_len;
c5aa993b 760 if (bp_size == 0)
8181d85f 761 /* bp isn't valid, or doesn't shadow memory. */
c5aa993b 762 continue;
8defab1a 763
c5aa993b
JM
764 if (bp_addr + bp_size <= memaddr)
765 /* The breakpoint is entirely before the chunk of memory we
766 are reading. */
767 continue;
8defab1a 768
c5aa993b
JM
769 if (bp_addr >= memaddr + len)
770 /* The breakpoint is entirely after the chunk of memory we are
771 reading. */
772 continue;
c5aa993b 773
8defab1a
DJ
774 /* Offset within shadow_contents. */
775 if (bp_addr < memaddr)
776 {
777 /* Only copy the second part of the breakpoint. */
778 bp_size -= memaddr - bp_addr;
779 bptoffset = memaddr - bp_addr;
780 bp_addr = memaddr;
781 }
c5aa993b 782
8defab1a
DJ
783 if (bp_addr + bp_size > memaddr + len)
784 {
785 /* Only copy the first part of the breakpoint. */
786 bp_size -= (bp_addr + bp_size) - (memaddr + len);
787 }
c5aa993b 788
8defab1a
DJ
789 memcpy (buf + bp_addr - memaddr,
790 b->target_info.shadow_contents + bptoffset, bp_size);
c5aa993b 791 }
c906108c 792}
c906108c 793\f
c5aa993b 794
687595f9 795/* A wrapper function for inserting catchpoints. */
9cbc821d 796static void
687595f9
DJ
797insert_catchpoint (struct ui_out *uo, void *args)
798{
799 struct breakpoint *b = (struct breakpoint *) args;
800 int val = -1;
801
802 switch (b->type)
803 {
804 case bp_catch_fork:
fa113d1a 805 target_insert_fork_catchpoint (PIDGET (inferior_ptid));
687595f9
DJ
806 break;
807 case bp_catch_vfork:
fa113d1a 808 target_insert_vfork_catchpoint (PIDGET (inferior_ptid));
687595f9
DJ
809 break;
810 case bp_catch_exec:
fa113d1a 811 target_insert_exec_catchpoint (PIDGET (inferior_ptid));
687595f9
DJ
812 break;
813 default:
e2e0b3e5 814 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
687595f9
DJ
815 break;
816 }
687595f9
DJ
817}
818
a5606eee
VP
819static int
820is_hardware_watchpoint (struct breakpoint *bpt)
821{
822 return (bpt->type == bp_hardware_watchpoint
823 || bpt->type == bp_read_watchpoint
824 || bpt->type == bp_access_watchpoint);
825}
7270d8f2 826
fa4727a6
DJ
827/* Find the current value of a watchpoint on EXP. Return the value in
828 *VALP and *RESULTP and the chain of intermediate and final values
829 in *VAL_CHAIN. RESULTP and VAL_CHAIN may be NULL if the caller does
830 not need them.
831
832 If an error occurs while evaluating the expression, *RESULTP will
833 be set to NULL. *RESULTP may be a lazy value, if the result could
834 not be read from memory. It is used to determine whether a value
835 is user-specified (we should watch the whole value) or intermediate
836 (we should watch only the bit used to locate the final value).
837
838 If the final value, or any intermediate value, could not be read
839 from memory, *VALP will be set to NULL. *VAL_CHAIN will still be
840 set to any referenced values. *VALP will never be a lazy value.
841 This is the value which we store in struct breakpoint.
842
843 If VAL_CHAIN is non-NULL, *VAL_CHAIN will be released from the
844 value chain. The caller must free the values individually. If
845 VAL_CHAIN is NULL, all generated values will be left on the value
846 chain. */
847
848static void
849fetch_watchpoint_value (struct expression *exp, struct value **valp,
850 struct value **resultp, struct value **val_chain)
851{
852 struct value *mark, *new_mark, *result;
853
854 *valp = NULL;
855 if (resultp)
856 *resultp = NULL;
857 if (val_chain)
858 *val_chain = NULL;
859
860 /* Evaluate the expression. */
861 mark = value_mark ();
862 result = NULL;
863 gdb_evaluate_expression (exp, &result);
864 new_mark = value_mark ();
865 if (mark == new_mark)
866 return;
867 if (resultp)
868 *resultp = result;
869
870 /* Make sure it's not lazy, so that after the target stops again we
871 have a non-lazy previous value to compare with. */
872 if (result != NULL
873 && (!value_lazy (result) || gdb_value_fetch_lazy (result)))
874 *valp = result;
875
876 if (val_chain)
877 {
878 /* Return the chain of intermediate values. We use this to
879 decide which addresses to watch. */
880 *val_chain = new_mark;
881 value_release_to_mark (mark);
882 }
883}
884
885/* Assuming that B is a hardware watchpoint:
a5606eee
VP
886 - Reparse watchpoint expression, is REPARSE is non-zero
887 - Evaluate expression and store the result in B->val
888 - Update the list of values that must be watched in B->loc.
889
890 If the watchpoint is disabled, do nothing. If this is
891 local watchpoint that is out of scope, delete it. */
b40ce68a 892static void
a5606eee 893update_watchpoint (struct breakpoint *b, int reparse)
7270d8f2 894{
a5606eee 895 int within_current_scope;
a5606eee
VP
896 struct frame_id saved_frame_id;
897 struct bp_location *loc;
898 bpstat bs;
899
74960c60
VP
900 /* We don't free locations. They are stored in
901 bp_location_chain and update_global_locations will
902 eventually delete them and remove breakpoints if
903 needed. */
a5606eee
VP
904 b->loc = NULL;
905
906 if (b->disposition == disp_del_at_next_stop)
907 return;
908
909 /* Save the current frame's ID so we can restore it after
910 evaluating the watchpoint expression on its own frame. */
911 /* FIXME drow/2003-09-09: It would be nice if evaluate_expression
912 took a frame parameter, so that we didn't have to change the
913 selected frame. */
914 saved_frame_id = get_frame_id (get_selected_frame (NULL));
915
916 /* Determine if the watchpoint is within scope. */
917 if (b->exp_valid_block == NULL)
918 within_current_scope = 1;
919 else
920 {
921 struct frame_info *fi;
922 fi = frame_find_by_id (b->watchpoint_frame);
923 within_current_scope = (fi != NULL);
924 if (within_current_scope)
925 select_frame (fi);
926 }
927
928 if (within_current_scope && reparse)
929 {
930 char *s;
931 if (b->exp)
932 {
933 xfree (b->exp);
934 b->exp = NULL;
935 }
936 s = b->exp_string;
937 b->exp = parse_exp_1 (&s, b->exp_valid_block, 0);
938 /* If the meaning of expression itself changed, the old value is
939 no longer relevant. We don't want to report a watchpoint hit
940 to the user when the old value and the new value may actually
941 be completely different objects. */
942 value_free (b->val);
fa4727a6
DJ
943 b->val = NULL;
944 b->val_valid = 0;
a5606eee 945 }
a5606eee
VP
946
947 /* If we failed to parse the expression, for example because
948 it refers to a global variable in a not-yet-loaded shared library,
949 don't try to insert watchpoint. We don't automatically delete
950 such watchpoint, though, since failure to parse expression
951 is different from out-of-scope watchpoint. */
952 if (within_current_scope && b->exp)
953 {
fa4727a6 954 struct value *val_chain, *v, *result, *next;
a5606eee 955
fa4727a6 956 fetch_watchpoint_value (b->exp, &v, &result, &val_chain);
a5606eee 957
a5606eee
VP
958 /* Avoid setting b->val if it's already set. The meaning of
959 b->val is 'the last value' user saw, and we should update
960 it only if we reported that last value to user. As it
961 happens, the code that reports it updates b->val directly. */
fa4727a6
DJ
962 if (!b->val_valid)
963 {
964 b->val = v;
965 b->val_valid = 1;
966 }
a5606eee
VP
967
968 /* Look at each value on the value chain. */
fa4727a6 969 for (v = val_chain; v; v = next)
a5606eee
VP
970 {
971 /* If it's a memory location, and GDB actually needed
972 its contents to evaluate the expression, then we
fa4727a6
DJ
973 must watch it. If the first value returned is
974 still lazy, that means an error occurred reading it;
975 watch it anyway in case it becomes readable. */
a5606eee 976 if (VALUE_LVAL (v) == lval_memory
fa4727a6 977 && (v == val_chain || ! value_lazy (v)))
a5606eee
VP
978 {
979 struct type *vtype = check_typedef (value_type (v));
7270d8f2 980
a5606eee
VP
981 /* We only watch structs and arrays if user asked
982 for it explicitly, never if they just happen to
983 appear in the middle of some value chain. */
fa4727a6 984 if (v == result
a5606eee
VP
985 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
986 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
987 {
988 CORE_ADDR addr;
989 int len, type;
990 struct bp_location *loc, **tmp;
991
992 addr = VALUE_ADDRESS (v) + value_offset (v);
993 len = TYPE_LENGTH (value_type (v));
994 type = hw_write;
995 if (b->type == bp_read_watchpoint)
996 type = hw_read;
997 else if (b->type == bp_access_watchpoint)
998 type = hw_access;
999
1000 loc = allocate_bp_location (b, bp_hardware_watchpoint);
1001 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
1002 ;
1003 *tmp = loc;
1004 loc->address = addr;
1005 loc->length = len;
1006 loc->watchpoint_type = type;
1007 }
1008 }
1009
1010 next = value_next (v);
1011 if (v != b->val)
1012 value_free (v);
1013 }
1014
2ec93238
MK
1015 /* We just regenerated the list of breakpoint locations.
1016 The new location does not have its condition field set to anything
1017 and therefore, we must always reparse the cond_string, independently
1018 of the value of the reparse flag. */
1019 if (b->cond_string != NULL)
a5606eee
VP
1020 {
1021 char *s = b->cond_string;
a5606eee
VP
1022 b->loc->cond = parse_exp_1 (&s, b->exp_valid_block, 0);
1023 }
1024 }
1025 else if (!within_current_scope)
7270d8f2 1026 {
a5606eee
VP
1027 printf_filtered (_("\
1028Hardware watchpoint %d deleted because the program has left the block \n\
1029in which its expression is valid.\n"),
1030 b->number);
1031 if (b->related_breakpoint)
1032 b->related_breakpoint->disposition = disp_del_at_next_stop;
1033 b->disposition = disp_del_at_next_stop;
7270d8f2 1034 }
a5606eee
VP
1035
1036 /* Restore the selected frame. */
1037 select_frame (frame_find_by_id (saved_frame_id));
7270d8f2
OF
1038}
1039
a5606eee 1040
74960c60
VP
1041/* Returns 1 iff breakpoint location should be
1042 inserted in the inferior. */
1043static int
1044should_be_inserted (struct bp_location *bpt)
1045{
1046 if (!breakpoint_enabled (bpt->owner))
1047 return 0;
1048
1049 if (bpt->owner->disposition == disp_del_at_next_stop)
1050 return 0;
1051
1052 if (!bpt->enabled || bpt->shlib_disabled || bpt->duplicate)
1053 return 0;
1054
1055 return 1;
1056}
1057
879bfdc2
DJ
1058/* Insert a low-level "breakpoint" of some type. BPT is the breakpoint.
1059 Any error messages are printed to TMP_ERROR_STREAM; and DISABLED_BREAKS,
1060 PROCESS_WARNING, and HW_BREAKPOINT_ERROR are used to report problems.
1061
1062 NOTE drow/2003-09-09: This routine could be broken down to an object-style
1063 method for each breakpoint or catchpoint type. */
26bb91f3 1064static int
879bfdc2 1065insert_bp_location (struct bp_location *bpt,
26bb91f3
DJ
1066 struct ui_file *tmp_error_stream,
1067 int *disabled_breaks, int *process_warning,
1068 int *hw_breakpoint_error)
879bfdc2
DJ
1069{
1070 int val = 0;
1071
74960c60 1072 if (!should_be_inserted (bpt) || bpt->inserted)
879bfdc2
DJ
1073 return 0;
1074
8181d85f
DJ
1075 /* Initialize the target-specific information. */
1076 memset (&bpt->target_info, 0, sizeof (bpt->target_info));
1077 bpt->target_info.placed_address = bpt->address;
1078
879bfdc2
DJ
1079 if (bpt->loc_type == bp_loc_software_breakpoint
1080 || bpt->loc_type == bp_loc_hardware_breakpoint)
1081 {
765dc015
VP
1082 if (bpt->owner->type != bp_hardware_breakpoint)
1083 {
1084 /* If the explicitly specified breakpoint type
1085 is not hardware breakpoint, check the memory map to see
1086 if the breakpoint address is in read only memory or not.
1087 Two important cases are:
1088 - location type is not hardware breakpoint, memory
1089 is readonly. We change the type of the location to
1090 hardware breakpoint.
1091 - location type is hardware breakpoint, memory is read-write.
1092 This means we've previously made the location hardware one, but
1093 then the memory map changed, so we undo.
1094
1095 When breakpoints are removed, remove_breakpoints will
1096 use location types we've just set here, the only possible
1097 problem is that memory map has changed during running program,
1098 but it's not going to work anyway with current gdb. */
1099 struct mem_region *mr
1100 = lookup_mem_region (bpt->target_info.placed_address);
1101
1102 if (mr)
1103 {
1104 if (automatic_hardware_breakpoints)
1105 {
1106 int changed = 0;
1107 enum bp_loc_type new_type;
1108
1109 if (mr->attrib.mode != MEM_RW)
1110 new_type = bp_loc_hardware_breakpoint;
1111 else
1112 new_type = bp_loc_software_breakpoint;
1113
1114 if (new_type != bpt->loc_type)
1115 {
1116 static int said = 0;
1117 bpt->loc_type = new_type;
1118 if (!said)
1119 {
1120 fprintf_filtered (gdb_stdout, _("\
0767c96d 1121Note: automatically using hardware breakpoints for read-only addresses.\n"));
765dc015
VP
1122 said = 1;
1123 }
1124 }
1125 }
1126 else if (bpt->loc_type == bp_loc_software_breakpoint
1127 && mr->attrib.mode != MEM_RW)
1128 warning (_("cannot set software breakpoint at readonly address %s"),
1129 paddr (bpt->address));
1130 }
1131 }
1132
879bfdc2
DJ
1133 /* First check to see if we have to handle an overlay. */
1134 if (overlay_debugging == ovly_off
1135 || bpt->section == NULL
1136 || !(section_is_overlay (bpt->section)))
1137 {
1138 /* No overlay handling: just set the breakpoint. */
1139
1140 if (bpt->loc_type == bp_loc_hardware_breakpoint)
8181d85f 1141 val = target_insert_hw_breakpoint (&bpt->target_info);
879bfdc2 1142 else
8181d85f 1143 val = target_insert_breakpoint (&bpt->target_info);
879bfdc2
DJ
1144 }
1145 else
1146 {
1147 /* This breakpoint is in an overlay section.
1148 Shall we set a breakpoint at the LMA? */
1149 if (!overlay_events_enabled)
1150 {
1151 /* Yes -- overlay event support is not active,
1152 so we must try to set a breakpoint at the LMA.
1153 This will not work for a hardware breakpoint. */
1154 if (bpt->loc_type == bp_loc_hardware_breakpoint)
8a3fe4f8 1155 warning (_("hardware breakpoint %d not supported in overlay!"),
879bfdc2
DJ
1156 bpt->owner->number);
1157 else
1158 {
1159 CORE_ADDR addr = overlay_unmapped_address (bpt->address,
1160 bpt->section);
1161 /* Set a software (trap) breakpoint at the LMA. */
8181d85f
DJ
1162 bpt->overlay_target_info = bpt->target_info;
1163 bpt->overlay_target_info.placed_address = addr;
1164 val = target_insert_breakpoint (&bpt->overlay_target_info);
879bfdc2
DJ
1165 if (val != 0)
1166 fprintf_unfiltered (tmp_error_stream,
1167 "Overlay breakpoint %d failed: in ROM?",
1168 bpt->owner->number);
1169 }
1170 }
1171 /* Shall we set a breakpoint at the VMA? */
1172 if (section_is_mapped (bpt->section))
1173 {
1174 /* Yes. This overlay section is mapped into memory. */
1175 if (bpt->loc_type == bp_loc_hardware_breakpoint)
8181d85f 1176 val = target_insert_hw_breakpoint (&bpt->target_info);
879bfdc2 1177 else
8181d85f 1178 val = target_insert_breakpoint (&bpt->target_info);
879bfdc2
DJ
1179 }
1180 else
1181 {
1182 /* No. This breakpoint will not be inserted.
1183 No error, but do not mark the bp as 'inserted'. */
1184 return 0;
1185 }
1186 }
1187
1188 if (val)
1189 {
1190 /* Can't set the breakpoint. */
9bbf65bb 1191 if (solib_address (bpt->address))
879bfdc2
DJ
1192 {
1193 /* See also: disable_breakpoints_in_shlibs. */
1194 val = 0;
0d381245 1195 bpt->shlib_disabled = 1;
879bfdc2
DJ
1196 if (!*disabled_breaks)
1197 {
1198 fprintf_unfiltered (tmp_error_stream,
1199 "Cannot insert breakpoint %d.\n",
1200 bpt->owner->number);
1201 fprintf_unfiltered (tmp_error_stream,
1202 "Temporarily disabling shared library breakpoints:\n");
1203 }
1204 *disabled_breaks = 1;
1205 fprintf_unfiltered (tmp_error_stream,
1206 "breakpoint #%d\n", bpt->owner->number);
1207 }
1208 else
879bfdc2
DJ
1209 {
1210#ifdef ONE_PROCESS_WRITETEXT
1211 *process_warning = 1;
1212#endif
1213 if (bpt->loc_type == bp_loc_hardware_breakpoint)
1214 {
1215 *hw_breakpoint_error = 1;
1216 fprintf_unfiltered (tmp_error_stream,
1217 "Cannot insert hardware breakpoint %d.\n",
1218 bpt->owner->number);
1219 }
1220 else
1221 {
1222 fprintf_unfiltered (tmp_error_stream,
1223 "Cannot insert breakpoint %d.\n",
1224 bpt->owner->number);
1225 fprintf_filtered (tmp_error_stream,
1226 "Error accessing memory address ");
ed49a04f 1227 fputs_filtered (paddress (bpt->address), tmp_error_stream);
879bfdc2
DJ
1228 fprintf_filtered (tmp_error_stream, ": %s.\n",
1229 safe_strerror (val));
1230 }
1231
1232 }
1233 }
1234 else
1235 bpt->inserted = 1;
1236
1237 return val;
1238 }
1239
1240 else if (bpt->loc_type == bp_loc_hardware_watchpoint
1241 /* NOTE drow/2003-09-08: This state only exists for removing
1242 watchpoints. It's not clear that it's necessary... */
1243 && bpt->owner->disposition != disp_del_at_next_stop)
1244 {
a5606eee
VP
1245 val = target_insert_watchpoint (bpt->address,
1246 bpt->length,
1247 bpt->watchpoint_type);
1248 bpt->inserted = (val != -1);
879bfdc2
DJ
1249 }
1250
879bfdc2
DJ
1251 else if (bpt->owner->type == bp_catch_fork
1252 || bpt->owner->type == bp_catch_vfork
1253 || bpt->owner->type == bp_catch_exec)
1254 {
71fff37b
AC
1255 struct gdb_exception e = catch_exception (uiout, insert_catchpoint,
1256 bpt->owner, RETURN_MASK_ERROR);
9cbc821d
AC
1257 exception_fprintf (gdb_stderr, e, "warning: inserting catchpoint %d: ",
1258 bpt->owner->number);
1259 if (e.reason < 0)
879bfdc2
DJ
1260 bpt->owner->enable_state = bp_disabled;
1261 else
1262 bpt->inserted = 1;
1640b821
DJ
1263
1264 /* We've already printed an error message if there was a problem
1265 inserting this catchpoint, and we've disabled the catchpoint,
1266 so just return success. */
1267 return 0;
879bfdc2
DJ
1268 }
1269
1270 return 0;
1271}
1272
74960c60
VP
1273/* Make sure all breakpoints are inserted in inferior.
1274 Throws exception on any error.
1275 A breakpoint that is already inserted won't be inserted
1276 again, so calling this function twice is safe. */
1277void
1278insert_breakpoints (void)
1279{
1280 struct breakpoint *bpt;
1281
1282 ALL_BREAKPOINTS (bpt)
1283 if (is_hardware_watchpoint (bpt))
1284 update_watchpoint (bpt, 0 /* don't reparse. */);
1285
b60e7edf 1286 update_global_location_list (1);
74960c60 1287
a12654ce 1288 if (!breakpoints_always_inserted_mode () && target_has_execution)
74960c60
VP
1289 /* update_global_location_list does not insert breakpoints
1290 when always_inserted_mode is not enabled. Explicitly
1291 insert them now. */
1292 insert_breakpoint_locations ();
1293}
1294
c906108c
SS
1295/* insert_breakpoints is used when starting or continuing the program.
1296 remove_breakpoints is used when the program stops.
1297 Both return zero if successful,
1298 or an `errno' value if could not write the inferior. */
1299
74960c60
VP
1300static void
1301insert_breakpoint_locations (void)
c906108c 1302{
a5606eee 1303 struct breakpoint *bpt;
879bfdc2 1304 struct bp_location *b, *temp;
e236ba44 1305 int error = 0;
c906108c
SS
1306 int val = 0;
1307 int disabled_breaks = 0;
81d0cc19
GS
1308 int hw_breakpoint_error = 0;
1309 int process_warning = 0;
c906108c 1310
81d0cc19
GS
1311 struct ui_file *tmp_error_stream = mem_fileopen ();
1312 make_cleanup_ui_file_delete (tmp_error_stream);
74960c60 1313
81d0cc19
GS
1314 /* Explicitly mark the warning -- this will only be printed if
1315 there was an error. */
1316 fprintf_unfiltered (tmp_error_stream, "Warning:\n");
a5606eee 1317
879bfdc2
DJ
1318 ALL_BP_LOCATIONS_SAFE (b, temp)
1319 {
74960c60 1320 if (!should_be_inserted (b) || b->inserted)
879bfdc2
DJ
1321 continue;
1322
f365de73
AS
1323 /* There is no point inserting thread-specific breakpoints if the
1324 thread no longer exists. */
1325 if (b->owner->thread != -1
1326 && !valid_thread_id (b->owner->thread))
1327 continue;
1328
879bfdc2
DJ
1329 val = insert_bp_location (b, tmp_error_stream,
1330 &disabled_breaks, &process_warning,
1331 &hw_breakpoint_error);
1332 if (val)
e236ba44 1333 error = val;
879bfdc2 1334 }
c906108c 1335
a5606eee
VP
1336 /* If we failed to insert all locations of a watchpoint,
1337 remove them, as half-inserted watchpoint is of limited use. */
1338 ALL_BREAKPOINTS (bpt)
1339 {
1340 int some_failed = 0;
1341 struct bp_location *loc;
1342
1343 if (!is_hardware_watchpoint (bpt))
1344 continue;
1345
d6b74ac4 1346 if (!breakpoint_enabled (bpt))
a5606eee 1347 continue;
74960c60
VP
1348
1349 if (bpt->disposition == disp_del_at_next_stop)
1350 continue;
a5606eee
VP
1351
1352 for (loc = bpt->loc; loc; loc = loc->next)
1353 if (!loc->inserted)
1354 {
1355 some_failed = 1;
1356 break;
1357 }
1358 if (some_failed)
1359 {
1360 for (loc = bpt->loc; loc; loc = loc->next)
1361 if (loc->inserted)
1362 remove_breakpoint (loc, mark_uninserted);
1363
1364 hw_breakpoint_error = 1;
1365 fprintf_unfiltered (tmp_error_stream,
1366 "Could not insert hardware watchpoint %d.\n",
1367 bpt->number);
1368 error = -1;
1369 }
1370 }
1371
e236ba44 1372 if (error)
81d0cc19
GS
1373 {
1374 /* If a hardware breakpoint or watchpoint was inserted, add a
1375 message about possibly exhausted resources. */
879bfdc2 1376 if (hw_breakpoint_error)
81d0cc19 1377 {
c6510018
MS
1378 fprintf_unfiltered (tmp_error_stream,
1379 "Could not insert hardware breakpoints:\n\
1380You may have requested too many hardware breakpoints/watchpoints.\n");
81d0cc19 1381 }
c6510018 1382#ifdef ONE_PROCESS_WRITETEXT
81d0cc19 1383 if (process_warning)
c6510018
MS
1384 fprintf_unfiltered (tmp_error_stream,
1385 "The same program may be running in another process.");
1386#endif
81d0cc19
GS
1387 target_terminal_ours_for_output ();
1388 error_stream (tmp_error_stream);
1389 }
c906108c
SS
1390}
1391
c906108c 1392int
fba45db2 1393remove_breakpoints (void)
c906108c 1394{
0bde7532 1395 struct bp_location *b;
c906108c
SS
1396 int val;
1397
0bde7532 1398 ALL_BP_LOCATIONS (b)
c5aa993b 1399 {
0bde7532 1400 if (b->inserted)
c5aa993b
JM
1401 {
1402 val = remove_breakpoint (b, mark_uninserted);
1403 if (val != 0)
1404 return val;
1405 }
1406 }
c906108c
SS
1407 return 0;
1408}
1409
692590c1 1410int
80ce1ecb 1411remove_hw_watchpoints (void)
692590c1 1412{
0bde7532 1413 struct bp_location *b;
692590c1
MS
1414 int val;
1415
0bde7532 1416 ALL_BP_LOCATIONS (b)
692590c1 1417 {
0bde7532 1418 if (b->inserted && b->loc_type == bp_loc_hardware_watchpoint)
692590c1
MS
1419 {
1420 val = remove_breakpoint (b, mark_uninserted);
1421 if (val != 0)
1422 return val;
1423 }
1424 }
1425 return 0;
1426}
1427
c906108c 1428int
fba45db2 1429reattach_breakpoints (int pid)
c906108c 1430{
0bde7532 1431 struct bp_location *b;
c906108c 1432 int val;
ce696e05 1433 struct cleanup *old_chain = save_inferior_ptid ();
a4954f26
DJ
1434 struct ui_file *tmp_error_stream = mem_fileopen ();
1435 int dummy1 = 0, dummy2 = 0, dummy3 = 0;
1436
1437 make_cleanup_ui_file_delete (tmp_error_stream);
c906108c 1438
ce696e05 1439 inferior_ptid = pid_to_ptid (pid);
0bde7532 1440 ALL_BP_LOCATIONS (b)
c5aa993b 1441 {
0bde7532 1442 if (b->inserted)
c5aa993b 1443 {
a4954f26
DJ
1444 b->inserted = 0;
1445 val = insert_bp_location (b, tmp_error_stream,
1446 &dummy1, &dummy2, &dummy3);
c5aa993b
JM
1447 if (val != 0)
1448 {
ce696e05 1449 do_cleanups (old_chain);
c5aa993b
JM
1450 return val;
1451 }
1452 }
1453 }
ce696e05 1454 do_cleanups (old_chain);
c906108c
SS
1455 return 0;
1456}
1457
1458void
fba45db2 1459update_breakpoints_after_exec (void)
c906108c 1460{
c5aa993b
JM
1461 struct breakpoint *b;
1462 struct breakpoint *temp;
25b22b0a 1463 struct bp_location *bploc;
c906108c 1464
25b22b0a
PA
1465 /* We're about to delete breakpoints from GDB's lists. If the
1466 INSERTED flag is true, GDB will try to lift the breakpoints by
1467 writing the breakpoints' "shadow contents" back into memory. The
1468 "shadow contents" are NOT valid after an exec, so GDB should not
1469 do that. Instead, the target is responsible from marking
1470 breakpoints out as soon as it detects an exec. We don't do that
1471 here instead, because there may be other attempts to delete
1472 breakpoints after detecting an exec and before reaching here. */
1473 ALL_BP_LOCATIONS (bploc)
1474 gdb_assert (!bploc->inserted);
c906108c
SS
1475
1476 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b
JM
1477 {
1478 /* Solib breakpoints must be explicitly reset after an exec(). */
1479 if (b->type == bp_shlib_event)
1480 {
1481 delete_breakpoint (b);
1482 continue;
1483 }
c906108c 1484
1900040c
MS
1485 /* Thread event breakpoints must be set anew after an exec(),
1486 as must overlay event breakpoints. */
1487 if (b->type == bp_thread_event || b->type == bp_overlay_event)
c4093a6a
JM
1488 {
1489 delete_breakpoint (b);
1490 continue;
1491 }
1492
c5aa993b
JM
1493 /* Step-resume breakpoints are meaningless after an exec(). */
1494 if (b->type == bp_step_resume)
1495 {
1496 delete_breakpoint (b);
1497 continue;
1498 }
1499
611c83ae
PA
1500 /* Longjmp and longjmp-resume breakpoints are also meaningless
1501 after an exec. */
1502 if (b->type == bp_longjmp || b->type == bp_longjmp_resume)
1503 {
1504 delete_breakpoint (b);
1505 continue;
1506 }
1507
c5aa993b
JM
1508 /* Don't delete an exec catchpoint, because else the inferior
1509 won't stop when it ought!
1510
1511 Similarly, we probably ought to keep vfork catchpoints, 'cause
53a5351d
JM
1512 on this target, we may not be able to stop when the vfork is
1513 seen, but only when the subsequent exec is seen. (And because
1514 deleting fork catchpoints here but not vfork catchpoints will
e14a792b 1515 seem mysterious to users, keep those too.) */
c5aa993b
JM
1516 if ((b->type == bp_catch_exec) ||
1517 (b->type == bp_catch_vfork) ||
1518 (b->type == bp_catch_fork))
1519 {
c5aa993b
JM
1520 continue;
1521 }
1522
1523 /* bp_finish is a special case. The only way we ought to be able
1524 to see one of these when an exec() has happened, is if the user
1525 caught a vfork, and then said "finish". Ordinarily a finish just
1526 carries them to the call-site of the current callee, by setting
1527 a temporary bp there and resuming. But in this case, the finish
1528 will carry them entirely through the vfork & exec.
1529
1530 We don't want to allow a bp_finish to remain inserted now. But
1531 we can't safely delete it, 'cause finish_command has a handle to
1532 the bp on a bpstat, and will later want to delete it. There's a
1533 chance (and I've seen it happen) that if we delete the bp_finish
1534 here, that its storage will get reused by the time finish_command
1535 gets 'round to deleting the "use to be a bp_finish" breakpoint.
1536 We really must allow finish_command to delete a bp_finish.
1537
53a5351d
JM
1538 In the absense of a general solution for the "how do we know
1539 it's safe to delete something others may have handles to?"
1540 problem, what we'll do here is just uninsert the bp_finish, and
1541 let finish_command delete it.
1542
1543 (We know the bp_finish is "doomed" in the sense that it's
1544 momentary, and will be deleted as soon as finish_command sees
1545 the inferior stopped. So it doesn't matter that the bp's
1546 address is probably bogus in the new a.out, unlike e.g., the
1547 solib breakpoints.) */
c5aa993b 1548
c5aa993b
JM
1549 if (b->type == bp_finish)
1550 {
1551 continue;
1552 }
1553
1554 /* Without a symbolic address, we have little hope of the
1555 pre-exec() address meaning the same thing in the post-exec()
1556 a.out. */
1557 if (b->addr_string == NULL)
1558 {
1559 delete_breakpoint (b);
1560 continue;
1561 }
c5aa993b 1562 }
1900040c
MS
1563 /* FIXME what about longjmp breakpoints? Re-create them here? */
1564 create_overlay_event_breakpoint ("_ovly_debug_event");
c906108c
SS
1565}
1566
1567int
fba45db2 1568detach_breakpoints (int pid)
c906108c 1569{
0bde7532 1570 struct bp_location *b;
c906108c 1571 int val;
ce696e05 1572 struct cleanup *old_chain = save_inferior_ptid ();
c5aa993b 1573
39f77062 1574 if (pid == PIDGET (inferior_ptid))
8a3fe4f8 1575 error (_("Cannot detach breakpoints of inferior_ptid"));
c5aa993b 1576
ce696e05
KB
1577 /* Set inferior_ptid; remove_breakpoint uses this global. */
1578 inferior_ptid = pid_to_ptid (pid);
0bde7532 1579 ALL_BP_LOCATIONS (b)
c5aa993b 1580 {
0bde7532 1581 if (b->inserted)
c5aa993b
JM
1582 {
1583 val = remove_breakpoint (b, mark_inserted);
1584 if (val != 0)
1585 {
ce696e05 1586 do_cleanups (old_chain);
c5aa993b
JM
1587 return val;
1588 }
1589 }
1590 }
ce696e05 1591 do_cleanups (old_chain);
c906108c
SS
1592 return 0;
1593}
1594
1595static int
0bde7532 1596remove_breakpoint (struct bp_location *b, insertion_state_t is)
c906108c
SS
1597{
1598 int val;
c5aa993b 1599
0bde7532 1600 if (b->owner->enable_state == bp_permanent)
c2c6d25f
JM
1601 /* Permanent breakpoints cannot be inserted or removed. */
1602 return 0;
1603
74960c60
VP
1604 /* The type of none suggests that owner is actually deleted.
1605 This should not ever happen. */
1606 gdb_assert (b->owner->type != bp_none);
0bde7532
DJ
1607
1608 if (b->loc_type == bp_loc_software_breakpoint
1609 || b->loc_type == bp_loc_hardware_breakpoint)
c906108c 1610 {
c02f5703
MS
1611 /* "Normal" instruction breakpoint: either the standard
1612 trap-instruction bp (bp_breakpoint), or a
1613 bp_hardware_breakpoint. */
1614
1615 /* First check to see if we have to handle an overlay. */
1616 if (overlay_debugging == ovly_off
0bde7532
DJ
1617 || b->section == NULL
1618 || !(section_is_overlay (b->section)))
c02f5703
MS
1619 {
1620 /* No overlay handling: just remove the breakpoint. */
1621
0bde7532 1622 if (b->loc_type == bp_loc_hardware_breakpoint)
8181d85f 1623 val = target_remove_hw_breakpoint (&b->target_info);
c02f5703 1624 else
8181d85f 1625 val = target_remove_breakpoint (&b->target_info);
c02f5703 1626 }
c906108c
SS
1627 else
1628 {
c02f5703
MS
1629 /* This breakpoint is in an overlay section.
1630 Did we set a breakpoint at the LMA? */
1631 if (!overlay_events_enabled)
1632 {
1633 /* Yes -- overlay event support is not active, so we
1634 should have set a breakpoint at the LMA. Remove it.
1635 */
c02f5703
MS
1636 /* Ignore any failures: if the LMA is in ROM, we will
1637 have already warned when we failed to insert it. */
0bde7532 1638 if (b->loc_type == bp_loc_hardware_breakpoint)
8181d85f 1639 target_remove_hw_breakpoint (&b->overlay_target_info);
c02f5703 1640 else
8181d85f 1641 target_remove_breakpoint (&b->overlay_target_info);
c02f5703
MS
1642 }
1643 /* Did we set a breakpoint at the VMA?
1644 If so, we will have marked the breakpoint 'inserted'. */
0bde7532 1645 if (b->inserted)
c906108c 1646 {
c02f5703
MS
1647 /* Yes -- remove it. Previously we did not bother to
1648 remove the breakpoint if the section had been
1649 unmapped, but let's not rely on that being safe. We
1650 don't know what the overlay manager might do. */
0bde7532 1651 if (b->loc_type == bp_loc_hardware_breakpoint)
8181d85f 1652 val = target_remove_hw_breakpoint (&b->target_info);
aa67235e
UW
1653
1654 /* However, we should remove *software* breakpoints only
1655 if the section is still mapped, or else we overwrite
1656 wrong code with the saved shadow contents. */
1657 else if (section_is_mapped (b->section))
8181d85f 1658 val = target_remove_breakpoint (&b->target_info);
aa67235e
UW
1659 else
1660 val = 0;
c906108c 1661 }
c02f5703
MS
1662 else
1663 {
1664 /* No -- not inserted, so no need to remove. No error. */
1665 val = 0;
1666 }
c906108c 1667 }
879d1e6b
UW
1668
1669 /* In some cases, we might not be able to remove a breakpoint
1670 in a shared library that has already been removed, but we
1671 have not yet processed the shlib unload event. */
1672 if (val && solib_address (b->address))
1673 val = 0;
1674
c906108c
SS
1675 if (val)
1676 return val;
0bde7532 1677 b->inserted = (is == mark_inserted);
c906108c 1678 }
a5606eee 1679 else if (b->loc_type == bp_loc_hardware_watchpoint)
c906108c 1680 {
278cd55f
AC
1681 struct value *v;
1682 struct value *n;
c5aa993b 1683
0bde7532 1684 b->inserted = (is == mark_inserted);
a5606eee
VP
1685 val = target_remove_watchpoint (b->address, b->length,
1686 b->watchpoint_type);
2e70b7b9 1687
c906108c 1688 /* Failure to remove any of the hardware watchpoints comes here. */
0bde7532 1689 if ((is == mark_uninserted) && (b->inserted))
8a3fe4f8 1690 warning (_("Could not remove hardware watchpoint %d."),
0bde7532 1691 b->owner->number);
c906108c 1692 }
0bde7532
DJ
1693 else if ((b->owner->type == bp_catch_fork ||
1694 b->owner->type == bp_catch_vfork ||
1695 b->owner->type == bp_catch_exec)
468d015d 1696 && breakpoint_enabled (b->owner)
0bde7532 1697 && !b->duplicate)
c906108c
SS
1698 {
1699 val = -1;
0bde7532 1700 switch (b->owner->type)
c5aa993b
JM
1701 {
1702 case bp_catch_fork:
39f77062 1703 val = target_remove_fork_catchpoint (PIDGET (inferior_ptid));
c5aa993b
JM
1704 break;
1705 case bp_catch_vfork:
39f77062 1706 val = target_remove_vfork_catchpoint (PIDGET (inferior_ptid));
c5aa993b
JM
1707 break;
1708 case bp_catch_exec:
39f77062 1709 val = target_remove_exec_catchpoint (PIDGET (inferior_ptid));
c5aa993b 1710 break;
ac9a91a7 1711 default:
8a3fe4f8 1712 warning (_("Internal error, %s line %d."), __FILE__, __LINE__);
ac9a91a7 1713 break;
c5aa993b 1714 }
c906108c
SS
1715 if (val)
1716 return val;
0bde7532 1717 b->inserted = (is == mark_inserted);
c906108c 1718 }
c906108c
SS
1719
1720 return 0;
1721}
1722
1723/* Clear the "inserted" flag in all breakpoints. */
1724
25b22b0a 1725void
fba45db2 1726mark_breakpoints_out (void)
c906108c 1727{
075f6582 1728 struct bp_location *bpt;
c906108c 1729
075f6582
DJ
1730 ALL_BP_LOCATIONS (bpt)
1731 bpt->inserted = 0;
c906108c
SS
1732}
1733
53a5351d
JM
1734/* Clear the "inserted" flag in all breakpoints and delete any
1735 breakpoints which should go away between runs of the program.
c906108c
SS
1736
1737 Plus other such housekeeping that has to be done for breakpoints
1738 between runs.
1739
53a5351d
JM
1740 Note: this function gets called at the end of a run (by
1741 generic_mourn_inferior) and when a run begins (by
1742 init_wait_for_inferior). */
c906108c
SS
1743
1744
1745
1746void
fba45db2 1747breakpoint_init_inferior (enum inf_context context)
c906108c 1748{
52f0bd74 1749 struct breakpoint *b, *temp;
075f6582 1750 struct bp_location *bpt;
c906108c 1751
075f6582 1752 ALL_BP_LOCATIONS (bpt)
514f746b
AR
1753 if (bpt->owner->enable_state != bp_permanent)
1754 bpt->inserted = 0;
075f6582 1755
c906108c 1756 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 1757 {
c5aa993b
JM
1758 switch (b->type)
1759 {
1760 case bp_call_dummy:
1761 case bp_watchpoint_scope:
c906108c 1762
c5aa993b
JM
1763 /* If the call dummy breakpoint is at the entry point it will
1764 cause problems when the inferior is rerun, so we better
1765 get rid of it.
c906108c 1766
c5aa993b
JM
1767 Also get rid of scope breakpoints. */
1768 delete_breakpoint (b);
1769 break;
c906108c 1770
c5aa993b
JM
1771 case bp_watchpoint:
1772 case bp_hardware_watchpoint:
1773 case bp_read_watchpoint:
1774 case bp_access_watchpoint:
c906108c 1775
c5aa993b
JM
1776 /* Likewise for watchpoints on local expressions. */
1777 if (b->exp_valid_block != NULL)
1778 delete_breakpoint (b);
967af18d 1779 else if (context == inf_starting)
c860120c
PM
1780 {
1781 /* Reset val field to force reread of starting value
1782 in insert_breakpoints. */
1783 if (b->val)
1784 value_free (b->val);
1785 b->val = NULL;
fa4727a6 1786 b->val_valid = 0;
c860120c 1787 }
c5aa993b
JM
1788 break;
1789 default:
c5aa993b
JM
1790 break;
1791 }
1792 }
c906108c
SS
1793}
1794
c2c6d25f
JM
1795/* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
1796 exists at PC. It returns ordinary_breakpoint_here if it's an
1797 ordinary breakpoint, or permanent_breakpoint_here if it's a
1798 permanent breakpoint.
1799 - When continuing from a location with an ordinary breakpoint, we
1800 actually single step once before calling insert_breakpoints.
1801 - When continuing from a localion with a permanent breakpoint, we
1802 need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
1803 the target, to advance the PC past the breakpoint. */
c906108c 1804
c2c6d25f 1805enum breakpoint_here
fba45db2 1806breakpoint_here_p (CORE_ADDR pc)
c906108c 1807{
89f9893c 1808 const struct bp_location *bpt;
c2c6d25f 1809 int any_breakpoint_here = 0;
c906108c 1810
075f6582
DJ
1811 ALL_BP_LOCATIONS (bpt)
1812 {
1813 if (bpt->loc_type != bp_loc_software_breakpoint
1814 && bpt->loc_type != bp_loc_hardware_breakpoint)
1815 continue;
1816
468d015d 1817 if ((breakpoint_enabled (bpt->owner)
075f6582
DJ
1818 || bpt->owner->enable_state == bp_permanent)
1819 && bpt->address == pc) /* bp is enabled and matches pc */
1820 {
1821 if (overlay_debugging
1822 && section_is_overlay (bpt->section)
1823 && !section_is_mapped (bpt->section))
1824 continue; /* unmapped overlay -- can't be a match */
1825 else if (bpt->owner->enable_state == bp_permanent)
1826 return permanent_breakpoint_here;
1827 else
1828 any_breakpoint_here = 1;
1829 }
1830 }
c906108c 1831
c2c6d25f 1832 return any_breakpoint_here ? ordinary_breakpoint_here : 0;
c906108c
SS
1833}
1834
c2c6d25f 1835
c36b740a
VP
1836/* Returns non-zero if there's a breakpoint inserted at PC, which is
1837 inserted using regular breakpoint_chain/bp_location_chain mechanism.
1838 This does not check for single-step breakpoints, which are
1839 inserted and removed using direct target manipulation. */
c906108c
SS
1840
1841int
c36b740a 1842regular_breakpoint_inserted_here_p (CORE_ADDR pc)
c906108c 1843{
89f9893c 1844 const struct bp_location *bpt;
c906108c 1845
075f6582 1846 ALL_BP_LOCATIONS (bpt)
c5aa993b 1847 {
075f6582
DJ
1848 if (bpt->loc_type != bp_loc_software_breakpoint
1849 && bpt->loc_type != bp_loc_hardware_breakpoint)
1850 continue;
1851
1852 if (bpt->inserted
1853 && bpt->address == pc) /* bp is inserted and matches pc */
1854 {
1855 if (overlay_debugging
1856 && section_is_overlay (bpt->section)
1857 && !section_is_mapped (bpt->section))
1858 continue; /* unmapped overlay -- can't be a match */
1859 else
1860 return 1;
1861 }
c5aa993b 1862 }
c36b740a
VP
1863 return 0;
1864}
1865
1866/* Returns non-zero iff there's either regular breakpoint
1867 or a single step breakpoint inserted at PC. */
1868
1869int
1870breakpoint_inserted_here_p (CORE_ADDR pc)
1871{
1872 if (regular_breakpoint_inserted_here_p (pc))
1873 return 1;
c906108c 1874
1aafd4da
UW
1875 if (single_step_breakpoint_inserted_here_p (pc))
1876 return 1;
1877
c906108c
SS
1878 return 0;
1879}
1880
4fa8626c
DJ
1881/* This function returns non-zero iff there is a software breakpoint
1882 inserted at PC. */
1883
1884int
1885software_breakpoint_inserted_here_p (CORE_ADDR pc)
1886{
89f9893c 1887 const struct bp_location *bpt;
4fa8626c
DJ
1888 int any_breakpoint_here = 0;
1889
1890 ALL_BP_LOCATIONS (bpt)
1891 {
1892 if (bpt->loc_type != bp_loc_software_breakpoint)
1893 continue;
1894
0d381245 1895 if (bpt->inserted
4fa8626c
DJ
1896 && bpt->address == pc) /* bp is enabled and matches pc */
1897 {
1898 if (overlay_debugging
1899 && section_is_overlay (bpt->section)
1900 && !section_is_mapped (bpt->section))
1901 continue; /* unmapped overlay -- can't be a match */
1902 else
1903 return 1;
1904 }
1905 }
1906
1aafd4da
UW
1907 /* Also check for software single-step breakpoints. */
1908 if (single_step_breakpoint_inserted_here_p (pc))
1909 return 1;
1910
4fa8626c
DJ
1911 return 0;
1912}
1913
075f6582
DJ
1914/* breakpoint_thread_match (PC, PTID) returns true if the breakpoint at
1915 PC is valid for process/thread PTID. */
c906108c
SS
1916
1917int
39f77062 1918breakpoint_thread_match (CORE_ADDR pc, ptid_t ptid)
c906108c 1919{
89f9893c 1920 const struct bp_location *bpt;
c906108c
SS
1921 int thread;
1922
39f77062 1923 thread = pid_to_thread_id (ptid);
c906108c 1924
075f6582 1925 ALL_BP_LOCATIONS (bpt)
c5aa993b 1926 {
075f6582
DJ
1927 if (bpt->loc_type != bp_loc_software_breakpoint
1928 && bpt->loc_type != bp_loc_hardware_breakpoint)
1929 continue;
1930
468d015d 1931 if ((breakpoint_enabled (bpt->owner)
075f6582
DJ
1932 || bpt->owner->enable_state == bp_permanent)
1933 && bpt->address == pc
1934 && (bpt->owner->thread == -1 || bpt->owner->thread == thread))
1935 {
1936 if (overlay_debugging
1937 && section_is_overlay (bpt->section)
1938 && !section_is_mapped (bpt->section))
1939 continue; /* unmapped overlay -- can't be a match */
1940 else
1941 return 1;
1942 }
c5aa993b 1943 }
c906108c
SS
1944
1945 return 0;
1946}
c906108c 1947\f
c5aa993b 1948
c906108c
SS
1949/* bpstat stuff. External routines' interfaces are documented
1950 in breakpoint.h. */
1951
1952int
fba45db2 1953ep_is_catchpoint (struct breakpoint *ep)
c906108c
SS
1954{
1955 return
1956 (ep->type == bp_catch_load)
1957 || (ep->type == bp_catch_unload)
1958 || (ep->type == bp_catch_fork)
1959 || (ep->type == bp_catch_vfork)
dfdfb3ca 1960 || (ep->type == bp_catch_exec);
c906108c 1961
c5aa993b 1962 /* ??rehrauer: Add more kinds here, as are implemented... */
c906108c 1963}
c5aa993b 1964
c906108c 1965int
fba45db2 1966ep_is_shlib_catchpoint (struct breakpoint *ep)
c906108c
SS
1967{
1968 return
1969 (ep->type == bp_catch_load)
d85310f7 1970 || (ep->type == bp_catch_unload);
c906108c
SS
1971}
1972
198757a8
VP
1973void
1974bpstat_free (bpstat bs)
1975{
1976 if (bs->old_val != NULL)
1977 value_free (bs->old_val);
1978 free_command_lines (&bs->commands);
1979 xfree (bs);
1980}
1981
c906108c
SS
1982/* Clear a bpstat so that it says we are not at any breakpoint.
1983 Also free any storage that is part of a bpstat. */
1984
1985void
fba45db2 1986bpstat_clear (bpstat *bsp)
c906108c
SS
1987{
1988 bpstat p;
1989 bpstat q;
1990
1991 if (bsp == 0)
1992 return;
1993 p = *bsp;
1994 while (p != NULL)
1995 {
1996 q = p->next;
198757a8 1997 bpstat_free (p);
c906108c
SS
1998 p = q;
1999 }
2000 *bsp = NULL;
2001}
2002
2003/* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
2004 is part of the bpstat is copied as well. */
2005
2006bpstat
fba45db2 2007bpstat_copy (bpstat bs)
c906108c
SS
2008{
2009 bpstat p = NULL;
2010 bpstat tmp;
2011 bpstat retval = NULL;
2012
2013 if (bs == NULL)
2014 return bs;
2015
2016 for (; bs != NULL; bs = bs->next)
2017 {
2018 tmp = (bpstat) xmalloc (sizeof (*tmp));
2019 memcpy (tmp, bs, sizeof (*tmp));
31cc81e9
DJ
2020 if (bs->commands != NULL)
2021 tmp->commands = copy_command_lines (bs->commands);
2022 if (bs->old_val != NULL)
3c3185ac
JK
2023 {
2024 tmp->old_val = value_copy (bs->old_val);
2025 release_value (tmp->old_val);
2026 }
31cc81e9 2027
c906108c
SS
2028 if (p == NULL)
2029 /* This is the first thing in the chain. */
2030 retval = tmp;
2031 else
2032 p->next = tmp;
2033 p = tmp;
2034 }
2035 p->next = NULL;
2036 return retval;
2037}
2038
2039/* Find the bpstat associated with this breakpoint */
2040
2041bpstat
fba45db2 2042bpstat_find_breakpoint (bpstat bsp, struct breakpoint *breakpoint)
c906108c 2043{
c5aa993b
JM
2044 if (bsp == NULL)
2045 return NULL;
c906108c 2046
c5aa993b
JM
2047 for (; bsp != NULL; bsp = bsp->next)
2048 {
4f8d1dc6 2049 if (bsp->breakpoint_at && bsp->breakpoint_at->owner == breakpoint)
c5aa993b
JM
2050 return bsp;
2051 }
c906108c
SS
2052 return NULL;
2053}
2054
2055/* Find a step_resume breakpoint associated with this bpstat.
2056 (If there are multiple step_resume bp's on the list, this function
2057 will arbitrarily pick one.)
2058
2059 It is an error to use this function if BPSTAT doesn't contain a
2060 step_resume breakpoint.
2061
2062 See wait_for_inferior's use of this function. */
2063struct breakpoint *
fba45db2 2064bpstat_find_step_resume_breakpoint (bpstat bsp)
c906108c 2065{
8601f500
MS
2066 int current_thread;
2067
8a3fe4f8 2068 gdb_assert (bsp != NULL);
c906108c 2069
8601f500
MS
2070 current_thread = pid_to_thread_id (inferior_ptid);
2071
c906108c
SS
2072 for (; bsp != NULL; bsp = bsp->next)
2073 {
2074 if ((bsp->breakpoint_at != NULL) &&
4f8d1dc6
VP
2075 (bsp->breakpoint_at->owner->type == bp_step_resume) &&
2076 (bsp->breakpoint_at->owner->thread == current_thread ||
2077 bsp->breakpoint_at->owner->thread == -1))
2078 return bsp->breakpoint_at->owner;
c906108c
SS
2079 }
2080
8a3fe4f8 2081 internal_error (__FILE__, __LINE__, _("No step_resume breakpoint found."));
c906108c
SS
2082}
2083
2084
8671a17b 2085/* Put in *NUM the breakpoint number of the first breakpoint we are stopped
c906108c
SS
2086 at. *BSP upon return is a bpstat which points to the remaining
2087 breakpoints stopped at (but which is not guaranteed to be good for
2088 anything but further calls to bpstat_num).
8671a17b
PA
2089 Return 0 if passed a bpstat which does not indicate any breakpoints.
2090 Return -1 if stopped at a breakpoint that has been deleted since
2091 we set it.
2092 Return 1 otherwise. */
c906108c
SS
2093
2094int
8671a17b 2095bpstat_num (bpstat *bsp, int *num)
c906108c
SS
2096{
2097 struct breakpoint *b;
2098
2099 if ((*bsp) == NULL)
2100 return 0; /* No more breakpoint values */
8671a17b 2101
4f8d1dc6
VP
2102 /* We assume we'll never have several bpstats that
2103 correspond to a single breakpoint -- otherwise,
2104 this function might return the same number more
2105 than once and this will look ugly. */
2106 b = (*bsp)->breakpoint_at ? (*bsp)->breakpoint_at->owner : NULL;
8671a17b
PA
2107 *bsp = (*bsp)->next;
2108 if (b == NULL)
2109 return -1; /* breakpoint that's been deleted since */
2110
2111 *num = b->number; /* We have its number */
2112 return 1;
c906108c
SS
2113}
2114
2115/* Modify BS so that the actions will not be performed. */
2116
2117void
fba45db2 2118bpstat_clear_actions (bpstat bs)
c906108c
SS
2119{
2120 for (; bs != NULL; bs = bs->next)
2121 {
c2b8ed2c 2122 free_command_lines (&bs->commands);
c906108c
SS
2123 if (bs->old_val != NULL)
2124 {
2125 value_free (bs->old_val);
2126 bs->old_val = NULL;
2127 }
2128 }
2129}
2130
2131/* Stub for cleaning up our state if we error-out of a breakpoint command */
c906108c 2132static void
4efb68b1 2133cleanup_executing_breakpoints (void *ignore)
c906108c
SS
2134{
2135 executing_breakpoint_commands = 0;
2136}
2137
2138/* Execute all the commands associated with all the breakpoints at this
2139 location. Any of these commands could cause the process to proceed
2140 beyond this point, etc. We look out for such changes by checking
347bddb7 2141 the global "breakpoint_proceeded" after each command.
c906108c 2142
347bddb7
PA
2143 Returns true if a breakpoint command resumed the inferior. In that
2144 case, it is the caller's responsibility to recall it again with the
2145 bpstat of the current thread. */
2146
2147static int
2148bpstat_do_actions_1 (bpstat *bsp)
c906108c
SS
2149{
2150 bpstat bs;
2151 struct cleanup *old_chain;
347bddb7 2152 int again = 0;
c906108c
SS
2153
2154 /* Avoid endless recursion if a `source' command is contained
2155 in bs->commands. */
2156 if (executing_breakpoint_commands)
347bddb7 2157 return 0;
c906108c
SS
2158
2159 executing_breakpoint_commands = 1;
2160 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
2161
c906108c
SS
2162 /* This pointer will iterate over the list of bpstat's. */
2163 bs = *bsp;
2164
2165 breakpoint_proceeded = 0;
2166 for (; bs != NULL; bs = bs->next)
2167 {
6c50ab1c
JB
2168 struct command_line *cmd;
2169 struct cleanup *this_cmd_tree_chain;
2170
2171 /* Take ownership of the BSP's command tree, if it has one.
2172
2173 The command tree could legitimately contain commands like
2174 'step' and 'next', which call clear_proceed_status, which
2175 frees stop_bpstat's command tree. To make sure this doesn't
2176 free the tree we're executing out from under us, we need to
2177 take ownership of the tree ourselves. Since a given bpstat's
2178 commands are only executed once, we don't need to copy it; we
2179 can clear the pointer in the bpstat, and make sure we free
2180 the tree when we're done. */
c906108c 2181 cmd = bs->commands;
6c50ab1c
JB
2182 bs->commands = 0;
2183 this_cmd_tree_chain = make_cleanup_free_command_lines (&cmd);
2184
c906108c
SS
2185 while (cmd != NULL)
2186 {
2187 execute_control_command (cmd);
2188
2189 if (breakpoint_proceeded)
2190 break;
2191 else
2192 cmd = cmd->next;
2193 }
6c50ab1c
JB
2194
2195 /* We can free this command tree now. */
2196 do_cleanups (this_cmd_tree_chain);
2197
c906108c 2198 if (breakpoint_proceeded)
32c1e744
VP
2199 {
2200 if (target_can_async_p ())
347bddb7
PA
2201 /* If we are in async mode, then the target might be still
2202 running, not stopped at any breakpoint, so nothing for
2203 us to do here -- just return to the event loop. */
2204 ;
32c1e744
VP
2205 else
2206 /* In sync mode, when execute_control_command returns
2207 we're already standing on the next breakpoint.
347bddb7
PA
2208 Breakpoint commands for that stop were not run, since
2209 execute_command does not run breakpoint commands --
2210 only command_line_handler does, but that one is not
2211 involved in execution of breakpoint commands. So, we
2212 can now execute breakpoint commands. It should be
2213 noted that making execute_command do bpstat actions is
2214 not an option -- in this case we'll have recursive
2215 invocation of bpstat for each breakpoint with a
2216 command, and can easily blow up GDB stack. Instead, we
2217 return true, which will trigger the caller to recall us
2218 with the new stop_bpstat. */
2219 again = 1;
2220 break;
32c1e744 2221 }
c906108c 2222 }
c2b8ed2c 2223 do_cleanups (old_chain);
347bddb7
PA
2224 return again;
2225}
2226
2227void
2228bpstat_do_actions (void)
2229{
2230 /* Do any commands attached to breakpoint we are stopped at. */
2231 while (!ptid_equal (inferior_ptid, null_ptid)
2232 && target_has_execution
2233 && !is_exited (inferior_ptid)
2234 && !is_executing (inferior_ptid))
2235 /* Since in sync mode, bpstat_do_actions may resume the inferior,
2236 and only return when it is stopped at the next breakpoint, we
2237 keep doing breakpoint actions until it returns false to
2238 indicate the inferior was not resumed. */
2239 if (!bpstat_do_actions_1 (&inferior_thread ()->stop_bpstat))
2240 break;
c906108c
SS
2241}
2242
fa4727a6
DJ
2243/* Print out the (old or new) value associated with a watchpoint. */
2244
2245static void
2246watchpoint_value_print (struct value *val, struct ui_file *stream)
2247{
2248 if (val == NULL)
2249 fprintf_unfiltered (stream, _("<unreadable>"));
2250 else
2251 value_print (val, stream, 0, Val_pretty_default);
2252}
2253
e514a9d6 2254/* This is the normal print function for a bpstat. In the future,
c906108c 2255 much of this logic could (should?) be moved to bpstat_stop_status,
e514a9d6
JM
2256 by having it set different print_it values.
2257
2258 Current scheme: When we stop, bpstat_print() is called. It loops
2259 through the bpstat list of things causing this stop, calling the
2260 print_bp_stop_message function on each one. The behavior of the
2261 print_bp_stop_message function depends on the print_it field of
2262 bpstat. If such field so indicates, call this function here.
2263
2264 Return values from this routine (ultimately used by bpstat_print()
2265 and normal_stop() to decide what to do):
2266 PRINT_NOTHING: Means we already printed all we needed to print,
2267 don't print anything else.
2268 PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
2269 that something to be followed by a location.
2270 PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
2271 that something to be followed by a location.
2272 PRINT_UNKNOWN: Means we printed nothing or we need to do some more
2273 analysis. */
c906108c 2274
917317f4 2275static enum print_stop_action
fba45db2 2276print_it_typical (bpstat bs)
c906108c 2277{
3b31d625 2278 struct cleanup *old_chain, *ui_out_chain;
4f8d1dc6 2279 struct breakpoint *b;
89f9893c 2280 const struct bp_location *bl;
8b93c638 2281 struct ui_stream *stb;
2cec12e5 2282 int bp_temp = 0;
8b93c638 2283 stb = ui_out_stream_new (uiout);
b02eeafb 2284 old_chain = make_cleanup_ui_out_stream_delete (stb);
c906108c
SS
2285 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
2286 which has since been deleted. */
e514a9d6 2287 if (bs->breakpoint_at == NULL)
917317f4 2288 return PRINT_UNKNOWN;
0d381245
VP
2289 bl = bs->breakpoint_at;
2290 b = bl->owner;
c906108c 2291
4f8d1dc6 2292 switch (b->type)
c906108c 2293 {
e514a9d6
JM
2294 case bp_breakpoint:
2295 case bp_hardware_breakpoint:
2cec12e5 2296 bp_temp = bs->breakpoint_at->owner->disposition == disp_del;
0d381245
VP
2297 if (bl->address != bl->requested_address)
2298 breakpoint_adjustment_warning (bl->requested_address,
2299 bl->address,
4f8d1dc6
VP
2300 b->number, 1);
2301 annotate_breakpoint (b->number);
2cec12e5
AR
2302 if (bp_temp)
2303 ui_out_text (uiout, "\nTemporary breakpoint ");
2304 else
2305 ui_out_text (uiout, "\nBreakpoint ");
9dc5e2a9 2306 if (ui_out_is_mi_like_p (uiout))
2cec12e5
AR
2307 {
2308 ui_out_field_string (uiout, "reason",
2309 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
2310 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
2311 }
4f8d1dc6 2312 ui_out_field_int (uiout, "bkptno", b->number);
8b93c638
JM
2313 ui_out_text (uiout, ", ");
2314 return PRINT_SRC_AND_LOC;
e514a9d6
JM
2315 break;
2316
2317 case bp_shlib_event:
917317f4
JM
2318 /* Did we stop because the user set the stop_on_solib_events
2319 variable? (If so, we report this as a generic, "Stopped due
2320 to shlib event" message.) */
a3f17187 2321 printf_filtered (_("Stopped due to shared library event\n"));
e514a9d6
JM
2322 return PRINT_NOTHING;
2323 break;
2324
c4093a6a
JM
2325 case bp_thread_event:
2326 /* Not sure how we will get here.
2327 GDB should not stop for these breakpoints. */
a3f17187 2328 printf_filtered (_("Thread Event Breakpoint: gdb should not stop!\n"));
c4093a6a
JM
2329 return PRINT_NOTHING;
2330 break;
2331
1900040c
MS
2332 case bp_overlay_event:
2333 /* By analogy with the thread event, GDB should not stop for these. */
a3f17187 2334 printf_filtered (_("Overlay Event Breakpoint: gdb should not stop!\n"));
1900040c
MS
2335 return PRINT_NOTHING;
2336 break;
2337
e514a9d6 2338 case bp_catch_load:
4f8d1dc6 2339 annotate_catchpoint (b->number);
a3f17187 2340 printf_filtered (_("\nCatchpoint %d (loaded %s), "),
4f8d1dc6
VP
2341 b->number,
2342 b->triggered_dll_pathname);
e514a9d6
JM
2343 return PRINT_SRC_AND_LOC;
2344 break;
2345
2346 case bp_catch_unload:
4f8d1dc6 2347 annotate_catchpoint (b->number);
a3f17187 2348 printf_filtered (_("\nCatchpoint %d (unloaded %s), "),
4f8d1dc6
VP
2349 b->number,
2350 b->triggered_dll_pathname);
e514a9d6
JM
2351 return PRINT_SRC_AND_LOC;
2352 break;
2353
2354 case bp_catch_fork:
4f8d1dc6 2355 annotate_catchpoint (b->number);
a3f17187 2356 printf_filtered (_("\nCatchpoint %d (forked process %d), "),
4f8d1dc6 2357 b->number,
3a3e9ee3 2358 ptid_get_pid (b->forked_inferior_pid));
917317f4 2359 return PRINT_SRC_AND_LOC;
e514a9d6
JM
2360 break;
2361
2362 case bp_catch_vfork:
4f8d1dc6 2363 annotate_catchpoint (b->number);
a3f17187 2364 printf_filtered (_("\nCatchpoint %d (vforked process %d), "),
4f8d1dc6 2365 b->number,
3a3e9ee3 2366 ptid_get_pid (b->forked_inferior_pid));
e514a9d6
JM
2367 return PRINT_SRC_AND_LOC;
2368 break;
2369
2370 case bp_catch_exec:
4f8d1dc6 2371 annotate_catchpoint (b->number);
a3f17187 2372 printf_filtered (_("\nCatchpoint %d (exec'd %s), "),
4f8d1dc6
VP
2373 b->number,
2374 b->exec_pathname);
917317f4 2375 return PRINT_SRC_AND_LOC;
e514a9d6
JM
2376 break;
2377
e514a9d6
JM
2378 case bp_watchpoint:
2379 case bp_hardware_watchpoint:
fa4727a6
DJ
2380 annotate_watchpoint (b->number);
2381 if (ui_out_is_mi_like_p (uiout))
2382 ui_out_field_string
2383 (uiout, "reason",
2384 async_reason_lookup (EXEC_ASYNC_WATCHPOINT_TRIGGER));
2385 mention (b);
2386 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
2387 ui_out_text (uiout, "\nOld value = ");
2388 watchpoint_value_print (bs->old_val, stb->stream);
2389 ui_out_field_stream (uiout, "old", stb);
2390 ui_out_text (uiout, "\nNew value = ");
2391 watchpoint_value_print (b->val, stb->stream);
2392 ui_out_field_stream (uiout, "new", stb);
2393 do_cleanups (ui_out_chain);
2394 ui_out_text (uiout, "\n");
e514a9d6
JM
2395 /* More than one watchpoint may have been triggered. */
2396 return PRINT_UNKNOWN;
2397 break;
2398
2399 case bp_read_watchpoint:
9dc5e2a9 2400 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
2401 ui_out_field_string
2402 (uiout, "reason",
2403 async_reason_lookup (EXEC_ASYNC_READ_WATCHPOINT_TRIGGER));
4f8d1dc6 2404 mention (b);
3b31d625 2405 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638 2406 ui_out_text (uiout, "\nValue = ");
fa4727a6 2407 watchpoint_value_print (b->val, stb->stream);
8b93c638 2408 ui_out_field_stream (uiout, "value", stb);
3b31d625 2409 do_cleanups (ui_out_chain);
8b93c638 2410 ui_out_text (uiout, "\n");
917317f4 2411 return PRINT_UNKNOWN;
e514a9d6
JM
2412 break;
2413
2414 case bp_access_watchpoint:
fa4727a6 2415 if (bs->old_val != NULL)
8b93c638 2416 {
4f8d1dc6 2417 annotate_watchpoint (b->number);
9dc5e2a9 2418 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
2419 ui_out_field_string
2420 (uiout, "reason",
2421 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
4f8d1dc6 2422 mention (b);
3b31d625 2423 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638 2424 ui_out_text (uiout, "\nOld value = ");
fa4727a6 2425 watchpoint_value_print (bs->old_val, stb->stream);
8b93c638 2426 ui_out_field_stream (uiout, "old", stb);
8b93c638
JM
2427 ui_out_text (uiout, "\nNew value = ");
2428 }
2429 else
2430 {
4f8d1dc6 2431 mention (b);
9dc5e2a9 2432 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
2433 ui_out_field_string
2434 (uiout, "reason",
2435 async_reason_lookup (EXEC_ASYNC_ACCESS_WATCHPOINT_TRIGGER));
3b31d625 2436 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "value");
8b93c638
JM
2437 ui_out_text (uiout, "\nValue = ");
2438 }
fa4727a6 2439 watchpoint_value_print (b->val, stb->stream);
8b93c638 2440 ui_out_field_stream (uiout, "new", stb);
3b31d625 2441 do_cleanups (ui_out_chain);
8b93c638 2442 ui_out_text (uiout, "\n");
917317f4 2443 return PRINT_UNKNOWN;
e514a9d6 2444 break;
4ce44c66 2445
e514a9d6
JM
2446 /* Fall through, we don't deal with these types of breakpoints
2447 here. */
2448
11cf8741 2449 case bp_finish:
9dc5e2a9 2450 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
2451 ui_out_field_string
2452 (uiout, "reason",
2453 async_reason_lookup (EXEC_ASYNC_FUNCTION_FINISHED));
8b93c638
JM
2454 return PRINT_UNKNOWN;
2455 break;
2456
e514a9d6 2457 case bp_until:
9dc5e2a9 2458 if (ui_out_is_mi_like_p (uiout))
1fbc2a49
NR
2459 ui_out_field_string
2460 (uiout, "reason",
2461 async_reason_lookup (EXEC_ASYNC_LOCATION_REACHED));
8b93c638
JM
2462 return PRINT_UNKNOWN;
2463 break;
2464
c2d11a7d 2465 case bp_none:
e514a9d6
JM
2466 case bp_longjmp:
2467 case bp_longjmp_resume:
2468 case bp_step_resume:
e514a9d6
JM
2469 case bp_watchpoint_scope:
2470 case bp_call_dummy:
2471 default:
2472 return PRINT_UNKNOWN;
2473 }
2474}
2475
2476/* Generic routine for printing messages indicating why we
2477 stopped. The behavior of this function depends on the value
2478 'print_it' in the bpstat structure. Under some circumstances we
2479 may decide not to print anything here and delegate the task to
2480 normal_stop(). */
2481
2482static enum print_stop_action
2483print_bp_stop_message (bpstat bs)
2484{
2485 switch (bs->print_it)
2486 {
2487 case print_it_noop:
2488 /* Nothing should be printed for this bpstat entry. */
2489 return PRINT_UNKNOWN;
2490 break;
2491
2492 case print_it_done:
2493 /* We still want to print the frame, but we already printed the
2494 relevant messages. */
2495 return PRINT_SRC_AND_LOC;
2496 break;
2497
2498 case print_it_normal:
4f8d1dc6 2499 {
89f9893c 2500 const struct bp_location *bl = bs->breakpoint_at;
4f8d1dc6
VP
2501 struct breakpoint *b = bl ? bl->owner : NULL;
2502
2503 /* Normal case. Call the breakpoint's print_it method, or
2504 print_it_typical. */
2505 /* FIXME: how breakpoint can ever be NULL here? */
2506 if (b != NULL && b->ops != NULL && b->ops->print_it != NULL)
2507 return b->ops->print_it (b);
2508 else
2509 return print_it_typical (bs);
2510 }
2511 break;
3086aeae 2512
e514a9d6 2513 default:
8e65ff28 2514 internal_error (__FILE__, __LINE__,
e2e0b3e5 2515 _("print_bp_stop_message: unrecognized enum value"));
e514a9d6 2516 break;
c906108c 2517 }
c906108c
SS
2518}
2519
e514a9d6
JM
2520/* Print a message indicating what happened. This is called from
2521 normal_stop(). The input to this routine is the head of the bpstat
2522 list - a list of the eventpoints that caused this stop. This
2523 routine calls the generic print routine for printing a message
2524 about reasons for stopping. This will print (for example) the
2525 "Breakpoint n," part of the output. The return value of this
2526 routine is one of:
c906108c 2527
917317f4
JM
2528 PRINT_UNKNOWN: Means we printed nothing
2529 PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
c5aa993b
JM
2530 code to print the location. An example is
2531 "Breakpoint 1, " which should be followed by
2532 the location.
917317f4 2533 PRINT_SRC_ONLY: Means we printed something, but there is no need
c5aa993b
JM
2534 to also print the location part of the message.
2535 An example is the catch/throw messages, which
917317f4
JM
2536 don't require a location appended to the end.
2537 PRINT_NOTHING: We have done some printing and we don't need any
2538 further info to be printed.*/
c906108c 2539
917317f4 2540enum print_stop_action
fba45db2 2541bpstat_print (bpstat bs)
c906108c
SS
2542{
2543 int val;
c5aa993b 2544
c906108c 2545 /* Maybe another breakpoint in the chain caused us to stop.
53a5351d
JM
2546 (Currently all watchpoints go on the bpstat whether hit or not.
2547 That probably could (should) be changed, provided care is taken
c906108c 2548 with respect to bpstat_explains_signal). */
e514a9d6
JM
2549 for (; bs; bs = bs->next)
2550 {
2551 val = print_bp_stop_message (bs);
2552 if (val == PRINT_SRC_ONLY
2553 || val == PRINT_SRC_AND_LOC
2554 || val == PRINT_NOTHING)
2555 return val;
2556 }
c906108c 2557
e514a9d6
JM
2558 /* We reached the end of the chain, or we got a null BS to start
2559 with and nothing was printed. */
917317f4 2560 return PRINT_UNKNOWN;
c906108c
SS
2561}
2562
2563/* Evaluate the expression EXP and return 1 if value is zero.
2564 This is used inside a catch_errors to evaluate the breakpoint condition.
2565 The argument is a "struct expression *" that has been cast to char * to
2566 make it pass through catch_errors. */
2567
2568static int
4efb68b1 2569breakpoint_cond_eval (void *exp)
c906108c 2570{
278cd55f 2571 struct value *mark = value_mark ();
c5aa993b 2572 int i = !value_true (evaluate_expression ((struct expression *) exp));
c906108c
SS
2573 value_free_to_mark (mark);
2574 return i;
2575}
2576
2577/* Allocate a new bpstat and chain it to the current one. */
2578
2579static bpstat
89f9893c 2580bpstat_alloc (const struct bp_location *bl, bpstat cbs /* Current "bs" value */ )
c906108c
SS
2581{
2582 bpstat bs;
2583
2584 bs = (bpstat) xmalloc (sizeof (*bs));
2585 cbs->next = bs;
4f8d1dc6 2586 bs->breakpoint_at = bl;
c906108c
SS
2587 /* If the condition is false, etc., don't do the commands. */
2588 bs->commands = NULL;
2589 bs->old_val = NULL;
2590 bs->print_it = print_it_normal;
2591 return bs;
2592}
2593\f
d983da9c
DJ
2594/* The target has stopped with waitstatus WS. Check if any hardware
2595 watchpoints have triggered, according to the target. */
2596
2597int
2598watchpoints_triggered (struct target_waitstatus *ws)
2599{
2600 int stopped_by_watchpoint = STOPPED_BY_WATCHPOINT (*ws);
2601 CORE_ADDR addr;
2602 struct breakpoint *b;
2603
2604 if (!stopped_by_watchpoint)
2605 {
2606 /* We were not stopped by a watchpoint. Mark all watchpoints
2607 as not triggered. */
2608 ALL_BREAKPOINTS (b)
2609 if (b->type == bp_hardware_watchpoint
2610 || b->type == bp_read_watchpoint
2611 || b->type == bp_access_watchpoint)
2612 b->watchpoint_triggered = watch_triggered_no;
2613
2614 return 0;
2615 }
2616
2617 if (!target_stopped_data_address (&current_target, &addr))
2618 {
2619 /* We were stopped by a watchpoint, but we don't know where.
2620 Mark all watchpoints as unknown. */
2621 ALL_BREAKPOINTS (b)
2622 if (b->type == bp_hardware_watchpoint
2623 || b->type == bp_read_watchpoint
2624 || b->type == bp_access_watchpoint)
2625 b->watchpoint_triggered = watch_triggered_unknown;
2626
2627 return stopped_by_watchpoint;
2628 }
2629
2630 /* The target could report the data address. Mark watchpoints
2631 affected by this data address as triggered, and all others as not
2632 triggered. */
2633
2634 ALL_BREAKPOINTS (b)
2635 if (b->type == bp_hardware_watchpoint
2636 || b->type == bp_read_watchpoint
2637 || b->type == bp_access_watchpoint)
2638 {
a5606eee 2639 struct bp_location *loc;
d983da9c
DJ
2640 struct value *v;
2641
2642 b->watchpoint_triggered = watch_triggered_no;
a5606eee
VP
2643 for (loc = b->loc; loc; loc = loc->next)
2644 /* Exact match not required. Within range is
2645 sufficient. */
5009afc5
AS
2646 if (target_watchpoint_addr_within_range (&current_target,
2647 addr, loc->address,
2648 loc->length))
a5606eee
VP
2649 {
2650 b->watchpoint_triggered = watch_triggered_yes;
2651 break;
2652 }
d983da9c
DJ
2653 }
2654
2655 return 1;
2656}
2657
c906108c
SS
2658/* Possible return values for watchpoint_check (this can't be an enum
2659 because of check_errors). */
2660/* The watchpoint has been deleted. */
2661#define WP_DELETED 1
2662/* The value has changed. */
2663#define WP_VALUE_CHANGED 2
2664/* The value has not changed. */
2665#define WP_VALUE_NOT_CHANGED 3
2666
2667#define BP_TEMPFLAG 1
2668#define BP_HARDWAREFLAG 2
2669
2670/* Check watchpoint condition. */
2671
2672static int
4efb68b1 2673watchpoint_check (void *p)
c906108c
SS
2674{
2675 bpstat bs = (bpstat) p;
2676 struct breakpoint *b;
2677 struct frame_info *fr;
2678 int within_current_scope;
2679
4f8d1dc6 2680 b = bs->breakpoint_at->owner;
c906108c
SS
2681
2682 if (b->exp_valid_block == NULL)
2683 within_current_scope = 1;
2684 else
2685 {
2686 /* There is no current frame at this moment. If we're going to have
c5aa993b
JM
2687 any chance of handling watchpoints on local variables, we'll need
2688 the frame chain (so we can determine if we're in scope). */
2689 reinit_frame_cache ();
101dcfbe 2690 fr = frame_find_by_id (b->watchpoint_frame);
c906108c 2691 within_current_scope = (fr != NULL);
69fbadd5
DJ
2692
2693 /* If we've gotten confused in the unwinder, we might have
2694 returned a frame that can't describe this variable. */
2695 if (within_current_scope
7f0df278
DJ
2696 && (block_linkage_function (b->exp_valid_block)
2697 != get_frame_function (fr)))
69fbadd5
DJ
2698 within_current_scope = 0;
2699
c12260ac
CV
2700 /* in_function_epilogue_p() returns a non-zero value if we're still
2701 in the function but the stack frame has already been invalidated.
2702 Since we can't rely on the values of local variables after the
2703 stack has been destroyed, we are treating the watchpoint in that
a957e642
CV
2704 state as `not changed' without further checking.
2705
2706 vinschen/2003-09-04: The former implementation left out the case
2707 that the watchpoint frame couldn't be found by frame_find_by_id()
2708 because the current PC is currently in an epilogue. Calling
2709 gdbarch_in_function_epilogue_p() also when fr == NULL fixes that. */
a6fbcf2f 2710 if ((!within_current_scope || fr == get_current_frame ())
c12260ac
CV
2711 && gdbarch_in_function_epilogue_p (current_gdbarch, read_pc ()))
2712 return WP_VALUE_NOT_CHANGED;
a6fbcf2f 2713 if (fr && within_current_scope)
c906108c
SS
2714 /* If we end up stopping, the current frame will get selected
2715 in normal_stop. So this call to select_frame won't affect
2716 the user. */
0f7d239c 2717 select_frame (fr);
c906108c 2718 }
c5aa993b 2719
c906108c
SS
2720 if (within_current_scope)
2721 {
2722 /* We use value_{,free_to_}mark because it could be a
2723 *long* time before we return to the command level and
c5aa993b
JM
2724 call free_all_values. We can't call free_all_values because
2725 we might be in the middle of evaluating a function call. */
c906108c 2726
278cd55f 2727 struct value *mark = value_mark ();
fa4727a6
DJ
2728 struct value *new_val;
2729
2730 fetch_watchpoint_value (b->exp, &new_val, NULL, NULL);
2731 if ((b->val != NULL) != (new_val != NULL)
2732 || (b->val != NULL && !value_equal (b->val, new_val)))
c906108c 2733 {
fa4727a6
DJ
2734 if (new_val != NULL)
2735 {
2736 release_value (new_val);
2737 value_free_to_mark (mark);
2738 }
c906108c
SS
2739 bs->old_val = b->val;
2740 b->val = new_val;
fa4727a6 2741 b->val_valid = 1;
c906108c
SS
2742 /* We will stop here */
2743 return WP_VALUE_CHANGED;
2744 }
2745 else
2746 {
2747 /* Nothing changed, don't do anything. */
2748 value_free_to_mark (mark);
2749 /* We won't stop here */
2750 return WP_VALUE_NOT_CHANGED;
2751 }
2752 }
2753 else
2754 {
2755 /* This seems like the only logical thing to do because
c5aa993b
JM
2756 if we temporarily ignored the watchpoint, then when
2757 we reenter the block in which it is valid it contains
2758 garbage (in the case of a function, it may have two
2759 garbage values, one before and one after the prologue).
2760 So we can't even detect the first assignment to it and
2761 watch after that (since the garbage may or may not equal
2762 the first value assigned). */
4ce44c66
JM
2763 /* We print all the stop information in print_it_typical(), but
2764 in this case, by the time we call print_it_typical() this bp
2765 will be deleted already. So we have no choice but print the
2766 information here. */
9dc5e2a9 2767 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
2768 ui_out_field_string
2769 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_WATCHPOINT_SCOPE));
8b93c638 2770 ui_out_text (uiout, "\nWatchpoint ");
4f8d1dc6 2771 ui_out_field_int (uiout, "wpnum", b->number);
8b93c638
JM
2772 ui_out_text (uiout, " deleted because the program has left the block in\n\
2773which its expression is valid.\n");
4ce44c66 2774
c906108c 2775 if (b->related_breakpoint)
b5de0fa7
EZ
2776 b->related_breakpoint->disposition = disp_del_at_next_stop;
2777 b->disposition = disp_del_at_next_stop;
c906108c
SS
2778
2779 return WP_DELETED;
2780 }
2781}
2782
18a18393
VP
2783/* Return true if it looks like target has stopped due to hitting
2784 breakpoint location BL. This function does not check if we
2785 should stop, only if BL explains the stop. */
2786static int
2787bpstat_check_location (const struct bp_location *bl, CORE_ADDR bp_addr)
2788{
2789 struct breakpoint *b = bl->owner;
2790
2791 if (b->type != bp_watchpoint
2792 && b->type != bp_hardware_watchpoint
2793 && b->type != bp_read_watchpoint
2794 && b->type != bp_access_watchpoint
2795 && b->type != bp_hardware_breakpoint
2796 && b->type != bp_catch_fork
2797 && b->type != bp_catch_vfork
2798 && b->type != bp_catch_exec) /* a non-watchpoint bp */
2799 {
2800 if (bl->address != bp_addr) /* address doesn't match */
2801 return 0;
2802 if (overlay_debugging /* unmapped overlay section */
2803 && section_is_overlay (bl->section)
2804 && !section_is_mapped (bl->section))
2805 return 0;
2806 }
2807
2808 /* Continuable hardware watchpoints are treated as non-existent if the
2809 reason we stopped wasn't a hardware watchpoint (we didn't stop on
2810 some data address). Otherwise gdb won't stop on a break instruction
2811 in the code (not from a breakpoint) when a hardware watchpoint has
2812 been defined. Also skip watchpoints which we know did not trigger
2813 (did not match the data address). */
2814
2815 if ((b->type == bp_hardware_watchpoint
2816 || b->type == bp_read_watchpoint
2817 || b->type == bp_access_watchpoint)
2818 && b->watchpoint_triggered == watch_triggered_no)
2819 return 0;
2820
2821 if (b->type == bp_hardware_breakpoint)
2822 {
2823 if (bl->address != bp_addr)
2824 return 0;
2825 if (overlay_debugging /* unmapped overlay section */
2826 && section_is_overlay (bl->section)
2827 && !section_is_mapped (bl->section))
2828 return 0;
2829 }
2830
2831 /* Is this a catchpoint of a load or unload? If so, did we
2832 get a load or unload of the specified library? If not,
2833 ignore it. */
2834 if ((b->type == bp_catch_load)
2835#if defined(SOLIB_HAVE_LOAD_EVENT)
2836 && (!SOLIB_HAVE_LOAD_EVENT (PIDGET (inferior_ptid))
2837 || ((b->dll_pathname != NULL)
2838 && (strcmp (b->dll_pathname,
2839 SOLIB_LOADED_LIBRARY_PATHNAME (
2840 PIDGET (inferior_ptid)))
2841 != 0)))
2842#endif
2843 )
2844 return 0;
2845
2846 if ((b->type == bp_catch_unload)
2847#if defined(SOLIB_HAVE_UNLOAD_EVENT)
2848 && (!SOLIB_HAVE_UNLOAD_EVENT (PIDGET (inferior_ptid))
2849 || ((b->dll_pathname != NULL)
2850 && (strcmp (b->dll_pathname,
2851 SOLIB_UNLOADED_LIBRARY_PATHNAME (
2852 PIDGET (inferior_ptid)))
2853 != 0)))
2854#endif
2855 )
2856 return 0;
2857
2858 if ((b->type == bp_catch_fork)
3a3e9ee3 2859 && !inferior_has_forked (inferior_ptid,
18a18393
VP
2860 &b->forked_inferior_pid))
2861 return 0;
2862
2863 if ((b->type == bp_catch_vfork)
3a3e9ee3 2864 && !inferior_has_vforked (inferior_ptid,
18a18393
VP
2865 &b->forked_inferior_pid))
2866 return 0;
2867
2868 if ((b->type == bp_catch_exec)
3a3e9ee3 2869 && !inferior_has_execd (inferior_ptid, &b->exec_pathname))
18a18393
VP
2870 return 0;
2871
2872 return 1;
2873}
2874
2875/* If BS refers to a watchpoint, determine if the watched values
2876 has actually changed, and we should stop. If not, set BS->stop
2877 to 0. */
2878static void
2879bpstat_check_watchpoint (bpstat bs)
2880{
2881 const struct bp_location *bl = bs->breakpoint_at;
2882 struct breakpoint *b = bl->owner;
2883
2884 if (b->type == bp_watchpoint
2885 || b->type == bp_read_watchpoint
2886 || b->type == bp_access_watchpoint
2887 || b->type == bp_hardware_watchpoint)
2888 {
2889 CORE_ADDR addr;
2890 struct value *v;
2891 int must_check_value = 0;
2892
2893 if (b->type == bp_watchpoint)
2894 /* For a software watchpoint, we must always check the
2895 watched value. */
2896 must_check_value = 1;
2897 else if (b->watchpoint_triggered == watch_triggered_yes)
2898 /* We have a hardware watchpoint (read, write, or access)
2899 and the target earlier reported an address watched by
2900 this watchpoint. */
2901 must_check_value = 1;
2902 else if (b->watchpoint_triggered == watch_triggered_unknown
2903 && b->type == bp_hardware_watchpoint)
2904 /* We were stopped by a hardware watchpoint, but the target could
2905 not report the data address. We must check the watchpoint's
2906 value. Access and read watchpoints are out of luck; without
2907 a data address, we can't figure it out. */
2908 must_check_value = 1;
2909
2910 if (must_check_value)
2911 {
2912 char *message = xstrprintf ("Error evaluating expression for watchpoint %d\n",
2913 b->number);
2914 struct cleanup *cleanups = make_cleanup (xfree, message);
2915 int e = catch_errors (watchpoint_check, bs, message,
2916 RETURN_MASK_ALL);
2917 do_cleanups (cleanups);
2918 switch (e)
2919 {
2920 case WP_DELETED:
2921 /* We've already printed what needs to be printed. */
2922 bs->print_it = print_it_done;
2923 /* Stop. */
2924 break;
2925 case WP_VALUE_CHANGED:
2926 if (b->type == bp_read_watchpoint)
2927 {
2928 /* Don't stop: read watchpoints shouldn't fire if
2929 the value has changed. This is for targets
2930 which cannot set read-only watchpoints. */
2931 bs->print_it = print_it_noop;
2932 bs->stop = 0;
2933 }
2934 break;
2935 case WP_VALUE_NOT_CHANGED:
2936 if (b->type == bp_hardware_watchpoint
2937 || b->type == bp_watchpoint)
2938 {
2939 /* Don't stop: write watchpoints shouldn't fire if
2940 the value hasn't changed. */
2941 bs->print_it = print_it_noop;
2942 bs->stop = 0;
2943 }
2944 /* Stop. */
2945 break;
2946 default:
2947 /* Can't happen. */
2948 case 0:
2949 /* Error from catch_errors. */
2950 printf_filtered (_("Watchpoint %d deleted.\n"), b->number);
2951 if (b->related_breakpoint)
2952 b->related_breakpoint->disposition = disp_del_at_next_stop;
2953 b->disposition = disp_del_at_next_stop;
2954 /* We've already printed what needs to be printed. */
2955 bs->print_it = print_it_done;
2956 break;
2957 }
2958 }
2959 else /* must_check_value == 0 */
2960 {
2961 /* This is a case where some watchpoint(s) triggered, but
2962 not at the address of this watchpoint, or else no
2963 watchpoint triggered after all. So don't print
2964 anything for this watchpoint. */
2965 bs->print_it = print_it_noop;
2966 bs->stop = 0;
2967 }
2968 }
2969}
2970
2971
2972/* Check conditions (condition proper, frame, thread and ignore count)
2973 of breakpoint referred to by BS. If we should not stop for this
2974 breakpoint, set BS->stop to 0. */
2975static void
2976bpstat_check_breakpoint_conditions (bpstat bs, ptid_t ptid)
2977{
2978 int thread_id = pid_to_thread_id (ptid);
2979 const struct bp_location *bl = bs->breakpoint_at;
2980 struct breakpoint *b = bl->owner;
2981
2982 if (frame_id_p (b->frame_id)
2983 && !frame_id_eq (b->frame_id, get_frame_id (get_current_frame ())))
2984 bs->stop = 0;
2985 else if (bs->stop)
2986 {
2987 int value_is_zero = 0;
2988
2989 /* If this is a scope breakpoint, mark the associated
2990 watchpoint as triggered so that we will handle the
2991 out-of-scope event. We'll get to the watchpoint next
2992 iteration. */
2993 if (b->type == bp_watchpoint_scope)
2994 b->related_breakpoint->watchpoint_triggered = watch_triggered_yes;
2995
2996 if (bl->cond && bl->owner->disposition != disp_del_at_next_stop)
2997 {
2998 /* Need to select the frame, with all that implies
2999 so that the conditions will have the right context. */
3000 select_frame (get_current_frame ());
3001 value_is_zero
3002 = catch_errors (breakpoint_cond_eval, (bl->cond),
3003 "Error in testing breakpoint condition:\n",
3004 RETURN_MASK_ALL);
3005 /* FIXME-someday, should give breakpoint # */
3006 free_all_values ();
3007 }
3008 if (bl->cond && value_is_zero)
3009 {
3010 bs->stop = 0;
3011 }
3012 else if (b->thread != -1 && b->thread != thread_id)
3013 {
3014 bs->stop = 0;
3015 }
3016 else if (b->ignore_count > 0)
3017 {
3018 b->ignore_count--;
3019 annotate_ignore_count_change ();
3020 bs->stop = 0;
3021 /* Increase the hit count even though we don't
3022 stop. */
3023 ++(b->hit_count);
3024 }
3025 }
3026}
3027
3028
9709f61c 3029/* Get a bpstat associated with having just stopped at address
d983da9c 3030 BP_ADDR in thread PTID.
c906108c 3031
d983da9c 3032 Determine whether we stopped at a breakpoint, etc, or whether we
c906108c
SS
3033 don't understand this stop. Result is a chain of bpstat's such that:
3034
c5aa993b 3035 if we don't understand the stop, the result is a null pointer.
c906108c 3036
c5aa993b 3037 if we understand why we stopped, the result is not null.
c906108c 3038
c5aa993b
JM
3039 Each element of the chain refers to a particular breakpoint or
3040 watchpoint at which we have stopped. (We may have stopped for
3041 several reasons concurrently.)
c906108c 3042
c5aa993b
JM
3043 Each element of the chain has valid next, breakpoint_at,
3044 commands, FIXME??? fields. */
c906108c
SS
3045
3046bpstat
d983da9c 3047bpstat_stop_status (CORE_ADDR bp_addr, ptid_t ptid)
c906108c 3048{
0d381245 3049 struct breakpoint *b = NULL;
89f9893c 3050 const struct bp_location *bl;
20874c92 3051 struct bp_location *loc;
c906108c
SS
3052 /* Root of the chain of bpstat's */
3053 struct bpstats root_bs[1];
3054 /* Pointer to the last thing in the chain currently. */
3055 bpstat bs = root_bs;
20874c92 3056 int ix;
d832cb68 3057 int need_remove_insert;
c906108c 3058
0d381245 3059 ALL_BP_LOCATIONS (bl)
c5aa993b 3060 {
0d381245
VP
3061 b = bl->owner;
3062 gdb_assert (b);
468d015d 3063 if (!breakpoint_enabled (b) && b->enable_state != bp_permanent)
c5aa993b
JM
3064 continue;
3065
a5606eee
VP
3066 /* For hardware watchpoints, we look only at the first location.
3067 The watchpoint_check function will work on entire expression,
3068 not the individual locations. For read watchopints, the
3069 watchpoints_triggered function have checked all locations
3070 alrea
3071 */
3072 if (b->type == bp_hardware_watchpoint && bl != b->loc)
3073 continue;
3074
18a18393
VP
3075 if (!bpstat_check_location (bl, bp_addr))
3076 continue;
3077
c5aa993b
JM
3078 /* Come here if it's a watchpoint, or if the break address matches */
3079
0d381245 3080 bs = bpstat_alloc (bl, bs); /* Alloc a bpstat to explain stop */
c5aa993b 3081
18a18393
VP
3082 /* Assume we stop. Should we find watchpoint that is not actually
3083 triggered, or if condition of breakpoint is false, we'll reset
3084 'stop' to 0. */
c5aa993b
JM
3085 bs->stop = 1;
3086 bs->print = 1;
3087
18a18393
VP
3088 bpstat_check_watchpoint (bs);
3089 if (!bs->stop)
3090 continue;
c5aa993b 3091
18a18393
VP
3092 if (b->type == bp_thread_event || b->type == bp_overlay_event)
3093 /* We do not stop for these. */
c5aa993b
JM
3094 bs->stop = 0;
3095 else
18a18393
VP
3096 bpstat_check_breakpoint_conditions (bs, ptid);
3097
3098 if (bs->stop)
c5aa993b 3099 {
18a18393 3100 ++(b->hit_count);
d983da9c 3101
18a18393
VP
3102 /* We will stop here */
3103 if (b->disposition == disp_disable)
c5aa993b 3104 {
514f746b
AR
3105 if (b->enable_state != bp_permanent)
3106 b->enable_state = bp_disabled;
b60e7edf 3107 update_global_location_list (0);
c5aa993b 3108 }
18a18393
VP
3109 if (b->silent)
3110 bs->print = 0;
3111 bs->commands = b->commands;
3112 if (bs->commands &&
3113 (strcmp ("silent", bs->commands->line) == 0
3114 || (xdb_commands && strcmp ("Q", bs->commands->line) == 0)))
c5aa993b 3115 {
18a18393
VP
3116 bs->commands = bs->commands->next;
3117 bs->print = 0;
c5aa993b 3118 }
18a18393 3119 bs->commands = copy_command_lines (bs->commands);
c5aa993b 3120 }
18a18393 3121
c5aa993b
JM
3122 /* Print nothing for this entry if we dont stop or if we dont print. */
3123 if (bs->stop == 0 || bs->print == 0)
3124 bs->print_it = print_it_noop;
3125 }
c906108c 3126
20874c92
VP
3127 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
3128 {
3129 if (loc->address == bp_addr)
3130 {
3131 bs = bpstat_alloc (loc, bs);
3132 /* For hits of moribund locations, we should just proceed. */
3133 bs->stop = 0;
3134 bs->print = 0;
3135 bs->print_it = print_it_noop;
3136 }
3137 }
3138
c906108c
SS
3139 bs->next = NULL; /* Terminate the chain */
3140 bs = root_bs->next; /* Re-grab the head of the chain */
3141
d983da9c
DJ
3142 /* If we aren't stopping, the value of some hardware watchpoint may
3143 not have changed, but the intermediate memory locations we are
3144 watching may have. Don't bother if we're stopping; this will get
3145 done later. */
3146 for (bs = root_bs->next; bs != NULL; bs = bs->next)
3147 if (bs->stop)
3148 break;
3149
d832cb68 3150 need_remove_insert = 0;
d983da9c
DJ
3151 if (bs == NULL)
3152 for (bs = root_bs->next; bs != NULL; bs = bs->next)
3153 if (!bs->stop
20874c92 3154 && bs->breakpoint_at->owner
d983da9c
DJ
3155 && (bs->breakpoint_at->owner->type == bp_hardware_watchpoint
3156 || bs->breakpoint_at->owner->type == bp_read_watchpoint
3157 || bs->breakpoint_at->owner->type == bp_access_watchpoint))
3158 {
a5606eee
VP
3159 /* remove/insert can invalidate bs->breakpoint_at, if this
3160 location is no longer used by the watchpoint. Prevent
3161 further code from trying to use it. */
3162 bs->breakpoint_at = NULL;
d832cb68 3163 need_remove_insert = 1;
d983da9c
DJ
3164 }
3165
d832cb68
DD
3166 if (need_remove_insert)
3167 {
3168 remove_breakpoints ();
3169 insert_breakpoints ();
3170 }
3171
d983da9c 3172 return root_bs->next;
c906108c
SS
3173}
3174\f
3175/* Tell what to do about this bpstat. */
3176struct bpstat_what
fba45db2 3177bpstat_what (bpstat bs)
c906108c
SS
3178{
3179 /* Classify each bpstat as one of the following. */
c5aa993b
JM
3180 enum class
3181 {
3182 /* This bpstat element has no effect on the main_action. */
3183 no_effect = 0,
3184
3185 /* There was a watchpoint, stop but don't print. */
3186 wp_silent,
c906108c 3187
c5aa993b
JM
3188 /* There was a watchpoint, stop and print. */
3189 wp_noisy,
c906108c 3190
c5aa993b
JM
3191 /* There was a breakpoint but we're not stopping. */
3192 bp_nostop,
c906108c 3193
c5aa993b
JM
3194 /* There was a breakpoint, stop but don't print. */
3195 bp_silent,
c906108c 3196
c5aa993b
JM
3197 /* There was a breakpoint, stop and print. */
3198 bp_noisy,
c906108c 3199
c5aa993b
JM
3200 /* We hit the longjmp breakpoint. */
3201 long_jump,
c906108c 3202
c5aa993b
JM
3203 /* We hit the longjmp_resume breakpoint. */
3204 long_resume,
c906108c 3205
c5aa993b
JM
3206 /* We hit the step_resume breakpoint. */
3207 step_resume,
c906108c 3208
c5aa993b
JM
3209 /* We hit the shared library event breakpoint. */
3210 shlib_event,
c906108c 3211
c5aa993b
JM
3212 /* We caught a shared library event. */
3213 catch_shlib_event,
c906108c 3214
c5aa993b
JM
3215 /* This is just used to count how many enums there are. */
3216 class_last
c906108c
SS
3217 };
3218
3219 /* Here is the table which drives this routine. So that we can
3220 format it pretty, we define some abbreviations for the
3221 enum bpstat_what codes. */
3222#define kc BPSTAT_WHAT_KEEP_CHECKING
3223#define ss BPSTAT_WHAT_STOP_SILENT
3224#define sn BPSTAT_WHAT_STOP_NOISY
3225#define sgl BPSTAT_WHAT_SINGLE
3226#define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
3227#define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
c906108c 3228#define sr BPSTAT_WHAT_STEP_RESUME
c906108c
SS
3229#define shl BPSTAT_WHAT_CHECK_SHLIBS
3230#define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
3231
3232/* "Can't happen." Might want to print an error message.
3233 abort() is not out of the question, but chances are GDB is just
3234 a bit confused, not unusable. */
3235#define err BPSTAT_WHAT_STOP_NOISY
3236
3237 /* Given an old action and a class, come up with a new action. */
3238 /* One interesting property of this table is that wp_silent is the same
3239 as bp_silent and wp_noisy is the same as bp_noisy. That is because
3240 after stopping, the check for whether to step over a breakpoint
3241 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
53a5351d
JM
3242 reference to how we stopped. We retain separate wp_silent and
3243 bp_silent codes in case we want to change that someday.
43ff13b4
JM
3244
3245 Another possibly interesting property of this table is that
3246 there's a partial ordering, priority-like, of the actions. Once
3247 you've decided that some action is appropriate, you'll never go
3248 back and decide something of a lower priority is better. The
3249 ordering is:
3250
4d5b2cd7 3251 kc < clr sgl shl shlr slr sn sr ss
78b6a731 3252 sgl < shl shlr slr sn sr ss
4d5b2cd7 3253 slr < err shl shlr sn sr ss
78b6a731 3254 clr < err shl shlr sn sr ss
4d5b2cd7
DJ
3255 ss < shl shlr sn sr
3256 sn < shl shlr sr
46d57086
DJ
3257 shl < shlr sr
3258 shlr < sr
4d5b2cd7 3259 sr <
c5aa993b 3260
43ff13b4
JM
3261 What I think this means is that we don't need a damned table
3262 here. If you just put the rows and columns in the right order,
3263 it'd look awfully regular. We could simply walk the bpstat list
3264 and choose the highest priority action we find, with a little
78b6a731 3265 logic to handle the 'err' cases. */
c906108c
SS
3266
3267 /* step_resume entries: a step resume breakpoint overrides another
3268 breakpoint of signal handling (see comment in wait_for_inferior
fcf70625 3269 at where we set the step_resume breakpoint). */
c906108c
SS
3270
3271 static const enum bpstat_what_main_action
c5aa993b
JM
3272 table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
3273 {
3274 /* old action */
78b6a731 3275 /* kc ss sn sgl slr clr sr shl shlr
c5aa993b
JM
3276 */
3277/*no_effect */
78b6a731 3278 {kc, ss, sn, sgl, slr, clr, sr, shl, shlr},
c5aa993b 3279/*wp_silent */
78b6a731 3280 {ss, ss, sn, ss, ss, ss, sr, shl, shlr},
c5aa993b 3281/*wp_noisy */
78b6a731 3282 {sn, sn, sn, sn, sn, sn, sr, shl, shlr},
c5aa993b 3283/*bp_nostop */
78b6a731 3284 {sgl, ss, sn, sgl, slr, slr, sr, shl, shlr},
c5aa993b 3285/*bp_silent */
78b6a731 3286 {ss, ss, sn, ss, ss, ss, sr, shl, shlr},
c5aa993b 3287/*bp_noisy */
78b6a731 3288 {sn, sn, sn, sn, sn, sn, sr, shl, shlr},
c5aa993b 3289/*long_jump */
78b6a731 3290 {slr, ss, sn, slr, slr, err, sr, shl, shlr},
c5aa993b 3291/*long_resume */
78b6a731 3292 {clr, ss, sn, err, err, err, sr, shl, shlr},
c5aa993b 3293/*step_resume */
78b6a731 3294 {sr, sr, sr, sr, sr, sr, sr, sr, sr},
c5aa993b 3295/*shlib */
78b6a731 3296 {shl, shl, shl, shl, shl, shl, sr, shl, shlr},
c5aa993b 3297/*catch_shlib */
78b6a731 3298 {shlr, shlr, shlr, shlr, shlr, shlr, sr, shlr, shlr}
c5aa993b 3299 };
c906108c
SS
3300
3301#undef kc
3302#undef ss
3303#undef sn
3304#undef sgl
3305#undef slr
3306#undef clr
c906108c
SS
3307#undef err
3308#undef sr
3309#undef ts
3310#undef shl
3311#undef shlr
3312 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
3313 struct bpstat_what retval;
3314
3315 retval.call_dummy = 0;
3316 for (; bs != NULL; bs = bs->next)
3317 {
3318 enum class bs_class = no_effect;
3319 if (bs->breakpoint_at == NULL)
3320 /* I suspect this can happen if it was a momentary breakpoint
3321 which has since been deleted. */
3322 continue;
20874c92
VP
3323 if (bs->breakpoint_at->owner == NULL)
3324 bs_class = bp_nostop;
3325 else
4f8d1dc6 3326 switch (bs->breakpoint_at->owner->type)
c906108c
SS
3327 {
3328 case bp_none:
3329 continue;
3330
3331 case bp_breakpoint:
3332 case bp_hardware_breakpoint:
3333 case bp_until:
3334 case bp_finish:
3335 if (bs->stop)
3336 {
3337 if (bs->print)
3338 bs_class = bp_noisy;
3339 else
3340 bs_class = bp_silent;
3341 }
3342 else
3343 bs_class = bp_nostop;
3344 break;
3345 case bp_watchpoint:
3346 case bp_hardware_watchpoint:
3347 case bp_read_watchpoint:
3348 case bp_access_watchpoint:
3349 if (bs->stop)
3350 {
3351 if (bs->print)
3352 bs_class = wp_noisy;
3353 else
3354 bs_class = wp_silent;
3355 }
3356 else
53a5351d
JM
3357 /* There was a watchpoint, but we're not stopping.
3358 This requires no further action. */
c906108c
SS
3359 bs_class = no_effect;
3360 break;
3361 case bp_longjmp:
3362 bs_class = long_jump;
3363 break;
3364 case bp_longjmp_resume:
3365 bs_class = long_resume;
3366 break;
3367 case bp_step_resume:
3368 if (bs->stop)
3369 {
3370 bs_class = step_resume;
3371 }
3372 else
3373 /* It is for the wrong frame. */
3374 bs_class = bp_nostop;
3375 break;
c906108c
SS
3376 case bp_watchpoint_scope:
3377 bs_class = bp_nostop;
3378 break;
c5aa993b
JM
3379 case bp_shlib_event:
3380 bs_class = shlib_event;
3381 break;
c4093a6a 3382 case bp_thread_event:
1900040c 3383 case bp_overlay_event:
c4093a6a
JM
3384 bs_class = bp_nostop;
3385 break;
c5aa993b
JM
3386 case bp_catch_load:
3387 case bp_catch_unload:
3388 /* Only if this catchpoint triggered should we cause the
3389 step-out-of-dld behaviour. Otherwise, we ignore this
3390 catchpoint. */
3391 if (bs->stop)
3392 bs_class = catch_shlib_event;
3393 else
3394 bs_class = no_effect;
3395 break;
3396 case bp_catch_fork:
3397 case bp_catch_vfork:
3398 case bp_catch_exec:
3399 if (bs->stop)
3400 {
3401 if (bs->print)
3402 bs_class = bp_noisy;
3403 else
3404 bs_class = bp_silent;
3405 }
3406 else
53a5351d
JM
3407 /* There was a catchpoint, but we're not stopping.
3408 This requires no further action. */
c5aa993b
JM
3409 bs_class = no_effect;
3410 break;
c906108c 3411 case bp_call_dummy:
53a5351d
JM
3412 /* Make sure the action is stop (silent or noisy),
3413 so infrun.c pops the dummy frame. */
c906108c
SS
3414 bs_class = bp_silent;
3415 retval.call_dummy = 1;
3416 break;
3417 }
c5aa993b 3418 current_action = table[(int) bs_class][(int) current_action];
c906108c
SS
3419 }
3420 retval.main_action = current_action;
3421 return retval;
3422}
3423
3424/* Nonzero if we should step constantly (e.g. watchpoints on machines
3425 without hardware support). This isn't related to a specific bpstat,
3426 just to things like whether watchpoints are set. */
3427
c5aa993b 3428int
fba45db2 3429bpstat_should_step (void)
c906108c
SS
3430{
3431 struct breakpoint *b;
3432 ALL_BREAKPOINTS (b)
468d015d 3433 if (breakpoint_enabled (b) && b->type == bp_watchpoint)
3172dc30 3434 return 1;
c906108c
SS
3435 return 0;
3436}
3437
c906108c 3438\f
c5aa993b 3439
c906108c
SS
3440/* Given a bpstat that records zero or more triggered eventpoints, this
3441 function returns another bpstat which contains only the catchpoints
3442 on that first list, if any. */
3443void
fba45db2 3444bpstat_get_triggered_catchpoints (bpstat ep_list, bpstat *cp_list)
c5aa993b
JM
3445{
3446 struct bpstats root_bs[1];
3447 bpstat bs = root_bs;
3448 struct breakpoint *ep;
3449 char *dll_pathname;
3450
c906108c
SS
3451 bpstat_clear (cp_list);
3452 root_bs->next = NULL;
c5aa993b
JM
3453
3454 for (; ep_list != NULL; ep_list = ep_list->next)
c906108c
SS
3455 {
3456 /* Is this eventpoint a catchpoint? If not, ignore it. */
4f8d1dc6 3457 ep = ep_list->breakpoint_at->owner;
c906108c 3458 if (ep == NULL)
c5aa993b
JM
3459 break;
3460 if ((ep->type != bp_catch_load) &&
dfdfb3ca 3461 (ep->type != bp_catch_unload))
53a5351d 3462 /* pai: (temp) ADD fork/vfork here!! */
c5aa993b
JM
3463 continue;
3464
c906108c 3465 /* Yes; add it to the list. */
4f8d1dc6 3466 bs = bpstat_alloc (ep_list->breakpoint_at, bs);
c906108c
SS
3467 *bs = *ep_list;
3468 bs->next = NULL;
3469 bs = root_bs->next;
c5aa993b 3470
c906108c
SS
3471#if defined(SOLIB_ADD)
3472 /* Also, for each triggered catchpoint, tag it with the name of
3473 the library that caused this trigger. (We copy the name now,
3474 because it's only guaranteed to be available NOW, when the
3475 catchpoint triggers. Clients who may wish to know the name
3476 later must get it from the catchpoint itself.) */
3477 if (ep->triggered_dll_pathname != NULL)
b8c9b27d 3478 xfree (ep->triggered_dll_pathname);
c906108c 3479 if (ep->type == bp_catch_load)
39f77062
KB
3480 dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (
3481 PIDGET (inferior_ptid));
c906108c 3482 else
39f77062
KB
3483 dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (
3484 PIDGET (inferior_ptid));
c906108c
SS
3485#else
3486 dll_pathname = NULL;
3487#endif
3488 if (dll_pathname)
3489 {
53a5351d
JM
3490 ep->triggered_dll_pathname = (char *)
3491 xmalloc (strlen (dll_pathname) + 1);
c906108c
SS
3492 strcpy (ep->triggered_dll_pathname, dll_pathname);
3493 }
3494 else
3495 ep->triggered_dll_pathname = NULL;
3496 }
c5aa993b 3497
c906108c
SS
3498 *cp_list = bs;
3499}
3500
0d381245
VP
3501static void print_breakpoint_location (struct breakpoint *b,
3502 struct bp_location *loc,
3503 char *wrap_indent,
3504 struct ui_stream *stb)
3505{
3506 if (b->source_file)
3507 {
3508 struct symbol *sym
3509 = find_pc_sect_function (loc->address, loc->section);
3510 if (sym)
3511 {
3512 ui_out_text (uiout, "in ");
3513 ui_out_field_string (uiout, "func",
3514 SYMBOL_PRINT_NAME (sym));
3515 ui_out_wrap_hint (uiout, wrap_indent);
3516 ui_out_text (uiout, " at ");
3517 }
3518 ui_out_field_string (uiout, "file", b->source_file);
3519 ui_out_text (uiout, ":");
3520
3521 if (ui_out_is_mi_like_p (uiout))
3522 {
3523 struct symtab_and_line sal = find_pc_line (loc->address, 0);
3524 char *fullname = symtab_to_fullname (sal.symtab);
3525
3526 if (fullname)
3527 ui_out_field_string (uiout, "fullname", fullname);
3528 }
3529
3530 ui_out_field_int (uiout, "line", b->line_number);
3531 }
3532 else if (!b->loc)
3533 {
3534 ui_out_field_string (uiout, "pending", b->addr_string);
3535 }
3536 else
3537 {
3538 print_address_symbolic (loc->address, stb->stream, demangle, "");
3539 ui_out_field_stream (uiout, "at", stb);
3540 }
3541}
3542
c4093a6a 3543/* Print B to gdb_stdout. */
c906108c 3544static void
0d381245
VP
3545print_one_breakpoint_location (struct breakpoint *b,
3546 struct bp_location *loc,
3547 int loc_number,
3548 CORE_ADDR *last_addr)
c906108c 3549{
52f0bd74
AC
3550 struct command_line *l;
3551 struct symbol *sym;
c4093a6a
JM
3552 struct ep_type_description
3553 {
3554 enum bptype type;
3555 char *description;
3556 };
3557 static struct ep_type_description bptypes[] =
c906108c 3558 {
c5aa993b
JM
3559 {bp_none, "?deleted?"},
3560 {bp_breakpoint, "breakpoint"},
c906108c 3561 {bp_hardware_breakpoint, "hw breakpoint"},
c5aa993b
JM
3562 {bp_until, "until"},
3563 {bp_finish, "finish"},
3564 {bp_watchpoint, "watchpoint"},
c906108c 3565 {bp_hardware_watchpoint, "hw watchpoint"},
c5aa993b
JM
3566 {bp_read_watchpoint, "read watchpoint"},
3567 {bp_access_watchpoint, "acc watchpoint"},
3568 {bp_longjmp, "longjmp"},
3569 {bp_longjmp_resume, "longjmp resume"},
3570 {bp_step_resume, "step resume"},
c5aa993b
JM
3571 {bp_watchpoint_scope, "watchpoint scope"},
3572 {bp_call_dummy, "call dummy"},
3573 {bp_shlib_event, "shlib events"},
c4093a6a 3574 {bp_thread_event, "thread events"},
1900040c 3575 {bp_overlay_event, "overlay events"},
c5aa993b
JM
3576 {bp_catch_load, "catch load"},
3577 {bp_catch_unload, "catch unload"},
3578 {bp_catch_fork, "catch fork"},
3579 {bp_catch_vfork, "catch vfork"},
dfdfb3ca 3580 {bp_catch_exec, "catch exec"}
c5aa993b 3581 };
c4093a6a 3582
c2c6d25f 3583 static char bpenables[] = "nynny";
c906108c 3584 char wrap_indent[80];
8b93c638
JM
3585 struct ui_stream *stb = ui_out_stream_new (uiout);
3586 struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
3b31d625 3587 struct cleanup *bkpt_chain;
c906108c 3588
0d381245
VP
3589 int header_of_multiple = 0;
3590 int part_of_multiple = (loc != NULL);
3591
3592 gdb_assert (!loc || loc_number != 0);
3593 /* See comment in print_one_breakpoint concerning
3594 treatment of breakpoints with single disabled
3595 location. */
3596 if (loc == NULL
3597 && (b->loc != NULL
3598 && (b->loc->next != NULL || !b->loc->enabled)))
3599 header_of_multiple = 1;
3600 if (loc == NULL)
3601 loc = b->loc;
3602
c4093a6a 3603 annotate_record ();
3b31d625 3604 bkpt_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "bkpt");
c4093a6a
JM
3605
3606 /* 1 */
3607 annotate_field (0);
0d381245
VP
3608 if (part_of_multiple)
3609 {
3610 char *formatted;
0c6773c1 3611 formatted = xstrprintf ("%d.%d", b->number, loc_number);
0d381245
VP
3612 ui_out_field_string (uiout, "number", formatted);
3613 xfree (formatted);
3614 }
3615 else
3616 {
3617 ui_out_field_int (uiout, "number", b->number);
3618 }
c4093a6a
JM
3619
3620 /* 2 */
3621 annotate_field (1);
0d381245
VP
3622 if (part_of_multiple)
3623 ui_out_field_skip (uiout, "type");
3624 else
3625 {
3626 if (((int) b->type >= (sizeof (bptypes) / sizeof (bptypes[0])))
3627 || ((int) b->type != bptypes[(int) b->type].type))
3628 internal_error (__FILE__, __LINE__,
3629 _("bptypes table does not describe type #%d."),
3630 (int) b->type);
3631 ui_out_field_string (uiout, "type", bptypes[(int) b->type].description);
3632 }
c4093a6a
JM
3633
3634 /* 3 */
3635 annotate_field (2);
0d381245
VP
3636 if (part_of_multiple)
3637 ui_out_field_skip (uiout, "disp");
3638 else
2cec12e5 3639 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
0d381245 3640
c4093a6a
JM
3641
3642 /* 4 */
3643 annotate_field (3);
0d381245 3644 if (part_of_multiple)
54e52265 3645 ui_out_field_string (uiout, "enabled", loc->enabled ? "y" : "n");
0d381245 3646 else
54e52265
VP
3647 ui_out_field_fmt (uiout, "enabled", "%c",
3648 bpenables[(int) b->enable_state]);
3649 ui_out_spaces (uiout, 2);
0d381245 3650
c4093a6a
JM
3651
3652 /* 5 and 6 */
3653 strcpy (wrap_indent, " ");
3654 if (addressprint)
75ac9d7b 3655 {
17a912b6 3656 if (gdbarch_addr_bit (current_gdbarch) <= 32)
75ac9d7b
MS
3657 strcat (wrap_indent, " ");
3658 else
3659 strcat (wrap_indent, " ");
3660 }
c906108c 3661
3086aeae 3662 if (b->ops != NULL && b->ops->print_one != NULL)
0d381245
VP
3663 {
3664 /* Although the print_one can possibly print
3665 all locations, calling it here is not likely
3666 to get any nice result. So, make sure there's
3667 just one location. */
3668 gdb_assert (b->loc == NULL || b->loc->next == NULL);
3669 b->ops->print_one (b, last_addr);
3670 }
3086aeae
DJ
3671 else
3672 switch (b->type)
3673 {
3674 case bp_none:
3675 internal_error (__FILE__, __LINE__,
e2e0b3e5 3676 _("print_one_breakpoint: bp_none encountered\n"));
3086aeae 3677 break;
c906108c 3678
3086aeae
DJ
3679 case bp_watchpoint:
3680 case bp_hardware_watchpoint:
3681 case bp_read_watchpoint:
3682 case bp_access_watchpoint:
3683 /* Field 4, the address, is omitted (which makes the columns
3684 not line up too nicely with the headers, but the effect
3685 is relatively readable). */
3686 if (addressprint)
3687 ui_out_field_skip (uiout, "addr");
3688 annotate_field (5);
3689 print_expression (b->exp, stb->stream);
3690 ui_out_field_stream (uiout, "what", stb);
3691 break;
3692
3693 case bp_catch_load:
3694 case bp_catch_unload:
3695 /* Field 4, the address, is omitted (which makes the columns
3696 not line up too nicely with the headers, but the effect
3697 is relatively readable). */
3698 if (addressprint)
3699 ui_out_field_skip (uiout, "addr");
3700 annotate_field (5);
3701 if (b->dll_pathname == NULL)
3702 {
3703 ui_out_field_string (uiout, "what", "<any library>");
3704 ui_out_spaces (uiout, 1);
3705 }
3706 else
3707 {
3708 ui_out_text (uiout, "library \"");
3709 ui_out_field_string (uiout, "what", b->dll_pathname);
3710 ui_out_text (uiout, "\" ");
3711 }
3712 break;
3713
3714 case bp_catch_fork:
3715 case bp_catch_vfork:
3716 /* Field 4, the address, is omitted (which makes the columns
3717 not line up too nicely with the headers, but the effect
3718 is relatively readable). */
3719 if (addressprint)
3720 ui_out_field_skip (uiout, "addr");
3721 annotate_field (5);
3a3e9ee3 3722 if (!ptid_equal (b->forked_inferior_pid, null_ptid))
3086aeae
DJ
3723 {
3724 ui_out_text (uiout, "process ");
3a3e9ee3
PA
3725 ui_out_field_int (uiout, "what",
3726 ptid_get_pid (b->forked_inferior_pid));
3086aeae
DJ
3727 ui_out_spaces (uiout, 1);
3728 }
0f699bbe 3729 break;
3086aeae
DJ
3730
3731 case bp_catch_exec:
3732 /* Field 4, the address, is omitted (which makes the columns
3733 not line up too nicely with the headers, but the effect
3734 is relatively readable). */
3735 if (addressprint)
3736 ui_out_field_skip (uiout, "addr");
3737 annotate_field (5);
3738 if (b->exec_pathname != NULL)
3739 {
3740 ui_out_text (uiout, "program \"");
3741 ui_out_field_string (uiout, "what", b->exec_pathname);
3742 ui_out_text (uiout, "\" ");
3743 }
3744 break;
3745
3086aeae
DJ
3746 case bp_breakpoint:
3747 case bp_hardware_breakpoint:
3748 case bp_until:
3749 case bp_finish:
3750 case bp_longjmp:
3751 case bp_longjmp_resume:
3752 case bp_step_resume:
3086aeae
DJ
3753 case bp_watchpoint_scope:
3754 case bp_call_dummy:
3755 case bp_shlib_event:
3756 case bp_thread_event:
3757 case bp_overlay_event:
3758 if (addressprint)
3759 {
3760 annotate_field (4);
54e52265 3761 if (header_of_multiple)
0d381245 3762 ui_out_field_string (uiout, "addr", "<MULTIPLE>");
e9bbd7c5 3763 else if (b->loc == NULL || loc->shlib_disabled)
54e52265 3764 ui_out_field_string (uiout, "addr", "<PENDING>");
0101ce28 3765 else
0d381245 3766 ui_out_field_core_addr (uiout, "addr", loc->address);
3086aeae
DJ
3767 }
3768 annotate_field (5);
0d381245
VP
3769 if (!header_of_multiple)
3770 print_breakpoint_location (b, loc, wrap_indent, stb);
3771 if (b->loc)
3772 *last_addr = b->loc->address;
3086aeae
DJ
3773 break;
3774 }
c906108c 3775
0d381245 3776 if (!part_of_multiple && b->thread != -1)
c4093a6a 3777 {
8b93c638
JM
3778 /* FIXME: This seems to be redundant and lost here; see the
3779 "stop only in" line a little further down. */
3780 ui_out_text (uiout, " thread ");
3781 ui_out_field_int (uiout, "thread", b->thread);
c4093a6a
JM
3782 }
3783
8b93c638 3784 ui_out_text (uiout, "\n");
c4093a6a 3785
0d381245 3786 if (part_of_multiple && frame_id_p (b->frame_id))
c4093a6a
JM
3787 {
3788 annotate_field (6);
8b93c638 3789 ui_out_text (uiout, "\tstop only in stack frame at ");
818dd999
AC
3790 /* FIXME: cagney/2002-12-01: Shouldn't be poeking around inside
3791 the frame ID. */
d0a55772 3792 ui_out_field_core_addr (uiout, "frame", b->frame_id.stack_addr);
8b93c638 3793 ui_out_text (uiout, "\n");
c4093a6a
JM
3794 }
3795
0d381245 3796 if (!part_of_multiple && b->cond_string && !ada_exception_catchpoint_p (b))
c4093a6a 3797 {
f7f9143b
JB
3798 /* We do not print the condition for Ada exception catchpoints
3799 because the condition is an internal implementation detail
3800 that we do not want to expose to the user. */
c4093a6a 3801 annotate_field (7);
8b93c638 3802 ui_out_text (uiout, "\tstop only if ");
0101ce28
JJ
3803 ui_out_field_string (uiout, "cond", b->cond_string);
3804 ui_out_text (uiout, "\n");
3805 }
3806
0d381245 3807 if (!part_of_multiple && b->thread != -1)
c4093a6a
JM
3808 {
3809 /* FIXME should make an annotation for this */
8b93c638
JM
3810 ui_out_text (uiout, "\tstop only in thread ");
3811 ui_out_field_int (uiout, "thread", b->thread);
3812 ui_out_text (uiout, "\n");
c4093a6a
JM
3813 }
3814
0d381245 3815 if (!part_of_multiple && show_breakpoint_hit_counts && b->hit_count)
c4093a6a
JM
3816 {
3817 /* FIXME should make an annotation for this */
8b93c638
JM
3818 if (ep_is_catchpoint (b))
3819 ui_out_text (uiout, "\tcatchpoint");
3820 else
3821 ui_out_text (uiout, "\tbreakpoint");
3822 ui_out_text (uiout, " already hit ");
3823 ui_out_field_int (uiout, "times", b->hit_count);
3824 if (b->hit_count == 1)
3825 ui_out_text (uiout, " time\n");
3826 else
3827 ui_out_text (uiout, " times\n");
c4093a6a
JM
3828 }
3829
fb40c209
AC
3830 /* Output the count also if it is zero, but only if this is
3831 mi. FIXME: Should have a better test for this. */
9dc5e2a9 3832 if (ui_out_is_mi_like_p (uiout))
0d381245 3833 if (!part_of_multiple && show_breakpoint_hit_counts && b->hit_count == 0)
fb40c209 3834 ui_out_field_int (uiout, "times", b->hit_count);
8b93c638 3835
0d381245 3836 if (!part_of_multiple && b->ignore_count)
c4093a6a
JM
3837 {
3838 annotate_field (8);
8b93c638
JM
3839 ui_out_text (uiout, "\tignore next ");
3840 ui_out_field_int (uiout, "ignore", b->ignore_count);
3841 ui_out_text (uiout, " hits\n");
c4093a6a
JM
3842 }
3843
0d381245 3844 if (!part_of_multiple && (l = b->commands))
c4093a6a 3845 {
3b31d625
EZ
3846 struct cleanup *script_chain;
3847
c4093a6a 3848 annotate_field (9);
3b31d625 3849 script_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "script");
8b93c638 3850 print_command_lines (uiout, l, 4);
3b31d625 3851 do_cleanups (script_chain);
c4093a6a 3852 }
d24317b4
VP
3853
3854 if (ui_out_is_mi_like_p (uiout) && !part_of_multiple)
3855 {
3856 if (b->addr_string)
3857 ui_out_field_string (uiout, "original-location", b->addr_string);
3858 else if (b->exp_string)
3859 ui_out_field_string (uiout, "original-location", b->exp_string);
3860 }
3861
3b31d625 3862 do_cleanups (bkpt_chain);
8b93c638 3863 do_cleanups (old_chain);
c4093a6a 3864}
c5aa993b 3865
0d381245
VP
3866static void
3867print_one_breakpoint (struct breakpoint *b,
3868 CORE_ADDR *last_addr)
3869{
3870 print_one_breakpoint_location (b, NULL, 0, last_addr);
3871
3872 /* If this breakpoint has custom print function,
3873 it's already printed. Otherwise, print individual
3874 locations, if any. */
3875 if (b->ops == NULL || b->ops->print_one == NULL)
3876 {
3877 /* If breakpoint has a single location that is
3878 disabled, we print it as if it had
3879 several locations, since otherwise it's hard to
3880 represent "breakpoint enabled, location disabled"
a5606eee
VP
3881 situation.
3882 Note that while hardware watchpoints have
3883 several locations internally, that's no a property
3884 exposed to user. */
0d381245 3885 if (b->loc
a5606eee 3886 && !is_hardware_watchpoint (b)
0d381245 3887 && (b->loc->next || !b->loc->enabled)
a5606eee 3888 && !ui_out_is_mi_like_p (uiout))
0d381245
VP
3889 {
3890 struct bp_location *loc;
3891 int n = 1;
3892 for (loc = b->loc; loc; loc = loc->next, ++n)
3893 print_one_breakpoint_location (b, loc, n, last_addr);
3894 }
3895 }
3896}
3897
3898
c4093a6a
JM
3899struct captured_breakpoint_query_args
3900 {
3901 int bnum;
3902 };
c5aa993b 3903
c4093a6a 3904static int
2b65245e 3905do_captured_breakpoint_query (struct ui_out *uiout, void *data)
c4093a6a
JM
3906{
3907 struct captured_breakpoint_query_args *args = data;
52f0bd74 3908 struct breakpoint *b;
c4093a6a
JM
3909 CORE_ADDR dummy_addr = 0;
3910 ALL_BREAKPOINTS (b)
3911 {
3912 if (args->bnum == b->number)
c5aa993b 3913 {
c4093a6a
JM
3914 print_one_breakpoint (b, &dummy_addr);
3915 return GDB_RC_OK;
c5aa993b 3916 }
c4093a6a
JM
3917 }
3918 return GDB_RC_NONE;
3919}
c5aa993b 3920
c4093a6a 3921enum gdb_rc
ce43223b 3922gdb_breakpoint_query (struct ui_out *uiout, int bnum, char **error_message)
c4093a6a
JM
3923{
3924 struct captured_breakpoint_query_args args;
3925 args.bnum = bnum;
3926 /* For the moment we don't trust print_one_breakpoint() to not throw
3927 an error. */
b0b13bb4
DJ
3928 if (catch_exceptions_with_msg (uiout, do_captured_breakpoint_query, &args,
3929 error_message, RETURN_MASK_ALL) < 0)
3930 return GDB_RC_FAIL;
3931 else
3932 return GDB_RC_OK;
c4093a6a 3933}
c5aa993b 3934
7f3b0473
AC
3935/* Return non-zero if B is user settable (breakpoints, watchpoints,
3936 catchpoints, et.al.). */
3937
3938static int
3939user_settable_breakpoint (const struct breakpoint *b)
3940{
3941 return (b->type == bp_breakpoint
3942 || b->type == bp_catch_load
3943 || b->type == bp_catch_unload
3944 || b->type == bp_catch_fork
3945 || b->type == bp_catch_vfork
3946 || b->type == bp_catch_exec
7f3b0473
AC
3947 || b->type == bp_hardware_breakpoint
3948 || b->type == bp_watchpoint
3949 || b->type == bp_read_watchpoint
3950 || b->type == bp_access_watchpoint
3951 || b->type == bp_hardware_watchpoint);
3952}
3953
3954/* Print information on user settable breakpoint (watchpoint, etc)
3955 number BNUM. If BNUM is -1 print all user settable breakpoints.
3956 If ALLFLAG is non-zero, include non- user settable breakpoints. */
c906108c 3957
c4093a6a 3958static void
fba45db2 3959breakpoint_1 (int bnum, int allflag)
c4093a6a 3960{
52f0bd74 3961 struct breakpoint *b;
c4093a6a 3962 CORE_ADDR last_addr = (CORE_ADDR) -1;
7f3b0473 3963 int nr_printable_breakpoints;
3b31d625 3964 struct cleanup *bkpttbl_chain;
c4093a6a 3965
7f3b0473
AC
3966 /* Compute the number of rows in the table. */
3967 nr_printable_breakpoints = 0;
3968 ALL_BREAKPOINTS (b)
3969 if (bnum == -1
3970 || bnum == b->number)
3971 {
3972 if (allflag || user_settable_breakpoint (b))
3973 nr_printable_breakpoints++;
3974 }
3975
8b93c638 3976 if (addressprint)
3b31d625
EZ
3977 bkpttbl_chain
3978 = make_cleanup_ui_out_table_begin_end (uiout, 6, nr_printable_breakpoints,
3979 "BreakpointTable");
8b93c638 3980 else
3b31d625
EZ
3981 bkpttbl_chain
3982 = make_cleanup_ui_out_table_begin_end (uiout, 5, nr_printable_breakpoints,
3983 "BreakpointTable");
8b93c638 3984
7f3b0473 3985 if (nr_printable_breakpoints > 0)
d7faa9e7
AC
3986 annotate_breakpoints_headers ();
3987 if (nr_printable_breakpoints > 0)
3988 annotate_field (0);
0d381245 3989 ui_out_table_header (uiout, 7, ui_left, "number", "Num"); /* 1 */
d7faa9e7
AC
3990 if (nr_printable_breakpoints > 0)
3991 annotate_field (1);
3992 ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
3993 if (nr_printable_breakpoints > 0)
3994 annotate_field (2);
3995 ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
3996 if (nr_printable_breakpoints > 0)
3997 annotate_field (3);
54e52265 3998 ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
d7faa9e7 3999 if (addressprint)
7f3b0473 4000 {
d7faa9e7
AC
4001 if (nr_printable_breakpoints > 0)
4002 annotate_field (4);
17a912b6 4003 if (gdbarch_addr_bit (current_gdbarch) <= 32)
b25959ec 4004 ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
7f3b0473 4005 else
b25959ec 4006 ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
7f3b0473 4007 }
d7faa9e7
AC
4008 if (nr_printable_breakpoints > 0)
4009 annotate_field (5);
4010 ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
4011 ui_out_table_body (uiout);
4012 if (nr_printable_breakpoints > 0)
4013 annotate_breakpoints_table ();
7f3b0473 4014
c4093a6a
JM
4015 ALL_BREAKPOINTS (b)
4016 if (bnum == -1
4017 || bnum == b->number)
4018 {
4019 /* We only print out user settable breakpoints unless the
4020 allflag is set. */
7f3b0473
AC
4021 if (allflag || user_settable_breakpoint (b))
4022 print_one_breakpoint (b, &last_addr);
c4093a6a
JM
4023 }
4024
3b31d625 4025 do_cleanups (bkpttbl_chain);
698384cd 4026
7f3b0473 4027 if (nr_printable_breakpoints == 0)
c906108c 4028 {
8b93c638
JM
4029 if (bnum == -1)
4030 ui_out_message (uiout, 0, "No breakpoints or watchpoints.\n");
4031 else
4032 ui_out_message (uiout, 0, "No breakpoint or watchpoint number %d.\n",
4033 bnum);
c906108c
SS
4034 }
4035 else
c4093a6a
JM
4036 {
4037 /* Compare against (CORE_ADDR)-1 in case some compiler decides
4038 that a comparison of an unsigned with -1 is always false. */
d1aa2f50 4039 if (last_addr != (CORE_ADDR) -1 && !server_command)
8b9b9e1a 4040 set_next_address (current_gdbarch, last_addr);
c4093a6a 4041 }
c906108c 4042
c4093a6a
JM
4043 /* FIXME? Should this be moved up so that it is only called when
4044 there have been breakpoints? */
c906108c
SS
4045 annotate_breakpoints_table_end ();
4046}
4047
c906108c 4048static void
fba45db2 4049breakpoints_info (char *bnum_exp, int from_tty)
c906108c
SS
4050{
4051 int bnum = -1;
4052
4053 if (bnum_exp)
bb518678 4054 bnum = parse_and_eval_long (bnum_exp);
c906108c
SS
4055
4056 breakpoint_1 (bnum, 0);
4057}
4058
7a292a7a 4059static void
fba45db2 4060maintenance_info_breakpoints (char *bnum_exp, int from_tty)
c906108c
SS
4061{
4062 int bnum = -1;
4063
4064 if (bnum_exp)
bb518678 4065 bnum = parse_and_eval_long (bnum_exp);
c906108c
SS
4066
4067 breakpoint_1 (bnum, 1);
4068}
4069
0d381245 4070static int
714835d5
UW
4071breakpoint_has_pc (struct breakpoint *b,
4072 CORE_ADDR pc, struct obj_section *section)
0d381245
VP
4073{
4074 struct bp_location *bl = b->loc;
4075 for (; bl; bl = bl->next)
4076 {
4077 if (bl->address == pc
4078 && (!overlay_debugging || bl->section == section))
4079 return 1;
4080 }
4081 return 0;
4082}
4083
c906108c
SS
4084/* Print a message describing any breakpoints set at PC. */
4085
4086static void
714835d5
UW
4087describe_other_breakpoints (CORE_ADDR pc, struct obj_section *section,
4088 int thread)
c906108c 4089{
52f0bd74
AC
4090 int others = 0;
4091 struct breakpoint *b;
c906108c
SS
4092
4093 ALL_BREAKPOINTS (b)
0d381245 4094 others += breakpoint_has_pc (b, pc, section);
c906108c
SS
4095 if (others > 0)
4096 {
a3f17187
AC
4097 if (others == 1)
4098 printf_filtered (_("Note: breakpoint "));
4099 else /* if (others == ???) */
4100 printf_filtered (_("Note: breakpoints "));
c906108c 4101 ALL_BREAKPOINTS (b)
0d381245
VP
4102 if (breakpoint_has_pc (b, pc, section))
4103 {
4104 others--;
4105 printf_filtered ("%d", b->number);
4106 if (b->thread == -1 && thread != -1)
4107 printf_filtered (" (all threads)");
4108 else if (b->thread != -1)
4109 printf_filtered (" (thread %d)", b->thread);
4110 printf_filtered ("%s%s ",
4111 ((b->enable_state == bp_disabled ||
4112 b->enable_state == bp_call_disabled)
4113 ? " (disabled)"
4114 : b->enable_state == bp_permanent
4115 ? " (permanent)"
4116 : ""),
4117 (others > 1) ? ","
4118 : ((others == 1) ? " and" : ""));
4119 }
a3f17187 4120 printf_filtered (_("also set at pc "));
ed49a04f 4121 fputs_filtered (paddress (pc), gdb_stdout);
c906108c
SS
4122 printf_filtered (".\n");
4123 }
4124}
4125\f
4126/* Set the default place to put a breakpoint
4127 for the `break' command with no arguments. */
4128
4129void
fba45db2
KB
4130set_default_breakpoint (int valid, CORE_ADDR addr, struct symtab *symtab,
4131 int line)
c906108c
SS
4132{
4133 default_breakpoint_valid = valid;
4134 default_breakpoint_address = addr;
4135 default_breakpoint_symtab = symtab;
4136 default_breakpoint_line = line;
4137}
4138
e4f237da
KB
4139/* Return true iff it is meaningful to use the address member of
4140 BPT. For some breakpoint types, the address member is irrelevant
4141 and it makes no sense to attempt to compare it to other addresses
4142 (or use it for any other purpose either).
4143
4144 More specifically, each of the following breakpoint types will always
4145 have a zero valued address and we don't want check_duplicates() to mark
4146 breakpoints of any of these types to be a duplicate of an actual
4147 breakpoint at address zero:
4148
4149 bp_watchpoint
4150 bp_hardware_watchpoint
4151 bp_read_watchpoint
4152 bp_access_watchpoint
4153 bp_catch_exec
e4f237da
KB
4154 bp_catch_fork
4155 bp_catch_vork */
4156
4157static int
4158breakpoint_address_is_meaningful (struct breakpoint *bpt)
4159{
4160 enum bptype type = bpt->type;
4161
4162 return (type != bp_watchpoint
4163 && type != bp_hardware_watchpoint
4164 && type != bp_read_watchpoint
4165 && type != bp_access_watchpoint
4166 && type != bp_catch_exec
e4f237da
KB
4167 && type != bp_catch_fork
4168 && type != bp_catch_vfork);
4169}
4170
9f60f21b 4171/* Rescan breakpoints at the same address and section as BPT,
c906108c 4172 marking the first one as "first" and any others as "duplicates".
c2c6d25f 4173 This is so that the bpt instruction is only inserted once.
9f60f21b
JB
4174 If we have a permanent breakpoint at the same place as BPT, make
4175 that one the official one, and the rest as duplicates. */
c906108c
SS
4176
4177static void
714835d5 4178check_duplicates_for (CORE_ADDR address, struct obj_section *section)
c906108c 4179{
075f6582 4180 struct bp_location *b;
52f0bd74 4181 int count = 0;
075f6582 4182 struct bp_location *perm_bp = 0;
c906108c 4183
075f6582
DJ
4184 ALL_BP_LOCATIONS (b)
4185 if (b->owner->enable_state != bp_disabled
075f6582 4186 && b->owner->enable_state != bp_call_disabled
0d381245
VP
4187 && b->enabled
4188 && !b->shlib_disabled
075f6582
DJ
4189 && b->address == address /* address / overlay match */
4190 && (!overlay_debugging || b->section == section)
4191 && breakpoint_address_is_meaningful (b->owner))
c5aa993b 4192 {
c2c6d25f 4193 /* Have we found a permanent breakpoint? */
075f6582 4194 if (b->owner->enable_state == bp_permanent)
c2c6d25f
JM
4195 {
4196 perm_bp = b;
4197 break;
4198 }
4199
c5aa993b 4200 count++;
075f6582 4201 b->duplicate = count > 1;
c5aa993b 4202 }
c2c6d25f
JM
4203
4204 /* If we found a permanent breakpoint at this address, go over the
4205 list again and declare all the other breakpoints there to be the
4206 duplicates. */
4207 if (perm_bp)
4208 {
075f6582 4209 perm_bp->duplicate = 0;
c2c6d25f
JM
4210
4211 /* Permanent breakpoint should always be inserted. */
075f6582 4212 if (! perm_bp->inserted)
8e65ff28 4213 internal_error (__FILE__, __LINE__,
e2e0b3e5
AC
4214 _("allegedly permanent breakpoint is not "
4215 "actually inserted"));
c2c6d25f 4216
075f6582 4217 ALL_BP_LOCATIONS (b)
c2c6d25f
JM
4218 if (b != perm_bp)
4219 {
075f6582 4220 if (b->owner->enable_state != bp_disabled
075f6582 4221 && b->owner->enable_state != bp_call_disabled
0d381245 4222 && b->enabled && !b->shlib_disabled
075f6582
DJ
4223 && b->address == address /* address / overlay match */
4224 && (!overlay_debugging || b->section == section)
4225 && breakpoint_address_is_meaningful (b->owner))
4226 {
4227 if (b->inserted)
4228 internal_error (__FILE__, __LINE__,
e2e0b3e5
AC
4229 _("another breakpoint was inserted on top of "
4230 "a permanent breakpoint"));
075f6582
DJ
4231
4232 b->duplicate = 1;
4233 }
c2c6d25f
JM
4234 }
4235 }
c906108c
SS
4236}
4237
0d381245
VP
4238static void
4239check_duplicates (struct breakpoint *bpt)
4240{
4241 struct bp_location *bl = bpt->loc;
4242
4243 if (! breakpoint_address_is_meaningful (bpt))
4244 return;
4245
4246 for (; bl; bl = bl->next)
4247 check_duplicates_for (bl->address, bl->section);
4248}
4249
76897487
KB
4250static void
4251breakpoint_adjustment_warning (CORE_ADDR from_addr, CORE_ADDR to_addr,
4252 int bnum, int have_bnum)
4253{
4254 char astr1[40];
4255 char astr2[40];
4256
bb599908
PH
4257 strcpy (astr1, hex_string_custom ((unsigned long) from_addr, 8));
4258 strcpy (astr2, hex_string_custom ((unsigned long) to_addr, 8));
76897487 4259 if (have_bnum)
8a3fe4f8 4260 warning (_("Breakpoint %d address previously adjusted from %s to %s."),
76897487
KB
4261 bnum, astr1, astr2);
4262 else
8a3fe4f8 4263 warning (_("Breakpoint address adjusted from %s to %s."), astr1, astr2);
76897487
KB
4264}
4265
4266/* Adjust a breakpoint's address to account for architectural constraints
4267 on breakpoint placement. Return the adjusted address. Note: Very
4268 few targets require this kind of adjustment. For most targets,
4269 this function is simply the identity function. */
4270
4271static CORE_ADDR
88f7da05 4272adjust_breakpoint_address (CORE_ADDR bpaddr, enum bptype bptype)
76897487
KB
4273{
4274 if (!gdbarch_adjust_breakpoint_address_p (current_gdbarch))
4275 {
4276 /* Very few targets need any kind of breakpoint adjustment. */
4277 return bpaddr;
4278 }
88f7da05
KB
4279 else if (bptype == bp_watchpoint
4280 || bptype == bp_hardware_watchpoint
4281 || bptype == bp_read_watchpoint
4282 || bptype == bp_access_watchpoint
4283 || bptype == bp_catch_fork
4284 || bptype == bp_catch_vfork
4285 || bptype == bp_catch_exec)
4286 {
4287 /* Watchpoints and the various bp_catch_* eventpoints should not
4288 have their addresses modified. */
4289 return bpaddr;
4290 }
76897487
KB
4291 else
4292 {
4293 CORE_ADDR adjusted_bpaddr;
4294
4295 /* Some targets have architectural constraints on the placement
4296 of breakpoint instructions. Obtain the adjusted address. */
4297 adjusted_bpaddr = gdbarch_adjust_breakpoint_address (current_gdbarch,
4298 bpaddr);
4299
4300 /* An adjusted breakpoint address can significantly alter
4301 a user's expectations. Print a warning if an adjustment
4302 is required. */
4303 if (adjusted_bpaddr != bpaddr)
4304 breakpoint_adjustment_warning (bpaddr, adjusted_bpaddr, 0, 0);
4305
4306 return adjusted_bpaddr;
4307 }
4308}
4309
7cc221ef
DJ
4310/* Allocate a struct bp_location. */
4311
26bb91f3 4312static struct bp_location *
e049a4b5 4313allocate_bp_location (struct breakpoint *bpt, enum bptype bp_type)
7cc221ef
DJ
4314{
4315 struct bp_location *loc, *loc_p;
4316
4317 loc = xmalloc (sizeof (struct bp_location));
4318 memset (loc, 0, sizeof (*loc));
4319
e049a4b5 4320 loc->owner = bpt;
511a6cd4 4321 loc->cond = NULL;
0d381245
VP
4322 loc->shlib_disabled = 0;
4323 loc->enabled = 1;
e049a4b5
DJ
4324
4325 switch (bp_type)
4326 {
4327 case bp_breakpoint:
4328 case bp_until:
4329 case bp_finish:
4330 case bp_longjmp:
4331 case bp_longjmp_resume:
4332 case bp_step_resume:
e049a4b5
DJ
4333 case bp_watchpoint_scope:
4334 case bp_call_dummy:
4335 case bp_shlib_event:
4336 case bp_thread_event:
4337 case bp_overlay_event:
4338 case bp_catch_load:
4339 case bp_catch_unload:
4340 loc->loc_type = bp_loc_software_breakpoint;
4341 break;
4342 case bp_hardware_breakpoint:
4343 loc->loc_type = bp_loc_hardware_breakpoint;
4344 break;
4345 case bp_hardware_watchpoint:
4346 case bp_read_watchpoint:
4347 case bp_access_watchpoint:
4348 loc->loc_type = bp_loc_hardware_watchpoint;
4349 break;
4350 case bp_watchpoint:
4351 case bp_catch_fork:
4352 case bp_catch_vfork:
4353 case bp_catch_exec:
e049a4b5
DJ
4354 loc->loc_type = bp_loc_other;
4355 break;
4356 default:
e2e0b3e5 4357 internal_error (__FILE__, __LINE__, _("unknown breakpoint type"));
e049a4b5
DJ
4358 }
4359
7cc221ef
DJ
4360 return loc;
4361}
4362
fe3f5fa8
VP
4363static void free_bp_location (struct bp_location *loc)
4364{
4365 if (loc->cond)
4366 xfree (loc->cond);
74960c60
VP
4367
4368 if (loc->function_name)
4369 xfree (loc->function_name);
4370
fe3f5fa8
VP
4371 xfree (loc);
4372}
4373
0d381245
VP
4374/* Helper to set_raw_breakpoint below. Creates a breakpoint
4375 that has type BPTYPE and has no locations as yet. */
c906108c 4376
c40e75cd 4377static struct breakpoint *
0d381245 4378set_raw_breakpoint_without_location (enum bptype bptype)
c906108c 4379{
52f0bd74 4380 struct breakpoint *b, *b1;
c906108c
SS
4381
4382 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
4383 memset (b, 0, sizeof (*b));
2219d63c 4384
4d28f7a8 4385 b->type = bptype;
c906108c
SS
4386 b->language = current_language->la_language;
4387 b->input_radix = input_radix;
4388 b->thread = -1;
b5de0fa7 4389 b->enable_state = bp_enabled;
c906108c
SS
4390 b->next = 0;
4391 b->silent = 0;
4392 b->ignore_count = 0;
4393 b->commands = NULL;
818dd999 4394 b->frame_id = null_frame_id;
c906108c
SS
4395 b->dll_pathname = NULL;
4396 b->triggered_dll_pathname = NULL;
3a3e9ee3 4397 b->forked_inferior_pid = null_ptid;
c906108c 4398 b->exec_pathname = NULL;
3086aeae 4399 b->ops = NULL;
0d381245 4400 b->condition_not_parsed = 0;
c906108c
SS
4401
4402 /* Add this breakpoint to the end of the chain
4403 so that a list of breakpoints will come out in order
4404 of increasing numbers. */
4405
4406 b1 = breakpoint_chain;
4407 if (b1 == 0)
4408 breakpoint_chain = b;
4409 else
4410 {
4411 while (b1->next)
4412 b1 = b1->next;
4413 b1->next = b;
4414 }
0d381245
VP
4415 return b;
4416}
4417
4418/* Initialize loc->function_name. */
4419static void
4420set_breakpoint_location_function (struct bp_location *loc)
4421{
4422 if (loc->owner->type == bp_breakpoint
4423 || loc->owner->type == bp_hardware_breakpoint)
4424 {
4425 find_pc_partial_function (loc->address, &(loc->function_name),
4426 NULL, NULL);
4427 if (loc->function_name)
4428 loc->function_name = xstrdup (loc->function_name);
4429 }
4430}
4431
4432/* set_raw_breakpoint is a low level routine for allocating and
4433 partially initializing a breakpoint of type BPTYPE. The newly
4434 created breakpoint's address, section, source file name, and line
4435 number are provided by SAL. The newly created and partially
4436 initialized breakpoint is added to the breakpoint chain and
4437 is also returned as the value of this function.
4438
4439 It is expected that the caller will complete the initialization of
4440 the newly created breakpoint struct as well as output any status
4441 information regarding the creation of a new breakpoint. In
4442 particular, set_raw_breakpoint does NOT set the breakpoint
4443 number! Care should be taken to not allow an error to occur
4444 prior to completing the initialization of the breakpoint. If this
4445 should happen, a bogus breakpoint will be left on the chain. */
4446
4447struct breakpoint *
4448set_raw_breakpoint (struct symtab_and_line sal, enum bptype bptype)
4449{
4450 struct breakpoint *b = set_raw_breakpoint_without_location (bptype);
4451 CORE_ADDR adjusted_address;
4452
4453 /* Adjust the breakpoint's address prior to allocating a location.
4454 Once we call allocate_bp_location(), that mostly uninitialized
4455 location will be placed on the location chain. Adjustment of the
8defab1a 4456 breakpoint may cause target_read_memory() to be called and we do
0d381245
VP
4457 not want its scan of the location chain to find a breakpoint and
4458 location that's only been partially initialized. */
4459 adjusted_address = adjust_breakpoint_address (sal.pc, bptype);
4460
4461 b->loc = allocate_bp_location (b, bptype);
4462 b->loc->requested_address = sal.pc;
4463 b->loc->address = adjusted_address;
4464
4465 if (sal.symtab == NULL)
4466 b->source_file = NULL;
4467 else
4468 b->source_file = savestring (sal.symtab->filename,
4469 strlen (sal.symtab->filename));
4470 b->loc->section = sal.section;
4471 b->line_number = sal.line;
4472
4473 set_breakpoint_location_function (b->loc);
c906108c 4474
c906108c
SS
4475 breakpoints_changed ();
4476
4477 return b;
4478}
4479
c2c6d25f
JM
4480
4481/* Note that the breakpoint object B describes a permanent breakpoint
4482 instruction, hard-wired into the inferior's code. */
4483void
4484make_breakpoint_permanent (struct breakpoint *b)
4485{
0d381245 4486 struct bp_location *bl;
b5de0fa7 4487 b->enable_state = bp_permanent;
c2c6d25f 4488
0d381245
VP
4489 /* By definition, permanent breakpoints are already present in the code.
4490 Mark all locations as inserted. For now, make_breakpoint_permanent
4491 is called in just one place, so it's hard to say if it's reasonable
4492 to have permanent breakpoint with multiple locations or not,
4493 but it's easy to implmement. */
4494 for (bl = b->loc; bl; bl = bl->next)
4495 bl->inserted = 1;
c2c6d25f
JM
4496}
4497
1900040c
MS
4498static struct breakpoint *
4499create_internal_breakpoint (CORE_ADDR address, enum bptype type)
4500{
4501 static int internal_breakpoint_number = -1;
4502 struct symtab_and_line sal;
4503 struct breakpoint *b;
4504
fe39c653 4505 init_sal (&sal); /* initialize to zeroes */
1900040c
MS
4506
4507 sal.pc = address;
4508 sal.section = find_pc_overlay (sal.pc);
4509
4510 b = set_raw_breakpoint (sal, type);
4511 b->number = internal_breakpoint_number--;
4512 b->disposition = disp_donttouch;
4513
4514 return b;
4515}
4516
c906108c
SS
4517
4518static void
fba45db2 4519create_longjmp_breakpoint (char *func_name)
c906108c 4520{
1900040c 4521 struct minimal_symbol *m;
c906108c 4522
611c83ae
PA
4523 if ((m = lookup_minimal_symbol_text (func_name, NULL)) == NULL)
4524 return;
4525 set_momentary_breakpoint_at_pc (SYMBOL_VALUE_ADDRESS (m), bp_longjmp);
b60e7edf 4526 update_global_location_list (1);
c906108c
SS
4527}
4528
53a5351d
JM
4529/* Call this routine when stepping and nexting to enable a breakpoint
4530 if we do a longjmp(). When we hit that breakpoint, call
c906108c
SS
4531 set_longjmp_resume_breakpoint() to figure out where we are going. */
4532
4533void
611c83ae 4534set_longjmp_breakpoint (void)
c906108c 4535{
611c83ae 4536 if (gdbarch_get_longjmp_target_p (current_gdbarch))
c5aa993b 4537 {
611c83ae
PA
4538 create_longjmp_breakpoint ("longjmp");
4539 create_longjmp_breakpoint ("_longjmp");
4540 create_longjmp_breakpoint ("siglongjmp");
4541 create_longjmp_breakpoint ("_siglongjmp");
c5aa993b 4542 }
c906108c
SS
4543}
4544
611c83ae 4545/* Delete all longjmp breakpoints from THREAD. */
c906108c 4546void
611c83ae 4547delete_longjmp_breakpoint (int thread)
c906108c 4548{
611c83ae 4549 struct breakpoint *b, *temp;
c906108c 4550
611c83ae
PA
4551 ALL_BREAKPOINTS_SAFE (b, temp)
4552 if (b->type == bp_longjmp)
4553 {
4554 if (b->thread == thread)
4555 delete_breakpoint (b);
4556 }
c906108c
SS
4557}
4558
1900040c 4559static void
25db0f1b 4560create_overlay_event_breakpoint_1 (char *func_name, struct objfile *objfile)
1900040c
MS
4561{
4562 struct breakpoint *b;
4563 struct minimal_symbol *m;
4564
25db0f1b 4565 if ((m = lookup_minimal_symbol_text (func_name, objfile)) == NULL)
1900040c
MS
4566 return;
4567
4568 b = create_internal_breakpoint (SYMBOL_VALUE_ADDRESS (m),
4569 bp_overlay_event);
4570 b->addr_string = xstrdup (func_name);
4571
4572 if (overlay_debugging == ovly_auto)
c02f5703
MS
4573 {
4574 b->enable_state = bp_enabled;
4575 overlay_events_enabled = 1;
4576 }
1900040c 4577 else
c02f5703
MS
4578 {
4579 b->enable_state = bp_disabled;
4580 overlay_events_enabled = 0;
4581 }
b60e7edf 4582 update_global_location_list (1);
1900040c
MS
4583}
4584
25db0f1b
UW
4585static void
4586create_overlay_event_breakpoint (char *func_name)
4587{
4588 struct objfile *objfile;
4589 ALL_OBJFILES (objfile)
4590 create_overlay_event_breakpoint_1 (func_name, objfile);
4591}
4592
1900040c
MS
4593void
4594enable_overlay_breakpoints (void)
4595{
52f0bd74 4596 struct breakpoint *b;
1900040c
MS
4597
4598 ALL_BREAKPOINTS (b)
4599 if (b->type == bp_overlay_event)
4600 {
4601 b->enable_state = bp_enabled;
b60e7edf 4602 update_global_location_list (1);
c02f5703 4603 overlay_events_enabled = 1;
1900040c
MS
4604 }
4605}
4606
4607void
4608disable_overlay_breakpoints (void)
4609{
52f0bd74 4610 struct breakpoint *b;
1900040c
MS
4611
4612 ALL_BREAKPOINTS (b)
4613 if (b->type == bp_overlay_event)
4614 {
4615 b->enable_state = bp_disabled;
b60e7edf 4616 update_global_location_list (0);
c02f5703 4617 overlay_events_enabled = 0;
1900040c
MS
4618 }
4619}
4620
c4093a6a 4621struct breakpoint *
fba45db2 4622create_thread_event_breakpoint (CORE_ADDR address)
c4093a6a
JM
4623{
4624 struct breakpoint *b;
c4093a6a 4625
1900040c 4626 b = create_internal_breakpoint (address, bp_thread_event);
c4093a6a 4627
b5de0fa7 4628 b->enable_state = bp_enabled;
c4093a6a 4629 /* addr_string has to be used or breakpoint_re_set will delete me. */
b435e160 4630 b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
c4093a6a 4631
b60e7edf 4632 update_global_location_list_nothrow (1);
74960c60 4633
c4093a6a
JM
4634 return b;
4635}
4636
4637void
4638remove_thread_event_breakpoints (void)
4639{
4640 struct breakpoint *b, *temp;
4641
4642 ALL_BREAKPOINTS_SAFE (b, temp)
4643 if (b->type == bp_thread_event)
4644 delete_breakpoint (b);
4645}
4646
0101ce28
JJ
4647struct captured_parse_breakpoint_args
4648 {
4649 char **arg_p;
4650 struct symtabs_and_lines *sals_p;
4651 char ***addr_string_p;
4652 int *not_found_ptr;
4653 };
4654
4655struct lang_and_radix
4656 {
4657 enum language lang;
4658 int radix;
4659 };
4660
0101ce28 4661
cae688ec
JJ
4662void
4663remove_solib_event_breakpoints (void)
4664{
4665 struct breakpoint *b, *temp;
4666
4667 ALL_BREAKPOINTS_SAFE (b, temp)
4668 if (b->type == bp_shlib_event)
4669 delete_breakpoint (b);
4670}
4671
4672struct breakpoint *
4673create_solib_event_breakpoint (CORE_ADDR address)
4674{
4675 struct breakpoint *b;
4676
4677 b = create_internal_breakpoint (address, bp_shlib_event);
b60e7edf 4678 update_global_location_list_nothrow (1);
cae688ec
JJ
4679 return b;
4680}
4681
4682/* Disable any breakpoints that are on code in shared libraries. Only
4683 apply to enabled breakpoints, disabled ones can just stay disabled. */
4684
4685void
cb851954 4686disable_breakpoints_in_shlibs (void)
cae688ec 4687{
0d381245 4688 struct bp_location *loc;
cae688ec
JJ
4689 int disabled_shlib_breaks = 0;
4690
0d381245 4691 ALL_BP_LOCATIONS (loc)
cae688ec 4692 {
0d381245
VP
4693 struct breakpoint *b = loc->owner;
4694 /* We apply the check to all breakpoints, including disabled
4695 for those with loc->duplicate set. This is so that when breakpoint
4696 becomes enabled, or the duplicate is removed, gdb will try to insert
4697 all breakpoints. If we don't set shlib_disabled here, we'll try
4698 to insert those breakpoints and fail. */
a77053c2 4699 if (((b->type == bp_breakpoint) || (b->type == bp_hardware_breakpoint))
0d381245 4700 && !loc->shlib_disabled
a77053c2 4701#ifdef PC_SOLIB
0d381245 4702 && PC_SOLIB (loc->address)
a77053c2 4703#else
0d381245 4704 && solib_address (loc->address)
a77053c2
MK
4705#endif
4706 )
0d381245
VP
4707 {
4708 loc->shlib_disabled = 1;
4709 }
cae688ec
JJ
4710 }
4711}
4712
84acb35a
JJ
4713/* Disable any breakpoints that are in in an unloaded shared library. Only
4714 apply to enabled breakpoints, disabled ones can just stay disabled. */
4715
75149521 4716static void
84acb35a
JJ
4717disable_breakpoints_in_unloaded_shlib (struct so_list *solib)
4718{
0d381245 4719 struct bp_location *loc;
84acb35a
JJ
4720 int disabled_shlib_breaks = 0;
4721
0d381245 4722 ALL_BP_LOCATIONS (loc)
84acb35a 4723 {
0d381245
VP
4724 struct breakpoint *b = loc->owner;
4725 if ((loc->loc_type == bp_loc_hardware_breakpoint
4726 || loc->loc_type == bp_loc_software_breakpoint)
4727 && !loc->shlib_disabled)
84acb35a 4728 {
a77053c2 4729#ifdef PC_SOLIB
0d381245 4730 char *so_name = PC_SOLIB (loc->address);
a77053c2 4731#else
0d381245 4732 char *so_name = solib_address (loc->address);
a77053c2
MK
4733#endif
4734 if (so_name && !strcmp (so_name, solib->so_name))
84acb35a 4735 {
0d381245 4736 loc->shlib_disabled = 1;
84acb35a
JJ
4737 /* At this point, we cannot rely on remove_breakpoint
4738 succeeding so we must mark the breakpoint as not inserted
4739 to prevent future errors occurring in remove_breakpoints. */
0d381245 4740 loc->inserted = 0;
84acb35a
JJ
4741 if (!disabled_shlib_breaks)
4742 {
4743 target_terminal_ours_for_output ();
8a3fe4f8 4744 warning (_("Temporarily disabling breakpoints for unloaded shared library \"%s\""),
84acb35a
JJ
4745 so_name);
4746 }
4747 disabled_shlib_breaks = 1;
4748 }
4749 }
4750 }
84acb35a
JJ
4751}
4752
c906108c 4753static void
fba45db2
KB
4754create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
4755 enum bptype bp_kind)
c906108c 4756{
c5aa993b
JM
4757 struct symtab_and_line sal;
4758 struct breakpoint *b;
4759 int thread = -1; /* All threads. */
4760
fe39c653 4761 init_sal (&sal);
c906108c
SS
4762 sal.pc = 0;
4763 sal.symtab = NULL;
4764 sal.line = 0;
c5aa993b 4765
4d28f7a8 4766 b = set_raw_breakpoint (sal, bp_kind);
c906108c
SS
4767 set_breakpoint_count (breakpoint_count + 1);
4768 b->number = breakpoint_count;
53a5351d
JM
4769 b->cond_string = (cond_string == NULL) ?
4770 NULL : savestring (cond_string, strlen (cond_string));
c906108c
SS
4771 b->thread = thread;
4772 b->addr_string = NULL;
b5de0fa7
EZ
4773 b->enable_state = bp_enabled;
4774 b->disposition = tempflag ? disp_del : disp_donttouch;
3a3e9ee3 4775 b->forked_inferior_pid = null_ptid;
b60e7edf 4776 update_global_location_list (1);
74960c60 4777
c5aa993b 4778
c906108c
SS
4779 mention (b);
4780}
4781
9b70b993 4782static void
fba45db2 4783create_fork_event_catchpoint (int tempflag, char *cond_string)
c906108c
SS
4784{
4785 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
4786}
c5aa993b 4787
9b70b993 4788static void
fba45db2 4789create_vfork_event_catchpoint (int tempflag, char *cond_string)
c906108c
SS
4790{
4791 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
4792}
4793
9b70b993 4794static void
fba45db2 4795create_exec_event_catchpoint (int tempflag, char *cond_string)
c906108c 4796{
c5aa993b
JM
4797 struct symtab_and_line sal;
4798 struct breakpoint *b;
4799 int thread = -1; /* All threads. */
c906108c 4800
fe39c653 4801 init_sal (&sal);
c906108c
SS
4802 sal.pc = 0;
4803 sal.symtab = NULL;
4804 sal.line = 0;
4805
4d28f7a8 4806 b = set_raw_breakpoint (sal, bp_catch_exec);
c906108c
SS
4807 set_breakpoint_count (breakpoint_count + 1);
4808 b->number = breakpoint_count;
53a5351d
JM
4809 b->cond_string = (cond_string == NULL) ?
4810 NULL : savestring (cond_string, strlen (cond_string));
c906108c
SS
4811 b->thread = thread;
4812 b->addr_string = NULL;
b5de0fa7
EZ
4813 b->enable_state = bp_enabled;
4814 b->disposition = tempflag ? disp_del : disp_donttouch;
b60e7edf 4815 update_global_location_list (1);
c906108c 4816
c906108c
SS
4817 mention (b);
4818}
4819
4820static int
fba45db2 4821hw_breakpoint_used_count (void)
c906108c 4822{
52f0bd74 4823 struct breakpoint *b;
c906108c
SS
4824 int i = 0;
4825
4826 ALL_BREAKPOINTS (b)
c5aa993b 4827 {
d6b74ac4 4828 if (b->type == bp_hardware_breakpoint && breakpoint_enabled (b))
c5aa993b
JM
4829 i++;
4830 }
c906108c
SS
4831
4832 return i;
4833}
4834
4835static int
fba45db2 4836hw_watchpoint_used_count (enum bptype type, int *other_type_used)
c906108c 4837{
52f0bd74 4838 struct breakpoint *b;
c906108c
SS
4839 int i = 0;
4840
4841 *other_type_used = 0;
4842 ALL_BREAKPOINTS (b)
c5aa993b 4843 {
468d015d 4844 if (breakpoint_enabled (b))
c5aa993b
JM
4845 {
4846 if (b->type == type)
4847 i++;
4848 else if ((b->type == bp_hardware_watchpoint ||
4849 b->type == bp_read_watchpoint ||
468d015d 4850 b->type == bp_access_watchpoint))
c5aa993b
JM
4851 *other_type_used = 1;
4852 }
4853 }
c906108c
SS
4854 return i;
4855}
4856
c906108c 4857void
fba45db2 4858disable_watchpoints_before_interactive_call_start (void)
c906108c 4859{
c5aa993b 4860 struct breakpoint *b;
c906108c
SS
4861
4862 ALL_BREAKPOINTS (b)
c5aa993b
JM
4863 {
4864 if (((b->type == bp_watchpoint)
4865 || (b->type == bp_hardware_watchpoint)
4866 || (b->type == bp_read_watchpoint)
dfdfb3ca 4867 || (b->type == bp_access_watchpoint))
468d015d 4868 && breakpoint_enabled (b))
c5aa993b 4869 {
b5de0fa7 4870 b->enable_state = bp_call_disabled;
b60e7edf 4871 update_global_location_list (0);
c5aa993b
JM
4872 }
4873 }
c906108c
SS
4874}
4875
4876void
fba45db2 4877enable_watchpoints_after_interactive_call_stop (void)
c906108c 4878{
c5aa993b 4879 struct breakpoint *b;
c906108c
SS
4880
4881 ALL_BREAKPOINTS (b)
c5aa993b
JM
4882 {
4883 if (((b->type == bp_watchpoint)
4884 || (b->type == bp_hardware_watchpoint)
4885 || (b->type == bp_read_watchpoint)
dfdfb3ca 4886 || (b->type == bp_access_watchpoint))
b5de0fa7 4887 && (b->enable_state == bp_call_disabled))
c5aa993b 4888 {
b5de0fa7 4889 b->enable_state = bp_enabled;
b60e7edf 4890 update_global_location_list (1);
c5aa993b
JM
4891 }
4892 }
c906108c
SS
4893}
4894
4895
4896/* Set a breakpoint that will evaporate an end of command
4897 at address specified by SAL.
4898 Restrict it to frame FRAME if FRAME is nonzero. */
4899
4900struct breakpoint *
818dd999 4901set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id,
fba45db2 4902 enum bptype type)
c906108c 4903{
52f0bd74 4904 struct breakpoint *b;
4d28f7a8 4905 b = set_raw_breakpoint (sal, type);
b5de0fa7
EZ
4906 b->enable_state = bp_enabled;
4907 b->disposition = disp_donttouch;
818dd999 4908 b->frame_id = frame_id;
c906108c
SS
4909
4910 /* If we're debugging a multi-threaded program, then we
4911 want momentary breakpoints to be active in only a
4912 single thread of control. */
39f77062
KB
4913 if (in_thread_list (inferior_ptid))
4914 b->thread = pid_to_thread_id (inferior_ptid);
c906108c 4915
b60e7edf 4916 update_global_location_list_nothrow (1);
74960c60 4917
c906108c
SS
4918 return b;
4919}
611c83ae
PA
4920
4921struct breakpoint *
4922set_momentary_breakpoint_at_pc (CORE_ADDR pc, enum bptype type)
4923{
4924 struct symtab_and_line sal;
4925
4926 sal = find_pc_line (pc, 0);
4927 sal.pc = pc;
4928 sal.section = find_pc_overlay (pc);
4929 sal.explicit_pc = 1;
4930
4931 return set_momentary_breakpoint (sal, null_frame_id, type);
4932}
c906108c 4933\f
c5aa993b 4934
c906108c
SS
4935/* Tell the user we have just set a breakpoint B. */
4936
4937static void
fba45db2 4938mention (struct breakpoint *b)
c906108c
SS
4939{
4940 int say_where = 0;
3b31d625 4941 struct cleanup *old_chain, *ui_out_chain;
8b93c638
JM
4942 struct ui_stream *stb;
4943
4944 stb = ui_out_stream_new (uiout);
b02eeafb 4945 old_chain = make_cleanup_ui_out_stream_delete (stb);
c906108c 4946
9a4105ab
AC
4947 /* FIXME: This is misplaced; mention() is called by things (like
4948 hitting a watchpoint) other than breakpoint creation. It should
4949 be possible to clean this up and at the same time replace the
7f4b89d1 4950 random calls to breakpoint_changed with this hook. */
383f836e 4951 observer_notify_breakpoint_created (b->number);
c906108c 4952
3086aeae
DJ
4953 if (b->ops != NULL && b->ops->print_mention != NULL)
4954 b->ops->print_mention (b);
4955 else
4956 switch (b->type)
4957 {
4958 case bp_none:
a3f17187 4959 printf_filtered (_("(apparently deleted?) Eventpoint %d: "), b->number);
3086aeae
DJ
4960 break;
4961 case bp_watchpoint:
4962 ui_out_text (uiout, "Watchpoint ");
4963 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4964 ui_out_field_int (uiout, "number", b->number);
4965 ui_out_text (uiout, ": ");
4966 print_expression (b->exp, stb->stream);
4967 ui_out_field_stream (uiout, "exp", stb);
4968 do_cleanups (ui_out_chain);
4969 break;
4970 case bp_hardware_watchpoint:
4971 ui_out_text (uiout, "Hardware watchpoint ");
4972 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4973 ui_out_field_int (uiout, "number", b->number);
4974 ui_out_text (uiout, ": ");
4975 print_expression (b->exp, stb->stream);
4976 ui_out_field_stream (uiout, "exp", stb);
4977 do_cleanups (ui_out_chain);
4978 break;
4979 case bp_read_watchpoint:
4980 ui_out_text (uiout, "Hardware read watchpoint ");
4981 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
4982 ui_out_field_int (uiout, "number", b->number);
4983 ui_out_text (uiout, ": ");
4984 print_expression (b->exp, stb->stream);
4985 ui_out_field_stream (uiout, "exp", stb);
4986 do_cleanups (ui_out_chain);
4987 break;
4988 case bp_access_watchpoint:
4989 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
4990 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
4991 ui_out_field_int (uiout, "number", b->number);
4992 ui_out_text (uiout, ": ");
4993 print_expression (b->exp, stb->stream);
4994 ui_out_field_stream (uiout, "exp", stb);
4995 do_cleanups (ui_out_chain);
4996 break;
4997 case bp_breakpoint:
4998 if (ui_out_is_mi_like_p (uiout))
4999 {
5000 say_where = 0;
5001 break;
5002 }
2cec12e5
AR
5003 if (b->disposition == disp_del)
5004 printf_filtered (_("Temporary breakpoint"));
5005 else
5006 printf_filtered (_("Breakpoint"));
5007 printf_filtered (_(" %d"), b->number);
3086aeae
DJ
5008 say_where = 1;
5009 break;
5010 case bp_hardware_breakpoint:
5011 if (ui_out_is_mi_like_p (uiout))
5012 {
5013 say_where = 0;
5014 break;
5015 }
a3f17187 5016 printf_filtered (_("Hardware assisted breakpoint %d"), b->number);
3086aeae
DJ
5017 say_where = 1;
5018 break;
5019 case bp_catch_load:
5020 case bp_catch_unload:
a3f17187 5021 printf_filtered (_("Catchpoint %d (%s %s)"),
3086aeae
DJ
5022 b->number,
5023 (b->type == bp_catch_load) ? "load" : "unload",
5024 (b->dll_pathname != NULL) ?
5025 b->dll_pathname : "<any library>");
5026 break;
5027 case bp_catch_fork:
5028 case bp_catch_vfork:
a3f17187 5029 printf_filtered (_("Catchpoint %d (%s)"),
3086aeae
DJ
5030 b->number,
5031 (b->type == bp_catch_fork) ? "fork" : "vfork");
5032 break;
5033 case bp_catch_exec:
a3f17187 5034 printf_filtered (_("Catchpoint %d (exec)"),
3086aeae
DJ
5035 b->number);
5036 break;
3086aeae
DJ
5037
5038 case bp_until:
5039 case bp_finish:
5040 case bp_longjmp:
5041 case bp_longjmp_resume:
5042 case bp_step_resume:
3086aeae
DJ
5043 case bp_call_dummy:
5044 case bp_watchpoint_scope:
5045 case bp_shlib_event:
5046 case bp_thread_event:
5047 case bp_overlay_event:
5048 break;
5049 }
c906108c 5050
c906108c
SS
5051 if (say_where)
5052 {
a3f17187
AC
5053 /* i18n: cagney/2005-02-11: Below needs to be merged into a
5054 single string. */
0d381245 5055 if (b->loc == NULL)
c906108c 5056 {
a3f17187 5057 printf_filtered (_(" (%s) pending."), b->addr_string);
0101ce28
JJ
5058 }
5059 else
5060 {
5061 if (addressprint || b->source_file == NULL)
5062 {
5063 printf_filtered (" at ");
ed49a04f 5064 fputs_filtered (paddress (b->loc->address), gdb_stdout);
0101ce28
JJ
5065 }
5066 if (b->source_file)
5067 printf_filtered (": file %s, line %d.",
5068 b->source_file, b->line_number);
0d381245
VP
5069
5070 if (b->loc->next)
5071 {
5072 struct bp_location *loc = b->loc;
5073 int n = 0;
5074 for (; loc; loc = loc->next)
5075 ++n;
5076 printf_filtered (" (%d locations)", n);
5077 }
5078
c906108c 5079 }
c906108c 5080 }
8b93c638 5081 do_cleanups (old_chain);
9dc5e2a9 5082 if (ui_out_is_mi_like_p (uiout))
fb40c209 5083 return;
c906108c
SS
5084 printf_filtered ("\n");
5085}
c906108c 5086\f
c5aa993b 5087
0d381245
VP
5088static struct bp_location *
5089add_location_to_breakpoint (struct breakpoint *b, enum bptype bptype,
5090 const struct symtab_and_line *sal)
5091{
5092 struct bp_location *loc, **tmp;
5093
5094 loc = allocate_bp_location (b, bptype);
5095 for (tmp = &(b->loc); *tmp != NULL; tmp = &((*tmp)->next))
5096 ;
5097 *tmp = loc;
5098 loc->requested_address = sal->pc;
5099 loc->address = adjust_breakpoint_address (loc->requested_address,
5100 bptype);
5101 loc->section = sal->section;
5102
5103 set_breakpoint_location_function (loc);
5104 return loc;
5105}
514f746b
AR
5106\f
5107
5108/* Return 1 if LOC is pointing to a permanent breakpoint,
5109 return 0 otherwise. */
5110
5111static int
5112bp_loc_is_permanent (struct bp_location *loc)
5113{
5114 int len;
5115 CORE_ADDR addr;
5116 const gdb_byte *brk;
5117 gdb_byte *target_mem;
5118
5119 gdb_assert (loc != NULL);
5120
5121 addr = loc->address;
5122 brk = gdbarch_breakpoint_from_pc (current_gdbarch, &addr, &len);
5123
5124 target_mem = alloca (len);
5125
5126 if (target_read_memory (loc->address, target_mem, len) == 0
5127 && memcmp (target_mem, brk, len) == 0)
5128 return 1;
5129
5130 return 0;
5131}
5132
5133
c3f6f71d 5134
018d34a4
VP
5135/* Create a breakpoint with SAL as location. Use ADDR_STRING
5136 as textual description of the location, and COND_STRING
db107f19 5137 as condition expression. */
018d34a4
VP
5138
5139static void
0d381245 5140create_breakpoint (struct symtabs_and_lines sals, char *addr_string,
018d34a4
VP
5141 char *cond_string,
5142 enum bptype type, enum bpdisp disposition,
604133b5
AR
5143 int thread, int ignore_count,
5144 struct breakpoint_ops *ops, int from_tty)
018d34a4 5145{
0d381245
VP
5146 struct breakpoint *b = NULL;
5147 int i;
018d34a4
VP
5148
5149 if (type == bp_hardware_breakpoint)
5150 {
5151 int i = hw_breakpoint_used_count ();
5152 int target_resources_ok =
5153 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
5154 i + 1, 0);
5155 if (target_resources_ok == 0)
5156 error (_("No hardware breakpoint support in the target."));
5157 else if (target_resources_ok < 0)
5158 error (_("Hardware breakpoints used exceeds limit."));
5159 }
5160
0d381245
VP
5161 for (i = 0; i < sals.nelts; ++i)
5162 {
5163 struct symtab_and_line sal = sals.sals[i];
5164 struct bp_location *loc;
5165
5166 if (from_tty)
5167 describe_other_breakpoints (sal.pc, sal.section, thread);
5168
5169 if (i == 0)
5170 {
5171 b = set_raw_breakpoint (sal, type);
5172 set_breakpoint_count (breakpoint_count + 1);
5173 b->number = breakpoint_count;
5174 b->thread = thread;
018d34a4 5175
0d381245
VP
5176 b->cond_string = cond_string;
5177 b->ignore_count = ignore_count;
5178 b->enable_state = bp_enabled;
5179 b->disposition = disposition;
018d34a4 5180
0d381245
VP
5181 loc = b->loc;
5182 }
5183 else
018d34a4 5184 {
0d381245
VP
5185 loc = add_location_to_breakpoint (b, type, &sal);
5186 }
5187
514f746b
AR
5188 if (bp_loc_is_permanent (loc))
5189 make_breakpoint_permanent (b);
5190
0d381245
VP
5191 if (b->cond_string)
5192 {
5193 char *arg = b->cond_string;
d32a6982 5194 loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
0d381245 5195 if (*arg)
db107f19 5196 error (_("Garbage %s follows condition"), arg);
018d34a4 5197 }
0d381245 5198 }
018d34a4
VP
5199
5200 if (addr_string)
5201 b->addr_string = addr_string;
5202 else
5203 /* addr_string has to be used or breakpoint_re_set will delete
5204 me. */
5205 b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
5206
604133b5 5207 b->ops = ops;
018d34a4
VP
5208 mention (b);
5209}
5210
ed0616c6
VP
5211/* Remove element at INDEX_TO_REMOVE from SAL, shifting other
5212 elements to fill the void space. */
5213static void remove_sal (struct symtabs_and_lines *sal, int index_to_remove)
5214{
5215 int i = index_to_remove+1;
5216 int last_index = sal->nelts-1;
5217
5218 for (;i <= last_index; ++i)
5219 sal->sals[i-1] = sal->sals[i];
5220
5221 --(sal->nelts);
5222}
5223
5224/* If appropriate, obtains all sals that correspond
5225 to the same file and line as SAL. This is done
5226 only if SAL does not have explicit PC and has
5227 line and file information. If we got just a single
5228 expanded sal, return the original.
5229
5230 Otherwise, if SAL.explicit_line is not set, filter out
5231 all sals for which the name of enclosing function
5232 is different from SAL. This makes sure that if we have
5233 breakpoint originally set in template instantiation, say
5234 foo<int>(), we won't expand SAL to locations at the same
5235 line in all existing instantiations of 'foo'.
5236
5237*/
5238struct symtabs_and_lines
5239expand_line_sal_maybe (struct symtab_and_line sal)
5240{
5241 struct symtabs_and_lines expanded;
5242 CORE_ADDR original_pc = sal.pc;
5243 char *original_function = NULL;
5244 int found;
5245 int i;
5246
5247 /* If we have explicit pc, don't expand.
5248 If we have no line number, we can't expand. */
5249 if (sal.explicit_pc || sal.line == 0 || sal.symtab == NULL)
5250 {
5251 expanded.nelts = 1;
5252 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
5253 expanded.sals[0] = sal;
5254 return expanded;
5255 }
5256
5257 sal.pc = 0;
5258 find_pc_partial_function (original_pc, &original_function, NULL, NULL);
5259
5260 expanded = expand_line_sal (sal);
5261 if (expanded.nelts == 1)
5262 {
5263 /* We had one sal, we got one sal. Without futher
5264 processing, just return the original sal. */
5265 xfree (expanded.sals);
5266 expanded.nelts = 1;
5267 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
5268 sal.pc = original_pc;
5269 expanded.sals[0] = sal;
5270 return expanded;
5271 }
5272
5273 if (!sal.explicit_line)
5274 {
5275 CORE_ADDR func_addr, func_end;
5276 for (i = 0; i < expanded.nelts; ++i)
5277 {
5278 CORE_ADDR pc = expanded.sals[i].pc;
5279 char *this_function;
5280 if (find_pc_partial_function (pc, &this_function,
5281 &func_addr, &func_end))
5282 {
5283 if (this_function &&
5284 strcmp (this_function, original_function) != 0)
5285 {
5286 remove_sal (&expanded, i);
5287 --i;
5288 }
5289 else if (func_addr == pc)
5290 {
5291 /* We're at beginning of a function, and should
5292 skip prologue. */
5293 struct symbol *sym = find_pc_function (pc);
5294 if (sym)
5295 expanded.sals[i] = find_function_start_sal (sym, 1);
5296 else
5297 expanded.sals[i].pc
5298 = gdbarch_skip_prologue (current_gdbarch, pc);
5299 }
5300 }
5301 }
5302 }
5303
5304
5305 if (expanded.nelts <= 1)
5306 {
5307 /* This is un ugly workaround. If we get zero
5308 expanded sals then something is really wrong.
5309 Fix that by returnign the original sal. */
5310 xfree (expanded.sals);
5311 expanded.nelts = 1;
5312 expanded.sals = xmalloc (sizeof (struct symtab_and_line));
5313 sal.pc = original_pc;
5314 expanded.sals[0] = sal;
5315 return expanded;
5316 }
5317
5318 if (original_pc)
5319 {
5320 found = 0;
5321 for (i = 0; i < expanded.nelts; ++i)
5322 if (expanded.sals[i].pc == original_pc)
5323 {
5324 found = 1;
5325 break;
5326 }
5327 gdb_assert (found);
5328 }
5329
5330 return expanded;
5331}
5332
018d34a4
VP
5333/* Add SALS.nelts breakpoints to the breakpoint table. For each
5334 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i]
5335 value. COND_STRING, if not NULL, specified the condition to be
5336 used for all breakpoints. Essentially the only case where
5337 SALS.nelts is not 1 is when we set a breakpoint on an overloaded
5338 function. In that case, it's still not possible to specify
5339 separate conditions for different overloaded functions, so
5340 we take just a single condition string.
5341
c3f6f71d 5342 NOTE: If the function succeeds, the caller is expected to cleanup
018d34a4 5343 the arrays ADDR_STRING, COND_STRING, and SALS (but not the
c3f6f71d
JM
5344 array contents). If the function fails (error() is called), the
5345 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
5346 COND and SALS arrays and each of those arrays contents. */
c906108c
SS
5347
5348static void
c3f6f71d 5349create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
018d34a4 5350 char *cond_string,
c3f6f71d 5351 enum bptype type, enum bpdisp disposition,
604133b5
AR
5352 int thread, int ignore_count,
5353 struct breakpoint_ops *ops, int from_tty)
c906108c 5354{
018d34a4
VP
5355 int i;
5356 for (i = 0; i < sals.nelts; ++i)
c3f6f71d 5357 {
ed0616c6
VP
5358 struct symtabs_and_lines expanded =
5359 expand_line_sal_maybe (sals.sals[i]);
0d381245 5360
ed0616c6 5361 create_breakpoint (expanded, addr_string[i],
018d34a4 5362 cond_string, type, disposition,
604133b5 5363 thread, ignore_count, ops, from_tty);
c3f6f71d 5364 }
74960c60 5365
b60e7edf 5366 update_global_location_list (1);
c3f6f71d 5367}
c906108c 5368
c3f6f71d
JM
5369/* Parse ARG which is assumed to be a SAL specification possibly
5370 followed by conditionals. On return, SALS contains an array of SAL
5371 addresses found. ADDR_STRING contains a vector of (canonical)
5372 address strings. ARG points to the end of the SAL. */
c906108c 5373
b9362cc7 5374static void
c3f6f71d
JM
5375parse_breakpoint_sals (char **address,
5376 struct symtabs_and_lines *sals,
0101ce28
JJ
5377 char ***addr_string,
5378 int *not_found_ptr)
c3f6f71d
JM
5379{
5380 char *addr_start = *address;
5381 *addr_string = NULL;
5382 /* If no arg given, or if first arg is 'if ', use the default
5383 breakpoint. */
5384 if ((*address) == NULL
5385 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
c906108c
SS
5386 {
5387 if (default_breakpoint_valid)
5388 {
c3f6f71d 5389 struct symtab_and_line sal;
fe39c653 5390 init_sal (&sal); /* initialize to zeroes */
c3f6f71d 5391 sals->sals = (struct symtab_and_line *)
c906108c
SS
5392 xmalloc (sizeof (struct symtab_and_line));
5393 sal.pc = default_breakpoint_address;
5394 sal.line = default_breakpoint_line;
5395 sal.symtab = default_breakpoint_symtab;
c5aa993b 5396 sal.section = find_pc_overlay (sal.pc);
c3f6f71d
JM
5397 sals->sals[0] = sal;
5398 sals->nelts = 1;
c906108c
SS
5399 }
5400 else
8a3fe4f8 5401 error (_("No default breakpoint address now."));
c906108c
SS
5402 }
5403 else
5404 {
c906108c 5405 /* Force almost all breakpoints to be in terms of the
c5aa993b
JM
5406 current_source_symtab (which is decode_line_1's default). This
5407 should produce the results we want almost all of the time while
1aeae86e
AF
5408 leaving default_breakpoint_* alone.
5409 ObjC: However, don't match an Objective-C method name which
5410 may have a '+' or '-' succeeded by a '[' */
0378c332 5411
c214a6fd 5412 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
0378c332 5413
c906108c 5414 if (default_breakpoint_valid
0378c332 5415 && (!cursal.symtab
1aeae86e
AF
5416 || ((strchr ("+-", (*address)[0]) != NULL)
5417 && ((*address)[1] != '['))))
c3f6f71d 5418 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
0101ce28
JJ
5419 default_breakpoint_line, addr_string,
5420 not_found_ptr);
c906108c 5421 else
0101ce28
JJ
5422 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
5423 addr_string, not_found_ptr);
c906108c 5424 }
c3f6f71d
JM
5425 /* For any SAL that didn't have a canonical string, fill one in. */
5426 if (sals->nelts > 0 && *addr_string == NULL)
5427 *addr_string = xcalloc (sals->nelts, sizeof (char **));
5428 if (addr_start != (*address))
c906108c 5429 {
c3f6f71d
JM
5430 int i;
5431 for (i = 0; i < sals->nelts; i++)
c906108c 5432 {
c3f6f71d
JM
5433 /* Add the string if not present. */
5434 if ((*addr_string)[i] == NULL)
5435 (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
c906108c
SS
5436 }
5437 }
c3f6f71d 5438}
c906108c 5439
c906108c 5440
c3f6f71d
JM
5441/* Convert each SAL into a real PC. Verify that the PC can be
5442 inserted as a breakpoint. If it can't throw an error. */
c906108c 5443
b9362cc7 5444static void
c3f6f71d
JM
5445breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
5446 char *address)
5447{
5448 int i;
5449 for (i = 0; i < sals->nelts; i++)
ee53e872 5450 resolve_sal_pc (&sals->sals[i]);
c3f6f71d
JM
5451}
5452
05ff989b 5453static void
0101ce28
JJ
5454do_captured_parse_breakpoint (struct ui_out *ui, void *data)
5455{
5456 struct captured_parse_breakpoint_args *args = data;
5457
5458 parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p,
5459 args->not_found_ptr);
0101ce28
JJ
5460}
5461
018d34a4
VP
5462/* Given TOK, a string specification of condition and thread, as
5463 accepted by the 'break' command, extract the condition
5464 string and thread number and set *COND_STRING and *THREAD.
5465 PC identifies the context at which the condition should be parsed.
5466 If no condition is found, *COND_STRING is set to NULL.
5467 If no thread is found, *THREAD is set to -1. */
5468static void
5469find_condition_and_thread (char *tok, CORE_ADDR pc,
5470 char **cond_string, int *thread)
5471{
5472 *cond_string = NULL;
5473 *thread = -1;
5474 while (tok && *tok)
5475 {
5476 char *end_tok;
5477 int toklen;
5478 char *cond_start = NULL;
5479 char *cond_end = NULL;
5480 while (*tok == ' ' || *tok == '\t')
5481 tok++;
5482
5483 end_tok = tok;
5484
5485 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5486 end_tok++;
5487
5488 toklen = end_tok - tok;
5489
5490 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5491 {
5492 tok = cond_start = end_tok + 1;
5493 parse_exp_1 (&tok, block_for_pc (pc), 0);
5494 cond_end = tok;
5495 *cond_string = savestring (cond_start,
5496 cond_end - cond_start);
5497 }
5498 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
5499 {
5500 char *tmptok;
5501
5502 tok = end_tok + 1;
5503 tmptok = tok;
5504 *thread = strtol (tok, &tok, 0);
5505 if (tok == tmptok)
5506 error (_("Junk after thread keyword."));
5507 if (!valid_thread_id (*thread))
5508 error (_("Unknown thread %d."), *thread);
5509 }
5510 else
5511 error (_("Junk at end of arguments."));
5512 }
5513}
5514
72b2ff0e
VP
5515/* Set a breakpoint. This function is shared between
5516 CLI and MI functions for setting a breakpoint.
5517 This function has two major modes of operations,
5518 selected by the PARSE_CONDITION_AND_THREAD parameter.
5519 If non-zero, the function will parse arg, extracting
5520 breakpoint location, address and thread. Otherwise,
5521 ARG is just the location of breakpoint, with condition
5522 and thread specified by the COND_STRING and THREAD
5523 parameters. */
0101ce28 5524
98deb0da 5525static void
72b2ff0e 5526break_command_really (char *arg, char *cond_string, int thread,
60c46647
VP
5527 int parse_condition_and_thread,
5528 int tempflag, int hardwareflag,
5529 int ignore_count,
5530 enum auto_boolean pending_break_support,
604133b5 5531 struct breakpoint_ops *ops,
60c46647 5532 int from_tty)
c3f6f71d 5533{
71fff37b 5534 struct gdb_exception e;
c3f6f71d 5535 struct symtabs_and_lines sals;
0101ce28 5536 struct symtab_and_line pending_sal;
0101ce28
JJ
5537 char *copy_arg;
5538 char *err_msg;
c3f6f71d
JM
5539 char *addr_start = arg;
5540 char **addr_string;
5541 struct cleanup *old_chain;
5542 struct cleanup *breakpoint_chain = NULL;
0101ce28 5543 struct captured_parse_breakpoint_args parse_args;
05ff989b 5544 int i;
0101ce28 5545 int pending = 0;
0101ce28 5546 int not_found = 0;
c3f6f71d 5547
c3f6f71d
JM
5548 sals.sals = NULL;
5549 sals.nelts = 0;
5550 addr_string = NULL;
c3f6f71d 5551
0101ce28
JJ
5552 parse_args.arg_p = &arg;
5553 parse_args.sals_p = &sals;
5554 parse_args.addr_string_p = &addr_string;
5555 parse_args.not_found_ptr = &not_found;
5556
05ff989b
AC
5557 e = catch_exception (uiout, do_captured_parse_breakpoint,
5558 &parse_args, RETURN_MASK_ALL);
0101ce28
JJ
5559
5560 /* If caller is interested in rc value from parse, set value. */
05ff989b 5561 switch (e.reason)
0101ce28 5562 {
05ff989b 5563 case RETURN_QUIT:
98deb0da 5564 throw_exception (e);
05ff989b
AC
5565 case RETURN_ERROR:
5566 switch (e.error)
0101ce28 5567 {
05ff989b 5568 case NOT_FOUND_ERROR:
0101ce28 5569
05ff989b
AC
5570 /* If pending breakpoint support is turned off, throw
5571 error. */
fa8d40ab
JJ
5572
5573 if (pending_break_support == AUTO_BOOLEAN_FALSE)
723a2275
VP
5574 throw_exception (e);
5575
5576 exception_print (gdb_stderr, e);
fa8d40ab 5577
05ff989b
AC
5578 /* If pending breakpoint support is auto query and the user
5579 selects no, then simply return the error code. */
fa8d40ab
JJ
5580 if (pending_break_support == AUTO_BOOLEAN_AUTO &&
5581 !nquery ("Make breakpoint pending on future shared library load? "))
98deb0da 5582 return;
fa8d40ab 5583
05ff989b
AC
5584 /* At this point, either the user was queried about setting
5585 a pending breakpoint and selected yes, or pending
5586 breakpoint behavior is on and thus a pending breakpoint
5587 is defaulted on behalf of the user. */
0101ce28
JJ
5588 copy_arg = xstrdup (addr_start);
5589 addr_string = &copy_arg;
5590 sals.nelts = 1;
5591 sals.sals = &pending_sal;
5592 pending_sal.pc = 0;
5593 pending = 1;
05ff989b
AC
5594 break;
5595 default:
98deb0da 5596 throw_exception (e);
0101ce28 5597 }
05ff989b
AC
5598 default:
5599 if (!sals.nelts)
98deb0da 5600 return;
0101ce28 5601 }
c3f6f71d
JM
5602
5603 /* Create a chain of things that always need to be cleaned up. */
5604 old_chain = make_cleanup (null_cleanup, 0);
5605
0101ce28
JJ
5606 if (!pending)
5607 {
5608 /* Make sure that all storage allocated to SALS gets freed. */
5609 make_cleanup (xfree, sals.sals);
5610
5611 /* Cleanup the addr_string array but not its contents. */
5612 make_cleanup (xfree, addr_string);
5613 }
c3f6f71d 5614
c3f6f71d
JM
5615 /* ----------------------------- SNIP -----------------------------
5616 Anything added to the cleanup chain beyond this point is assumed
5617 to be part of a breakpoint. If the breakpoint create succeeds
5618 then the memory is not reclaimed. */
5619 breakpoint_chain = make_cleanup (null_cleanup, 0);
5620
5621 /* Mark the contents of the addr_string for cleanup. These go on
5622 the breakpoint_chain and only occure if the breakpoint create
5623 fails. */
5624 for (i = 0; i < sals.nelts; i++)
5625 {
5626 if (addr_string[i] != NULL)
b8c9b27d 5627 make_cleanup (xfree, addr_string[i]);
c3f6f71d
JM
5628 }
5629
5630 /* Resolve all line numbers to PC's and verify that the addresses
5631 are ok for the target. */
0101ce28
JJ
5632 if (!pending)
5633 breakpoint_sals_to_pc (&sals, addr_start);
c3f6f71d
JM
5634
5635 /* Verify that condition can be parsed, before setting any
5636 breakpoints. Allocate a separate condition expression for each
5637 breakpoint. */
0101ce28 5638 if (!pending)
c3f6f71d 5639 {
2f069f6f 5640 if (parse_condition_and_thread)
72b2ff0e
VP
5641 {
5642 /* Here we only parse 'arg' to separate condition
5643 from thread number, so parsing in context of first
5644 sal is OK. When setting the breakpoint we'll
5645 re-parse it in context of each sal. */
5646 cond_string = NULL;
5647 thread = -1;
5648 find_condition_and_thread (arg, sals.sals[0].pc, &cond_string, &thread);
5649 if (cond_string)
5650 make_cleanup (xfree, cond_string);
5651 }
2f069f6f 5652 else
72b2ff0e
VP
5653 {
5654 /* Create a private copy of condition string. */
5655 if (cond_string)
5656 {
5657 cond_string = xstrdup (cond_string);
5658 make_cleanup (xfree, cond_string);
5659 }
5660 }
018d34a4 5661 create_breakpoints (sals, addr_string, cond_string,
0101ce28
JJ
5662 hardwareflag ? bp_hardware_breakpoint
5663 : bp_breakpoint,
5664 tempflag ? disp_del : disp_donttouch,
604133b5 5665 thread, ignore_count, ops, from_tty);
c906108c 5666 }
0101ce28
JJ
5667 else
5668 {
fe3f5fa8 5669 struct symtab_and_line sal = {0};
0101ce28
JJ
5670 struct breakpoint *b;
5671
0101ce28
JJ
5672 make_cleanup (xfree, copy_arg);
5673
0d381245
VP
5674 b = set_raw_breakpoint_without_location (hardwareflag
5675 ? bp_hardware_breakpoint
5676 : bp_breakpoint);
0101ce28
JJ
5677 set_breakpoint_count (breakpoint_count + 1);
5678 b->number = breakpoint_count;
72b2ff0e 5679 b->thread = -1;
018d34a4 5680 b->addr_string = addr_string[0];
72b2ff0e 5681 b->cond_string = NULL;
0101ce28 5682 b->ignore_count = ignore_count;
0101ce28 5683 b->disposition = tempflag ? disp_del : disp_donttouch;
0d381245 5684 b->condition_not_parsed = 1;
604133b5 5685 b->ops = ops;
74960c60 5686
b60e7edf 5687 update_global_location_list (1);
0101ce28
JJ
5688 mention (b);
5689 }
5690
c3f6f71d 5691 if (sals.nelts > 1)
8a3fe4f8
AC
5692 warning (_("Multiple breakpoints were set.\n"
5693 "Use the \"delete\" command to delete unwanted breakpoints."));
c3f6f71d
JM
5694 /* That's it. Discard the cleanups for data inserted into the
5695 breakpoint. */
5696 discard_cleanups (breakpoint_chain);
5697 /* But cleanup everything else. */
5698 do_cleanups (old_chain);
5699}
c906108c 5700
72b2ff0e
VP
5701/* Set a breakpoint.
5702 ARG is a string describing breakpoint address,
5703 condition, and thread.
5704 FLAG specifies if a breakpoint is hardware on,
5705 and if breakpoint is temporary, using BP_HARDWARE_FLAG
5706 and BP_TEMPFLAG. */
5707
98deb0da 5708static void
72b2ff0e 5709break_command_1 (char *arg, int flag, int from_tty)
c3f6f71d 5710{
72b2ff0e
VP
5711 int hardwareflag = flag & BP_HARDWAREFLAG;
5712 int tempflag = flag & BP_TEMPFLAG;
c3f6f71d 5713
98deb0da
VP
5714 break_command_really (arg,
5715 NULL, 0, 1 /* parse arg */,
5716 tempflag, hardwareflag,
5717 0 /* Ignore count */,
604133b5
AR
5718 pending_break_support,
5719 NULL /* breakpoint_ops */,
5720 from_tty);
c906108c
SS
5721}
5722
72b2ff0e 5723
98deb0da
VP
5724void
5725set_breakpoint (char *address, char *condition,
c3f6f71d 5726 int hardwareflag, int tempflag,
ce43223b 5727 int thread, int ignore_count,
98deb0da 5728 int pending)
c3f6f71d 5729{
98deb0da
VP
5730 break_command_really (address, condition, thread,
5731 0 /* condition and thread are valid. */,
5732 tempflag, hardwareflag,
5733 ignore_count,
5734 pending
5735 ? AUTO_BOOLEAN_TRUE : AUTO_BOOLEAN_FALSE,
604133b5 5736 NULL, 0);
c3f6f71d
JM
5737}
5738
6a048695
JB
5739/* Adjust SAL to the first instruction past the function prologue.
5740 The end of the prologue is determined using the line table from
5741 the debugging information.
5742
5743 If SAL is already past the prologue, then do nothing. */
5744
5745static void
5746skip_prologue_sal (struct symtab_and_line *sal)
5747{
5748 struct symbol *sym = find_pc_function (sal->pc);
5749 struct symtab_and_line start_sal;
5750
5751 if (sym == NULL)
5752 return;
5753
5754 start_sal = find_function_start_sal (sym, 1);
5755 if (sal->pc < start_sal.pc)
5756 *sal = start_sal;
5757}
c3f6f71d 5758
c906108c
SS
5759/* Helper function for break_command_1 and disassemble_command. */
5760
5761void
fba45db2 5762resolve_sal_pc (struct symtab_and_line *sal)
c906108c
SS
5763{
5764 CORE_ADDR pc;
5765
5766 if (sal->pc == 0 && sal->symtab != NULL)
5767 {
5768 if (!find_line_pc (sal->symtab, sal->line, &pc))
8a3fe4f8 5769 error (_("No line %d in file \"%s\"."),
c906108c
SS
5770 sal->line, sal->symtab->filename);
5771 sal->pc = pc;
6a048695
JB
5772
5773 /* If this SAL corresponds to a breakpoint inserted using
5774 a line number, then skip the function prologue if necessary. */
5775 if (sal->explicit_line)
5776 skip_prologue_sal (sal);
c906108c
SS
5777 }
5778
5779 if (sal->section == 0 && sal->symtab != NULL)
5780 {
5781 struct blockvector *bv;
c5aa993b
JM
5782 struct block *b;
5783 struct symbol *sym;
c906108c 5784
801e3a5b 5785 bv = blockvector_for_pc_sect (sal->pc, 0, &b, sal->symtab);
c906108c
SS
5786 if (bv != NULL)
5787 {
7f0df278 5788 sym = block_linkage_function (b);
c906108c
SS
5789 if (sym != NULL)
5790 {
5791 fixup_symbol_section (sym, sal->symtab->objfile);
714835d5 5792 sal->section = SYMBOL_OBJ_SECTION (sym);
c906108c
SS
5793 }
5794 else
5795 {
5796 /* It really is worthwhile to have the section, so we'll just
c5aa993b
JM
5797 have to look harder. This case can be executed if we have
5798 line numbers but no functions (as can happen in assembly
5799 source). */
c906108c 5800
c5aa993b 5801 struct minimal_symbol *msym;
c906108c
SS
5802
5803 msym = lookup_minimal_symbol_by_pc (sal->pc);
5804 if (msym)
714835d5 5805 sal->section = SYMBOL_OBJ_SECTION (msym);
c906108c
SS
5806 }
5807 }
5808 }
5809}
5810
5811void
fba45db2 5812break_command (char *arg, int from_tty)
c906108c 5813{
db107f19 5814 break_command_1 (arg, 0, from_tty);
c906108c
SS
5815}
5816
c906108c 5817void
fba45db2 5818tbreak_command (char *arg, int from_tty)
c906108c 5819{
db107f19 5820 break_command_1 (arg, BP_TEMPFLAG, from_tty);
c906108c
SS
5821}
5822
c906108c 5823static void
fba45db2 5824hbreak_command (char *arg, int from_tty)
c906108c 5825{
db107f19 5826 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
c906108c
SS
5827}
5828
5829static void
fba45db2 5830thbreak_command (char *arg, int from_tty)
c906108c 5831{
db107f19 5832 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
c906108c
SS
5833}
5834
5835static void
fba45db2 5836stop_command (char *arg, int from_tty)
c906108c 5837{
a3f17187 5838 printf_filtered (_("Specify the type of breakpoint to set.\n\
c906108c 5839Usage: stop in <function | address>\n\
a3f17187 5840 stop at <line>\n"));
c906108c
SS
5841}
5842
5843static void
fba45db2 5844stopin_command (char *arg, int from_tty)
c906108c
SS
5845{
5846 int badInput = 0;
5847
c5aa993b 5848 if (arg == (char *) NULL)
c906108c
SS
5849 badInput = 1;
5850 else if (*arg != '*')
5851 {
5852 char *argptr = arg;
5853 int hasColon = 0;
5854
53a5351d
JM
5855 /* look for a ':'. If this is a line number specification, then
5856 say it is bad, otherwise, it should be an address or
5857 function/method name */
c906108c 5858 while (*argptr && !hasColon)
c5aa993b
JM
5859 {
5860 hasColon = (*argptr == ':');
5861 argptr++;
5862 }
c906108c
SS
5863
5864 if (hasColon)
c5aa993b 5865 badInput = (*argptr != ':'); /* Not a class::method */
c906108c 5866 else
c5aa993b 5867 badInput = isdigit (*arg); /* a simple line number */
c906108c
SS
5868 }
5869
5870 if (badInput)
a3f17187 5871 printf_filtered (_("Usage: stop in <function | address>\n"));
c906108c 5872 else
db107f19 5873 break_command_1 (arg, 0, from_tty);
c906108c
SS
5874}
5875
5876static void
fba45db2 5877stopat_command (char *arg, int from_tty)
c906108c
SS
5878{
5879 int badInput = 0;
5880
c5aa993b 5881 if (arg == (char *) NULL || *arg == '*') /* no line number */
c906108c
SS
5882 badInput = 1;
5883 else
5884 {
5885 char *argptr = arg;
5886 int hasColon = 0;
5887
5888 /* look for a ':'. If there is a '::' then get out, otherwise
c5aa993b 5889 it is probably a line number. */
c906108c 5890 while (*argptr && !hasColon)
c5aa993b
JM
5891 {
5892 hasColon = (*argptr == ':');
5893 argptr++;
5894 }
c906108c
SS
5895
5896 if (hasColon)
c5aa993b 5897 badInput = (*argptr == ':'); /* we have class::method */
c906108c 5898 else
c5aa993b 5899 badInput = !isdigit (*arg); /* not a line number */
c906108c
SS
5900 }
5901
5902 if (badInput)
a3f17187 5903 printf_filtered (_("Usage: stop at <line>\n"));
c906108c 5904 else
db107f19 5905 break_command_1 (arg, 0, from_tty);
c906108c
SS
5906}
5907
53a5351d
JM
5908/* accessflag: hw_write: watch write,
5909 hw_read: watch read,
5910 hw_access: watch access (read or write) */
c906108c 5911static void
fba45db2 5912watch_command_1 (char *arg, int accessflag, int from_tty)
c906108c 5913{
d983da9c 5914 struct breakpoint *b, *scope_breakpoint = NULL;
c906108c
SS
5915 struct symtab_and_line sal;
5916 struct expression *exp;
5917 struct block *exp_valid_block;
5918 struct value *val, *mark;
5919 struct frame_info *frame;
5920 struct frame_info *prev_frame = NULL;
5921 char *exp_start = NULL;
5922 char *exp_end = NULL;
37e4754d 5923 char *tok, *id_tok_start, *end_tok;
c906108c
SS
5924 int toklen;
5925 char *cond_start = NULL;
5926 char *cond_end = NULL;
5927 struct expression *cond = NULL;
5928 int i, other_type_used, target_resources_ok = 0;
5929 enum bptype bp_type;
5930 int mem_cnt = 0;
37e4754d 5931 int thread = -1;
c906108c 5932
fe39c653 5933 init_sal (&sal); /* initialize to zeroes */
c5aa993b 5934
37e4754d
LM
5935 /* Make sure that we actually have parameters to parse. */
5936 if (arg != NULL && arg[0] != '\0')
5937 {
5938 toklen = strlen (arg); /* Size of argument list. */
5939
5940 /* Points tok to the end of the argument list. */
5941 tok = arg + toklen - 1;
5942
5943 /* Go backwards in the parameters list. Skip the last parameter.
5944 If we're expecting a 'thread <thread_num>' parameter, this should
5945 be the thread identifier. */
5946 while (tok > arg && (*tok == ' ' || *tok == '\t'))
5947 tok--;
5948 while (tok > arg && (*tok != ' ' && *tok != '\t'))
5949 tok--;
5950
5951 /* Points end_tok to the beginning of the last token. */
5952 id_tok_start = tok + 1;
5953
5954 /* Go backwards in the parameters list. Skip one more parameter.
5955 If we're expecting a 'thread <thread_num>' parameter, we should
5956 reach a "thread" token. */
5957 while (tok > arg && (*tok == ' ' || *tok == '\t'))
5958 tok--;
5959
5960 end_tok = tok;
5961
5962 while (tok > arg && (*tok != ' ' && *tok != '\t'))
5963 tok--;
5964
5965 /* Move the pointer forward to skip the whitespace and
5966 calculate the length of the token. */
5967 tok++;
5968 toklen = end_tok - tok;
5969
5970 if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
5971 {
5972 /* At this point we've found a "thread" token, which means
5973 the user is trying to set a watchpoint that triggers
5974 only in a specific thread. */
5975 char *endp;
5976
5977 /* Extract the thread ID from the next token. */
5978 thread = strtol (id_tok_start, &endp, 0);
5979
5980 /* Check if the user provided a valid numeric value for the
5981 thread ID. */
5982 if (*endp != ' ' && *endp != '\t' && *endp != '\0')
5983 error (_("Invalid thread ID specification %s."), id_tok_start);
5984
5985 /* Check if the thread actually exists. */
5986 if (!valid_thread_id (thread))
5987 error (_("Unknown thread %d."), thread);
5988
5989 /* Truncate the string and get rid of the thread <thread_num>
5990 parameter before the parameter list is parsed by the
5991 evaluate_expression() function. */
5992 *tok = '\0';
5993 }
5994 }
5995
5996 /* Parse the rest of the arguments. */
c906108c
SS
5997 innermost_block = NULL;
5998 exp_start = arg;
5999 exp = parse_exp_1 (&arg, 0, 0);
6000 exp_end = arg;
6001 exp_valid_block = innermost_block;
6002 mark = value_mark ();
fa4727a6
DJ
6003 fetch_watchpoint_value (exp, &val, NULL, NULL);
6004 if (val != NULL)
6005 release_value (val);
c906108c
SS
6006
6007 tok = arg;
6008 while (*tok == ' ' || *tok == '\t')
6009 tok++;
6010 end_tok = tok;
6011
6012 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
6013 end_tok++;
6014
6015 toklen = end_tok - tok;
6016 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
6017 {
6018 tok = cond_start = end_tok + 1;
6019 cond = parse_exp_1 (&tok, 0, 0);
6020 cond_end = tok;
6021 }
6022 if (*tok)
8a3fe4f8 6023 error (_("Junk at end of command."));
c906108c 6024
53a5351d 6025 if (accessflag == hw_read)
c5aa993b 6026 bp_type = bp_read_watchpoint;
53a5351d 6027 else if (accessflag == hw_access)
c5aa993b
JM
6028 bp_type = bp_access_watchpoint;
6029 else
6030 bp_type = bp_hardware_watchpoint;
c906108c
SS
6031
6032 mem_cnt = can_use_hardware_watchpoint (val);
6033 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
8a3fe4f8 6034 error (_("Expression cannot be implemented with read/access watchpoint."));
c5aa993b
JM
6035 if (mem_cnt != 0)
6036 {
6037 i = hw_watchpoint_used_count (bp_type, &other_type_used);
53a5351d
JM
6038 target_resources_ok =
6039 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
6040 other_type_used);
c5aa993b 6041 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
8a3fe4f8 6042 error (_("Target does not support this type of hardware watchpoint."));
53a5351d 6043
c5aa993b 6044 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
8a3fe4f8 6045 error (_("Target can only support one kind of HW watchpoint at a time."));
c5aa993b 6046 }
c906108c 6047
4d28f7a8
KB
6048 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
6049 watchpoint could not be set. */
6050 if (!mem_cnt || target_resources_ok <= 0)
6051 bp_type = bp_watchpoint;
6052
d983da9c
DJ
6053 frame = block_innermost_frame (exp_valid_block);
6054 if (frame)
6055 prev_frame = get_prev_frame (frame);
6056 else
6057 prev_frame = NULL;
6058
6059 /* If the expression is "local", then set up a "watchpoint scope"
6060 breakpoint at the point where we've left the scope of the watchpoint
6061 expression. Create the scope breakpoint before the watchpoint, so
6062 that we will encounter it first in bpstat_stop_status. */
6063 if (innermost_block && prev_frame)
6064 {
6065 scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
6066 bp_watchpoint_scope);
6067
6068 scope_breakpoint->enable_state = bp_enabled;
6069
6070 /* Automatically delete the breakpoint when it hits. */
6071 scope_breakpoint->disposition = disp_del;
6072
6073 /* Only break in the proper frame (help with recursion). */
6074 scope_breakpoint->frame_id = get_frame_id (prev_frame);
6075
6076 /* Set the address at which we will stop. */
6077 scope_breakpoint->loc->requested_address
6078 = get_frame_pc (prev_frame);
6079 scope_breakpoint->loc->address
6080 = adjust_breakpoint_address (scope_breakpoint->loc->requested_address,
6081 scope_breakpoint->type);
6082 }
6083
c906108c 6084 /* Now set up the breakpoint. */
4d28f7a8 6085 b = set_raw_breakpoint (sal, bp_type);
c906108c
SS
6086 set_breakpoint_count (breakpoint_count + 1);
6087 b->number = breakpoint_count;
37e4754d 6088 b->thread = thread;
b5de0fa7 6089 b->disposition = disp_donttouch;
c906108c
SS
6090 b->exp = exp;
6091 b->exp_valid_block = exp_valid_block;
6092 b->exp_string = savestring (exp_start, exp_end - exp_start);
6093 b->val = val;
fa4727a6 6094 b->val_valid = 1;
511a6cd4 6095 b->loc->cond = cond;
c906108c
SS
6096 if (cond_start)
6097 b->cond_string = savestring (cond_start, cond_end - cond_start);
6098 else
6099 b->cond_string = 0;
c5aa993b 6100
c906108c 6101 if (frame)
d983da9c 6102 b->watchpoint_frame = get_frame_id (frame);
c906108c 6103 else
35a487f1 6104 b->watchpoint_frame = null_frame_id;
c906108c 6105
d983da9c 6106 if (scope_breakpoint != NULL)
c906108c 6107 {
d983da9c
DJ
6108 /* The scope breakpoint is related to the watchpoint. We will
6109 need to act on them together. */
6110 b->related_breakpoint = scope_breakpoint;
6111 scope_breakpoint->related_breakpoint = b;
c906108c 6112 }
d983da9c 6113
c906108c
SS
6114 value_free_to_mark (mark);
6115 mention (b);
b60e7edf 6116 update_global_location_list (1);
c906108c
SS
6117}
6118
6119/* Return count of locations need to be watched and can be handled
6120 in hardware. If the watchpoint can not be handled
6121 in hardware return zero. */
6122
c906108c 6123static int
fba45db2 6124can_use_hardware_watchpoint (struct value *v)
c906108c
SS
6125{
6126 int found_memory_cnt = 0;
2e70b7b9 6127 struct value *head = v;
c906108c
SS
6128
6129 /* Did the user specifically forbid us to use hardware watchpoints? */
c5aa993b 6130 if (!can_use_hw_watchpoints)
c906108c 6131 return 0;
c5aa993b 6132
5c44784c
JM
6133 /* Make sure that the value of the expression depends only upon
6134 memory contents, and values computed from them within GDB. If we
6135 find any register references or function calls, we can't use a
6136 hardware watchpoint.
6137
6138 The idea here is that evaluating an expression generates a series
6139 of values, one holding the value of every subexpression. (The
6140 expression a*b+c has five subexpressions: a, b, a*b, c, and
6141 a*b+c.) GDB's values hold almost enough information to establish
6142 the criteria given above --- they identify memory lvalues,
6143 register lvalues, computed values, etcetera. So we can evaluate
6144 the expression, and then scan the chain of values that leaves
6145 behind to decide whether we can detect any possible change to the
6146 expression's final value using only hardware watchpoints.
6147
6148 However, I don't think that the values returned by inferior
6149 function calls are special in any way. So this function may not
6150 notice that an expression involving an inferior function call
6151 can't be watched with hardware watchpoints. FIXME. */
17cf0ecd 6152 for (; v; v = value_next (v))
c906108c 6153 {
5c44784c 6154 if (VALUE_LVAL (v) == lval_memory)
c906108c 6155 {
d69fe07e 6156 if (value_lazy (v))
5c44784c
JM
6157 /* A lazy memory lvalue is one that GDB never needed to fetch;
6158 we either just used its address (e.g., `a' in `a.b') or
6159 we never needed it at all (e.g., `a' in `a,b'). */
6160 ;
53a5351d 6161 else
5c44784c
JM
6162 {
6163 /* Ahh, memory we actually used! Check if we can cover
6164 it with hardware watchpoints. */
df407dfe 6165 struct type *vtype = check_typedef (value_type (v));
2e70b7b9
MS
6166
6167 /* We only watch structs and arrays if user asked for it
6168 explicitly, never if they just happen to appear in a
6169 middle of some value chain. */
6170 if (v == head
6171 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
6172 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
6173 {
df407dfe
AC
6174 CORE_ADDR vaddr = VALUE_ADDRESS (v) + value_offset (v);
6175 int len = TYPE_LENGTH (value_type (v));
2e70b7b9
MS
6176
6177 if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
6178 return 0;
6179 else
6180 found_memory_cnt++;
6181 }
5c44784c 6182 }
c5aa993b 6183 }
5086187c
AC
6184 else if (VALUE_LVAL (v) != not_lval
6185 && deprecated_value_modifiable (v) == 0)
53a5351d 6186 return 0; /* ??? What does this represent? */
5086187c 6187 else if (VALUE_LVAL (v) == lval_register)
53a5351d 6188 return 0; /* cannot watch a register with a HW watchpoint */
c906108c
SS
6189 }
6190
6191 /* The expression itself looks suitable for using a hardware
6192 watchpoint, but give the target machine a chance to reject it. */
6193 return found_memory_cnt;
6194}
6195
8b93c638 6196void
fba45db2 6197watch_command_wrapper (char *arg, int from_tty)
8b93c638
JM
6198{
6199 watch_command (arg, from_tty);
6200}
8926118c 6201
c5aa993b 6202static void
fba45db2 6203watch_command (char *arg, int from_tty)
c906108c 6204{
53a5351d 6205 watch_command_1 (arg, hw_write, from_tty);
c906108c
SS
6206}
6207
8b93c638 6208void
fba45db2 6209rwatch_command_wrapper (char *arg, int from_tty)
8b93c638
JM
6210{
6211 rwatch_command (arg, from_tty);
6212}
8926118c 6213
c5aa993b 6214static void
fba45db2 6215rwatch_command (char *arg, int from_tty)
c906108c 6216{
53a5351d 6217 watch_command_1 (arg, hw_read, from_tty);
c906108c
SS
6218}
6219
8b93c638 6220void
fba45db2 6221awatch_command_wrapper (char *arg, int from_tty)
8b93c638
JM
6222{
6223 awatch_command (arg, from_tty);
6224}
8926118c 6225
c5aa993b 6226static void
fba45db2 6227awatch_command (char *arg, int from_tty)
c906108c 6228{
53a5351d 6229 watch_command_1 (arg, hw_access, from_tty);
c906108c 6230}
c906108c 6231\f
c5aa993b 6232
43ff13b4 6233/* Helper routines for the until_command routine in infcmd.c. Here
c906108c
SS
6234 because it uses the mechanisms of breakpoints. */
6235
bfec99b2
PA
6236struct until_break_command_continuation_args
6237{
6238 struct breakpoint *breakpoint;
6239 struct breakpoint *breakpoint2;
6240};
6241
43ff13b4
JM
6242/* This function is called by fetch_inferior_event via the
6243 cmd_continuation pointer, to complete the until command. It takes
6244 care of cleaning up the temporary breakpoints set up by the until
6245 command. */
c2c6d25f 6246static void
604ead4a 6247until_break_command_continuation (void *arg)
43ff13b4 6248{
bfec99b2
PA
6249 struct until_break_command_continuation_args *a = arg;
6250
6251 delete_breakpoint (a->breakpoint);
6252 if (a->breakpoint2)
6253 delete_breakpoint (a->breakpoint2);
43ff13b4
JM
6254}
6255
c906108c 6256void
ae66c1fc 6257until_break_command (char *arg, int from_tty, int anywhere)
c906108c
SS
6258{
6259 struct symtabs_and_lines sals;
6260 struct symtab_and_line sal;
206415a3
DJ
6261 struct frame_info *frame = get_selected_frame (NULL);
6262 struct frame_info *prev_frame = get_prev_frame (frame);
c906108c 6263 struct breakpoint *breakpoint;
f107f563 6264 struct breakpoint *breakpoint2 = NULL;
c906108c
SS
6265 struct cleanup *old_chain;
6266
6267 clear_proceed_status ();
6268
6269 /* Set a breakpoint where the user wants it and at return from
6270 this function */
c5aa993b 6271
c906108c
SS
6272 if (default_breakpoint_valid)
6273 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
68219205 6274 default_breakpoint_line, (char ***) NULL, NULL);
c906108c 6275 else
53a5351d 6276 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
68219205 6277 0, (char ***) NULL, NULL);
c5aa993b 6278
c906108c 6279 if (sals.nelts != 1)
8a3fe4f8 6280 error (_("Couldn't get information on specified line."));
c5aa993b 6281
c906108c 6282 sal = sals.sals[0];
b8c9b27d 6283 xfree (sals.sals); /* malloc'd, so freed */
c5aa993b 6284
c906108c 6285 if (*arg)
8a3fe4f8 6286 error (_("Junk at end of arguments."));
c5aa993b 6287
c906108c 6288 resolve_sal_pc (&sal);
c5aa993b 6289
ae66c1fc
EZ
6290 if (anywhere)
6291 /* If the user told us to continue until a specified location,
6292 we don't specify a frame at which we need to stop. */
6293 breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until);
6294 else
6295 /* Otherwise, specify the current frame, because we want to stop only
6296 at the very same frame. */
206415a3 6297 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame),
ae66c1fc 6298 bp_until);
c5aa993b 6299
f107f563 6300 old_chain = make_cleanup_delete_breakpoint (breakpoint);
c906108c 6301
ae66c1fc
EZ
6302 /* Keep within the current frame, or in frames called by the current
6303 one. */
c906108c
SS
6304 if (prev_frame)
6305 {
30f7db39
AC
6306 sal = find_pc_line (get_frame_pc (prev_frame), 0);
6307 sal.pc = get_frame_pc (prev_frame);
f107f563
VP
6308 breakpoint2 = set_momentary_breakpoint (sal, get_frame_id (prev_frame),
6309 bp_until);
6310 make_cleanup_delete_breakpoint (breakpoint2);
c906108c 6311 }
c5aa993b 6312
c906108c 6313 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
f107f563
VP
6314
6315 /* If we are running asynchronously, and proceed call above has actually
6316 managed to start the target, arrange for breakpoints to be
6317 deleted when the target stops. Otherwise, we're already stopped and
6318 delete breakpoints via cleanup chain. */
6319
8ea051c5 6320 if (target_can_async_p () && is_running (inferior_ptid))
f107f563 6321 {
bfec99b2
PA
6322 struct until_break_command_continuation_args *args;
6323 args = xmalloc (sizeof (*args));
f107f563 6324
bfec99b2
PA
6325 args->breakpoint = breakpoint;
6326 args->breakpoint2 = breakpoint2;
f107f563
VP
6327
6328 discard_cleanups (old_chain);
95e54da7
PA
6329 add_continuation (inferior_thread (),
6330 until_break_command_continuation, args,
604ead4a 6331 xfree);
f107f563
VP
6332 }
6333 else
c5aa993b 6334 do_cleanups (old_chain);
c906108c 6335}
ae66c1fc 6336
c906108c 6337static void
fba45db2 6338ep_skip_leading_whitespace (char **s)
c906108c 6339{
c5aa993b
JM
6340 if ((s == NULL) || (*s == NULL))
6341 return;
6342 while (isspace (**s))
6343 *s += 1;
c906108c 6344}
c5aa993b 6345
c906108c
SS
6346/* This function attempts to parse an optional "if <cond>" clause
6347 from the arg string. If one is not found, it returns NULL.
c5aa993b 6348
c906108c
SS
6349 Else, it returns a pointer to the condition string. (It does not
6350 attempt to evaluate the string against a particular block.) And,
6351 it updates arg to point to the first character following the parsed
6352 if clause in the arg string. */
53a5351d 6353
c906108c 6354static char *
fba45db2 6355ep_parse_optional_if_clause (char **arg)
c906108c 6356{
c5aa993b
JM
6357 char *cond_string;
6358
6359 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
c906108c 6360 return NULL;
c5aa993b 6361
c906108c
SS
6362 /* Skip the "if" keyword. */
6363 (*arg) += 2;
c5aa993b 6364
c906108c
SS
6365 /* Skip any extra leading whitespace, and record the start of the
6366 condition string. */
6367 ep_skip_leading_whitespace (arg);
6368 cond_string = *arg;
c5aa993b 6369
c906108c
SS
6370 /* Assume that the condition occupies the remainder of the arg string. */
6371 (*arg) += strlen (cond_string);
c5aa993b 6372
c906108c
SS
6373 return cond_string;
6374}
c5aa993b 6375
c906108c
SS
6376/* This function attempts to parse an optional filename from the arg
6377 string. If one is not found, it returns NULL.
c5aa993b 6378
c906108c
SS
6379 Else, it returns a pointer to the parsed filename. (This function
6380 makes no attempt to verify that a file of that name exists, or is
6381 accessible.) And, it updates arg to point to the first character
6382 following the parsed filename in the arg string.
c5aa993b 6383
c906108c
SS
6384 Note that clients needing to preserve the returned filename for
6385 future access should copy it to their own buffers. */
6386static char *
fba45db2 6387ep_parse_optional_filename (char **arg)
c906108c 6388{
c5aa993b
JM
6389 static char filename[1024];
6390 char *arg_p = *arg;
6391 int i;
6392 char c;
6393
c906108c
SS
6394 if ((*arg_p == '\0') || isspace (*arg_p))
6395 return NULL;
c5aa993b
JM
6396
6397 for (i = 0;; i++)
c906108c
SS
6398 {
6399 c = *arg_p;
6400 if (isspace (c))
c5aa993b 6401 c = '\0';
c906108c
SS
6402 filename[i] = c;
6403 if (c == '\0')
c5aa993b 6404 break;
c906108c
SS
6405 arg_p++;
6406 }
6407 *arg = arg_p;
c5aa993b 6408
c906108c
SS
6409 return filename;
6410}
c5aa993b 6411
c906108c
SS
6412/* Commands to deal with catching events, such as signals, exceptions,
6413 process start/exit, etc. */
c5aa993b
JM
6414
6415typedef enum
6416{
44feb3ce
TT
6417 catch_fork_temporary, catch_vfork_temporary,
6418 catch_fork_permanent, catch_vfork_permanent
c5aa993b
JM
6419}
6420catch_fork_kind;
6421
c906108c 6422static void
44feb3ce 6423catch_fork_command_1 (char *arg, int from_tty, struct cmd_list_element *command)
c906108c 6424{
c5aa993b 6425 char *cond_string = NULL;
44feb3ce
TT
6426 catch_fork_kind fork_kind;
6427 int tempflag;
6428
6429 fork_kind = (catch_fork_kind) (uintptr_t) get_cmd_context (command);
6430 tempflag = (fork_kind == catch_fork_temporary
6431 || fork_kind == catch_vfork_temporary);
c5aa993b 6432
44feb3ce
TT
6433 if (!arg)
6434 arg = "";
c906108c 6435 ep_skip_leading_whitespace (&arg);
c5aa993b 6436
c906108c 6437 /* The allowed syntax is:
c5aa993b
JM
6438 catch [v]fork
6439 catch [v]fork if <cond>
6440
c906108c
SS
6441 First, check if there's an if clause. */
6442 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 6443
c906108c 6444 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 6445 error (_("Junk at end of arguments."));
c5aa993b 6446
c906108c
SS
6447 /* If this target supports it, create a fork or vfork catchpoint
6448 and enable reporting of such events. */
c5aa993b
JM
6449 switch (fork_kind)
6450 {
44feb3ce
TT
6451 case catch_fork_temporary:
6452 case catch_fork_permanent:
c906108c
SS
6453 create_fork_event_catchpoint (tempflag, cond_string);
6454 break;
44feb3ce
TT
6455 case catch_vfork_temporary:
6456 case catch_vfork_permanent:
c906108c
SS
6457 create_vfork_event_catchpoint (tempflag, cond_string);
6458 break;
c5aa993b 6459 default:
8a3fe4f8 6460 error (_("unsupported or unknown fork kind; cannot catch it"));
c906108c 6461 break;
c5aa993b 6462 }
c906108c
SS
6463}
6464
6465static void
44feb3ce 6466catch_exec_command_1 (char *arg, int from_tty, struct cmd_list_element *command)
c906108c 6467{
44feb3ce 6468 int tempflag;
c5aa993b 6469 char *cond_string = NULL;
c906108c 6470
44feb3ce
TT
6471 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
6472
6473 if (!arg)
6474 arg = "";
c906108c
SS
6475 ep_skip_leading_whitespace (&arg);
6476
6477 /* The allowed syntax is:
c5aa993b
JM
6478 catch exec
6479 catch exec if <cond>
c906108c
SS
6480
6481 First, check if there's an if clause. */
6482 cond_string = ep_parse_optional_if_clause (&arg);
6483
6484 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 6485 error (_("Junk at end of arguments."));
c906108c
SS
6486
6487 /* If this target supports it, create an exec catchpoint
6488 and enable reporting of such events. */
6489 create_exec_event_catchpoint (tempflag, cond_string);
6490}
c5aa993b 6491
c906108c 6492static void
44feb3ce 6493catch_load_command_1 (char *arg, int from_tty, struct cmd_list_element *command)
c906108c 6494{
44feb3ce 6495 int tempflag;
c5aa993b
JM
6496 char *dll_pathname = NULL;
6497 char *cond_string = NULL;
6498
44feb3ce
TT
6499 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
6500
6501 if (!arg)
6502 arg = "";
c906108c 6503 ep_skip_leading_whitespace (&arg);
c5aa993b 6504
c906108c 6505 /* The allowed syntax is:
c5aa993b
JM
6506 catch load
6507 catch load if <cond>
6508 catch load <filename>
6509 catch load <filename> if <cond>
6510
c906108c
SS
6511 The user is not allowed to specify the <filename> after an
6512 if clause.
c5aa993b 6513
c906108c 6514 We'll ignore the pathological case of a file named "if".
c5aa993b 6515
c906108c
SS
6516 First, check if there's an if clause. If so, then there
6517 cannot be a filename. */
6518 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 6519
c906108c
SS
6520 /* If there was an if clause, then there cannot be a filename.
6521 Else, there might be a filename and an if clause. */
6522 if (cond_string == NULL)
6523 {
6524 dll_pathname = ep_parse_optional_filename (&arg);
6525 ep_skip_leading_whitespace (&arg);
6526 cond_string = ep_parse_optional_if_clause (&arg);
6527 }
c5aa993b 6528
c906108c 6529 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 6530 error (_("Junk at end of arguments."));
c5aa993b 6531
c906108c
SS
6532 /* Create a load breakpoint that only triggers when a load of
6533 the specified dll (or any dll, if no pathname was specified)
6534 occurs. */
39f77062 6535 SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
53a5351d 6536 dll_pathname, cond_string);
c906108c 6537}
c5aa993b 6538
c906108c 6539static void
44feb3ce
TT
6540catch_unload_command_1 (char *arg, int from_tty,
6541 struct cmd_list_element *command)
c906108c 6542{
44feb3ce 6543 int tempflag;
c5aa993b
JM
6544 char *dll_pathname = NULL;
6545 char *cond_string = NULL;
6546
44feb3ce
TT
6547 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
6548
6549 if (!arg)
6550 arg = "";
c906108c 6551 ep_skip_leading_whitespace (&arg);
c5aa993b 6552
c906108c 6553 /* The allowed syntax is:
c5aa993b
JM
6554 catch unload
6555 catch unload if <cond>
6556 catch unload <filename>
6557 catch unload <filename> if <cond>
6558
c906108c
SS
6559 The user is not allowed to specify the <filename> after an
6560 if clause.
c5aa993b 6561
c906108c 6562 We'll ignore the pathological case of a file named "if".
c5aa993b 6563
c906108c
SS
6564 First, check if there's an if clause. If so, then there
6565 cannot be a filename. */
6566 cond_string = ep_parse_optional_if_clause (&arg);
c5aa993b 6567
c906108c
SS
6568 /* If there was an if clause, then there cannot be a filename.
6569 Else, there might be a filename and an if clause. */
6570 if (cond_string == NULL)
6571 {
6572 dll_pathname = ep_parse_optional_filename (&arg);
6573 ep_skip_leading_whitespace (&arg);
6574 cond_string = ep_parse_optional_if_clause (&arg);
6575 }
c5aa993b 6576
c906108c 6577 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 6578 error (_("Junk at end of arguments."));
c5aa993b 6579
c906108c
SS
6580 /* Create an unload breakpoint that only triggers when an unload of
6581 the specified dll (or any dll, if no pathname was specified)
6582 occurs. */
39f77062 6583 SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
53a5351d 6584 dll_pathname, cond_string);
c906108c 6585}
c906108c 6586
3086aeae
DJ
6587static enum print_stop_action
6588print_exception_catchpoint (struct breakpoint *b)
6589{
ade92717 6590 int bp_temp, bp_throw;
3086aeae 6591
ade92717 6592 annotate_catchpoint (b->number);
3086aeae 6593
ade92717
AR
6594 bp_throw = strstr (b->addr_string, "throw") != NULL;
6595 if (b->loc->address != b->loc->requested_address)
6596 breakpoint_adjustment_warning (b->loc->requested_address,
6597 b->loc->address,
6598 b->number, 1);
6599 bp_temp = b->loc->owner->disposition == disp_del;
6600 ui_out_text (uiout,
6601 bp_temp ? "Temporary catchpoint "
6602 : "Catchpoint ");
6603 if (!ui_out_is_mi_like_p (uiout))
6604 ui_out_field_int (uiout, "bkptno", b->number);
6605 ui_out_text (uiout,
c0b37c48
AR
6606 bp_throw ? " (exception thrown), "
6607 : " (exception caught), ");
ade92717
AR
6608 if (ui_out_is_mi_like_p (uiout))
6609 {
6610 ui_out_field_string (uiout, "reason",
6611 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
6612 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
6613 ui_out_field_int (uiout, "bkptno", b->number);
6614 }
3086aeae
DJ
6615 return PRINT_SRC_AND_LOC;
6616}
6617
6618static void
6619print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr)
6620{
6621 if (addressprint)
6622 {
6623 annotate_field (4);
604133b5
AR
6624 if (b->loc == NULL || b->loc->shlib_disabled)
6625 ui_out_field_string (uiout, "addr", "<PENDING>");
6626 else
6627 ui_out_field_core_addr (uiout, "addr", b->loc->address);
3086aeae
DJ
6628 }
6629 annotate_field (5);
604133b5
AR
6630 if (b->loc)
6631 *last_addr = b->loc->address;
3086aeae
DJ
6632 if (strstr (b->addr_string, "throw") != NULL)
6633 ui_out_field_string (uiout, "what", "exception throw");
6634 else
6635 ui_out_field_string (uiout, "what", "exception catch");
6636}
6637
6638static void
6639print_mention_exception_catchpoint (struct breakpoint *b)
6640{
ade92717
AR
6641 int bp_temp;
6642 int bp_throw;
6643
6644 bp_temp = b->loc->owner->disposition == disp_del;
6645 bp_throw = strstr (b->addr_string, "throw") != NULL;
6646 ui_out_text (uiout, bp_temp ? _("Temporary catchpoint ")
6647 : _("Catchpoint "));
6648 ui_out_field_int (uiout, "bkptno", b->number);
6649 ui_out_text (uiout, bp_throw ? _(" (throw)")
6650 : _(" (catch)"));
3086aeae
DJ
6651}
6652
6653static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
6654 print_exception_catchpoint,
6655 print_one_exception_catchpoint,
6656 print_mention_exception_catchpoint
6657};
6658
6659static int
6660handle_gnu_v3_exceptions (int tempflag, char *cond_string,
6661 enum exception_event_kind ex_event, int from_tty)
6662{
604133b5
AR
6663 char *trigger_func_name;
6664
3086aeae 6665 if (ex_event == EX_EVENT_CATCH)
604133b5 6666 trigger_func_name = "__cxa_begin_catch";
3086aeae 6667 else
604133b5 6668 trigger_func_name = "__cxa_throw";
3086aeae 6669
604133b5
AR
6670 break_command_really (trigger_func_name, cond_string, -1,
6671 0 /* condition and thread are valid. */,
ade92717 6672 tempflag, 0,
604133b5
AR
6673 0,
6674 AUTO_BOOLEAN_TRUE /* pending */,
6675 &gnu_v3_exception_catchpoint_ops, from_tty);
3086aeae 6676
3086aeae
DJ
6677 return 1;
6678}
6679
c5aa993b 6680/* Deal with "catch catch" and "catch throw" commands */
c906108c
SS
6681
6682static void
fba45db2
KB
6683catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
6684 int tempflag, int from_tty)
c906108c 6685{
c5aa993b
JM
6686 char *cond_string = NULL;
6687 struct symtab_and_line *sal = NULL;
6688
44feb3ce
TT
6689 if (!arg)
6690 arg = "";
c906108c 6691 ep_skip_leading_whitespace (&arg);
c5aa993b 6692
c906108c
SS
6693 cond_string = ep_parse_optional_if_clause (&arg);
6694
6695 if ((*arg != '\0') && !isspace (*arg))
8a3fe4f8 6696 error (_("Junk at end of arguments."));
c906108c
SS
6697
6698 if ((ex_event != EX_EVENT_THROW) &&
6699 (ex_event != EX_EVENT_CATCH))
8a3fe4f8 6700 error (_("Unsupported or unknown exception event; cannot catch it"));
c906108c 6701
3086aeae
DJ
6702 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
6703 return;
6704
8a3fe4f8 6705 warning (_("Unsupported with this platform/compiler combination."));
c906108c
SS
6706}
6707
44feb3ce
TT
6708/* Implementation of "catch catch" command. */
6709
6710static void
6711catch_catch_command (char *arg, int from_tty, struct cmd_list_element *command)
6712{
6713 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
6714 catch_exception_command_1 (EX_EVENT_CATCH, arg, tempflag, from_tty);
6715}
6716
6717/* Implementation of "catch throw" command. */
6718
6719static void
6720catch_throw_command (char *arg, int from_tty, struct cmd_list_element *command)
6721{
6722 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
6723 catch_exception_command_1 (EX_EVENT_THROW, arg, tempflag, from_tty);
6724}
6725
f7f9143b
JB
6726/* Create a breakpoint struct for Ada exception catchpoints. */
6727
6728static void
6729create_ada_exception_breakpoint (struct symtab_and_line sal,
6730 char *addr_string,
6731 char *exp_string,
6732 char *cond_string,
6733 struct expression *cond,
6734 struct breakpoint_ops *ops,
6735 int tempflag,
6736 int from_tty)
6737{
6738 struct breakpoint *b;
6739
6740 if (from_tty)
6741 {
6742 describe_other_breakpoints (sal.pc, sal.section, -1);
6743 /* FIXME: brobecker/2006-12-28: Actually, re-implement a special
6744 version for exception catchpoints, because two catchpoints
6745 used for different exception names will use the same address.
6746 In this case, a "breakpoint ... also set at..." warning is
6747 unproductive. Besides. the warning phrasing is also a bit
6748 inapropriate, we should use the word catchpoint, and tell
6749 the user what type of catchpoint it is. The above is good
6750 enough for now, though. */
6751 }
6752
6753 b = set_raw_breakpoint (sal, bp_breakpoint);
6754 set_breakpoint_count (breakpoint_count + 1);
6755
6756 b->enable_state = bp_enabled;
6757 b->disposition = tempflag ? disp_del : disp_donttouch;
6758 b->number = breakpoint_count;
6759 b->ignore_count = 0;
511a6cd4 6760 b->loc->cond = cond;
f7f9143b
JB
6761 b->addr_string = addr_string;
6762 b->language = language_ada;
6763 b->cond_string = cond_string;
6764 b->exp_string = exp_string;
6765 b->thread = -1;
6766 b->ops = ops;
f7f9143b
JB
6767
6768 mention (b);
b60e7edf 6769 update_global_location_list (1);
f7f9143b
JB
6770}
6771
6772/* Implement the "catch exception" command. */
6773
6774static void
44feb3ce
TT
6775catch_ada_exception_command (char *arg, int from_tty,
6776 struct cmd_list_element *command)
f7f9143b 6777{
44feb3ce 6778 int tempflag;
f7f9143b
JB
6779 struct symtab_and_line sal;
6780 enum bptype type;
6781 char *addr_string = NULL;
6782 char *exp_string = NULL;
6783 char *cond_string = NULL;
6784 struct expression *cond = NULL;
6785 struct breakpoint_ops *ops = NULL;
6786
44feb3ce
TT
6787 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
6788
6789 if (!arg)
6790 arg = "";
f7f9143b
JB
6791 sal = ada_decode_exception_location (arg, &addr_string, &exp_string,
6792 &cond_string, &cond, &ops);
6793 create_ada_exception_breakpoint (sal, addr_string, exp_string,
6794 cond_string, cond, ops, tempflag,
6795 from_tty);
6796}
6797
6798/* Implement the "catch assert" command. */
6799
6800static void
44feb3ce 6801catch_assert_command (char *arg, int from_tty, struct cmd_list_element *command)
f7f9143b 6802{
44feb3ce 6803 int tempflag;
f7f9143b
JB
6804 struct symtab_and_line sal;
6805 char *addr_string = NULL;
6806 struct breakpoint_ops *ops = NULL;
6807
44feb3ce
TT
6808 tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
6809
6810 if (!arg)
6811 arg = "";
f7f9143b
JB
6812 sal = ada_decode_assert_location (arg, &addr_string, &ops);
6813 create_ada_exception_breakpoint (sal, addr_string, NULL, NULL, NULL, ops,
6814 tempflag, from_tty);
6815}
6816
c906108c 6817static void
fba45db2 6818catch_command (char *arg, int from_tty)
c906108c 6819{
44feb3ce 6820 error (_("Catch requires an event name."));
c906108c
SS
6821}
6822\f
6823
6824static void
fba45db2 6825tcatch_command (char *arg, int from_tty)
c906108c 6826{
44feb3ce 6827 error (_("Catch requires an event name."));
c906108c
SS
6828}
6829
80f8a6eb 6830/* Delete breakpoints by address or line. */
c906108c
SS
6831
6832static void
fba45db2 6833clear_command (char *arg, int from_tty)
c906108c 6834{
d6e956e5
VP
6835 struct breakpoint *b;
6836 VEC(breakpoint_p) *found = 0;
6837 int ix;
c906108c
SS
6838 int default_match;
6839 struct symtabs_and_lines sals;
6840 struct symtab_and_line sal;
c906108c
SS
6841 int i;
6842
6843 if (arg)
6844 {
6845 sals = decode_line_spec (arg, 1);
6846 default_match = 0;
6847 }
6848 else
6849 {
c5aa993b 6850 sals.sals = (struct symtab_and_line *)
c906108c 6851 xmalloc (sizeof (struct symtab_and_line));
80f8a6eb 6852 make_cleanup (xfree, sals.sals);
fe39c653 6853 init_sal (&sal); /* initialize to zeroes */
c906108c
SS
6854 sal.line = default_breakpoint_line;
6855 sal.symtab = default_breakpoint_symtab;
6856 sal.pc = default_breakpoint_address;
6857 if (sal.symtab == 0)
8a3fe4f8 6858 error (_("No source file specified."));
c906108c
SS
6859
6860 sals.sals[0] = sal;
6861 sals.nelts = 1;
6862
6863 default_match = 1;
6864 }
6865
ed0616c6
VP
6866 /* We don't call resolve_sal_pc here. That's not
6867 as bad as it seems, because all existing breakpoints
6868 typically have both file/line and pc set. So, if
6869 clear is given file/line, we can match this to existing
6870 breakpoint without obtaining pc at all.
6871
6872 We only support clearing given the address explicitly
6873 present in breakpoint table. Say, we've set breakpoint
6874 at file:line. There were several PC values for that file:line,
6875 due to optimization, all in one block.
6876 We've picked one PC value. If "clear" is issued with another
6877 PC corresponding to the same file:line, the breakpoint won't
6878 be cleared. We probably can still clear the breakpoint, but
6879 since the other PC value is never presented to user, user
6880 can only find it by guessing, and it does not seem important
6881 to support that. */
6882
c906108c 6883 /* For each line spec given, delete bps which correspond
80f8a6eb
MS
6884 to it. Do it in two passes, solely to preserve the current
6885 behavior that from_tty is forced true if we delete more than
6886 one breakpoint. */
c906108c 6887
80f8a6eb 6888 found = NULL;
c906108c
SS
6889 for (i = 0; i < sals.nelts; i++)
6890 {
6891 /* If exact pc given, clear bpts at that pc.
c5aa993b
JM
6892 If line given (pc == 0), clear all bpts on specified line.
6893 If defaulting, clear all bpts on default line
c906108c 6894 or at default pc.
c5aa993b
JM
6895
6896 defaulting sal.pc != 0 tests to do
6897
6898 0 1 pc
6899 1 1 pc _and_ line
6900 0 0 line
6901 1 0 <can't happen> */
c906108c
SS
6902
6903 sal = sals.sals[i];
c906108c 6904
d6e956e5
VP
6905 /* Find all matching breakpoints and add them to
6906 'found'. */
6907 ALL_BREAKPOINTS (b)
c5aa993b 6908 {
0d381245 6909 int match = 0;
80f8a6eb
MS
6910 /* Are we going to delete b? */
6911 if (b->type != bp_none
6912 && b->type != bp_watchpoint
6913 && b->type != bp_hardware_watchpoint
6914 && b->type != bp_read_watchpoint
0d381245
VP
6915 && b->type != bp_access_watchpoint)
6916 {
6917 struct bp_location *loc = b->loc;
6918 for (; loc; loc = loc->next)
6919 {
6920 int pc_match = sal.pc
6921 && (loc->address == sal.pc)
6922 && (!section_is_overlay (loc->section)
6923 || loc->section == sal.section);
6924 int line_match = ((default_match || (0 == sal.pc))
6925 && b->source_file != NULL
6926 && sal.symtab != NULL
6927 && strcmp (b->source_file, sal.symtab->filename) == 0
6928 && b->line_number == sal.line);
6929 if (pc_match || line_match)
6930 {
6931 match = 1;
6932 break;
6933 }
6934 }
6935 }
6936
6937 if (match)
d6e956e5 6938 VEC_safe_push(breakpoint_p, found, b);
c906108c 6939 }
80f8a6eb
MS
6940 }
6941 /* Now go thru the 'found' chain and delete them. */
d6e956e5 6942 if (VEC_empty(breakpoint_p, found))
80f8a6eb
MS
6943 {
6944 if (arg)
8a3fe4f8 6945 error (_("No breakpoint at %s."), arg);
80f8a6eb 6946 else
8a3fe4f8 6947 error (_("No breakpoint at this line."));
80f8a6eb 6948 }
c906108c 6949
d6e956e5 6950 if (VEC_length(breakpoint_p, found) > 1)
80f8a6eb
MS
6951 from_tty = 1; /* Always report if deleted more than one */
6952 if (from_tty)
a3f17187 6953 {
d6e956e5 6954 if (VEC_length(breakpoint_p, found) == 1)
a3f17187
AC
6955 printf_unfiltered (_("Deleted breakpoint "));
6956 else
6957 printf_unfiltered (_("Deleted breakpoints "));
6958 }
80f8a6eb 6959 breakpoints_changed ();
d6e956e5
VP
6960
6961 for (ix = 0; VEC_iterate(breakpoint_p, found, ix, b); ix++)
80f8a6eb 6962 {
c5aa993b 6963 if (from_tty)
d6e956e5
VP
6964 printf_unfiltered ("%d ", b->number);
6965 delete_breakpoint (b);
c906108c 6966 }
80f8a6eb
MS
6967 if (from_tty)
6968 putchar_unfiltered ('\n');
c906108c
SS
6969}
6970\f
6971/* Delete breakpoint in BS if they are `delete' breakpoints and
6972 all breakpoints that are marked for deletion, whether hit or not.
6973 This is called after any breakpoint is hit, or after errors. */
6974
6975void
fba45db2 6976breakpoint_auto_delete (bpstat bs)
c906108c
SS
6977{
6978 struct breakpoint *b, *temp;
6979
6980 for (; bs; bs = bs->next)
20874c92
VP
6981 if (bs->breakpoint_at
6982 && bs->breakpoint_at->owner
6983 && bs->breakpoint_at->owner->disposition == disp_del
c906108c 6984 && bs->stop)
4f8d1dc6 6985 delete_breakpoint (bs->breakpoint_at->owner);
c906108c
SS
6986
6987 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 6988 {
b5de0fa7 6989 if (b->disposition == disp_del_at_next_stop)
c5aa993b
JM
6990 delete_breakpoint (b);
6991 }
c906108c
SS
6992}
6993
b60e7edf
PA
6994/* If SHOULD_INSERT is true, do not insert any breakpoint locations
6995 into the inferior, only remove already-inserted locations that no
6996 longer should be inserted. Functions that delete a breakpoint or
6997 breakpoints should pass false, so that deleting a breakpoint
6998 doesn't have the side effect of inserting the locations of other
6999 breakpoints that are marked not-inserted, but should_be_inserted
7000 returns true on them.
7001
7002 This behaviour is useful is situations close to tear-down -- e.g.,
7003 after an exec, while the target still has execution, but breakpoint
7004 shadows of the previous executable image should *NOT* be restored
7005 to the new image; or before detaching, where the target still has
7006 execution and wants to delete breakpoints from GDB's lists, and all
7007 breakpoints had already been removed from the inferior. */
7008
0d381245 7009static void
b60e7edf 7010update_global_location_list (int should_insert)
0d381245 7011{
74960c60
VP
7012 struct breakpoint *b;
7013 struct bp_location **next = &bp_location_chain;
7014 struct bp_location *loc;
7015 struct bp_location *loc2;
7016 struct gdb_exception e;
7017 VEC(bp_location_p) *old_locations = NULL;
7018 int ret;
7019 int ix;
7020
7021 /* Store old locations for future reference. */
7022 for (loc = bp_location_chain; loc; loc = loc->global_next)
7023 VEC_safe_push (bp_location_p, old_locations, loc);
0d381245 7024
74960c60
VP
7025 bp_location_chain = NULL;
7026 ALL_BREAKPOINTS (b)
0d381245 7027 {
74960c60 7028 for (loc = b->loc; loc; loc = loc->next)
0d381245 7029 {
74960c60
VP
7030 *next = loc;
7031 next = &(loc->global_next);
7032 *next = NULL;
0d381245 7033 }
74960c60
VP
7034 }
7035
7036 /* Identify bp_location instances that are no longer present in the new
7037 list, and therefore should be freed. Note that it's not necessary that
7038 those locations should be removed from inferior -- if there's another
7039 location at the same address (previously marked as duplicate),
7040 we don't need to remove/insert the location. */
7041 for (ix = 0; VEC_iterate(bp_location_p, old_locations, ix, loc); ++ix)
7042 {
7043 /* Tells if 'loc' is found amoung the new locations. If not, we
7044 have to free it. */
7045 int found_object = 0;
20874c92
VP
7046 /* Tells if the location should remain inserted in the target. */
7047 int keep_in_target = 0;
7048 int removed = 0;
74960c60
VP
7049 for (loc2 = bp_location_chain; loc2; loc2 = loc2->global_next)
7050 if (loc2 == loc)
7051 {
7052 found_object = 1;
7053 break;
7054 }
7055
7056 /* If this location is no longer present, and inserted, look if there's
7057 maybe a new location at the same address. If so, mark that one
7058 inserted, and don't remove this one. This is needed so that we
7059 don't have a time window where a breakpoint at certain location is not
7060 inserted. */
7061
7062 if (loc->inserted)
0d381245 7063 {
74960c60 7064 /* If the location is inserted now, we might have to remove it. */
74960c60
VP
7065
7066 if (found_object && should_be_inserted (loc))
7067 {
7068 /* The location is still present in the location list, and still
7069 should be inserted. Don't do anything. */
20874c92 7070 keep_in_target = 1;
74960c60
VP
7071 }
7072 else
7073 {
7074 /* The location is either no longer present, or got disabled.
7075 See if there's another location at the same address, in which
7076 case we don't need to remove this one from the target. */
7077 if (breakpoint_address_is_meaningful (loc->owner))
7078 for (loc2 = bp_location_chain; loc2; loc2 = loc2->global_next)
7079 {
7080 /* For the sake of should_insert_location. The
7081 call to check_duplicates will fix up this later. */
7082 loc2->duplicate = 0;
7083 if (should_be_inserted (loc2)
7084 && loc2 != loc && loc2->address == loc->address)
7085 {
7086 loc2->inserted = 1;
7087 loc2->target_info = loc->target_info;
20874c92 7088 keep_in_target = 1;
74960c60
VP
7089 break;
7090 }
7091 }
7092 }
7093
20874c92
VP
7094 if (!keep_in_target)
7095 {
7096 if (remove_breakpoint (loc, mark_uninserted))
7097 {
7098 /* This is just about all we can do. We could keep this
7099 location on the global list, and try to remove it next
7100 time, but there's no particular reason why we will
7101 succeed next time.
7102
7103 Note that at this point, loc->owner is still valid,
7104 as delete_breakpoint frees the breakpoint only
7105 after calling us. */
7106 printf_filtered (_("warning: Error removing breakpoint %d\n"),
7107 loc->owner->number);
7108 }
7109 removed = 1;
7110 }
0d381245 7111 }
74960c60
VP
7112
7113 if (!found_object)
20874c92
VP
7114 {
7115 if (removed)
7116 {
7117 /* This location was removed from the targets. In non-stop mode,
7118 a race condition is possible where we've removed a breakpoint,
7119 but stop events for that breakpoint are already queued and will
7120 arrive later. To suppress spurious SIGTRAPs reported to user,
7121 we keep this breakpoint location for a bit, and will retire it
7122 after we see 3 * thread_count events.
7123 The theory here is that reporting of events should,
7124 "on the average", be fair, so after that many event we'll see
7125 events from all threads that have anything of interest, and no
7126 longer need to keep this breakpoint. This is just a
7127 heuristic, but if it's wrong, we'll report unexpected SIGTRAP,
7128 which is usability issue, but not a correctness problem. */
7129 loc->events_till_retirement = 3 * (thread_count () + 1);
7130 loc->owner = NULL;
7131 }
7132
7133 free_bp_location (loc);
7134 }
74960c60
VP
7135 }
7136
7137 ALL_BREAKPOINTS (b)
7138 {
7139 check_duplicates (b);
0d381245 7140 }
74960c60 7141
a12654ce
PA
7142 if (breakpoints_always_inserted_mode ()
7143 && should_insert
7144 && target_has_execution)
74960c60
VP
7145 insert_breakpoint_locations ();
7146}
7147
20874c92
VP
7148void
7149breakpoint_retire_moribund (void)
7150{
7151 struct bp_location *loc;
7152 int ix;
7153
7154 for (ix = 0; VEC_iterate (bp_location_p, moribund_locations, ix, loc); ++ix)
7155 if (--(loc->events_till_retirement) == 0)
7156 {
7157 free_bp_location (loc);
7158 VEC_unordered_remove (bp_location_p, moribund_locations, ix);
7159 --ix;
7160 }
7161}
7162
74960c60 7163static void
b60e7edf 7164update_global_location_list_nothrow (int inserting)
74960c60
VP
7165{
7166 struct gdb_exception e;
7167 TRY_CATCH (e, RETURN_MASK_ERROR)
b60e7edf 7168 update_global_location_list (inserting);
0d381245
VP
7169}
7170
a474d7c2
PA
7171/* Clear BPT from a BPS. */
7172static void
7173bpstat_remove_breakpoint (bpstat bps, struct breakpoint *bpt)
7174{
7175 bpstat bs;
7176 for (bs = bps; bs; bs = bs->next)
7177 if (bs->breakpoint_at && bs->breakpoint_at->owner == bpt)
7178 {
7179 bs->breakpoint_at = NULL;
7180 bs->old_val = NULL;
7181 /* bs->commands will be freed later. */
7182 }
7183}
7184
7185/* Callback for iterate_over_threads. */
7186static int
7187bpstat_remove_breakpoint_callback (struct thread_info *th, void *data)
7188{
7189 struct breakpoint *bpt = data;
7190 bpstat_remove_breakpoint (th->stop_bpstat, bpt);
7191 return 0;
7192}
7193
53a5351d
JM
7194/* Delete a breakpoint and clean up all traces of it in the data
7195 structures. */
c906108c
SS
7196
7197void
fba45db2 7198delete_breakpoint (struct breakpoint *bpt)
c906108c 7199{
52f0bd74 7200 struct breakpoint *b;
74960c60 7201 struct bp_location *loc, *next;
c906108c 7202
8a3fe4f8 7203 gdb_assert (bpt != NULL);
c906108c
SS
7204
7205 /* Has this bp already been deleted? This can happen because multiple
7206 lists can hold pointers to bp's. bpstat lists are especial culprits.
7207
7208 One example of this happening is a watchpoint's scope bp. When the
7209 scope bp triggers, we notice that the watchpoint is out of scope, and
7210 delete it. We also delete its scope bp. But the scope bp is marked
7211 "auto-deleting", and is already on a bpstat. That bpstat is then
7212 checked for auto-deleting bp's, which are deleted.
7213
7214 A real solution to this problem might involve reference counts in bp's,
7215 and/or giving them pointers back to their referencing bpstat's, and
7216 teaching delete_breakpoint to only free a bp's storage when no more
1272ad14 7217 references were extent. A cheaper bandaid was chosen. */
c906108c
SS
7218 if (bpt->type == bp_none)
7219 return;
7220
383f836e 7221 observer_notify_breakpoint_deleted (bpt->number);
c906108c 7222
c906108c
SS
7223 if (breakpoint_chain == bpt)
7224 breakpoint_chain = bpt->next;
7225
c906108c
SS
7226 ALL_BREAKPOINTS (b)
7227 if (b->next == bpt)
c5aa993b
JM
7228 {
7229 b->next = bpt->next;
7230 break;
7231 }
c906108c 7232
c906108c 7233 free_command_lines (&bpt->commands);
c906108c 7234 if (bpt->cond_string != NULL)
b8c9b27d 7235 xfree (bpt->cond_string);
c906108c 7236 if (bpt->addr_string != NULL)
b8c9b27d 7237 xfree (bpt->addr_string);
c906108c 7238 if (bpt->exp != NULL)
b8c9b27d 7239 xfree (bpt->exp);
c906108c 7240 if (bpt->exp_string != NULL)
b8c9b27d 7241 xfree (bpt->exp_string);
c906108c
SS
7242 if (bpt->val != NULL)
7243 value_free (bpt->val);
7244 if (bpt->source_file != NULL)
b8c9b27d 7245 xfree (bpt->source_file);
c906108c 7246 if (bpt->dll_pathname != NULL)
b8c9b27d 7247 xfree (bpt->dll_pathname);
c906108c 7248 if (bpt->triggered_dll_pathname != NULL)
b8c9b27d 7249 xfree (bpt->triggered_dll_pathname);
c906108c 7250 if (bpt->exec_pathname != NULL)
b8c9b27d 7251 xfree (bpt->exec_pathname);
c906108c
SS
7252
7253 /* Be sure no bpstat's are pointing at it after it's been freed. */
7254 /* FIXME, how can we find all bpstat's?
198757a8
VP
7255 We just check stop_bpstat for now. Note that we cannot just
7256 remove bpstats pointing at bpt from the stop_bpstat list
7257 entirely, as breakpoint commands are associated with the bpstat;
7258 if we remove it here, then the later call to
7259 bpstat_do_actions (&stop_bpstat);
7260 in event-top.c won't do anything, and temporary breakpoints
7261 with commands won't work. */
a474d7c2 7262
a474d7c2 7263 iterate_over_threads (bpstat_remove_breakpoint_callback, bpt);
74960c60
VP
7264
7265 /* Now that breakpoint is removed from breakpoint
7266 list, update the global location list. This
7267 will remove locations that used to belong to
7268 this breakpoint. Do this before freeing
7269 the breakpoint itself, since remove_breakpoint
7270 looks at location's owner. It might be better
7271 design to have location completely self-contained,
7272 but it's not the case now. */
b60e7edf 7273 update_global_location_list (0);
74960c60
VP
7274
7275
c906108c
SS
7276 /* On the chance that someone will soon try again to delete this same
7277 bp, we mark it as deleted before freeing its storage. */
7278 bpt->type = bp_none;
7279
b8c9b27d 7280 xfree (bpt);
c906108c
SS
7281}
7282
4d6140d9
AC
7283static void
7284do_delete_breakpoint_cleanup (void *b)
7285{
7286 delete_breakpoint (b);
7287}
7288
7289struct cleanup *
7290make_cleanup_delete_breakpoint (struct breakpoint *b)
7291{
7292 return make_cleanup (do_delete_breakpoint_cleanup, b);
7293}
7294
c906108c 7295void
fba45db2 7296delete_command (char *arg, int from_tty)
c906108c
SS
7297{
7298 struct breakpoint *b, *temp;
7299
ea9365bb
TT
7300 dont_repeat ();
7301
c906108c
SS
7302 if (arg == 0)
7303 {
7304 int breaks_to_delete = 0;
7305
7306 /* Delete all breakpoints if no argument.
c5aa993b
JM
7307 Do not delete internal or call-dummy breakpoints, these
7308 have to be deleted with an explicit breakpoint number argument. */
7309 ALL_BREAKPOINTS (b)
7310 {
7311 if (b->type != bp_call_dummy &&
7312 b->type != bp_shlib_event &&
c4093a6a 7313 b->type != bp_thread_event &&
1900040c 7314 b->type != bp_overlay_event &&
c5aa993b 7315 b->number >= 0)
973d738b
DJ
7316 {
7317 breaks_to_delete = 1;
7318 break;
7319 }
c5aa993b 7320 }
c906108c
SS
7321
7322 /* Ask user only if there are some breakpoints to delete. */
7323 if (!from_tty
e2e0b3e5 7324 || (breaks_to_delete && query (_("Delete all breakpoints? "))))
c906108c 7325 {
c5aa993b
JM
7326 ALL_BREAKPOINTS_SAFE (b, temp)
7327 {
7328 if (b->type != bp_call_dummy &&
7329 b->type != bp_shlib_event &&
c4093a6a 7330 b->type != bp_thread_event &&
1900040c 7331 b->type != bp_overlay_event &&
c5aa993b
JM
7332 b->number >= 0)
7333 delete_breakpoint (b);
7334 }
c906108c
SS
7335 }
7336 }
7337 else
7338 map_breakpoint_numbers (arg, delete_breakpoint);
7339}
7340
0d381245
VP
7341static int
7342all_locations_are_pending (struct bp_location *loc)
fe3f5fa8 7343{
0d381245
VP
7344 for (; loc; loc = loc->next)
7345 if (!loc->shlib_disabled)
7346 return 0;
7347 return 1;
fe3f5fa8
VP
7348}
7349
776592bf
DE
7350/* Subroutine of update_breakpoint_locations to simplify it.
7351 Return non-zero if multiple fns in list LOC have the same name.
7352 Null names are ignored. */
7353
7354static int
7355ambiguous_names_p (struct bp_location *loc)
7356{
7357 struct bp_location *l;
7358 htab_t htab = htab_create_alloc (13, htab_hash_string,
7359 (int (*) (const void *, const void *)) streq,
7360 NULL, xcalloc, xfree);
7361
7362 for (l = loc; l != NULL; l = l->next)
7363 {
7364 const char **slot;
7365 const char *name = l->function_name;
7366
7367 /* Allow for some names to be NULL, ignore them. */
7368 if (name == NULL)
7369 continue;
7370
7371 slot = (const char **) htab_find_slot (htab, (const void *) name,
7372 INSERT);
7373 /* NOTE: We can assume slot != NULL here because xcalloc never returns
7374 NULL. */
7375 if (*slot != NULL)
7376 {
7377 htab_delete (htab);
7378 return 1;
7379 }
7380 *slot = name;
7381 }
7382
7383 htab_delete (htab);
7384 return 0;
7385}
7386
fe3f5fa8 7387static void
0d381245
VP
7388update_breakpoint_locations (struct breakpoint *b,
7389 struct symtabs_and_lines sals)
fe3f5fa8
VP
7390{
7391 int i;
7392 char *s;
0d381245
VP
7393 struct bp_location *existing_locations = b->loc;
7394
7395 /* If there's no new locations, and all existing locations
7396 are pending, don't do anything. This optimizes
7397 the common case where all locations are in the same
7398 shared library, that was unloaded. We'd like to
7399 retain the location, so that when the library
7400 is loaded again, we don't loose the enabled/disabled
7401 status of the individual locations. */
7402 if (all_locations_are_pending (existing_locations) && sals.nelts == 0)
fe3f5fa8
VP
7403 return;
7404
fe3f5fa8
VP
7405 b->loc = NULL;
7406
0d381245 7407 for (i = 0; i < sals.nelts; ++i)
fe3f5fa8 7408 {
0d381245
VP
7409 struct bp_location *new_loc =
7410 add_location_to_breakpoint (b, b->type, &(sals.sals[i]));
fe3f5fa8 7411
0d381245
VP
7412 /* Reparse conditions, they might contain references to the
7413 old symtab. */
7414 if (b->cond_string != NULL)
7415 {
7416 struct gdb_exception e;
fe3f5fa8 7417
0d381245
VP
7418 s = b->cond_string;
7419 TRY_CATCH (e, RETURN_MASK_ERROR)
7420 {
7421 new_loc->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc),
7422 0);
7423 }
7424 if (e.reason < 0)
7425 {
7426 warning (_("failed to reevaluate condition for breakpoint %d: %s"),
7427 b->number, e.message);
7428 new_loc->enabled = 0;
7429 }
7430 }
fe3f5fa8 7431
0d381245
VP
7432 if (b->source_file != NULL)
7433 xfree (b->source_file);
7434 if (sals.sals[i].symtab == NULL)
7435 b->source_file = NULL;
7436 else
7437 b->source_file =
7438 savestring (sals.sals[i].symtab->filename,
7439 strlen (sals.sals[i].symtab->filename));
fe3f5fa8 7440
0d381245
VP
7441 if (b->line_number == 0)
7442 b->line_number = sals.sals[i].line;
7443 }
fe3f5fa8 7444
514f746b
AR
7445 /* Update locations of permanent breakpoints. */
7446 if (b->enable_state == bp_permanent)
7447 make_breakpoint_permanent (b);
7448
0d381245
VP
7449 /* If possible, carry over 'disable' status from existing breakpoints. */
7450 {
7451 struct bp_location *e = existing_locations;
776592bf
DE
7452 /* If there are multiple breakpoints with the same function name,
7453 e.g. for inline functions, comparing function names won't work.
7454 Instead compare pc addresses; this is just a heuristic as things
7455 may have moved, but in practice it gives the correct answer
7456 often enough until a better solution is found. */
7457 int have_ambiguous_names = ambiguous_names_p (b->loc);
7458
0d381245
VP
7459 for (; e; e = e->next)
7460 {
7461 if (!e->enabled && e->function_name)
7462 {
7463 struct bp_location *l = b->loc;
776592bf
DE
7464 if (have_ambiguous_names)
7465 {
7466 for (; l; l = l->next)
7467 if (e->address == l->address)
7468 {
7469 l->enabled = 0;
7470 break;
7471 }
7472 }
7473 else
7474 {
7475 for (; l; l = l->next)
7476 if (l->function_name
7477 && strcmp (e->function_name, l->function_name) == 0)
7478 {
7479 l->enabled = 0;
7480 break;
7481 }
7482 }
0d381245
VP
7483 }
7484 }
7485 }
fe3f5fa8 7486
b60e7edf 7487 update_global_location_list (1);
fe3f5fa8
VP
7488}
7489
7490
c906108c
SS
7491/* Reset a breakpoint given it's struct breakpoint * BINT.
7492 The value we return ends up being the return value from catch_errors.
7493 Unused in this case. */
7494
7495static int
4efb68b1 7496breakpoint_re_set_one (void *bint)
c906108c 7497{
53a5351d
JM
7498 /* get past catch_errs */
7499 struct breakpoint *b = (struct breakpoint *) bint;
c906108c
SS
7500 struct value *mark;
7501 int i;
fe3f5fa8
VP
7502 int not_found = 0;
7503 int *not_found_ptr = &not_found;
7504 struct symtabs_and_lines sals = {};
ed0616c6 7505 struct symtabs_and_lines expanded;
c906108c 7506 char *s;
b5de0fa7 7507 enum enable_state save_enable;
fe3f5fa8
VP
7508 struct gdb_exception e;
7509
c906108c
SS
7510
7511 switch (b->type)
7512 {
7513 case bp_none:
8a3fe4f8 7514 warning (_("attempted to reset apparently deleted breakpoint #%d?"),
53a5351d 7515 b->number);
c906108c
SS
7516 return 0;
7517 case bp_breakpoint:
7518 case bp_hardware_breakpoint:
7519 case bp_catch_load:
7520 case bp_catch_unload:
7521 if (b->addr_string == NULL)
7522 {
7523 /* Anything without a string can't be re-set. */
7524 delete_breakpoint (b);
7525 return 0;
7526 }
c906108c
SS
7527
7528 set_language (b->language);
7529 input_radix = b->input_radix;
7530 s = b->addr_string;
fe3f5fa8 7531 TRY_CATCH (e, RETURN_MASK_ERROR)
c906108c 7532 {
fe3f5fa8
VP
7533 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL,
7534 not_found_ptr);
7535 }
7536 if (e.reason < 0)
7537 {
7538 int not_found_and_ok = 0;
7539 /* For pending breakpoints, it's expected that parsing
7540 will fail until the right shared library is loaded.
7541 User has already told to create pending breakpoints and
7542 don't need extra messages. If breakpoint is in bp_shlib_disabled
7543 state, then user already saw the message about that breakpoint
7544 being disabled, and don't want to see more errors. */
0d381245
VP
7545 if (not_found
7546 && (b->condition_not_parsed
7547 || (b->loc && b->loc->shlib_disabled)
7548 || b->enable_state == bp_disabled))
fe3f5fa8
VP
7549 not_found_and_ok = 1;
7550
7551 if (!not_found_and_ok)
c906108c 7552 {
fe3f5fa8
VP
7553 /* We surely don't want to warn about the same breakpoint
7554 10 times. One solution, implemented here, is disable
7555 the breakpoint on error. Another solution would be to
7556 have separate 'warning emitted' flag. Since this
7557 happens only when a binary has changed, I don't know
7558 which approach is better. */
7559 b->enable_state = bp_disabled;
7560 throw_exception (e);
c906108c 7561 }
fe3f5fa8 7562 }
c906108c 7563
fe3f5fa8
VP
7564 if (not_found)
7565 break;
7566
7567 gdb_assert (sals.nelts == 1);
7568 resolve_sal_pc (&sals.sals[0]);
0d381245 7569 if (b->condition_not_parsed && s && s[0])
fe3f5fa8
VP
7570 {
7571 char *cond_string = 0;
7572 int thread = -1;
7573 find_condition_and_thread (s, sals.sals[0].pc,
7574 &cond_string, &thread);
7575 if (cond_string)
7576 b->cond_string = cond_string;
7577 b->thread = thread;
0d381245 7578 b->condition_not_parsed = 0;
fe3f5fa8 7579 }
ed0616c6
VP
7580 expanded = expand_line_sal_maybe (sals.sals[0]);
7581 update_breakpoint_locations (b, expanded);
0d381245 7582
b8c9b27d 7583 xfree (sals.sals);
c906108c
SS
7584 break;
7585
7586 case bp_watchpoint:
7587 case bp_hardware_watchpoint:
7588 case bp_read_watchpoint:
7589 case bp_access_watchpoint:
0b3de036
VP
7590 /* Watchpoint can be either on expression using entirely global variables,
7591 or it can be on local variables.
7592
7593 Watchpoints of the first kind are never auto-deleted, and even persist
7594 across program restarts. Since they can use variables from shared
7595 libraries, we need to reparse expression as libraries are loaded
7596 and unloaded.
7597
7598 Watchpoints on local variables can also change meaning as result
7599 of solib event. For example, if a watchpoint uses both a local and
7600 a global variables in expression, it's a local watchpoint, but
7601 unloading of a shared library will make the expression invalid.
7602 This is not a very common use case, but we still re-evaluate
7603 expression, to avoid surprises to the user.
7604
7605 Note that for local watchpoints, we re-evaluate it only if
7606 watchpoints frame id is still valid. If it's not, it means
7607 the watchpoint is out of scope and will be deleted soon. In fact,
7608 I'm not sure we'll ever be called in this case.
7609
7610 If a local watchpoint's frame id is still valid, then
7611 b->exp_valid_block is likewise valid, and we can safely use it.
7612
7613 Don't do anything about disabled watchpoints, since they will
7614 be reevaluated again when enabled. */
a5606eee 7615 update_watchpoint (b, 1 /* reparse */);
c906108c 7616 break;
c5aa993b
JM
7617 /* We needn't really do anything to reset these, since the mask
7618 that requests them is unaffected by e.g., new libraries being
7619 loaded. */
c906108c
SS
7620 case bp_catch_fork:
7621 case bp_catch_vfork:
7622 case bp_catch_exec:
7623 break;
c5aa993b 7624
c906108c 7625 default:
a3f17187 7626 printf_filtered (_("Deleting unknown breakpoint type %d\n"), b->type);
c906108c 7627 /* fall through */
611c83ae
PA
7628 /* Delete overlay event breakpoints; they will be reset later by
7629 breakpoint_re_set. */
1900040c 7630 case bp_overlay_event:
c906108c
SS
7631 delete_breakpoint (b);
7632 break;
7633
c5aa993b
JM
7634 /* This breakpoint is special, it's set up when the inferior
7635 starts and we really don't want to touch it. */
c906108c
SS
7636 case bp_shlib_event:
7637
c4093a6a
JM
7638 /* Like bp_shlib_event, this breakpoint type is special.
7639 Once it is set up, we do not want to touch it. */
7640 case bp_thread_event:
7641
c5aa993b
JM
7642 /* Keep temporary breakpoints, which can be encountered when we step
7643 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
7644 Otherwise these should have been blown away via the cleanup chain
7645 or by breakpoint_init_inferior when we rerun the executable. */
c906108c
SS
7646 case bp_until:
7647 case bp_finish:
7648 case bp_watchpoint_scope:
7649 case bp_call_dummy:
7650 case bp_step_resume:
611c83ae
PA
7651 case bp_longjmp:
7652 case bp_longjmp_resume:
c906108c
SS
7653 break;
7654 }
7655
7656 return 0;
7657}
7658
7659/* Re-set all breakpoints after symbols have been re-loaded. */
7660void
fba45db2 7661breakpoint_re_set (void)
c906108c
SS
7662{
7663 struct breakpoint *b, *temp;
7664 enum language save_language;
7665 int save_input_radix;
c5aa993b 7666
c906108c
SS
7667 save_language = current_language->la_language;
7668 save_input_radix = input_radix;
7669 ALL_BREAKPOINTS_SAFE (b, temp)
c5aa993b 7670 {
53a5351d 7671 /* Format possible error msg */
fe3f5fa8 7672 char *message = xstrprintf ("Error in re-setting breakpoint %d: ",
9ebf4acf
AC
7673 b->number);
7674 struct cleanup *cleanups = make_cleanup (xfree, message);
c5aa993b 7675 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
9ebf4acf 7676 do_cleanups (cleanups);
c5aa993b 7677 }
c906108c
SS
7678 set_language (save_language);
7679 input_radix = save_input_radix;
1900040c
MS
7680
7681 create_overlay_event_breakpoint ("_ovly_debug_event");
c906108c
SS
7682}
7683\f
c906108c
SS
7684/* Reset the thread number of this breakpoint:
7685
7686 - If the breakpoint is for all threads, leave it as-is.
39f77062 7687 - Else, reset it to the current thread for inferior_ptid. */
c906108c 7688void
fba45db2 7689breakpoint_re_set_thread (struct breakpoint *b)
c906108c
SS
7690{
7691 if (b->thread != -1)
7692 {
39f77062
KB
7693 if (in_thread_list (inferior_ptid))
7694 b->thread = pid_to_thread_id (inferior_ptid);
c906108c
SS
7695 }
7696}
7697
03ac34d5
MS
7698/* Set ignore-count of breakpoint number BPTNUM to COUNT.
7699 If from_tty is nonzero, it prints a message to that effect,
7700 which ends with a period (no newline). */
7701
c906108c 7702void
fba45db2 7703set_ignore_count (int bptnum, int count, int from_tty)
c906108c 7704{
52f0bd74 7705 struct breakpoint *b;
c906108c
SS
7706
7707 if (count < 0)
7708 count = 0;
7709
7710 ALL_BREAKPOINTS (b)
7711 if (b->number == bptnum)
c5aa993b
JM
7712 {
7713 b->ignore_count = count;
221ea385
KS
7714 if (from_tty)
7715 {
7716 if (count == 0)
a3f17187 7717 printf_filtered (_("Will stop next time breakpoint %d is reached."),
221ea385
KS
7718 bptnum);
7719 else if (count == 1)
a3f17187 7720 printf_filtered (_("Will ignore next crossing of breakpoint %d."),
221ea385
KS
7721 bptnum);
7722 else
a3f17187 7723 printf_filtered (_("Will ignore next %d crossings of breakpoint %d."),
221ea385
KS
7724 count, bptnum);
7725 }
c5aa993b 7726 breakpoints_changed ();
383f836e 7727 observer_notify_breakpoint_modified (b->number);
c5aa993b
JM
7728 return;
7729 }
c906108c 7730
8a3fe4f8 7731 error (_("No breakpoint number %d."), bptnum);
c906108c
SS
7732}
7733
7734/* Clear the ignore counts of all breakpoints. */
7735void
fba45db2 7736breakpoint_clear_ignore_counts (void)
c906108c
SS
7737{
7738 struct breakpoint *b;
7739
7740 ALL_BREAKPOINTS (b)
7741 b->ignore_count = 0;
7742}
7743
7744/* Command to set ignore-count of breakpoint N to COUNT. */
7745
7746static void
fba45db2 7747ignore_command (char *args, int from_tty)
c906108c
SS
7748{
7749 char *p = args;
52f0bd74 7750 int num;
c906108c
SS
7751
7752 if (p == 0)
e2e0b3e5 7753 error_no_arg (_("a breakpoint number"));
c5aa993b 7754
c906108c 7755 num = get_number (&p);
5c44784c 7756 if (num == 0)
8a3fe4f8 7757 error (_("bad breakpoint number: '%s'"), args);
c906108c 7758 if (*p == 0)
8a3fe4f8 7759 error (_("Second argument (specified ignore-count) is missing."));
c906108c
SS
7760
7761 set_ignore_count (num,
7762 longest_to_int (value_as_long (parse_and_eval (p))),
7763 from_tty);
221ea385
KS
7764 if (from_tty)
7765 printf_filtered ("\n");
c906108c
SS
7766}
7767\f
7768/* Call FUNCTION on each of the breakpoints
7769 whose numbers are given in ARGS. */
7770
7771static void
831662b3 7772map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
c906108c 7773{
52f0bd74 7774 char *p = args;
c906108c 7775 char *p1;
52f0bd74
AC
7776 int num;
7777 struct breakpoint *b, *tmp;
11cf8741 7778 int match;
c906108c
SS
7779
7780 if (p == 0)
e2e0b3e5 7781 error_no_arg (_("one or more breakpoint numbers"));
c906108c
SS
7782
7783 while (*p)
7784 {
11cf8741 7785 match = 0;
c906108c 7786 p1 = p;
c5aa993b 7787
5c44784c
JM
7788 num = get_number_or_range (&p1);
7789 if (num == 0)
c5aa993b 7790 {
8a3fe4f8 7791 warning (_("bad breakpoint number at or near '%s'"), p);
5c44784c
JM
7792 }
7793 else
7794 {
7795 ALL_BREAKPOINTS_SAFE (b, tmp)
7796 if (b->number == num)
7797 {
7798 struct breakpoint *related_breakpoint = b->related_breakpoint;
11cf8741 7799 match = 1;
5c44784c
JM
7800 function (b);
7801 if (related_breakpoint)
7802 function (related_breakpoint);
11cf8741 7803 break;
5c44784c 7804 }
11cf8741 7805 if (match == 0)
a3f17187 7806 printf_unfiltered (_("No breakpoint number %d.\n"), num);
c5aa993b 7807 }
c906108c
SS
7808 p = p1;
7809 }
7810}
7811
0d381245
VP
7812static struct bp_location *
7813find_location_by_number (char *number)
7814{
7815 char *dot = strchr (number, '.');
7816 char *p1;
7817 int bp_num;
7818 int loc_num;
7819 struct breakpoint *b;
7820 struct bp_location *loc;
7821
7822 *dot = '\0';
7823
7824 p1 = number;
7825 bp_num = get_number_or_range (&p1);
7826 if (bp_num == 0)
7827 error (_("Bad breakpoint number '%s'"), number);
7828
7829 ALL_BREAKPOINTS (b)
7830 if (b->number == bp_num)
7831 {
7832 break;
7833 }
7834
7835 if (!b || b->number != bp_num)
7836 error (_("Bad breakpoint number '%s'"), number);
7837
7838 p1 = dot+1;
7839 loc_num = get_number_or_range (&p1);
7840 if (loc_num == 0)
7841 error (_("Bad breakpoint location number '%s'"), number);
7842
7843 --loc_num;
7844 loc = b->loc;
7845 for (;loc_num && loc; --loc_num, loc = loc->next)
7846 ;
7847 if (!loc)
7848 error (_("Bad breakpoint location number '%s'"), dot+1);
7849
7850 return loc;
7851}
7852
7853
1900040c
MS
7854/* Set ignore-count of breakpoint number BPTNUM to COUNT.
7855 If from_tty is nonzero, it prints a message to that effect,
7856 which ends with a period (no newline). */
7857
c906108c 7858void
fba45db2 7859disable_breakpoint (struct breakpoint *bpt)
c906108c
SS
7860{
7861 /* Never disable a watchpoint scope breakpoint; we want to
7862 hit them when we leave scope so we can delete both the
7863 watchpoint and its scope breakpoint at that time. */
7864 if (bpt->type == bp_watchpoint_scope)
7865 return;
7866
c2c6d25f 7867 /* You can't disable permanent breakpoints. */
b5de0fa7 7868 if (bpt->enable_state == bp_permanent)
c2c6d25f
JM
7869 return;
7870
b5de0fa7 7871 bpt->enable_state = bp_disabled;
c906108c 7872
b60e7edf 7873 update_global_location_list (0);
c906108c 7874
383f836e 7875 observer_notify_breakpoint_modified (bpt->number);
c906108c
SS
7876}
7877
c906108c 7878static void
fba45db2 7879disable_command (char *args, int from_tty)
c906108c 7880{
52f0bd74 7881 struct breakpoint *bpt;
c906108c
SS
7882 if (args == 0)
7883 ALL_BREAKPOINTS (bpt)
7884 switch (bpt->type)
c5aa993b
JM
7885 {
7886 case bp_none:
8a3fe4f8 7887 warning (_("attempted to disable apparently deleted breakpoint #%d?"),
53a5351d 7888 bpt->number);
c5aa993b
JM
7889 continue;
7890 case bp_breakpoint:
7891 case bp_catch_load:
7892 case bp_catch_unload:
7893 case bp_catch_fork:
7894 case bp_catch_vfork:
7895 case bp_catch_exec:
c5aa993b
JM
7896 case bp_hardware_breakpoint:
7897 case bp_watchpoint:
7898 case bp_hardware_watchpoint:
7899 case bp_read_watchpoint:
7900 case bp_access_watchpoint:
7901 disable_breakpoint (bpt);
7902 default:
7903 continue;
7904 }
0d381245
VP
7905 else if (strchr (args, '.'))
7906 {
7907 struct bp_location *loc = find_location_by_number (args);
7908 if (loc)
7909 loc->enabled = 0;
b60e7edf 7910 update_global_location_list (0);
0d381245 7911 }
c906108c
SS
7912 else
7913 map_breakpoint_numbers (args, disable_breakpoint);
7914}
7915
7916static void
fba45db2 7917do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
c906108c 7918{
c906108c
SS
7919 int target_resources_ok, other_type_used;
7920 struct value *mark;
7921
7922 if (bpt->type == bp_hardware_breakpoint)
7923 {
7924 int i;
c5aa993b 7925 i = hw_breakpoint_used_count ();
53a5351d
JM
7926 target_resources_ok =
7927 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
7928 i + 1, 0);
c906108c 7929 if (target_resources_ok == 0)
8a3fe4f8 7930 error (_("No hardware breakpoint support in the target."));
c906108c 7931 else if (target_resources_ok < 0)
8a3fe4f8 7932 error (_("Hardware breakpoints used exceeds limit."));
c906108c
SS
7933 }
7934
fe3f5fa8
VP
7935 if (bpt->type == bp_watchpoint ||
7936 bpt->type == bp_hardware_watchpoint ||
7937 bpt->type == bp_read_watchpoint ||
7938 bpt->type == bp_access_watchpoint)
c906108c 7939 {
fe3f5fa8
VP
7940 struct frame_id saved_frame_id;
7941
7942 saved_frame_id = get_frame_id (get_selected_frame (NULL));
7943 if (bpt->exp_valid_block != NULL)
c906108c 7944 {
fe3f5fa8
VP
7945 struct frame_info *fr =
7946 fr = frame_find_by_id (bpt->watchpoint_frame);
7947 if (fr == NULL)
c906108c 7948 {
fe3f5fa8
VP
7949 printf_filtered (_("\
7950Cannot enable watchpoint %d because the block in which its expression\n\
7951is valid is not currently in scope.\n"), bpt->number);
c906108c
SS
7952 return;
7953 }
fe3f5fa8 7954 select_frame (fr);
c906108c 7955 }
0101ce28 7956
b4c291bb
KH
7957 if (bpt->val)
7958 value_free (bpt->val);
fe3f5fa8 7959 mark = value_mark ();
fa4727a6
DJ
7960 fetch_watchpoint_value (bpt->exp, &bpt->val, NULL, NULL);
7961 if (bpt->val)
7962 release_value (bpt->val);
7963 bpt->val_valid = 1;
7964
fe3f5fa8
VP
7965 if (bpt->type == bp_hardware_watchpoint ||
7966 bpt->type == bp_read_watchpoint ||
c5aa993b
JM
7967 bpt->type == bp_access_watchpoint)
7968 {
fe3f5fa8
VP
7969 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7970 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
0101ce28 7971
fe3f5fa8
VP
7972 /* Hack around 'unused var' error for some targets here */
7973 (void) mem_cnt, (void) i;
7974 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7975 bpt->type, i + mem_cnt, other_type_used);
7976 /* we can consider of type is bp_hardware_watchpoint, convert to
7977 bp_watchpoint in the following condition */
7978 if (target_resources_ok < 0)
c5aa993b 7979 {
fe3f5fa8 7980 printf_filtered (_("\
c906108c 7981Cannot enable watchpoint %d because target watch resources\n\
a3f17187 7982have been allocated for other watchpoints.\n"), bpt->number);
fe3f5fa8
VP
7983 value_free_to_mark (mark);
7984 return;
c5aa993b
JM
7985 }
7986 }
fe3f5fa8
VP
7987
7988 select_frame (frame_find_by_id (saved_frame_id));
7989 value_free_to_mark (mark);
c906108c 7990 }
0101ce28 7991
b4c291bb
KH
7992 if (bpt->enable_state != bp_permanent)
7993 bpt->enable_state = bp_enabled;
7994 bpt->disposition = disposition;
b60e7edf 7995 update_global_location_list (1);
b4c291bb
KH
7996 breakpoints_changed ();
7997
383f836e 7998 observer_notify_breakpoint_modified (bpt->number);
c906108c
SS
7999}
8000
fe3f5fa8 8001
c906108c 8002void
fba45db2 8003enable_breakpoint (struct breakpoint *bpt)
c906108c
SS
8004{
8005 do_enable_breakpoint (bpt, bpt->disposition);
8006}
8007
8008/* The enable command enables the specified breakpoints (or all defined
8009 breakpoints) so they once again become (or continue to be) effective
1272ad14 8010 in stopping the inferior. */
c906108c 8011
c906108c 8012static void
fba45db2 8013enable_command (char *args, int from_tty)
c906108c 8014{
52f0bd74 8015 struct breakpoint *bpt;
c906108c
SS
8016 if (args == 0)
8017 ALL_BREAKPOINTS (bpt)
8018 switch (bpt->type)
c5aa993b
JM
8019 {
8020 case bp_none:
8a3fe4f8 8021 warning (_("attempted to enable apparently deleted breakpoint #%d?"),
53a5351d 8022 bpt->number);
c5aa993b
JM
8023 continue;
8024 case bp_breakpoint:
8025 case bp_catch_load:
8026 case bp_catch_unload:
8027 case bp_catch_fork:
8028 case bp_catch_vfork:
8029 case bp_catch_exec:
c5aa993b
JM
8030 case bp_hardware_breakpoint:
8031 case bp_watchpoint:
8032 case bp_hardware_watchpoint:
8033 case bp_read_watchpoint:
8034 case bp_access_watchpoint:
8035 enable_breakpoint (bpt);
8036 default:
8037 continue;
8038 }
0d381245
VP
8039 else if (strchr (args, '.'))
8040 {
8041 struct bp_location *loc = find_location_by_number (args);
8042 if (loc)
8043 loc->enabled = 1;
b60e7edf 8044 update_global_location_list (1);
0d381245 8045 }
c906108c
SS
8046 else
8047 map_breakpoint_numbers (args, enable_breakpoint);
8048}
8049
8050static void
fba45db2 8051enable_once_breakpoint (struct breakpoint *bpt)
c906108c 8052{
b5de0fa7 8053 do_enable_breakpoint (bpt, disp_disable);
c906108c
SS
8054}
8055
c906108c 8056static void
fba45db2 8057enable_once_command (char *args, int from_tty)
c906108c
SS
8058{
8059 map_breakpoint_numbers (args, enable_once_breakpoint);
8060}
8061
8062static void
fba45db2 8063enable_delete_breakpoint (struct breakpoint *bpt)
c906108c 8064{
b5de0fa7 8065 do_enable_breakpoint (bpt, disp_del);
c906108c
SS
8066}
8067
c906108c 8068static void
fba45db2 8069enable_delete_command (char *args, int from_tty)
c906108c
SS
8070{
8071 map_breakpoint_numbers (args, enable_delete_breakpoint);
8072}
8073\f
fa8d40ab
JJ
8074static void
8075set_breakpoint_cmd (char *args, int from_tty)
8076{
8077}
8078
8079static void
8080show_breakpoint_cmd (char *args, int from_tty)
8081{
8082}
8083
c906108c
SS
8084/* Use default_breakpoint_'s, or nothing if they aren't valid. */
8085
8086struct symtabs_and_lines
fba45db2 8087decode_line_spec_1 (char *string, int funfirstline)
c906108c
SS
8088{
8089 struct symtabs_and_lines sals;
8090 if (string == 0)
8a3fe4f8 8091 error (_("Empty line specification."));
c906108c
SS
8092 if (default_breakpoint_valid)
8093 sals = decode_line_1 (&string, funfirstline,
53a5351d
JM
8094 default_breakpoint_symtab,
8095 default_breakpoint_line,
68219205 8096 (char ***) NULL, NULL);
c906108c
SS
8097 else
8098 sals = decode_line_1 (&string, funfirstline,
68219205 8099 (struct symtab *) NULL, 0, (char ***) NULL, NULL);
c906108c 8100 if (*string)
8a3fe4f8 8101 error (_("Junk at end of line specification: %s"), string);
c906108c
SS
8102 return sals;
8103}
8181d85f
DJ
8104
8105/* Create and insert a raw software breakpoint at PC. Return an
8106 identifier, which should be used to remove the breakpoint later.
8107 In general, places which call this should be using something on the
8108 breakpoint chain instead; this function should be eliminated
8109 someday. */
8110
8111void *
8112deprecated_insert_raw_breakpoint (CORE_ADDR pc)
8113{
8114 struct bp_target_info *bp_tgt;
8115
8116 bp_tgt = xmalloc (sizeof (struct bp_target_info));
8117 memset (bp_tgt, 0, sizeof (struct bp_target_info));
8118
8119 bp_tgt->placed_address = pc;
8120 if (target_insert_breakpoint (bp_tgt) != 0)
8121 {
8122 /* Could not insert the breakpoint. */
8123 xfree (bp_tgt);
8124 return NULL;
8125 }
8126
8127 return bp_tgt;
8128}
8129
8130/* Remove a breakpoint BP inserted by deprecated_insert_raw_breakpoint. */
8131
8132int
8133deprecated_remove_raw_breakpoint (void *bp)
8134{
8135 struct bp_target_info *bp_tgt = bp;
8136 int ret;
8137
8138 ret = target_remove_breakpoint (bp_tgt);
8139 xfree (bp_tgt);
8140
8141 return ret;
8142}
8143
8144/* One (or perhaps two) breakpoints used for software single stepping. */
8145
8146static void *single_step_breakpoints[2];
8147
8148/* Create and insert a breakpoint for software single step. */
8149
8150void
8151insert_single_step_breakpoint (CORE_ADDR next_pc)
8152{
8153 void **bpt_p;
8154
8155 if (single_step_breakpoints[0] == NULL)
8156 bpt_p = &single_step_breakpoints[0];
8157 else
8158 {
8159 gdb_assert (single_step_breakpoints[1] == NULL);
8160 bpt_p = &single_step_breakpoints[1];
8161 }
8162
8163 /* NOTE drow/2006-04-11: A future improvement to this function would be
8164 to only create the breakpoints once, and actually put them on the
8165 breakpoint chain. That would let us use set_raw_breakpoint. We could
8166 adjust the addresses each time they were needed. Doing this requires
8167 corresponding changes elsewhere where single step breakpoints are
8168 handled, however. So, for now, we use this. */
8169
8170 *bpt_p = deprecated_insert_raw_breakpoint (next_pc);
8171 if (*bpt_p == NULL)
1893a4c0 8172 error (_("Could not insert single-step breakpoint at 0x%s"),
8181d85f
DJ
8173 paddr_nz (next_pc));
8174}
8175
8176/* Remove and delete any breakpoints used for software single step. */
8177
8178void
8179remove_single_step_breakpoints (void)
8180{
8181 gdb_assert (single_step_breakpoints[0] != NULL);
8182
8183 /* See insert_single_step_breakpoint for more about this deprecated
8184 call. */
8185 deprecated_remove_raw_breakpoint (single_step_breakpoints[0]);
8186 single_step_breakpoints[0] = NULL;
8187
8188 if (single_step_breakpoints[1] != NULL)
8189 {
8190 deprecated_remove_raw_breakpoint (single_step_breakpoints[1]);
8191 single_step_breakpoints[1] = NULL;
8192 }
8193}
8194
1aafd4da
UW
8195/* Check whether a software single-step breakpoint is inserted at PC. */
8196
8197static int
8198single_step_breakpoint_inserted_here_p (CORE_ADDR pc)
8199{
8200 int i;
8201
8202 for (i = 0; i < 2; i++)
8203 {
8204 struct bp_target_info *bp_tgt = single_step_breakpoints[i];
8205 if (bp_tgt && bp_tgt->placed_address == pc)
8206 return 1;
8207 }
8208
8209 return 0;
8210}
8211
c906108c 8212\f
31e2b00f
AS
8213/* This help string is used for the break, hbreak, tbreak and thbreak commands.
8214 It is defined as a macro to prevent duplication.
8215 COMMAND should be a string constant containing the name of the command. */
8216#define BREAK_ARGS_HELP(command) \
8217command" [LOCATION] [thread THREADNUM] [if CONDITION]\n\
8218LOCATION may be a line number, function name, or \"*\" and an address.\n\
8219If a line number is specified, break at start of code for that line.\n\
8220If a function is specified, break at start of code for that function.\n\
8221If an address is specified, break at that exact address.\n\
8222With no LOCATION, uses current execution address of selected stack frame.\n\
8223This is useful for breaking on return to a stack frame.\n\
8224\n\
8225THREADNUM is the number from \"info threads\".\n\
8226CONDITION is a boolean expression.\n\
8227\n\
8228Multiple breakpoints at one place are permitted, and useful if conditional.\n\
8229\n\
8230Do \"help breakpoints\" for info on other commands dealing with breakpoints."
8231
44feb3ce
TT
8232/* List of subcommands for "catch". */
8233static struct cmd_list_element *catch_cmdlist;
8234
8235/* List of subcommands for "tcatch". */
8236static struct cmd_list_element *tcatch_cmdlist;
8237
8238/* Like add_cmd, but add the command to both the "catch" and "tcatch"
8239 lists, and pass some additional user data to the command function. */
8240static void
8241add_catch_command (char *name, char *docstring,
8242 void (*sfunc) (char *args, int from_tty,
8243 struct cmd_list_element *command),
8244 void *user_data_catch,
8245 void *user_data_tcatch)
8246{
8247 struct cmd_list_element *command;
8248
8249 command = add_cmd (name, class_breakpoint, NULL, docstring,
8250 &catch_cmdlist);
8251 set_cmd_sfunc (command, sfunc);
8252 set_cmd_context (command, user_data_catch);
8253
8254 command = add_cmd (name, class_breakpoint, NULL, docstring,
8255 &tcatch_cmdlist);
8256 set_cmd_sfunc (command, sfunc);
8257 set_cmd_context (command, user_data_tcatch);
8258}
8259
c906108c 8260void
fba45db2 8261_initialize_breakpoint (void)
c906108c 8262{
fa8d40ab
JJ
8263 static struct cmd_list_element *breakpoint_set_cmdlist;
8264 static struct cmd_list_element *breakpoint_show_cmdlist;
c906108c
SS
8265 struct cmd_list_element *c;
8266
84acb35a 8267 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
84acb35a 8268
c906108c
SS
8269 breakpoint_chain = 0;
8270 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
8271 before a breakpoint is set. */
8272 breakpoint_count = 0;
8273
1bedd215
AC
8274 add_com ("ignore", class_breakpoint, ignore_command, _("\
8275Set ignore-count of breakpoint number N to COUNT.\n\
8276Usage is `ignore N COUNT'."));
c906108c 8277 if (xdb_commands)
c5aa993b 8278 add_com_alias ("bc", "ignore", class_breakpoint, 1);
c906108c 8279
1bedd215
AC
8280 add_com ("commands", class_breakpoint, commands_command, _("\
8281Set commands to be executed when a breakpoint is hit.\n\
c906108c
SS
8282Give breakpoint number as argument after \"commands\".\n\
8283With no argument, the targeted breakpoint is the last one set.\n\
8284The commands themselves follow starting on the next line.\n\
8285Type a line containing \"end\" to indicate the end of them.\n\
8286Give \"silent\" as the first line to make the breakpoint silent;\n\
1bedd215 8287then no output is printed when it is hit, except what the commands print."));
c906108c 8288
1bedd215
AC
8289 add_com ("condition", class_breakpoint, condition_command, _("\
8290Specify breakpoint number N to break only if COND is true.\n\
c906108c 8291Usage is `condition N COND', where N is an integer and COND is an\n\
1bedd215 8292expression to be evaluated whenever breakpoint N is reached."));
c906108c 8293
1bedd215 8294 c = add_com ("tbreak", class_breakpoint, tbreak_command, _("\
31e2b00f 8295Set a temporary breakpoint.\n\
c906108c
SS
8296Like \"break\" except the breakpoint is only temporary,\n\
8297so it will be deleted when hit. Equivalent to \"break\" followed\n\
31e2b00f
AS
8298by using \"enable delete\" on the breakpoint number.\n\
8299\n"
8300BREAK_ARGS_HELP ("tbreak")));
5ba2abeb 8301 set_cmd_completer (c, location_completer);
c94fdfd0 8302
1bedd215 8303 c = add_com ("hbreak", class_breakpoint, hbreak_command, _("\
31e2b00f 8304Set a hardware assisted breakpoint.\n\
c906108c 8305Like \"break\" except the breakpoint requires hardware support,\n\
31e2b00f
AS
8306some target hardware may not have this support.\n\
8307\n"
8308BREAK_ARGS_HELP ("hbreak")));
5ba2abeb 8309 set_cmd_completer (c, location_completer);
c906108c 8310
1bedd215 8311 c = add_com ("thbreak", class_breakpoint, thbreak_command, _("\
31e2b00f 8312Set a temporary hardware assisted breakpoint.\n\
c906108c 8313Like \"hbreak\" except the breakpoint is only temporary,\n\
31e2b00f
AS
8314so it will be deleted when hit.\n\
8315\n"
8316BREAK_ARGS_HELP ("thbreak")));
5ba2abeb 8317 set_cmd_completer (c, location_completer);
c906108c 8318
1bedd215
AC
8319 add_prefix_cmd ("enable", class_breakpoint, enable_command, _("\
8320Enable some breakpoints.\n\
c906108c
SS
8321Give breakpoint numbers (separated by spaces) as arguments.\n\
8322With no subcommand, breakpoints are enabled until you command otherwise.\n\
8323This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 8324With a subcommand you can enable temporarily."),
c906108c
SS
8325 &enablelist, "enable ", 1, &cmdlist);
8326 if (xdb_commands)
1bedd215
AC
8327 add_com ("ab", class_breakpoint, enable_command, _("\
8328Enable some breakpoints.\n\
c906108c
SS
8329Give breakpoint numbers (separated by spaces) as arguments.\n\
8330With no subcommand, breakpoints are enabled until you command otherwise.\n\
8331This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 8332With a subcommand you can enable temporarily."));
c906108c
SS
8333
8334 add_com_alias ("en", "enable", class_breakpoint, 1);
8335
1bedd215
AC
8336 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command, _("\
8337Enable some breakpoints.\n\
c906108c
SS
8338Give breakpoint numbers (separated by spaces) as arguments.\n\
8339This is used to cancel the effect of the \"disable\" command.\n\
1bedd215 8340May be abbreviated to simply \"enable\".\n"),
c5aa993b 8341 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
c906108c 8342
1a966eab
AC
8343 add_cmd ("once", no_class, enable_once_command, _("\
8344Enable breakpoints for one hit. Give breakpoint numbers.\n\
8345If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
8346 &enablebreaklist);
8347
1a966eab
AC
8348 add_cmd ("delete", no_class, enable_delete_command, _("\
8349Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
8350If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
8351 &enablebreaklist);
8352
1a966eab
AC
8353 add_cmd ("delete", no_class, enable_delete_command, _("\
8354Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
8355If a breakpoint is hit while enabled in this fashion, it is deleted."),
c906108c
SS
8356 &enablelist);
8357
1a966eab
AC
8358 add_cmd ("once", no_class, enable_once_command, _("\
8359Enable breakpoints for one hit. Give breakpoint numbers.\n\
8360If a breakpoint is hit while enabled in this fashion, it becomes disabled."),
c906108c
SS
8361 &enablelist);
8362
1bedd215
AC
8363 add_prefix_cmd ("disable", class_breakpoint, disable_command, _("\
8364Disable some breakpoints.\n\
c906108c
SS
8365Arguments are breakpoint numbers with spaces in between.\n\
8366To disable all breakpoints, give no argument.\n\
1bedd215 8367A disabled breakpoint is not forgotten, but has no effect until reenabled."),
c906108c
SS
8368 &disablelist, "disable ", 1, &cmdlist);
8369 add_com_alias ("dis", "disable", class_breakpoint, 1);
8370 add_com_alias ("disa", "disable", class_breakpoint, 1);
8371 if (xdb_commands)
1bedd215
AC
8372 add_com ("sb", class_breakpoint, disable_command, _("\
8373Disable some breakpoints.\n\
c906108c
SS
8374Arguments are breakpoint numbers with spaces in between.\n\
8375To disable all breakpoints, give no argument.\n\
1bedd215 8376A disabled breakpoint is not forgotten, but has no effect until reenabled."));
c906108c 8377
1a966eab
AC
8378 add_cmd ("breakpoints", class_alias, disable_command, _("\
8379Disable some breakpoints.\n\
c906108c
SS
8380Arguments are breakpoint numbers with spaces in between.\n\
8381To disable all breakpoints, give no argument.\n\
8382A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
1a966eab 8383This command may be abbreviated \"disable\"."),
c906108c
SS
8384 &disablelist);
8385
1bedd215
AC
8386 add_prefix_cmd ("delete", class_breakpoint, delete_command, _("\
8387Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
8388Arguments are breakpoint numbers with spaces in between.\n\
8389To delete all breakpoints, give no argument.\n\
8390\n\
8391Also a prefix command for deletion of other GDB objects.\n\
1bedd215 8392The \"unset\" command is also an alias for \"delete\"."),
c906108c
SS
8393 &deletelist, "delete ", 1, &cmdlist);
8394 add_com_alias ("d", "delete", class_breakpoint, 1);
7f198e01 8395 add_com_alias ("del", "delete", class_breakpoint, 1);
c906108c 8396 if (xdb_commands)
1bedd215
AC
8397 add_com ("db", class_breakpoint, delete_command, _("\
8398Delete some breakpoints.\n\
c906108c 8399Arguments are breakpoint numbers with spaces in between.\n\
1bedd215 8400To delete all breakpoints, give no argument.\n"));
c906108c 8401
1a966eab
AC
8402 add_cmd ("breakpoints", class_alias, delete_command, _("\
8403Delete some breakpoints or auto-display expressions.\n\
c906108c
SS
8404Arguments are breakpoint numbers with spaces in between.\n\
8405To delete all breakpoints, give no argument.\n\
1a966eab 8406This command may be abbreviated \"delete\"."),
c906108c
SS
8407 &deletelist);
8408
1bedd215
AC
8409 add_com ("clear", class_breakpoint, clear_command, _("\
8410Clear breakpoint at specified line or function.\n\
c906108c
SS
8411Argument may be line number, function name, or \"*\" and an address.\n\
8412If line number is specified, all breakpoints in that line are cleared.\n\
8413If function is specified, breakpoints at beginning of function are cleared.\n\
1bedd215
AC
8414If an address is specified, breakpoints at that address are cleared.\n\
8415\n\
8416With no argument, clears all breakpoints in the line that the selected frame\n\
c906108c
SS
8417is executing in.\n\
8418\n\
1bedd215 8419See also the \"delete\" command which clears breakpoints by number."));
c906108c 8420
1bedd215 8421 c = add_com ("break", class_breakpoint, break_command, _("\
31e2b00f
AS
8422Set breakpoint at specified line or function.\n"
8423BREAK_ARGS_HELP ("break")));
5ba2abeb 8424 set_cmd_completer (c, location_completer);
c94fdfd0 8425
c906108c
SS
8426 add_com_alias ("b", "break", class_run, 1);
8427 add_com_alias ("br", "break", class_run, 1);
8428 add_com_alias ("bre", "break", class_run, 1);
8429 add_com_alias ("brea", "break", class_run, 1);
8430
502fd408 8431 if (xdb_commands)
c906108c
SS
8432 {
8433 add_com_alias ("ba", "break", class_breakpoint, 1);
8434 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
c906108c
SS
8435 }
8436
8437 if (dbx_commands)
8438 {
1bedd215
AC
8439 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command, _("\
8440Break in function/address or break at a line in the current file."),
c5aa993b
JM
8441 &stoplist, "stop ", 1, &cmdlist);
8442 add_cmd ("in", class_breakpoint, stopin_command,
1a966eab 8443 _("Break in function or address."), &stoplist);
c5aa993b 8444 add_cmd ("at", class_breakpoint, stopat_command,
1a966eab 8445 _("Break at a line in the current file."), &stoplist);
1bedd215
AC
8446 add_com ("status", class_info, breakpoints_info, _("\
8447Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
8448The \"Type\" column indicates one of:\n\
8449\tbreakpoint - normal breakpoint\n\
8450\twatchpoint - watchpoint\n\
8451The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
8452the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
8453breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
8454address and file/line number respectively.\n\
8455\n\
8456Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
8457are set to the address of the last breakpoint listed unless the command\n\
8458is prefixed with \"server \".\n\n\
c906108c 8459Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 8460breakpoint set."));
c906108c
SS
8461 }
8462
1bedd215
AC
8463 add_info ("breakpoints", breakpoints_info, _("\
8464Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
8465The \"Type\" column indicates one of:\n\
8466\tbreakpoint - normal breakpoint\n\
8467\twatchpoint - watchpoint\n\
8468The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
8469the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
8470breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
8471address and file/line number respectively.\n\
8472\n\
8473Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
8474are set to the address of the last breakpoint listed unless the command\n\
8475is prefixed with \"server \".\n\n\
c906108c 8476Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 8477breakpoint set."));
c906108c
SS
8478
8479 if (xdb_commands)
1bedd215
AC
8480 add_com ("lb", class_breakpoint, breakpoints_info, _("\
8481Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
8482The \"Type\" column indicates one of:\n\
8483\tbreakpoint - normal breakpoint\n\
8484\twatchpoint - watchpoint\n\
8485The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
8486the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
8487breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1bedd215
AC
8488address and file/line number respectively.\n\
8489\n\
8490Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
8491are set to the address of the last breakpoint listed unless the command\n\
8492is prefixed with \"server \".\n\n\
c906108c 8493Convenience variable \"$bpnum\" contains the number of the last\n\
1bedd215 8494breakpoint set."));
c906108c 8495
1a966eab
AC
8496 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints, _("\
8497Status of all breakpoints, or breakpoint number NUMBER.\n\
c906108c
SS
8498The \"Type\" column indicates one of:\n\
8499\tbreakpoint - normal breakpoint\n\
8500\twatchpoint - watchpoint\n\
8501\tlongjmp - internal breakpoint used to step through longjmp()\n\
8502\tlongjmp resume - internal breakpoint at the target of longjmp()\n\
8503\tuntil - internal breakpoint used by the \"until\" command\n\
1a966eab
AC
8504\tfinish - internal breakpoint used by the \"finish\" command\n\
8505The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
c906108c
SS
8506the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
8507breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
1a966eab
AC
8508address and file/line number respectively.\n\
8509\n\
8510Convenience variable \"$_\" and default examine address for \"x\"\n\
d1aa2f50
NR
8511are set to the address of the last breakpoint listed unless the command\n\
8512is prefixed with \"server \".\n\n\
c906108c 8513Convenience variable \"$bpnum\" contains the number of the last\n\
1a966eab 8514breakpoint set."),
c906108c
SS
8515 &maintenanceinfolist);
8516
44feb3ce
TT
8517 add_prefix_cmd ("catch", class_breakpoint, catch_command, _("\
8518Set catchpoints to catch events."),
8519 &catch_cmdlist, "catch ",
8520 0/*allow-unknown*/, &cmdlist);
8521
8522 add_prefix_cmd ("tcatch", class_breakpoint, tcatch_command, _("\
8523Set temporary catchpoints to catch events."),
8524 &tcatch_cmdlist, "tcatch ",
8525 0/*allow-unknown*/, &cmdlist);
8526
8527 /* Add catch and tcatch sub-commands. */
8528 add_catch_command ("catch", _("\
8529Catch an exception, when caught.\n\
8530With an argument, catch only exceptions with the given name."),
8531 catch_catch_command,
8532 CATCH_PERMANENT,
8533 CATCH_TEMPORARY);
8534 add_catch_command ("throw", _("\
8535Catch an exception, when thrown.\n\
8536With an argument, catch only exceptions with the given name."),
8537 catch_throw_command,
8538 CATCH_PERMANENT,
8539 CATCH_TEMPORARY);
8540 add_catch_command ("fork", _("Catch calls to fork."),
8541 catch_fork_command_1,
8542 (void *) (uintptr_t) catch_fork_permanent,
8543 (void *) (uintptr_t) catch_fork_temporary);
8544 add_catch_command ("vfork", _("Catch calls to vfork."),
8545 catch_fork_command_1,
8546 (void *) (uintptr_t) catch_vfork_permanent,
8547 (void *) (uintptr_t) catch_vfork_temporary);
8548 add_catch_command ("exec", _("Catch calls to exec."),
8549 catch_exec_command_1,
8550 CATCH_PERMANENT,
8551 CATCH_TEMPORARY);
8552 add_catch_command ("load", _("\
8553Catch library loads.\n\
8554With an argument, catch only loads of that library."),
8555 catch_load_command_1,
8556 CATCH_PERMANENT,
8557 CATCH_TEMPORARY);
8558 add_catch_command ("unload", _("\
8559Catch library unloads.\n\
8560With an argument, catch only unloads of that library."),
8561 catch_unload_command_1,
8562 CATCH_PERMANENT,
8563 CATCH_TEMPORARY);
8564 add_catch_command ("exception", _("\
8565Catch Ada exceptions, when raised.\n\
8566With an argument, catch only exceptions with the given name."),
8567 catch_ada_exception_command,
8568 CATCH_PERMANENT,
8569 CATCH_TEMPORARY);
8570 add_catch_command ("assert", _("\
8571Catch failed Ada assertions, when raised.\n\
8572With an argument, catch only exceptions with the given name."),
8573 catch_assert_command,
8574 CATCH_PERMANENT,
8575 CATCH_TEMPORARY);
c5aa993b 8576
1bedd215
AC
8577 c = add_com ("watch", class_breakpoint, watch_command, _("\
8578Set a watchpoint for an expression.\n\
c906108c 8579A watchpoint stops execution of your program whenever the value of\n\
1bedd215 8580an expression changes."));
65d12d83 8581 set_cmd_completer (c, expression_completer);
c906108c 8582
1bedd215
AC
8583 c = add_com ("rwatch", class_breakpoint, rwatch_command, _("\
8584Set a read watchpoint for an expression.\n\
c906108c 8585A watchpoint stops execution of your program whenever the value of\n\
1bedd215 8586an expression is read."));
65d12d83 8587 set_cmd_completer (c, expression_completer);
c906108c 8588
1bedd215
AC
8589 c = add_com ("awatch", class_breakpoint, awatch_command, _("\
8590Set a watchpoint for an expression.\n\
c906108c 8591A watchpoint stops execution of your program whenever the value of\n\
1bedd215 8592an expression is either read or written."));
65d12d83 8593 set_cmd_completer (c, expression_completer);
c906108c
SS
8594
8595 add_info ("watchpoints", breakpoints_info,
1bedd215 8596 _("Synonym for ``info breakpoints''."));
c906108c
SS
8597
8598
920d2a44
AC
8599 /* XXX: cagney/2005-02-23: This should be a boolean, and should
8600 respond to changes - contrary to the description. */
85c07804
AC
8601 add_setshow_zinteger_cmd ("can-use-hw-watchpoints", class_support,
8602 &can_use_hw_watchpoints, _("\
8603Set debugger's willingness to use watchpoint hardware."), _("\
8604Show debugger's willingness to use watchpoint hardware."), _("\
c906108c
SS
8605If zero, gdb will not use hardware for new watchpoints, even if\n\
8606such is available. (However, any hardware watchpoints that were\n\
8607created before setting this to nonzero, will continue to use watchpoint\n\
85c07804
AC
8608hardware.)"),
8609 NULL,
920d2a44 8610 show_can_use_hw_watchpoints,
85c07804 8611 &setlist, &showlist);
c906108c
SS
8612
8613 can_use_hw_watchpoints = 1;
fa8d40ab 8614
1bedd215 8615 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, _("\
fa8d40ab
JJ
8616Breakpoint specific settings\n\
8617Configure various breakpoint-specific variables such as\n\
1bedd215 8618pending breakpoint behavior"),
fa8d40ab
JJ
8619 &breakpoint_set_cmdlist, "set breakpoint ",
8620 0/*allow-unknown*/, &setlist);
1bedd215 8621 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, _("\
fa8d40ab
JJ
8622Breakpoint specific settings\n\
8623Configure various breakpoint-specific variables such as\n\
1bedd215 8624pending breakpoint behavior"),
fa8d40ab
JJ
8625 &breakpoint_show_cmdlist, "show breakpoint ",
8626 0/*allow-unknown*/, &showlist);
8627
7915a72c
AC
8628 add_setshow_auto_boolean_cmd ("pending", no_class,
8629 &pending_break_support, _("\
8630Set debugger's behavior regarding pending breakpoints."), _("\
8631Show debugger's behavior regarding pending breakpoints."), _("\
6e1d7d6c
AC
8632If on, an unrecognized breakpoint location will cause gdb to create a\n\
8633pending breakpoint. If off, an unrecognized breakpoint location results in\n\
8634an error. If auto, an unrecognized breakpoint location results in a\n\
7915a72c 8635user-query to see if a pending breakpoint should be created."),
2c5b56ce 8636 NULL,
920d2a44 8637 show_pending_break_support,
6e1d7d6c
AC
8638 &breakpoint_set_cmdlist,
8639 &breakpoint_show_cmdlist);
fa8d40ab
JJ
8640
8641 pending_break_support = AUTO_BOOLEAN_AUTO;
765dc015
VP
8642
8643 add_setshow_boolean_cmd ("auto-hw", no_class,
8644 &automatic_hardware_breakpoints, _("\
8645Set automatic usage of hardware breakpoints."), _("\
8646Show automatic usage of hardware breakpoints."), _("\
8647If set, the debugger will automatically use hardware breakpoints for\n\
8648breakpoints set with \"break\" but falling in read-only memory. If not set,\n\
8649a warning will be emitted for such breakpoints."),
8650 NULL,
8651 show_automatic_hardware_breakpoints,
8652 &breakpoint_set_cmdlist,
8653 &breakpoint_show_cmdlist);
74960c60 8654
33e5cbd6
PA
8655 add_setshow_enum_cmd ("always-inserted", class_support,
8656 always_inserted_enums, &always_inserted_mode, _("\
74960c60
VP
8657Set mode for inserting breakpoints."), _("\
8658Show mode for inserting breakpoints."), _("\
33e5cbd6
PA
8659When this mode is off, breakpoints are inserted in inferior when it is\n\
8660resumed, and removed when execution stops. When this mode is on,\n\
8661breakpoints are inserted immediately and removed only when the user\n\
8662deletes the breakpoint. When this mode is auto (which is the default),\n\
8663the behaviour depends on the non-stop setting (see help set non-stop).\n\
8664In this case, if gdb is controlling the inferior in non-stop mode, gdb\n\
8665behaves as if always-inserted mode is on; if gdb is controlling the\n\
8666inferior in all-stop mode, gdb behaves as if always-inserted mode is off."),
74960c60
VP
8667 NULL,
8668 &show_always_inserted_mode,
8669 &breakpoint_set_cmdlist,
8670 &breakpoint_show_cmdlist);
765dc015
VP
8671
8672 automatic_hardware_breakpoints = 1;
c906108c 8673}
This page took 2.105706 seconds and 4 git commands to generate.