1 /* Everything about breakpoints, for GDB.
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
24 #include "breakpoint.h"
26 #include "expression.h"
38 /* local function prototypes */
41 catch_command_1 PARAMS ((char *, int, int));
44 enable_delete_command PARAMS ((char *, int));
47 enable_delete_breakpoint PARAMS ((struct breakpoint *));
50 enable_once_command PARAMS ((char *, int));
53 enable_once_breakpoint PARAMS ((struct breakpoint *));
56 disable_command PARAMS ((char *, int));
59 disable_breakpoint PARAMS ((struct breakpoint *));
62 enable_command PARAMS ((char *, int));
65 enable_breakpoint PARAMS ((struct breakpoint *));
68 map_breakpoint_numbers PARAMS ((char *, void (*)(struct breakpoint *)));
71 ignore_command PARAMS ((char *, int));
74 breakpoint_re_set_one PARAMS ((char *));
77 delete_command PARAMS ((char *, int));
80 clear_command PARAMS ((char *, int));
83 catch_command PARAMS ((char *, int));
85 static struct symtabs_and_lines
86 get_catch_sals PARAMS ((int));
89 watch_command PARAMS ((char *, int));
92 tbreak_command PARAMS ((char *, int));
95 break_command_1 PARAMS ((char *, int, int));
98 mention PARAMS ((struct breakpoint *));
100 static struct breakpoint *
101 set_raw_breakpoint PARAMS ((struct symtab_and_line));
104 check_duplicates PARAMS ((CORE_ADDR));
107 describe_other_breakpoints PARAMS ((CORE_ADDR));
110 breakpoints_info PARAMS ((char *, int));
113 breakpoint_1 PARAMS ((int, int));
116 bpstat_alloc PARAMS ((struct breakpoint *, bpstat));
119 breakpoint_cond_eval PARAMS ((char *));
122 cleanup_executing_breakpoints PARAMS ((int));
125 commands_command PARAMS ((char *, int));
128 condition_command PARAMS ((char *, int));
131 get_number PARAMS ((char **));
134 set_breakpoint_count PARAMS ((int));
137 extern int addressprint; /* Print machine addresses? */
138 extern int demangle; /* Print de-mangled symbol names? */
140 /* Are we executing breakpoint commands? */
141 static int executing_breakpoint_commands;
143 /* Walk the following statement or block through all breakpoints.
144 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
147 #define ALL_BREAKPOINTS(b) for (b = breakpoint_chain; b; b = b->next)
149 #define ALL_BREAKPOINTS_SAFE(b,tmp) \
150 for (b = breakpoint_chain; \
151 b? (tmp=b->next, 1): 0; \
154 /* Chain of all breakpoints defined. */
156 struct breakpoint *breakpoint_chain;
158 /* Number of last breakpoint made. */
160 static int breakpoint_count;
162 /* Set breakpoint count to NUM. */
164 set_breakpoint_count (num)
167 breakpoint_count = num;
168 set_internalvar (lookup_internalvar ("bpnum"),
169 value_from_longest (builtin_type_int, (LONGEST) num));
172 /* Default address, symtab and line to put a breakpoint at
173 for "break" command with no arg.
174 if default_breakpoint_valid is zero, the other three are
175 not valid, and "break" with no arg is an error.
177 This set by print_stack_frame, which calls set_default_breakpoint. */
179 int default_breakpoint_valid;
180 CORE_ADDR default_breakpoint_address;
181 struct symtab *default_breakpoint_symtab;
182 int default_breakpoint_line;
184 /* Flag indicating extra verbosity for xgdb. */
185 extern int xgdb_verbose;
187 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
188 Advance *PP after the string and any trailing whitespace.
190 Currently the string can either be a number or "$" followed by the name
191 of a convenience variable. Making it an expression wouldn't work well
192 for map_breakpoint_numbers (e.g. "4 + 5 + 6"). */
201 /* Empty line means refer to the last breakpoint. */
202 return breakpoint_count;
205 /* Make a copy of the name, so we can null-terminate it
206 to pass to lookup_internalvar(). */
211 while (isalnum (*p) || *p == '_')
213 varname = (char *) alloca (p - start + 1);
214 strncpy (varname, start, p - start);
215 varname[p - start] = '\0';
216 val = value_of_internalvar (lookup_internalvar (varname));
217 if (TYPE_CODE (VALUE_TYPE (val)) != TYPE_CODE_INT)
219 "Convenience variables used to specify breakpoints must have integer values."
221 retval = (int) value_as_long (val);
227 while (*p >= '0' && *p <= '9')
230 /* There is no number here. (e.g. "cond a == b"). */
231 error_no_arg ("breakpoint number");
234 if (!(isspace (*p) || *p == '\0'))
235 error ("breakpoint number expected");
242 /* condition N EXP -- set break condition of breakpoint N to EXP. */
245 condition_command (arg, from_tty)
249 register struct breakpoint *b;
254 error_no_arg ("breakpoint number");
257 bnum = get_number (&p);
260 if (b->number == bnum)
267 if (b->cond_string != NULL)
268 free ((PTR)b->cond_string);
273 b->cond_string = NULL;
275 printf_filtered ("Breakpoint %d now unconditional.\n", bnum);
280 /* I don't know if it matters whether this is the string the user
281 typed in or the decompiled expression. */
282 b->cond_string = savestring (arg, strlen (arg));
283 b->cond = parse_exp_1 (&arg, block_for_pc (b->address), 0);
285 error ("Junk at end of expression");
290 error ("No breakpoint number %d.", bnum);
295 commands_command (arg, from_tty)
299 register struct breakpoint *b;
302 struct command_line *l;
304 /* If we allowed this, we would have problems with when to
305 free the storage, if we change the commands currently
308 if (executing_breakpoint_commands)
309 error ("Can't use the \"commands\" command among a breakpoint's commands.");
312 bnum = get_number (&p);
314 error ("Unexpected extra arguments following breakpoint number.");
317 if (b->number == bnum)
319 if (from_tty && input_from_terminal_p ())
321 printf_filtered ("Type commands for when breakpoint %d is hit, one per line.\n\
322 End with a line saying just \"end\".\n", bnum);
325 l = read_command_lines ();
326 free_command_lines (&b->commands);
330 error ("No breakpoint number %d.", bnum);
333 extern int memory_breakpoint_size; /* from mem-break.c */
335 /* Like target_read_memory() but if breakpoints are inserted, return
336 the shadow contents instead of the breakpoints themselves.
338 Read "memory data" from whatever target or inferior we have.
339 Returns zero if successful, errno value if not. EIO is used
340 for address out of bounds. If breakpoints are inserted, returns
341 shadow contents, not the breakpoints themselves. From breakpoint.c. */
344 read_memory_nobpt (memaddr, myaddr, len)
350 struct breakpoint *b;
352 if (memory_breakpoint_size < 0)
353 /* No breakpoints on this machine. */
354 return target_read_memory (memaddr, myaddr, len);
358 if (b->type == bp_watchpoint || !b->inserted)
360 else if (b->address + memory_breakpoint_size <= memaddr)
361 /* The breakpoint is entirely before the chunk of memory
364 else if (b->address >= memaddr + len)
365 /* The breakpoint is entirely after the chunk of memory we
370 /* Copy the breakpoint from the shadow contents, and recurse
371 for the things before and after. */
373 /* Addresses and length of the part of the breakpoint that
375 CORE_ADDR membpt = b->address;
376 unsigned int bptlen = memory_breakpoint_size;
377 /* Offset within shadow_contents. */
380 if (membpt < memaddr)
382 /* Only copy the second part of the breakpoint. */
383 bptlen -= memaddr - membpt;
384 bptoffset = memaddr - membpt;
388 if (membpt + bptlen > memaddr + len)
390 /* Only copy the first part of the breakpoint. */
391 bptlen -= (membpt + bptlen) - (memaddr + len);
394 bcopy (b->shadow_contents + bptoffset,
395 myaddr + membpt - memaddr, bptlen);
397 if (membpt > memaddr)
399 /* Copy the section of memory before the breakpoint. */
400 status = read_memory_nobpt (memaddr, myaddr, membpt - memaddr);
405 if (membpt + bptlen < memaddr + len)
407 /* Copy the section of memory after the breakpoint. */
408 status = read_memory_nobpt
410 myaddr + membpt + bptlen - memaddr,
411 memaddr + len - (membpt + bptlen));
418 /* Nothing overlaps. Just call read_memory_noerr. */
419 return target_read_memory (memaddr, myaddr, len);
422 /* insert_breakpoints is used when starting or continuing the program.
423 remove_breakpoints is used when the program stops.
424 Both return zero if successful,
425 or an `errno' value if could not write the inferior. */
428 insert_breakpoints ()
430 register struct breakpoint *b;
432 int disabled_breaks = 0;
435 if (b->type != bp_watchpoint
436 && b->enable != disabled
440 val = target_insert_breakpoint(b->address, b->shadow_contents);
443 /* Can't set the breakpoint. */
444 #if defined (DISABLE_UNSETTABLE_BREAK)
445 if (DISABLE_UNSETTABLE_BREAK (b->address))
448 b->enable = disabled;
449 if (!disabled_breaks)
452 "Cannot insert breakpoint %d:\n", b->number);
453 printf_filtered ("Disabling shared library breakpoints:\n");
456 printf_filtered ("%d ", b->number);
461 fprintf (stderr, "Cannot insert breakpoint %d:\n", b->number);
462 #ifdef ONE_PROCESS_WRITETEXT
464 "The same program may be running in another process.\n");
466 memory_error (val, b->address); /* which bombs us out */
473 printf_filtered ("\n");
478 remove_breakpoints ()
480 register struct breakpoint *b;
483 #ifdef BREAKPOINT_DEBUG
484 printf ("Removing breakpoints.\n");
485 #endif /* BREAKPOINT_DEBUG */
488 if (b->type != bp_watchpoint && b->inserted)
490 val = target_remove_breakpoint(b->address, b->shadow_contents);
494 #ifdef BREAKPOINT_DEBUG
495 printf ("Removed breakpoint at %s",
496 local_hex_string(b->address));
497 printf (", shadow %s",
498 local_hex_string(b->shadow_contents[0]));
500 local_hex_string(b->shadow_contents[1]));
501 #endif /* BREAKPOINT_DEBUG */
507 /* Clear the "inserted" flag in all breakpoints.
508 This is done when the inferior is loaded. */
511 mark_breakpoints_out ()
513 register struct breakpoint *b;
519 /* breakpoint_here_p (PC) returns 1 if an enabled breakpoint exists at PC.
520 When continuing from a location with a breakpoint,
521 we actually single step once before calling insert_breakpoints. */
524 breakpoint_here_p (pc)
527 register struct breakpoint *b;
530 if (b->enable != disabled && b->address == pc)
536 /* bpstat stuff. External routines' interfaces are documented
539 /* Clear a bpstat so that it says we are not at any breakpoint.
540 Also free any storage that is part of a bpstat. */
555 if (p->old_val != NULL)
556 value_free (p->old_val);
563 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
564 is part of the bpstat is copied as well. */
577 for (; bs != NULL; bs = bs->next)
579 tmp = (bpstat) xmalloc (sizeof (*tmp));
580 bcopy (bs, tmp, sizeof (*tmp));
582 /* This is the first thing in the chain. */
592 /* Find the bpstat associated with this breakpoint */
595 bpstat_find_breakpoint(bsp, breakpoint)
597 struct breakpoint *breakpoint;
599 if (bsp == NULL) return NULL;
601 for (;bsp != NULL; bsp = bsp->next) {
602 if (bsp->breakpoint_at == breakpoint) return bsp;
607 /* Return the breakpoint number of the first breakpoint we are stopped
608 at. *BSP upon return is a bpstat which points to the remaining
609 breakpoints stopped at (but which is not guaranteed to be good for
610 anything but further calls to bpstat_num).
611 Return 0 if passed a bpstat which does not indicate any breakpoints. */
617 struct breakpoint *b;
620 return 0; /* No more breakpoint values */
623 b = (*bsp)->breakpoint_at;
626 return -1; /* breakpoint that's been deleted since */
628 return b->number; /* We have its number */
632 /* Modify BS so that the actions will not be performed. */
635 bpstat_clear_actions (bs)
638 for (; bs != NULL; bs = bs->next)
641 if (bs->old_val != NULL)
643 value_free (bs->old_val);
649 /* Stub for cleaning up our state if we error-out of a breakpoint command */
652 cleanup_executing_breakpoints (ignore)
655 executing_breakpoint_commands = 0;
658 /* Execute all the commands associated with all the breakpoints at this
659 location. Any of these commands could cause the process to proceed
660 beyond this point, etc. We look out for such changes by checking
661 the global "breakpoint_proceeded" after each command. */
664 bpstat_do_actions (bsp)
668 struct cleanup *old_chain;
670 executing_breakpoint_commands = 1;
671 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
676 breakpoint_proceeded = 0;
677 for (; bs != NULL; bs = bs->next)
681 char *line = bs->commands->line;
682 bs->commands = bs->commands->next;
683 execute_command (line, 0);
684 /* If the inferior is proceeded by the command, bomb out now.
685 The bpstat chain has been blown away by wait_for_inferior.
686 But since execution has stopped again, there is a new bpstat
687 to look at, so start over. */
688 if (breakpoint_proceeded)
693 executing_breakpoint_commands = 0;
694 discard_cleanups (old_chain);
697 /* Print a message indicating what happened. Returns nonzero to
698 say that only the source line should be printed after this (zero
699 return means print the frame as well as the source line). */
705 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
706 which has since been deleted. */
708 || bs->breakpoint_at == NULL
709 || (bs->breakpoint_at->type != bp_breakpoint
710 && bs->breakpoint_at->type != bp_watchpoint))
713 /* If bpstat_stop_status says don't print, OK, we won't. An example
714 circumstance is when we single-stepped for both a watchpoint and
715 for a "stepi" instruction. The bpstat says that the watchpoint
716 explains the stop, but we shouldn't print because the watchpoint's
717 value didn't change -- and the real reason we are stopping here
718 rather than continuing to step (as the watchpoint would've had us do)
719 is because of the "stepi". */
723 if (bs->breakpoint_at->type == bp_breakpoint)
725 /* I think the user probably only wants to see one breakpoint
726 number, not all of them. */
727 printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
731 if (bs->old_val != NULL)
733 printf_filtered ("\nWatchpoint %d, ", bs->breakpoint_at->number);
734 print_expression (bs->breakpoint_at->exp, stdout);
735 printf_filtered ("\nOld value = ");
736 value_print (bs->old_val, stdout, 0, Val_pretty_default);
737 printf_filtered ("\nNew value = ");
738 value_print (bs->breakpoint_at->val, stdout, 0,
740 printf_filtered ("\n");
741 value_free (bs->old_val);
746 /* Maybe another breakpoint in the chain caused us to stop.
747 (Currently all watchpoints go on the bpstat whether hit or
748 not. That probably could (should) be changed, provided care is taken
749 with respect to bpstat_explains_signal). */
751 return bpstat_print (bs->next);
753 fprintf_filtered (stderr, "gdb internal error: in bpstat_print\n");
757 /* Evaluate the expression EXP and return 1 if value is zero.
758 This is used inside a catch_errors to evaluate the breakpoint condition.
759 The argument is a "struct expression *" that has been cast to char * to
760 make it pass through catch_errors. */
763 breakpoint_cond_eval (exp)
766 return !value_true (evaluate_expression ((struct expression *)exp));
769 /* Allocate a new bpstat and chain it to the current one. */
772 bpstat_alloc (b, cbs)
773 register struct breakpoint *b;
774 bpstat cbs; /* Current "bs" value */
778 bs = (bpstat) xmalloc (sizeof (*bs));
780 bs->breakpoint_at = b;
781 /* If the condition is false, etc., don't do the commands. */
783 bs->momentary = b->disposition == delete;
788 /* Determine whether we stopped at a breakpoint, etc, or whether we
789 don't understand this stop. Result is a chain of bpstat's such that:
791 if we don't understand the stop, the result is a null pointer.
793 if we understand why we stopped, the result is not null, and
794 the first element of the chain contains summary "stop" and
795 "print" flags for the whole chain.
797 Each element of the chain refers to a particular breakpoint or
798 watchpoint at which we have stopped. (We may have stopped for
801 Each element of the chain has valid next, breakpoint_at,
802 commands, FIXME??? fields.
808 bpstat_stop_status (pc, frame_address)
810 FRAME_ADDR frame_address;
812 register struct breakpoint *b;
816 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
817 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
818 int real_breakpoint = 0;
820 /* Root of the chain of bpstat's */
821 struct bpstat root_bs[1];
822 /* Pointer to the last thing in the chain currently. */
825 /* Get the address where the breakpoint would have been. */
826 bp_addr = *pc - DECR_PC_AFTER_BREAK;
833 if (b->enable == disabled)
836 if (b->type != bp_watchpoint && b->address != bp_addr)
839 /* Come here if it's a watchpoint, or if the break address matches */
841 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
846 if (b->type == bp_watchpoint)
848 int within_current_scope;
849 if (b->exp_valid_block != NULL)
850 within_current_scope =
851 contained_in (get_selected_block (), b->exp_valid_block);
853 within_current_scope = 1;
855 if (within_current_scope)
857 /* We use value_{,free_to_}mark because it could be a
858 *long* time before we return to the command level and
859 call free_all_values. */
861 value mark = value_mark ();
862 value new_val = evaluate_expression (b->exp);
863 if (!value_equal (b->val, new_val))
865 release_value (new_val);
866 value_free_to_mark (mark);
867 bs->old_val = b->val;
869 /* We will stop here */
873 /* Nothing changed, don't do anything. */
874 value_free_to_mark (mark);
876 /* We won't stop here */
881 /* This seems like the only logical thing to do because
882 if we temporarily ignored the watchpoint, then when
883 we reenter the block in which it is valid it contains
884 garbage (in the case of a function, it may have two
885 garbage values, one before and one after the prologue).
886 So we can't even detect the first assignment to it and
887 watch after that (since the garbage may or may not equal
888 the first value assigned). */
889 b->enable = disabled;
891 Watchpoint %d disabled because the program has left the block in\n\
892 which its expression is valid.\n", b->number);
893 /* We won't stop here */
894 /* FIXME, maybe we should stop here!!! */
898 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
903 if (b->frame && b->frame != frame_address)
911 /* Need to select the frame, with all that implies
912 so that the conditions will have the right context. */
913 select_frame (get_current_frame (), 0);
915 = catch_errors (breakpoint_cond_eval, (char *)(b->cond),
916 "Error in testing breakpoint condition:\n");
917 /* FIXME-someday, should give breakpoint # */
920 if (b->cond && value_is_zero)
924 else if (b->ignore_count > 0)
931 /* We will stop here */
932 if (b->disposition == disable)
933 b->enable = disabled;
934 bs->commands = b->commands;
937 if (bs->commands && !strcmp ("silent", bs->commands->line))
939 bs->commands = bs->commands->next;
950 bs->next = NULL; /* Terminate the chain */
951 bs = root_bs->next; /* Re-grab the head of the chain */
956 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
960 #if defined (SHIFT_INST_REGS)
962 CORE_ADDR pc = read_register (PC_REGNUM);
963 CORE_ADDR npc = read_register (NPC_REGNUM);
966 write_register (NNPC_REGNUM, npc);
967 write_register (NPC_REGNUM, pc);
970 #else /* No SHIFT_INST_REGS. */
972 #endif /* No SHIFT_INST_REGS. */
974 #endif /* DECR_PC_AFTER_BREAK != 0. */
979 /* Nonzero if we should step constantly (e.g. watchpoints on machines
980 without hardware support). This isn't related to a specific bpstat,
981 just to things like whether watchpoints are set. */
984 bpstat_should_step ()
986 struct breakpoint *b;
988 if (b->enable == enabled && b->type == bp_watchpoint)
993 /* Print information on breakpoint number BNUM, or -1 if all.
994 If WATCHPOINTS is zero, process only breakpoints; if WATCHPOINTS
995 is nonzero, process only watchpoints. */
998 breakpoint_1 (bnum, allflag)
1002 register struct breakpoint *b;
1003 register struct command_line *l;
1004 register struct symbol *sym;
1005 CORE_ADDR last_addr = (CORE_ADDR)-1;
1006 int found_a_breakpoint = 0;
1007 static char *bptypes[] = {"breakpoint", "until", "finish", "watchpoint",
1008 "longjmp", "longjmp resume"};
1009 static char *bpdisps[] = {"del", "dis", "keep"};
1010 static char bpenables[] = "ny";
1012 if (!breakpoint_chain)
1014 printf_filtered ("No breakpoints or watchpoints.\n");
1020 || bnum == b->number)
1022 /* We only print out user settable breakpoints unless the allflag is set. */
1024 && b->type != bp_breakpoint
1025 && b->type != bp_watchpoint)
1028 if (!found_a_breakpoint++)
1029 printf_filtered ("Num Type Disp Enb %sWhat\n",
1030 addressprint ? "Address " : "");
1032 printf_filtered ("%-3d %-14s %-4s %-3c ",
1034 bptypes[(int)b->type],
1035 bpdisps[(int)b->disposition],
1036 bpenables[(int)b->enable]);
1040 print_expression (b->exp, stdout);
1046 case bp_longjmp_resume:
1048 printf_filtered ("%s ", local_hex_string_custom(b->address, "08"));
1050 last_addr = b->address;
1053 sym = find_pc_function (b->address);
1056 fputs_filtered ("in ", stdout);
1057 fputs_demangled (SYMBOL_NAME (sym), stdout,
1058 DMGL_ANSI | DMGL_PARAMS);
1059 fputs_filtered (" at ", stdout);
1061 fputs_filtered (b->symtab->filename, stdout);
1062 printf_filtered (":%d", b->line_number);
1065 print_address_symbolic (b->address, stdout, demangle, " ");
1068 printf_filtered ("\n");
1071 printf_filtered ("\tstop only in stack frame at %s\n",
1072 local_hex_string(b->frame));
1075 printf_filtered ("\tstop only if ");
1076 print_expression (b->cond, stdout);
1077 printf_filtered ("\n");
1079 if (b->ignore_count)
1080 printf_filtered ("\tignore next %d hits\n", b->ignore_count);
1081 if ((l = b->commands))
1084 fputs_filtered ("\t", stdout);
1085 fputs_filtered (l->line, stdout);
1086 fputs_filtered ("\n", stdout);
1091 if (!found_a_breakpoint
1093 printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
1095 /* Compare against (CORE_ADDR)-1 in case some compiler decides
1096 that a comparison of an unsigned with -1 is always false. */
1097 if (last_addr != (CORE_ADDR)-1)
1098 set_next_address (last_addr);
1103 breakpoints_info (bnum_exp, from_tty)
1110 bnum = parse_and_eval_address (bnum_exp);
1112 breakpoint_1 (bnum, 0);
1117 all_breakpoints_info (bnum_exp, from_tty)
1124 bnum = parse_and_eval_address (bnum_exp);
1126 breakpoint_1 (bnum, 1);
1129 /* Print a message describing any breakpoints set at PC. */
1132 describe_other_breakpoints (pc)
1133 register CORE_ADDR pc;
1135 register int others = 0;
1136 register struct breakpoint *b;
1139 if (b->address == pc)
1143 printf ("Note: breakpoint%s ", (others > 1) ? "s" : "");
1145 if (b->address == pc)
1150 (b->enable == disabled) ? " (disabled)" : "",
1151 (others > 1) ? "," : ((others == 1) ? " and" : ""));
1153 printf ("also set at pc %s.\n", local_hex_string(pc));
1157 /* Set the default place to put a breakpoint
1158 for the `break' command with no arguments. */
1161 set_default_breakpoint (valid, addr, symtab, line)
1164 struct symtab *symtab;
1167 default_breakpoint_valid = valid;
1168 default_breakpoint_address = addr;
1169 default_breakpoint_symtab = symtab;
1170 default_breakpoint_line = line;
1173 /* Rescan breakpoints at address ADDRESS,
1174 marking the first one as "first" and any others as "duplicates".
1175 This is so that the bpt instruction is only inserted once. */
1178 check_duplicates (address)
1181 register struct breakpoint *b;
1182 register int count = 0;
1184 if (address == 0) /* Watchpoints are uninteresting */
1188 if (b->enable != disabled && b->address == address)
1191 b->duplicate = count > 1;
1195 /* Low level routine to set a breakpoint.
1196 Takes as args the three things that every breakpoint must have.
1197 Returns the breakpoint object so caller can set other things.
1198 Does not set the breakpoint number!
1199 Does not print anything.
1201 ==> This routine should not be called if there is a chance of later
1202 error(); otherwise it leaves a bogus breakpoint on the chain. Validate
1203 your arguments BEFORE calling this routine! */
1205 static struct breakpoint *
1206 set_raw_breakpoint (sal)
1207 struct symtab_and_line sal;
1209 register struct breakpoint *b, *b1;
1211 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
1212 bzero (b, sizeof *b);
1213 b->address = sal.pc;
1214 b->symtab = sal.symtab;
1215 b->line_number = sal.line;
1216 b->enable = enabled;
1219 b->ignore_count = 0;
1223 /* Add this breakpoint to the end of the chain
1224 so that a list of breakpoints will come out in order
1225 of increasing numbers. */
1227 b1 = breakpoint_chain;
1229 breakpoint_chain = b;
1237 check_duplicates (sal.pc);
1243 create_longjmp_breakpoint(func_name)
1246 struct symtab_and_line sal;
1247 struct breakpoint *b;
1248 static int internal_breakpoint_number = -1;
1250 if (func_name != NULL)
1252 struct minimal_symbol *m;
1254 m = lookup_minimal_symbol(func_name, (struct objfile *)NULL);
1256 sal.pc = m->address;
1266 b = set_raw_breakpoint(sal);
1269 b->type = func_name != NULL ? bp_longjmp : bp_longjmp_resume;
1270 b->disposition = donttouch;
1271 b->enable = disabled;
1274 b->addr_string = strsave(func_name);
1275 b->number = internal_breakpoint_number--;
1278 /* Call this routine when stepping and nexting to enable a breakpoint if we do
1279 a longjmp(). When we hit that breakpoint, call
1280 set_longjmp_resume_breakpoint() to figure out where we are going. */
1283 enable_longjmp_breakpoint()
1285 register struct breakpoint *b;
1288 if (b->type == bp_longjmp)
1289 b->enable = enabled;
1293 disable_longjmp_breakpoint()
1295 register struct breakpoint *b;
1298 if (b->type == bp_longjmp
1299 || b->type == bp_longjmp_resume)
1300 b->enable = disabled;
1303 /* Call this after hitting the longjmp() breakpoint. Use this to set a new
1304 breakpoint at the target of the jmp_buf.
1306 FIXME - This ought to be done by setting a temporary breakpoint that gets
1307 deleted automatically...
1311 set_longjmp_resume_breakpoint(pc, frame)
1315 register struct breakpoint *b;
1318 if (b->type == bp_longjmp_resume)
1321 b->enable = enabled;
1323 b->frame = FRAME_FP(frame);
1330 /* Set a breakpoint that will evaporate an end of command
1331 at address specified by SAL.
1332 Restrict it to frame FRAME if FRAME is nonzero. */
1335 set_momentary_breakpoint (sal, frame, type)
1336 struct symtab_and_line sal;
1340 register struct breakpoint *b;
1341 b = set_raw_breakpoint (sal);
1343 b->enable = enabled;
1344 b->disposition = donttouch;
1345 b->frame = (frame ? FRAME_FP (frame) : 0);
1351 clear_momentary_breakpoints ()
1353 register struct breakpoint *b;
1355 if (b->disposition == delete)
1357 delete_breakpoint (b);
1363 /* Tell the user we have just set a breakpoint B. */
1366 struct breakpoint *b;
1371 printf_filtered ("Watchpoint %d: ", b->number);
1372 print_expression (b->exp, stdout);
1375 printf_filtered ("Breakpoint %d at %s", b->number,
1376 local_hex_string(b->address));
1378 printf_filtered (": file %s, line %d.",
1379 b->symtab->filename, b->line_number);
1381 printf_filtered ("\n");
1385 /* Nobody calls this currently. */
1386 /* Set a breakpoint from a symtab and line.
1387 If TEMPFLAG is nonzero, it is a temporary breakpoint.
1388 ADDR_STRING is a malloc'd string holding the name of where we are
1389 setting the breakpoint. This is used later to re-set it after the
1390 program is relinked and symbols are reloaded.
1391 Print the same confirmation messages that the breakpoint command prints. */
1394 set_breakpoint (s, line, tempflag, addr_string)
1400 register struct breakpoint *b;
1401 struct symtab_and_line sal;
1406 resolve_sal_pc (&sal); /* Might error out */
1407 describe_other_breakpoints (sal.pc);
1409 b = set_raw_breakpoint (sal);
1410 set_breakpoint_count (breakpoint_count + 1);
1411 b->number = breakpoint_count;
1412 b->type = bp_breakpoint;
1414 b->addr_string = addr_string;
1415 b->enable = enabled;
1416 b->disposition = tempflag ? delete : donttouch;
1422 /* Set a breakpoint according to ARG (function, linenum or *address)
1423 and make it temporary if TEMPFLAG is nonzero. */
1426 break_command_1 (arg, tempflag, from_tty)
1428 int tempflag, from_tty;
1430 struct symtabs_and_lines sals;
1431 struct symtab_and_line sal;
1432 register struct expression *cond = 0;
1433 register struct breakpoint *b;
1435 /* Pointers in arg to the start, and one past the end, of the condition. */
1436 char *cond_start = NULL;
1438 /* Pointers in arg to the start, and one past the end,
1439 of the address part. */
1440 char *addr_start = NULL;
1448 sal.line = sal.pc = sal.end = 0;
1451 /* If no arg given, or if first arg is 'if ', use the default breakpoint. */
1453 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
1454 && (arg[2] == ' ' || arg[2] == '\t')))
1456 if (default_breakpoint_valid)
1458 sals.sals = (struct symtab_and_line *)
1459 xmalloc (sizeof (struct symtab_and_line));
1460 sal.pc = default_breakpoint_address;
1461 sal.line = default_breakpoint_line;
1462 sal.symtab = default_breakpoint_symtab;
1467 error ("No default breakpoint address now.");
1473 /* Force almost all breakpoints to be in terms of the
1474 current_source_symtab (which is decode_line_1's default). This
1475 should produce the results we want almost all of the time while
1476 leaving default_breakpoint_* alone. */
1477 if (default_breakpoint_valid
1478 && (!current_source_symtab
1479 || (arg && (*arg == '+' || *arg == '-'))))
1480 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
1481 default_breakpoint_line);
1483 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0);
1491 /* Resolve all line numbers to PC's, and verify that conditions
1492 can be parsed, before setting any breakpoints. */
1493 for (i = 0; i < sals.nelts; i++)
1495 resolve_sal_pc (&sals.sals[i]);
1499 if (arg[0] == 'i' && arg[1] == 'f'
1500 && (arg[2] == ' ' || arg[2] == '\t'))
1504 cond = parse_exp_1 (&arg, block_for_pc (sals.sals[i].pc), 0);
1508 error ("Junk at end of arguments.");
1512 /* Now set all the breakpoints. */
1513 for (i = 0; i < sals.nelts; i++)
1518 describe_other_breakpoints (sal.pc);
1520 b = set_raw_breakpoint (sal);
1521 set_breakpoint_count (breakpoint_count + 1);
1522 b->number = breakpoint_count;
1523 b->type = bp_breakpoint;
1527 b->addr_string = savestring (addr_start, addr_end - addr_start);
1529 b->cond_string = savestring (cond_start, cond_end - cond_start);
1531 b->enable = enabled;
1532 b->disposition = tempflag ? delete : donttouch;
1539 printf ("Multiple breakpoints were set.\n");
1540 printf ("Use the \"delete\" command to delete unwanted breakpoints.\n");
1542 free ((PTR)sals.sals);
1545 /* Helper function for break_command_1 and disassemble_command. */
1548 resolve_sal_pc (sal)
1549 struct symtab_and_line *sal;
1553 if (sal->pc == 0 && sal->symtab != 0)
1555 pc = find_line_pc (sal->symtab, sal->line);
1557 error ("No line %d in file \"%s\".",
1558 sal->line, sal->symtab->filename);
1564 break_command (arg, from_tty)
1568 break_command_1 (arg, 0, from_tty);
1572 tbreak_command (arg, from_tty)
1576 break_command_1 (arg, 1, from_tty);
1581 watch_command (arg, from_tty)
1585 struct breakpoint *b;
1586 struct symtab_and_line sal;
1587 struct expression *exp;
1588 struct block *exp_valid_block;
1595 /* Parse arguments. */
1596 innermost_block = NULL;
1597 exp = parse_expression (arg);
1598 exp_valid_block = innermost_block;
1599 val = evaluate_expression (exp);
1600 release_value (val);
1602 /* Now set up the breakpoint. */
1603 b = set_raw_breakpoint (sal);
1604 set_breakpoint_count (breakpoint_count + 1);
1605 b->number = breakpoint_count;
1606 b->type = bp_watchpoint;
1607 b->disposition = donttouch;
1609 b->exp_valid_block = exp_valid_block;
1612 b->cond_string = NULL;
1617 * Helper routine for the until_command routine in infcmd.c. Here
1618 * because it uses the mechanisms of breakpoints.
1622 until_break_command (arg, from_tty)
1626 struct symtabs_and_lines sals;
1627 struct symtab_and_line sal;
1628 FRAME prev_frame = get_prev_frame (selected_frame);
1629 struct breakpoint *breakpoint;
1630 struct cleanup *old_chain;
1632 clear_proceed_status ();
1634 /* Set a breakpoint where the user wants it and at return from
1637 if (default_breakpoint_valid)
1638 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
1639 default_breakpoint_line);
1641 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0);
1643 if (sals.nelts != 1)
1644 error ("Couldn't get information on specified line.");
1647 free ((PTR)sals.sals); /* malloc'd, so freed */
1650 error ("Junk at end of arguments.");
1652 resolve_sal_pc (&sal);
1654 breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
1656 old_chain = make_cleanup(delete_breakpoint, breakpoint);
1658 /* Keep within the current frame */
1662 struct frame_info *fi;
1664 fi = get_frame_info (prev_frame);
1665 sal = find_pc_line (fi->pc, 0);
1667 breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
1668 make_cleanup(delete_breakpoint, breakpoint);
1671 proceed (-1, -1, 0);
1672 do_cleanups(old_chain);
1676 /* These aren't used; I don't konw what they were for. */
1677 /* Set a breakpoint at the catch clause for NAME. */
1679 catch_breakpoint (name)
1685 disable_catch_breakpoint ()
1690 delete_catch_breakpoint ()
1695 enable_catch_breakpoint ()
1702 struct sal_chain *next;
1703 struct symtab_and_line sal;
1707 /* This isn't used; I don't know what it was for. */
1708 /* For each catch clause identified in ARGS, run FUNCTION
1709 with that clause as an argument. */
1710 static struct symtabs_and_lines
1711 map_catch_names (args, function)
1715 register char *p = args;
1717 struct symtabs_and_lines sals;
1719 struct sal_chain *sal_chain = 0;
1723 error_no_arg ("one or more catch names");
1731 /* Don't swallow conditional part. */
1732 if (p1[0] == 'i' && p1[1] == 'f'
1733 && (p1[2] == ' ' || p1[2] == '\t'))
1739 while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
1743 if (*p1 && *p1 != ' ' && *p1 != '\t')
1744 error ("Arguments must be catch names.");
1750 struct sal_chain *next
1751 = (struct sal_chain *)alloca (sizeof (struct sal_chain));
1752 next->next = sal_chain;
1753 next->sal = get_catch_sal (p);
1758 printf ("No catch clause for exception %s.\n", p);
1763 while (*p == ' ' || *p == '\t') p++;
1768 /* This shares a lot of code with `print_frame_label_vars' from stack.c. */
1770 static struct symtabs_and_lines
1771 get_catch_sals (this_level_only)
1772 int this_level_only;
1774 register struct blockvector *bl;
1775 register struct block *block;
1776 int index, have_default = 0;
1777 struct frame_info *fi;
1779 struct symtabs_and_lines sals;
1780 struct sal_chain *sal_chain = 0;
1781 char *blocks_searched;
1783 /* Not sure whether an error message is always the correct response,
1784 but it's better than a core dump. */
1785 if (selected_frame == NULL)
1786 error ("No selected frame.");
1787 block = get_frame_block (selected_frame);
1788 fi = get_frame_info (selected_frame);
1795 error ("No symbol table info available.\n");
1797 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
1798 blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1799 bzero (blocks_searched, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1803 CORE_ADDR end = BLOCK_END (block) - 4;
1806 if (bl != blockvector_for_pc (end, &index))
1807 error ("blockvector blotch");
1808 if (BLOCKVECTOR_BLOCK (bl, index) != block)
1809 error ("blockvector botch");
1810 last_index = BLOCKVECTOR_NBLOCKS (bl);
1813 /* Don't print out blocks that have gone by. */
1814 while (index < last_index
1815 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
1818 while (index < last_index
1819 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
1821 if (blocks_searched[index] == 0)
1823 struct block *b = BLOCKVECTOR_BLOCK (bl, index);
1826 register struct symbol *sym;
1828 nsyms = BLOCK_NSYMS (b);
1830 for (i = 0; i < nsyms; i++)
1832 sym = BLOCK_SYM (b, i);
1833 if (! strcmp (SYMBOL_NAME (sym), "default"))
1839 if (SYMBOL_CLASS (sym) == LOC_LABEL)
1841 struct sal_chain *next = (struct sal_chain *)
1842 alloca (sizeof (struct sal_chain));
1843 next->next = sal_chain;
1844 next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
1848 blocks_searched[index] = 1;
1854 if (sal_chain && this_level_only)
1857 /* After handling the function's top-level block, stop.
1858 Don't continue to its superblock, the block of
1859 per-file symbols. */
1860 if (BLOCK_FUNCTION (block))
1862 block = BLOCK_SUPERBLOCK (block);
1867 struct sal_chain *tmp_chain;
1869 /* Count the number of entries. */
1870 for (index = 0, tmp_chain = sal_chain; tmp_chain;
1871 tmp_chain = tmp_chain->next)
1875 sals.sals = (struct symtab_and_line *)
1876 xmalloc (index * sizeof (struct symtab_and_line));
1877 for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
1878 sals.sals[index] = sal_chain->sal;
1884 /* Commands to deal with catching exceptions. */
1887 catch_command_1 (arg, tempflag, from_tty)
1892 /* First, translate ARG into something we can deal with in terms
1895 struct symtabs_and_lines sals;
1896 struct symtab_and_line sal;
1897 register struct expression *cond = 0;
1898 register struct breakpoint *b;
1902 sal.line = sal.pc = sal.end = 0;
1905 /* If no arg given, or if first arg is 'if ', all active catch clauses
1906 are breakpointed. */
1908 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
1909 && (arg[2] == ' ' || arg[2] == '\t')))
1911 /* Grab all active catch clauses. */
1912 sals = get_catch_sals (0);
1916 /* Grab selected catch clauses. */
1917 error ("catch NAME not implemeneted");
1919 /* This isn't used; I don't know what it was for. */
1920 sals = map_catch_names (arg, catch_breakpoint);
1928 for (i = 0; i < sals.nelts; i++)
1930 resolve_sal_pc (&sals.sals[i]);
1934 if (arg[0] == 'i' && arg[1] == 'f'
1935 && (arg[2] == ' ' || arg[2] == '\t'))
1936 cond = parse_exp_1 ((arg += 2, &arg),
1937 block_for_pc (sals.sals[i].pc), 0);
1939 error ("Junk at end of arguments.");
1944 for (i = 0; i < sals.nelts; i++)
1949 describe_other_breakpoints (sal.pc);
1951 b = set_raw_breakpoint (sal);
1952 set_breakpoint_count (breakpoint_count + 1);
1953 b->number = breakpoint_count;
1954 b->type = bp_breakpoint;
1956 b->enable = enabled;
1957 b->disposition = tempflag ? delete : donttouch;
1959 printf ("Breakpoint %d at %s", b->number, local_hex_string(b->address));
1961 printf (": file %s, line %d.", b->symtab->filename, b->line_number);
1967 printf ("Multiple breakpoints were set.\n");
1968 printf ("Use the \"delete\" command to delete unwanted breakpoints.\n");
1970 free ((PTR)sals.sals);
1974 /* These aren't used; I don't know what they were for. */
1975 /* Disable breakpoints on all catch clauses described in ARGS. */
1977 disable_catch (args)
1980 /* Map the disable command to catch clauses described in ARGS. */
1983 /* Enable breakpoints on all catch clauses described in ARGS. */
1988 /* Map the disable command to catch clauses described in ARGS. */
1991 /* Delete breakpoints on all catch clauses in the active scope. */
1996 /* Map the delete command to catch clauses described in ARGS. */
2001 catch_command (arg, from_tty)
2005 catch_command_1 (arg, 0, from_tty);
2009 clear_command (arg, from_tty)
2013 register struct breakpoint *b, *b1;
2014 struct symtabs_and_lines sals;
2015 struct symtab_and_line sal;
2016 register struct breakpoint *found;
2021 sals = decode_line_spec (arg, 1);
2025 sals.sals = (struct symtab_and_line *) xmalloc (sizeof (struct symtab_and_line));
2026 sal.line = default_breakpoint_line;
2027 sal.symtab = default_breakpoint_symtab;
2029 if (sal.symtab == 0)
2030 error ("No source file specified.");
2036 for (i = 0; i < sals.nelts; i++)
2038 /* If exact pc given, clear bpts at that pc.
2039 But if sal.pc is zero, clear all bpts on specified line. */
2041 found = (struct breakpoint *) 0;
2042 while (breakpoint_chain
2043 && (sal.pc ? breakpoint_chain->address == sal.pc
2044 : (breakpoint_chain->symtab == sal.symtab
2045 && breakpoint_chain->line_number == sal.line)))
2047 b1 = breakpoint_chain;
2048 breakpoint_chain = b1->next;
2055 && b->next->type != bp_watchpoint
2056 && (sal.pc ? b->next->address == sal.pc
2057 : (b->next->symtab == sal.symtab
2058 && b->next->line_number == sal.line)))
2069 error ("No breakpoint at %s.", arg);
2071 error ("No breakpoint at this line.");
2074 if (found->next) from_tty = 1; /* Always report if deleted more than one */
2075 if (from_tty) printf ("Deleted breakpoint%s ", found->next ? "s" : "");
2078 if (from_tty) printf ("%d ", found->number);
2080 delete_breakpoint (found);
2083 if (from_tty) putchar ('\n');
2085 free ((PTR)sals.sals);
2088 /* Delete breakpoint in BS if they are `delete' breakpoints.
2089 This is called after any breakpoint is hit, or after errors. */
2092 breakpoint_auto_delete (bs)
2095 for (; bs; bs = bs->next)
2096 if (bs->breakpoint_at && bs->breakpoint_at->disposition == delete)
2097 delete_breakpoint (bs->breakpoint_at);
2100 /* Delete a breakpoint and clean up all traces of it in the data structures. */
2103 delete_breakpoint (bpt)
2104 struct breakpoint *bpt;
2106 register struct breakpoint *b;
2110 target_remove_breakpoint(bpt->address, bpt->shadow_contents);
2112 if (breakpoint_chain == bpt)
2113 breakpoint_chain = bpt->next;
2118 b->next = bpt->next;
2122 check_duplicates (bpt->address);
2124 free_command_lines (&bpt->commands);
2126 free ((PTR)bpt->cond);
2127 if (bpt->cond_string != NULL)
2128 free ((PTR)bpt->cond_string);
2129 if (bpt->addr_string != NULL)
2130 free ((PTR)bpt->addr_string);
2132 if (xgdb_verbose && bpt->type == bp_breakpoint)
2133 printf ("breakpoint #%d deleted\n", bpt->number);
2135 /* Be sure no bpstat's are pointing at it after it's been freed. */
2136 /* FIXME, how can we find all bpstat's? We just check stop_bpstat for now. */
2137 for (bs = stop_bpstat; bs; bs = bs->next)
2138 if (bs->breakpoint_at == bpt)
2139 bs->breakpoint_at = NULL;
2144 delete_command (arg, from_tty)
2151 /* Ask user only if there are some breakpoints to delete. */
2153 || (breakpoint_chain && query ("Delete all breakpoints? ", 0, 0)))
2155 /* No arg; clear all breakpoints. */
2156 while (breakpoint_chain)
2157 delete_breakpoint (breakpoint_chain);
2161 map_breakpoint_numbers (arg, delete_breakpoint);
2164 /* Reset a breakpoint given it's struct breakpoint * BINT.
2165 The value we return ends up being the return value from catch_errors.
2166 Unused in this case. */
2169 breakpoint_re_set_one (bint)
2172 struct breakpoint *b = (struct breakpoint *)bint; /* get past catch_errs */
2174 struct symtabs_and_lines sals;
2176 enum enable save_enable;
2181 if (b->addr_string == NULL)
2183 /* Anything without a string can't be re-set. */
2184 delete_breakpoint (b);
2187 /* In case we have a problem, disable this breakpoint. We'll restore
2188 its status if we succeed. */
2189 save_enable = b->enable;
2190 b->enable = disabled;
2193 sals = decode_line_1 (&s, 1, (struct symtab *)NULL, 0);
2194 for (i = 0; i < sals.nelts; i++)
2196 resolve_sal_pc (&sals.sals[i]);
2197 if (b->symtab != sals.sals[i].symtab
2198 || b->line_number != sals.sals[i].line
2199 || b->address != sals.sals[i].pc)
2201 b->symtab = sals.sals[i].symtab;
2202 b->line_number = sals.sals[i].line;
2203 b->address = sals.sals[i].pc;
2205 if (b->cond_string != NULL)
2208 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
2211 check_duplicates (b->address);
2215 b->enable = save_enable; /* Restore it, this worked. */
2217 free ((PTR)sals.sals);
2220 /* FIXME! This is the wrong thing to do.... */
2221 delete_breakpoint (b);
2224 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
2228 case bp_longjmp_resume:
2229 delete_breakpoint (b);
2236 /* Re-set all breakpoints after symbols have been re-loaded. */
2238 breakpoint_re_set ()
2240 struct breakpoint *b, *temp;
2241 static char message1[] = "Error in re-setting breakpoint %d:\n";
2242 char message[sizeof (message1) + 30 /* slop */];
2244 ALL_BREAKPOINTS_SAFE (b, temp)
2246 sprintf (message, message1, b->number); /* Format possible error msg */
2247 (void) catch_errors (breakpoint_re_set_one, (char *) b, message);
2250 create_longjmp_breakpoint("longjmp");
2251 create_longjmp_breakpoint("_longjmp");
2252 create_longjmp_breakpoint("siglongjmp");
2253 create_longjmp_breakpoint(NULL);
2256 /* Took this out (temporaliy at least), since it produces an extra
2257 blank line at startup. This messes up the gdbtests. -PB */
2258 /* Blank line to finish off all those mention() messages we just printed. */
2259 printf_filtered ("\n");
2263 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
2264 If from_tty is nonzero, it prints a message to that effect,
2265 which ends with a period (no newline). */
2268 set_ignore_count (bptnum, count, from_tty)
2269 int bptnum, count, from_tty;
2271 register struct breakpoint *b;
2277 if (b->number == bptnum)
2279 b->ignore_count = count;
2282 else if (count == 0)
2283 printf_filtered ("Will stop next time breakpoint %d is reached.",
2285 else if (count == 1)
2286 printf_filtered ("Will ignore next crossing of breakpoint %d.",
2289 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
2294 error ("No breakpoint number %d.", bptnum);
2297 /* Clear the ignore counts of all breakpoints. */
2299 breakpoint_clear_ignore_counts ()
2301 struct breakpoint *b;
2304 b->ignore_count = 0;
2307 /* Command to set ignore-count of breakpoint N to COUNT. */
2310 ignore_command (args, from_tty)
2318 error_no_arg ("a breakpoint number");
2320 num = get_number (&p);
2323 error ("Second argument (specified ignore-count) is missing.");
2325 set_ignore_count (num,
2326 longest_to_int (value_as_long (parse_and_eval (p))),
2328 printf_filtered ("\n");
2331 /* Call FUNCTION on each of the breakpoints
2332 whose numbers are given in ARGS. */
2335 map_breakpoint_numbers (args, function)
2337 void (*function) PARAMS ((struct breakpoint *));
2339 register char *p = args;
2342 register struct breakpoint *b;
2345 error_no_arg ("one or more breakpoint numbers");
2351 num = get_number (&p1);
2354 if (b->number == num)
2359 printf ("No breakpoint number %d.\n", num);
2366 enable_breakpoint (bpt)
2367 struct breakpoint *bpt;
2369 bpt->enable = enabled;
2371 if (xgdb_verbose && bpt->type == bp_breakpoint)
2372 printf ("breakpoint #%d enabled\n", bpt->number);
2374 check_duplicates (bpt->address);
2375 if (bpt->type == bp_watchpoint)
2377 if (bpt->exp_valid_block != NULL
2378 && !contained_in (get_selected_block (), bpt->exp_valid_block))
2381 Cannot enable watchpoint %d because the block in which its expression\n\
2382 is valid is not currently in scope.\n", bpt->number);
2386 value_free (bpt->val);
2388 bpt->val = evaluate_expression (bpt->exp);
2389 release_value (bpt->val);
2395 enable_command (args, from_tty)
2399 struct breakpoint *bpt;
2401 ALL_BREAKPOINTS (bpt)
2406 enable_breakpoint (bpt);
2411 map_breakpoint_numbers (args, enable_breakpoint);
2415 disable_breakpoint (bpt)
2416 struct breakpoint *bpt;
2418 bpt->enable = disabled;
2420 if (xgdb_verbose && bpt->type == bp_breakpoint)
2421 printf_filtered ("breakpoint #%d disabled\n", bpt->number);
2423 check_duplicates (bpt->address);
2428 disable_command (args, from_tty)
2432 register struct breakpoint *bpt;
2434 ALL_BREAKPOINTS (bpt)
2439 disable_breakpoint (bpt);
2444 map_breakpoint_numbers (args, disable_breakpoint);
2448 enable_once_breakpoint (bpt)
2449 struct breakpoint *bpt;
2451 bpt->enable = enabled;
2452 bpt->disposition = disable;
2454 check_duplicates (bpt->address);
2459 enable_once_command (args, from_tty)
2463 map_breakpoint_numbers (args, enable_once_breakpoint);
2467 enable_delete_breakpoint (bpt)
2468 struct breakpoint *bpt;
2470 bpt->enable = enabled;
2471 bpt->disposition = delete;
2473 check_duplicates (bpt->address);
2478 enable_delete_command (args, from_tty)
2482 map_breakpoint_numbers (args, enable_delete_breakpoint);
2486 * Use default_breakpoint_'s, or nothing if they aren't valid.
2488 struct symtabs_and_lines
2489 decode_line_spec_1 (string, funfirstline)
2493 struct symtabs_and_lines sals;
2495 error ("Empty line specification.");
2496 if (default_breakpoint_valid)
2497 sals = decode_line_1 (&string, funfirstline,
2498 default_breakpoint_symtab, default_breakpoint_line);
2500 sals = decode_line_1 (&string, funfirstline, (struct symtab *)NULL, 0);
2502 error ("Junk at end of line specification: %s", string);
2507 /* Chain containing all defined enable commands. */
2509 extern struct cmd_list_element
2510 *enablelist, *disablelist,
2511 *deletelist, *enablebreaklist;
2513 extern struct cmd_list_element *cmdlist;
2516 _initialize_breakpoint ()
2518 breakpoint_chain = 0;
2519 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
2520 before a breakpoint is set. */
2521 breakpoint_count = 0;
2523 add_com ("ignore", class_breakpoint, ignore_command,
2524 "Set ignore-count of breakpoint number N to COUNT.");
2526 add_com ("commands", class_breakpoint, commands_command,
2527 "Set commands to be executed when a breakpoint is hit.\n\
2528 Give breakpoint number as argument after \"commands\".\n\
2529 With no argument, the targeted breakpoint is the last one set.\n\
2530 The commands themselves follow starting on the next line.\n\
2531 Type a line containing \"end\" to indicate the end of them.\n\
2532 Give \"silent\" as the first line to make the breakpoint silent;\n\
2533 then no output is printed when it is hit, except what the commands print.");
2535 add_com ("condition", class_breakpoint, condition_command,
2536 "Specify breakpoint number N to break only if COND is true.\n\
2537 N is an integer; COND is an expression to be evaluated whenever\n\
2538 breakpoint N is reached. ");
2540 add_com ("tbreak", class_breakpoint, tbreak_command,
2541 "Set a temporary breakpoint. Args like \"break\" command.\n\
2542 Like \"break\" except the breakpoint is only enabled temporarily,\n\
2543 so it will be disabled when hit. Equivalent to \"break\" followed\n\
2544 by using \"enable once\" on the breakpoint number.");
2546 add_prefix_cmd ("enable", class_breakpoint, enable_command,
2547 "Enable some breakpoints.\n\
2548 Give breakpoint numbers (separated by spaces) as arguments.\n\
2549 With no subcommand, breakpoints are enabled until you command otherwise.\n\
2550 This is used to cancel the effect of the \"disable\" command.\n\
2551 With a subcommand you can enable temporarily.",
2552 &enablelist, "enable ", 1, &cmdlist);
2554 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
2555 "Enable some breakpoints.\n\
2556 Give breakpoint numbers (separated by spaces) as arguments.\n\
2557 This is used to cancel the effect of the \"disable\" command.\n\
2558 May be abbreviated to simply \"enable\".\n",
2559 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
2561 add_cmd ("once", no_class, enable_once_command,
2562 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
2563 If a breakpoint is hit while enabled in this fashion, it becomes disabled.\n\
2564 See the \"tbreak\" command which sets a breakpoint and enables it once.",
2567 add_cmd ("delete", no_class, enable_delete_command,
2568 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
2569 If a breakpoint is hit while enabled in this fashion, it is deleted.",
2572 add_cmd ("delete", no_class, enable_delete_command,
2573 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
2574 If a breakpoint is hit while enabled in this fashion, it is deleted.",
2577 add_cmd ("once", no_class, enable_once_command,
2578 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
2579 If a breakpoint is hit while enabled in this fashion, it becomes disabled.\n\
2580 See the \"tbreak\" command which sets a breakpoint and enables it once.",
2583 add_prefix_cmd ("disable", class_breakpoint, disable_command,
2584 "Disable some breakpoints.\n\
2585 Arguments are breakpoint numbers with spaces in between.\n\
2586 To disable all breakpoints, give no argument.\n\
2587 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
2588 &disablelist, "disable ", 1, &cmdlist);
2589 add_com_alias ("dis", "disable", class_breakpoint, 1);
2590 add_com_alias ("disa", "disable", class_breakpoint, 1);
2592 add_cmd ("breakpoints", class_alias, disable_command,
2593 "Disable some breakpoints.\n\
2594 Arguments are breakpoint numbers with spaces in between.\n\
2595 To disable all breakpoints, give no argument.\n\
2596 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
2597 This command may be abbreviated \"disable\".",
2600 add_prefix_cmd ("delete", class_breakpoint, delete_command,
2601 "Delete some breakpoints or auto-display expressions.\n\
2602 Arguments are breakpoint numbers with spaces in between.\n\
2603 To delete all breakpoints, give no argument.\n\
2605 Also a prefix command for deletion of other GDB objects.\n\
2606 The \"unset\" command is also an alias for \"delete\".",
2607 &deletelist, "delete ", 1, &cmdlist);
2608 add_com_alias ("d", "delete", class_breakpoint, 1);
2610 add_cmd ("breakpoints", class_alias, delete_command,
2611 "Delete some breakpoints or auto-display expressions.\n\
2612 Arguments are breakpoint numbers with spaces in between.\n\
2613 To delete all breakpoints, give no argument.\n\
2614 This command may be abbreviated \"delete\".",
2617 add_com ("clear", class_breakpoint, clear_command,
2618 "Clear breakpoint at specified line or function.\n\
2619 Argument may be line number, function name, or \"*\" and an address.\n\
2620 If line number is specified, all breakpoints in that line are cleared.\n\
2621 If function is specified, breakpoints at beginning of function are cleared.\n\
2622 If an address is specified, breakpoints at that address are cleared.\n\n\
2623 With no argument, clears all breakpoints in the line that the selected frame\n\
2626 See also the \"delete\" command which clears breakpoints by number.");
2628 add_com ("break", class_breakpoint, break_command,
2629 "Set breakpoint at specified line or function.\n\
2630 Argument may be line number, function name, or \"*\" and an address.\n\
2631 If line number is specified, break at start of code for that line.\n\
2632 If function is specified, break at start of code for that function.\n\
2633 If an address is specified, break at that exact address.\n\
2634 With no arg, uses current execution address of selected stack frame.\n\
2635 This is useful for breaking on return to a stack frame.\n\
2637 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
2639 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
2640 add_com_alias ("b", "break", class_run, 1);
2641 add_com_alias ("br", "break", class_run, 1);
2642 add_com_alias ("bre", "break", class_run, 1);
2643 add_com_alias ("brea", "break", class_run, 1);
2645 add_info ("breakpoints", breakpoints_info,
2646 "Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
2647 The \"Type\" column indicates one of:\n\
2648 \tbreakpoint - normal breakpoint\n\
2649 \twatchpoint - watchpoint\n\
2650 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
2651 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
2652 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
2653 address and file/line number respectively.\n\n\
2654 Convenience variable \"$_\" and default examine address for \"x\"\n\
2655 are set to the address of the last breakpoint listed.\n\n\
2656 Convenience variable \"$bpnum\" contains the number of the last\n\
2659 add_info ("all-breakpoints", all_breakpoints_info,
2660 "Status of all breakpoints, or breakpoint number NUMBER.\n\
2661 The \"Type\" column indicates one of:\n\
2662 \tbreakpoint - normal breakpoint\n\
2663 \twatchpoint - watchpoint\n\
2664 \tlongjmp - internal breakpoint used to step through longjmp()\n\
2665 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
2666 \tuntil - internal breakpoint used by the \"until\" command\n\
2667 \tfinish - internal breakpoint used by the \"finish\" command\n\
2668 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
2669 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
2670 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
2671 address and file/line number respectively.\n\n\
2672 Convenience variable \"$_\" and default examine address for \"x\"\n\
2673 are set to the address of the last breakpoint listed.\n\n\
2674 Convenience variable \"$bpnum\" contains the number of the last\n\
2677 add_com ("catch", class_breakpoint, catch_command,
2678 "Set breakpoints to catch exceptions that are raised.\n\
2679 Argument may be a single exception to catch, multiple exceptions\n\
2680 to catch, or the default exception \"default\". If no arguments\n\
2681 are given, breakpoints are set at all exception handlers catch clauses\n\
2682 within the current scope.\n\
2684 A condition specified for the catch applies to all breakpoints set\n\
2685 with this command\n\
2687 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
2689 add_com ("watch", class_breakpoint, watch_command,
2690 "Set a watchpoint for an expression.\n\
2691 A watchpoint stops execution of your program whenever the value of\n\
2692 an expression changes.");
2694 add_info ("watchpoints", breakpoints_info,
2695 "Synonym for ``info breakpoints''.");
2699 /* Where should this function go? It is used by AIX only. FIXME. */
2701 /* Breakpoint address relocation used to be done in breakpoint_re_set(). That
2702 approach the following problem:
2704 before running the program, if a file is list, then a breakpoint is
2705 set (just the line number), then if we switch into another file and run
2706 the program, just a line number as a breakpoint address was not
2707 descriptive enough and breakpoint was ending up in a different file's
2710 I don't think any other platform has this breakpoint relocation problem, so this
2711 is not an issue for other platforms. */
2714 fixup_breakpoints (low, high, delta)
2719 struct breakpoint *b;
2720 extern struct breakpoint *breakpoint_chain;
2724 if (b->address >= low && b->address <= high)
2725 b->address += delta;