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