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