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