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