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 ())
320 printf_filtered ("Type commands for when breakpoint %d is hit, one per line.\n\
321 End with a line saying just \"end\".\n", bnum);
322 l = read_command_lines ();
323 free_command_lines (&b->commands);
327 error ("No breakpoint number %d.", bnum);
330 extern int memory_breakpoint_size; /* from mem-break.c */
332 /* Like target_read_memory() but if breakpoints are inserted, return
333 the shadow contents instead of the breakpoints themselves.
335 Read "memory data" from whatever target or inferior we have.
336 Returns zero if successful, errno value if not. EIO is used
337 for address out of bounds. If breakpoints are inserted, returns
338 shadow contents, not the breakpoints themselves. From breakpoint.c. */
341 read_memory_nobpt (memaddr, myaddr, len)
347 struct breakpoint *b;
349 if (memory_breakpoint_size < 0)
350 /* No breakpoints on this machine. */
351 return target_read_memory (memaddr, myaddr, len);
355 if (b->type == bp_watchpoint || !b->inserted)
357 else if (b->address + memory_breakpoint_size <= memaddr)
358 /* The breakpoint is entirely before the chunk of memory
361 else if (b->address >= memaddr + len)
362 /* The breakpoint is entirely after the chunk of memory we
367 /* Copy the breakpoint from the shadow contents, and recurse
368 for the things before and after. */
370 /* Addresses and length of the part of the breakpoint that
372 CORE_ADDR membpt = b->address;
373 unsigned int bptlen = memory_breakpoint_size;
374 /* Offset within shadow_contents. */
377 if (membpt < memaddr)
379 /* Only copy the second part of the breakpoint. */
380 bptlen -= memaddr - membpt;
381 bptoffset = memaddr - membpt;
385 if (membpt + bptlen > memaddr + len)
387 /* Only copy the first part of the breakpoint. */
388 bptlen -= (membpt + bptlen) - (memaddr + len);
391 memcpy (myaddr + membpt - memaddr,
392 b->shadow_contents + bptoffset, bptlen);
394 if (membpt > memaddr)
396 /* Copy the section of memory before the breakpoint. */
397 status = read_memory_nobpt (memaddr, myaddr, membpt - memaddr);
402 if (membpt + bptlen < memaddr + len)
404 /* Copy the section of memory after the breakpoint. */
405 status = read_memory_nobpt
407 myaddr + membpt + bptlen - memaddr,
408 memaddr + len - (membpt + bptlen));
415 /* Nothing overlaps. Just call read_memory_noerr. */
416 return target_read_memory (memaddr, myaddr, len);
419 /* insert_breakpoints is used when starting or continuing the program.
420 remove_breakpoints is used when the program stops.
421 Both return zero if successful,
422 or an `errno' value if could not write the inferior. */
425 insert_breakpoints ()
427 register struct breakpoint *b;
429 int disabled_breaks = 0;
432 if (b->type != bp_watchpoint
433 && b->enable != disabled
437 val = target_insert_breakpoint(b->address, b->shadow_contents);
440 /* Can't set the breakpoint. */
441 #if defined (DISABLE_UNSETTABLE_BREAK)
442 if (DISABLE_UNSETTABLE_BREAK (b->address))
445 b->enable = disabled;
446 if (!disabled_breaks)
449 "Cannot insert breakpoint %d:\n", b->number);
450 printf_filtered ("Disabling shared library breakpoints:\n");
453 printf_filtered ("%d ", b->number);
458 fprintf (stderr, "Cannot insert breakpoint %d:\n", b->number);
459 #ifdef ONE_PROCESS_WRITETEXT
461 "The same program may be running in another process.\n");
463 memory_error (val, b->address); /* which bombs us out */
470 printf_filtered ("\n");
475 remove_breakpoints ()
477 register struct breakpoint *b;
480 #ifdef BREAKPOINT_DEBUG
481 printf ("Removing breakpoints.\n");
482 #endif /* BREAKPOINT_DEBUG */
485 if (b->type != bp_watchpoint && b->inserted)
487 val = target_remove_breakpoint(b->address, b->shadow_contents);
491 #ifdef BREAKPOINT_DEBUG
492 printf ("Removed breakpoint at %s",
493 local_hex_string(b->address));
494 printf (", shadow %s",
495 local_hex_string(b->shadow_contents[0]));
497 local_hex_string(b->shadow_contents[1]));
498 #endif /* BREAKPOINT_DEBUG */
504 /* Clear the "inserted" flag in all breakpoints.
505 This is done when the inferior is loaded. */
508 mark_breakpoints_out ()
510 register struct breakpoint *b;
516 /* breakpoint_here_p (PC) returns 1 if an enabled breakpoint exists at PC.
517 When continuing from a location with a breakpoint,
518 we actually single step once before calling insert_breakpoints. */
521 breakpoint_here_p (pc)
524 register struct breakpoint *b;
527 if (b->enable != disabled && b->address == pc)
533 /* bpstat stuff. External routines' interfaces are documented
536 /* Clear a bpstat so that it says we are not at any breakpoint.
537 Also free any storage that is part of a bpstat. */
552 if (p->old_val != NULL)
553 value_free (p->old_val);
560 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
561 is part of the bpstat is copied as well. */
574 for (; bs != NULL; bs = bs->next)
576 tmp = (bpstat) xmalloc (sizeof (*tmp));
577 memcpy (tmp, bs, sizeof (*tmp));
579 /* This is the first thing in the chain. */
589 /* Find the bpstat associated with this breakpoint */
592 bpstat_find_breakpoint(bsp, breakpoint)
594 struct breakpoint *breakpoint;
596 if (bsp == NULL) return NULL;
598 for (;bsp != NULL; bsp = bsp->next) {
599 if (bsp->breakpoint_at == breakpoint) return bsp;
604 /* Return the breakpoint number of the first breakpoint we are stopped
605 at. *BSP upon return is a bpstat which points to the remaining
606 breakpoints stopped at (but which is not guaranteed to be good for
607 anything but further calls to bpstat_num).
608 Return 0 if passed a bpstat which does not indicate any breakpoints. */
614 struct breakpoint *b;
617 return 0; /* No more breakpoint values */
620 b = (*bsp)->breakpoint_at;
623 return -1; /* breakpoint that's been deleted since */
625 return b->number; /* We have its number */
629 /* Modify BS so that the actions will not be performed. */
632 bpstat_clear_actions (bs)
635 for (; bs != NULL; bs = bs->next)
638 if (bs->old_val != NULL)
640 value_free (bs->old_val);
646 /* Stub for cleaning up our state if we error-out of a breakpoint command */
649 cleanup_executing_breakpoints (ignore)
652 executing_breakpoint_commands = 0;
655 /* Execute all the commands associated with all the breakpoints at this
656 location. Any of these commands could cause the process to proceed
657 beyond this point, etc. We look out for such changes by checking
658 the global "breakpoint_proceeded" after each command. */
661 bpstat_do_actions (bsp)
665 struct cleanup *old_chain;
667 executing_breakpoint_commands = 1;
668 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
673 breakpoint_proceeded = 0;
674 for (; bs != NULL; bs = bs->next)
678 char *line = bs->commands->line;
679 bs->commands = bs->commands->next;
680 execute_command (line, 0);
681 /* If the inferior is proceeded by the command, bomb out now.
682 The bpstat chain has been blown away by wait_for_inferior.
683 But since execution has stopped again, there is a new bpstat
684 to look at, so start over. */
685 if (breakpoint_proceeded)
690 executing_breakpoint_commands = 0;
691 discard_cleanups (old_chain);
694 /* This is the normal print_it function for a bpstat. In the future,
695 much of this logic could (should?) be moved to bpstat_stop_status,
696 by having it set different print_it functions. */
702 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
703 which has since been deleted. */
704 if (bs->breakpoint_at == NULL
705 || (bs->breakpoint_at->type != bp_breakpoint
706 && bs->breakpoint_at->type != bp_watchpoint))
709 if (bs->breakpoint_at->type == bp_breakpoint)
711 /* I think the user probably only wants to see one breakpoint
712 number, not all of them. */
713 printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
717 if (bs->old_val != NULL)
719 printf_filtered ("\nWatchpoint %d, ", bs->breakpoint_at->number);
720 print_expression (bs->breakpoint_at->exp, stdout);
721 printf_filtered ("\nOld value = ");
722 value_print (bs->old_val, stdout, 0, Val_pretty_default);
723 printf_filtered ("\nNew value = ");
724 value_print (bs->breakpoint_at->val, stdout, 0,
726 printf_filtered ("\n");
727 value_free (bs->old_val);
731 /* We can't deal with it. Maybe another member of the bpstat chain can. */
735 /* Print a message indicating what happened. Returns nonzero to
736 say that only the source line should be printed after this (zero
737 return means print the frame as well as the source line). */
738 /* Currently we always return zero. */
748 val = (*bs->print_it) (bs);
752 /* Maybe another breakpoint in the chain caused us to stop.
753 (Currently all watchpoints go on the bpstat whether hit or
754 not. That probably could (should) be changed, provided care is taken
755 with respect to bpstat_explains_signal). */
757 return bpstat_print (bs->next);
759 /* We reached the end of the chain without printing anything. */
763 /* Evaluate the expression EXP and return 1 if value is zero.
764 This is used inside a catch_errors to evaluate the breakpoint condition.
765 The argument is a "struct expression *" that has been cast to char * to
766 make it pass through catch_errors. */
769 breakpoint_cond_eval (exp)
772 return !value_true (evaluate_expression ((struct expression *)exp));
775 /* Allocate a new bpstat and chain it to the current one. */
778 bpstat_alloc (b, cbs)
779 register struct breakpoint *b;
780 bpstat cbs; /* Current "bs" value */
784 bs = (bpstat) xmalloc (sizeof (*bs));
786 bs->breakpoint_at = b;
787 /* If the condition is false, etc., don't do the commands. */
790 bs->print_it = print_it_normal;
794 /* Return the frame which we can use to evaluate the expression
795 whose valid block is valid_block, or NULL if not in scope.
797 This whole concept is probably not the way to do things (it is incredibly
798 slow being the main reason, not to mention fragile (e.g. the sparc
799 frame pointer being fetched as 0 bug causes it to stop)). Instead,
800 introduce a version of "struct frame" which survives over calls to the
801 inferior, but which is better than FRAME_ADDR in the sense that it lets
802 us evaluate expressions relative to that frame (on some machines, it
803 can just be a FRAME_ADDR). Save one of those instead of (or in addition
804 to) the exp_valid_block, and then use it to evaluate the watchpoint
805 expression, with no need to do all this backtracing every time.
807 Or better yet, what if it just copied the struct frame and its next
808 frame? Off the top of my head, I would think that would work
809 because things like (a29k) rsize and msize, or (sparc) bottom just
810 depend on the frame, and aren't going to be different just because
811 the inferior has done something. Trying to recalculate them
812 strikes me as a lot of work, possibly even impossible. Saving the
813 next frame is needed at least on a29k, where get_saved_register
814 uses fi->next->saved_msp. For figuring out whether that frame is
815 still on the stack, I guess this needs to be machine-specific (e.g.
818 read_register (FP_REGNUM) INNER_THAN watchpoint_frame->frame
820 would generally work.
822 Of course the scope of the expression could be less than a whole
823 function; perhaps if the innermost frame is the one which the
824 watchpoint is relative to (another machine-specific thing, usually
826 FRAMELESS_FUNCTION_INVOCATION (get_current_frame(), fromleaf)
827 read_register (FP_REGNUM) == wp_frame->frame
830 ), *then* it could do a
832 contained_in (get_current_block (), wp->exp_valid_block).
837 within_scope (valid_block)
838 struct block *valid_block;
840 FRAME fr = get_current_frame ();
841 struct frame_info *fi = get_frame_info (fr);
842 CORE_ADDR func_start;
844 /* If caller_pc_valid is true, we are stepping through
845 a function prologue, which is bounded by callee_func_start
846 (inclusive) and callee_prologue_end (exclusive).
847 caller_pc is the pc of the caller.
849 Yes, this is hairy. */
850 static int caller_pc_valid = 0;
851 static CORE_ADDR caller_pc;
852 static CORE_ADDR callee_func_start;
853 static CORE_ADDR callee_prologue_end;
855 find_pc_partial_function (fi->pc, (PTR)NULL, &func_start);
856 func_start += FUNCTION_START_OFFSET;
857 if (fi->pc == func_start)
859 /* We just called a function. The only other case I
860 can think of where the pc would equal the pc of the
861 start of a function is a frameless function (i.e.
862 no prologue) where we branch back to the start
863 of the function. In that case, SKIP_PROLOGUE won't
864 find one, and we'll clear caller_pc_valid a few lines
867 caller_pc = SAVED_PC_AFTER_CALL (fr);
868 callee_func_start = func_start;
869 SKIP_PROLOGUE (func_start);
870 callee_prologue_end = func_start;
874 if (fi->pc < callee_func_start
875 || fi->pc >= callee_prologue_end)
879 if (contained_in (block_for_pc (caller_pc_valid
886 fr = get_prev_frame (fr);
888 /* If any active frame is in the exp_valid_block, then it's
889 OK. Note that this might not be the same invocation of
890 the exp_valid_block that we were watching a little while
891 ago, or the same one as when the watchpoint was set (e.g.
892 we are watching a local variable in a recursive function.
893 When we return from a recursive invocation, then we are
894 suddenly watching a different instance of the variable).
896 At least for now I am going to consider this a feature. */
897 for (; fr != NULL; fr = get_prev_frame (fr))
899 fi = get_frame_info (fr);
900 if (contained_in (block_for_pc (fi->pc),
909 /* Possible return values for watchpoint_check (this can't be an enum
910 because of check_errors). */
911 /* The watchpoint has been disabled. */
912 #define WP_DISABLED 1
913 /* The value has changed. */
914 #define WP_VALUE_CHANGED 2
915 /* The value has not changed. */
916 #define WP_VALUE_NOT_CHANGED 3
918 /* Check watchpoint condition. */
923 bpstat bs = (bpstat) p;
926 int within_current_scope;
927 if (bs->breakpoint_at->exp_valid_block == NULL)
928 within_current_scope = 1;
931 fr = within_scope (bs->breakpoint_at->exp_valid_block);
932 within_current_scope = fr != NULL;
933 if (within_current_scope)
934 /* If we end up stopping, the current frame will get selected
935 in normal_stop. So this call to select_frame won't affect
937 select_frame (fr, -1);
940 if (within_current_scope)
942 /* We use value_{,free_to_}mark because it could be a
943 *long* time before we return to the command level and
944 call free_all_values. */
945 /* But couldn't we just call free_all_values instead? */
947 value mark = value_mark ();
948 value new_val = evaluate_expression (bs->breakpoint_at->exp);
949 if (!value_equal (bs->breakpoint_at->val, new_val))
951 release_value (new_val);
952 value_free_to_mark (mark);
953 bs->old_val = bs->breakpoint_at->val;
954 bs->breakpoint_at->val = new_val;
955 /* We will stop here */
956 return WP_VALUE_CHANGED;
960 /* Nothing changed, don't do anything. */
961 value_free_to_mark (mark);
962 /* We won't stop here */
963 return WP_VALUE_NOT_CHANGED;
968 /* This seems like the only logical thing to do because
969 if we temporarily ignored the watchpoint, then when
970 we reenter the block in which it is valid it contains
971 garbage (in the case of a function, it may have two
972 garbage values, one before and one after the prologue).
973 So we can't even detect the first assignment to it and
974 watch after that (since the garbage may or may not equal
975 the first value assigned). */
976 bs->breakpoint_at->enable = disabled;
978 Watchpoint %d disabled because the program has left the block in\n\
979 which its expression is valid.\n", bs->breakpoint_at->number);
984 /* This is used when everything which needs to be printed has
985 already been printed. But we still want to print the frame. */
993 /* This is used when nothing should be printed for this bpstat entry. */
1002 /* Determine whether we stopped at a breakpoint, etc, or whether we
1003 don't understand this stop. Result is a chain of bpstat's such that:
1005 if we don't understand the stop, the result is a null pointer.
1007 if we understand why we stopped, the result is not null, and
1008 the first element of the chain contains summary "stop" and
1009 "print" flags for the whole chain.
1011 Each element of the chain refers to a particular breakpoint or
1012 watchpoint at which we have stopped. (We may have stopped for
1013 several reasons concurrently.)
1015 Each element of the chain has valid next, breakpoint_at,
1016 commands, FIXME??? fields.
1022 bpstat_stop_status (pc, frame_address)
1024 FRAME_ADDR frame_address;
1026 register struct breakpoint *b;
1028 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1029 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
1030 int real_breakpoint = 0;
1032 /* Root of the chain of bpstat's */
1033 struct bpstat root_bs[1];
1034 /* Pointer to the last thing in the chain currently. */
1035 bpstat bs = root_bs;
1037 /* Get the address where the breakpoint would have been. */
1038 bp_addr = *pc - DECR_PC_AFTER_BREAK;
1042 if (b->enable == disabled)
1045 if (b->type != bp_watchpoint && b->address != bp_addr)
1048 /* Come here if it's a watchpoint, or if the break address matches */
1050 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
1055 if (b->type == bp_watchpoint)
1057 static char message1[] =
1058 "Error evaluating expression for watchpoint %d\n";
1059 char message[sizeof (message1) + 30 /* slop */];
1060 sprintf (message, message1, b->number);
1061 switch (catch_errors (watchpoint_check, (char *) bs, message))
1064 /* We've already printed what needs to be printed. */
1065 bs->print_it = print_it_done;
1068 case WP_VALUE_CHANGED:
1071 case WP_VALUE_NOT_CHANGED:
1073 bs->print_it = print_it_noop;
1080 /* Error from catch_errors. */
1081 b->enable = disabled;
1082 printf_filtered ("Watchpoint %d disabled.\n", b->number);
1083 /* We've already printed what needs to be printed. */
1084 bs->print_it = print_it_done;
1089 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1091 real_breakpoint = 1;
1094 if (b->frame && b->frame != frame_address)
1102 /* Need to select the frame, with all that implies
1103 so that the conditions will have the right context. */
1104 select_frame (get_current_frame (), 0);
1106 = catch_errors (breakpoint_cond_eval, (char *)(b->cond),
1107 "Error in testing breakpoint condition:\n");
1108 /* FIXME-someday, should give breakpoint # */
1111 if (b->cond && value_is_zero)
1115 else if (b->ignore_count > 0)
1122 /* We will stop here */
1123 if (b->disposition == disable)
1124 b->enable = disabled;
1125 bs->commands = b->commands;
1128 if (bs->commands && STREQ ("silent", bs->commands->line))
1130 bs->commands = bs->commands->next;
1135 /* Print nothing for this entry if we dont stop or if we dont print. */
1136 if (bs->stop == 0 || bs->print == 0)
1137 bs->print_it = print_it_noop;
1140 bs->next = NULL; /* Terminate the chain */
1141 bs = root_bs->next; /* Re-grab the head of the chain */
1142 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1145 if (real_breakpoint)
1148 #if defined (SHIFT_INST_REGS)
1150 CORE_ADDR pc = read_register (PC_REGNUM);
1151 CORE_ADDR npc = read_register (NPC_REGNUM);
1154 write_register (NNPC_REGNUM, npc);
1155 write_register (NPC_REGNUM, pc);
1158 #else /* No SHIFT_INST_REGS. */
1160 #endif /* No SHIFT_INST_REGS. */
1163 #endif /* DECR_PC_AFTER_BREAK != 0. */
1167 /* Tell what to do about this bpstat. */
1172 /* Classify each bpstat as one of the following. */
1174 /* There was a watchpoint, but we're not stopping. */
1177 /* There was a watchpoint, stop but don't print. */
1180 /* There was a watchpoint, stop and print. */
1183 /* There was a breakpoint but we're not stopping. */
1186 /* There was a breakpoint, stop but don't print. */
1189 /* There was a breakpoint, stop and print. */
1192 /* We hit the longjmp breakpoint. */
1195 /* We hit the longjmp_resume breakpoint. */
1198 /* This is just used to count how many enums there are. */
1202 /* Here is the table which drives this routine. So that we can
1203 format it pretty, we define some abbreviations for the
1204 enum bpstat_what codes. */
1205 #define keep_c BPSTAT_WHAT_KEEP_CHECKING
1206 #define stop_s BPSTAT_WHAT_STOP_SILENT
1207 #define stop_n BPSTAT_WHAT_STOP_NOISY
1208 #define single BPSTAT_WHAT_SINGLE
1209 #define setlr BPSTAT_WHAT_SET_LONGJMP_RESUME
1210 #define clrlr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
1211 #define clrlrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
1212 /* "Can't happen." Might want to print an error message.
1213 abort() is not out of the question, but chances are GDB is just
1214 a bit confused, not unusable. */
1215 #define err BPSTAT_WHAT_STOP_NOISY
1217 /* Given an old action and a class, come up with a new action. */
1218 static const enum bpstat_what
1219 table[(int)class_last][(int)BPSTAT_WHAT_LAST] =
1222 /* keep_c stop_s stop_n single setlr clrlr clrlrs */
1224 /*wp_nostop*/ {keep_c, stop_s, stop_n, single, setlr , clrlr , clrlrs},
1225 /*wp_silent*/ {stop_s, stop_s, stop_n, stop_s, stop_s, stop_s, stop_s},
1226 /*wp_noisy*/ {stop_n, stop_n, stop_n, stop_n, stop_n, stop_n, stop_n},
1227 /*bp_nostop*/ {single, stop_s, stop_n, single, setlr , clrlrs, clrlrs},
1228 /*bp_silent*/ {stop_s, stop_s, stop_n, stop_s, stop_s, stop_s, stop_s},
1229 /*bp_noisy*/ {stop_n, stop_n, stop_n, stop_n, stop_n, stop_n, stop_n},
1230 /*long_jump*/ {setlr , stop_s, stop_n, setlr , err , err , err },
1231 /*long_resume*/ {clrlr , stop_s, stop_n, clrlrs, err , err , err }
1241 enum bpstat_what current_action = BPSTAT_WHAT_KEEP_CHECKING;
1243 for (; bs != NULL; bs = bs->next)
1245 enum class bs_class;
1246 if (bs->breakpoint_at == NULL)
1247 /* I suspect this can happen if it was a momentary breakpoint
1248 which has since been deleted. */
1250 switch (bs->breakpoint_at->type)
1258 bs_class = bp_noisy;
1260 bs_class = bp_silent;
1263 bs_class = bp_nostop;
1269 bs_class = wp_noisy;
1271 bs_class = wp_silent;
1274 bs_class = wp_nostop;
1277 bs_class = long_jump;
1279 case bp_longjmp_resume:
1280 bs_class = long_resume;
1283 current_action = table[(int)bs_class][(int)current_action];
1285 return current_action;
1288 /* Nonzero if we should step constantly (e.g. watchpoints on machines
1289 without hardware support). This isn't related to a specific bpstat,
1290 just to things like whether watchpoints are set. */
1293 bpstat_should_step ()
1295 struct breakpoint *b;
1297 if (b->enable == enabled && b->type == bp_watchpoint)
1302 /* Print information on breakpoint number BNUM, or -1 if all.
1303 If WATCHPOINTS is zero, process only breakpoints; if WATCHPOINTS
1304 is nonzero, process only watchpoints. */
1307 breakpoint_1 (bnum, allflag)
1311 register struct breakpoint *b;
1312 register struct command_line *l;
1313 register struct symbol *sym;
1314 CORE_ADDR last_addr = (CORE_ADDR)-1;
1315 int found_a_breakpoint = 0;
1316 static char *bptypes[] = {"breakpoint", "until", "finish", "watchpoint",
1317 "longjmp", "longjmp resume"};
1318 static char *bpdisps[] = {"del", "dis", "keep"};
1319 static char bpenables[] = "ny";
1320 char wrap_indent[80];
1322 if (!breakpoint_chain)
1324 printf_filtered ("No breakpoints or watchpoints.\n");
1330 || bnum == b->number)
1332 /* We only print out user settable breakpoints unless the allflag is set. */
1334 && b->type != bp_breakpoint
1335 && b->type != bp_watchpoint)
1338 if (!found_a_breakpoint++)
1339 printf_filtered ("Num Type Disp Enb %sWhat\n",
1340 addressprint ? "Address " : "");
1342 printf_filtered ("%-3d %-14s %-4s %-3c ",
1344 bptypes[(int)b->type],
1345 bpdisps[(int)b->disposition],
1346 bpenables[(int)b->enable]);
1347 strcpy (wrap_indent, " ");
1349 strcat (wrap_indent, " ");
1353 print_expression (b->exp, stdout);
1359 case bp_longjmp_resume:
1361 printf_filtered ("%s ", local_hex_string_custom(b->address, "08"));
1363 last_addr = b->address;
1366 sym = find_pc_function (b->address);
1369 fputs_filtered ("in ", stdout);
1370 fputs_filtered (SYMBOL_SOURCE_NAME (sym), stdout);
1371 wrap_here (wrap_indent);
1372 fputs_filtered (" at ", stdout);
1374 fputs_filtered (b->symtab->filename, stdout);
1375 printf_filtered (":%d", b->line_number);
1378 print_address_symbolic (b->address, stdout, demangle, " ");
1381 printf_filtered ("\n");
1384 printf_filtered ("\tstop only in stack frame at %s\n",
1385 local_hex_string(b->frame));
1388 printf_filtered ("\tstop only if ");
1389 print_expression (b->cond, stdout);
1390 printf_filtered ("\n");
1392 if (b->ignore_count)
1393 printf_filtered ("\tignore next %d hits\n", b->ignore_count);
1394 if ((l = b->commands))
1397 fputs_filtered ("\t", stdout);
1398 fputs_filtered (l->line, stdout);
1399 fputs_filtered ("\n", stdout);
1404 if (!found_a_breakpoint
1406 printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
1408 /* Compare against (CORE_ADDR)-1 in case some compiler decides
1409 that a comparison of an unsigned with -1 is always false. */
1410 if (last_addr != (CORE_ADDR)-1)
1411 set_next_address (last_addr);
1416 breakpoints_info (bnum_exp, from_tty)
1423 bnum = parse_and_eval_address (bnum_exp);
1425 breakpoint_1 (bnum, 0);
1428 #if MAINTENANCE_CMDS
1432 maintenance_info_breakpoints (bnum_exp, from_tty)
1439 bnum = parse_and_eval_address (bnum_exp);
1441 breakpoint_1 (bnum, 1);
1446 /* Print a message describing any breakpoints set at PC. */
1449 describe_other_breakpoints (pc)
1450 register CORE_ADDR pc;
1452 register int others = 0;
1453 register struct breakpoint *b;
1456 if (b->address == pc)
1460 printf ("Note: breakpoint%s ", (others > 1) ? "s" : "");
1462 if (b->address == pc)
1467 (b->enable == disabled) ? " (disabled)" : "",
1468 (others > 1) ? "," : ((others == 1) ? " and" : ""));
1470 printf ("also set at pc %s.\n", local_hex_string(pc));
1474 /* Set the default place to put a breakpoint
1475 for the `break' command with no arguments. */
1478 set_default_breakpoint (valid, addr, symtab, line)
1481 struct symtab *symtab;
1484 default_breakpoint_valid = valid;
1485 default_breakpoint_address = addr;
1486 default_breakpoint_symtab = symtab;
1487 default_breakpoint_line = line;
1490 /* Rescan breakpoints at address ADDRESS,
1491 marking the first one as "first" and any others as "duplicates".
1492 This is so that the bpt instruction is only inserted once. */
1495 check_duplicates (address)
1498 register struct breakpoint *b;
1499 register int count = 0;
1501 if (address == 0) /* Watchpoints are uninteresting */
1505 if (b->enable != disabled && b->address == address)
1508 b->duplicate = count > 1;
1512 /* Low level routine to set a breakpoint.
1513 Takes as args the three things that every breakpoint must have.
1514 Returns the breakpoint object so caller can set other things.
1515 Does not set the breakpoint number!
1516 Does not print anything.
1518 ==> This routine should not be called if there is a chance of later
1519 error(); otherwise it leaves a bogus breakpoint on the chain. Validate
1520 your arguments BEFORE calling this routine! */
1522 static struct breakpoint *
1523 set_raw_breakpoint (sal)
1524 struct symtab_and_line sal;
1526 register struct breakpoint *b, *b1;
1528 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
1529 memset (b, 0, sizeof (*b));
1530 b->address = sal.pc;
1531 b->symtab = sal.symtab;
1532 b->line_number = sal.line;
1533 b->enable = enabled;
1536 b->ignore_count = 0;
1540 /* Add this breakpoint to the end of the chain
1541 so that a list of breakpoints will come out in order
1542 of increasing numbers. */
1544 b1 = breakpoint_chain;
1546 breakpoint_chain = b;
1554 check_duplicates (sal.pc);
1560 create_longjmp_breakpoint(func_name)
1563 struct symtab_and_line sal;
1564 struct breakpoint *b;
1565 static int internal_breakpoint_number = -1;
1567 if (func_name != NULL)
1569 struct minimal_symbol *m;
1571 m = lookup_minimal_symbol(func_name, (struct objfile *)NULL);
1573 sal.pc = SYMBOL_VALUE_ADDRESS (m);
1583 b = set_raw_breakpoint(sal);
1586 b->type = func_name != NULL ? bp_longjmp : bp_longjmp_resume;
1587 b->disposition = donttouch;
1588 b->enable = disabled;
1591 b->addr_string = strsave(func_name);
1592 b->number = internal_breakpoint_number--;
1595 /* Call this routine when stepping and nexting to enable a breakpoint if we do
1596 a longjmp(). When we hit that breakpoint, call
1597 set_longjmp_resume_breakpoint() to figure out where we are going. */
1600 enable_longjmp_breakpoint()
1602 register struct breakpoint *b;
1605 if (b->type == bp_longjmp)
1607 b->enable = enabled;
1608 check_duplicates (b->address);
1613 disable_longjmp_breakpoint()
1615 register struct breakpoint *b;
1618 if ( b->type == bp_longjmp
1619 || b->type == bp_longjmp_resume)
1621 b->enable = disabled;
1622 check_duplicates (b->address);
1626 /* Call this after hitting the longjmp() breakpoint. Use this to set a new
1627 breakpoint at the target of the jmp_buf.
1629 FIXME - This ought to be done by setting a temporary breakpoint that gets
1630 deleted automatically...
1634 set_longjmp_resume_breakpoint(pc, frame)
1638 register struct breakpoint *b;
1641 if (b->type == bp_longjmp_resume)
1644 b->enable = enabled;
1646 b->frame = FRAME_FP(frame);
1649 check_duplicates (b->address);
1654 /* Set a breakpoint that will evaporate an end of command
1655 at address specified by SAL.
1656 Restrict it to frame FRAME if FRAME is nonzero. */
1659 set_momentary_breakpoint (sal, frame, type)
1660 struct symtab_and_line sal;
1664 register struct breakpoint *b;
1665 b = set_raw_breakpoint (sal);
1667 b->enable = enabled;
1668 b->disposition = donttouch;
1669 b->frame = (frame ? FRAME_FP (frame) : 0);
1675 clear_momentary_breakpoints ()
1677 register struct breakpoint *b;
1679 if (b->disposition == delete)
1681 delete_breakpoint (b);
1687 /* Tell the user we have just set a breakpoint B. */
1690 struct breakpoint *b;
1695 printf_filtered ("Watchpoint %d: ", b->number);
1696 print_expression (b->exp, stdout);
1699 printf_filtered ("Breakpoint %d at %s", b->number,
1700 local_hex_string(b->address));
1702 printf_filtered (": file %s, line %d.",
1703 b->symtab->filename, b->line_number);
1708 case bp_longjmp_resume:
1711 printf_filtered ("\n");
1715 /* Nobody calls this currently. */
1716 /* Set a breakpoint from a symtab and line.
1717 If TEMPFLAG is nonzero, it is a temporary breakpoint.
1718 ADDR_STRING is a malloc'd string holding the name of where we are
1719 setting the breakpoint. This is used later to re-set it after the
1720 program is relinked and symbols are reloaded.
1721 Print the same confirmation messages that the breakpoint command prints. */
1724 set_breakpoint (s, line, tempflag, addr_string)
1730 register struct breakpoint *b;
1731 struct symtab_and_line sal;
1736 resolve_sal_pc (&sal); /* Might error out */
1737 describe_other_breakpoints (sal.pc);
1739 b = set_raw_breakpoint (sal);
1740 set_breakpoint_count (breakpoint_count + 1);
1741 b->number = breakpoint_count;
1742 b->type = bp_breakpoint;
1744 b->addr_string = addr_string;
1745 b->enable = enabled;
1746 b->disposition = tempflag ? delete : donttouch;
1752 /* Set a breakpoint according to ARG (function, linenum or *address)
1753 and make it temporary if TEMPFLAG is nonzero. */
1756 break_command_1 (arg, tempflag, from_tty)
1758 int tempflag, from_tty;
1760 struct symtabs_and_lines sals;
1761 struct symtab_and_line sal;
1762 register struct expression *cond = 0;
1763 register struct breakpoint *b;
1765 /* Pointers in arg to the start, and one past the end, of the condition. */
1766 char *cond_start = NULL;
1768 /* Pointers in arg to the start, and one past the end,
1769 of the address part. */
1770 char *addr_start = NULL;
1778 sal.line = sal.pc = sal.end = 0;
1781 /* If no arg given, or if first arg is 'if ', use the default breakpoint. */
1783 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
1784 && (arg[2] == ' ' || arg[2] == '\t')))
1786 if (default_breakpoint_valid)
1788 sals.sals = (struct symtab_and_line *)
1789 xmalloc (sizeof (struct symtab_and_line));
1790 sal.pc = default_breakpoint_address;
1791 sal.line = default_breakpoint_line;
1792 sal.symtab = default_breakpoint_symtab;
1797 error ("No default breakpoint address now.");
1803 /* Force almost all breakpoints to be in terms of the
1804 current_source_symtab (which is decode_line_1's default). This
1805 should produce the results we want almost all of the time while
1806 leaving default_breakpoint_* alone. */
1807 if (default_breakpoint_valid
1808 && (!current_source_symtab
1809 || (arg && (*arg == '+' || *arg == '-'))))
1810 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
1811 default_breakpoint_line);
1813 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0);
1821 /* Resolve all line numbers to PC's, and verify that conditions
1822 can be parsed, before setting any breakpoints. */
1823 for (i = 0; i < sals.nelts; i++)
1825 resolve_sal_pc (&sals.sals[i]);
1829 if (arg[0] == 'i' && arg[1] == 'f'
1830 && (arg[2] == ' ' || arg[2] == '\t'))
1834 cond = parse_exp_1 (&arg, block_for_pc (sals.sals[i].pc), 0);
1838 error ("Junk at end of arguments.");
1842 /* Now set all the breakpoints. */
1843 for (i = 0; i < sals.nelts; i++)
1848 describe_other_breakpoints (sal.pc);
1850 b = set_raw_breakpoint (sal);
1851 set_breakpoint_count (breakpoint_count + 1);
1852 b->number = breakpoint_count;
1853 b->type = bp_breakpoint;
1856 /* FIXME: We should add the filename if this is a static function
1857 and probably if it is a line number (the line numbers could
1858 have changed when we re-read symbols; possibly better to disable
1859 the breakpoint in that case). */
1861 b->addr_string = savestring (addr_start, addr_end - addr_start);
1863 b->cond_string = savestring (cond_start, cond_end - cond_start);
1865 b->enable = enabled;
1866 b->disposition = tempflag ? delete : donttouch;
1873 printf ("Multiple breakpoints were set.\n");
1874 printf ("Use the \"delete\" command to delete unwanted breakpoints.\n");
1876 free ((PTR)sals.sals);
1879 /* Helper function for break_command_1 and disassemble_command. */
1882 resolve_sal_pc (sal)
1883 struct symtab_and_line *sal;
1887 if (sal->pc == 0 && sal->symtab != 0)
1889 pc = find_line_pc (sal->symtab, sal->line);
1891 error ("No line %d in file \"%s\".",
1892 sal->line, sal->symtab->filename);
1898 break_command (arg, from_tty)
1902 break_command_1 (arg, 0, from_tty);
1906 tbreak_command (arg, from_tty)
1910 break_command_1 (arg, 1, from_tty);
1915 watch_command (arg, from_tty)
1919 struct breakpoint *b;
1920 struct symtab_and_line sal;
1921 struct expression *exp;
1922 struct block *exp_valid_block;
1929 /* Parse arguments. */
1930 innermost_block = NULL;
1931 exp = parse_expression (arg);
1932 exp_valid_block = innermost_block;
1933 val = evaluate_expression (exp);
1934 release_value (val);
1935 if (VALUE_LAZY (val))
1936 value_fetch_lazy (val);
1938 /* Now set up the breakpoint. */
1939 b = set_raw_breakpoint (sal);
1940 set_breakpoint_count (breakpoint_count + 1);
1941 b->number = breakpoint_count;
1942 b->type = bp_watchpoint;
1943 b->disposition = donttouch;
1945 b->exp_valid_block = exp_valid_block;
1948 b->cond_string = NULL;
1949 b->exp_string = savestring (arg, strlen (arg));
1954 * Helper routine for the until_command routine in infcmd.c. Here
1955 * because it uses the mechanisms of breakpoints.
1959 until_break_command (arg, from_tty)
1963 struct symtabs_and_lines sals;
1964 struct symtab_and_line sal;
1965 FRAME prev_frame = get_prev_frame (selected_frame);
1966 struct breakpoint *breakpoint;
1967 struct cleanup *old_chain;
1969 clear_proceed_status ();
1971 /* Set a breakpoint where the user wants it and at return from
1974 if (default_breakpoint_valid)
1975 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
1976 default_breakpoint_line);
1978 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0);
1980 if (sals.nelts != 1)
1981 error ("Couldn't get information on specified line.");
1984 free ((PTR)sals.sals); /* malloc'd, so freed */
1987 error ("Junk at end of arguments.");
1989 resolve_sal_pc (&sal);
1991 breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
1993 old_chain = make_cleanup(delete_breakpoint, breakpoint);
1995 /* Keep within the current frame */
1999 struct frame_info *fi;
2001 fi = get_frame_info (prev_frame);
2002 sal = find_pc_line (fi->pc, 0);
2004 breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
2005 make_cleanup(delete_breakpoint, breakpoint);
2008 proceed (-1, -1, 0);
2009 do_cleanups(old_chain);
2013 /* These aren't used; I don't konw what they were for. */
2014 /* Set a breakpoint at the catch clause for NAME. */
2016 catch_breakpoint (name)
2022 disable_catch_breakpoint ()
2027 delete_catch_breakpoint ()
2032 enable_catch_breakpoint ()
2039 struct sal_chain *next;
2040 struct symtab_and_line sal;
2044 /* This isn't used; I don't know what it was for. */
2045 /* For each catch clause identified in ARGS, run FUNCTION
2046 with that clause as an argument. */
2047 static struct symtabs_and_lines
2048 map_catch_names (args, function)
2052 register char *p = args;
2054 struct symtabs_and_lines sals;
2056 struct sal_chain *sal_chain = 0;
2060 error_no_arg ("one or more catch names");
2068 /* Don't swallow conditional part. */
2069 if (p1[0] == 'i' && p1[1] == 'f'
2070 && (p1[2] == ' ' || p1[2] == '\t'))
2076 while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
2080 if (*p1 && *p1 != ' ' && *p1 != '\t')
2081 error ("Arguments must be catch names.");
2087 struct sal_chain *next
2088 = (struct sal_chain *)alloca (sizeof (struct sal_chain));
2089 next->next = sal_chain;
2090 next->sal = get_catch_sal (p);
2095 printf ("No catch clause for exception %s.\n", p);
2100 while (*p == ' ' || *p == '\t') p++;
2105 /* This shares a lot of code with `print_frame_label_vars' from stack.c. */
2107 static struct symtabs_and_lines
2108 get_catch_sals (this_level_only)
2109 int this_level_only;
2111 register struct blockvector *bl;
2112 register struct block *block;
2113 int index, have_default = 0;
2114 struct frame_info *fi;
2116 struct symtabs_and_lines sals;
2117 struct sal_chain *sal_chain = 0;
2118 char *blocks_searched;
2120 /* Not sure whether an error message is always the correct response,
2121 but it's better than a core dump. */
2122 if (selected_frame == NULL)
2123 error ("No selected frame.");
2124 block = get_frame_block (selected_frame);
2125 fi = get_frame_info (selected_frame);
2132 error ("No symbol table info available.\n");
2134 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
2135 blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
2136 memset (blocks_searched, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
2140 CORE_ADDR end = BLOCK_END (block) - 4;
2143 if (bl != blockvector_for_pc (end, &index))
2144 error ("blockvector blotch");
2145 if (BLOCKVECTOR_BLOCK (bl, index) != block)
2146 error ("blockvector botch");
2147 last_index = BLOCKVECTOR_NBLOCKS (bl);
2150 /* Don't print out blocks that have gone by. */
2151 while (index < last_index
2152 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
2155 while (index < last_index
2156 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
2158 if (blocks_searched[index] == 0)
2160 struct block *b = BLOCKVECTOR_BLOCK (bl, index);
2163 register struct symbol *sym;
2165 nsyms = BLOCK_NSYMS (b);
2167 for (i = 0; i < nsyms; i++)
2169 sym = BLOCK_SYM (b, i);
2170 if (STREQ (SYMBOL_NAME (sym), "default"))
2176 if (SYMBOL_CLASS (sym) == LOC_LABEL)
2178 struct sal_chain *next = (struct sal_chain *)
2179 alloca (sizeof (struct sal_chain));
2180 next->next = sal_chain;
2181 next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
2185 blocks_searched[index] = 1;
2191 if (sal_chain && this_level_only)
2194 /* After handling the function's top-level block, stop.
2195 Don't continue to its superblock, the block of
2196 per-file symbols. */
2197 if (BLOCK_FUNCTION (block))
2199 block = BLOCK_SUPERBLOCK (block);
2204 struct sal_chain *tmp_chain;
2206 /* Count the number of entries. */
2207 for (index = 0, tmp_chain = sal_chain; tmp_chain;
2208 tmp_chain = tmp_chain->next)
2212 sals.sals = (struct symtab_and_line *)
2213 xmalloc (index * sizeof (struct symtab_and_line));
2214 for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
2215 sals.sals[index] = sal_chain->sal;
2221 /* Commands to deal with catching exceptions. */
2224 catch_command_1 (arg, tempflag, from_tty)
2229 /* First, translate ARG into something we can deal with in terms
2232 struct symtabs_and_lines sals;
2233 struct symtab_and_line sal;
2234 register struct expression *cond = 0;
2235 register struct breakpoint *b;
2239 sal.line = sal.pc = sal.end = 0;
2242 /* If no arg given, or if first arg is 'if ', all active catch clauses
2243 are breakpointed. */
2245 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
2246 && (arg[2] == ' ' || arg[2] == '\t')))
2248 /* Grab all active catch clauses. */
2249 sals = get_catch_sals (0);
2253 /* Grab selected catch clauses. */
2254 error ("catch NAME not implemeneted");
2256 /* This isn't used; I don't know what it was for. */
2257 sals = map_catch_names (arg, catch_breakpoint);
2265 for (i = 0; i < sals.nelts; i++)
2267 resolve_sal_pc (&sals.sals[i]);
2271 if (arg[0] == 'i' && arg[1] == 'f'
2272 && (arg[2] == ' ' || arg[2] == '\t'))
2273 cond = parse_exp_1 ((arg += 2, &arg),
2274 block_for_pc (sals.sals[i].pc), 0);
2276 error ("Junk at end of arguments.");
2281 for (i = 0; i < sals.nelts; i++)
2286 describe_other_breakpoints (sal.pc);
2288 b = set_raw_breakpoint (sal);
2289 set_breakpoint_count (breakpoint_count + 1);
2290 b->number = breakpoint_count;
2291 b->type = bp_breakpoint;
2293 b->enable = enabled;
2294 b->disposition = tempflag ? delete : donttouch;
2296 printf ("Breakpoint %d at %s", b->number, local_hex_string(b->address));
2298 printf (": file %s, line %d.", b->symtab->filename, b->line_number);
2304 printf ("Multiple breakpoints were set.\n");
2305 printf ("Use the \"delete\" command to delete unwanted breakpoints.\n");
2307 free ((PTR)sals.sals);
2311 /* These aren't used; I don't know what they were for. */
2312 /* Disable breakpoints on all catch clauses described in ARGS. */
2314 disable_catch (args)
2317 /* Map the disable command to catch clauses described in ARGS. */
2320 /* Enable breakpoints on all catch clauses described in ARGS. */
2325 /* Map the disable command to catch clauses described in ARGS. */
2328 /* Delete breakpoints on all catch clauses in the active scope. */
2333 /* Map the delete command to catch clauses described in ARGS. */
2338 catch_command (arg, from_tty)
2342 catch_command_1 (arg, 0, from_tty);
2346 clear_command (arg, from_tty)
2350 register struct breakpoint *b, *b1;
2351 struct symtabs_and_lines sals;
2352 struct symtab_and_line sal;
2353 register struct breakpoint *found;
2358 sals = decode_line_spec (arg, 1);
2362 sals.sals = (struct symtab_and_line *) xmalloc (sizeof (struct symtab_and_line));
2363 sal.line = default_breakpoint_line;
2364 sal.symtab = default_breakpoint_symtab;
2366 if (sal.symtab == 0)
2367 error ("No source file specified.");
2373 for (i = 0; i < sals.nelts; i++)
2375 /* If exact pc given, clear bpts at that pc.
2376 But if sal.pc is zero, clear all bpts on specified line. */
2378 found = (struct breakpoint *) 0;
2379 while (breakpoint_chain
2380 && (sal.pc ? breakpoint_chain->address == sal.pc
2381 : (breakpoint_chain->symtab == sal.symtab
2382 && breakpoint_chain->line_number == sal.line)))
2384 b1 = breakpoint_chain;
2385 breakpoint_chain = b1->next;
2392 && b->next->type != bp_watchpoint
2393 && (sal.pc ? b->next->address == sal.pc
2394 : (b->next->symtab == sal.symtab
2395 && b->next->line_number == sal.line)))
2406 error ("No breakpoint at %s.", arg);
2408 error ("No breakpoint at this line.");
2411 if (found->next) from_tty = 1; /* Always report if deleted more than one */
2412 if (from_tty) printf ("Deleted breakpoint%s ", found->next ? "s" : "");
2415 if (from_tty) printf ("%d ", found->number);
2417 delete_breakpoint (found);
2420 if (from_tty) putchar ('\n');
2422 free ((PTR)sals.sals);
2425 /* Delete breakpoint in BS if they are `delete' breakpoints.
2426 This is called after any breakpoint is hit, or after errors. */
2429 breakpoint_auto_delete (bs)
2432 for (; bs; bs = bs->next)
2433 if (bs->breakpoint_at && bs->breakpoint_at->disposition == delete)
2434 delete_breakpoint (bs->breakpoint_at);
2437 /* Delete a breakpoint and clean up all traces of it in the data structures. */
2440 delete_breakpoint (bpt)
2441 struct breakpoint *bpt;
2443 register struct breakpoint *b;
2447 target_remove_breakpoint(bpt->address, bpt->shadow_contents);
2449 if (breakpoint_chain == bpt)
2450 breakpoint_chain = bpt->next;
2455 b->next = bpt->next;
2459 check_duplicates (bpt->address);
2461 free_command_lines (&bpt->commands);
2463 free ((PTR)bpt->cond);
2464 if (bpt->cond_string != NULL)
2465 free ((PTR)bpt->cond_string);
2466 if (bpt->addr_string != NULL)
2467 free ((PTR)bpt->addr_string);
2468 if (bpt->exp_string != NULL)
2469 free ((PTR)bpt->exp_string);
2471 if (xgdb_verbose && bpt->type == bp_breakpoint)
2472 printf ("breakpoint #%d deleted\n", bpt->number);
2474 /* Be sure no bpstat's are pointing at it after it's been freed. */
2475 /* FIXME, how can we find all bpstat's? We just check stop_bpstat for now. */
2476 for (bs = stop_bpstat; bs; bs = bs->next)
2477 if (bs->breakpoint_at == bpt)
2478 bs->breakpoint_at = NULL;
2483 delete_command (arg, from_tty)
2490 /* Ask user only if there are some breakpoints to delete. */
2492 || (breakpoint_chain && query ("Delete all breakpoints? ", 0, 0)))
2494 /* No arg; clear all breakpoints. */
2495 while (breakpoint_chain)
2496 delete_breakpoint (breakpoint_chain);
2500 map_breakpoint_numbers (arg, delete_breakpoint);
2503 /* Reset a breakpoint given it's struct breakpoint * BINT.
2504 The value we return ends up being the return value from catch_errors.
2505 Unused in this case. */
2508 breakpoint_re_set_one (bint)
2511 struct breakpoint *b = (struct breakpoint *)bint; /* get past catch_errs */
2513 struct symtabs_and_lines sals;
2515 enum enable save_enable;
2520 if (b->addr_string == NULL)
2522 /* Anything without a string can't be re-set. */
2523 delete_breakpoint (b);
2526 /* In case we have a problem, disable this breakpoint. We'll restore
2527 its status if we succeed. */
2528 save_enable = b->enable;
2529 b->enable = disabled;
2532 sals = decode_line_1 (&s, 1, (struct symtab *)NULL, 0);
2533 for (i = 0; i < sals.nelts; i++)
2535 resolve_sal_pc (&sals.sals[i]);
2536 if (b->symtab != sals.sals[i].symtab
2537 || b->line_number != sals.sals[i].line
2538 || b->address != sals.sals[i].pc)
2540 b->symtab = sals.sals[i].symtab;
2541 b->line_number = sals.sals[i].line;
2542 b->address = sals.sals[i].pc;
2544 if (b->cond_string != NULL)
2548 free ((PTR)b->cond);
2549 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
2552 check_duplicates (b->address);
2556 b->enable = save_enable; /* Restore it, this worked. */
2558 free ((PTR)sals.sals);
2562 innermost_block = NULL;
2563 /* The issue arises of what context to evaluate this in. The same
2564 one as when it was set, but what does that mean when symbols have
2565 been re-read? We could save the filename and functionname, but
2566 if the context is more local than that, the best we could do would
2567 be something like how many levels deep and which index at that
2568 particular level, but that's going to be less stable than filenames
2569 or functionnames. */
2570 /* So for now, just use a global context. */
2571 b->exp = parse_expression (b->exp_string);
2572 b->exp_valid_block = innermost_block;
2573 b->val = evaluate_expression (b->exp);
2574 release_value (b->val);
2575 if (VALUE_LAZY (b->val))
2576 value_fetch_lazy (b->val);
2578 if (b->cond_string != NULL)
2581 b->cond = parse_exp_1 (&s, (struct block *)0, 0);
2583 if (b->enable == enabled)
2588 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
2593 case bp_longjmp_resume:
2594 delete_breakpoint (b);
2601 /* Re-set all breakpoints after symbols have been re-loaded. */
2603 breakpoint_re_set ()
2605 struct breakpoint *b, *temp;
2606 static char message1[] = "Error in re-setting breakpoint %d:\n";
2607 char message[sizeof (message1) + 30 /* slop */];
2609 /* If we have no current source symtab, and we have any breakpoints,
2610 go through the work of making a source context. */
2611 if (current_source_symtab == NULL && breakpoint_chain != 0)
2613 select_source_symtab (NULL);
2616 ALL_BREAKPOINTS_SAFE (b, temp)
2618 sprintf (message, message1, b->number); /* Format possible error msg */
2619 catch_errors (breakpoint_re_set_one, (char *) b, message);
2622 create_longjmp_breakpoint("longjmp");
2623 create_longjmp_breakpoint("_longjmp");
2624 create_longjmp_breakpoint("siglongjmp");
2625 create_longjmp_breakpoint(NULL);
2628 /* Took this out (temporaliy at least), since it produces an extra
2629 blank line at startup. This messes up the gdbtests. -PB */
2630 /* Blank line to finish off all those mention() messages we just printed. */
2631 printf_filtered ("\n");
2635 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
2636 If from_tty is nonzero, it prints a message to that effect,
2637 which ends with a period (no newline). */
2640 set_ignore_count (bptnum, count, from_tty)
2641 int bptnum, count, from_tty;
2643 register struct breakpoint *b;
2649 if (b->number == bptnum)
2651 b->ignore_count = count;
2654 else if (count == 0)
2655 printf_filtered ("Will stop next time breakpoint %d is reached.",
2657 else if (count == 1)
2658 printf_filtered ("Will ignore next crossing of breakpoint %d.",
2661 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
2666 error ("No breakpoint number %d.", bptnum);
2669 /* Clear the ignore counts of all breakpoints. */
2671 breakpoint_clear_ignore_counts ()
2673 struct breakpoint *b;
2676 b->ignore_count = 0;
2679 /* Command to set ignore-count of breakpoint N to COUNT. */
2682 ignore_command (args, from_tty)
2690 error_no_arg ("a breakpoint number");
2692 num = get_number (&p);
2695 error ("Second argument (specified ignore-count) is missing.");
2697 set_ignore_count (num,
2698 longest_to_int (value_as_long (parse_and_eval (p))),
2700 printf_filtered ("\n");
2703 /* Call FUNCTION on each of the breakpoints
2704 whose numbers are given in ARGS. */
2707 map_breakpoint_numbers (args, function)
2709 void (*function) PARAMS ((struct breakpoint *));
2711 register char *p = args;
2714 register struct breakpoint *b;
2717 error_no_arg ("one or more breakpoint numbers");
2723 num = get_number (&p1);
2726 if (b->number == num)
2731 printf ("No breakpoint number %d.\n", num);
2738 enable_breakpoint (bpt)
2739 struct breakpoint *bpt;
2741 FRAME save_selected_frame;
2742 int save_selected_frame_level = -1;
2744 bpt->enable = enabled;
2746 if (xgdb_verbose && bpt->type == bp_breakpoint)
2747 printf ("breakpoint #%d enabled\n", bpt->number);
2749 check_duplicates (bpt->address);
2750 if (bpt->type == bp_watchpoint)
2752 if (bpt->exp_valid_block != NULL)
2754 FRAME fr = within_scope (bpt->exp_valid_block);
2758 Cannot enable watchpoint %d because the block in which its expression\n\
2759 is valid is not currently in scope.\n", bpt->number);
2760 bpt->enable = disabled;
2763 save_selected_frame = selected_frame;
2764 save_selected_frame_level = selected_frame_level;
2765 select_frame (fr, -1);
2768 value_free (bpt->val);
2770 bpt->val = evaluate_expression (bpt->exp);
2771 release_value (bpt->val);
2772 if (VALUE_LAZY (bpt->val))
2773 value_fetch_lazy (bpt->val);
2775 if (save_selected_frame_level >= 0)
2776 select_frame (save_selected_frame, save_selected_frame_level);
2782 enable_command (args, from_tty)
2786 struct breakpoint *bpt;
2788 ALL_BREAKPOINTS (bpt)
2793 enable_breakpoint (bpt);
2798 map_breakpoint_numbers (args, enable_breakpoint);
2802 disable_breakpoint (bpt)
2803 struct breakpoint *bpt;
2805 bpt->enable = disabled;
2807 if (xgdb_verbose && bpt->type == bp_breakpoint)
2808 printf_filtered ("breakpoint #%d disabled\n", bpt->number);
2810 check_duplicates (bpt->address);
2815 disable_command (args, from_tty)
2819 register struct breakpoint *bpt;
2821 ALL_BREAKPOINTS (bpt)
2826 disable_breakpoint (bpt);
2831 map_breakpoint_numbers (args, disable_breakpoint);
2835 enable_once_breakpoint (bpt)
2836 struct breakpoint *bpt;
2838 bpt->enable = enabled;
2839 bpt->disposition = disable;
2841 check_duplicates (bpt->address);
2846 enable_once_command (args, from_tty)
2850 map_breakpoint_numbers (args, enable_once_breakpoint);
2854 enable_delete_breakpoint (bpt)
2855 struct breakpoint *bpt;
2857 bpt->enable = enabled;
2858 bpt->disposition = delete;
2860 check_duplicates (bpt->address);
2865 enable_delete_command (args, from_tty)
2869 map_breakpoint_numbers (args, enable_delete_breakpoint);
2873 * Use default_breakpoint_'s, or nothing if they aren't valid.
2875 struct symtabs_and_lines
2876 decode_line_spec_1 (string, funfirstline)
2880 struct symtabs_and_lines sals;
2882 error ("Empty line specification.");
2883 if (default_breakpoint_valid)
2884 sals = decode_line_1 (&string, funfirstline,
2885 default_breakpoint_symtab, default_breakpoint_line);
2887 sals = decode_line_1 (&string, funfirstline, (struct symtab *)NULL, 0);
2889 error ("Junk at end of line specification: %s", string);
2894 _initialize_breakpoint ()
2896 breakpoint_chain = 0;
2897 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
2898 before a breakpoint is set. */
2899 breakpoint_count = 0;
2901 add_com ("ignore", class_breakpoint, ignore_command,
2902 "Set ignore-count of breakpoint number N to COUNT.");
2904 add_com ("commands", class_breakpoint, commands_command,
2905 "Set commands to be executed when a breakpoint is hit.\n\
2906 Give breakpoint number as argument after \"commands\".\n\
2907 With no argument, the targeted breakpoint is the last one set.\n\
2908 The commands themselves follow starting on the next line.\n\
2909 Type a line containing \"end\" to indicate the end of them.\n\
2910 Give \"silent\" as the first line to make the breakpoint silent;\n\
2911 then no output is printed when it is hit, except what the commands print.");
2913 add_com ("condition", class_breakpoint, condition_command,
2914 "Specify breakpoint number N to break only if COND is true.\n\
2915 N is an integer; COND is an expression to be evaluated whenever\n\
2916 breakpoint N is reached. ");
2918 add_com ("tbreak", class_breakpoint, tbreak_command,
2919 "Set a temporary breakpoint. Args like \"break\" command.\n\
2920 Like \"break\" except the breakpoint is only enabled temporarily,\n\
2921 so it will be disabled when hit. Equivalent to \"break\" followed\n\
2922 by using \"enable once\" on the breakpoint number.");
2924 add_prefix_cmd ("enable", class_breakpoint, enable_command,
2925 "Enable some breakpoints.\n\
2926 Give breakpoint numbers (separated by spaces) as arguments.\n\
2927 With no subcommand, breakpoints are enabled until you command otherwise.\n\
2928 This is used to cancel the effect of the \"disable\" command.\n\
2929 With a subcommand you can enable temporarily.",
2930 &enablelist, "enable ", 1, &cmdlist);
2932 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
2933 "Enable some breakpoints.\n\
2934 Give breakpoint numbers (separated by spaces) as arguments.\n\
2935 This is used to cancel the effect of the \"disable\" command.\n\
2936 May be abbreviated to simply \"enable\".\n",
2937 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
2939 add_cmd ("once", no_class, enable_once_command,
2940 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
2941 If a breakpoint is hit while enabled in this fashion, it becomes disabled.\n\
2942 See the \"tbreak\" command which sets a breakpoint and enables it once.",
2945 add_cmd ("delete", no_class, enable_delete_command,
2946 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
2947 If a breakpoint is hit while enabled in this fashion, it is deleted.",
2950 add_cmd ("delete", no_class, enable_delete_command,
2951 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
2952 If a breakpoint is hit while enabled in this fashion, it is deleted.",
2955 add_cmd ("once", no_class, enable_once_command,
2956 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
2957 If a breakpoint is hit while enabled in this fashion, it becomes disabled.\n\
2958 See the \"tbreak\" command which sets a breakpoint and enables it once.",
2961 add_prefix_cmd ("disable", class_breakpoint, disable_command,
2962 "Disable some breakpoints.\n\
2963 Arguments are breakpoint numbers with spaces in between.\n\
2964 To disable all breakpoints, give no argument.\n\
2965 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
2966 &disablelist, "disable ", 1, &cmdlist);
2967 add_com_alias ("dis", "disable", class_breakpoint, 1);
2968 add_com_alias ("disa", "disable", class_breakpoint, 1);
2970 add_cmd ("breakpoints", class_alias, disable_command,
2971 "Disable some breakpoints.\n\
2972 Arguments are breakpoint numbers with spaces in between.\n\
2973 To disable all breakpoints, give no argument.\n\
2974 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
2975 This command may be abbreviated \"disable\".",
2978 add_prefix_cmd ("delete", class_breakpoint, delete_command,
2979 "Delete some breakpoints or auto-display expressions.\n\
2980 Arguments are breakpoint numbers with spaces in between.\n\
2981 To delete all breakpoints, give no argument.\n\
2983 Also a prefix command for deletion of other GDB objects.\n\
2984 The \"unset\" command is also an alias for \"delete\".",
2985 &deletelist, "delete ", 1, &cmdlist);
2986 add_com_alias ("d", "delete", class_breakpoint, 1);
2988 add_cmd ("breakpoints", class_alias, delete_command,
2989 "Delete some breakpoints or auto-display expressions.\n\
2990 Arguments are breakpoint numbers with spaces in between.\n\
2991 To delete all breakpoints, give no argument.\n\
2992 This command may be abbreviated \"delete\".",
2995 add_com ("clear", class_breakpoint, clear_command,
2996 "Clear breakpoint at specified line or function.\n\
2997 Argument may be line number, function name, or \"*\" and an address.\n\
2998 If line number is specified, all breakpoints in that line are cleared.\n\
2999 If function is specified, breakpoints at beginning of function are cleared.\n\
3000 If an address is specified, breakpoints at that address are cleared.\n\n\
3001 With no argument, clears all breakpoints in the line that the selected frame\n\
3004 See also the \"delete\" command which clears breakpoints by number.");
3006 add_com ("break", class_breakpoint, break_command,
3007 "Set breakpoint at specified line or function.\n\
3008 Argument may be line number, function name, or \"*\" and an address.\n\
3009 If line number is specified, break at start of code for that line.\n\
3010 If function is specified, break at start of code for that function.\n\
3011 If an address is specified, break at that exact address.\n\
3012 With no arg, uses current execution address of selected stack frame.\n\
3013 This is useful for breaking on return to a stack frame.\n\
3015 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
3017 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
3018 add_com_alias ("b", "break", class_run, 1);
3019 add_com_alias ("br", "break", class_run, 1);
3020 add_com_alias ("bre", "break", class_run, 1);
3021 add_com_alias ("brea", "break", class_run, 1);
3023 add_info ("breakpoints", breakpoints_info,
3024 "Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
3025 The \"Type\" column indicates one of:\n\
3026 \tbreakpoint - normal breakpoint\n\
3027 \twatchpoint - watchpoint\n\
3028 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
3029 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
3030 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
3031 address and file/line number respectively.\n\n\
3032 Convenience variable \"$_\" and default examine address for \"x\"\n\
3033 are set to the address of the last breakpoint listed.\n\n\
3034 Convenience variable \"$bpnum\" contains the number of the last\n\
3037 #if MAINTENANCE_CMDS
3039 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
3040 "Status of all breakpoints, or breakpoint number NUMBER.\n\
3041 The \"Type\" column indicates one of:\n\
3042 \tbreakpoint - normal breakpoint\n\
3043 \twatchpoint - watchpoint\n\
3044 \tlongjmp - internal breakpoint used to step through longjmp()\n\
3045 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
3046 \tuntil - internal breakpoint used by the \"until\" command\n\
3047 \tfinish - internal breakpoint used by the \"finish\" command\n\
3048 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
3049 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
3050 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
3051 address and file/line number respectively.\n\n\
3052 Convenience variable \"$_\" and default examine address for \"x\"\n\
3053 are set to the address of the last breakpoint listed.\n\n\
3054 Convenience variable \"$bpnum\" contains the number of the last\n\
3056 &maintenanceinfolist);
3058 #endif /* MAINTENANCE_CMDS */
3060 add_com ("catch", class_breakpoint, catch_command,
3061 "Set breakpoints to catch exceptions that are raised.\n\
3062 Argument may be a single exception to catch, multiple exceptions\n\
3063 to catch, or the default exception \"default\". If no arguments\n\
3064 are given, breakpoints are set at all exception handlers catch clauses\n\
3065 within the current scope.\n\
3067 A condition specified for the catch applies to all breakpoints set\n\
3068 with this command\n\
3070 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
3072 add_com ("watch", class_breakpoint, watch_command,
3073 "Set a watchpoint for an expression.\n\
3074 A watchpoint stops execution of your program whenever the value of\n\
3075 an expression changes.");
3077 add_info ("watchpoints", breakpoints_info,
3078 "Synonym for ``info breakpoints''.");
3081 /* OK, when we call objfile_relocate, we need to relocate breakpoints
3082 too. breakpoint_re_set is not a good choice--for example, if
3083 addr_string contains just a line number without a file name the
3084 breakpoint might get set in a different file. In general, there is
3085 no need to go all the way back to the user's string (though this might
3086 work if some effort were made to canonicalize it), since symtabs and
3087 everything except addresses are still valid.
3089 Probably the best way to solve this is to have each breakpoint save
3090 the objfile and the section number that was used to set it (if set
3091 by "*addr", probably it is best to use find_pc_line to get a symtab
3092 and use the objfile and block_line_section for that symtab). Then
3093 objfile_relocate can call fixup_breakpoints with the objfile and
3094 the new_offsets, and it can relocate only the appropriate breakpoints. */
3096 #ifdef IBM6000_TARGET
3097 /* But for now, just kludge it based on the concept that before an
3098 objfile is relocated the breakpoint is below 0x10000000, and afterwards
3099 it is higher, so that way we only relocate each breakpoint once. */
3102 fixup_breakpoints (low, high, delta)
3107 struct breakpoint *b;
3111 if (b->address >= low && b->address <= high)
3112 b->address += delta;