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