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