1 /* Everything about breakpoints, for GDB.
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
25 #include "breakpoint.h"
27 #include "expression.h"
41 /* local function prototypes */
44 catch_command_1 PARAMS ((char *, int, int));
47 enable_delete_command PARAMS ((char *, int));
50 enable_delete_breakpoint PARAMS ((struct breakpoint *));
53 enable_once_command PARAMS ((char *, int));
56 enable_once_breakpoint PARAMS ((struct breakpoint *));
59 disable_command PARAMS ((char *, int));
62 disable_breakpoint PARAMS ((struct breakpoint *));
65 enable_command PARAMS ((char *, int));
68 enable_breakpoint PARAMS ((struct breakpoint *));
71 map_breakpoint_numbers PARAMS ((char *, void (*)(struct breakpoint *)));
74 ignore_command PARAMS ((char *, int));
77 breakpoint_re_set_one PARAMS ((char *));
80 delete_command PARAMS ((char *, int));
83 clear_command PARAMS ((char *, int));
86 catch_command PARAMS ((char *, int));
88 static struct symtabs_and_lines
89 get_catch_sals PARAMS ((int));
92 watch_command PARAMS ((char *, int));
95 can_use_hardware_watchpoint PARAMS ((struct value *));
98 tbreak_command PARAMS ((char *, int));
101 break_command_1 PARAMS ((char *, int, int));
104 mention PARAMS ((struct breakpoint *));
106 static struct breakpoint *
107 set_raw_breakpoint PARAMS ((struct symtab_and_line));
110 check_duplicates PARAMS ((CORE_ADDR));
113 describe_other_breakpoints PARAMS ((CORE_ADDR));
116 breakpoints_info PARAMS ((char *, int));
119 breakpoint_1 PARAMS ((int, int));
122 bpstat_alloc PARAMS ((struct breakpoint *, bpstat));
125 breakpoint_cond_eval PARAMS ((char *));
128 cleanup_executing_breakpoints PARAMS ((int));
131 commands_command PARAMS ((char *, int));
134 condition_command PARAMS ((char *, int));
137 get_number PARAMS ((char **));
140 set_breakpoint_count PARAMS ((int));
143 remove_breakpoint PARAMS ((struct breakpoint *));
145 extern int addressprint; /* Print machine addresses? */
147 /* Are we executing breakpoint commands? */
148 static int executing_breakpoint_commands;
150 /* Walk the following statement or block through all breakpoints.
151 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
154 #define ALL_BREAKPOINTS(b) for (b = breakpoint_chain; b; b = b->next)
156 #define ALL_BREAKPOINTS_SAFE(b,tmp) \
157 for (b = breakpoint_chain; \
158 b? (tmp=b->next, 1): 0; \
161 /* By default no support for hardware watchpoints is assumed. */
162 #ifndef TARGET_CAN_USE_HARDWARE_WATCHPOINT
163 #define TARGET_CAN_USE_HARDWARE_WATCHPOINT(TYPE,CNT,OTHERTYPE) 0
164 #define target_remove_watchpoint(ADDR,LEN,TYPE) -1
165 #define target_insert_watchpoint(ADDR,LEN,TYPE) -1
168 #ifndef target_insert_hw_breakpoint
169 #define target_remove_hw_breakpoint(ADDR,SHADOW) -1
170 #define target_insert_hw_breakpoint(ADDR,SHADOW) -1
173 #ifndef target_stopped_data_address
174 #define target_stopped_data_address() 0
177 /* True if breakpoint hit counts should be displayed in breakpoint info. */
179 int show_breakpoint_hit_counts = 1;
181 /* Chain of all breakpoints defined. */
183 static struct breakpoint *breakpoint_chain;
185 /* Number of last breakpoint made. */
187 static int breakpoint_count;
189 /* Set breakpoint count to NUM. */
192 set_breakpoint_count (num)
195 breakpoint_count = num;
196 set_internalvar (lookup_internalvar ("bpnum"),
197 value_from_longest (builtin_type_int, (LONGEST) num));
200 /* Used in run_command to zero the hit count when a new run starts. */
203 clear_breakpoint_hit_counts ()
205 struct breakpoint *b;
211 /* Default address, symtab and line to put a breakpoint at
212 for "break" command with no arg.
213 if default_breakpoint_valid is zero, the other three are
214 not valid, and "break" with no arg is an error.
216 This set by print_stack_frame, which calls set_default_breakpoint. */
218 int default_breakpoint_valid;
219 CORE_ADDR default_breakpoint_address;
220 struct symtab *default_breakpoint_symtab;
221 int default_breakpoint_line;
223 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
224 Advance *PP after the string and any trailing whitespace.
226 Currently the string can either be a number or "$" followed by the name
227 of a convenience variable. Making it an expression wouldn't work well
228 for map_breakpoint_numbers (e.g. "4 + 5 + 6"). */
237 /* Empty line means refer to the last breakpoint. */
238 return breakpoint_count;
241 /* Make a copy of the name, so we can null-terminate it
242 to pass to lookup_internalvar(). */
247 while (isalnum (*p) || *p == '_')
249 varname = (char *) alloca (p - start + 1);
250 strncpy (varname, start, p - start);
251 varname[p - start] = '\0';
252 val = value_of_internalvar (lookup_internalvar (varname));
253 if (TYPE_CODE (VALUE_TYPE (val)) != TYPE_CODE_INT)
255 "Convenience variables used to specify breakpoints must have integer values."
257 retval = (int) value_as_long (val);
263 while (*p >= '0' && *p <= '9')
266 /* There is no number here. (e.g. "cond a == b"). */
267 error_no_arg ("breakpoint number");
270 if (!(isspace (*p) || *p == '\0'))
271 error ("breakpoint number expected");
278 /* condition N EXP -- set break condition of breakpoint N to EXP. */
281 condition_command (arg, from_tty)
285 register struct breakpoint *b;
290 error_no_arg ("breakpoint number");
293 bnum = get_number (&p);
296 if (b->number == bnum)
303 if (b->cond_string != NULL)
304 free ((PTR)b->cond_string);
309 b->cond_string = NULL;
311 printf_filtered ("Breakpoint %d now unconditional.\n", bnum);
316 /* I don't know if it matters whether this is the string the user
317 typed in or the decompiled expression. */
318 b->cond_string = savestring (arg, strlen (arg));
319 b->cond = parse_exp_1 (&arg, block_for_pc (b->address), 0);
321 error ("Junk at end of expression");
323 breakpoints_changed ();
327 error ("No breakpoint number %d.", bnum);
332 commands_command (arg, from_tty)
336 register struct breakpoint *b;
339 struct command_line *l;
341 /* If we allowed this, we would have problems with when to
342 free the storage, if we change the commands currently
345 if (executing_breakpoint_commands)
346 error ("Can't use the \"commands\" command among a breakpoint's commands.");
349 bnum = get_number (&p);
351 error ("Unexpected extra arguments following breakpoint number.");
354 if (b->number == bnum)
356 if (from_tty && input_from_terminal_p ())
357 printf_filtered ("Type commands for when breakpoint %d is hit, one per line.\n\
358 End with a line saying just \"end\".\n", bnum);
359 l = read_command_lines ();
360 free_command_lines (&b->commands);
362 breakpoints_changed ();
365 error ("No breakpoint number %d.", bnum);
368 extern int memory_breakpoint_size; /* from mem-break.c */
370 /* Like target_read_memory() but if breakpoints are inserted, return
371 the shadow contents instead of the breakpoints themselves.
373 Read "memory data" from whatever target or inferior we have.
374 Returns zero if successful, errno value if not. EIO is used
375 for address out of bounds. If breakpoints are inserted, returns
376 shadow contents, not the breakpoints themselves. From breakpoint.c. */
379 read_memory_nobpt (memaddr, myaddr, len)
385 struct breakpoint *b;
387 if (memory_breakpoint_size < 0)
388 /* No breakpoints on this machine. FIXME: This should be
389 dependent on the debugging target. Probably want
390 target_insert_breakpoint to return a size, saying how many
391 bytes of the shadow contents are used, or perhaps have
392 something like target_xfer_shadow. */
393 return target_read_memory (memaddr, myaddr, len);
397 if (b->type == bp_watchpoint
398 || b->type == bp_hardware_watchpoint
399 || b->type == bp_read_watchpoint
400 || b->type == bp_access_watchpoint
403 else if (b->address + memory_breakpoint_size <= memaddr)
404 /* The breakpoint is entirely before the chunk of memory
407 else if (b->address >= memaddr + len)
408 /* The breakpoint is entirely after the chunk of memory we
413 /* Copy the breakpoint from the shadow contents, and recurse
414 for the things before and after. */
416 /* Addresses and length of the part of the breakpoint that
418 CORE_ADDR membpt = b->address;
419 unsigned int bptlen = memory_breakpoint_size;
420 /* Offset within shadow_contents. */
423 if (membpt < memaddr)
425 /* Only copy the second part of the breakpoint. */
426 bptlen -= memaddr - membpt;
427 bptoffset = memaddr - membpt;
431 if (membpt + bptlen > memaddr + len)
433 /* Only copy the first part of the breakpoint. */
434 bptlen -= (membpt + bptlen) - (memaddr + len);
437 memcpy (myaddr + membpt - memaddr,
438 b->shadow_contents + bptoffset, bptlen);
440 if (membpt > memaddr)
442 /* Copy the section of memory before the breakpoint. */
443 status = read_memory_nobpt (memaddr, myaddr, membpt - memaddr);
448 if (membpt + bptlen < memaddr + len)
450 /* Copy the section of memory after the breakpoint. */
451 status = read_memory_nobpt
453 myaddr + membpt + bptlen - memaddr,
454 memaddr + len - (membpt + bptlen));
461 /* Nothing overlaps. Just call read_memory_noerr. */
462 return target_read_memory (memaddr, myaddr, len);
465 /* insert_breakpoints is used when starting or continuing the program.
466 remove_breakpoints is used when the program stops.
467 Both return zero if successful,
468 or an `errno' value if could not write the inferior. */
471 insert_breakpoints ()
473 register struct breakpoint *b;
475 int disabled_breaks = 0;
478 if (b->type != bp_watchpoint
479 && b->type != bp_hardware_watchpoint
480 && b->type != bp_read_watchpoint
481 && b->type != bp_access_watchpoint
482 && b->enable != disabled
486 if (b->type == bp_hardware_breakpoint)
487 val = target_insert_hw_breakpoint(b->address, b->shadow_contents);
489 val = target_insert_breakpoint(b->address, b->shadow_contents);
492 /* Can't set the breakpoint. */
493 #if defined (DISABLE_UNSETTABLE_BREAK)
494 if (DISABLE_UNSETTABLE_BREAK (b->address))
497 b->enable = disabled;
498 if (!disabled_breaks)
500 target_terminal_ours_for_output ();
501 fprintf_unfiltered (gdb_stderr,
502 "Cannot insert breakpoint %d:\n", b->number);
503 printf_filtered ("Disabling shared library breakpoints:\n");
506 printf_filtered ("%d ", b->number);
511 target_terminal_ours_for_output ();
512 fprintf_unfiltered (gdb_stderr, "Cannot insert breakpoint %d:\n", b->number);
513 #ifdef ONE_PROCESS_WRITETEXT
514 fprintf_unfiltered (gdb_stderr,
515 "The same program may be running in another process.\n");
517 memory_error (val, b->address); /* which bombs us out */
523 else if ((b->type == bp_hardware_watchpoint ||
524 b->type == bp_read_watchpoint ||
525 b->type == bp_access_watchpoint)
526 && b->enable == enabled
530 struct frame_info *saved_frame;
531 int saved_level, within_current_scope;
532 value_ptr mark = value_mark ();
535 /* Save the current frame and level so we can restore it after
536 evaluating the watchpoint expression on its own frame. */
537 saved_frame = selected_frame;
538 saved_level = selected_frame_level;
540 /* Determine if the watchpoint is within scope. */
541 if (b->exp_valid_block == NULL)
542 within_current_scope = 1;
545 struct frame_info *fi =
546 find_frame_addr_in_frame_chain (b->watchpoint_frame);
547 within_current_scope = (fi != NULL);
548 if (within_current_scope)
549 select_frame (fi, -1);
552 if (within_current_scope)
554 /* Evaluate the expression and cut the chain of values
555 produced off from the value chain. */
556 v = evaluate_expression (b->exp);
557 value_release_to_mark (mark);
562 /* Look at each value on the value chain. */
563 for ( ; v; v=v->next)
565 /* If it's a memory location, then we must watch it. */
566 if (v->lval == lval_memory)
570 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
571 len = TYPE_LENGTH (VALUE_TYPE (v));
573 if (b->type == bp_read_watchpoint)
575 else if (b->type == bp_access_watchpoint)
578 val = target_insert_watchpoint (addr, len, type);
587 /* Failure to insert a watchpoint on any memory value in the
588 value chain brings us here. */
590 warning ("Hardware watchpoint %d: Could not insert watchpoint\n",
596 Hardware watchpoint %d deleted because the program has left the block in\n\
597 which its expression is valid.\n", b->number);
598 if (b->related_breakpoint)
599 delete_breakpoint (b->related_breakpoint);
600 delete_breakpoint (b);
603 /* Restore the frame and level. */
604 select_frame (saved_frame, saved_level);
607 printf_filtered ("\n");
613 remove_breakpoints ()
615 register struct breakpoint *b;
622 val = remove_breakpoint (b);
632 remove_breakpoint (b)
633 struct breakpoint *b;
637 if (b->type != bp_watchpoint
638 && b->type != bp_hardware_watchpoint
639 && b->type != bp_read_watchpoint
640 && b->type != bp_access_watchpoint)
642 if (b->type == bp_hardware_breakpoint)
643 val = target_remove_hw_breakpoint(b->address, b->shadow_contents);
645 val = target_remove_breakpoint(b->address, b->shadow_contents);
650 else if ((b->type == bp_hardware_watchpoint ||
651 b->type == bp_read_watchpoint ||
652 b->type == bp_access_watchpoint)
653 && b->enable == enabled
659 /* Walk down the saved value chain. */
660 for (v = b->val_chain; v; v = v->next)
662 /* For each memory reference remove the watchpoint
664 if (v->lval == lval_memory)
668 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
669 len = TYPE_LENGTH (VALUE_TYPE (v));
670 val = target_remove_watchpoint (addr, len, b->type);
676 /* Failure to remove any of the hardware watchpoints comes here. */
678 error ("Hardware watchpoint %d: Could not remove watchpoint\n",
681 /* Free the saved value chain. We will construct a new one
682 the next time the watchpoint is inserted. */
683 for (v = b->val_chain; v; v = n)
693 /* Clear the "inserted" flag in all breakpoints. */
696 mark_breakpoints_out ()
698 register struct breakpoint *b;
704 /* Clear the "inserted" flag in all breakpoints and delete any breakpoints
705 which should go away between runs of the program. */
708 breakpoint_init_inferior ()
710 register struct breakpoint *b, *temp;
712 ALL_BREAKPOINTS_SAFE (b, temp)
716 /* If the call dummy breakpoint is at the entry point it will
717 cause problems when the inferior is rerun, so we better
719 if (b->type == bp_call_dummy)
720 delete_breakpoint (b);
722 /* Likewise for scope breakpoints. */
723 if (b->type == bp_watchpoint_scope)
724 delete_breakpoint (b);
726 /* Likewise for watchpoints on local expressions. */
727 if ((b->type == bp_watchpoint || b->type == bp_hardware_watchpoint ||
728 b->type == bp_read_watchpoint || b->type == bp_access_watchpoint)
729 && b->exp_valid_block != NULL)
730 delete_breakpoint (b);
734 /* breakpoint_here_p (PC) returns 1 if an enabled breakpoint exists at PC.
735 When continuing from a location with a breakpoint,
736 we actually single step once before calling insert_breakpoints. */
739 breakpoint_here_p (pc)
742 register struct breakpoint *b;
745 if (b->enable != disabled && b->address == pc)
751 /* Return nonzero if FRAME is a dummy frame. We can't use PC_IN_CALL_DUMMY
752 because figuring out the saved SP would take too much time, at least using
753 get_saved_register on the 68k. This means that for this function to
754 work right a port must use the bp_call_dummy breakpoint. */
757 frame_in_dummy (frame)
758 struct frame_info *frame;
760 struct breakpoint *b;
765 static unsigned LONGEST dummy[] = CALL_DUMMY;
767 if (b->type == bp_call_dummy
768 && b->frame == frame->frame
770 /* We need to check the PC as well as the frame on the sparc,
771 for signals.exp in the testsuite. */
774 - sizeof (dummy) / sizeof (LONGEST) * REGISTER_SIZE))
775 && frame->pc <= b->address)
778 #endif /* CALL_DUMMY */
782 /* breakpoint_match_thread (PC, PID) returns true if the breakpoint at PC
783 is valid for process/thread PID. */
786 breakpoint_thread_match (pc, pid)
790 struct breakpoint *b;
793 thread = pid_to_thread_id (pid);
796 if (b->enable != disabled
798 && (b->thread == -1 || b->thread == thread))
805 /* bpstat stuff. External routines' interfaces are documented
808 /* Clear a bpstat so that it says we are not at any breakpoint.
809 Also free any storage that is part of a bpstat. */
824 if (p->old_val != NULL)
825 value_free (p->old_val);
832 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
833 is part of the bpstat is copied as well. */
841 bpstat retval = NULL;
846 for (; bs != NULL; bs = bs->next)
848 tmp = (bpstat) xmalloc (sizeof (*tmp));
849 memcpy (tmp, bs, sizeof (*tmp));
851 /* This is the first thing in the chain. */
861 /* Find the bpstat associated with this breakpoint */
864 bpstat_find_breakpoint(bsp, breakpoint)
866 struct breakpoint *breakpoint;
868 if (bsp == NULL) return NULL;
870 for (;bsp != NULL; bsp = bsp->next) {
871 if (bsp->breakpoint_at == breakpoint) return bsp;
876 /* Return the breakpoint number of the first breakpoint we are stopped
877 at. *BSP upon return is a bpstat which points to the remaining
878 breakpoints stopped at (but which is not guaranteed to be good for
879 anything but further calls to bpstat_num).
880 Return 0 if passed a bpstat which does not indicate any breakpoints. */
886 struct breakpoint *b;
889 return 0; /* No more breakpoint values */
892 b = (*bsp)->breakpoint_at;
895 return -1; /* breakpoint that's been deleted since */
897 return b->number; /* We have its number */
901 /* Modify BS so that the actions will not be performed. */
904 bpstat_clear_actions (bs)
907 for (; bs != NULL; bs = bs->next)
910 if (bs->old_val != NULL)
912 value_free (bs->old_val);
918 /* Stub for cleaning up our state if we error-out of a breakpoint command */
921 cleanup_executing_breakpoints (ignore)
924 executing_breakpoint_commands = 0;
927 /* Execute all the commands associated with all the breakpoints at this
928 location. Any of these commands could cause the process to proceed
929 beyond this point, etc. We look out for such changes by checking
930 the global "breakpoint_proceeded" after each command. */
933 bpstat_do_actions (bsp)
937 struct cleanup *old_chain;
939 executing_breakpoint_commands = 1;
940 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
945 breakpoint_proceeded = 0;
946 for (; bs != NULL; bs = bs->next)
950 struct command_line *cmd = bs->commands;
951 bs->commands = bs->commands->next;
952 execute_control_command (cmd);
953 /* If the inferior is proceeded by the command, bomb out now.
954 The bpstat chain has been blown away by wait_for_inferior.
955 But since execution has stopped again, there is a new bpstat
956 to look at, so start over. */
957 if (breakpoint_proceeded)
962 executing_breakpoint_commands = 0;
963 discard_cleanups (old_chain);
966 /* This is the normal print_it function for a bpstat. In the future,
967 much of this logic could (should?) be moved to bpstat_stop_status,
968 by having it set different print_it functions. */
974 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
975 which has since been deleted. */
976 if (bs->breakpoint_at == NULL
977 || (bs->breakpoint_at->type != bp_breakpoint
978 && bs->breakpoint_at->type != bp_hardware_breakpoint
979 && bs->breakpoint_at->type != bp_watchpoint
980 && bs->breakpoint_at->type != bp_read_watchpoint
981 && bs->breakpoint_at->type != bp_access_watchpoint
982 && bs->breakpoint_at->type != bp_hardware_watchpoint))
985 if (bs->breakpoint_at->type == bp_breakpoint ||
986 bs->breakpoint_at->type == bp_hardware_breakpoint)
988 /* I think the user probably only wants to see one breakpoint
989 number, not all of them. */
990 annotate_breakpoint (bs->breakpoint_at->number);
991 printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
994 else if ((bs->old_val != NULL) &&
995 (bs->breakpoint_at->type == bp_watchpoint ||
996 bs->breakpoint_at->type == bp_access_watchpoint ||
997 bs->breakpoint_at->type == bp_hardware_watchpoint))
999 annotate_watchpoint (bs->breakpoint_at->number);
1000 mention (bs->breakpoint_at);
1001 printf_filtered ("\nOld value = ");
1002 value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
1003 printf_filtered ("\nNew value = ");
1004 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
1005 Val_pretty_default);
1006 printf_filtered ("\n");
1007 value_free (bs->old_val);
1009 /* More than one watchpoint may have been triggered. */
1012 else if (bs->breakpoint_at->type == bp_access_watchpoint ||
1013 bs->breakpoint_at->type == bp_read_watchpoint)
1015 mention (bs->breakpoint_at);
1016 printf_filtered ("\nValue = ");
1017 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
1018 Val_pretty_default);
1019 printf_filtered ("\n");
1022 /* We can't deal with it. Maybe another member of the bpstat chain can. */
1026 /* Print a message indicating what happened. Returns nonzero to
1027 say that only the source line should be printed after this (zero
1028 return means print the frame as well as the source line). */
1029 /* Currently we always return zero. */
1039 val = (*bs->print_it) (bs);
1043 /* Maybe another breakpoint in the chain caused us to stop.
1044 (Currently all watchpoints go on the bpstat whether hit or
1045 not. That probably could (should) be changed, provided care is taken
1046 with respect to bpstat_explains_signal). */
1048 return bpstat_print (bs->next);
1050 /* We reached the end of the chain without printing anything. */
1054 /* Evaluate the expression EXP and return 1 if value is zero.
1055 This is used inside a catch_errors to evaluate the breakpoint condition.
1056 The argument is a "struct expression *" that has been cast to char * to
1057 make it pass through catch_errors. */
1060 breakpoint_cond_eval (exp)
1063 value_ptr mark = value_mark ();
1064 int i = !value_true (evaluate_expression ((struct expression *)exp));
1065 value_free_to_mark (mark);
1069 /* Allocate a new bpstat and chain it to the current one. */
1072 bpstat_alloc (b, cbs)
1073 register struct breakpoint *b;
1074 bpstat cbs; /* Current "bs" value */
1078 bs = (bpstat) xmalloc (sizeof (*bs));
1080 bs->breakpoint_at = b;
1081 /* If the condition is false, etc., don't do the commands. */
1082 bs->commands = NULL;
1084 bs->print_it = print_it_normal;
1088 /* Possible return values for watchpoint_check (this can't be an enum
1089 because of check_errors). */
1090 /* The watchpoint has been deleted. */
1091 #define WP_DELETED 1
1092 /* The value has changed. */
1093 #define WP_VALUE_CHANGED 2
1094 /* The value has not changed. */
1095 #define WP_VALUE_NOT_CHANGED 3
1097 /* Check watchpoint condition. */
1100 watchpoint_check (p)
1103 bpstat bs = (bpstat) p;
1104 struct breakpoint *b;
1105 struct frame_info *saved_frame, *fr;
1106 int within_current_scope, saved_level;
1108 b = bs->breakpoint_at;
1110 if (b->exp_valid_block == NULL)
1111 within_current_scope = 1;
1114 /* There is no current frame at this moment. If we're going to have
1115 any chance of handling watchpoints on local variables, we'll need
1116 the frame chain (so we can determine if we're in scope). */
1117 reinit_frame_cache();
1118 fr = find_frame_addr_in_frame_chain (b->watchpoint_frame);
1119 within_current_scope = (fr != NULL);
1120 if (within_current_scope)
1121 /* If we end up stopping, the current frame will get selected
1122 in normal_stop. So this call to select_frame won't affect
1124 select_frame (fr, -1);
1127 if (within_current_scope)
1129 /* We use value_{,free_to_}mark because it could be a
1130 *long* time before we return to the command level and
1131 call free_all_values. We can't call free_all_values because
1132 we might be in the middle of evaluating a function call. */
1134 value_ptr mark = value_mark ();
1135 value_ptr new_val = evaluate_expression (bs->breakpoint_at->exp);
1136 if (!value_equal (b->val, new_val))
1138 release_value (new_val);
1139 value_free_to_mark (mark);
1140 bs->old_val = b->val;
1142 /* We will stop here */
1143 return WP_VALUE_CHANGED;
1147 /* Nothing changed, don't do anything. */
1148 value_free_to_mark (mark);
1149 /* We won't stop here */
1150 return WP_VALUE_NOT_CHANGED;
1155 /* This seems like the only logical thing to do because
1156 if we temporarily ignored the watchpoint, then when
1157 we reenter the block in which it is valid it contains
1158 garbage (in the case of a function, it may have two
1159 garbage values, one before and one after the prologue).
1160 So we can't even detect the first assignment to it and
1161 watch after that (since the garbage may or may not equal
1162 the first value assigned). */
1164 Watchpoint %d deleted because the program has left the block in\n\
1165 which its expression is valid.\n", bs->breakpoint_at->number);
1166 if (b->related_breakpoint)
1167 delete_breakpoint (b->related_breakpoint);
1168 delete_breakpoint (b);
1174 /* This is used when everything which needs to be printed has
1175 already been printed. But we still want to print the frame. */
1183 /* This is used when nothing should be printed for this bpstat entry. */
1192 /* Get a bpstat associated with having just stopped at address *PC
1193 and frame address CORE_ADDRESS. Update *PC to point at the
1194 breakpoint (if we hit a breakpoint). NOT_A_BREAKPOINT is nonzero
1195 if this is known to not be a real breakpoint (it could still be a
1196 watchpoint, though). */
1198 /* Determine whether we stopped at a breakpoint, etc, or whether we
1199 don't understand this stop. Result is a chain of bpstat's such that:
1201 if we don't understand the stop, the result is a null pointer.
1203 if we understand why we stopped, the result is not null.
1205 Each element of the chain refers to a particular breakpoint or
1206 watchpoint at which we have stopped. (We may have stopped for
1207 several reasons concurrently.)
1209 Each element of the chain has valid next, breakpoint_at,
1210 commands, FIXME??? fields.
1215 bpstat_stop_status (pc, not_a_breakpoint)
1217 int not_a_breakpoint;
1219 register struct breakpoint *b;
1221 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1222 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
1223 int real_breakpoint = 0;
1225 /* Root of the chain of bpstat's */
1226 struct bpstat root_bs[1];
1227 /* Pointer to the last thing in the chain currently. */
1228 bpstat bs = root_bs;
1229 static char message1[] =
1230 "Error evaluating expression for watchpoint %d\n";
1231 char message[sizeof (message1) + 30 /* slop */];
1233 /* Get the address where the breakpoint would have been. */
1234 bp_addr = *pc - DECR_PC_AFTER_BREAK;
1238 if (b->enable == disabled)
1241 if (b->type != bp_watchpoint
1242 && b->type != bp_hardware_watchpoint
1243 && b->type != bp_read_watchpoint
1244 && b->type != bp_access_watchpoint
1245 && b->type != bp_hardware_breakpoint
1246 && b->address != bp_addr)
1249 #ifndef DECR_PC_AFTER_HW_BREAK
1250 #define DECR_PC_AFTER_HW_BREAK 0
1252 if (b->type == bp_hardware_breakpoint
1253 && b->address != (bp_addr - DECR_PC_AFTER_HW_BREAK))
1256 if (b->type != bp_watchpoint
1257 && b->type != bp_hardware_watchpoint
1258 && b->type != bp_read_watchpoint
1259 && b->type != bp_access_watchpoint
1260 && not_a_breakpoint)
1263 /* Come here if it's a watchpoint, or if the break address matches */
1267 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
1272 sprintf (message, message1, b->number);
1273 if (b->type == bp_watchpoint || b->type == bp_hardware_watchpoint)
1275 switch (catch_errors (watchpoint_check, (char *) bs, message,
1279 /* We've already printed what needs to be printed. */
1280 bs->print_it = print_it_done;
1283 case WP_VALUE_CHANGED:
1286 case WP_VALUE_NOT_CHANGED:
1288 bs->print_it = print_it_noop;
1295 /* Error from catch_errors. */
1296 printf_filtered ("Watchpoint %d deleted.\n", b->number);
1297 if (b->related_breakpoint)
1298 delete_breakpoint (b->related_breakpoint);
1299 delete_breakpoint (b);
1300 /* We've already printed what needs to be printed. */
1301 bs->print_it = print_it_done;
1307 else if (b->type == bp_read_watchpoint || b->type == bp_access_watchpoint)
1313 addr = target_stopped_data_address();
1314 if (addr == 0) continue;
1315 for (v = b->val_chain; v; v = v->next)
1317 if (v->lval == lval_memory)
1321 vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
1327 switch (catch_errors (watchpoint_check, (char *) bs, message,
1331 /* We've already printed what needs to be printed. */
1332 bs->print_it = print_it_done;
1335 case WP_VALUE_CHANGED:
1336 case WP_VALUE_NOT_CHANGED:
1342 /* Error from catch_errors. */
1343 printf_filtered ("Watchpoint %d deleted.\n", b->number);
1344 if (b->related_breakpoint)
1345 delete_breakpoint (b->related_breakpoint);
1346 delete_breakpoint (b);
1347 /* We've already printed what needs to be printed. */
1348 bs->print_it = print_it_done;
1352 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1354 real_breakpoint = 1;
1357 if (b->frame && b->frame != (get_current_frame ())->frame)
1361 int value_is_zero = 0;
1365 /* Need to select the frame, with all that implies
1366 so that the conditions will have the right context. */
1367 select_frame (get_current_frame (), 0);
1369 = catch_errors (breakpoint_cond_eval, (char *)(b->cond),
1370 "Error in testing breakpoint condition:\n",
1372 /* FIXME-someday, should give breakpoint # */
1375 if (b->cond && value_is_zero)
1379 else if (b->ignore_count > 0)
1386 /* We will stop here */
1387 if (b->disposition == disable)
1388 b->enable = disabled;
1389 bs->commands = b->commands;
1392 if (bs->commands && STREQ ("silent", bs->commands->line))
1394 bs->commands = bs->commands->next;
1399 /* Print nothing for this entry if we dont stop or if we dont print. */
1400 if (bs->stop == 0 || bs->print == 0)
1401 bs->print_it = print_it_noop;
1404 bs->next = NULL; /* Terminate the chain */
1405 bs = root_bs->next; /* Re-grab the head of the chain */
1406 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1409 if (real_breakpoint)
1412 #if defined (SHIFT_INST_REGS)
1414 #else /* No SHIFT_INST_REGS. */
1416 #endif /* No SHIFT_INST_REGS. */
1419 #endif /* DECR_PC_AFTER_BREAK != 0. */
1421 /* The value of a hardware watchpoint hasn't changed, but the
1422 intermediate memory locations we are watching may have. */
1423 if (bs && ! bs->stop &&
1424 (bs->breakpoint_at->type == bp_hardware_watchpoint ||
1425 bs->breakpoint_at->type == bp_read_watchpoint ||
1426 bs->breakpoint_at->type == bp_access_watchpoint))
1428 remove_breakpoints ();
1429 insert_breakpoints ();
1434 /* Tell what to do about this bpstat. */
1439 /* Classify each bpstat as one of the following. */
1441 /* This bpstat element has no effect on the main_action. */
1444 /* There was a watchpoint, stop but don't print. */
1447 /* There was a watchpoint, stop and print. */
1450 /* There was a breakpoint but we're not stopping. */
1453 /* There was a breakpoint, stop but don't print. */
1456 /* There was a breakpoint, stop and print. */
1459 /* We hit the longjmp breakpoint. */
1462 /* We hit the longjmp_resume breakpoint. */
1465 /* We hit the step_resume breakpoint. */
1468 /* We hit the through_sigtramp breakpoint. */
1471 /* This is just used to count how many enums there are. */
1475 /* Here is the table which drives this routine. So that we can
1476 format it pretty, we define some abbreviations for the
1477 enum bpstat_what codes. */
1478 #define keep_c BPSTAT_WHAT_KEEP_CHECKING
1479 #define stop_s BPSTAT_WHAT_STOP_SILENT
1480 #define stop_n BPSTAT_WHAT_STOP_NOISY
1481 #define single BPSTAT_WHAT_SINGLE
1482 #define setlr BPSTAT_WHAT_SET_LONGJMP_RESUME
1483 #define clrlr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
1484 #define clrlrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
1485 #define sr BPSTAT_WHAT_STEP_RESUME
1486 #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
1488 /* "Can't happen." Might want to print an error message.
1489 abort() is not out of the question, but chances are GDB is just
1490 a bit confused, not unusable. */
1491 #define err BPSTAT_WHAT_STOP_NOISY
1493 /* Given an old action and a class, come up with a new action. */
1494 /* One interesting property of this table is that wp_silent is the same
1495 as bp_silent and wp_noisy is the same as bp_noisy. That is because
1496 after stopping, the check for whether to step over a breakpoint
1497 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
1498 reference to how we stopped. We retain separate wp_silent and bp_silent
1499 codes in case we want to change that someday. */
1501 /* step_resume entries: a step resume breakpoint overrides another
1502 breakpoint of signal handling (see comment in wait_for_inferior
1503 at first IN_SIGTRAMP where we set the step_resume breakpoint). */
1504 /* We handle the through_sigtramp_breakpoint the same way; having both
1505 one of those and a step_resume_breakpoint is probably very rare (?). */
1507 static const enum bpstat_what_main_action
1508 table[(int)class_last][(int)BPSTAT_WHAT_LAST] =
1511 /* keep_c stop_s stop_n single setlr clrlr clrlrs sr ts
1513 /*no_effect*/ {keep_c,stop_s,stop_n,single, setlr , clrlr , clrlrs, sr, ts},
1514 /*wp_silent*/ {stop_s,stop_s,stop_n,stop_s, stop_s, stop_s, stop_s, sr, ts},
1515 /*wp_noisy*/ {stop_n,stop_n,stop_n,stop_n, stop_n, stop_n, stop_n, sr, ts},
1516 /*bp_nostop*/ {single,stop_s,stop_n,single, setlr , clrlrs, clrlrs, sr, ts},
1517 /*bp_silent*/ {stop_s,stop_s,stop_n,stop_s, stop_s, stop_s, stop_s, sr, ts},
1518 /*bp_noisy*/ {stop_n,stop_n,stop_n,stop_n, stop_n, stop_n, stop_n, sr, ts},
1519 /*long_jump*/ {setlr ,stop_s,stop_n,setlr , err , err , err , sr, ts},
1520 /*long_resume*/ {clrlr ,stop_s,stop_n,clrlrs, err , err , err , sr, ts},
1521 /*step_resume*/ {sr ,sr ,sr ,sr , sr , sr , sr , sr, ts},
1522 /*through_sig*/ {ts ,ts ,ts ,ts , ts , ts , ts , ts, ts}
1534 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
1535 struct bpstat_what retval;
1537 retval.call_dummy = 0;
1538 for (; bs != NULL; bs = bs->next)
1540 enum class bs_class = no_effect;
1541 if (bs->breakpoint_at == NULL)
1542 /* I suspect this can happen if it was a momentary breakpoint
1543 which has since been deleted. */
1545 switch (bs->breakpoint_at->type)
1548 case bp_hardware_breakpoint:
1554 bs_class = bp_noisy;
1556 bs_class = bp_silent;
1559 bs_class = bp_nostop;
1562 case bp_hardware_watchpoint:
1563 case bp_read_watchpoint:
1564 case bp_access_watchpoint:
1568 bs_class = wp_noisy;
1570 bs_class = wp_silent;
1573 /* There was a watchpoint, but we're not stopping. This requires
1574 no further action. */
1575 bs_class = no_effect;
1578 bs_class = long_jump;
1580 case bp_longjmp_resume:
1581 bs_class = long_resume;
1583 case bp_step_resume:
1586 bs_class = step_resume;
1589 /* It is for the wrong frame. */
1590 bs_class = bp_nostop;
1592 case bp_through_sigtramp:
1593 bs_class = through_sig;
1595 case bp_watchpoint_scope:
1596 bs_class = bp_nostop;
1600 /* Make sure the action is stop (silent or noisy), so infrun.c
1601 pops the dummy frame. */
1602 bs_class = bp_silent;
1603 retval.call_dummy = 1;
1606 current_action = table[(int)bs_class][(int)current_action];
1608 retval.main_action = current_action;
1612 /* Nonzero if we should step constantly (e.g. watchpoints on machines
1613 without hardware support). This isn't related to a specific bpstat,
1614 just to things like whether watchpoints are set. */
1617 bpstat_should_step ()
1619 struct breakpoint *b;
1621 if (b->enable == enabled && b->type == bp_watchpoint)
1626 /* Print information on breakpoint number BNUM, or -1 if all.
1627 If WATCHPOINTS is zero, process only breakpoints; if WATCHPOINTS
1628 is nonzero, process only watchpoints. */
1631 breakpoint_1 (bnum, allflag)
1635 register struct breakpoint *b;
1636 register struct command_line *l;
1637 register struct symbol *sym;
1638 CORE_ADDR last_addr = (CORE_ADDR)-1;
1639 int found_a_breakpoint = 0;
1640 static char *bptypes[] = {"breakpoint", "hw breakpoint",
1641 "until", "finish", "watchpoint",
1642 "hw watchpoint", "read watchpoint",
1643 "acc watchpoint", "longjmp",
1644 "longjmp resume", "step resume",
1645 "watchpoint scope", "call dummy" };
1646 static char *bpdisps[] = {"del", "dis", "keep"};
1647 static char bpenables[] = "ny";
1648 char wrap_indent[80];
1652 || bnum == b->number)
1654 /* We only print out user settable breakpoints unless the allflag is set. */
1656 && b->type != bp_breakpoint
1657 && b->type != bp_hardware_breakpoint
1658 && b->type != bp_watchpoint
1659 && b->type != bp_read_watchpoint
1660 && b->type != bp_access_watchpoint
1661 && b->type != bp_hardware_watchpoint)
1664 if (!found_a_breakpoint++)
1666 annotate_breakpoints_headers ();
1669 printf_filtered ("Num ");
1671 printf_filtered ("Type ");
1673 printf_filtered ("Disp ");
1675 printf_filtered ("Enb ");
1679 printf_filtered ("Address ");
1682 printf_filtered ("What\n");
1684 annotate_breakpoints_table ();
1689 printf_filtered ("%-3d ", b->number);
1691 printf_filtered ("%-14s ", bptypes[(int)b->type]);
1693 printf_filtered ("%-4s ", bpdisps[(int)b->disposition]);
1695 printf_filtered ("%-3c ", bpenables[(int)b->enable]);
1697 strcpy (wrap_indent, " ");
1699 strcat (wrap_indent, " ");
1703 case bp_hardware_watchpoint:
1704 case bp_read_watchpoint:
1705 case bp_access_watchpoint:
1706 /* Field 4, the address, is omitted (which makes the columns
1707 not line up too nicely with the headers, but the effect
1708 is relatively readable). */
1710 print_expression (b->exp, gdb_stdout);
1714 case bp_hardware_breakpoint:
1718 case bp_longjmp_resume:
1719 case bp_step_resume:
1720 case bp_through_sigtramp:
1721 case bp_watchpoint_scope:
1726 /* FIXME-32x64: need a print_address_numeric with
1730 local_hex_string_custom
1731 ((unsigned long) b->address, "08l"));
1736 last_addr = b->address;
1739 sym = find_pc_function (b->address);
1742 fputs_filtered ("in ", gdb_stdout);
1743 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
1744 wrap_here (wrap_indent);
1745 fputs_filtered (" at ", gdb_stdout);
1747 fputs_filtered (b->source_file, gdb_stdout);
1748 printf_filtered (":%d", b->line_number);
1751 print_address_symbolic (b->address, gdb_stdout, demangle, " ");
1755 printf_filtered ("\n");
1761 printf_filtered ("\tstop only in stack frame at ");
1762 print_address_numeric (b->frame, 1, gdb_stdout);
1763 printf_filtered ("\n");
1770 printf_filtered ("\tstop only if ");
1771 print_expression (b->cond, gdb_stdout);
1772 printf_filtered ("\n");
1775 if (show_breakpoint_hit_counts && b->hit_count)
1777 /* FIXME should make an annotation for this */
1779 printf_filtered ("\tbreakpoint already hit %d time%s\n",
1780 b->hit_count, (b->hit_count == 1 ? "" : "s"));
1783 if (b->ignore_count)
1787 printf_filtered ("\tignore next %d hits\n", b->ignore_count);
1790 if ((l = b->commands))
1796 print_command_line (l, 4);
1802 if (!found_a_breakpoint)
1805 printf_filtered ("No breakpoints or watchpoints.\n");
1807 printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
1810 /* Compare against (CORE_ADDR)-1 in case some compiler decides
1811 that a comparison of an unsigned with -1 is always false. */
1812 if (last_addr != (CORE_ADDR)-1)
1813 set_next_address (last_addr);
1815 annotate_breakpoints_table_end ();
1820 breakpoints_info (bnum_exp, from_tty)
1827 bnum = parse_and_eval_address (bnum_exp);
1829 breakpoint_1 (bnum, 0);
1832 #if MAINTENANCE_CMDS
1836 maintenance_info_breakpoints (bnum_exp, from_tty)
1843 bnum = parse_and_eval_address (bnum_exp);
1845 breakpoint_1 (bnum, 1);
1850 /* Print a message describing any breakpoints set at PC. */
1853 describe_other_breakpoints (pc)
1854 register CORE_ADDR pc;
1856 register int others = 0;
1857 register struct breakpoint *b;
1860 if (b->address == pc)
1864 printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
1866 if (b->address == pc)
1872 (b->enable == disabled) ? " (disabled)" : "",
1873 (others > 1) ? "," : ((others == 1) ? " and" : ""));
1875 printf_filtered ("also set at pc ");
1876 print_address_numeric (pc, 1, gdb_stdout);
1877 printf_filtered (".\n");
1881 /* Set the default place to put a breakpoint
1882 for the `break' command with no arguments. */
1885 set_default_breakpoint (valid, addr, symtab, line)
1888 struct symtab *symtab;
1891 default_breakpoint_valid = valid;
1892 default_breakpoint_address = addr;
1893 default_breakpoint_symtab = symtab;
1894 default_breakpoint_line = line;
1897 /* Rescan breakpoints at address ADDRESS,
1898 marking the first one as "first" and any others as "duplicates".
1899 This is so that the bpt instruction is only inserted once. */
1902 check_duplicates (address)
1905 register struct breakpoint *b;
1906 register int count = 0;
1908 if (address == 0) /* Watchpoints are uninteresting */
1912 if (b->enable != disabled && b->address == address)
1915 b->duplicate = count > 1;
1919 /* Low level routine to set a breakpoint.
1920 Takes as args the three things that every breakpoint must have.
1921 Returns the breakpoint object so caller can set other things.
1922 Does not set the breakpoint number!
1923 Does not print anything.
1925 ==> This routine should not be called if there is a chance of later
1926 error(); otherwise it leaves a bogus breakpoint on the chain. Validate
1927 your arguments BEFORE calling this routine! */
1929 static struct breakpoint *
1930 set_raw_breakpoint (sal)
1931 struct symtab_and_line sal;
1933 register struct breakpoint *b, *b1;
1935 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
1936 memset (b, 0, sizeof (*b));
1937 b->address = sal.pc;
1938 if (sal.symtab == NULL)
1939 b->source_file = NULL;
1941 b->source_file = savestring (sal.symtab->filename,
1942 strlen (sal.symtab->filename));
1943 b->language = current_language->la_language;
1944 b->input_radix = input_radix;
1946 b->line_number = sal.line;
1947 b->enable = enabled;
1950 b->ignore_count = 0;
1954 /* Add this breakpoint to the end of the chain
1955 so that a list of breakpoints will come out in order
1956 of increasing numbers. */
1958 b1 = breakpoint_chain;
1960 breakpoint_chain = b;
1968 check_duplicates (sal.pc);
1969 breakpoints_changed ();
1975 create_longjmp_breakpoint(func_name)
1978 struct symtab_and_line sal;
1979 struct breakpoint *b;
1980 static int internal_breakpoint_number = -1;
1982 if (func_name != NULL)
1984 struct minimal_symbol *m;
1986 m = lookup_minimal_symbol(func_name, (struct objfile *)NULL);
1988 sal.pc = SYMBOL_VALUE_ADDRESS (m);
1998 b = set_raw_breakpoint(sal);
2001 b->type = func_name != NULL ? bp_longjmp : bp_longjmp_resume;
2002 b->disposition = donttouch;
2003 b->enable = disabled;
2006 b->addr_string = strsave(func_name);
2007 b->number = internal_breakpoint_number--;
2010 /* Call this routine when stepping and nexting to enable a breakpoint if we do
2011 a longjmp(). When we hit that breakpoint, call
2012 set_longjmp_resume_breakpoint() to figure out where we are going. */
2015 enable_longjmp_breakpoint()
2017 register struct breakpoint *b;
2020 if (b->type == bp_longjmp)
2022 b->enable = enabled;
2023 check_duplicates (b->address);
2028 disable_longjmp_breakpoint()
2030 register struct breakpoint *b;
2033 if ( b->type == bp_longjmp
2034 || b->type == bp_longjmp_resume)
2036 b->enable = disabled;
2037 check_duplicates (b->address);
2042 hw_breakpoint_used_count()
2044 register struct breakpoint *b;
2049 if (b->type == bp_hardware_breakpoint && b->enable == enabled)
2057 hw_watchpoint_used_count(type, other_type_used)
2059 int *other_type_used;
2061 register struct breakpoint *b;
2064 *other_type_used = 0;
2067 if (b->enable == enabled)
2069 if (b->type == type) i++;
2070 else if ((b->type == bp_hardware_watchpoint ||
2071 b->type == bp_read_watchpoint ||
2072 b->type == bp_access_watchpoint)
2073 && b->enable == enabled)
2074 *other_type_used = 1;
2080 /* Call this after hitting the longjmp() breakpoint. Use this to set a new
2081 breakpoint at the target of the jmp_buf.
2083 FIXME - This ought to be done by setting a temporary breakpoint that gets
2084 deleted automatically...
2088 set_longjmp_resume_breakpoint(pc, frame)
2090 struct frame_info *frame;
2092 register struct breakpoint *b;
2095 if (b->type == bp_longjmp_resume)
2098 b->enable = enabled;
2100 b->frame = frame->frame;
2103 check_duplicates (b->address);
2108 /* Set a breakpoint that will evaporate an end of command
2109 at address specified by SAL.
2110 Restrict it to frame FRAME if FRAME is nonzero. */
2113 set_momentary_breakpoint (sal, frame, type)
2114 struct symtab_and_line sal;
2115 struct frame_info *frame;
2118 register struct breakpoint *b;
2119 b = set_raw_breakpoint (sal);
2121 b->enable = enabled;
2122 b->disposition = donttouch;
2123 b->frame = (frame ? frame->frame : 0);
2129 clear_momentary_breakpoints ()
2131 register struct breakpoint *b;
2133 if (b->disposition == delete)
2135 delete_breakpoint (b);
2141 /* Tell the user we have just set a breakpoint B. */
2145 struct breakpoint *b;
2149 /* FIXME: This is misplaced; mention() is called by things (like hitting a
2150 watchpoint) other than breakpoint creation. It should be possible to
2151 clean this up and at the same time replace the random calls to
2152 breakpoint_changed with this hook, as has already been done for
2153 delete_breakpoint_hook and so on. */
2154 if (create_breakpoint_hook)
2155 create_breakpoint_hook (b);
2160 printf_filtered ("Watchpoint %d: ", b->number);
2161 print_expression (b->exp, gdb_stdout);
2163 case bp_hardware_watchpoint:
2164 printf_filtered ("Hardware watchpoint %d: ", b->number);
2165 print_expression (b->exp, gdb_stdout);
2167 case bp_read_watchpoint:
2168 printf_filtered ("Hardware read watchpoint %d: ", b->number);
2169 print_expression (b->exp, gdb_stdout);
2171 case bp_access_watchpoint:
2172 printf_filtered ("Hardware access(read/write) watchpoint %d: ",b->number);
2173 print_expression (b->exp, gdb_stdout);
2176 printf_filtered ("Breakpoint %d", b->number);
2179 case bp_hardware_breakpoint:
2180 printf_filtered ("Hardware assisted breakpoint %d", b->number);
2186 case bp_longjmp_resume:
2187 case bp_step_resume:
2188 case bp_through_sigtramp:
2190 case bp_watchpoint_scope:
2195 if (addressprint || b->source_file == NULL)
2197 printf_filtered (" at ");
2198 print_address_numeric (b->address, 1, gdb_stdout);
2201 printf_filtered (": file %s, line %d.",
2202 b->source_file, b->line_number);
2204 printf_filtered ("\n");
2208 /* Nobody calls this currently. */
2209 /* Set a breakpoint from a symtab and line.
2210 If TEMPFLAG is nonzero, it is a temporary breakpoint.
2211 ADDR_STRING is a malloc'd string holding the name of where we are
2212 setting the breakpoint. This is used later to re-set it after the
2213 program is relinked and symbols are reloaded.
2214 Print the same confirmation messages that the breakpoint command prints. */
2217 set_breakpoint (s, line, tempflag, addr_string)
2223 register struct breakpoint *b;
2224 struct symtab_and_line sal;
2229 resolve_sal_pc (&sal); /* Might error out */
2230 describe_other_breakpoints (sal.pc);
2232 b = set_raw_breakpoint (sal);
2233 set_breakpoint_count (breakpoint_count + 1);
2234 b->number = breakpoint_count;
2235 b->type = bp_breakpoint;
2237 b->addr_string = addr_string;
2238 b->enable = enabled;
2239 b->disposition = tempflag ? delete : donttouch;
2245 /* Set a breakpoint according to ARG (function, linenum or *address)
2246 flag: first bit : 0 non-temporary, 1 temporary.
2247 second bit : 0 normal breakpoint, 1 hardware breakpoint. */
2250 break_command_1 (arg, flag, from_tty)
2254 int tempflag, hardwareflag;
2255 struct symtabs_and_lines sals;
2256 struct symtab_and_line sal;
2257 register struct expression *cond = 0;
2258 register struct breakpoint *b;
2260 /* Pointers in arg to the start, and one past the end, of the condition. */
2261 char *cond_start = NULL;
2262 char *cond_end = NULL;
2263 /* Pointers in arg to the start, and one past the end,
2264 of the address part. */
2265 char *addr_start = NULL;
2266 char *addr_end = NULL;
2267 struct cleanup *old_chain;
2268 struct cleanup *canonical_strings_chain = NULL;
2269 char **canonical = (char **)NULL;
2273 hardwareflag = flag & 2;
2274 tempflag = flag & 1;
2279 sal.line = sal.pc = sal.end = 0;
2282 /* If no arg given, or if first arg is 'if ', use the default breakpoint. */
2284 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
2285 && (arg[2] == ' ' || arg[2] == '\t')))
2287 if (default_breakpoint_valid)
2289 sals.sals = (struct symtab_and_line *)
2290 xmalloc (sizeof (struct symtab_and_line));
2291 sal.pc = default_breakpoint_address;
2292 sal.line = default_breakpoint_line;
2293 sal.symtab = default_breakpoint_symtab;
2298 error ("No default breakpoint address now.");
2304 /* Force almost all breakpoints to be in terms of the
2305 current_source_symtab (which is decode_line_1's default). This
2306 should produce the results we want almost all of the time while
2307 leaving default_breakpoint_* alone. */
2308 if (default_breakpoint_valid
2309 && (!current_source_symtab
2310 || (arg && (*arg == '+' || *arg == '-'))))
2311 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
2312 default_breakpoint_line, &canonical);
2314 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0, &canonical);
2322 /* Make sure that all storage allocated in decode_line_1 gets freed in case
2323 the following `for' loop errors out. */
2324 old_chain = make_cleanup (free, sals.sals);
2325 if (canonical != (char **)NULL)
2327 make_cleanup (free, canonical);
2328 canonical_strings_chain = make_cleanup (null_cleanup, 0);
2329 for (i = 0; i < sals.nelts; i++)
2331 if (canonical[i] != NULL)
2332 make_cleanup (free, canonical[i]);
2336 thread = -1; /* No specific thread yet */
2338 /* Resolve all line numbers to PC's, and verify that conditions
2339 can be parsed, before setting any breakpoints. */
2340 for (i = 0; i < sals.nelts; i++)
2342 char *tok, *end_tok;
2345 resolve_sal_pc (&sals.sals[i]);
2351 while (*tok == ' ' || *tok == '\t')
2356 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
2359 toklen = end_tok - tok;
2361 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
2363 tok = cond_start = end_tok + 1;
2364 cond = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
2367 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
2373 thread = strtol (tok, &tok, 0);
2375 error ("Junk after thread keyword.");
2376 if (!valid_thread_id (thread))
2377 error ("Unknown thread %d\n", thread);
2380 error ("Junk at end of arguments.");
2385 int i, target_resources_ok;
2387 i = hw_breakpoint_used_count ();
2388 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
2389 bp_hardware_breakpoint, i + sals.nelts, 0);
2390 if (target_resources_ok == 0)
2391 error ("No hardware breakpoint support in the target.");
2392 else if (target_resources_ok < 0)
2393 error ("Hardware breakpoints used exceeds limit.");
2396 /* Remove the canonical strings from the cleanup, they are needed below. */
2397 if (canonical != (char **)NULL)
2398 discard_cleanups (canonical_strings_chain);
2400 /* Now set all the breakpoints. */
2401 for (i = 0; i < sals.nelts; i++)
2406 describe_other_breakpoints (sal.pc);
2408 b = set_raw_breakpoint (sal);
2409 set_breakpoint_count (breakpoint_count + 1);
2410 b->number = breakpoint_count;
2411 b->type = hardwareflag ? bp_hardware_breakpoint : bp_breakpoint;
2415 /* If a canonical line spec is needed use that instead of the
2417 if (canonical != (char **)NULL && canonical[i] != NULL)
2418 b->addr_string = canonical[i];
2419 else if (addr_start)
2420 b->addr_string = savestring (addr_start, addr_end - addr_start);
2422 b->cond_string = savestring (cond_start, cond_end - cond_start);
2424 b->enable = enabled;
2425 b->disposition = tempflag ? delete : donttouch;
2432 printf_filtered ("Multiple breakpoints were set.\n");
2433 printf_filtered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
2435 do_cleanups (old_chain);
2438 /* Helper function for break_command_1 and disassemble_command. */
2441 resolve_sal_pc (sal)
2442 struct symtab_and_line *sal;
2446 if (sal->pc == 0 && sal->symtab != 0)
2448 pc = find_line_pc (sal->symtab, sal->line);
2450 error ("No line %d in file \"%s\".",
2451 sal->line, sal->symtab->filename);
2456 #define BP_TEMPFLAG 1
2457 #define BP_HARDWAREFLAG 2
2459 break_command (arg, from_tty)
2463 break_command_1 (arg, 0, from_tty);
2467 tbreak_command (arg, from_tty)
2471 break_command_1 (arg, BP_TEMPFLAG, from_tty);
2475 hbreak_command (arg, from_tty)
2479 break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
2483 thbreak_command (arg, from_tty)
2487 break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
2491 /* accessflag: 0: watch write, 1: watch read, 2: watch access(read or write)
2494 watch_command_1 (arg, accessflag, from_tty)
2499 struct breakpoint *b;
2500 struct symtab_and_line sal;
2501 struct expression *exp;
2502 struct block *exp_valid_block;
2503 struct value *val, *mark;
2504 struct frame_info *frame, *prev_frame;
2505 char *exp_start = NULL;
2506 char *exp_end = NULL;
2507 char *tok, *end_tok;
2509 char *cond_start = NULL;
2510 char *cond_end = NULL;
2511 struct expression *cond = NULL;
2512 int i, other_type_used, target_resources_ok;
2513 enum bptype bp_type;
2520 /* Parse arguments. */
2521 innermost_block = NULL;
2523 exp = parse_exp_1 (&arg, 0, 0);
2525 exp_valid_block = innermost_block;
2526 mark = value_mark ();
2527 val = evaluate_expression (exp);
2528 release_value (val);
2529 if (VALUE_LAZY (val))
2530 value_fetch_lazy (val);
2533 while (*tok == ' ' || *tok == '\t')
2537 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
2540 toklen = end_tok - tok;
2541 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
2543 tok = cond_start = end_tok + 1;
2544 cond = parse_exp_1 (&tok, 0, 0);
2548 error("Junk at end of command.");
2550 if (accessflag == 1) bp_type = bp_read_watchpoint;
2551 else if (accessflag == 2) bp_type = bp_access_watchpoint;
2552 else bp_type = bp_hardware_watchpoint;
2554 mem_cnt = can_use_hardware_watchpoint (val);
2555 if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
2556 error ("Expression cannot be implemented with read/access watchpoint.");
2558 i = hw_watchpoint_used_count (bp_type, &other_type_used);
2559 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT(
2560 bp_type, i + mem_cnt, other_type_used);
2561 if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
2562 error ("Target does not have this type of hardware watchpoint support.");
2563 if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
2564 error ("Target resources have been allocated for other types of watchpoints.");
2567 /* Now set up the breakpoint. */
2568 b = set_raw_breakpoint (sal);
2569 set_breakpoint_count (breakpoint_count + 1);
2570 b->number = breakpoint_count;
2571 b->disposition = donttouch;
2573 b->exp_valid_block = exp_valid_block;
2574 b->exp_string = savestring (exp_start, exp_end - exp_start);
2578 b->cond_string = savestring (cond_start, cond_end - cond_start);
2582 frame = block_innermost_frame (exp_valid_block);
2585 prev_frame = get_prev_frame (frame);
2586 b->watchpoint_frame = frame->frame;
2589 b->watchpoint_frame = (CORE_ADDR)0;
2591 if (mem_cnt && target_resources_ok > 0)
2594 b->type = bp_watchpoint;
2596 /* If the expression is "local", then set up a "watchpoint scope"
2597 breakpoint at the point where we've left the scope of the watchpoint
2599 if (innermost_block)
2601 struct breakpoint *scope_breakpoint;
2602 struct symtab_and_line scope_sal;
2606 scope_sal.pc = get_frame_pc (prev_frame);
2607 scope_sal.symtab = NULL;
2610 scope_breakpoint = set_raw_breakpoint (scope_sal);
2611 set_breakpoint_count (breakpoint_count + 1);
2612 scope_breakpoint->number = breakpoint_count;
2614 scope_breakpoint->type = bp_watchpoint_scope;
2615 scope_breakpoint->enable = enabled;
2617 /* Automatically delete the breakpoint when it hits. */
2618 scope_breakpoint->disposition = delete;
2620 /* Only break in the proper frame (help with recursion). */
2621 scope_breakpoint->frame = prev_frame->frame;
2623 /* Set the address at which we will stop. */
2624 scope_breakpoint->address = get_frame_pc (prev_frame);
2626 /* The scope breakpoint is related to the watchpoint. We
2627 will need to act on them together. */
2628 b->related_breakpoint = scope_breakpoint;
2631 value_free_to_mark (mark);
2635 /* Return count of locations need to be watched and can be handled
2636 in hardware. If the watchpoint can not be handled
2637 in hardware return zero. */
2640 can_use_hardware_watchpoint (v)
2643 int found_memory_cnt = 0;
2645 /* Make sure all the intermediate values are in memory. Also make sure
2646 we found at least one memory expression. Guards against watch 0x12345,
2647 which is meaningless, but could cause errors if one tries to insert a
2648 hardware watchpoint for the constant expression. */
2649 for ( ; v; v = v->next)
2651 if (v->lval == lval_memory)
2653 if (TYPE_LENGTH (VALUE_TYPE (v)) <= REGISTER_SIZE)
2656 else if (v->lval != not_lval && v->modifiable == 0)
2660 /* The expression itself looks suitable for using a hardware
2661 watchpoint, but give the target machine a chance to reject it. */
2662 return found_memory_cnt;
2665 static void watch_command (arg, from_tty)
2669 watch_command_1 (arg, 0, from_tty);
2672 static void rwatch_command (arg, from_tty)
2676 watch_command_1 (arg, 1, from_tty);
2679 static void awatch_command (arg, from_tty)
2683 watch_command_1 (arg, 2, from_tty);
2687 /* Helper routine for the until_command routine in infcmd.c. Here
2688 because it uses the mechanisms of breakpoints. */
2692 until_break_command (arg, from_tty)
2696 struct symtabs_and_lines sals;
2697 struct symtab_and_line sal;
2698 struct frame_info *prev_frame = get_prev_frame (selected_frame);
2699 struct breakpoint *breakpoint;
2700 struct cleanup *old_chain;
2702 clear_proceed_status ();
2704 /* Set a breakpoint where the user wants it and at return from
2707 if (default_breakpoint_valid)
2708 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
2709 default_breakpoint_line, (char ***)NULL);
2711 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0, (char ***)NULL);
2713 if (sals.nelts != 1)
2714 error ("Couldn't get information on specified line.");
2717 free ((PTR)sals.sals); /* malloc'd, so freed */
2720 error ("Junk at end of arguments.");
2722 resolve_sal_pc (&sal);
2724 breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
2726 old_chain = make_cleanup(delete_breakpoint, breakpoint);
2728 /* Keep within the current frame */
2732 sal = find_pc_line (prev_frame->pc, 0);
2733 sal.pc = prev_frame->pc;
2734 breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
2735 make_cleanup(delete_breakpoint, breakpoint);
2738 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
2739 do_cleanups(old_chain);
2743 /* These aren't used; I don't konw what they were for. */
2744 /* Set a breakpoint at the catch clause for NAME. */
2746 catch_breakpoint (name)
2752 disable_catch_breakpoint ()
2757 delete_catch_breakpoint ()
2762 enable_catch_breakpoint ()
2769 struct sal_chain *next;
2770 struct symtab_and_line sal;
2774 /* This isn't used; I don't know what it was for. */
2775 /* For each catch clause identified in ARGS, run FUNCTION
2776 with that clause as an argument. */
2777 static struct symtabs_and_lines
2778 map_catch_names (args, function)
2782 register char *p = args;
2784 struct symtabs_and_lines sals;
2786 struct sal_chain *sal_chain = 0;
2790 error_no_arg ("one or more catch names");
2798 /* Don't swallow conditional part. */
2799 if (p1[0] == 'i' && p1[1] == 'f'
2800 && (p1[2] == ' ' || p1[2] == '\t'))
2806 while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
2810 if (*p1 && *p1 != ' ' && *p1 != '\t')
2811 error ("Arguments must be catch names.");
2817 struct sal_chain *next
2818 = (struct sal_chain *)alloca (sizeof (struct sal_chain));
2819 next->next = sal_chain;
2820 next->sal = get_catch_sal (p);
2825 printf_unfiltered ("No catch clause for exception %s.\n", p);
2830 while (*p == ' ' || *p == '\t') p++;
2835 /* This shares a lot of code with `print_frame_label_vars' from stack.c. */
2837 static struct symtabs_and_lines
2838 get_catch_sals (this_level_only)
2839 int this_level_only;
2841 register struct blockvector *bl;
2842 register struct block *block;
2843 int index, have_default = 0;
2845 struct symtabs_and_lines sals;
2846 struct sal_chain *sal_chain = 0;
2847 char *blocks_searched;
2849 /* Not sure whether an error message is always the correct response,
2850 but it's better than a core dump. */
2851 if (selected_frame == NULL)
2852 error ("No selected frame.");
2853 block = get_frame_block (selected_frame);
2854 pc = selected_frame->pc;
2860 error ("No symbol table info available.\n");
2862 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
2863 blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
2864 memset (blocks_searched, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
2868 CORE_ADDR end = BLOCK_END (block) - 4;
2871 if (bl != blockvector_for_pc (end, &index))
2872 error ("blockvector blotch");
2873 if (BLOCKVECTOR_BLOCK (bl, index) != block)
2874 error ("blockvector botch");
2875 last_index = BLOCKVECTOR_NBLOCKS (bl);
2878 /* Don't print out blocks that have gone by. */
2879 while (index < last_index
2880 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
2883 while (index < last_index
2884 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
2886 if (blocks_searched[index] == 0)
2888 struct block *b = BLOCKVECTOR_BLOCK (bl, index);
2891 register struct symbol *sym;
2893 nsyms = BLOCK_NSYMS (b);
2895 for (i = 0; i < nsyms; i++)
2897 sym = BLOCK_SYM (b, i);
2898 if (STREQ (SYMBOL_NAME (sym), "default"))
2904 if (SYMBOL_CLASS (sym) == LOC_LABEL)
2906 struct sal_chain *next = (struct sal_chain *)
2907 alloca (sizeof (struct sal_chain));
2908 next->next = sal_chain;
2909 next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
2913 blocks_searched[index] = 1;
2919 if (sal_chain && this_level_only)
2922 /* After handling the function's top-level block, stop.
2923 Don't continue to its superblock, the block of
2924 per-file symbols. */
2925 if (BLOCK_FUNCTION (block))
2927 block = BLOCK_SUPERBLOCK (block);
2932 struct sal_chain *tmp_chain;
2934 /* Count the number of entries. */
2935 for (index = 0, tmp_chain = sal_chain; tmp_chain;
2936 tmp_chain = tmp_chain->next)
2940 sals.sals = (struct symtab_and_line *)
2941 xmalloc (index * sizeof (struct symtab_and_line));
2942 for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
2943 sals.sals[index] = sal_chain->sal;
2949 /* Commands to deal with catching exceptions. */
2952 catch_command_1 (arg, tempflag, from_tty)
2957 /* First, translate ARG into something we can deal with in terms
2960 struct symtabs_and_lines sals;
2961 struct symtab_and_line sal;
2962 register struct expression *cond = 0;
2963 register struct breakpoint *b;
2967 sal.line = sal.pc = sal.end = 0;
2970 /* If no arg given, or if first arg is 'if ', all active catch clauses
2971 are breakpointed. */
2973 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
2974 && (arg[2] == ' ' || arg[2] == '\t')))
2976 /* Grab all active catch clauses. */
2977 sals = get_catch_sals (0);
2981 /* Grab selected catch clauses. */
2982 error ("catch NAME not implemented");
2984 /* This isn't used; I don't know what it was for. */
2985 sals = map_catch_names (arg, catch_breakpoint);
2993 for (i = 0; i < sals.nelts; i++)
2995 resolve_sal_pc (&sals.sals[i]);
2999 if (arg[0] == 'i' && arg[1] == 'f'
3000 && (arg[2] == ' ' || arg[2] == '\t'))
3001 cond = parse_exp_1 ((arg += 2, &arg),
3002 block_for_pc (sals.sals[i].pc), 0);
3004 error ("Junk at end of arguments.");
3009 for (i = 0; i < sals.nelts; i++)
3014 describe_other_breakpoints (sal.pc);
3016 b = set_raw_breakpoint (sal);
3017 set_breakpoint_count (breakpoint_count + 1);
3018 b->number = breakpoint_count;
3019 b->type = bp_breakpoint;
3021 b->enable = enabled;
3022 b->disposition = tempflag ? delete : donttouch;
3029 printf_unfiltered ("Multiple breakpoints were set.\n");
3030 printf_unfiltered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
3032 free ((PTR)sals.sals);
3036 /* These aren't used; I don't know what they were for. */
3037 /* Disable breakpoints on all catch clauses described in ARGS. */
3039 disable_catch (args)
3042 /* Map the disable command to catch clauses described in ARGS. */
3045 /* Enable breakpoints on all catch clauses described in ARGS. */
3050 /* Map the disable command to catch clauses described in ARGS. */
3053 /* Delete breakpoints on all catch clauses in the active scope. */
3058 /* Map the delete command to catch clauses described in ARGS. */
3063 catch_command (arg, from_tty)
3067 catch_command_1 (arg, 0, from_tty);
3071 clear_command (arg, from_tty)
3075 register struct breakpoint *b, *b1;
3076 struct symtabs_and_lines sals;
3077 struct symtab_and_line sal;
3078 register struct breakpoint *found;
3083 sals = decode_line_spec (arg, 1);
3087 sals.sals = (struct symtab_and_line *) xmalloc (sizeof (struct symtab_and_line));
3088 sal.line = default_breakpoint_line;
3089 sal.symtab = default_breakpoint_symtab;
3091 if (sal.symtab == 0)
3092 error ("No source file specified.");
3098 for (i = 0; i < sals.nelts; i++)
3100 /* If exact pc given, clear bpts at that pc.
3101 But if sal.pc is zero, clear all bpts on specified line. */
3103 found = (struct breakpoint *) 0;
3104 while (breakpoint_chain
3106 ? breakpoint_chain->address == sal.pc
3107 : (breakpoint_chain->source_file != NULL
3108 && sal.symtab != NULL
3109 && STREQ (breakpoint_chain->source_file,
3110 sal.symtab->filename)
3111 && breakpoint_chain->line_number == sal.line)))
3113 b1 = breakpoint_chain;
3114 breakpoint_chain = b1->next;
3121 && b->next->type != bp_watchpoint
3122 && b->next->type != bp_hardware_watchpoint
3123 && b->next->type != bp_read_watchpoint
3124 && b->next->type != bp_access_watchpoint
3126 ? b->next->address == sal.pc
3127 : (b->next->source_file != NULL
3128 && sal.symtab != NULL
3129 && STREQ (b->next->source_file, sal.symtab->filename)
3130 && b->next->line_number == sal.line)))
3141 error ("No breakpoint at %s.", arg);
3143 error ("No breakpoint at this line.");
3146 if (found->next) from_tty = 1; /* Always report if deleted more than one */
3147 if (from_tty) printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
3148 breakpoints_changed ();
3151 if (from_tty) printf_unfiltered ("%d ", found->number);
3153 delete_breakpoint (found);
3156 if (from_tty) putchar_unfiltered ('\n');
3158 free ((PTR)sals.sals);
3161 /* Delete breakpoint in BS if they are `delete' breakpoints.
3162 This is called after any breakpoint is hit, or after errors. */
3165 breakpoint_auto_delete (bs)
3168 for (; bs; bs = bs->next)
3169 if (bs->breakpoint_at && bs->breakpoint_at->disposition == delete
3171 delete_breakpoint (bs->breakpoint_at);
3174 /* Delete a breakpoint and clean up all traces of it in the data structures. */
3177 delete_breakpoint (bpt)
3178 struct breakpoint *bpt;
3180 register struct breakpoint *b;
3183 if (delete_breakpoint_hook)
3184 delete_breakpoint_hook (bpt);
3187 remove_breakpoint (bpt);
3189 if (breakpoint_chain == bpt)
3190 breakpoint_chain = bpt->next;
3195 b->next = bpt->next;
3199 check_duplicates (bpt->address);
3200 /* If this breakpoint was inserted, and there is another breakpoint
3201 at the same address, we need to insert the other breakpoint. */
3203 && bpt->type != bp_hardware_watchpoint
3204 && bpt->type != bp_read_watchpoint
3205 && bpt->type != bp_access_watchpoint)
3208 if (b->address == bpt->address
3210 && b->enable != disabled)
3213 val = target_insert_breakpoint (b->address, b->shadow_contents);
3216 target_terminal_ours_for_output ();
3217 fprintf_unfiltered (gdb_stderr, "Cannot insert breakpoint %d:\n", b->number);
3218 memory_error (val, b->address); /* which bombs us out */
3225 free_command_lines (&bpt->commands);
3228 if (bpt->cond_string != NULL)
3229 free (bpt->cond_string);
3230 if (bpt->addr_string != NULL)
3231 free (bpt->addr_string);
3232 if (bpt->exp_string != NULL)
3233 free (bpt->exp_string);
3234 if (bpt->source_file != NULL)
3235 free (bpt->source_file);
3237 /* Be sure no bpstat's are pointing at it after it's been freed. */
3238 /* FIXME, how can we find all bpstat's?
3239 We just check stop_bpstat for now. */
3240 for (bs = stop_bpstat; bs; bs = bs->next)
3241 if (bs->breakpoint_at == bpt)
3242 bs->breakpoint_at = NULL;
3247 delete_command (arg, from_tty)
3254 /* Ask user only if there are some breakpoints to delete. */
3256 || (breakpoint_chain && query ("Delete all breakpoints? ", 0, 0)))
3258 /* No arg; clear all breakpoints. */
3259 while (breakpoint_chain)
3260 delete_breakpoint (breakpoint_chain);
3264 map_breakpoint_numbers (arg, delete_breakpoint);
3267 /* Reset a breakpoint given it's struct breakpoint * BINT.
3268 The value we return ends up being the return value from catch_errors.
3269 Unused in this case. */
3272 breakpoint_re_set_one (bint)
3275 struct breakpoint *b = (struct breakpoint *)bint; /* get past catch_errs */
3278 struct symtabs_and_lines sals;
3280 enum enable save_enable;
3285 case bp_hardware_breakpoint:
3286 if (b->addr_string == NULL)
3288 /* Anything without a string can't be re-set. */
3289 delete_breakpoint (b);
3292 /* In case we have a problem, disable this breakpoint. We'll restore
3293 its status if we succeed. */
3294 save_enable = b->enable;
3295 b->enable = disabled;
3297 set_language (b->language);
3298 input_radix = b->input_radix;
3300 sals = decode_line_1 (&s, 1, (struct symtab *)NULL, 0, (char ***)NULL);
3301 for (i = 0; i < sals.nelts; i++)
3303 resolve_sal_pc (&sals.sals[i]);
3305 /* Reparse conditions, they might contain references to the
3307 if (b->cond_string != NULL)
3311 free ((PTR)b->cond);
3312 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
3315 /* We need to re-set the breakpoint if the address changes...*/
3316 if (b->address != sals.sals[i].pc
3317 /* ...or new and old breakpoints both have source files, and
3318 the source file name or the line number changes... */
3319 || (b->source_file != NULL
3320 && sals.sals[i].symtab != NULL
3321 && (!STREQ (b->source_file, sals.sals[i].symtab->filename)
3322 || b->line_number != sals.sals[i].line)
3324 /* ...or we switch between having a source file and not having
3326 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
3329 if (b->source_file != NULL)
3330 free (b->source_file);
3331 if (sals.sals[i].symtab == NULL)
3332 b->source_file = NULL;
3335 savestring (sals.sals[i].symtab->filename,
3336 strlen (sals.sals[i].symtab->filename));
3337 b->line_number = sals.sals[i].line;
3338 b->address = sals.sals[i].pc;
3340 check_duplicates (b->address);
3344 /* Might be better to do this just once per breakpoint_re_set,
3345 rather than once for every breakpoint. */
3346 breakpoints_changed ();
3348 b->enable = save_enable; /* Restore it, this worked. */
3350 free ((PTR)sals.sals);
3354 case bp_hardware_watchpoint:
3355 case bp_read_watchpoint:
3356 case bp_access_watchpoint:
3357 innermost_block = NULL;
3358 /* The issue arises of what context to evaluate this in. The same
3359 one as when it was set, but what does that mean when symbols have
3360 been re-read? We could save the filename and functionname, but
3361 if the context is more local than that, the best we could do would
3362 be something like how many levels deep and which index at that
3363 particular level, but that's going to be less stable than filenames
3364 or functionnames. */
3365 /* So for now, just use a global context. */
3366 b->exp = parse_expression (b->exp_string);
3367 b->exp_valid_block = innermost_block;
3368 mark = value_mark ();
3369 b->val = evaluate_expression (b->exp);
3370 release_value (b->val);
3371 if (VALUE_LAZY (b->val))
3372 value_fetch_lazy (b->val);
3374 if (b->cond_string != NULL)
3377 b->cond = parse_exp_1 (&s, (struct block *)0, 0);
3379 if (b->enable == enabled)
3381 value_free_to_mark (mark);
3385 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
3390 case bp_longjmp_resume:
3391 case bp_watchpoint_scope:
3393 delete_breakpoint (b);
3400 /* Re-set all breakpoints after symbols have been re-loaded. */
3402 breakpoint_re_set ()
3404 struct breakpoint *b, *temp;
3405 enum language save_language;
3406 int save_input_radix;
3407 static char message1[] = "Error in re-setting breakpoint %d:\n";
3408 char message[sizeof (message1) + 30 /* slop */];
3410 save_language = current_language->la_language;
3411 save_input_radix = input_radix;
3412 ALL_BREAKPOINTS_SAFE (b, temp)
3414 sprintf (message, message1, b->number); /* Format possible error msg */
3415 catch_errors (breakpoint_re_set_one, (char *) b, message,
3418 set_language (save_language);
3419 input_radix = save_input_radix;
3421 create_longjmp_breakpoint("longjmp");
3422 create_longjmp_breakpoint("_longjmp");
3423 create_longjmp_breakpoint("siglongjmp");
3424 create_longjmp_breakpoint(NULL);
3427 /* Took this out (temporaliy at least), since it produces an extra
3428 blank line at startup. This messes up the gdbtests. -PB */
3429 /* Blank line to finish off all those mention() messages we just printed. */
3430 printf_filtered ("\n");
3434 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
3435 If from_tty is nonzero, it prints a message to that effect,
3436 which ends with a period (no newline). */
3439 set_ignore_count (bptnum, count, from_tty)
3440 int bptnum, count, from_tty;
3442 register struct breakpoint *b;
3448 if (b->number == bptnum)
3450 b->ignore_count = count;
3453 else if (count == 0)
3454 printf_filtered ("Will stop next time breakpoint %d is reached.",
3456 else if (count == 1)
3457 printf_filtered ("Will ignore next crossing of breakpoint %d.",
3460 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
3462 breakpoints_changed ();
3466 error ("No breakpoint number %d.", bptnum);
3469 /* Clear the ignore counts of all breakpoints. */
3471 breakpoint_clear_ignore_counts ()
3473 struct breakpoint *b;
3476 b->ignore_count = 0;
3479 /* Command to set ignore-count of breakpoint N to COUNT. */
3482 ignore_command (args, from_tty)
3490 error_no_arg ("a breakpoint number");
3492 num = get_number (&p);
3495 error ("Second argument (specified ignore-count) is missing.");
3497 set_ignore_count (num,
3498 longest_to_int (value_as_long (parse_and_eval (p))),
3500 printf_filtered ("\n");
3501 breakpoints_changed ();
3504 /* Call FUNCTION on each of the breakpoints
3505 whose numbers are given in ARGS. */
3508 map_breakpoint_numbers (args, function)
3510 void (*function) PARAMS ((struct breakpoint *));
3512 register char *p = args;
3515 register struct breakpoint *b;
3518 error_no_arg ("one or more breakpoint numbers");
3524 num = get_number (&p1);
3527 if (b->number == num)
3529 struct breakpoint *related_breakpoint = b->related_breakpoint;
3531 if (related_breakpoint)
3532 function (related_breakpoint);
3535 printf_unfiltered ("No breakpoint number %d.\n", num);
3542 enable_breakpoint (bpt)
3543 struct breakpoint *bpt;
3545 struct frame_info *save_selected_frame = NULL;
3546 int save_selected_frame_level = -1;
3547 int target_resources_ok, other_type_used;
3550 if (enable_breakpoint_hook)
3551 enable_breakpoint_hook (bpt);
3553 if (bpt->type == bp_hardware_breakpoint)
3556 i = hw_breakpoint_used_count();
3557 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT(
3558 bp_hardware_breakpoint, i+1, 0);
3559 if (target_resources_ok == 0)
3560 error ("No hardware breakpoint support in the target.");
3561 else if (target_resources_ok < 0)
3562 error ("Hardware breakpoints used exceeds limit.");
3564 bpt->enable = enabled;
3565 check_duplicates (bpt->address);
3567 if (bpt->type == bp_watchpoint || bpt->type == bp_hardware_watchpoint ||
3568 bpt->type == bp_read_watchpoint || bpt->type == bp_access_watchpoint)
3570 if (bpt->exp_valid_block != NULL)
3572 struct frame_info *fr =
3573 find_frame_addr_in_frame_chain (bpt->watchpoint_frame);
3577 Cannot enable watchpoint %d because the block in which its expression\n\
3578 is valid is not currently in scope.\n", bpt->number);
3579 bpt->enable = disabled;
3583 save_selected_frame = selected_frame;
3584 save_selected_frame_level = selected_frame_level;
3585 select_frame (fr, -1);
3588 value_free (bpt->val);
3589 mark = value_mark ();
3590 bpt->val = evaluate_expression (bpt->exp);
3591 release_value (bpt->val);
3592 if (VALUE_LAZY (bpt->val))
3593 value_fetch_lazy (bpt->val);
3595 if (bpt->type == bp_hardware_watchpoint ||
3596 bpt->type == bp_read_watchpoint ||
3597 bpt->type == bp_access_watchpoint)
3599 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
3600 int mem_cnt = can_use_hardware_watchpoint (bpt->val);
3602 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT(
3603 bpt->type, i + mem_cnt, other_type_used);
3604 /* we can consider of type is bp_hardware_watchpoint, convert to
3605 bp_watchpoint in the following condition */
3606 if (target_resources_ok < 0)
3609 Cannot enable watchpoint %d because target watch resources\n\
3610 have been allocated for other watchpoints.\n", bpt->number);
3611 bpt->enable = disabled;
3612 value_free_to_mark (mark);
3617 if (save_selected_frame_level >= 0)
3618 select_frame (save_selected_frame, save_selected_frame_level);
3619 value_free_to_mark (mark);
3625 enable_command (args, from_tty)
3629 struct breakpoint *bpt;
3631 ALL_BREAKPOINTS (bpt)
3635 case bp_hardware_breakpoint:
3637 case bp_hardware_watchpoint:
3638 case bp_read_watchpoint:
3639 case bp_access_watchpoint:
3640 enable_breakpoint (bpt);
3645 map_breakpoint_numbers (args, enable_breakpoint);
3649 disable_breakpoint (bpt)
3650 struct breakpoint *bpt;
3652 /* Never disable a watchpoint scope breakpoint; we want to
3653 hit them when we leave scope so we can delete both the
3654 watchpoint and its scope breakpoint at that time. */
3655 if (bpt->type == bp_watchpoint_scope)
3658 if (disable_breakpoint_hook)
3659 disable_breakpoint_hook (bpt);
3661 bpt->enable = disabled;
3663 check_duplicates (bpt->address);
3668 disable_command (args, from_tty)
3672 register struct breakpoint *bpt;
3674 ALL_BREAKPOINTS (bpt)
3678 case bp_hardware_breakpoint:
3680 case bp_hardware_watchpoint:
3681 case bp_read_watchpoint:
3682 case bp_access_watchpoint:
3683 disable_breakpoint (bpt);
3688 map_breakpoint_numbers (args, disable_breakpoint);
3692 enable_once_breakpoint (bpt)
3693 struct breakpoint *bpt;
3695 struct frame_info *save_selected_frame = NULL;
3696 int save_selected_frame_level = -1;
3697 int target_resources_ok, other_type_used;
3700 if (bpt->type == bp_hardware_breakpoint)
3703 i = hw_breakpoint_used_count();
3704 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT(
3705 bp_hardware_breakpoint, i+1, 0);
3706 if (target_resources_ok == 0)
3707 error ("No hardware breakpoint support in the target.");
3708 else if (target_resources_ok < 0)
3709 error ("Hardware breakpoints used exceeds limit.");
3712 bpt->enable = enabled;
3713 bpt->disposition = disable;
3714 check_duplicates (bpt->address);
3715 breakpoints_changed ();
3717 if (bpt->type == bp_watchpoint || bpt->type == bp_hardware_watchpoint ||
3718 bpt->type == bp_read_watchpoint || bpt->type == bp_access_watchpoint)
3720 if (bpt->exp_valid_block != NULL)
3722 struct frame_info *fr =
3723 find_frame_addr_in_frame_chain (bpt->watchpoint_frame);
3727 Cannot enable watchpoint %d because the block in which its expression\n\
3728 is valid is not currently in scope.\n", bpt->number);
3729 bpt->enable = disabled;
3733 save_selected_frame = selected_frame;
3734 save_selected_frame_level = selected_frame_level;
3735 select_frame (fr, -1);
3738 value_free (bpt->val);
3739 mark = value_mark ();
3740 bpt->val = evaluate_expression (bpt->exp);
3741 release_value (bpt->val);
3742 if (VALUE_LAZY (bpt->val))
3743 value_fetch_lazy (bpt->val);
3745 if (bpt->type == bp_hardware_watchpoint ||
3746 bpt->type == bp_read_watchpoint ||
3747 bpt->type == bp_access_watchpoint)
3749 int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
3750 int mem_cnt = can_use_hardware_watchpoint(bpt->val);
3751 target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT(
3752 bpt->type, i+mem_cnt, other_type_used);
3753 /* we can consider of type is bp_hardware_watchpoint, convert to
3754 bp_watchpoint in the following condition */
3755 if (target_resources_ok < 0)
3758 Cannot enable watchpoint %d because target watch resources\n\
3759 have been allocated for other watchpoints.\n", bpt->number);
3760 bpt->enable = disabled;
3761 value_free_to_mark (mark);
3765 if (save_selected_frame_level >= 0)
3766 select_frame (save_selected_frame, save_selected_frame_level);
3767 value_free_to_mark (mark);
3773 enable_once_command (args, from_tty)
3777 map_breakpoint_numbers (args, enable_once_breakpoint);
3781 enable_delete_breakpoint (bpt)
3782 struct breakpoint *bpt;
3784 bpt->enable = enabled;
3785 bpt->disposition = delete;
3787 check_duplicates (bpt->address);
3788 breakpoints_changed ();
3793 enable_delete_command (args, from_tty)
3797 map_breakpoint_numbers (args, enable_delete_breakpoint);
3800 /* Use default_breakpoint_'s, or nothing if they aren't valid. */
3802 struct symtabs_and_lines
3803 decode_line_spec_1 (string, funfirstline)
3807 struct symtabs_and_lines sals;
3809 error ("Empty line specification.");
3810 if (default_breakpoint_valid)
3811 sals = decode_line_1 (&string, funfirstline,
3812 default_breakpoint_symtab, default_breakpoint_line,
3815 sals = decode_line_1 (&string, funfirstline,
3816 (struct symtab *)NULL, 0, (char ***)NULL);
3818 error ("Junk at end of line specification: %s", string);
3823 _initialize_breakpoint ()
3825 breakpoint_chain = 0;
3826 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
3827 before a breakpoint is set. */
3828 breakpoint_count = 0;
3830 add_com ("ignore", class_breakpoint, ignore_command,
3831 "Set ignore-count of breakpoint number N to COUNT.\n\
3832 Usage is `ignore N COUNT'.");
3834 add_com ("commands", class_breakpoint, commands_command,
3835 "Set commands to be executed when a breakpoint is hit.\n\
3836 Give breakpoint number as argument after \"commands\".\n\
3837 With no argument, the targeted breakpoint is the last one set.\n\
3838 The commands themselves follow starting on the next line.\n\
3839 Type a line containing \"end\" to indicate the end of them.\n\
3840 Give \"silent\" as the first line to make the breakpoint silent;\n\
3841 then no output is printed when it is hit, except what the commands print.");
3843 add_com ("condition", class_breakpoint, condition_command,
3844 "Specify breakpoint number N to break only if COND is true.\n\
3845 Usage is `condition N COND', where N is an integer and COND is an\n\
3846 expression to be evaluated whenever breakpoint N is reached. ");
3848 add_com ("tbreak", class_breakpoint, tbreak_command,
3849 "Set a temporary breakpoint. Args like \"break\" command.\n\
3850 Like \"break\" except the breakpoint is only temporary,\n\
3851 so it will be deleted when hit. Equivalent to \"break\" followed\n\
3852 by using \"enable delete\" on the breakpoint number.");
3854 add_com ("hbreak", class_breakpoint, hbreak_command,
3855 "Set a hardware assisted breakpoint. Args like \"break\" command.\n\
3856 Like \"break\" except the breakpoint requires hardware support,\n\
3857 some target hardware may not have this support.");
3859 add_com ("thbreak", class_breakpoint, thbreak_command,
3860 "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
3861 Like \"hbreak\" except the breakpoint is only temporary,\n\
3862 so it will be deleted when hit.");
3864 add_prefix_cmd ("enable", class_breakpoint, enable_command,
3865 "Enable some breakpoints.\n\
3866 Give breakpoint numbers (separated by spaces) as arguments.\n\
3867 With no subcommand, breakpoints are enabled until you command otherwise.\n\
3868 This is used to cancel the effect of the \"disable\" command.\n\
3869 With a subcommand you can enable temporarily.",
3870 &enablelist, "enable ", 1, &cmdlist);
3872 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
3873 "Enable some breakpoints.\n\
3874 Give breakpoint numbers (separated by spaces) as arguments.\n\
3875 This is used to cancel the effect of the \"disable\" command.\n\
3876 May be abbreviated to simply \"enable\".\n",
3877 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
3879 add_cmd ("once", no_class, enable_once_command,
3880 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
3881 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
3884 add_cmd ("delete", no_class, enable_delete_command,
3885 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
3886 If a breakpoint is hit while enabled in this fashion, it is deleted.",
3889 add_cmd ("delete", no_class, enable_delete_command,
3890 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
3891 If a breakpoint is hit while enabled in this fashion, it is deleted.",
3894 add_cmd ("once", no_class, enable_once_command,
3895 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
3896 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
3899 add_prefix_cmd ("disable", class_breakpoint, disable_command,
3900 "Disable some breakpoints.\n\
3901 Arguments are breakpoint numbers with spaces in between.\n\
3902 To disable all breakpoints, give no argument.\n\
3903 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
3904 &disablelist, "disable ", 1, &cmdlist);
3905 add_com_alias ("dis", "disable", class_breakpoint, 1);
3906 add_com_alias ("disa", "disable", class_breakpoint, 1);
3908 add_cmd ("breakpoints", class_alias, disable_command,
3909 "Disable some breakpoints.\n\
3910 Arguments are breakpoint numbers with spaces in between.\n\
3911 To disable all breakpoints, give no argument.\n\
3912 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
3913 This command may be abbreviated \"disable\".",
3916 add_prefix_cmd ("delete", class_breakpoint, delete_command,
3917 "Delete some breakpoints or auto-display expressions.\n\
3918 Arguments are breakpoint numbers with spaces in between.\n\
3919 To delete all breakpoints, give no argument.\n\
3921 Also a prefix command for deletion of other GDB objects.\n\
3922 The \"unset\" command is also an alias for \"delete\".",
3923 &deletelist, "delete ", 1, &cmdlist);
3924 add_com_alias ("d", "delete", class_breakpoint, 1);
3926 add_cmd ("breakpoints", class_alias, delete_command,
3927 "Delete some breakpoints or auto-display expressions.\n\
3928 Arguments are breakpoint numbers with spaces in between.\n\
3929 To delete all breakpoints, give no argument.\n\
3930 This command may be abbreviated \"delete\".",
3933 add_com ("clear", class_breakpoint, clear_command,
3934 concat ("Clear breakpoint at specified line or function.\n\
3935 Argument may be line number, function name, or \"*\" and an address.\n\
3936 If line number is specified, all breakpoints in that line are cleared.\n\
3937 If function is specified, breakpoints at beginning of function are cleared.\n\
3938 If an address is specified, breakpoints at that address are cleared.\n\n",
3939 "With no argument, clears all breakpoints in the line that the selected frame\n\
3942 See also the \"delete\" command which clears breakpoints by number.", NULL));
3944 add_com ("break", class_breakpoint, break_command,
3945 concat ("Set breakpoint at specified line or function.\n\
3946 Argument may be line number, function name, or \"*\" and an address.\n\
3947 If line number is specified, break at start of code for that line.\n\
3948 If function is specified, break at start of code for that function.\n\
3949 If an address is specified, break at that exact address.\n",
3950 "With no arg, uses current execution address of selected stack frame.\n\
3951 This is useful for breaking on return to a stack frame.\n\
3953 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
3955 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
3956 add_com_alias ("b", "break", class_run, 1);
3957 add_com_alias ("br", "break", class_run, 1);
3958 add_com_alias ("bre", "break", class_run, 1);
3959 add_com_alias ("brea", "break", class_run, 1);
3961 add_info ("breakpoints", breakpoints_info,
3962 concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
3963 The \"Type\" column indicates one of:\n\
3964 \tbreakpoint - normal breakpoint\n\
3965 \twatchpoint - watchpoint\n\
3966 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
3967 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
3968 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
3969 address and file/line number respectively.\n\n",
3970 "Convenience variable \"$_\" and default examine address for \"x\"\n\
3971 are set to the address of the last breakpoint listed.\n\n\
3972 Convenience variable \"$bpnum\" contains the number of the last\n\
3973 breakpoint set.", NULL));
3975 #if MAINTENANCE_CMDS
3977 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
3978 concat ("Status of all breakpoints, or breakpoint number NUMBER.\n\
3979 The \"Type\" column indicates one of:\n\
3980 \tbreakpoint - normal breakpoint\n\
3981 \twatchpoint - watchpoint\n\
3982 \tlongjmp - internal breakpoint used to step through longjmp()\n\
3983 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
3984 \tuntil - internal breakpoint used by the \"until\" command\n\
3985 \tfinish - internal breakpoint used by the \"finish\" command\n",
3986 "The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
3987 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
3988 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
3989 address and file/line number respectively.\n\n",
3990 "Convenience variable \"$_\" and default examine address for \"x\"\n\
3991 are set to the address of the last breakpoint listed.\n\n\
3992 Convenience variable \"$bpnum\" contains the number of the last\n\
3993 breakpoint set.", NULL),
3994 &maintenanceinfolist);
3996 #endif /* MAINTENANCE_CMDS */
3998 add_com ("catch", class_breakpoint, catch_command,
3999 "Set breakpoints to catch exceptions that are raised.\n\
4000 Argument may be a single exception to catch, multiple exceptions\n\
4001 to catch, or the default exception \"default\". If no arguments\n\
4002 are given, breakpoints are set at all exception handlers catch clauses\n\
4003 within the current scope.\n\
4005 A condition specified for the catch applies to all breakpoints set\n\
4006 with this command\n\
4008 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
4010 add_com ("watch", class_breakpoint, watch_command,
4011 "Set a watchpoint for an expression.\n\
4012 A watchpoint stops execution of your program whenever the value of\n\
4013 an expression changes.");
4015 add_com ("rwatch", class_breakpoint, rwatch_command,
4016 "Set a read watchpoint for an expression.\n\
4017 A watchpoint stops execution of your program whenever the value of\n\
4018 an expression is read.");
4020 add_com ("awatch", class_breakpoint, awatch_command,
4021 "Set a watchpoint for an expression.\n\
4022 A watchpoint stops execution of your program whenever the value of\n\
4023 an expression is either read or written.");
4025 add_info ("watchpoints", breakpoints_info,
4026 "Synonym for ``info breakpoints''.");
4030 /* OK, when we call objfile_relocate, we need to relocate breakpoints
4031 too. breakpoint_re_set is not a good choice--for example, if
4032 addr_string contains just a line number without a file name the
4033 breakpoint might get set in a different file. In general, there is
4034 no need to go all the way back to the user's string (though this might
4035 work if some effort were made to canonicalize it), since symtabs and
4036 everything except addresses are still valid.
4038 Probably the best way to solve this is to have each breakpoint save
4039 the objfile and the section number that was used to set it (if set
4040 by "*addr", probably it is best to use find_pc_line to get a symtab
4041 and use the objfile and block_line_section for that symtab). Then
4042 objfile_relocate can call fixup_breakpoints with the objfile and
4043 the new_offsets, and it can relocate only the appropriate breakpoints. */
4045 #ifdef IBM6000_TARGET
4046 /* But for now, just kludge it based on the concept that before an
4047 objfile is relocated the breakpoint is below 0x10000000, and afterwards
4048 it is higher, so that way we only relocate each breakpoint once. */
4051 fixup_breakpoints (low, high, delta)
4056 struct breakpoint *b;
4060 if (b->address >= low && b->address <= high)
4061 b->address += delta;