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