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