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