822f4b76fa19d58f9a879de20c2ca5e2ee7adeb5
[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, 0, &canonical, NULL);
4466 addr_end = hookname;
4467
4468 if (sals.nelts == 0)
4469 {
4470 warning ("Unable to set a breakpoint on dynamic linker callback.");
4471 warning ("Suggest linking with /opt/langtools/lib/end.o.");
4472 warning ("GDB will be unable to track shl_load/shl_unload calls");
4473 return;
4474 }
4475 if (sals.nelts != 1)
4476 {
4477 warning ("Unable to set unique breakpoint on dynamic linker callback.");
4478 warning ("GDB will be unable to track shl_load/shl_unload calls");
4479 return;
4480 }
4481
4482 /* Make sure that all storage allocated in decode_line_1 gets freed
4483 in case the following errors out. */
4484 old_chain = make_cleanup (xfree, sals.sals);
4485 if (canonical != (char **) NULL)
4486 {
4487 make_cleanup (xfree, canonical);
4488 canonical_strings_chain = make_cleanup (null_cleanup, 0);
4489 if (canonical[0] != NULL)
4490 make_cleanup (xfree, canonical[0]);
4491 }
4492
4493 resolve_sal_pc (&sals.sals[0]);
4494
4495 /* Remove the canonical strings from the cleanup, they are needed below. */
4496 if (canonical != (char **) NULL)
4497 discard_cleanups (canonical_strings_chain);
4498
4499 b = set_raw_breakpoint (sals.sals[0], bp_kind);
4500 set_breakpoint_count (breakpoint_count + 1);
4501 b->number = breakpoint_count;
4502 b->cond = NULL;
4503 b->cond_string = (cond_string == NULL) ?
4504 NULL : savestring (cond_string, strlen (cond_string));
4505 b->thread = thread;
4506
4507 if (canonical != (char **) NULL && canonical[0] != NULL)
4508 b->addr_string = canonical[0];
4509 else if (addr_start)
4510 b->addr_string = savestring (addr_start, addr_end - addr_start);
4511
4512 b->enable_state = bp_enabled;
4513 b->disposition = tempflag ? disp_del : disp_donttouch;
4514
4515 if (dll_pathname == NULL)
4516 b->dll_pathname = NULL;
4517 else
4518 {
4519 b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
4520 strcpy (b->dll_pathname, dll_pathname);
4521 }
4522
4523 mention (b);
4524 do_cleanups (old_chain);
4525 }
4526
4527 void
4528 create_solib_load_event_breakpoint (char *hookname, int tempflag,
4529 char *dll_pathname, char *cond_string)
4530 {
4531 solib_load_unload_1 (hookname, tempflag, dll_pathname,
4532 cond_string, bp_catch_load);
4533 }
4534
4535 void
4536 create_solib_unload_event_breakpoint (char *hookname, int tempflag,
4537 char *dll_pathname, char *cond_string)
4538 {
4539 solib_load_unload_1 (hookname,tempflag, dll_pathname,
4540 cond_string, bp_catch_unload);
4541 }
4542
4543 static void
4544 create_fork_vfork_event_catchpoint (int tempflag, char *cond_string,
4545 enum bptype bp_kind)
4546 {
4547 struct symtab_and_line sal;
4548 struct breakpoint *b;
4549 int thread = -1; /* All threads. */
4550
4551 init_sal (&sal);
4552 sal.pc = 0;
4553 sal.symtab = NULL;
4554 sal.line = 0;
4555
4556 b = set_raw_breakpoint (sal, bp_kind);
4557 set_breakpoint_count (breakpoint_count + 1);
4558 b->number = breakpoint_count;
4559 b->cond = NULL;
4560 b->cond_string = (cond_string == NULL) ?
4561 NULL : savestring (cond_string, strlen (cond_string));
4562 b->thread = thread;
4563 b->addr_string = NULL;
4564 b->enable_state = bp_enabled;
4565 b->disposition = tempflag ? disp_del : disp_donttouch;
4566 b->forked_inferior_pid = 0;
4567
4568 mention (b);
4569 }
4570
4571 void
4572 create_fork_event_catchpoint (int tempflag, char *cond_string)
4573 {
4574 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
4575 }
4576
4577 void
4578 create_vfork_event_catchpoint (int tempflag, char *cond_string)
4579 {
4580 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
4581 }
4582
4583 void
4584 create_exec_event_catchpoint (int tempflag, char *cond_string)
4585 {
4586 struct symtab_and_line sal;
4587 struct breakpoint *b;
4588 int thread = -1; /* All threads. */
4589
4590 init_sal (&sal);
4591 sal.pc = 0;
4592 sal.symtab = NULL;
4593 sal.line = 0;
4594
4595 b = set_raw_breakpoint (sal, bp_catch_exec);
4596 set_breakpoint_count (breakpoint_count + 1);
4597 b->number = breakpoint_count;
4598 b->cond = NULL;
4599 b->cond_string = (cond_string == NULL) ?
4600 NULL : savestring (cond_string, strlen (cond_string));
4601 b->thread = thread;
4602 b->addr_string = NULL;
4603 b->enable_state = bp_enabled;
4604 b->disposition = tempflag ? disp_del : disp_donttouch;
4605
4606 mention (b);
4607 }
4608
4609 static int
4610 hw_breakpoint_used_count (void)
4611 {
4612 struct breakpoint *b;
4613 int i = 0;
4614
4615 ALL_BREAKPOINTS (b)
4616 {
4617 if (b->type == bp_hardware_breakpoint && b->enable_state == bp_enabled)
4618 i++;
4619 }
4620
4621 return i;
4622 }
4623
4624 static int
4625 hw_watchpoint_used_count (enum bptype type, int *other_type_used)
4626 {
4627 struct breakpoint *b;
4628 int i = 0;
4629
4630 *other_type_used = 0;
4631 ALL_BREAKPOINTS (b)
4632 {
4633 if (breakpoint_enabled (b))
4634 {
4635 if (b->type == type)
4636 i++;
4637 else if ((b->type == bp_hardware_watchpoint ||
4638 b->type == bp_read_watchpoint ||
4639 b->type == bp_access_watchpoint))
4640 *other_type_used = 1;
4641 }
4642 }
4643 return i;
4644 }
4645
4646 /* Call this after hitting the longjmp() breakpoint. Use this to set
4647 a new breakpoint at the target of the jmp_buf.
4648
4649 FIXME - This ought to be done by setting a temporary breakpoint
4650 that gets deleted automatically... */
4651
4652 void
4653 set_longjmp_resume_breakpoint (CORE_ADDR pc, struct frame_id frame_id)
4654 {
4655 struct breakpoint *b;
4656
4657 ALL_BREAKPOINTS (b)
4658 if (b->type == bp_longjmp_resume)
4659 {
4660 b->loc->requested_address = pc;
4661 b->loc->address = adjust_breakpoint_address (b->loc->requested_address,
4662 b->type);
4663 b->enable_state = bp_enabled;
4664 b->frame_id = frame_id;
4665 check_duplicates (b);
4666 return;
4667 }
4668 }
4669
4670 void
4671 disable_watchpoints_before_interactive_call_start (void)
4672 {
4673 struct breakpoint *b;
4674
4675 ALL_BREAKPOINTS (b)
4676 {
4677 if (((b->type == bp_watchpoint)
4678 || (b->type == bp_hardware_watchpoint)
4679 || (b->type == bp_read_watchpoint)
4680 || (b->type == bp_access_watchpoint)
4681 || ep_is_exception_catchpoint (b))
4682 && breakpoint_enabled (b))
4683 {
4684 b->enable_state = bp_call_disabled;
4685 check_duplicates (b);
4686 }
4687 }
4688 }
4689
4690 void
4691 enable_watchpoints_after_interactive_call_stop (void)
4692 {
4693 struct breakpoint *b;
4694
4695 ALL_BREAKPOINTS (b)
4696 {
4697 if (((b->type == bp_watchpoint)
4698 || (b->type == bp_hardware_watchpoint)
4699 || (b->type == bp_read_watchpoint)
4700 || (b->type == bp_access_watchpoint)
4701 || ep_is_exception_catchpoint (b))
4702 && (b->enable_state == bp_call_disabled))
4703 {
4704 b->enable_state = bp_enabled;
4705 check_duplicates (b);
4706 }
4707 }
4708 }
4709
4710
4711 /* Set a breakpoint that will evaporate an end of command
4712 at address specified by SAL.
4713 Restrict it to frame FRAME if FRAME is nonzero. */
4714
4715 struct breakpoint *
4716 set_momentary_breakpoint (struct symtab_and_line sal, struct frame_id frame_id,
4717 enum bptype type)
4718 {
4719 struct breakpoint *b;
4720 b = set_raw_breakpoint (sal, type);
4721 b->enable_state = bp_enabled;
4722 b->disposition = disp_donttouch;
4723 b->frame_id = frame_id;
4724
4725 /* If we're debugging a multi-threaded program, then we
4726 want momentary breakpoints to be active in only a
4727 single thread of control. */
4728 if (in_thread_list (inferior_ptid))
4729 b->thread = pid_to_thread_id (inferior_ptid);
4730
4731 return b;
4732 }
4733 \f
4734
4735 /* Tell the user we have just set a breakpoint B. */
4736
4737 static void
4738 mention (struct breakpoint *b)
4739 {
4740 int say_where = 0;
4741 struct cleanup *old_chain, *ui_out_chain;
4742 struct ui_stream *stb;
4743
4744 stb = ui_out_stream_new (uiout);
4745 old_chain = make_cleanup_ui_out_stream_delete (stb);
4746
4747 /* FIXME: This is misplaced; mention() is called by things (like
4748 hitting a watchpoint) other than breakpoint creation. It should
4749 be possible to clean this up and at the same time replace the
4750 random calls to breakpoint_changed with this hook, as has already
4751 been done for deprecated_delete_breakpoint_hook and so on. */
4752 if (deprecated_create_breakpoint_hook)
4753 deprecated_create_breakpoint_hook (b);
4754 breakpoint_create_event (b->number);
4755
4756 if (b->ops != NULL && b->ops->print_mention != NULL)
4757 b->ops->print_mention (b);
4758 else
4759 switch (b->type)
4760 {
4761 case bp_none:
4762 printf_filtered ("(apparently deleted?) Eventpoint %d: ", b->number);
4763 break;
4764 case bp_watchpoint:
4765 ui_out_text (uiout, "Watchpoint ");
4766 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4767 ui_out_field_int (uiout, "number", b->number);
4768 ui_out_text (uiout, ": ");
4769 print_expression (b->exp, stb->stream);
4770 ui_out_field_stream (uiout, "exp", stb);
4771 do_cleanups (ui_out_chain);
4772 break;
4773 case bp_hardware_watchpoint:
4774 ui_out_text (uiout, "Hardware watchpoint ");
4775 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "wpt");
4776 ui_out_field_int (uiout, "number", b->number);
4777 ui_out_text (uiout, ": ");
4778 print_expression (b->exp, stb->stream);
4779 ui_out_field_stream (uiout, "exp", stb);
4780 do_cleanups (ui_out_chain);
4781 break;
4782 case bp_read_watchpoint:
4783 ui_out_text (uiout, "Hardware read watchpoint ");
4784 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-rwpt");
4785 ui_out_field_int (uiout, "number", b->number);
4786 ui_out_text (uiout, ": ");
4787 print_expression (b->exp, stb->stream);
4788 ui_out_field_stream (uiout, "exp", stb);
4789 do_cleanups (ui_out_chain);
4790 break;
4791 case bp_access_watchpoint:
4792 ui_out_text (uiout, "Hardware access (read/write) watchpoint ");
4793 ui_out_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "hw-awpt");
4794 ui_out_field_int (uiout, "number", b->number);
4795 ui_out_text (uiout, ": ");
4796 print_expression (b->exp, stb->stream);
4797 ui_out_field_stream (uiout, "exp", stb);
4798 do_cleanups (ui_out_chain);
4799 break;
4800 case bp_breakpoint:
4801 if (ui_out_is_mi_like_p (uiout))
4802 {
4803 say_where = 0;
4804 break;
4805 }
4806 printf_filtered ("Breakpoint %d", b->number);
4807 say_where = 1;
4808 break;
4809 case bp_hardware_breakpoint:
4810 if (ui_out_is_mi_like_p (uiout))
4811 {
4812 say_where = 0;
4813 break;
4814 }
4815 printf_filtered ("Hardware assisted breakpoint %d", b->number);
4816 say_where = 1;
4817 break;
4818 case bp_catch_load:
4819 case bp_catch_unload:
4820 printf_filtered ("Catchpoint %d (%s %s)",
4821 b->number,
4822 (b->type == bp_catch_load) ? "load" : "unload",
4823 (b->dll_pathname != NULL) ?
4824 b->dll_pathname : "<any library>");
4825 break;
4826 case bp_catch_fork:
4827 case bp_catch_vfork:
4828 printf_filtered ("Catchpoint %d (%s)",
4829 b->number,
4830 (b->type == bp_catch_fork) ? "fork" : "vfork");
4831 break;
4832 case bp_catch_exec:
4833 printf_filtered ("Catchpoint %d (exec)",
4834 b->number);
4835 break;
4836 case bp_catch_catch:
4837 case bp_catch_throw:
4838 printf_filtered ("Catchpoint %d (%s)",
4839 b->number,
4840 (b->type == bp_catch_catch) ? "catch" : "throw");
4841 break;
4842
4843 case bp_until:
4844 case bp_finish:
4845 case bp_longjmp:
4846 case bp_longjmp_resume:
4847 case bp_step_resume:
4848 case bp_through_sigtramp:
4849 case bp_call_dummy:
4850 case bp_watchpoint_scope:
4851 case bp_shlib_event:
4852 case bp_thread_event:
4853 case bp_overlay_event:
4854 break;
4855 }
4856
4857 if (say_where)
4858 {
4859 if (b->pending)
4860 {
4861 printf_filtered (" (%s) pending.", b->addr_string);
4862 }
4863 else
4864 {
4865 if (addressprint || b->source_file == NULL)
4866 {
4867 printf_filtered (" at ");
4868 print_address_numeric (b->loc->address, 1, gdb_stdout);
4869 }
4870 if (b->source_file)
4871 printf_filtered (": file %s, line %d.",
4872 b->source_file, b->line_number);
4873 }
4874 }
4875 do_cleanups (old_chain);
4876 if (ui_out_is_mi_like_p (uiout))
4877 return;
4878 printf_filtered ("\n");
4879 }
4880 \f
4881
4882 /* Add SALS.nelts breakpoints to the breakpoint table. For each
4883 SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i],
4884 COND[i] and COND_STRING[i] values.
4885
4886 The parameter PENDING_BP points to a pending breakpoint that is
4887 the basis of the breakpoints currently being created. The pending
4888 breakpoint may contain a separate condition string or commands
4889 that were added after the initial pending breakpoint was created.
4890
4891 NOTE: If the function succeeds, the caller is expected to cleanup
4892 the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the
4893 array contents). If the function fails (error() is called), the
4894 caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4895 COND and SALS arrays and each of those arrays contents. */
4896
4897 static void
4898 create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
4899 struct expression **cond, char **cond_string,
4900 enum bptype type, enum bpdisp disposition,
4901 int thread, int ignore_count, int from_tty,
4902 struct breakpoint *pending_bp)
4903 {
4904 if (type == bp_hardware_breakpoint)
4905 {
4906 int i = hw_breakpoint_used_count ();
4907 int target_resources_ok =
4908 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
4909 i + sals.nelts, 0);
4910 if (target_resources_ok == 0)
4911 error ("No hardware breakpoint support in the target.");
4912 else if (target_resources_ok < 0)
4913 error ("Hardware breakpoints used exceeds limit.");
4914 }
4915
4916 /* Now set all the breakpoints. */
4917 {
4918 int i;
4919 for (i = 0; i < sals.nelts; i++)
4920 {
4921 struct breakpoint *b;
4922 struct symtab_and_line sal = sals.sals[i];
4923
4924 if (from_tty)
4925 describe_other_breakpoints (sal.pc, sal.section);
4926
4927 b = set_raw_breakpoint (sal, type);
4928 set_breakpoint_count (breakpoint_count + 1);
4929 b->number = breakpoint_count;
4930 b->cond = cond[i];
4931 b->thread = thread;
4932 if (addr_string[i])
4933 b->addr_string = addr_string[i];
4934 else
4935 /* addr_string has to be used or breakpoint_re_set will delete
4936 me. */
4937 b->addr_string = xstrprintf ("*0x%s", paddr (b->loc->address));
4938 b->cond_string = cond_string[i];
4939 b->ignore_count = ignore_count;
4940 b->enable_state = bp_enabled;
4941 b->disposition = disposition;
4942 /* If resolving a pending breakpoint, a check must be made to see if
4943 the user has specified a new condition or commands for the
4944 breakpoint. A new condition will override any condition that was
4945 initially specified with the initial breakpoint command. */
4946 if (pending_bp)
4947 {
4948 char *arg;
4949 if (pending_bp->cond_string)
4950 {
4951 arg = pending_bp->cond_string;
4952 b->cond_string = savestring (arg, strlen (arg));
4953 b->cond = parse_exp_1 (&arg, block_for_pc (b->loc->address), 0);
4954 if (*arg)
4955 error ("Junk at end of pending breakpoint condition expression");
4956 }
4957 /* If there are commands associated with the breakpoint, they should
4958 be copied too. */
4959 if (pending_bp->commands)
4960 b->commands = copy_command_lines (pending_bp->commands);
4961
4962 /* We have to copy over the ignore_count and thread as well. */
4963 b->ignore_count = pending_bp->ignore_count;
4964 b->thread = pending_bp->thread;
4965 }
4966 mention (b);
4967 }
4968 }
4969 }
4970
4971 /* Parse ARG which is assumed to be a SAL specification possibly
4972 followed by conditionals. On return, SALS contains an array of SAL
4973 addresses found. ADDR_STRING contains a vector of (canonical)
4974 address strings. ARG points to the end of the SAL. */
4975
4976 static void
4977 parse_breakpoint_sals (char **address,
4978 struct symtabs_and_lines *sals,
4979 char ***addr_string,
4980 int *not_found_ptr)
4981 {
4982 char *addr_start = *address;
4983 *addr_string = NULL;
4984 /* If no arg given, or if first arg is 'if ', use the default
4985 breakpoint. */
4986 if ((*address) == NULL
4987 || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
4988 {
4989 if (default_breakpoint_valid)
4990 {
4991 struct symtab_and_line sal;
4992 init_sal (&sal); /* initialize to zeroes */
4993 sals->sals = (struct symtab_and_line *)
4994 xmalloc (sizeof (struct symtab_and_line));
4995 sal.pc = default_breakpoint_address;
4996 sal.line = default_breakpoint_line;
4997 sal.symtab = default_breakpoint_symtab;
4998 sal.section = find_pc_overlay (sal.pc);
4999 sals->sals[0] = sal;
5000 sals->nelts = 1;
5001 }
5002 else
5003 error ("No default breakpoint address now.");
5004 }
5005 else
5006 {
5007 /* Force almost all breakpoints to be in terms of the
5008 current_source_symtab (which is decode_line_1's default). This
5009 should produce the results we want almost all of the time while
5010 leaving default_breakpoint_* alone.
5011 ObjC: However, don't match an Objective-C method name which
5012 may have a '+' or '-' succeeded by a '[' */
5013
5014 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
5015
5016 if (default_breakpoint_valid
5017 && (!cursal.symtab
5018 || ((strchr ("+-", (*address)[0]) != NULL)
5019 && ((*address)[1] != '['))))
5020 *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
5021 default_breakpoint_line, addr_string,
5022 not_found_ptr);
5023 else
5024 *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0,
5025 addr_string, not_found_ptr);
5026 }
5027 /* For any SAL that didn't have a canonical string, fill one in. */
5028 if (sals->nelts > 0 && *addr_string == NULL)
5029 *addr_string = xcalloc (sals->nelts, sizeof (char **));
5030 if (addr_start != (*address))
5031 {
5032 int i;
5033 for (i = 0; i < sals->nelts; i++)
5034 {
5035 /* Add the string if not present. */
5036 if ((*addr_string)[i] == NULL)
5037 (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
5038 }
5039 }
5040 }
5041
5042
5043 /* Convert each SAL into a real PC. Verify that the PC can be
5044 inserted as a breakpoint. If it can't throw an error. */
5045
5046 static void
5047 breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
5048 char *address)
5049 {
5050 int i;
5051 for (i = 0; i < sals->nelts; i++)
5052 {
5053 resolve_sal_pc (&sals->sals[i]);
5054
5055 /* It's possible for the PC to be nonzero, but still an illegal
5056 value on some targets.
5057
5058 For example, on HP-UX if you start gdb, and before running the
5059 inferior you try to set a breakpoint on a shared library function
5060 "foo" where the inferior doesn't call "foo" directly but does
5061 pass its address to another function call, then we do find a
5062 minimal symbol for the "foo", but it's address is invalid.
5063 (Appears to be an index into a table that the loader sets up
5064 when the inferior is run.)
5065
5066 Give the target a chance to bless sals.sals[i].pc before we
5067 try to make a breakpoint for it. */
5068 #ifdef DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE
5069 if (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc))
5070 {
5071 if (address == NULL)
5072 error ("Cannot break without a running program.");
5073 else
5074 error ("Cannot break on %s without a running program.",
5075 address);
5076 }
5077 #endif
5078 }
5079 }
5080
5081 static int
5082 do_captured_parse_breakpoint (struct ui_out *ui, void *data)
5083 {
5084 struct captured_parse_breakpoint_args *args = data;
5085
5086 parse_breakpoint_sals (args->arg_p, args->sals_p, args->addr_string_p,
5087 args->not_found_ptr);
5088
5089 return GDB_RC_OK;
5090 }
5091
5092 /* Set a breakpoint according to ARG (function, linenum or *address)
5093 flag: first bit : 0 non-temporary, 1 temporary.
5094 second bit : 0 normal breakpoint, 1 hardware breakpoint.
5095
5096 PENDING_BP is non-NULL when this function is being called to resolve
5097 a pending breakpoint. */
5098
5099 static int
5100 break_command_1 (char *arg, int flag, int from_tty, struct breakpoint *pending_bp)
5101 {
5102 int tempflag, hardwareflag;
5103 struct symtabs_and_lines sals;
5104 struct expression **cond = 0;
5105 struct symtab_and_line pending_sal;
5106 char **cond_string = (char **) NULL;
5107 char *copy_arg;
5108 char *err_msg;
5109 char *addr_start = arg;
5110 char **addr_string;
5111 struct cleanup *old_chain;
5112 struct cleanup *breakpoint_chain = NULL;
5113 struct captured_parse_breakpoint_args parse_args;
5114 int i, rc;
5115 int pending = 0;
5116 int thread = -1;
5117 int ignore_count = 0;
5118 int not_found = 0;
5119
5120 hardwareflag = flag & BP_HARDWAREFLAG;
5121 tempflag = flag & BP_TEMPFLAG;
5122
5123 sals.sals = NULL;
5124 sals.nelts = 0;
5125 addr_string = NULL;
5126
5127 parse_args.arg_p = &arg;
5128 parse_args.sals_p = &sals;
5129 parse_args.addr_string_p = &addr_string;
5130 parse_args.not_found_ptr = &not_found;
5131
5132 rc = catch_exceptions_with_msg (uiout, do_captured_parse_breakpoint,
5133 &parse_args, NULL, &err_msg,
5134 RETURN_MASK_ALL);
5135
5136 /* If caller is interested in rc value from parse, set value. */
5137
5138 if (rc != GDB_RC_OK)
5139 {
5140 /* Check for file or function not found. */
5141 if (not_found)
5142 {
5143 /* If called to resolve pending breakpoint, just return error code. */
5144 if (pending_bp)
5145 {
5146 xfree (err_msg);
5147 return rc;
5148 }
5149
5150 error_output_message (NULL, err_msg);
5151 xfree (err_msg);
5152
5153 /* If pending breakpoint support is turned off, throw error. */
5154
5155 if (pending_break_support == AUTO_BOOLEAN_FALSE)
5156 throw_reason (RETURN_ERROR);
5157
5158 /* If pending breakpoint support is auto query and the user selects
5159 no, then simply return the error code. */
5160 if (pending_break_support == AUTO_BOOLEAN_AUTO &&
5161 !nquery ("Make breakpoint pending on future shared library load? "))
5162 return rc;
5163
5164 /* At this point, either the user was queried about setting a
5165 pending breakpoint and selected yes, or pending breakpoint
5166 behavior is on and thus a pending breakpoint is defaulted
5167 on behalf of the user. */
5168 copy_arg = xstrdup (addr_start);
5169 addr_string = &copy_arg;
5170 sals.nelts = 1;
5171 sals.sals = &pending_sal;
5172 pending_sal.pc = 0;
5173 pending = 1;
5174 }
5175 else
5176 {
5177 xfree (err_msg);
5178 return rc;
5179 }
5180 }
5181 else if (!sals.nelts)
5182 return GDB_RC_FAIL;
5183
5184 /* Create a chain of things that always need to be cleaned up. */
5185 old_chain = make_cleanup (null_cleanup, 0);
5186
5187 if (!pending)
5188 {
5189 /* Make sure that all storage allocated to SALS gets freed. */
5190 make_cleanup (xfree, sals.sals);
5191
5192 /* Cleanup the addr_string array but not its contents. */
5193 make_cleanup (xfree, addr_string);
5194 }
5195
5196 /* Allocate space for all the cond expressions. */
5197 cond = xcalloc (sals.nelts, sizeof (struct expression *));
5198 make_cleanup (xfree, cond);
5199
5200 /* Allocate space for all the cond strings. */
5201 cond_string = xcalloc (sals.nelts, sizeof (char **));
5202 make_cleanup (xfree, cond_string);
5203
5204 /* ----------------------------- SNIP -----------------------------
5205 Anything added to the cleanup chain beyond this point is assumed
5206 to be part of a breakpoint. If the breakpoint create succeeds
5207 then the memory is not reclaimed. */
5208 breakpoint_chain = make_cleanup (null_cleanup, 0);
5209
5210 /* Mark the contents of the addr_string for cleanup. These go on
5211 the breakpoint_chain and only occure if the breakpoint create
5212 fails. */
5213 for (i = 0; i < sals.nelts; i++)
5214 {
5215 if (addr_string[i] != NULL)
5216 make_cleanup (xfree, addr_string[i]);
5217 }
5218
5219 /* Resolve all line numbers to PC's and verify that the addresses
5220 are ok for the target. */
5221 if (!pending)
5222 breakpoint_sals_to_pc (&sals, addr_start);
5223
5224 /* Verify that condition can be parsed, before setting any
5225 breakpoints. Allocate a separate condition expression for each
5226 breakpoint. */
5227 thread = -1; /* No specific thread yet */
5228 if (!pending)
5229 {
5230 for (i = 0; i < sals.nelts; i++)
5231 {
5232 char *tok = arg;
5233 while (tok && *tok)
5234 {
5235 char *end_tok;
5236 int toklen;
5237 char *cond_start = NULL;
5238 char *cond_end = NULL;
5239 while (*tok == ' ' || *tok == '\t')
5240 tok++;
5241
5242 end_tok = tok;
5243
5244 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5245 end_tok++;
5246
5247 toklen = end_tok - tok;
5248
5249 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5250 {
5251 tok = cond_start = end_tok + 1;
5252 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc),
5253 0);
5254 make_cleanup (xfree, cond[i]);
5255 cond_end = tok;
5256 cond_string[i] = savestring (cond_start,
5257 cond_end - cond_start);
5258 make_cleanup (xfree, cond_string[i]);
5259 }
5260 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
5261 {
5262 char *tmptok;
5263
5264 tok = end_tok + 1;
5265 tmptok = tok;
5266 thread = strtol (tok, &tok, 0);
5267 if (tok == tmptok)
5268 error ("Junk after thread keyword.");
5269 if (!valid_thread_id (thread))
5270 error ("Unknown thread %d\n", thread);
5271 }
5272 else
5273 error ("Junk at end of arguments.");
5274 }
5275 }
5276 create_breakpoints (sals, addr_string, cond, cond_string,
5277 hardwareflag ? bp_hardware_breakpoint
5278 : bp_breakpoint,
5279 tempflag ? disp_del : disp_donttouch,
5280 thread, ignore_count, from_tty,
5281 pending_bp);
5282 }
5283 else
5284 {
5285 struct symtab_and_line sal;
5286 struct breakpoint *b;
5287
5288 sal.symtab = NULL;
5289 sal.pc = 0;
5290
5291 make_cleanup (xfree, copy_arg);
5292
5293 b = set_raw_breakpoint (sal, hardwareflag ? bp_hardware_breakpoint
5294 : bp_breakpoint);
5295 set_breakpoint_count (breakpoint_count + 1);
5296 b->number = breakpoint_count;
5297 b->cond = *cond;
5298 b->thread = thread;
5299 b->addr_string = *addr_string;
5300 b->cond_string = *cond_string;
5301 b->ignore_count = ignore_count;
5302 b->pending = 1;
5303 b->disposition = tempflag ? disp_del : disp_donttouch;
5304 b->from_tty = from_tty;
5305 b->flag = flag;
5306 mention (b);
5307 }
5308
5309 if (sals.nelts > 1)
5310 {
5311 warning ("Multiple breakpoints were set.");
5312 warning ("Use the \"delete\" command to delete unwanted breakpoints.");
5313 }
5314 /* That's it. Discard the cleanups for data inserted into the
5315 breakpoint. */
5316 discard_cleanups (breakpoint_chain);
5317 /* But cleanup everything else. */
5318 do_cleanups (old_chain);
5319
5320 return GDB_RC_OK;
5321 }
5322
5323 /* Set a breakpoint of TYPE/DISPOSITION according to ARG (function,
5324 linenum or *address) with COND and IGNORE_COUNT. */
5325
5326 struct captured_breakpoint_args
5327 {
5328 char *address;
5329 char *condition;
5330 int hardwareflag;
5331 int tempflag;
5332 int thread;
5333 int ignore_count;
5334 };
5335
5336 static int
5337 do_captured_breakpoint (struct ui_out *uiout, void *data)
5338 {
5339 struct captured_breakpoint_args *args = data;
5340 struct symtabs_and_lines sals;
5341 struct expression **cond;
5342 struct cleanup *old_chain;
5343 struct cleanup *breakpoint_chain = NULL;
5344 int i;
5345 char **addr_string;
5346 char **cond_string;
5347
5348 char *address_end;
5349
5350 /* Parse the source and lines spec. Delay check that the expression
5351 didn't contain trailing garbage until after cleanups are in
5352 place. */
5353 sals.sals = NULL;
5354 sals.nelts = 0;
5355 address_end = args->address;
5356 addr_string = NULL;
5357 parse_breakpoint_sals (&address_end, &sals, &addr_string, 0);
5358
5359 if (!sals.nelts)
5360 return GDB_RC_NONE;
5361
5362 /* Create a chain of things at always need to be cleaned up. */
5363 old_chain = make_cleanup (null_cleanup, 0);
5364
5365 /* Always have a addr_string array, even if it is empty. */
5366 make_cleanup (xfree, addr_string);
5367
5368 /* Make sure that all storage allocated to SALS gets freed. */
5369 make_cleanup (xfree, sals.sals);
5370
5371 /* Allocate space for all the cond expressions. */
5372 cond = xcalloc (sals.nelts, sizeof (struct expression *));
5373 make_cleanup (xfree, cond);
5374
5375 /* Allocate space for all the cond strings. */
5376 cond_string = xcalloc (sals.nelts, sizeof (char **));
5377 make_cleanup (xfree, cond_string);
5378
5379 /* ----------------------------- SNIP -----------------------------
5380 Anything added to the cleanup chain beyond this point is assumed
5381 to be part of a breakpoint. If the breakpoint create goes
5382 through then that memory is not cleaned up. */
5383 breakpoint_chain = make_cleanup (null_cleanup, 0);
5384
5385 /* Mark the contents of the addr_string for cleanup. These go on
5386 the breakpoint_chain and only occure if the breakpoint create
5387 fails. */
5388 for (i = 0; i < sals.nelts; i++)
5389 {
5390 if (addr_string[i] != NULL)
5391 make_cleanup (xfree, addr_string[i]);
5392 }
5393
5394 /* Wait until now before checking for garbage at the end of the
5395 address. That way cleanups can take care of freeing any
5396 memory. */
5397 if (*address_end != '\0')
5398 error ("Garbage %s following breakpoint address", address_end);
5399
5400 /* Resolve all line numbers to PC's. */
5401 breakpoint_sals_to_pc (&sals, args->address);
5402
5403 /* Verify that conditions can be parsed, before setting any
5404 breakpoints. */
5405 for (i = 0; i < sals.nelts; i++)
5406 {
5407 if (args->condition != NULL)
5408 {
5409 char *tok = args->condition;
5410 cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
5411 if (*tok != '\0')
5412 error ("Garbage %s follows condition", tok);
5413 make_cleanup (xfree, cond[i]);
5414 cond_string[i] = xstrdup (args->condition);
5415 }
5416 }
5417
5418 create_breakpoints (sals, addr_string, cond, cond_string,
5419 args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
5420 args->tempflag ? disp_del : disp_donttouch,
5421 args->thread, args->ignore_count, 0/*from-tty*/,
5422 NULL/*pending_bp*/);
5423
5424 /* That's it. Discard the cleanups for data inserted into the
5425 breakpoint. */
5426 discard_cleanups (breakpoint_chain);
5427 /* But cleanup everything else. */
5428 do_cleanups (old_chain);
5429 return GDB_RC_OK;
5430 }
5431
5432 enum gdb_rc
5433 gdb_breakpoint (char *address, char *condition,
5434 int hardwareflag, int tempflag,
5435 int thread, int ignore_count,
5436 char **error_message)
5437 {
5438 struct captured_breakpoint_args args;
5439 args.address = address;
5440 args.condition = condition;
5441 args.hardwareflag = hardwareflag;
5442 args.tempflag = tempflag;
5443 args.thread = thread;
5444 args.ignore_count = ignore_count;
5445 return catch_exceptions_with_msg (uiout, do_captured_breakpoint, &args,
5446 NULL, error_message, RETURN_MASK_ALL);
5447 }
5448
5449
5450 /* Helper function for break_command_1 and disassemble_command. */
5451
5452 void
5453 resolve_sal_pc (struct symtab_and_line *sal)
5454 {
5455 CORE_ADDR pc;
5456
5457 if (sal->pc == 0 && sal->symtab != NULL)
5458 {
5459 if (!find_line_pc (sal->symtab, sal->line, &pc))
5460 error ("No line %d in file \"%s\".",
5461 sal->line, sal->symtab->filename);
5462 sal->pc = pc;
5463 }
5464
5465 if (sal->section == 0 && sal->symtab != NULL)
5466 {
5467 struct blockvector *bv;
5468 struct block *b;
5469 struct symbol *sym;
5470 int index;
5471
5472 bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
5473 if (bv != NULL)
5474 {
5475 b = BLOCKVECTOR_BLOCK (bv, index);
5476 sym = block_function (b);
5477 if (sym != NULL)
5478 {
5479 fixup_symbol_section (sym, sal->symtab->objfile);
5480 sal->section = SYMBOL_BFD_SECTION (sym);
5481 }
5482 else
5483 {
5484 /* It really is worthwhile to have the section, so we'll just
5485 have to look harder. This case can be executed if we have
5486 line numbers but no functions (as can happen in assembly
5487 source). */
5488
5489 struct minimal_symbol *msym;
5490
5491 msym = lookup_minimal_symbol_by_pc (sal->pc);
5492 if (msym)
5493 sal->section = SYMBOL_BFD_SECTION (msym);
5494 }
5495 }
5496 }
5497 }
5498
5499 void
5500 break_command (char *arg, int from_tty)
5501 {
5502 break_command_1 (arg, 0, from_tty, NULL);
5503 }
5504
5505 void
5506 tbreak_command (char *arg, int from_tty)
5507 {
5508 break_command_1 (arg, BP_TEMPFLAG, from_tty, NULL);
5509 }
5510
5511 static void
5512 hbreak_command (char *arg, int from_tty)
5513 {
5514 break_command_1 (arg, BP_HARDWAREFLAG, from_tty, NULL);
5515 }
5516
5517 static void
5518 thbreak_command (char *arg, int from_tty)
5519 {
5520 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty, NULL);
5521 }
5522
5523 static void
5524 stop_command (char *arg, int from_tty)
5525 {
5526 printf_filtered ("Specify the type of breakpoint to set.\n\
5527 Usage: stop in <function | address>\n\
5528 stop at <line>\n");
5529 }
5530
5531 static void
5532 stopin_command (char *arg, int from_tty)
5533 {
5534 int badInput = 0;
5535
5536 if (arg == (char *) NULL)
5537 badInput = 1;
5538 else if (*arg != '*')
5539 {
5540 char *argptr = arg;
5541 int hasColon = 0;
5542
5543 /* look for a ':'. If this is a line number specification, then
5544 say it is bad, otherwise, it should be an address or
5545 function/method name */
5546 while (*argptr && !hasColon)
5547 {
5548 hasColon = (*argptr == ':');
5549 argptr++;
5550 }
5551
5552 if (hasColon)
5553 badInput = (*argptr != ':'); /* Not a class::method */
5554 else
5555 badInput = isdigit (*arg); /* a simple line number */
5556 }
5557
5558 if (badInput)
5559 printf_filtered ("Usage: stop in <function | address>\n");
5560 else
5561 break_command_1 (arg, 0, from_tty, NULL);
5562 }
5563
5564 static void
5565 stopat_command (char *arg, int from_tty)
5566 {
5567 int badInput = 0;
5568
5569 if (arg == (char *) NULL || *arg == '*') /* no line number */
5570 badInput = 1;
5571 else
5572 {
5573 char *argptr = arg;
5574 int hasColon = 0;
5575
5576 /* look for a ':'. If there is a '::' then get out, otherwise
5577 it is probably a line number. */
5578 while (*argptr && !hasColon)
5579 {
5580 hasColon = (*argptr == ':');
5581 argptr++;
5582 }
5583
5584 if (hasColon)
5585 badInput = (*argptr == ':'); /* we have class::method */
5586 else
5587 badInput = !isdigit (*arg); /* not a line number */
5588 }
5589
5590 if (badInput)
5591 printf_filtered ("Usage: stop at <line>\n");
5592 else
5593 break_command_1 (arg, 0, from_tty, NULL);
5594 }
5595
5596 /* accessflag: hw_write: watch write,
5597 hw_read: watch read,
5598 hw_access: watch access (read or write) */
5599 static void
5600 watch_command_1 (char *arg, int accessflag, int from_tty)
5601 {
5602 struct breakpoint *b;
5603 struct symtab_and_line sal;
5604 struct expression *exp;
5605 struct block *exp_valid_block;
5606 struct value *val, *mark;
5607 struct frame_info *frame;
5608 struct frame_info *prev_frame = NULL;
5609 char *exp_start = NULL;
5610 char *exp_end = NULL;
5611 char *tok, *end_tok;
5612 int toklen;
5613 char *cond_start = NULL;
5614 char *cond_end = NULL;
5615 struct expression *cond = NULL;
5616 int i, other_type_used, target_resources_ok = 0;
5617 enum bptype bp_type;
5618 int mem_cnt = 0;
5619
5620 init_sal (&sal); /* initialize to zeroes */
5621
5622 /* Parse arguments. */
5623 innermost_block = NULL;
5624 exp_start = arg;
5625 exp = parse_exp_1 (&arg, 0, 0);
5626 exp_end = arg;
5627 exp_valid_block = innermost_block;
5628 mark = value_mark ();
5629 val = evaluate_expression (exp);
5630 release_value (val);
5631 if (VALUE_LAZY (val))
5632 value_fetch_lazy (val);
5633
5634 tok = arg;
5635 while (*tok == ' ' || *tok == '\t')
5636 tok++;
5637 end_tok = tok;
5638
5639 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
5640 end_tok++;
5641
5642 toklen = end_tok - tok;
5643 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
5644 {
5645 tok = cond_start = end_tok + 1;
5646 cond = parse_exp_1 (&tok, 0, 0);
5647 cond_end = tok;
5648 }
5649 if (*tok)
5650 error ("Junk at end of command.");
5651
5652 if (accessflag == hw_read)
5653 bp_type = bp_read_watchpoint;
5654 else if (accessflag == hw_access)
5655 bp_type = bp_access_watchpoint;
5656 else
5657 bp_type = bp_hardware_watchpoint;
5658
5659 mem_cnt = can_use_hardware_watchpoint (val);
5660 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
5661 error ("Expression cannot be implemented with read/access watchpoint.");
5662 if (mem_cnt != 0)
5663 {
5664 i = hw_watchpoint_used_count (bp_type, &other_type_used);
5665 target_resources_ok =
5666 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt,
5667 other_type_used);
5668 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
5669 error ("Target does not support this type of hardware watchpoint.");
5670
5671 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
5672 error ("Target can only support one kind of HW watchpoint at a time.");
5673 }
5674
5675 #if defined(HPUXHPPA)
5676 /* On HP-UX if you set a h/w
5677 watchpoint before the "run" command, the inferior dies with a e.g.,
5678 SIGILL once you start it. I initially believed this was due to a
5679 bad interaction between page protection traps and the initial
5680 startup sequence by the dynamic linker.
5681
5682 However, I tried avoiding that by having HP-UX's implementation of
5683 TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_ptid
5684 yet, which forced slow watches before a "run" or "attach", and it
5685 still fails somewhere in the startup code.
5686
5687 Until I figure out what's happening, I'm disallowing watches altogether
5688 before the "run" or "attach" command. We'll tell the user they must
5689 set watches after getting the program started. */
5690 if (!target_has_execution)
5691 {
5692 warning ("can't do that without a running program; try \"break main\", \"run\" first");
5693 return;
5694 }
5695 #endif /* HPUXHPPA */
5696
5697 /* Change the type of breakpoint to an ordinary watchpoint if a hardware
5698 watchpoint could not be set. */
5699 if (!mem_cnt || target_resources_ok <= 0)
5700 bp_type = bp_watchpoint;
5701
5702 /* Now set up the breakpoint. */
5703 b = set_raw_breakpoint (sal, bp_type);
5704 set_breakpoint_count (breakpoint_count + 1);
5705 b->number = breakpoint_count;
5706 b->disposition = disp_donttouch;
5707 b->exp = exp;
5708 b->exp_valid_block = exp_valid_block;
5709 b->exp_string = savestring (exp_start, exp_end - exp_start);
5710 b->val = val;
5711 b->cond = cond;
5712 if (cond_start)
5713 b->cond_string = savestring (cond_start, cond_end - cond_start);
5714 else
5715 b->cond_string = 0;
5716
5717 frame = block_innermost_frame (exp_valid_block);
5718 if (frame)
5719 {
5720 prev_frame = get_prev_frame (frame);
5721 b->watchpoint_frame = get_frame_id (frame);
5722 }
5723 else
5724 {
5725 memset (&b->watchpoint_frame, 0, sizeof (b->watchpoint_frame));
5726 }
5727
5728 /* If the expression is "local", then set up a "watchpoint scope"
5729 breakpoint at the point where we've left the scope of the watchpoint
5730 expression. */
5731 if (innermost_block)
5732 {
5733 if (prev_frame)
5734 {
5735 struct breakpoint *scope_breakpoint;
5736 scope_breakpoint = create_internal_breakpoint (get_frame_pc (prev_frame),
5737 bp_watchpoint_scope);
5738
5739 scope_breakpoint->enable_state = bp_enabled;
5740
5741 /* Automatically delete the breakpoint when it hits. */
5742 scope_breakpoint->disposition = disp_del;
5743
5744 /* Only break in the proper frame (help with recursion). */
5745 scope_breakpoint->frame_id = get_frame_id (prev_frame);
5746
5747 /* Set the address at which we will stop. */
5748 scope_breakpoint->loc->requested_address
5749 = get_frame_pc (prev_frame);
5750 scope_breakpoint->loc->address
5751 = adjust_breakpoint_address (scope_breakpoint->loc->requested_address,
5752 scope_breakpoint->type);
5753
5754 /* The scope breakpoint is related to the watchpoint. We
5755 will need to act on them together. */
5756 b->related_breakpoint = scope_breakpoint;
5757 }
5758 }
5759 value_free_to_mark (mark);
5760 mention (b);
5761 }
5762
5763 /* Return count of locations need to be watched and can be handled
5764 in hardware. If the watchpoint can not be handled
5765 in hardware return zero. */
5766
5767 #if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT)
5768 #define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \
5769 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN))
5770 #endif
5771
5772 static int
5773 can_use_hardware_watchpoint (struct value *v)
5774 {
5775 int found_memory_cnt = 0;
5776 struct value *head = v;
5777
5778 /* Did the user specifically forbid us to use hardware watchpoints? */
5779 if (!can_use_hw_watchpoints)
5780 return 0;
5781
5782 /* Make sure that the value of the expression depends only upon
5783 memory contents, and values computed from them within GDB. If we
5784 find any register references or function calls, we can't use a
5785 hardware watchpoint.
5786
5787 The idea here is that evaluating an expression generates a series
5788 of values, one holding the value of every subexpression. (The
5789 expression a*b+c has five subexpressions: a, b, a*b, c, and
5790 a*b+c.) GDB's values hold almost enough information to establish
5791 the criteria given above --- they identify memory lvalues,
5792 register lvalues, computed values, etcetera. So we can evaluate
5793 the expression, and then scan the chain of values that leaves
5794 behind to decide whether we can detect any possible change to the
5795 expression's final value using only hardware watchpoints.
5796
5797 However, I don't think that the values returned by inferior
5798 function calls are special in any way. So this function may not
5799 notice that an expression involving an inferior function call
5800 can't be watched with hardware watchpoints. FIXME. */
5801 for (; v; v = v->next)
5802 {
5803 if (VALUE_LVAL (v) == lval_memory)
5804 {
5805 if (VALUE_LAZY (v))
5806 /* A lazy memory lvalue is one that GDB never needed to fetch;
5807 we either just used its address (e.g., `a' in `a.b') or
5808 we never needed it at all (e.g., `a' in `a,b'). */
5809 ;
5810 else
5811 {
5812 /* Ahh, memory we actually used! Check if we can cover
5813 it with hardware watchpoints. */
5814 struct type *vtype = check_typedef (value_type (v));
5815
5816 /* We only watch structs and arrays if user asked for it
5817 explicitly, never if they just happen to appear in a
5818 middle of some value chain. */
5819 if (v == head
5820 || (TYPE_CODE (vtype) != TYPE_CODE_STRUCT
5821 && TYPE_CODE (vtype) != TYPE_CODE_ARRAY))
5822 {
5823 CORE_ADDR vaddr = VALUE_ADDRESS (v) + value_offset (v);
5824 int len = TYPE_LENGTH (value_type (v));
5825
5826 if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
5827 return 0;
5828 else
5829 found_memory_cnt++;
5830 }
5831 }
5832 }
5833 else if (v->lval != not_lval && v->modifiable == 0)
5834 return 0; /* ??? What does this represent? */
5835 else if (v->lval == lval_register)
5836 return 0; /* cannot watch a register with a HW watchpoint */
5837 }
5838
5839 /* The expression itself looks suitable for using a hardware
5840 watchpoint, but give the target machine a chance to reject it. */
5841 return found_memory_cnt;
5842 }
5843
5844 void
5845 watch_command_wrapper (char *arg, int from_tty)
5846 {
5847 watch_command (arg, from_tty);
5848 }
5849
5850 static void
5851 watch_command (char *arg, int from_tty)
5852 {
5853 watch_command_1 (arg, hw_write, from_tty);
5854 }
5855
5856 void
5857 rwatch_command_wrapper (char *arg, int from_tty)
5858 {
5859 rwatch_command (arg, from_tty);
5860 }
5861
5862 static void
5863 rwatch_command (char *arg, int from_tty)
5864 {
5865 watch_command_1 (arg, hw_read, from_tty);
5866 }
5867
5868 void
5869 awatch_command_wrapper (char *arg, int from_tty)
5870 {
5871 awatch_command (arg, from_tty);
5872 }
5873
5874 static void
5875 awatch_command (char *arg, int from_tty)
5876 {
5877 watch_command_1 (arg, hw_access, from_tty);
5878 }
5879 \f
5880
5881 /* Helper routines for the until_command routine in infcmd.c. Here
5882 because it uses the mechanisms of breakpoints. */
5883
5884 /* This function is called by fetch_inferior_event via the
5885 cmd_continuation pointer, to complete the until command. It takes
5886 care of cleaning up the temporary breakpoints set up by the until
5887 command. */
5888 static void
5889 until_break_command_continuation (struct continuation_arg *arg)
5890 {
5891 struct cleanup *cleanups;
5892
5893 cleanups = (struct cleanup *) arg->data.pointer;
5894 do_exec_cleanups (cleanups);
5895 }
5896
5897 void
5898 until_break_command (char *arg, int from_tty, int anywhere)
5899 {
5900 struct symtabs_and_lines sals;
5901 struct symtab_and_line sal;
5902 struct frame_info *prev_frame = get_prev_frame (deprecated_selected_frame);
5903 struct breakpoint *breakpoint;
5904 struct cleanup *old_chain;
5905 struct continuation_arg *arg1;
5906
5907
5908 clear_proceed_status ();
5909
5910 /* Set a breakpoint where the user wants it and at return from
5911 this function */
5912
5913 if (default_breakpoint_valid)
5914 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
5915 default_breakpoint_line, (char ***) NULL, NULL);
5916 else
5917 sals = decode_line_1 (&arg, 1, (struct symtab *) NULL,
5918 0, (char ***) NULL, NULL);
5919
5920 if (sals.nelts != 1)
5921 error ("Couldn't get information on specified line.");
5922
5923 sal = sals.sals[0];
5924 xfree (sals.sals); /* malloc'd, so freed */
5925
5926 if (*arg)
5927 error ("Junk at end of arguments.");
5928
5929 resolve_sal_pc (&sal);
5930
5931 if (anywhere)
5932 /* If the user told us to continue until a specified location,
5933 we don't specify a frame at which we need to stop. */
5934 breakpoint = set_momentary_breakpoint (sal, null_frame_id, bp_until);
5935 else
5936 /* Otherwise, specify the current frame, because we want to stop only
5937 at the very same frame. */
5938 breakpoint = set_momentary_breakpoint (sal,
5939 get_frame_id (deprecated_selected_frame),
5940 bp_until);
5941
5942 if (!target_can_async_p ())
5943 old_chain = make_cleanup_delete_breakpoint (breakpoint);
5944 else
5945 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
5946
5947 /* If we are running asynchronously, and the target supports async
5948 execution, we are not waiting for the target to stop, in the call
5949 tp proceed, below. This means that we cannot delete the
5950 brekpoints until the target has actually stopped. The only place
5951 where we get a chance to do that is in fetch_inferior_event, so
5952 we must set things up for that. */
5953
5954 if (target_can_async_p ())
5955 {
5956 /* In this case the arg for the continuation is just the point
5957 in the exec_cleanups chain from where to start doing
5958 cleanups, because all the continuation does is the cleanups in
5959 the exec_cleanup_chain. */
5960 arg1 =
5961 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
5962 arg1->next = NULL;
5963 arg1->data.pointer = old_chain;
5964
5965 add_continuation (until_break_command_continuation, arg1);
5966 }
5967
5968 /* Keep within the current frame, or in frames called by the current
5969 one. */
5970 if (prev_frame)
5971 {
5972 sal = find_pc_line (get_frame_pc (prev_frame), 0);
5973 sal.pc = get_frame_pc (prev_frame);
5974 breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame),
5975 bp_until);
5976 if (!target_can_async_p ())
5977 make_cleanup_delete_breakpoint (breakpoint);
5978 else
5979 make_exec_cleanup_delete_breakpoint (breakpoint);
5980 }
5981
5982 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
5983 /* Do the cleanups now, anly if we are not running asynchronously,
5984 of if we are, but the target is still synchronous. */
5985 if (!target_can_async_p ())
5986 do_cleanups (old_chain);
5987 }
5988
5989 static void
5990 ep_skip_leading_whitespace (char **s)
5991 {
5992 if ((s == NULL) || (*s == NULL))
5993 return;
5994 while (isspace (**s))
5995 *s += 1;
5996 }
5997
5998 /* This function examines a string, and attempts to find a token
5999 that might be an event name in the leading characters. If a
6000 possible match is found, a pointer to the last character of
6001 the token is returned. Else, NULL is returned. */
6002
6003 static char *
6004 ep_find_event_name_end (char *arg)
6005 {
6006 char *s = arg;
6007 char *event_name_end = NULL;
6008
6009 /* If we could depend upon the presense of strrpbrk, we'd use that... */
6010 if (arg == NULL)
6011 return NULL;
6012
6013 /* We break out of the loop when we find a token delimiter.
6014 Basically, we're looking for alphanumerics and underscores;
6015 anything else delimites the token. */
6016 while (*s != '\0')
6017 {
6018 if (!isalnum (*s) && (*s != '_'))
6019 break;
6020 event_name_end = s;
6021 s++;
6022 }
6023
6024 return event_name_end;
6025 }
6026
6027
6028 /* This function attempts to parse an optional "if <cond>" clause
6029 from the arg string. If one is not found, it returns NULL.
6030
6031 Else, it returns a pointer to the condition string. (It does not
6032 attempt to evaluate the string against a particular block.) And,
6033 it updates arg to point to the first character following the parsed
6034 if clause in the arg string. */
6035
6036 static char *
6037 ep_parse_optional_if_clause (char **arg)
6038 {
6039 char *cond_string;
6040
6041 if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
6042 return NULL;
6043
6044 /* Skip the "if" keyword. */
6045 (*arg) += 2;
6046
6047 /* Skip any extra leading whitespace, and record the start of the
6048 condition string. */
6049 ep_skip_leading_whitespace (arg);
6050 cond_string = *arg;
6051
6052 /* Assume that the condition occupies the remainder of the arg string. */
6053 (*arg) += strlen (cond_string);
6054
6055 return cond_string;
6056 }
6057
6058 /* This function attempts to parse an optional filename from the arg
6059 string. If one is not found, it returns NULL.
6060
6061 Else, it returns a pointer to the parsed filename. (This function
6062 makes no attempt to verify that a file of that name exists, or is
6063 accessible.) And, it updates arg to point to the first character
6064 following the parsed filename in the arg string.
6065
6066 Note that clients needing to preserve the returned filename for
6067 future access should copy it to their own buffers. */
6068 static char *
6069 ep_parse_optional_filename (char **arg)
6070 {
6071 static char filename[1024];
6072 char *arg_p = *arg;
6073 int i;
6074 char c;
6075
6076 if ((*arg_p == '\0') || isspace (*arg_p))
6077 return NULL;
6078
6079 for (i = 0;; i++)
6080 {
6081 c = *arg_p;
6082 if (isspace (c))
6083 c = '\0';
6084 filename[i] = c;
6085 if (c == '\0')
6086 break;
6087 arg_p++;
6088 }
6089 *arg = arg_p;
6090
6091 return filename;
6092 }
6093
6094 /* Commands to deal with catching events, such as signals, exceptions,
6095 process start/exit, etc. */
6096
6097 typedef enum
6098 {
6099 catch_fork, catch_vfork
6100 }
6101 catch_fork_kind;
6102
6103 static void
6104 catch_fork_command_1 (catch_fork_kind fork_kind, char *arg, int tempflag,
6105 int from_tty)
6106 {
6107 char *cond_string = NULL;
6108
6109 ep_skip_leading_whitespace (&arg);
6110
6111 /* The allowed syntax is:
6112 catch [v]fork
6113 catch [v]fork if <cond>
6114
6115 First, check if there's an if clause. */
6116 cond_string = ep_parse_optional_if_clause (&arg);
6117
6118 if ((*arg != '\0') && !isspace (*arg))
6119 error ("Junk at end of arguments.");
6120
6121 /* If this target supports it, create a fork or vfork catchpoint
6122 and enable reporting of such events. */
6123 switch (fork_kind)
6124 {
6125 case catch_fork:
6126 create_fork_event_catchpoint (tempflag, cond_string);
6127 break;
6128 case catch_vfork:
6129 create_vfork_event_catchpoint (tempflag, cond_string);
6130 break;
6131 default:
6132 error ("unsupported or unknown fork kind; cannot catch it");
6133 break;
6134 }
6135 }
6136
6137 static void
6138 catch_exec_command_1 (char *arg, int tempflag, int from_tty)
6139 {
6140 char *cond_string = NULL;
6141
6142 ep_skip_leading_whitespace (&arg);
6143
6144 /* The allowed syntax is:
6145 catch exec
6146 catch exec if <cond>
6147
6148 First, check if there's an if clause. */
6149 cond_string = ep_parse_optional_if_clause (&arg);
6150
6151 if ((*arg != '\0') && !isspace (*arg))
6152 error ("Junk at end of arguments.");
6153
6154 /* If this target supports it, create an exec catchpoint
6155 and enable reporting of such events. */
6156 create_exec_event_catchpoint (tempflag, cond_string);
6157 }
6158
6159 static void
6160 catch_load_command_1 (char *arg, int tempflag, int from_tty)
6161 {
6162 char *dll_pathname = NULL;
6163 char *cond_string = NULL;
6164
6165 ep_skip_leading_whitespace (&arg);
6166
6167 /* The allowed syntax is:
6168 catch load
6169 catch load if <cond>
6170 catch load <filename>
6171 catch load <filename> if <cond>
6172
6173 The user is not allowed to specify the <filename> after an
6174 if clause.
6175
6176 We'll ignore the pathological case of a file named "if".
6177
6178 First, check if there's an if clause. If so, then there
6179 cannot be a filename. */
6180 cond_string = ep_parse_optional_if_clause (&arg);
6181
6182 /* If there was an if clause, then there cannot be a filename.
6183 Else, there might be a filename and an if clause. */
6184 if (cond_string == NULL)
6185 {
6186 dll_pathname = ep_parse_optional_filename (&arg);
6187 ep_skip_leading_whitespace (&arg);
6188 cond_string = ep_parse_optional_if_clause (&arg);
6189 }
6190
6191 if ((*arg != '\0') && !isspace (*arg))
6192 error ("Junk at end of arguments.");
6193
6194 /* Create a load breakpoint that only triggers when a load of
6195 the specified dll (or any dll, if no pathname was specified)
6196 occurs. */
6197 SOLIB_CREATE_CATCH_LOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6198 dll_pathname, cond_string);
6199 }
6200
6201 static void
6202 catch_unload_command_1 (char *arg, int tempflag, int from_tty)
6203 {
6204 char *dll_pathname = NULL;
6205 char *cond_string = NULL;
6206
6207 ep_skip_leading_whitespace (&arg);
6208
6209 /* The allowed syntax is:
6210 catch unload
6211 catch unload if <cond>
6212 catch unload <filename>
6213 catch unload <filename> if <cond>
6214
6215 The user is not allowed to specify the <filename> after an
6216 if clause.
6217
6218 We'll ignore the pathological case of a file named "if".
6219
6220 First, check if there's an if clause. If so, then there
6221 cannot be a filename. */
6222 cond_string = ep_parse_optional_if_clause (&arg);
6223
6224 /* If there was an if clause, then there cannot be a filename.
6225 Else, there might be a filename and an if clause. */
6226 if (cond_string == NULL)
6227 {
6228 dll_pathname = ep_parse_optional_filename (&arg);
6229 ep_skip_leading_whitespace (&arg);
6230 cond_string = ep_parse_optional_if_clause (&arg);
6231 }
6232
6233 if ((*arg != '\0') && !isspace (*arg))
6234 error ("Junk at end of arguments.");
6235
6236 /* Create an unload breakpoint that only triggers when an unload of
6237 the specified dll (or any dll, if no pathname was specified)
6238 occurs. */
6239 SOLIB_CREATE_CATCH_UNLOAD_HOOK (PIDGET (inferior_ptid), tempflag,
6240 dll_pathname, cond_string);
6241 }
6242
6243 /* Commands to deal with catching exceptions. */
6244
6245 /* Set a breakpoint at the specified callback routine for an
6246 exception event callback */
6247
6248 static void
6249 create_exception_catchpoint (int tempflag, char *cond_string,
6250 enum exception_event_kind ex_event,
6251 struct symtab_and_line *sal)
6252 {
6253 struct breakpoint *b;
6254 int thread = -1; /* All threads. */
6255 enum bptype bptype;
6256
6257 if (!sal) /* no exception support? */
6258 return;
6259
6260 switch (ex_event)
6261 {
6262 case EX_EVENT_THROW:
6263 bptype = bp_catch_throw;
6264 break;
6265 case EX_EVENT_CATCH:
6266 bptype = bp_catch_catch;
6267 break;
6268 default: /* error condition */
6269 error ("Internal error -- invalid catchpoint kind");
6270 }
6271
6272 b = set_raw_breakpoint (*sal, bptype);
6273 set_breakpoint_count (breakpoint_count + 1);
6274 b->number = breakpoint_count;
6275 b->cond = NULL;
6276 b->cond_string = (cond_string == NULL) ?
6277 NULL : savestring (cond_string, strlen (cond_string));
6278 b->thread = thread;
6279 b->addr_string = NULL;
6280 b->enable_state = bp_enabled;
6281 b->disposition = tempflag ? disp_del : disp_donttouch;
6282 mention (b);
6283 }
6284
6285 static enum print_stop_action
6286 print_exception_catchpoint (struct breakpoint *b)
6287 {
6288 annotate_catchpoint (b->number);
6289
6290 if (strstr (b->addr_string, "throw") != NULL)
6291 printf_filtered ("\nCatchpoint %d (exception thrown)\n",
6292 b->number);
6293 else
6294 printf_filtered ("\nCatchpoint %d (exception caught)\n",
6295 b->number);
6296
6297 return PRINT_SRC_AND_LOC;
6298 }
6299
6300 static void
6301 print_one_exception_catchpoint (struct breakpoint *b, CORE_ADDR *last_addr)
6302 {
6303 if (addressprint)
6304 {
6305 annotate_field (4);
6306 ui_out_field_core_addr (uiout, "addr", b->loc->address);
6307 }
6308 annotate_field (5);
6309 *last_addr = b->loc->address;
6310 if (strstr (b->addr_string, "throw") != NULL)
6311 ui_out_field_string (uiout, "what", "exception throw");
6312 else
6313 ui_out_field_string (uiout, "what", "exception catch");
6314 }
6315
6316 static void
6317 print_mention_exception_catchpoint (struct breakpoint *b)
6318 {
6319 if (strstr (b->addr_string, "throw") != NULL)
6320 printf_filtered ("Catchpoint %d (throw)", b->number);
6321 else
6322 printf_filtered ("Catchpoint %d (catch)", b->number);
6323 }
6324
6325 static struct breakpoint_ops gnu_v3_exception_catchpoint_ops = {
6326 print_exception_catchpoint,
6327 print_one_exception_catchpoint,
6328 print_mention_exception_catchpoint
6329 };
6330
6331 static int
6332 handle_gnu_v3_exceptions (int tempflag, char *cond_string,
6333 enum exception_event_kind ex_event, int from_tty)
6334 {
6335 char *trigger_func_name, *nameptr;
6336 struct symtabs_and_lines sals;
6337 struct breakpoint *b;
6338
6339 if (ex_event == EX_EVENT_CATCH)
6340 trigger_func_name = xstrdup ("__cxa_begin_catch");
6341 else
6342 trigger_func_name = xstrdup ("__cxa_throw");
6343
6344 nameptr = trigger_func_name;
6345 sals = decode_line_1 (&nameptr, 1, NULL, 0, NULL, NULL);
6346 if (sals.nelts == 0)
6347 {
6348 xfree (trigger_func_name);
6349 return 0;
6350 }
6351
6352 b = set_raw_breakpoint (sals.sals[0], bp_breakpoint);
6353 set_breakpoint_count (breakpoint_count + 1);
6354 b->number = breakpoint_count;
6355 b->cond = NULL;
6356 b->cond_string = (cond_string == NULL) ?
6357 NULL : savestring (cond_string, strlen (cond_string));
6358 b->thread = -1;
6359 b->addr_string = trigger_func_name;
6360 b->enable_state = bp_enabled;
6361 b->disposition = tempflag ? disp_del : disp_donttouch;
6362 b->ops = &gnu_v3_exception_catchpoint_ops;
6363
6364 xfree (sals.sals);
6365 mention (b);
6366 return 1;
6367 }
6368
6369 /* Deal with "catch catch" and "catch throw" commands */
6370
6371 static void
6372 catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
6373 int tempflag, int from_tty)
6374 {
6375 char *cond_string = NULL;
6376 struct symtab_and_line *sal = NULL;
6377
6378 ep_skip_leading_whitespace (&arg);
6379
6380 cond_string = ep_parse_optional_if_clause (&arg);
6381
6382 if ((*arg != '\0') && !isspace (*arg))
6383 error ("Junk at end of arguments.");
6384
6385 if ((ex_event != EX_EVENT_THROW) &&
6386 (ex_event != EX_EVENT_CATCH))
6387 error ("Unsupported or unknown exception event; cannot catch it");
6388
6389 if (handle_gnu_v3_exceptions (tempflag, cond_string, ex_event, from_tty))
6390 return;
6391
6392 /* See if we can find a callback routine */
6393 sal = target_enable_exception_callback (ex_event, 1);
6394
6395 if (sal)
6396 {
6397 /* We have callbacks from the runtime system for exceptions.
6398 Set a breakpoint on the sal found, if no errors */
6399 if (sal != (struct symtab_and_line *) -1)
6400 create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
6401 else
6402 return; /* something went wrong with setting up callbacks */
6403 }
6404
6405 warning ("Unsupported with this platform/compiler combination.");
6406 }
6407
6408 /* Cover routine to allow wrapping target_enable_exception_catchpoints
6409 inside a catch_errors */
6410
6411 static int
6412 cover_target_enable_exception_callback (void *arg)
6413 {
6414 args_for_catchpoint_enable *args = arg;
6415 struct symtab_and_line *sal;
6416 sal = target_enable_exception_callback (args->kind, args->enable_p);
6417 if (sal == NULL)
6418 return 0;
6419 else if (sal == (struct symtab_and_line *) -1)
6420 return -1;
6421 else
6422 return 1; /*is valid */
6423 }
6424
6425 static void
6426 catch_command_1 (char *arg, int tempflag, int from_tty)
6427 {
6428
6429 /* The first argument may be an event name, such as "start" or "load".
6430 If so, then handle it as such. If it doesn't match an event name,
6431 then attempt to interpret it as an exception name. (This latter is
6432 the v4.16-and-earlier GDB meaning of the "catch" command.)
6433
6434 First, try to find the bounds of what might be an event name. */
6435 char *arg1_start = arg;
6436 char *arg1_end;
6437 int arg1_length;
6438
6439 if (arg1_start == NULL)
6440 {
6441 /* Old behaviour was to use pre-v-4.16 syntax */
6442 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6443 /* return; */
6444 /* Now, this is not allowed */
6445 error ("Catch requires an event name.");
6446
6447 }
6448 arg1_end = ep_find_event_name_end (arg1_start);
6449 if (arg1_end == NULL)
6450 error ("catch requires an event");
6451 arg1_length = arg1_end + 1 - arg1_start;
6452
6453 /* Try to match what we found against known event names. */
6454 if (strncmp (arg1_start, "signal", arg1_length) == 0)
6455 {
6456 error ("Catch of signal not yet implemented");
6457 }
6458 else if (strncmp (arg1_start, "catch", arg1_length) == 0)
6459 {
6460 catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1,
6461 tempflag, from_tty);
6462 }
6463 else if (strncmp (arg1_start, "throw", arg1_length) == 0)
6464 {
6465 catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1,
6466 tempflag, from_tty);
6467 }
6468 else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
6469 {
6470 error ("Catch of thread_start not yet implemented");
6471 }
6472 else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
6473 {
6474 error ("Catch of thread_exit not yet implemented");
6475 }
6476 else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
6477 {
6478 error ("Catch of thread_join not yet implemented");
6479 }
6480 else if (strncmp (arg1_start, "start", arg1_length) == 0)
6481 {
6482 error ("Catch of start not yet implemented");
6483 }
6484 else if (strncmp (arg1_start, "exit", arg1_length) == 0)
6485 {
6486 error ("Catch of exit not yet implemented");
6487 }
6488 else if (strncmp (arg1_start, "fork", arg1_length) == 0)
6489 {
6490 catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
6491 }
6492 else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
6493 {
6494 catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
6495 }
6496 else if (strncmp (arg1_start, "exec", arg1_length) == 0)
6497 {
6498 catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
6499 }
6500 else if (strncmp (arg1_start, "load", arg1_length) == 0)
6501 {
6502 catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
6503 }
6504 else if (strncmp (arg1_start, "unload", arg1_length) == 0)
6505 {
6506 catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
6507 }
6508 else if (strncmp (arg1_start, "stop", arg1_length) == 0)
6509 {
6510 error ("Catch of stop not yet implemented");
6511 }
6512
6513 /* This doesn't appear to be an event name */
6514
6515 else
6516 {
6517 /* Pre-v.4.16 behaviour was to treat the argument
6518 as the name of an exception */
6519 /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6520 /* Now this is not allowed */
6521 error ("Unknown event kind specified for catch");
6522
6523 }
6524 }
6525
6526 /* Used by the gui, could be made a worker for other things. */
6527
6528 struct breakpoint *
6529 set_breakpoint_sal (struct symtab_and_line sal)
6530 {
6531 struct breakpoint *b;
6532 b = set_raw_breakpoint (sal, bp_breakpoint);
6533 set_breakpoint_count (breakpoint_count + 1);
6534 b->number = breakpoint_count;
6535 b->cond = 0;
6536 b->thread = -1;
6537 return b;
6538 }
6539
6540 static void
6541 catch_command (char *arg, int from_tty)
6542 {
6543 catch_command_1 (arg, 0, from_tty);
6544 }
6545 \f
6546
6547 static void
6548 tcatch_command (char *arg, int from_tty)
6549 {
6550 catch_command_1 (arg, 1, from_tty);
6551 }
6552
6553 /* Delete breakpoints by address or line. */
6554
6555 static void
6556 clear_command (char *arg, int from_tty)
6557 {
6558 struct breakpoint *b, *tmp, *prev, *found;
6559 int default_match;
6560 struct symtabs_and_lines sals;
6561 struct symtab_and_line sal;
6562 int i;
6563
6564 if (arg)
6565 {
6566 sals = decode_line_spec (arg, 1);
6567 default_match = 0;
6568 }
6569 else
6570 {
6571 sals.sals = (struct symtab_and_line *)
6572 xmalloc (sizeof (struct symtab_and_line));
6573 make_cleanup (xfree, sals.sals);
6574 init_sal (&sal); /* initialize to zeroes */
6575 sal.line = default_breakpoint_line;
6576 sal.symtab = default_breakpoint_symtab;
6577 sal.pc = default_breakpoint_address;
6578 if (sal.symtab == 0)
6579 error ("No source file specified.");
6580
6581 sals.sals[0] = sal;
6582 sals.nelts = 1;
6583
6584 default_match = 1;
6585 }
6586
6587 /* For each line spec given, delete bps which correspond
6588 to it. Do it in two passes, solely to preserve the current
6589 behavior that from_tty is forced true if we delete more than
6590 one breakpoint. */
6591
6592 found = NULL;
6593 for (i = 0; i < sals.nelts; i++)
6594 {
6595 /* If exact pc given, clear bpts at that pc.
6596 If line given (pc == 0), clear all bpts on specified line.
6597 If defaulting, clear all bpts on default line
6598 or at default pc.
6599
6600 defaulting sal.pc != 0 tests to do
6601
6602 0 1 pc
6603 1 1 pc _and_ line
6604 0 0 line
6605 1 0 <can't happen> */
6606
6607 sal = sals.sals[i];
6608 prev = NULL;
6609
6610 /* Find all matching breakpoints, remove them from the
6611 breakpoint chain, and add them to the 'found' chain. */
6612 ALL_BREAKPOINTS_SAFE (b, tmp)
6613 {
6614 /* Are we going to delete b? */
6615 if (b->type != bp_none
6616 && b->type != bp_watchpoint
6617 && b->type != bp_hardware_watchpoint
6618 && b->type != bp_read_watchpoint
6619 && b->type != bp_access_watchpoint
6620 /* Not if b is a watchpoint of any sort... */
6621 && (((sal.pc && (b->loc->address == sal.pc))
6622 && (!section_is_overlay (b->loc->section)
6623 || b->loc->section == sal.section))
6624 /* Yes, if sal.pc matches b (modulo overlays). */
6625 || ((default_match || (0 == sal.pc))
6626 && b->source_file != NULL
6627 && sal.symtab != NULL
6628 && strcmp (b->source_file, sal.symtab->filename) == 0
6629 && b->line_number == sal.line)))
6630 /* Yes, if sal source file and line matches b. */
6631 {
6632 /* Remove it from breakpoint_chain... */
6633 if (b == breakpoint_chain)
6634 {
6635 /* b is at the head of the list */
6636 breakpoint_chain = b->next;
6637 }
6638 else
6639 {
6640 prev->next = b->next;
6641 }
6642 /* And add it to 'found' chain. */
6643 b->next = found;
6644 found = b;
6645 }
6646 else
6647 {
6648 /* Keep b, and keep a pointer to it. */
6649 prev = b;
6650 }
6651 }
6652 }
6653 /* Now go thru the 'found' chain and delete them. */
6654 if (found == 0)
6655 {
6656 if (arg)
6657 error ("No breakpoint at %s.", arg);
6658 else
6659 error ("No breakpoint at this line.");
6660 }
6661
6662 if (found->next)
6663 from_tty = 1; /* Always report if deleted more than one */
6664 if (from_tty)
6665 printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
6666 breakpoints_changed ();
6667 while (found)
6668 {
6669 if (from_tty)
6670 printf_unfiltered ("%d ", found->number);
6671 tmp = found->next;
6672 delete_breakpoint (found);
6673 found = tmp;
6674 }
6675 if (from_tty)
6676 putchar_unfiltered ('\n');
6677 }
6678 \f
6679 /* Delete breakpoint in BS if they are `delete' breakpoints and
6680 all breakpoints that are marked for deletion, whether hit or not.
6681 This is called after any breakpoint is hit, or after errors. */
6682
6683 void
6684 breakpoint_auto_delete (bpstat bs)
6685 {
6686 struct breakpoint *b, *temp;
6687
6688 for (; bs; bs = bs->next)
6689 if (bs->breakpoint_at && bs->breakpoint_at->disposition == disp_del
6690 && bs->stop)
6691 delete_breakpoint (bs->breakpoint_at);
6692
6693 ALL_BREAKPOINTS_SAFE (b, temp)
6694 {
6695 if (b->disposition == disp_del_at_next_stop)
6696 delete_breakpoint (b);
6697 }
6698 }
6699
6700 /* Delete a breakpoint and clean up all traces of it in the data
6701 structures. */
6702
6703 void
6704 delete_breakpoint (struct breakpoint *bpt)
6705 {
6706 struct breakpoint *b;
6707 bpstat bs;
6708 struct bp_location *loc;
6709
6710 if (bpt == NULL)
6711 error ("Internal error (attempted to delete a NULL breakpoint)");
6712
6713
6714 /* Has this bp already been deleted? This can happen because multiple
6715 lists can hold pointers to bp's. bpstat lists are especial culprits.
6716
6717 One example of this happening is a watchpoint's scope bp. When the
6718 scope bp triggers, we notice that the watchpoint is out of scope, and
6719 delete it. We also delete its scope bp. But the scope bp is marked
6720 "auto-deleting", and is already on a bpstat. That bpstat is then
6721 checked for auto-deleting bp's, which are deleted.
6722
6723 A real solution to this problem might involve reference counts in bp's,
6724 and/or giving them pointers back to their referencing bpstat's, and
6725 teaching delete_breakpoint to only free a bp's storage when no more
6726 references were extent. A cheaper bandaid was chosen. */
6727 if (bpt->type == bp_none)
6728 return;
6729
6730 if (deprecated_delete_breakpoint_hook)
6731 deprecated_delete_breakpoint_hook (bpt);
6732 breakpoint_delete_event (bpt->number);
6733
6734 if (bpt->loc->inserted)
6735 remove_breakpoint (bpt->loc, mark_inserted);
6736
6737 free_valchain (bpt->loc);
6738
6739 if (breakpoint_chain == bpt)
6740 breakpoint_chain = bpt->next;
6741
6742 if (bp_location_chain == bpt->loc)
6743 bp_location_chain = bpt->loc->next;
6744
6745 /* If we have callback-style exception catchpoints, don't go through
6746 the adjustments to the C++ runtime library etc. if the inferior
6747 isn't actually running. target_enable_exception_callback for a
6748 null target ops vector gives an undesirable error message, so we
6749 check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
6750 exceptions are supported in this way, it's OK for now. FIXME */
6751 if (ep_is_exception_catchpoint (bpt) && target_has_execution)
6752 {
6753 /* Format possible error msg */
6754 char *message = xstrprintf ("Error in deleting catchpoint %d:\n",
6755 bpt->number);
6756 struct cleanup *cleanups = make_cleanup (xfree, message);
6757 args_for_catchpoint_enable args;
6758 args.kind = bpt->type == bp_catch_catch ?
6759 EX_EVENT_CATCH : EX_EVENT_THROW;
6760 args.enable_p = 0;
6761 catch_errors (cover_target_enable_exception_callback, &args,
6762 message, RETURN_MASK_ALL);
6763 do_cleanups (cleanups);
6764 }
6765
6766
6767 ALL_BREAKPOINTS (b)
6768 if (b->next == bpt)
6769 {
6770 b->next = bpt->next;
6771 break;
6772 }
6773
6774 ALL_BP_LOCATIONS (loc)
6775 if (loc->next == bpt->loc)
6776 {
6777 loc->next = bpt->loc->next;
6778 break;
6779 }
6780
6781 check_duplicates (bpt);
6782 /* If this breakpoint was inserted, and there is another breakpoint
6783 at the same address, we need to insert the other breakpoint. */
6784 if (bpt->loc->inserted
6785 && bpt->type != bp_hardware_watchpoint
6786 && bpt->type != bp_read_watchpoint
6787 && bpt->type != bp_access_watchpoint
6788 && bpt->type != bp_catch_fork
6789 && bpt->type != bp_catch_vfork
6790 && bpt->type != bp_catch_exec)
6791 {
6792 ALL_BREAKPOINTS (b)
6793 if (b->loc->address == bpt->loc->address
6794 && b->loc->section == bpt->loc->section
6795 && !b->loc->duplicate
6796 && b->enable_state != bp_disabled
6797 && b->enable_state != bp_shlib_disabled
6798 && !b->pending
6799 && b->enable_state != bp_call_disabled)
6800 {
6801 int val;
6802
6803 /* We should never reach this point if there is a permanent
6804 breakpoint at the same address as the one being deleted.
6805 If there is a permanent breakpoint somewhere, it should
6806 always be the only one inserted. */
6807 if (b->enable_state == bp_permanent)
6808 internal_error (__FILE__, __LINE__,
6809 "another breakpoint was inserted on top of "
6810 "a permanent breakpoint");
6811
6812 if (b->type == bp_hardware_breakpoint)
6813 val = target_insert_hw_breakpoint (b->loc->address, b->loc->shadow_contents);
6814 else
6815 val = target_insert_breakpoint (b->loc->address, b->loc->shadow_contents);
6816
6817 /* If there was an error in the insert, print a message, then stop execution. */
6818 if (val != 0)
6819 {
6820 struct ui_file *tmp_error_stream = mem_fileopen ();
6821 make_cleanup_ui_file_delete (tmp_error_stream);
6822
6823
6824 if (b->type == bp_hardware_breakpoint)
6825 {
6826 fprintf_unfiltered (tmp_error_stream,
6827 "Cannot insert hardware breakpoint %d.\n"
6828 "You may have requested too many hardware breakpoints.\n",
6829 b->number);
6830 }
6831 else
6832 {
6833 fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number);
6834 fprintf_filtered (tmp_error_stream, "Error accessing memory address ");
6835 print_address_numeric (b->loc->address, 1, tmp_error_stream);
6836 fprintf_filtered (tmp_error_stream, ": %s.\n",
6837 safe_strerror (val));
6838 }
6839
6840 fprintf_unfiltered (tmp_error_stream,"The same program may be running in another process.");
6841 target_terminal_ours_for_output ();
6842 error_stream(tmp_error_stream);
6843 }
6844 else
6845 b->loc->inserted = 1;
6846 }
6847 }
6848
6849 free_command_lines (&bpt->commands);
6850 if (bpt->cond)
6851 xfree (bpt->cond);
6852 if (bpt->cond_string != NULL)
6853 xfree (bpt->cond_string);
6854 if (bpt->addr_string != NULL)
6855 xfree (bpt->addr_string);
6856 if (bpt->exp != NULL)
6857 xfree (bpt->exp);
6858 if (bpt->exp_string != NULL)
6859 xfree (bpt->exp_string);
6860 if (bpt->val != NULL)
6861 value_free (bpt->val);
6862 if (bpt->source_file != NULL)
6863 xfree (bpt->source_file);
6864 if (bpt->dll_pathname != NULL)
6865 xfree (bpt->dll_pathname);
6866 if (bpt->triggered_dll_pathname != NULL)
6867 xfree (bpt->triggered_dll_pathname);
6868 if (bpt->exec_pathname != NULL)
6869 xfree (bpt->exec_pathname);
6870
6871 /* Be sure no bpstat's are pointing at it after it's been freed. */
6872 /* FIXME, how can we find all bpstat's?
6873 We just check stop_bpstat for now. */
6874 for (bs = stop_bpstat; bs; bs = bs->next)
6875 if (bs->breakpoint_at == bpt)
6876 {
6877 bs->breakpoint_at = NULL;
6878 bs->old_val = NULL;
6879 /* bs->commands will be freed later. */
6880 }
6881 /* On the chance that someone will soon try again to delete this same
6882 bp, we mark it as deleted before freeing its storage. */
6883 bpt->type = bp_none;
6884
6885 xfree (bpt->loc);
6886 xfree (bpt);
6887 }
6888
6889 static void
6890 do_delete_breakpoint_cleanup (void *b)
6891 {
6892 delete_breakpoint (b);
6893 }
6894
6895 struct cleanup *
6896 make_cleanup_delete_breakpoint (struct breakpoint *b)
6897 {
6898 return make_cleanup (do_delete_breakpoint_cleanup, b);
6899 }
6900
6901 struct cleanup *
6902 make_exec_cleanup_delete_breakpoint (struct breakpoint *b)
6903 {
6904 return make_exec_cleanup (do_delete_breakpoint_cleanup, b);
6905 }
6906
6907 void
6908 delete_command (char *arg, int from_tty)
6909 {
6910 struct breakpoint *b, *temp;
6911
6912 dont_repeat ();
6913
6914 if (arg == 0)
6915 {
6916 int breaks_to_delete = 0;
6917
6918 /* Delete all breakpoints if no argument.
6919 Do not delete internal or call-dummy breakpoints, these
6920 have to be deleted with an explicit breakpoint number argument. */
6921 ALL_BREAKPOINTS (b)
6922 {
6923 if (b->type != bp_call_dummy &&
6924 b->type != bp_shlib_event &&
6925 b->type != bp_thread_event &&
6926 b->type != bp_overlay_event &&
6927 b->number >= 0)
6928 breaks_to_delete = 1;
6929 }
6930
6931 /* Ask user only if there are some breakpoints to delete. */
6932 if (!from_tty
6933 || (breaks_to_delete && query ("Delete all breakpoints? ")))
6934 {
6935 ALL_BREAKPOINTS_SAFE (b, temp)
6936 {
6937 if (b->type != bp_call_dummy &&
6938 b->type != bp_shlib_event &&
6939 b->type != bp_thread_event &&
6940 b->type != bp_overlay_event &&
6941 b->number >= 0)
6942 delete_breakpoint (b);
6943 }
6944 }
6945 }
6946 else
6947 map_breakpoint_numbers (arg, delete_breakpoint);
6948 }
6949
6950 /* Reset a breakpoint given it's struct breakpoint * BINT.
6951 The value we return ends up being the return value from catch_errors.
6952 Unused in this case. */
6953
6954 static int
6955 breakpoint_re_set_one (void *bint)
6956 {
6957 /* get past catch_errs */
6958 struct breakpoint *b = (struct breakpoint *) bint;
6959 struct value *mark;
6960 int i;
6961 int not_found;
6962 int *not_found_ptr = NULL;
6963 struct symtabs_and_lines sals;
6964 char *s;
6965 enum enable_state save_enable;
6966
6967 switch (b->type)
6968 {
6969 case bp_none:
6970 warning ("attempted to reset apparently deleted breakpoint #%d?",
6971 b->number);
6972 return 0;
6973 case bp_breakpoint:
6974 case bp_hardware_breakpoint:
6975 case bp_catch_load:
6976 case bp_catch_unload:
6977 if (b->addr_string == NULL)
6978 {
6979 /* Anything without a string can't be re-set. */
6980 delete_breakpoint (b);
6981 return 0;
6982 }
6983 /* HACK: cagney/2001-11-11: kettenis/2001-11-11: MarkK wrote:
6984
6985 ``And a hack it is, although Apple's Darwin version of GDB
6986 contains an almost identical hack to implement a "future
6987 break" command. It seems to work in many real world cases,
6988 but it is easy to come up with a test case where the patch
6989 doesn't help at all.''
6990
6991 ``It seems that the way GDB implements breakpoints - in -
6992 shared - libraries was designed for a.out shared library
6993 systems (SunOS 4) where shared libraries were loaded at a
6994 fixed address in memory. Since ELF shared libraries can (and
6995 will) be loaded at any address in memory, things break.
6996 Fixing this is not trivial. Therefore, I'm not sure whether
6997 we should add this hack to the branch only. I cannot
6998 guarantee that things will be fixed on the trunk in the near
6999 future.''
7000
7001 In case we have a problem, disable this breakpoint. We'll
7002 restore its status if we succeed. Don't disable a
7003 shlib_disabled breakpoint though. There's a fair chance we
7004 can't re-set it if the shared library it's in hasn't been
7005 loaded yet. */
7006
7007 if (b->pending)
7008 break;
7009
7010 save_enable = b->enable_state;
7011 if (b->enable_state != bp_shlib_disabled)
7012 b->enable_state = bp_disabled;
7013 else
7014 /* If resetting a shlib-disabled breakpoint, we don't want to
7015 see an error message if it is not found since we will expect
7016 this to occur until the shared library is finally reloaded.
7017 We accomplish this by giving decode_line_1 a pointer to use
7018 for silent notification that the symbol is not found. */
7019 not_found_ptr = &not_found;
7020
7021 set_language (b->language);
7022 input_radix = b->input_radix;
7023 s = b->addr_string;
7024 sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL,
7025 not_found_ptr);
7026 for (i = 0; i < sals.nelts; i++)
7027 {
7028 resolve_sal_pc (&sals.sals[i]);
7029
7030 /* Reparse conditions, they might contain references to the
7031 old symtab. */
7032 if (b->cond_string != NULL)
7033 {
7034 s = b->cond_string;
7035 if (b->cond)
7036 {
7037 xfree (b->cond);
7038 /* Avoid re-freeing b->exp if an error during the call
7039 to parse_exp_1. */
7040 b->cond = NULL;
7041 }
7042 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
7043 }
7044
7045 /* We need to re-set the breakpoint if the address changes... */
7046 if (b->loc->address != sals.sals[i].pc
7047 /* ...or new and old breakpoints both have source files, and
7048 the source file name or the line number changes... */
7049 || (b->source_file != NULL
7050 && sals.sals[i].symtab != NULL
7051 && (strcmp (b->source_file, sals.sals[i].symtab->filename) != 0
7052 || b->line_number != sals.sals[i].line)
7053 )
7054 /* ...or we switch between having a source file and not having
7055 one. */
7056 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
7057 )
7058 {
7059 if (b->source_file != NULL)
7060 xfree (b->source_file);
7061 if (sals.sals[i].symtab == NULL)
7062 b->source_file = NULL;
7063 else
7064 b->source_file =
7065 savestring (sals.sals[i].symtab->filename,
7066 strlen (sals.sals[i].symtab->filename));
7067 b->line_number = sals.sals[i].line;
7068 b->loc->requested_address = sals.sals[i].pc;
7069 b->loc->address
7070 = adjust_breakpoint_address (b->loc->requested_address,
7071 b->type);
7072
7073 /* Used to check for duplicates here, but that can
7074 cause trouble, as it doesn't check for disabled
7075 breakpoints. */
7076
7077 mention (b);
7078
7079 /* Might be better to do this just once per breakpoint_re_set,
7080 rather than once for every breakpoint. */
7081 breakpoints_changed ();
7082 }
7083 b->loc->section = sals.sals[i].section;
7084 b->enable_state = save_enable; /* Restore it, this worked. */
7085
7086
7087 /* Now that this is re-enabled, check_duplicates
7088 can be used. */
7089 check_duplicates (b);
7090
7091 }
7092 xfree (sals.sals);
7093 break;
7094
7095 case bp_watchpoint:
7096 case bp_hardware_watchpoint:
7097 case bp_read_watchpoint:
7098 case bp_access_watchpoint:
7099 innermost_block = NULL;
7100 /* The issue arises of what context to evaluate this in. The
7101 same one as when it was set, but what does that mean when
7102 symbols have been re-read? We could save the filename and
7103 functionname, but if the context is more local than that, the
7104 best we could do would be something like how many levels deep
7105 and which index at that particular level, but that's going to
7106 be less stable than filenames or function names. */
7107
7108 /* So for now, just use a global context. */
7109 if (b->exp)
7110 {
7111 xfree (b->exp);
7112 /* Avoid re-freeing b->exp if an error during the call to
7113 parse_expression. */
7114 b->exp = NULL;
7115 }
7116 b->exp = parse_expression (b->exp_string);
7117 b->exp_valid_block = innermost_block;
7118 mark = value_mark ();
7119 if (b->val)
7120 {
7121 value_free (b->val);
7122 /* Avoid re-freeing b->val if an error during the call to
7123 evaluate_expression. */
7124 b->val = NULL;
7125 }
7126 b->val = evaluate_expression (b->exp);
7127 release_value (b->val);
7128 if (VALUE_LAZY (b->val) && breakpoint_enabled (b))
7129 value_fetch_lazy (b->val);
7130
7131 if (b->cond_string != NULL)
7132 {
7133 s = b->cond_string;
7134 if (b->cond)
7135 {
7136 xfree (b->cond);
7137 /* Avoid re-freeing b->exp if an error during the call
7138 to parse_exp_1. */
7139 b->cond = NULL;
7140 }
7141 b->cond = parse_exp_1 (&s, (struct block *) 0, 0);
7142 }
7143 if (breakpoint_enabled (b))
7144 mention (b);
7145 value_free_to_mark (mark);
7146 break;
7147 case bp_catch_catch:
7148 case bp_catch_throw:
7149 break;
7150 /* We needn't really do anything to reset these, since the mask
7151 that requests them is unaffected by e.g., new libraries being
7152 loaded. */
7153 case bp_catch_fork:
7154 case bp_catch_vfork:
7155 case bp_catch_exec:
7156 break;
7157
7158 default:
7159 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
7160 /* fall through */
7161 /* Delete longjmp and overlay event breakpoints; they will be
7162 reset later by breakpoint_re_set. */
7163 case bp_longjmp:
7164 case bp_longjmp_resume:
7165 case bp_overlay_event:
7166 delete_breakpoint (b);
7167 break;
7168
7169 /* This breakpoint is special, it's set up when the inferior
7170 starts and we really don't want to touch it. */
7171 case bp_shlib_event:
7172
7173 /* Like bp_shlib_event, this breakpoint type is special.
7174 Once it is set up, we do not want to touch it. */
7175 case bp_thread_event:
7176
7177 /* Keep temporary breakpoints, which can be encountered when we step
7178 over a dlopen call and SOLIB_ADD is resetting the breakpoints.
7179 Otherwise these should have been blown away via the cleanup chain
7180 or by breakpoint_init_inferior when we rerun the executable. */
7181 case bp_until:
7182 case bp_finish:
7183 case bp_watchpoint_scope:
7184 case bp_call_dummy:
7185 case bp_step_resume:
7186 break;
7187 }
7188
7189 return 0;
7190 }
7191
7192 /* Re-set all breakpoints after symbols have been re-loaded. */
7193 void
7194 breakpoint_re_set (void)
7195 {
7196 struct breakpoint *b, *temp;
7197 enum language save_language;
7198 int save_input_radix;
7199
7200 save_language = current_language->la_language;
7201 save_input_radix = input_radix;
7202 ALL_BREAKPOINTS_SAFE (b, temp)
7203 {
7204 /* Format possible error msg */
7205 char *message = xstrprintf ("Error in re-setting breakpoint %d:\n",
7206 b->number);
7207 struct cleanup *cleanups = make_cleanup (xfree, message);
7208 catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
7209 do_cleanups (cleanups);
7210 }
7211 set_language (save_language);
7212 input_radix = save_input_radix;
7213
7214 if (GET_LONGJMP_TARGET_P ())
7215 {
7216 create_longjmp_breakpoint ("longjmp");
7217 create_longjmp_breakpoint ("_longjmp");
7218 create_longjmp_breakpoint ("siglongjmp");
7219 create_longjmp_breakpoint ("_siglongjmp");
7220 create_longjmp_breakpoint (NULL);
7221 }
7222
7223 create_overlay_event_breakpoint ("_ovly_debug_event");
7224 }
7225 \f
7226 /* Reset the thread number of this breakpoint:
7227
7228 - If the breakpoint is for all threads, leave it as-is.
7229 - Else, reset it to the current thread for inferior_ptid. */
7230 void
7231 breakpoint_re_set_thread (struct breakpoint *b)
7232 {
7233 if (b->thread != -1)
7234 {
7235 if (in_thread_list (inferior_ptid))
7236 b->thread = pid_to_thread_id (inferior_ptid);
7237 }
7238 }
7239
7240 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7241 If from_tty is nonzero, it prints a message to that effect,
7242 which ends with a period (no newline). */
7243
7244 void
7245 set_ignore_count (int bptnum, int count, int from_tty)
7246 {
7247 struct breakpoint *b;
7248
7249 if (count < 0)
7250 count = 0;
7251
7252 ALL_BREAKPOINTS (b)
7253 if (b->number == bptnum)
7254 {
7255 b->ignore_count = count;
7256 if (from_tty)
7257 {
7258 if (count == 0)
7259 printf_filtered ("Will stop next time breakpoint %d is reached.",
7260 bptnum);
7261 else if (count == 1)
7262 printf_filtered ("Will ignore next crossing of breakpoint %d.",
7263 bptnum);
7264 else
7265 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
7266 count, bptnum);
7267 }
7268 breakpoints_changed ();
7269 breakpoint_modify_event (b->number);
7270 return;
7271 }
7272
7273 error ("No breakpoint number %d.", bptnum);
7274 }
7275
7276 /* Clear the ignore counts of all breakpoints. */
7277 void
7278 breakpoint_clear_ignore_counts (void)
7279 {
7280 struct breakpoint *b;
7281
7282 ALL_BREAKPOINTS (b)
7283 b->ignore_count = 0;
7284 }
7285
7286 /* Command to set ignore-count of breakpoint N to COUNT. */
7287
7288 static void
7289 ignore_command (char *args, int from_tty)
7290 {
7291 char *p = args;
7292 int num;
7293
7294 if (p == 0)
7295 error_no_arg ("a breakpoint number");
7296
7297 num = get_number (&p);
7298 if (num == 0)
7299 error ("bad breakpoint number: '%s'", args);
7300 if (*p == 0)
7301 error ("Second argument (specified ignore-count) is missing.");
7302
7303 set_ignore_count (num,
7304 longest_to_int (value_as_long (parse_and_eval (p))),
7305 from_tty);
7306 if (from_tty)
7307 printf_filtered ("\n");
7308 }
7309 \f
7310 /* Call FUNCTION on each of the breakpoints
7311 whose numbers are given in ARGS. */
7312
7313 static void
7314 map_breakpoint_numbers (char *args, void (*function) (struct breakpoint *))
7315 {
7316 char *p = args;
7317 char *p1;
7318 int num;
7319 struct breakpoint *b, *tmp;
7320 int match;
7321
7322 if (p == 0)
7323 error_no_arg ("one or more breakpoint numbers");
7324
7325 while (*p)
7326 {
7327 match = 0;
7328 p1 = p;
7329
7330 num = get_number_or_range (&p1);
7331 if (num == 0)
7332 {
7333 warning ("bad breakpoint number at or near '%s'", p);
7334 }
7335 else
7336 {
7337 ALL_BREAKPOINTS_SAFE (b, tmp)
7338 if (b->number == num)
7339 {
7340 struct breakpoint *related_breakpoint = b->related_breakpoint;
7341 match = 1;
7342 function (b);
7343 if (related_breakpoint)
7344 function (related_breakpoint);
7345 break;
7346 }
7347 if (match == 0)
7348 printf_unfiltered ("No breakpoint number %d.\n", num);
7349 }
7350 p = p1;
7351 }
7352 }
7353
7354 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
7355 If from_tty is nonzero, it prints a message to that effect,
7356 which ends with a period (no newline). */
7357
7358 void
7359 disable_breakpoint (struct breakpoint *bpt)
7360 {
7361 /* Never disable a watchpoint scope breakpoint; we want to
7362 hit them when we leave scope so we can delete both the
7363 watchpoint and its scope breakpoint at that time. */
7364 if (bpt->type == bp_watchpoint_scope)
7365 return;
7366
7367 /* You can't disable permanent breakpoints. */
7368 if (bpt->enable_state == bp_permanent)
7369 return;
7370
7371 bpt->enable_state = bp_disabled;
7372
7373 check_duplicates (bpt);
7374
7375 if (deprecated_modify_breakpoint_hook)
7376 deprecated_modify_breakpoint_hook (bpt);
7377 breakpoint_modify_event (bpt->number);
7378 }
7379
7380 static void
7381 disable_command (char *args, int from_tty)
7382 {
7383 struct breakpoint *bpt;
7384 if (args == 0)
7385 ALL_BREAKPOINTS (bpt)
7386 switch (bpt->type)
7387 {
7388 case bp_none:
7389 warning ("attempted to disable apparently deleted breakpoint #%d?",
7390 bpt->number);
7391 continue;
7392 case bp_breakpoint:
7393 case bp_catch_load:
7394 case bp_catch_unload:
7395 case bp_catch_fork:
7396 case bp_catch_vfork:
7397 case bp_catch_exec:
7398 case bp_catch_catch:
7399 case bp_catch_throw:
7400 case bp_hardware_breakpoint:
7401 case bp_watchpoint:
7402 case bp_hardware_watchpoint:
7403 case bp_read_watchpoint:
7404 case bp_access_watchpoint:
7405 disable_breakpoint (bpt);
7406 default:
7407 continue;
7408 }
7409 else
7410 map_breakpoint_numbers (args, disable_breakpoint);
7411 }
7412
7413 static void
7414 do_enable_breakpoint (struct breakpoint *bpt, enum bpdisp disposition)
7415 {
7416 int target_resources_ok, other_type_used;
7417 struct value *mark;
7418
7419 if (bpt->type == bp_hardware_breakpoint)
7420 {
7421 int i;
7422 i = hw_breakpoint_used_count ();
7423 target_resources_ok =
7424 TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint,
7425 i + 1, 0);
7426 if (target_resources_ok == 0)
7427 error ("No hardware breakpoint support in the target.");
7428 else if (target_resources_ok < 0)
7429 error ("Hardware breakpoints used exceeds limit.");
7430 }
7431
7432 if (bpt->pending)
7433 {
7434 if (bpt->enable_state != bp_enabled)
7435 {
7436 /* When enabling a pending breakpoint, we need to check if the breakpoint
7437 is resolvable since shared libraries could have been loaded
7438 after the breakpoint was disabled. */
7439 breakpoints_changed ();
7440 if (resolve_pending_breakpoint (bpt) == GDB_RC_OK)
7441 {
7442 delete_breakpoint (bpt);
7443 return;
7444 }
7445 bpt->enable_state = bp_enabled;
7446 bpt->disposition = disposition;
7447 }
7448 }
7449 else /* Not a pending breakpoint. */
7450 {
7451 if (bpt->enable_state != bp_permanent)
7452 bpt->enable_state = bp_enabled;
7453 bpt->disposition = disposition;
7454 check_duplicates (bpt);
7455 breakpoints_changed ();
7456
7457 if (bpt->type == bp_watchpoint ||
7458 bpt->type == bp_hardware_watchpoint ||
7459 bpt->type == bp_read_watchpoint ||
7460 bpt->type == bp_access_watchpoint)
7461 {
7462 struct frame_id saved_frame_id;
7463
7464 saved_frame_id = get_frame_id (get_selected_frame (NULL));
7465 if (bpt->exp_valid_block != NULL)
7466 {
7467 struct frame_info *fr =
7468 fr = frame_find_by_id (bpt->watchpoint_frame);
7469 if (fr == NULL)
7470 {
7471 printf_filtered ("\
7472 Cannot enable watchpoint %d because the block in which its expression\n\
7473 is valid is not currently in scope.\n", bpt->number);
7474 bpt->enable_state = bp_disabled;
7475 return;
7476 }
7477 select_frame (fr);
7478 }
7479
7480 value_free (bpt->val);
7481 mark = value_mark ();
7482 bpt->val = evaluate_expression (bpt->exp);
7483 release_value (bpt->val);
7484 if (VALUE_LAZY (bpt->val))
7485 value_fetch_lazy (bpt->val);
7486
7487 if (bpt->type == bp_hardware_watchpoint ||
7488 bpt->type == bp_read_watchpoint ||
7489 bpt->type == bp_access_watchpoint)
7490 {
7491 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7492 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
7493
7494 /* Hack around 'unused var' error for some targets here */
7495 (void) mem_cnt, i;
7496 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7497 bpt->type, i + mem_cnt, other_type_used);
7498 /* we can consider of type is bp_hardware_watchpoint, convert to
7499 bp_watchpoint in the following condition */
7500 if (target_resources_ok < 0)
7501 {
7502 printf_filtered ("\
7503 Cannot enable watchpoint %d because target watch resources\n\
7504 have been allocated for other watchpoints.\n", bpt->number);
7505 bpt->enable_state = bp_disabled;
7506 value_free_to_mark (mark);
7507 return;
7508 }
7509 }
7510
7511 select_frame (frame_find_by_id (saved_frame_id));
7512 value_free_to_mark (mark);
7513 }
7514 }
7515
7516 if (deprecated_modify_breakpoint_hook)
7517 deprecated_modify_breakpoint_hook (bpt);
7518 breakpoint_modify_event (bpt->number);
7519 }
7520
7521 void
7522 enable_breakpoint (struct breakpoint *bpt)
7523 {
7524 do_enable_breakpoint (bpt, bpt->disposition);
7525 }
7526
7527 /* The enable command enables the specified breakpoints (or all defined
7528 breakpoints) so they once again become (or continue to be) effective
7529 in stopping the inferior. */
7530
7531 static void
7532 enable_command (char *args, int from_tty)
7533 {
7534 struct breakpoint *bpt;
7535 if (args == 0)
7536 ALL_BREAKPOINTS (bpt)
7537 switch (bpt->type)
7538 {
7539 case bp_none:
7540 warning ("attempted to enable apparently deleted breakpoint #%d?",
7541 bpt->number);
7542 continue;
7543 case bp_breakpoint:
7544 case bp_catch_load:
7545 case bp_catch_unload:
7546 case bp_catch_fork:
7547 case bp_catch_vfork:
7548 case bp_catch_exec:
7549 case bp_catch_catch:
7550 case bp_catch_throw:
7551 case bp_hardware_breakpoint:
7552 case bp_watchpoint:
7553 case bp_hardware_watchpoint:
7554 case bp_read_watchpoint:
7555 case bp_access_watchpoint:
7556 enable_breakpoint (bpt);
7557 default:
7558 continue;
7559 }
7560 else
7561 map_breakpoint_numbers (args, enable_breakpoint);
7562 }
7563
7564 static void
7565 enable_once_breakpoint (struct breakpoint *bpt)
7566 {
7567 do_enable_breakpoint (bpt, disp_disable);
7568 }
7569
7570 static void
7571 enable_once_command (char *args, int from_tty)
7572 {
7573 map_breakpoint_numbers (args, enable_once_breakpoint);
7574 }
7575
7576 static void
7577 enable_delete_breakpoint (struct breakpoint *bpt)
7578 {
7579 do_enable_breakpoint (bpt, disp_del);
7580 }
7581
7582 static void
7583 enable_delete_command (char *args, int from_tty)
7584 {
7585 map_breakpoint_numbers (args, enable_delete_breakpoint);
7586 }
7587 \f
7588 static void
7589 set_breakpoint_cmd (char *args, int from_tty)
7590 {
7591 }
7592
7593 static void
7594 show_breakpoint_cmd (char *args, int from_tty)
7595 {
7596 }
7597
7598 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
7599
7600 struct symtabs_and_lines
7601 decode_line_spec_1 (char *string, int funfirstline)
7602 {
7603 struct symtabs_and_lines sals;
7604 if (string == 0)
7605 error ("Empty line specification.");
7606 if (default_breakpoint_valid)
7607 sals = decode_line_1 (&string, funfirstline,
7608 default_breakpoint_symtab,
7609 default_breakpoint_line,
7610 (char ***) NULL, NULL);
7611 else
7612 sals = decode_line_1 (&string, funfirstline,
7613 (struct symtab *) NULL, 0, (char ***) NULL, NULL);
7614 if (*string)
7615 error ("Junk at end of line specification: %s", string);
7616 return sals;
7617 }
7618 \f
7619 void
7620 _initialize_breakpoint (void)
7621 {
7622 static struct cmd_list_element *breakpoint_set_cmdlist;
7623 static struct cmd_list_element *breakpoint_show_cmdlist;
7624 struct cmd_list_element *c;
7625
7626 #ifdef SOLIB_ADD
7627 observer_attach_solib_unloaded (disable_breakpoints_in_unloaded_shlib);
7628 #endif
7629
7630 breakpoint_chain = 0;
7631 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
7632 before a breakpoint is set. */
7633 breakpoint_count = 0;
7634
7635 add_com ("ignore", class_breakpoint, ignore_command,
7636 "Set ignore-count of breakpoint number N to COUNT.\n\
7637 Usage is `ignore N COUNT'.");
7638 if (xdb_commands)
7639 add_com_alias ("bc", "ignore", class_breakpoint, 1);
7640
7641 add_com ("commands", class_breakpoint, commands_command,
7642 "Set commands to be executed when a breakpoint is hit.\n\
7643 Give breakpoint number as argument after \"commands\".\n\
7644 With no argument, the targeted breakpoint is the last one set.\n\
7645 The commands themselves follow starting on the next line.\n\
7646 Type a line containing \"end\" to indicate the end of them.\n\
7647 Give \"silent\" as the first line to make the breakpoint silent;\n\
7648 then no output is printed when it is hit, except what the commands print.");
7649
7650 add_com ("condition", class_breakpoint, condition_command,
7651 "Specify breakpoint number N to break only if COND is true.\n\
7652 Usage is `condition N COND', where N is an integer and COND is an\n\
7653 expression to be evaluated whenever breakpoint N is reached.");
7654
7655 c = add_com ("tbreak", class_breakpoint, tbreak_command,
7656 "Set a temporary breakpoint. Args like \"break\" command.\n\
7657 Like \"break\" except the breakpoint is only temporary,\n\
7658 so it will be deleted when hit. Equivalent to \"break\" followed\n\
7659 by using \"enable delete\" on the breakpoint number.");
7660 set_cmd_completer (c, location_completer);
7661
7662 c = add_com ("hbreak", class_breakpoint, hbreak_command,
7663 "Set a hardware assisted breakpoint. Args like \"break\" command.\n\
7664 Like \"break\" except the breakpoint requires hardware support,\n\
7665 some target hardware may not have this support.");
7666 set_cmd_completer (c, location_completer);
7667
7668 c = add_com ("thbreak", class_breakpoint, thbreak_command,
7669 "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
7670 Like \"hbreak\" except the breakpoint is only temporary,\n\
7671 so it will be deleted when hit.");
7672 set_cmd_completer (c, location_completer);
7673
7674 add_prefix_cmd ("enable", class_breakpoint, enable_command,
7675 "Enable some breakpoints.\n\
7676 Give breakpoint numbers (separated by spaces) as arguments.\n\
7677 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7678 This is used to cancel the effect of the \"disable\" command.\n\
7679 With a subcommand you can enable temporarily.",
7680 &enablelist, "enable ", 1, &cmdlist);
7681 if (xdb_commands)
7682 add_com ("ab", class_breakpoint, enable_command,
7683 "Enable some breakpoints.\n\
7684 Give breakpoint numbers (separated by spaces) as arguments.\n\
7685 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7686 This is used to cancel the effect of the \"disable\" command.\n\
7687 With a subcommand you can enable temporarily.");
7688
7689 add_com_alias ("en", "enable", class_breakpoint, 1);
7690
7691 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
7692 "Enable some breakpoints.\n\
7693 Give breakpoint numbers (separated by spaces) as arguments.\n\
7694 This is used to cancel the effect of the \"disable\" command.\n\
7695 May be abbreviated to simply \"enable\".\n",
7696 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
7697
7698 add_cmd ("once", no_class, enable_once_command,
7699 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7700 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7701 &enablebreaklist);
7702
7703 add_cmd ("delete", no_class, enable_delete_command,
7704 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7705 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7706 &enablebreaklist);
7707
7708 add_cmd ("delete", no_class, enable_delete_command,
7709 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
7710 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7711 &enablelist);
7712
7713 add_cmd ("once", no_class, enable_once_command,
7714 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
7715 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7716 &enablelist);
7717
7718 add_prefix_cmd ("disable", class_breakpoint, disable_command,
7719 "Disable some breakpoints.\n\
7720 Arguments are breakpoint numbers with spaces in between.\n\
7721 To disable all breakpoints, give no argument.\n\
7722 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
7723 &disablelist, "disable ", 1, &cmdlist);
7724 add_com_alias ("dis", "disable", class_breakpoint, 1);
7725 add_com_alias ("disa", "disable", class_breakpoint, 1);
7726 if (xdb_commands)
7727 add_com ("sb", class_breakpoint, disable_command,
7728 "Disable some breakpoints.\n\
7729 Arguments are breakpoint numbers with spaces in between.\n\
7730 To disable all breakpoints, give no argument.\n\
7731 A disabled breakpoint is not forgotten, but has no effect until reenabled.");
7732
7733 add_cmd ("breakpoints", class_alias, disable_command,
7734 "Disable some breakpoints.\n\
7735 Arguments are breakpoint numbers with spaces in between.\n\
7736 To disable all breakpoints, give no argument.\n\
7737 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
7738 This command may be abbreviated \"disable\".",
7739 &disablelist);
7740
7741 add_prefix_cmd ("delete", class_breakpoint, delete_command,
7742 "Delete some breakpoints or auto-display expressions.\n\
7743 Arguments are breakpoint numbers with spaces in between.\n\
7744 To delete all breakpoints, give no argument.\n\
7745 \n\
7746 Also a prefix command for deletion of other GDB objects.\n\
7747 The \"unset\" command is also an alias for \"delete\".",
7748 &deletelist, "delete ", 1, &cmdlist);
7749 add_com_alias ("d", "delete", class_breakpoint, 1);
7750 if (xdb_commands)
7751 add_com ("db", class_breakpoint, delete_command,
7752 "Delete some breakpoints.\n\
7753 Arguments are breakpoint numbers with spaces in between.\n\
7754 To delete all breakpoints, give no argument.\n");
7755
7756 add_cmd ("breakpoints", class_alias, delete_command,
7757 "Delete some breakpoints or auto-display expressions.\n\
7758 Arguments are breakpoint numbers with spaces in between.\n\
7759 To delete all breakpoints, give no argument.\n\
7760 This command may be abbreviated \"delete\".",
7761 &deletelist);
7762
7763 add_com ("clear", class_breakpoint, clear_command,
7764 concat ("Clear breakpoint at specified line or function.\n\
7765 Argument may be line number, function name, or \"*\" and an address.\n\
7766 If line number is specified, all breakpoints in that line are cleared.\n\
7767 If function is specified, breakpoints at beginning of function are cleared.\n\
7768 If an address is specified, breakpoints at that address are cleared.\n\n",
7769 "With no argument, clears all breakpoints in the line that the selected frame\n\
7770 is executing in.\n\
7771 \n\
7772 See also the \"delete\" command which clears breakpoints by number.", NULL));
7773
7774 c = add_com ("break", class_breakpoint, break_command,
7775 concat ("Set breakpoint at specified line or function.\n\
7776 Argument may be line number, function name, or \"*\" and an address.\n\
7777 If line number is specified, break at start of code for that line.\n\
7778 If function is specified, break at start of code for that function.\n\
7779 If an address is specified, break at that exact address.\n",
7780 "With no arg, uses current execution address of selected stack frame.\n\
7781 This is useful for breaking on return to a stack frame.\n\
7782 \n\
7783 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7784 \n\
7785 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7786 set_cmd_completer (c, location_completer);
7787
7788 add_com_alias ("b", "break", class_run, 1);
7789 add_com_alias ("br", "break", class_run, 1);
7790 add_com_alias ("bre", "break", class_run, 1);
7791 add_com_alias ("brea", "break", class_run, 1);
7792
7793 if (xdb_commands)
7794 {
7795 add_com_alias ("ba", "break", class_breakpoint, 1);
7796 add_com_alias ("bu", "ubreak", class_breakpoint, 1);
7797 }
7798
7799 if (dbx_commands)
7800 {
7801 add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command,
7802 "Break in function/address or break at a line in the current file.",
7803 &stoplist, "stop ", 1, &cmdlist);
7804 add_cmd ("in", class_breakpoint, stopin_command,
7805 "Break in function or address.\n", &stoplist);
7806 add_cmd ("at", class_breakpoint, stopat_command,
7807 "Break at a line in the current file.\n", &stoplist);
7808 add_com ("status", class_info, breakpoints_info,
7809 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7810 The \"Type\" column indicates one of:\n\
7811 \tbreakpoint - normal breakpoint\n\
7812 \twatchpoint - watchpoint\n\
7813 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7814 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7815 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7816 address and file/line number respectively.\n\n",
7817 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7818 are set to the address of the last breakpoint listed.\n\n\
7819 Convenience variable \"$bpnum\" contains the number of the last\n\
7820 breakpoint set.", NULL));
7821 }
7822
7823 add_info ("breakpoints", breakpoints_info,
7824 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7825 The \"Type\" column indicates one of:\n\
7826 \tbreakpoint - normal breakpoint\n\
7827 \twatchpoint - watchpoint\n\
7828 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7829 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7830 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7831 address and file/line number respectively.\n\n",
7832 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7833 are set to the address of the last breakpoint listed.\n\n\
7834 Convenience variable \"$bpnum\" contains the number of the last\n\
7835 breakpoint set.", NULL));
7836
7837 if (xdb_commands)
7838 add_com ("lb", class_breakpoint, breakpoints_info,
7839 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7840 The \"Type\" column indicates one of:\n\
7841 \tbreakpoint - normal breakpoint\n\
7842 \twatchpoint - watchpoint\n\
7843 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7844 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7845 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7846 address and file/line number respectively.\n\n",
7847 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7848 are set to the address of the last breakpoint listed.\n\n\
7849 Convenience variable \"$bpnum\" contains the number of the last\n\
7850 breakpoint set.", NULL));
7851
7852 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
7853 concat ("Status of all breakpoints, or breakpoint number NUMBER.\n\
7854 The \"Type\" column indicates one of:\n\
7855 \tbreakpoint - normal breakpoint\n\
7856 \twatchpoint - watchpoint\n\
7857 \tlongjmp - internal breakpoint used to step through longjmp()\n\
7858 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
7859 \tuntil - internal breakpoint used by the \"until\" command\n\
7860 \tfinish - internal breakpoint used by the \"finish\" command\n",
7861 "The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7862 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
7863 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
7864 address and file/line number respectively.\n\n",
7865 "Convenience variable \"$_\" and default examine address for \"x\"\n\
7866 are set to the address of the last breakpoint listed.\n\n\
7867 Convenience variable \"$bpnum\" contains the number of the last\n\
7868 breakpoint set.", NULL),
7869 &maintenanceinfolist);
7870
7871 add_com ("catch", class_breakpoint, catch_command,
7872 "Set catchpoints to catch events.\n\
7873 Raised signals may be caught:\n\
7874 \tcatch signal - all signals\n\
7875 \tcatch signal <signame> - a particular signal\n\
7876 Raised exceptions may be caught:\n\
7877 \tcatch throw - all exceptions, when thrown\n\
7878 \tcatch throw <exceptname> - a particular exception, when thrown\n\
7879 \tcatch catch - all exceptions, when caught\n\
7880 \tcatch catch <exceptname> - a particular exception, when caught\n\
7881 Thread or process events may be caught:\n\
7882 \tcatch thread_start - any threads, just after creation\n\
7883 \tcatch thread_exit - any threads, just before expiration\n\
7884 \tcatch thread_join - any threads, just after joins\n\
7885 Process events may be caught:\n\
7886 \tcatch start - any processes, just after creation\n\
7887 \tcatch exit - any processes, just before expiration\n\
7888 \tcatch fork - calls to fork()\n\
7889 \tcatch vfork - calls to vfork()\n\
7890 \tcatch exec - calls to exec()\n\
7891 Dynamically-linked library events may be caught:\n\
7892 \tcatch load - loads of any library\n\
7893 \tcatch load <libname> - loads of a particular library\n\
7894 \tcatch unload - unloads of any library\n\
7895 \tcatch unload <libname> - unloads of a particular library\n\
7896 The act of your program's execution stopping may also be caught:\n\
7897 \tcatch stop\n\n\
7898 C++ exceptions may be caught:\n\
7899 \tcatch throw - all exceptions, when thrown\n\
7900 \tcatch catch - all exceptions, when caught\n\
7901 \n\
7902 Do \"help set follow-fork-mode\" for info on debugging your program\n\
7903 after a fork or vfork is caught.\n\n\
7904 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
7905
7906 add_com ("tcatch", class_breakpoint, tcatch_command,
7907 "Set temporary catchpoints to catch events.\n\
7908 Args like \"catch\" command.\n\
7909 Like \"catch\" except the catchpoint is only temporary,\n\
7910 so it will be deleted when hit. Equivalent to \"catch\" followed\n\
7911 by using \"enable delete\" on the catchpoint number.");
7912
7913 c = add_com ("watch", class_breakpoint, watch_command,
7914 "Set a watchpoint for an expression.\n\
7915 A watchpoint stops execution of your program whenever the value of\n\
7916 an expression changes.");
7917 set_cmd_completer (c, location_completer);
7918
7919 c = add_com ("rwatch", class_breakpoint, rwatch_command,
7920 "Set a read watchpoint for an expression.\n\
7921 A watchpoint stops execution of your program whenever the value of\n\
7922 an expression is read.");
7923 set_cmd_completer (c, location_completer);
7924
7925 c = add_com ("awatch", class_breakpoint, awatch_command,
7926 "Set a watchpoint for an expression.\n\
7927 A watchpoint stops execution of your program whenever the value of\n\
7928 an expression is either read or written.");
7929 set_cmd_completer (c, location_completer);
7930
7931 add_info ("watchpoints", breakpoints_info,
7932 "Synonym for ``info breakpoints''.");
7933
7934
7935 c = add_set_cmd ("can-use-hw-watchpoints", class_support, var_zinteger,
7936 (char *) &can_use_hw_watchpoints,
7937 "Set debugger's willingness to use watchpoint hardware.\n\
7938 If zero, gdb will not use hardware for new watchpoints, even if\n\
7939 such is available. (However, any hardware watchpoints that were\n\
7940 created before setting this to nonzero, will continue to use watchpoint\n\
7941 hardware.)",
7942 &setlist);
7943 deprecated_add_show_from_set (c, &showlist);
7944
7945 can_use_hw_watchpoints = 1;
7946
7947 add_prefix_cmd ("breakpoint", class_maintenance, set_breakpoint_cmd, "\
7948 Breakpoint specific settings\n\
7949 Configure various breakpoint-specific variables such as\n\
7950 pending breakpoint behavior",
7951 &breakpoint_set_cmdlist, "set breakpoint ",
7952 0/*allow-unknown*/, &setlist);
7953 add_prefix_cmd ("breakpoint", class_maintenance, show_breakpoint_cmd, "\
7954 Breakpoint specific settings\n\
7955 Configure various breakpoint-specific variables such as\n\
7956 pending breakpoint behavior",
7957 &breakpoint_show_cmdlist, "show breakpoint ",
7958 0/*allow-unknown*/, &showlist);
7959
7960 add_setshow_auto_boolean_cmd ("pending", no_class, &pending_break_support, "\
7961 Set debugger's behavior regarding pending breakpoints.", "\
7962 Show debugger's behavior regarding pending breakpoints.", "\
7963 If on, an unrecognized breakpoint location will cause gdb to create a\n\
7964 pending breakpoint. If off, an unrecognized breakpoint location results in\n\
7965 an error. If auto, an unrecognized breakpoint location results in a\n\
7966 user-query to see if a pending breakpoint should be created.", "\
7967 Debugger's behavior regarding pending breakpoints is %s.",
7968 NULL, NULL,
7969 &breakpoint_set_cmdlist,
7970 &breakpoint_show_cmdlist);
7971
7972 pending_break_support = AUTO_BOOLEAN_AUTO;
7973 }
This page took 0.19961 seconds and 4 git commands to generate.