1 /* Everything about breakpoints, for GDB.
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
24 #include "breakpoint.h"
26 #include "expression.h"
39 /* local function prototypes */
42 catch_command_1 PARAMS ((char *, int, int));
45 enable_delete_command PARAMS ((char *, int));
48 enable_delete_breakpoint PARAMS ((struct breakpoint *));
51 enable_once_command PARAMS ((char *, int));
54 enable_once_breakpoint PARAMS ((struct breakpoint *));
57 disable_command PARAMS ((char *, int));
60 disable_breakpoint PARAMS ((struct breakpoint *));
63 enable_command PARAMS ((char *, int));
66 enable_breakpoint PARAMS ((struct breakpoint *));
69 map_breakpoint_numbers PARAMS ((char *, void (*)(struct breakpoint *)));
72 ignore_command PARAMS ((char *, int));
75 breakpoint_re_set_one PARAMS ((char *));
78 delete_command PARAMS ((char *, int));
81 clear_command PARAMS ((char *, int));
84 catch_command PARAMS ((char *, int));
86 static struct symtabs_and_lines
87 get_catch_sals PARAMS ((int));
90 watch_command PARAMS ((char *, int));
93 can_use_hardware_watchpoint PARAMS ((struct breakpoint *));
96 tbreak_command PARAMS ((char *, int));
99 break_command_1 PARAMS ((char *, int, int));
102 mention PARAMS ((struct breakpoint *));
104 static struct breakpoint *
105 set_raw_breakpoint PARAMS ((struct symtab_and_line));
108 check_duplicates PARAMS ((CORE_ADDR));
111 describe_other_breakpoints PARAMS ((CORE_ADDR));
114 breakpoints_info PARAMS ((char *, int));
117 breakpoint_1 PARAMS ((int, int));
120 bpstat_alloc PARAMS ((struct breakpoint *, bpstat));
123 breakpoint_cond_eval PARAMS ((char *));
126 cleanup_executing_breakpoints PARAMS ((int));
129 commands_command PARAMS ((char *, int));
132 condition_command PARAMS ((char *, int));
135 get_number PARAMS ((char **));
138 set_breakpoint_count PARAMS ((int));
141 remove_breakpoint PARAMS ((struct breakpoint *));
143 extern int addressprint; /* Print machine addresses? */
144 extern int demangle; /* Print de-mangled symbol names? */
146 /* Are we executing breakpoint commands? */
147 static int executing_breakpoint_commands;
149 /* Walk the following statement or block through all breakpoints.
150 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
153 #define ALL_BREAKPOINTS(b) for (b = breakpoint_chain; b; b = b->next)
155 #define ALL_BREAKPOINTS_SAFE(b,tmp) \
156 for (b = breakpoint_chain; \
157 b? (tmp=b->next, 1): 0; \
160 /* By default no support for hardware watchpoints is assumed. */
161 #ifndef TARGET_CAN_USE_HARDWARE_WATCHPOINT
162 #define TARGET_CAN_USE_HARDWARE_WATCHPOINT(B) 0
163 #define target_remove_watchpoint(ADDR,LEN) -1
164 #define target_insert_watchpoint(ADDR,LEN) -1
167 /* Chain of all breakpoints defined. */
169 static struct breakpoint *breakpoint_chain;
171 /* Number of last breakpoint made. */
173 static int breakpoint_count;
175 /* Set breakpoint count to NUM. */
177 set_breakpoint_count (num)
180 breakpoint_count = num;
181 set_internalvar (lookup_internalvar ("bpnum"),
182 value_from_longest (builtin_type_int, (LONGEST) num));
185 /* Default address, symtab and line to put a breakpoint at
186 for "break" command with no arg.
187 if default_breakpoint_valid is zero, the other three are
188 not valid, and "break" with no arg is an error.
190 This set by print_stack_frame, which calls set_default_breakpoint. */
192 int default_breakpoint_valid;
193 CORE_ADDR default_breakpoint_address;
194 struct symtab *default_breakpoint_symtab;
195 int default_breakpoint_line;
197 /* Flag indicating extra verbosity for xgdb. */
198 extern int xgdb_verbose;
200 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
201 Advance *PP after the string and any trailing whitespace.
203 Currently the string can either be a number or "$" followed by the name
204 of a convenience variable. Making it an expression wouldn't work well
205 for map_breakpoint_numbers (e.g. "4 + 5 + 6"). */
214 /* Empty line means refer to the last breakpoint. */
215 return breakpoint_count;
218 /* Make a copy of the name, so we can null-terminate it
219 to pass to lookup_internalvar(). */
224 while (isalnum (*p) || *p == '_')
226 varname = (char *) alloca (p - start + 1);
227 strncpy (varname, start, p - start);
228 varname[p - start] = '\0';
229 val = value_of_internalvar (lookup_internalvar (varname));
230 if (TYPE_CODE (VALUE_TYPE (val)) != TYPE_CODE_INT)
232 "Convenience variables used to specify breakpoints must have integer values."
234 retval = (int) value_as_long (val);
240 while (*p >= '0' && *p <= '9')
243 /* There is no number here. (e.g. "cond a == b"). */
244 error_no_arg ("breakpoint number");
247 if (!(isspace (*p) || *p == '\0'))
248 error ("breakpoint number expected");
255 /* condition N EXP -- set break condition of breakpoint N to EXP. */
258 condition_command (arg, from_tty)
262 register struct breakpoint *b;
267 error_no_arg ("breakpoint number");
270 bnum = get_number (&p);
273 if (b->number == bnum)
280 if (b->cond_string != NULL)
281 free ((PTR)b->cond_string);
286 b->cond_string = NULL;
288 printf_filtered ("Breakpoint %d now unconditional.\n", bnum);
293 /* I don't know if it matters whether this is the string the user
294 typed in or the decompiled expression. */
295 b->cond_string = savestring (arg, strlen (arg));
296 b->cond = parse_exp_1 (&arg, block_for_pc (b->address), 0);
298 error ("Junk at end of expression");
303 error ("No breakpoint number %d.", bnum);
308 commands_command (arg, from_tty)
312 register struct breakpoint *b;
315 struct command_line *l;
317 /* If we allowed this, we would have problems with when to
318 free the storage, if we change the commands currently
321 if (executing_breakpoint_commands)
322 error ("Can't use the \"commands\" command among a breakpoint's commands.");
325 bnum = get_number (&p);
327 error ("Unexpected extra arguments following breakpoint number.");
330 if (b->number == bnum)
332 if (from_tty && input_from_terminal_p ())
333 printf_filtered ("Type commands for when breakpoint %d is hit, one per line.\n\
334 End with a line saying just \"end\".\n", bnum);
335 l = read_command_lines ();
336 free_command_lines (&b->commands);
340 error ("No breakpoint number %d.", bnum);
343 extern int memory_breakpoint_size; /* from mem-break.c */
345 /* Like target_read_memory() but if breakpoints are inserted, return
346 the shadow contents instead of the breakpoints themselves.
348 Read "memory data" from whatever target or inferior we have.
349 Returns zero if successful, errno value if not. EIO is used
350 for address out of bounds. If breakpoints are inserted, returns
351 shadow contents, not the breakpoints themselves. From breakpoint.c. */
354 read_memory_nobpt (memaddr, myaddr, len)
360 struct breakpoint *b;
362 if (memory_breakpoint_size < 0)
363 /* No breakpoints on this machine. FIXME: This should be
364 dependent on the debugging target. Probably want
365 target_insert_breakpoint to return a size, saying how many
366 bytes of the shadow contents are used, or perhaps have
367 something like target_xfer_shadow. */
368 return target_read_memory (memaddr, myaddr, len);
372 if (b->type == bp_watchpoint
373 || b->type == bp_hardware_watchpoint
376 else if (b->address + memory_breakpoint_size <= memaddr)
377 /* The breakpoint is entirely before the chunk of memory
380 else if (b->address >= memaddr + len)
381 /* The breakpoint is entirely after the chunk of memory we
386 /* Copy the breakpoint from the shadow contents, and recurse
387 for the things before and after. */
389 /* Addresses and length of the part of the breakpoint that
391 CORE_ADDR membpt = b->address;
392 unsigned int bptlen = memory_breakpoint_size;
393 /* Offset within shadow_contents. */
396 if (membpt < memaddr)
398 /* Only copy the second part of the breakpoint. */
399 bptlen -= memaddr - membpt;
400 bptoffset = memaddr - membpt;
404 if (membpt + bptlen > memaddr + len)
406 /* Only copy the first part of the breakpoint. */
407 bptlen -= (membpt + bptlen) - (memaddr + len);
410 memcpy (myaddr + membpt - memaddr,
411 b->shadow_contents + bptoffset, bptlen);
413 if (membpt > memaddr)
415 /* Copy the section of memory before the breakpoint. */
416 status = read_memory_nobpt (memaddr, myaddr, membpt - memaddr);
421 if (membpt + bptlen < memaddr + len)
423 /* Copy the section of memory after the breakpoint. */
424 status = read_memory_nobpt
426 myaddr + membpt + bptlen - memaddr,
427 memaddr + len - (membpt + bptlen));
434 /* Nothing overlaps. Just call read_memory_noerr. */
435 return target_read_memory (memaddr, myaddr, len);
438 /* insert_breakpoints is used when starting or continuing the program.
439 remove_breakpoints is used when the program stops.
440 Both return zero if successful,
441 or an `errno' value if could not write the inferior. */
444 insert_breakpoints ()
446 register struct breakpoint *b;
448 int disabled_breaks = 0;
451 if (b->type != bp_watchpoint
452 && b->type != bp_hardware_watchpoint
453 && b->enable != disabled
457 val = target_insert_breakpoint(b->address, b->shadow_contents);
460 /* Can't set the breakpoint. */
461 #if defined (DISABLE_UNSETTABLE_BREAK)
462 if (DISABLE_UNSETTABLE_BREAK (b->address))
465 b->enable = disabled;
466 if (!disabled_breaks)
468 target_terminal_ours_for_output ();
469 fprintf_unfiltered (gdb_stderr,
470 "Cannot insert breakpoint %d:\n", b->number);
471 printf_filtered ("Disabling shared library breakpoints:\n");
474 printf_filtered ("%d ", b->number);
479 target_terminal_ours_for_output ();
480 fprintf_unfiltered (gdb_stderr, "Cannot insert breakpoint %d:\n", b->number);
481 #ifdef ONE_PROCESS_WRITETEXT
482 fprintf_unfiltered (gdb_stderr,
483 "The same program may be running in another process.\n");
485 memory_error (val, b->address); /* which bombs us out */
491 else if (b->type == bp_hardware_watchpoint
492 && b->enable == enabled
497 int saved_level, within_current_scope;
498 value_ptr mark = value_mark ();
501 /* Save the current frame and level so we can restore it after
502 evaluating the watchpoint expression on its own frame. */
503 saved_frame = selected_frame;
504 saved_level = selected_frame_level;
506 /* Determine if the watchpoint is within scope. */
507 if (b->exp_valid_block == NULL)
508 within_current_scope = 1;
511 FRAME fr = find_frame_addr_in_frame_chain (b->watchpoint_frame);
512 within_current_scope = (fr != NULL);
513 if (within_current_scope)
514 select_frame (fr, -1);
517 if (within_current_scope)
519 /* Evaluate the expression and cut the chain of values
520 produced off from the value chain. */
521 v = evaluate_expression (b->exp);
522 value_release_to_mark (mark);
527 /* Look at each value on the value chain. */
528 for ( ; v; v=v->next)
530 /* If it's a memory location, then we must watch it. */
531 if (v->lval == lval_memory)
535 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
536 len = TYPE_LENGTH (VALUE_TYPE (v));
537 val = target_insert_watchpoint (addr, len);
546 /* Failure to insert a watchpoint on any memory value in the
547 value chain brings us here. */
549 warning ("Hardware watchpoint %d: Could not insert watchpoint\n",
555 Hardware watchpoint %d deleted because the program has left the block in\n\
556 which its expression is valid.\n", b->number);
557 if (b->related_breakpoint)
558 delete_breakpoint (b->related_breakpoint);
559 delete_breakpoint (b);
562 /* Restore the frame and level. */
563 select_frame (saved_frame, saved_level);
566 printf_filtered ("\n");
572 remove_breakpoints ()
574 register struct breakpoint *b;
581 val = remove_breakpoint (b);
591 remove_breakpoint (b)
592 struct breakpoint *b;
596 if (b->type != bp_watchpoint
597 && b->type != bp_hardware_watchpoint)
599 val = target_remove_breakpoint(b->address, b->shadow_contents);
604 else if (b->type == bp_hardware_watchpoint
605 && b->enable == enabled
611 /* Walk down the saved value chain. */
612 for (v = b->val_chain; v; v = v->next)
614 /* For each memory reference remove the watchpoint
616 if (v->lval == lval_memory)
620 addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
621 len = TYPE_LENGTH (VALUE_TYPE (v));
622 val = target_remove_watchpoint (addr, len);
628 /* Failure to remove any of the hardware watchpoints comes here. */
630 error ("Hardware watchpoint %d: Could not remove watchpoint\n",
633 /* Free the saved value chain. We will construct a new one
634 the next time the watchpoint is inserted. */
635 for (v = b->val_chain; v; v = n)
645 /* Clear the "inserted" flag in all breakpoints. */
648 mark_breakpoints_out ()
650 register struct breakpoint *b;
656 /* Clear the "inserted" flag in all breakpoints and delete any breakpoints
657 which should go away between runs of the program. */
660 breakpoint_init_inferior ()
662 register struct breakpoint *b, *temp;
664 ALL_BREAKPOINTS_SAFE (b, temp)
668 /* If the call dummy breakpoint is at the entry point it will
669 cause problems when the inferior is rerun, so we better
671 if (b->type == bp_call_dummy)
672 delete_breakpoint (b);
674 /* Likewise for scope breakpoints. */
675 if (b->type == bp_watchpoint_scope)
676 delete_breakpoint (b);
678 /* Likewise for watchpoints on local expressions. */
679 if ((b->type == bp_watchpoint || b->type == bp_hardware_watchpoint)
680 && b->exp_valid_block != NULL)
681 delete_breakpoint (b);
685 /* breakpoint_here_p (PC) returns 1 if an enabled breakpoint exists at PC.
686 When continuing from a location with a breakpoint,
687 we actually single step once before calling insert_breakpoints. */
690 breakpoint_here_p (pc)
693 register struct breakpoint *b;
696 if (b->enable != disabled && b->address == pc)
702 /* Return nonzero if FRAME is a dummy frame. We can't use PC_IN_CALL_DUMMY
703 because figuring out the saved SP would take too much time, at least using
704 get_saved_register on the 68k. This means that for this function to
705 work right a port must use the bp_call_dummy breakpoint. */
708 frame_in_dummy (frame)
711 struct breakpoint *b;
716 static unsigned LONGEST dummy[] = CALL_DUMMY;
718 if (b->type == bp_call_dummy
719 && b->frame == frame->frame
721 /* We need to check the PC as well as the frame on the sparc,
722 for signals.exp in the testsuite. */
725 - sizeof (dummy) / sizeof (LONGEST) * REGISTER_SIZE))
726 && frame->pc <= b->address)
729 #endif /* CALL_DUMMY */
733 /* breakpoint_match_thread (PC, PID) returns true if the breakpoint at PC
734 is valid for process/thread PID. */
737 breakpoint_thread_match (pc, pid)
741 struct breakpoint *b;
744 thread = pid_to_thread_id (pid);
747 if (b->enable != disabled
749 && (b->thread == -1 || b->thread == thread))
756 /* bpstat stuff. External routines' interfaces are documented
759 /* Clear a bpstat so that it says we are not at any breakpoint.
760 Also free any storage that is part of a bpstat. */
775 if (p->old_val != NULL)
776 value_free (p->old_val);
783 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
784 is part of the bpstat is copied as well. */
792 bpstat retval = NULL;
797 for (; bs != NULL; bs = bs->next)
799 tmp = (bpstat) xmalloc (sizeof (*tmp));
800 memcpy (tmp, bs, sizeof (*tmp));
802 /* This is the first thing in the chain. */
812 /* Find the bpstat associated with this breakpoint */
815 bpstat_find_breakpoint(bsp, breakpoint)
817 struct breakpoint *breakpoint;
819 if (bsp == NULL) return NULL;
821 for (;bsp != NULL; bsp = bsp->next) {
822 if (bsp->breakpoint_at == breakpoint) return bsp;
827 /* Return the breakpoint number of the first breakpoint we are stopped
828 at. *BSP upon return is a bpstat which points to the remaining
829 breakpoints stopped at (but which is not guaranteed to be good for
830 anything but further calls to bpstat_num).
831 Return 0 if passed a bpstat which does not indicate any breakpoints. */
837 struct breakpoint *b;
840 return 0; /* No more breakpoint values */
843 b = (*bsp)->breakpoint_at;
846 return -1; /* breakpoint that's been deleted since */
848 return b->number; /* We have its number */
852 /* Modify BS so that the actions will not be performed. */
855 bpstat_clear_actions (bs)
858 for (; bs != NULL; bs = bs->next)
861 if (bs->old_val != NULL)
863 value_free (bs->old_val);
869 /* Stub for cleaning up our state if we error-out of a breakpoint command */
872 cleanup_executing_breakpoints (ignore)
875 executing_breakpoint_commands = 0;
878 /* Execute all the commands associated with all the breakpoints at this
879 location. Any of these commands could cause the process to proceed
880 beyond this point, etc. We look out for such changes by checking
881 the global "breakpoint_proceeded" after each command. */
884 bpstat_do_actions (bsp)
888 struct cleanup *old_chain;
890 executing_breakpoint_commands = 1;
891 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
896 breakpoint_proceeded = 0;
897 for (; bs != NULL; bs = bs->next)
901 char *line = bs->commands->line;
902 bs->commands = bs->commands->next;
903 execute_command (line, 0);
904 /* If the inferior is proceeded by the command, bomb out now.
905 The bpstat chain has been blown away by wait_for_inferior.
906 But since execution has stopped again, there is a new bpstat
907 to look at, so start over. */
908 if (breakpoint_proceeded)
913 executing_breakpoint_commands = 0;
914 discard_cleanups (old_chain);
917 /* This is the normal print_it function for a bpstat. In the future,
918 much of this logic could (should?) be moved to bpstat_stop_status,
919 by having it set different print_it functions. */
925 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
926 which has since been deleted. */
927 if (bs->breakpoint_at == NULL
928 || (bs->breakpoint_at->type != bp_breakpoint
929 && bs->breakpoint_at->type != bp_watchpoint
930 && bs->breakpoint_at->type != bp_hardware_watchpoint))
933 if (bs->breakpoint_at->type == bp_breakpoint)
935 /* I think the user probably only wants to see one breakpoint
936 number, not all of them. */
937 printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
941 if (bs->old_val != NULL)
943 printf_filtered ("\nWatchpoint %d, ", bs->breakpoint_at->number);
944 print_expression (bs->breakpoint_at->exp, gdb_stdout);
945 printf_filtered ("\nOld value = ");
946 value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
947 printf_filtered ("\nNew value = ");
948 value_print (bs->breakpoint_at->val, gdb_stdout, 0,
950 printf_filtered ("\n");
951 value_free (bs->old_val);
953 /* More than one watchpoint may have been triggered. */
956 /* We can't deal with it. Maybe another member of the bpstat chain can. */
960 /* Print a message indicating what happened. Returns nonzero to
961 say that only the source line should be printed after this (zero
962 return means print the frame as well as the source line). */
963 /* Currently we always return zero. */
973 val = (*bs->print_it) (bs);
977 /* Maybe another breakpoint in the chain caused us to stop.
978 (Currently all watchpoints go on the bpstat whether hit or
979 not. That probably could (should) be changed, provided care is taken
980 with respect to bpstat_explains_signal). */
982 return bpstat_print (bs->next);
984 /* We reached the end of the chain without printing anything. */
988 /* Evaluate the expression EXP and return 1 if value is zero.
989 This is used inside a catch_errors to evaluate the breakpoint condition.
990 The argument is a "struct expression *" that has been cast to char * to
991 make it pass through catch_errors. */
994 breakpoint_cond_eval (exp)
997 return !value_true (evaluate_expression ((struct expression *)exp));
1000 /* Allocate a new bpstat and chain it to the current one. */
1003 bpstat_alloc (b, cbs)
1004 register struct breakpoint *b;
1005 bpstat cbs; /* Current "bs" value */
1009 bs = (bpstat) xmalloc (sizeof (*bs));
1011 bs->breakpoint_at = b;
1012 /* If the condition is false, etc., don't do the commands. */
1013 bs->commands = NULL;
1015 bs->print_it = print_it_normal;
1021 /* Possible return values for watchpoint_check (this can't be an enum
1022 because of check_errors). */
1023 /* The watchpoint has been deleted. */
1024 #define WP_DELETED 1
1025 /* The value has changed. */
1026 #define WP_VALUE_CHANGED 2
1027 /* The value has not changed. */
1028 #define WP_VALUE_NOT_CHANGED 3
1030 /* Check watchpoint condition. */
1032 watchpoint_check (p)
1035 bpstat bs = (bpstat) p;
1036 struct breakpoint *b;
1037 FRAME saved_frame, fr;
1038 int within_current_scope, saved_level;
1040 /* Save the current frame and level so we can restore it after
1041 evaluating the watchpoint expression on its own frame. */
1042 saved_frame = selected_frame;
1043 saved_level = selected_frame_level;
1045 if (bs->breakpoint_at->exp_valid_block == NULL)
1046 within_current_scope = 1;
1049 fr = find_frame_addr_in_frame_chain (bs->breakpoint_at->watchpoint_frame);
1050 within_current_scope = (fr != NULL);
1051 if (within_current_scope)
1052 /* If we end up stopping, the current frame will get selected
1053 in normal_stop. So this call to select_frame won't affect
1055 select_frame (fr, -1);
1058 if (within_current_scope)
1060 /* We use value_{,free_to_}mark because it could be a
1061 *long* time before we return to the command level and
1062 call free_all_values. We can't call free_all_values because
1063 we might be in the middle of evaluating a function call. */
1065 value_ptr mark = value_mark ();
1066 value_ptr new_val = evaluate_expression (bs->breakpoint_at->exp);
1067 if (!value_equal (bs->breakpoint_at->val, new_val))
1069 release_value (new_val);
1070 value_free_to_mark (mark);
1071 bs->old_val = bs->breakpoint_at->val;
1072 bs->breakpoint_at->val = new_val;
1073 /* We will stop here */
1074 select_frame (saved_frame, saved_level);
1075 return WP_VALUE_CHANGED;
1079 /* Nothing changed, don't do anything. */
1080 value_free_to_mark (mark);
1081 /* We won't stop here */
1082 select_frame (saved_frame, saved_level);
1083 return WP_VALUE_NOT_CHANGED;
1088 /* This seems like the only logical thing to do because
1089 if we temporarily ignored the watchpoint, then when
1090 we reenter the block in which it is valid it contains
1091 garbage (in the case of a function, it may have two
1092 garbage values, one before and one after the prologue).
1093 So we can't even detect the first assignment to it and
1094 watch after that (since the garbage may or may not equal
1095 the first value assigned). */
1097 Watchpoint %d deleted because the program has left the block in\n\
1098 which its expression is valid.\n", bs->breakpoint_at->number);
1099 if (bs->breakpoint_at->related_breakpoint)
1100 delete_breakpoint (bs->breakpoint_at->related_breakpoint);
1101 delete_breakpoint (bs->breakpoint_at);
1103 select_frame (saved_frame, saved_level);
1108 /* This is used when everything which needs to be printed has
1109 already been printed. But we still want to print the frame. */
1117 /* This is used when nothing should be printed for this bpstat entry. */
1126 /* Get a bpstat associated with having just stopped at address *PC
1127 and frame address FRAME_ADDRESS. Update *PC to point at the
1128 breakpoint (if we hit a breakpoint). NOT_A_BREAKPOINT is nonzero
1129 if this is known to not be a real breakpoint (it could still be a
1130 watchpoint, though). */
1132 /* Determine whether we stopped at a breakpoint, etc, or whether we
1133 don't understand this stop. Result is a chain of bpstat's such that:
1135 if we don't understand the stop, the result is a null pointer.
1137 if we understand why we stopped, the result is not null.
1139 Each element of the chain refers to a particular breakpoint or
1140 watchpoint at which we have stopped. (We may have stopped for
1141 several reasons concurrently.)
1143 Each element of the chain has valid next, breakpoint_at,
1144 commands, FIXME??? fields.
1149 bpstat_stop_status (pc, frame_address, not_a_breakpoint)
1151 FRAME_ADDR frame_address;
1152 int not_a_breakpoint;
1154 register struct breakpoint *b;
1156 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1157 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
1158 int real_breakpoint = 0;
1160 /* Root of the chain of bpstat's */
1161 struct bpstat root_bs[1];
1162 /* Pointer to the last thing in the chain currently. */
1163 bpstat bs = root_bs;
1165 /* Get the address where the breakpoint would have been. */
1166 bp_addr = *pc - DECR_PC_AFTER_BREAK;
1170 if (b->enable == disabled)
1173 if (b->type != bp_watchpoint
1174 && b->type != bp_hardware_watchpoint
1175 && b->address != bp_addr)
1178 if (b->type != bp_watchpoint
1179 && b->type != bp_hardware_watchpoint
1180 && not_a_breakpoint)
1183 /* Come here if it's a watchpoint, or if the break address matches */
1185 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
1190 if (b->type == bp_watchpoint || b->type == bp_hardware_watchpoint)
1192 static char message1[] =
1193 "Error evaluating expression for watchpoint %d\n";
1194 char message[sizeof (message1) + 30 /* slop */];
1195 sprintf (message, message1, b->number);
1196 switch (catch_errors (watchpoint_check, (char *) bs, message,
1200 /* We've already printed what needs to be printed. */
1201 bs->print_it = print_it_done;
1204 case WP_VALUE_CHANGED:
1207 case WP_VALUE_NOT_CHANGED:
1209 bs->print_it = print_it_noop;
1216 /* Error from catch_errors. */
1217 printf_filtered ("Watchpoint %d deleted.\n", b->number);
1218 if (b->related_breakpoint)
1219 delete_breakpoint (b->related_breakpoint);
1220 delete_breakpoint (b);
1221 /* We've already printed what needs to be printed. */
1222 bs->print_it = print_it_done;
1228 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1230 real_breakpoint = 1;
1233 if (b->frame && b->frame != frame_address)
1237 int value_is_zero = 0;
1241 /* Need to select the frame, with all that implies
1242 so that the conditions will have the right context. */
1243 select_frame (get_current_frame (), 0);
1245 = catch_errors (breakpoint_cond_eval, (char *)(b->cond),
1246 "Error in testing breakpoint condition:\n",
1248 /* FIXME-someday, should give breakpoint # */
1251 if (b->cond && value_is_zero)
1255 else if (b->ignore_count > 0)
1262 /* We will stop here */
1263 if (b->disposition == disable)
1264 b->enable = disabled;
1265 bs->commands = b->commands;
1268 if (bs->commands && STREQ ("silent", bs->commands->line))
1270 bs->commands = bs->commands->next;
1275 /* Print nothing for this entry if we dont stop or if we dont print. */
1276 if (bs->stop == 0 || bs->print == 0)
1277 bs->print_it = print_it_noop;
1280 bs->next = NULL; /* Terminate the chain */
1281 bs = root_bs->next; /* Re-grab the head of the chain */
1282 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
1285 if (real_breakpoint)
1288 #if defined (SHIFT_INST_REGS)
1290 #else /* No SHIFT_INST_REGS. */
1292 #endif /* No SHIFT_INST_REGS. */
1295 #endif /* DECR_PC_AFTER_BREAK != 0. */
1297 /* The value of a hardware watchpoint hasn't changed, but the
1298 intermediate memory locations we are watching may have. */
1299 if (bs && ! bs->stop
1300 && bs->breakpoint_at->type == bp_hardware_watchpoint)
1302 remove_breakpoints ();
1303 insert_breakpoints ();
1308 /* Tell what to do about this bpstat. */
1313 /* Classify each bpstat as one of the following. */
1315 /* This bpstat element has no effect on the main_action. */
1318 /* There was a watchpoint, stop but don't print. */
1321 /* There was a watchpoint, stop and print. */
1324 /* There was a breakpoint but we're not stopping. */
1327 /* There was a breakpoint, stop but don't print. */
1330 /* There was a breakpoint, stop and print. */
1333 /* We hit the longjmp breakpoint. */
1336 /* We hit the longjmp_resume breakpoint. */
1339 /* We hit the step_resume breakpoint. */
1342 /* We hit the through_sigtramp breakpoint. */
1345 /* This is just used to count how many enums there are. */
1349 /* Here is the table which drives this routine. So that we can
1350 format it pretty, we define some abbreviations for the
1351 enum bpstat_what codes. */
1352 #define keep_c BPSTAT_WHAT_KEEP_CHECKING
1353 #define stop_s BPSTAT_WHAT_STOP_SILENT
1354 #define stop_n BPSTAT_WHAT_STOP_NOISY
1355 #define single BPSTAT_WHAT_SINGLE
1356 #define setlr BPSTAT_WHAT_SET_LONGJMP_RESUME
1357 #define clrlr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
1358 #define clrlrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
1359 #define sr BPSTAT_WHAT_STEP_RESUME
1360 #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
1362 /* "Can't happen." Might want to print an error message.
1363 abort() is not out of the question, but chances are GDB is just
1364 a bit confused, not unusable. */
1365 #define err BPSTAT_WHAT_STOP_NOISY
1367 /* Given an old action and a class, come up with a new action. */
1368 /* One interesting property of this table is that wp_silent is the same
1369 as bp_silent and wp_noisy is the same as bp_noisy. That is because
1370 after stopping, the check for whether to step over a breakpoint
1371 (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
1372 reference to how we stopped. We retain separate wp_silent and bp_silent
1373 codes in case we want to change that someday. */
1375 /* step_resume entries: a step resume breakpoint overrides another
1376 breakpoint of signal handling (see comment in wait_for_inferior
1377 at first IN_SIGTRAMP where we set the step_resume breakpoint). */
1378 /* We handle the through_sigtramp_breakpoint the same way; having both
1379 one of those and a step_resume_breakpoint is probably very rare (?). */
1381 static const enum bpstat_what_main_action
1382 table[(int)class_last][(int)BPSTAT_WHAT_LAST] =
1385 /* keep_c stop_s stop_n single setlr clrlr clrlrs sr ts
1387 /*no_effect*/ {keep_c,stop_s,stop_n,single, setlr , clrlr , clrlrs, sr, ts},
1388 /*wp_silent*/ {stop_s,stop_s,stop_n,stop_s, stop_s, stop_s, stop_s, sr, ts},
1389 /*wp_noisy*/ {stop_n,stop_n,stop_n,stop_n, stop_n, stop_n, stop_n, sr, ts},
1390 /*bp_nostop*/ {single,stop_s,stop_n,single, setlr , clrlrs, clrlrs, sr, ts},
1391 /*bp_silent*/ {stop_s,stop_s,stop_n,stop_s, stop_s, stop_s, stop_s, sr, ts},
1392 /*bp_noisy*/ {stop_n,stop_n,stop_n,stop_n, stop_n, stop_n, stop_n, sr, ts},
1393 /*long_jump*/ {setlr ,stop_s,stop_n,setlr , err , err , err , sr, ts},
1394 /*long_resume*/ {clrlr ,stop_s,stop_n,clrlrs, err , err , err , sr, ts},
1395 /*step_resume*/ {sr ,sr ,sr ,sr , sr , sr , sr , sr, ts},
1396 /*through_sig*/ {ts ,ts ,ts ,ts , ts , ts , ts , ts, ts}
1408 enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
1409 struct bpstat_what retval;
1411 retval.call_dummy = 0;
1412 for (; bs != NULL; bs = bs->next)
1414 enum class bs_class = no_effect;
1415 if (bs->breakpoint_at == NULL)
1416 /* I suspect this can happen if it was a momentary breakpoint
1417 which has since been deleted. */
1419 switch (bs->breakpoint_at->type)
1427 bs_class = bp_noisy;
1429 bs_class = bp_silent;
1432 bs_class = bp_nostop;
1435 case bp_hardware_watchpoint:
1439 bs_class = wp_noisy;
1441 bs_class = wp_silent;
1444 /* There was a watchpoint, but we're not stopping. This requires
1445 no further action. */
1446 bs_class = no_effect;
1449 bs_class = long_jump;
1451 case bp_longjmp_resume:
1452 bs_class = long_resume;
1454 case bp_step_resume:
1457 bs_class = step_resume;
1460 /* It is for the wrong frame. */
1461 bs_class = bp_nostop;
1463 case bp_through_sigtramp:
1464 bs_class = through_sig;
1466 case bp_watchpoint_scope:
1467 bs_class = bp_nostop;
1471 /* Make sure the action is stop (silent or noisy), so infrun.c
1472 pops the dummy frame. */
1473 bs_class = bp_silent;
1474 retval.call_dummy = 1;
1477 current_action = table[(int)bs_class][(int)current_action];
1479 retval.main_action = current_action;
1483 /* Nonzero if we should step constantly (e.g. watchpoints on machines
1484 without hardware support). This isn't related to a specific bpstat,
1485 just to things like whether watchpoints are set. */
1488 bpstat_should_step ()
1490 struct breakpoint *b;
1492 if (b->enable == enabled && b->type == bp_watchpoint)
1497 /* Print information on breakpoint number BNUM, or -1 if all.
1498 If WATCHPOINTS is zero, process only breakpoints; if WATCHPOINTS
1499 is nonzero, process only watchpoints. */
1502 breakpoint_1 (bnum, allflag)
1506 register struct breakpoint *b;
1507 register struct command_line *l;
1508 register struct symbol *sym;
1509 CORE_ADDR last_addr = (CORE_ADDR)-1;
1510 int found_a_breakpoint = 0;
1511 static char *bptypes[] = {"breakpoint", "until", "finish", "watchpoint",
1512 "hardware watchpoint", "longjmp",
1513 "longjmp resume", "step resume",
1514 "watchpoint scope", "call dummy" };
1515 static char *bpdisps[] = {"del", "dis", "keep"};
1516 static char bpenables[] = "ny";
1517 char wrap_indent[80];
1521 || bnum == b->number)
1523 /* We only print out user settable breakpoints unless the allflag is set. */
1525 && b->type != bp_breakpoint
1526 && b->type != bp_watchpoint
1527 && b->type != bp_hardware_watchpoint)
1530 if (!found_a_breakpoint++)
1531 printf_filtered ("Num Type Disp Enb %sWhat\n",
1532 addressprint ? "Address " : "");
1534 printf_filtered ("%-3d %-14s %-4s %-3c ",
1536 bptypes[(int)b->type],
1537 bpdisps[(int)b->disposition],
1538 bpenables[(int)b->enable]);
1539 strcpy (wrap_indent, " ");
1541 strcat (wrap_indent, " ");
1545 case bp_hardware_watchpoint:
1546 print_expression (b->exp, gdb_stdout);
1553 case bp_longjmp_resume:
1554 case bp_step_resume:
1555 case bp_through_sigtramp:
1556 case bp_watchpoint_scope:
1559 printf_filtered ("%s ", local_hex_string_custom ((unsigned long) b->address, "08l"));
1561 last_addr = b->address;
1564 sym = find_pc_function (b->address);
1567 fputs_filtered ("in ", gdb_stdout);
1568 fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
1569 wrap_here (wrap_indent);
1570 fputs_filtered (" at ", gdb_stdout);
1572 fputs_filtered (b->source_file, gdb_stdout);
1573 printf_filtered (":%d", b->line_number);
1576 print_address_symbolic (b->address, gdb_stdout, demangle, " ");
1580 printf_filtered ("\n");
1584 printf_filtered ("\tstop only in stack frame at ");
1585 print_address_numeric (b->frame, gdb_stdout);
1586 printf_filtered ("\n");
1590 printf_filtered ("\tstop only if ");
1591 print_expression (b->cond, gdb_stdout);
1592 printf_filtered ("\n");
1594 if (b->ignore_count)
1595 printf_filtered ("\tignore next %d hits\n", b->ignore_count);
1596 if ((l = b->commands))
1599 fputs_filtered ("\t", gdb_stdout);
1600 fputs_filtered (l->line, gdb_stdout);
1601 fputs_filtered ("\n", gdb_stdout);
1606 if (!found_a_breakpoint)
1609 printf_filtered ("No breakpoints or watchpoints.\n");
1611 printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
1614 /* Compare against (CORE_ADDR)-1 in case some compiler decides
1615 that a comparison of an unsigned with -1 is always false. */
1616 if (last_addr != (CORE_ADDR)-1)
1617 set_next_address (last_addr);
1622 breakpoints_info (bnum_exp, from_tty)
1629 bnum = parse_and_eval_address (bnum_exp);
1631 breakpoint_1 (bnum, 0);
1634 #if MAINTENANCE_CMDS
1638 maintenance_info_breakpoints (bnum_exp, from_tty)
1645 bnum = parse_and_eval_address (bnum_exp);
1647 breakpoint_1 (bnum, 1);
1652 /* Print a message describing any breakpoints set at PC. */
1655 describe_other_breakpoints (pc)
1656 register CORE_ADDR pc;
1658 register int others = 0;
1659 register struct breakpoint *b;
1662 if (b->address == pc)
1666 printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
1668 if (b->address == pc)
1674 (b->enable == disabled) ? " (disabled)" : "",
1675 (others > 1) ? "," : ((others == 1) ? " and" : ""));
1677 printf_filtered ("also set at pc ");
1678 print_address_numeric (pc, gdb_stdout);
1679 printf_filtered (".\n");
1683 /* Set the default place to put a breakpoint
1684 for the `break' command with no arguments. */
1687 set_default_breakpoint (valid, addr, symtab, line)
1690 struct symtab *symtab;
1693 default_breakpoint_valid = valid;
1694 default_breakpoint_address = addr;
1695 default_breakpoint_symtab = symtab;
1696 default_breakpoint_line = line;
1699 /* Rescan breakpoints at address ADDRESS,
1700 marking the first one as "first" and any others as "duplicates".
1701 This is so that the bpt instruction is only inserted once. */
1704 check_duplicates (address)
1707 register struct breakpoint *b;
1708 register int count = 0;
1710 if (address == 0) /* Watchpoints are uninteresting */
1714 if (b->enable != disabled && b->address == address)
1717 b->duplicate = count > 1;
1721 /* Low level routine to set a breakpoint.
1722 Takes as args the three things that every breakpoint must have.
1723 Returns the breakpoint object so caller can set other things.
1724 Does not set the breakpoint number!
1725 Does not print anything.
1727 ==> This routine should not be called if there is a chance of later
1728 error(); otherwise it leaves a bogus breakpoint on the chain. Validate
1729 your arguments BEFORE calling this routine! */
1731 static struct breakpoint *
1732 set_raw_breakpoint (sal)
1733 struct symtab_and_line sal;
1735 register struct breakpoint *b, *b1;
1737 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
1738 memset (b, 0, sizeof (*b));
1739 b->address = sal.pc;
1740 if (sal.symtab == NULL)
1741 b->source_file = NULL;
1743 b->source_file = savestring (sal.symtab->filename,
1744 strlen (sal.symtab->filename));
1746 b->line_number = sal.line;
1747 b->enable = enabled;
1750 b->ignore_count = 0;
1754 /* Add this breakpoint to the end of the chain
1755 so that a list of breakpoints will come out in order
1756 of increasing numbers. */
1758 b1 = breakpoint_chain;
1760 breakpoint_chain = b;
1768 check_duplicates (sal.pc);
1774 create_longjmp_breakpoint(func_name)
1777 struct symtab_and_line sal;
1778 struct breakpoint *b;
1779 static int internal_breakpoint_number = -1;
1781 if (func_name != NULL)
1783 struct minimal_symbol *m;
1785 m = lookup_minimal_symbol(func_name, (struct objfile *)NULL);
1787 sal.pc = SYMBOL_VALUE_ADDRESS (m);
1797 b = set_raw_breakpoint(sal);
1800 b->type = func_name != NULL ? bp_longjmp : bp_longjmp_resume;
1801 b->disposition = donttouch;
1802 b->enable = disabled;
1805 b->addr_string = strsave(func_name);
1806 b->number = internal_breakpoint_number--;
1809 /* Call this routine when stepping and nexting to enable a breakpoint if we do
1810 a longjmp(). When we hit that breakpoint, call
1811 set_longjmp_resume_breakpoint() to figure out where we are going. */
1814 enable_longjmp_breakpoint()
1816 register struct breakpoint *b;
1819 if (b->type == bp_longjmp)
1821 b->enable = enabled;
1822 check_duplicates (b->address);
1827 disable_longjmp_breakpoint()
1829 register struct breakpoint *b;
1832 if ( b->type == bp_longjmp
1833 || b->type == bp_longjmp_resume)
1835 b->enable = disabled;
1836 check_duplicates (b->address);
1840 /* Call this after hitting the longjmp() breakpoint. Use this to set a new
1841 breakpoint at the target of the jmp_buf.
1843 FIXME - This ought to be done by setting a temporary breakpoint that gets
1844 deleted automatically...
1848 set_longjmp_resume_breakpoint(pc, frame)
1852 register struct breakpoint *b;
1855 if (b->type == bp_longjmp_resume)
1858 b->enable = enabled;
1860 b->frame = FRAME_FP(frame);
1863 check_duplicates (b->address);
1868 /* Set a breakpoint that will evaporate an end of command
1869 at address specified by SAL.
1870 Restrict it to frame FRAME if FRAME is nonzero. */
1873 set_momentary_breakpoint (sal, frame, type)
1874 struct symtab_and_line sal;
1878 register struct breakpoint *b;
1879 b = set_raw_breakpoint (sal);
1881 b->enable = enabled;
1882 b->disposition = donttouch;
1883 b->frame = (frame ? FRAME_FP (frame) : 0);
1889 clear_momentary_breakpoints ()
1891 register struct breakpoint *b;
1893 if (b->disposition == delete)
1895 delete_breakpoint (b);
1901 /* Tell the user we have just set a breakpoint B. */
1904 struct breakpoint *b;
1909 printf_filtered ("Watchpoint %d: ", b->number);
1910 print_expression (b->exp, gdb_stdout);
1912 case bp_hardware_watchpoint:
1913 printf_filtered ("Hardware watchpoint %d: ", b->number);
1914 print_expression (b->exp, gdb_stdout);
1917 printf_filtered ("Breakpoint %d at ", b->number);
1918 print_address_numeric (b->address, gdb_stdout);
1920 printf_filtered (": file %s, line %d.",
1921 b->source_file, b->line_number);
1926 case bp_longjmp_resume:
1927 case bp_step_resume:
1928 case bp_through_sigtramp:
1930 case bp_watchpoint_scope:
1933 printf_filtered ("\n");
1937 /* Nobody calls this currently. */
1938 /* Set a breakpoint from a symtab and line.
1939 If TEMPFLAG is nonzero, it is a temporary breakpoint.
1940 ADDR_STRING is a malloc'd string holding the name of where we are
1941 setting the breakpoint. This is used later to re-set it after the
1942 program is relinked and symbols are reloaded.
1943 Print the same confirmation messages that the breakpoint command prints. */
1946 set_breakpoint (s, line, tempflag, addr_string)
1952 register struct breakpoint *b;
1953 struct symtab_and_line sal;
1958 resolve_sal_pc (&sal); /* Might error out */
1959 describe_other_breakpoints (sal.pc);
1961 b = set_raw_breakpoint (sal);
1962 set_breakpoint_count (breakpoint_count + 1);
1963 b->number = breakpoint_count;
1964 b->type = bp_breakpoint;
1966 b->addr_string = addr_string;
1967 b->enable = enabled;
1968 b->disposition = tempflag ? delete : donttouch;
1974 /* Set a breakpoint according to ARG (function, linenum or *address)
1975 and make it temporary if TEMPFLAG is nonzero. */
1978 break_command_1 (arg, tempflag, from_tty)
1980 int tempflag, from_tty;
1982 struct symtabs_and_lines sals;
1983 struct symtab_and_line sal;
1984 register struct expression *cond = 0;
1985 register struct breakpoint *b;
1987 /* Pointers in arg to the start, and one past the end, of the condition. */
1988 char *cond_start = NULL;
1989 char *cond_end = NULL;
1990 /* Pointers in arg to the start, and one past the end,
1991 of the address part. */
1992 char *addr_start = NULL;
1993 char *addr_end = NULL;
1994 struct cleanup *old_chain;
1995 struct cleanup *canonical_strings_chain = NULL;
1996 char **canonical = (char **)NULL;
2003 sal.line = sal.pc = sal.end = 0;
2006 /* If no arg given, or if first arg is 'if ', use the default breakpoint. */
2008 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
2009 && (arg[2] == ' ' || arg[2] == '\t')))
2011 if (default_breakpoint_valid)
2013 sals.sals = (struct symtab_and_line *)
2014 xmalloc (sizeof (struct symtab_and_line));
2015 sal.pc = default_breakpoint_address;
2016 sal.line = default_breakpoint_line;
2017 sal.symtab = default_breakpoint_symtab;
2022 error ("No default breakpoint address now.");
2028 /* Force almost all breakpoints to be in terms of the
2029 current_source_symtab (which is decode_line_1's default). This
2030 should produce the results we want almost all of the time while
2031 leaving default_breakpoint_* alone. */
2032 if (default_breakpoint_valid
2033 && (!current_source_symtab
2034 || (arg && (*arg == '+' || *arg == '-'))))
2035 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
2036 default_breakpoint_line, &canonical);
2038 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0, &canonical);
2046 /* Make sure that all storage allocated in decode_line_1 gets freed in case
2047 the following `for' loop errors out. */
2048 old_chain = make_cleanup (free, sals.sals);
2049 if (canonical != (char **)NULL)
2051 make_cleanup (free, canonical);
2052 canonical_strings_chain = make_cleanup (null_cleanup, 0);
2053 for (i = 0; i < sals.nelts; i++)
2055 if (canonical[i] != NULL)
2056 make_cleanup (free, canonical[i]);
2060 thread = -1; /* No specific thread yet */
2062 /* Resolve all line numbers to PC's, and verify that conditions
2063 can be parsed, before setting any breakpoints. */
2064 for (i = 0; i < sals.nelts; i++)
2066 char *tok, *end_tok;
2069 resolve_sal_pc (&sals.sals[i]);
2075 while (*tok == ' ' || *tok == '\t')
2080 while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
2083 toklen = end_tok - tok;
2085 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
2087 tok = cond_start = end_tok + 1;
2088 cond = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
2091 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
2097 thread = strtol (tok, &tok, 0);
2099 error ("Junk after thread keyword.");
2100 if (!valid_thread_id (thread))
2101 error ("Unknown thread %d\n", thread);
2104 error ("Junk at end of arguments.");
2108 /* Remove the canonical strings from the cleanup, they are needed below. */
2109 if (canonical != (char **)NULL)
2110 discard_cleanups (canonical_strings_chain);
2112 /* Now set all the breakpoints. */
2113 for (i = 0; i < sals.nelts; i++)
2118 describe_other_breakpoints (sal.pc);
2120 b = set_raw_breakpoint (sal);
2121 set_breakpoint_count (breakpoint_count + 1);
2122 b->number = breakpoint_count;
2123 b->type = bp_breakpoint;
2127 /* If a canonical line spec is needed use that instead of the
2129 if (canonical != (char **)NULL && canonical[i] != NULL)
2130 b->addr_string = canonical[i];
2131 else if (addr_start)
2132 b->addr_string = savestring (addr_start, addr_end - addr_start);
2134 b->cond_string = savestring (cond_start, cond_end - cond_start);
2136 b->enable = enabled;
2137 b->disposition = tempflag ? delete : donttouch;
2144 printf_filtered ("Multiple breakpoints were set.\n");
2145 printf_filtered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
2147 do_cleanups (old_chain);
2150 /* Helper function for break_command_1 and disassemble_command. */
2153 resolve_sal_pc (sal)
2154 struct symtab_and_line *sal;
2158 if (sal->pc == 0 && sal->symtab != 0)
2160 pc = find_line_pc (sal->symtab, sal->line);
2162 error ("No line %d in file \"%s\".",
2163 sal->line, sal->symtab->filename);
2169 break_command (arg, from_tty)
2173 break_command_1 (arg, 0, from_tty);
2177 tbreak_command (arg, from_tty)
2181 break_command_1 (arg, 1, from_tty);
2186 watch_command (arg, from_tty)
2190 struct breakpoint *b;
2191 struct symtab_and_line sal;
2192 struct expression *exp;
2193 struct block *exp_valid_block;
2195 FRAME frame, prev_frame;
2201 /* Parse arguments. */
2202 innermost_block = NULL;
2203 exp = parse_expression (arg);
2204 exp_valid_block = innermost_block;
2205 val = evaluate_expression (exp);
2206 release_value (val);
2207 if (VALUE_LAZY (val))
2208 value_fetch_lazy (val);
2210 /* Now set up the breakpoint. */
2211 b = set_raw_breakpoint (sal);
2212 set_breakpoint_count (breakpoint_count + 1);
2213 b->number = breakpoint_count;
2214 b->disposition = donttouch;
2216 b->exp_valid_block = exp_valid_block;
2219 b->cond_string = NULL;
2220 b->exp_string = savestring (arg, strlen (arg));
2222 frame = block_innermost_frame (exp_valid_block);
2225 prev_frame = get_prev_frame (frame);
2226 b->watchpoint_frame = FRAME_FP (frame);
2229 b->watchpoint_frame = NULL;
2231 if (can_use_hardware_watchpoint (b))
2232 b->type = bp_hardware_watchpoint;
2234 b->type = bp_watchpoint;
2236 /* If the expression is "local", then set up a "watchpoint scope"
2237 breakpoint at the point where we've left the scope of the watchpoint
2239 if (innermost_block)
2241 struct breakpoint *scope_breakpoint;
2242 struct symtab_and_line scope_sal;
2246 scope_sal.pc = get_frame_pc (prev_frame);
2247 scope_sal.symtab = NULL;
2250 scope_breakpoint = set_raw_breakpoint (scope_sal);
2251 set_breakpoint_count (breakpoint_count + 1);
2252 scope_breakpoint->number = breakpoint_count;
2254 scope_breakpoint->type = bp_watchpoint_scope;
2255 scope_breakpoint->enable = enabled;
2257 /* Automatically delete the breakpoint when it hits. */
2258 scope_breakpoint->disposition = delete;
2260 /* Only break in the proper frame (help with recursion). */
2261 scope_breakpoint->frame = prev_frame->frame;
2263 /* Set the address at which we will stop. */
2264 scope_breakpoint->address = get_frame_pc (prev_frame);
2266 /* The scope breakpoint is related to the watchpoint. We
2267 will need to act on them together. */
2268 b->related_breakpoint = scope_breakpoint;
2275 /* Return nonzero if the watchpoint described by B can be handled
2276 completely in hardware. If the watchpoint can not be handled
2277 in hardware return zero. */
2280 can_use_hardware_watchpoint (b)
2281 struct breakpoint *b;
2283 value_ptr mark = value_mark ();
2284 value_ptr v = evaluate_expression (b->exp);
2285 int found_memory = 0;
2287 /* Make sure all the intermediate values are in memory. Also make sure
2288 we found at least one memory expression. Guards against watch 0x12345,
2289 which is meaningless, but could cause errors if one tries to insert a
2290 hardware watchpoint for the constant expression. */
2291 for ( ; v != mark; v = v->next)
2293 if (!(v->lval == lval_memory)
2294 || v->lval == not_lval
2295 || (v->lval != not_lval
2296 && v->modifiable == false))
2299 if (v->lval == lval_memory)
2303 /* The expression itself looks suitable for using a hardware
2304 watchpoint, but give the target machine a chance to reject it. */
2305 return found_memory && TARGET_CAN_USE_HARDWARE_WATCHPOINT (b);
2310 * Helper routine for the until_command routine in infcmd.c. Here
2311 * because it uses the mechanisms of breakpoints.
2315 until_break_command (arg, from_tty)
2319 struct symtabs_and_lines sals;
2320 struct symtab_and_line sal;
2321 FRAME prev_frame = get_prev_frame (selected_frame);
2322 struct breakpoint *breakpoint;
2323 struct cleanup *old_chain;
2325 clear_proceed_status ();
2327 /* Set a breakpoint where the user wants it and at return from
2330 if (default_breakpoint_valid)
2331 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
2332 default_breakpoint_line, (char ***)NULL);
2334 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0, (char ***)NULL);
2336 if (sals.nelts != 1)
2337 error ("Couldn't get information on specified line.");
2340 free ((PTR)sals.sals); /* malloc'd, so freed */
2343 error ("Junk at end of arguments.");
2345 resolve_sal_pc (&sal);
2347 breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
2349 old_chain = make_cleanup(delete_breakpoint, breakpoint);
2351 /* Keep within the current frame */
2355 struct frame_info *fi;
2357 fi = get_frame_info (prev_frame);
2358 sal = find_pc_line (fi->pc, 0);
2360 breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
2361 make_cleanup(delete_breakpoint, breakpoint);
2364 proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
2365 do_cleanups(old_chain);
2369 /* These aren't used; I don't konw what they were for. */
2370 /* Set a breakpoint at the catch clause for NAME. */
2372 catch_breakpoint (name)
2378 disable_catch_breakpoint ()
2383 delete_catch_breakpoint ()
2388 enable_catch_breakpoint ()
2395 struct sal_chain *next;
2396 struct symtab_and_line sal;
2400 /* This isn't used; I don't know what it was for. */
2401 /* For each catch clause identified in ARGS, run FUNCTION
2402 with that clause as an argument. */
2403 static struct symtabs_and_lines
2404 map_catch_names (args, function)
2408 register char *p = args;
2410 struct symtabs_and_lines sals;
2412 struct sal_chain *sal_chain = 0;
2416 error_no_arg ("one or more catch names");
2424 /* Don't swallow conditional part. */
2425 if (p1[0] == 'i' && p1[1] == 'f'
2426 && (p1[2] == ' ' || p1[2] == '\t'))
2432 while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
2436 if (*p1 && *p1 != ' ' && *p1 != '\t')
2437 error ("Arguments must be catch names.");
2443 struct sal_chain *next
2444 = (struct sal_chain *)alloca (sizeof (struct sal_chain));
2445 next->next = sal_chain;
2446 next->sal = get_catch_sal (p);
2451 printf_unfiltered ("No catch clause for exception %s.\n", p);
2456 while (*p == ' ' || *p == '\t') p++;
2461 /* This shares a lot of code with `print_frame_label_vars' from stack.c. */
2463 static struct symtabs_and_lines
2464 get_catch_sals (this_level_only)
2465 int this_level_only;
2467 register struct blockvector *bl;
2468 register struct block *block;
2469 int index, have_default = 0;
2470 struct frame_info *fi;
2472 struct symtabs_and_lines sals;
2473 struct sal_chain *sal_chain = 0;
2474 char *blocks_searched;
2476 /* Not sure whether an error message is always the correct response,
2477 but it's better than a core dump. */
2478 if (selected_frame == NULL)
2479 error ("No selected frame.");
2480 block = get_frame_block (selected_frame);
2481 fi = get_frame_info (selected_frame);
2488 error ("No symbol table info available.\n");
2490 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
2491 blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
2492 memset (blocks_searched, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
2496 CORE_ADDR end = BLOCK_END (block) - 4;
2499 if (bl != blockvector_for_pc (end, &index))
2500 error ("blockvector blotch");
2501 if (BLOCKVECTOR_BLOCK (bl, index) != block)
2502 error ("blockvector botch");
2503 last_index = BLOCKVECTOR_NBLOCKS (bl);
2506 /* Don't print out blocks that have gone by. */
2507 while (index < last_index
2508 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
2511 while (index < last_index
2512 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
2514 if (blocks_searched[index] == 0)
2516 struct block *b = BLOCKVECTOR_BLOCK (bl, index);
2519 register struct symbol *sym;
2521 nsyms = BLOCK_NSYMS (b);
2523 for (i = 0; i < nsyms; i++)
2525 sym = BLOCK_SYM (b, i);
2526 if (STREQ (SYMBOL_NAME (sym), "default"))
2532 if (SYMBOL_CLASS (sym) == LOC_LABEL)
2534 struct sal_chain *next = (struct sal_chain *)
2535 alloca (sizeof (struct sal_chain));
2536 next->next = sal_chain;
2537 next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
2541 blocks_searched[index] = 1;
2547 if (sal_chain && this_level_only)
2550 /* After handling the function's top-level block, stop.
2551 Don't continue to its superblock, the block of
2552 per-file symbols. */
2553 if (BLOCK_FUNCTION (block))
2555 block = BLOCK_SUPERBLOCK (block);
2560 struct sal_chain *tmp_chain;
2562 /* Count the number of entries. */
2563 for (index = 0, tmp_chain = sal_chain; tmp_chain;
2564 tmp_chain = tmp_chain->next)
2568 sals.sals = (struct symtab_and_line *)
2569 xmalloc (index * sizeof (struct symtab_and_line));
2570 for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
2571 sals.sals[index] = sal_chain->sal;
2577 /* Commands to deal with catching exceptions. */
2580 catch_command_1 (arg, tempflag, from_tty)
2585 /* First, translate ARG into something we can deal with in terms
2588 struct symtabs_and_lines sals;
2589 struct symtab_and_line sal;
2590 register struct expression *cond = 0;
2591 register struct breakpoint *b;
2595 sal.line = sal.pc = sal.end = 0;
2598 /* If no arg given, or if first arg is 'if ', all active catch clauses
2599 are breakpointed. */
2601 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
2602 && (arg[2] == ' ' || arg[2] == '\t')))
2604 /* Grab all active catch clauses. */
2605 sals = get_catch_sals (0);
2609 /* Grab selected catch clauses. */
2610 error ("catch NAME not implemented");
2612 /* This isn't used; I don't know what it was for. */
2613 sals = map_catch_names (arg, catch_breakpoint);
2621 for (i = 0; i < sals.nelts; i++)
2623 resolve_sal_pc (&sals.sals[i]);
2627 if (arg[0] == 'i' && arg[1] == 'f'
2628 && (arg[2] == ' ' || arg[2] == '\t'))
2629 cond = parse_exp_1 ((arg += 2, &arg),
2630 block_for_pc (sals.sals[i].pc), 0);
2632 error ("Junk at end of arguments.");
2637 for (i = 0; i < sals.nelts; i++)
2642 describe_other_breakpoints (sal.pc);
2644 b = set_raw_breakpoint (sal);
2645 set_breakpoint_count (breakpoint_count + 1);
2646 b->number = breakpoint_count;
2647 b->type = bp_breakpoint;
2649 b->enable = enabled;
2650 b->disposition = tempflag ? delete : donttouch;
2657 printf_unfiltered ("Multiple breakpoints were set.\n");
2658 printf_unfiltered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
2660 free ((PTR)sals.sals);
2664 /* These aren't used; I don't know what they were for. */
2665 /* Disable breakpoints on all catch clauses described in ARGS. */
2667 disable_catch (args)
2670 /* Map the disable command to catch clauses described in ARGS. */
2673 /* Enable breakpoints on all catch clauses described in ARGS. */
2678 /* Map the disable command to catch clauses described in ARGS. */
2681 /* Delete breakpoints on all catch clauses in the active scope. */
2686 /* Map the delete command to catch clauses described in ARGS. */
2691 catch_command (arg, from_tty)
2695 catch_command_1 (arg, 0, from_tty);
2699 clear_command (arg, from_tty)
2703 register struct breakpoint *b, *b1;
2704 struct symtabs_and_lines sals;
2705 struct symtab_and_line sal;
2706 register struct breakpoint *found;
2711 sals = decode_line_spec (arg, 1);
2715 sals.sals = (struct symtab_and_line *) xmalloc (sizeof (struct symtab_and_line));
2716 sal.line = default_breakpoint_line;
2717 sal.symtab = default_breakpoint_symtab;
2719 if (sal.symtab == 0)
2720 error ("No source file specified.");
2726 for (i = 0; i < sals.nelts; i++)
2728 /* If exact pc given, clear bpts at that pc.
2729 But if sal.pc is zero, clear all bpts on specified line. */
2731 found = (struct breakpoint *) 0;
2732 while (breakpoint_chain
2734 ? breakpoint_chain->address == sal.pc
2735 : (breakpoint_chain->source_file != NULL
2736 && sal.symtab != NULL
2737 && STREQ (breakpoint_chain->source_file,
2738 sal.symtab->filename)
2739 && breakpoint_chain->line_number == sal.line)))
2741 b1 = breakpoint_chain;
2742 breakpoint_chain = b1->next;
2749 && b->next->type != bp_watchpoint
2750 && b->next->type != bp_hardware_watchpoint
2752 ? b->next->address == sal.pc
2753 : (b->next->source_file != NULL
2754 && sal.symtab != NULL
2755 && STREQ (b->next->source_file, sal.symtab->filename)
2756 && b->next->line_number == sal.line)))
2767 error ("No breakpoint at %s.", arg);
2769 error ("No breakpoint at this line.");
2772 if (found->next) from_tty = 1; /* Always report if deleted more than one */
2773 if (from_tty) printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
2776 if (from_tty) printf_unfiltered ("%d ", found->number);
2778 delete_breakpoint (found);
2781 if (from_tty) putchar_unfiltered ('\n');
2783 free ((PTR)sals.sals);
2786 /* Delete breakpoint in BS if they are `delete' breakpoints.
2787 This is called after any breakpoint is hit, or after errors. */
2790 breakpoint_auto_delete (bs)
2793 for (; bs; bs = bs->next)
2794 if (bs->breakpoint_at && bs->breakpoint_at->disposition == delete
2796 delete_breakpoint (bs->breakpoint_at);
2799 /* Delete a breakpoint and clean up all traces of it in the data structures. */
2802 delete_breakpoint (bpt)
2803 struct breakpoint *bpt;
2805 register struct breakpoint *b;
2809 remove_breakpoint (bpt);
2811 if (breakpoint_chain == bpt)
2812 breakpoint_chain = bpt->next;
2817 b->next = bpt->next;
2821 check_duplicates (bpt->address);
2822 /* If this breakpoint was inserted, and there is another breakpoint
2823 at the same address, we need to insert the other breakpoint. */
2825 && bpt->type != bp_hardware_watchpoint)
2828 if (b->address == bpt->address
2830 && b->enable != disabled)
2833 val = target_insert_breakpoint (b->address, b->shadow_contents);
2836 target_terminal_ours_for_output ();
2837 fprintf_unfiltered (gdb_stderr, "Cannot insert breakpoint %d:\n", b->number);
2838 memory_error (val, b->address); /* which bombs us out */
2845 free_command_lines (&bpt->commands);
2848 if (bpt->cond_string != NULL)
2849 free (bpt->cond_string);
2850 if (bpt->addr_string != NULL)
2851 free (bpt->addr_string);
2852 if (bpt->exp_string != NULL)
2853 free (bpt->exp_string);
2854 if (bpt->source_file != NULL)
2855 free (bpt->source_file);
2857 if (xgdb_verbose && bpt->type == bp_breakpoint)
2859 target_terminal_ours_for_output ();
2860 printf_unfiltered ("breakpoint #%d deleted\n", bpt->number);
2863 /* Be sure no bpstat's are pointing at it after it's been freed. */
2864 /* FIXME, how can we find all bpstat's?
2865 We just check stop_bpstat for now. */
2866 for (bs = stop_bpstat; bs; bs = bs->next)
2867 if (bs->breakpoint_at == bpt)
2868 bs->breakpoint_at = NULL;
2873 delete_command (arg, from_tty)
2880 /* Ask user only if there are some breakpoints to delete. */
2882 || (breakpoint_chain && query ("Delete all breakpoints? ", 0, 0)))
2884 /* No arg; clear all breakpoints. */
2885 while (breakpoint_chain)
2886 delete_breakpoint (breakpoint_chain);
2890 map_breakpoint_numbers (arg, delete_breakpoint);
2893 /* Reset a breakpoint given it's struct breakpoint * BINT.
2894 The value we return ends up being the return value from catch_errors.
2895 Unused in this case. */
2898 breakpoint_re_set_one (bint)
2901 struct breakpoint *b = (struct breakpoint *)bint; /* get past catch_errs */
2903 struct symtabs_and_lines sals;
2905 enum enable save_enable;
2910 if (b->addr_string == NULL)
2912 /* Anything without a string can't be re-set. */
2913 delete_breakpoint (b);
2916 /* In case we have a problem, disable this breakpoint. We'll restore
2917 its status if we succeed. */
2918 save_enable = b->enable;
2919 b->enable = disabled;
2922 sals = decode_line_1 (&s, 1, (struct symtab *)NULL, 0, (char ***)NULL);
2923 for (i = 0; i < sals.nelts; i++)
2925 resolve_sal_pc (&sals.sals[i]);
2927 /* Reparse conditions, they might contain references to the
2929 if (b->cond_string != NULL)
2933 free ((PTR)b->cond);
2934 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
2937 /* We need to re-set the breakpoint if the address changes...*/
2938 if (b->address != sals.sals[i].pc
2939 /* ...or new and old breakpoints both have source files, and
2940 the source file name or the line number changes... */
2941 || (b->source_file != NULL
2942 && sals.sals[i].symtab != NULL
2943 && (!STREQ (b->source_file, sals.sals[i].symtab->filename)
2944 || b->line_number != sals.sals[i].line)
2946 /* ...or we switch between having a source file and not having
2948 || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
2951 if (b->source_file != NULL)
2952 free (b->source_file);
2953 if (sals.sals[i].symtab == NULL)
2954 b->source_file = NULL;
2957 savestring (sals.sals[i].symtab->filename,
2958 strlen (sals.sals[i].symtab->filename));
2959 b->line_number = sals.sals[i].line;
2960 b->address = sals.sals[i].pc;
2962 check_duplicates (b->address);
2966 b->enable = save_enable; /* Restore it, this worked. */
2968 free ((PTR)sals.sals);
2972 case bp_hardware_watchpoint:
2973 innermost_block = NULL;
2974 /* The issue arises of what context to evaluate this in. The same
2975 one as when it was set, but what does that mean when symbols have
2976 been re-read? We could save the filename and functionname, but
2977 if the context is more local than that, the best we could do would
2978 be something like how many levels deep and which index at that
2979 particular level, but that's going to be less stable than filenames
2980 or functionnames. */
2981 /* So for now, just use a global context. */
2982 b->exp = parse_expression (b->exp_string);
2983 b->exp_valid_block = innermost_block;
2984 b->val = evaluate_expression (b->exp);
2985 release_value (b->val);
2986 if (VALUE_LAZY (b->val))
2987 value_fetch_lazy (b->val);
2989 if (b->cond_string != NULL)
2992 b->cond = parse_exp_1 (&s, (struct block *)0, 0);
2994 if (b->enable == enabled)
2999 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
3004 case bp_longjmp_resume:
3005 case bp_watchpoint_scope:
3007 delete_breakpoint (b);
3014 /* Re-set all breakpoints after symbols have been re-loaded. */
3016 breakpoint_re_set ()
3018 struct breakpoint *b, *temp;
3019 static char message1[] = "Error in re-setting breakpoint %d:\n";
3020 char message[sizeof (message1) + 30 /* slop */];
3022 ALL_BREAKPOINTS_SAFE (b, temp)
3024 sprintf (message, message1, b->number); /* Format possible error msg */
3025 catch_errors (breakpoint_re_set_one, (char *) b, message,
3029 create_longjmp_breakpoint("longjmp");
3030 create_longjmp_breakpoint("_longjmp");
3031 create_longjmp_breakpoint("siglongjmp");
3032 create_longjmp_breakpoint(NULL);
3035 /* Took this out (temporaliy at least), since it produces an extra
3036 blank line at startup. This messes up the gdbtests. -PB */
3037 /* Blank line to finish off all those mention() messages we just printed. */
3038 printf_filtered ("\n");
3042 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
3043 If from_tty is nonzero, it prints a message to that effect,
3044 which ends with a period (no newline). */
3047 set_ignore_count (bptnum, count, from_tty)
3048 int bptnum, count, from_tty;
3050 register struct breakpoint *b;
3056 if (b->number == bptnum)
3058 b->ignore_count = count;
3061 else if (count == 0)
3062 printf_filtered ("Will stop next time breakpoint %d is reached.",
3064 else if (count == 1)
3065 printf_filtered ("Will ignore next crossing of breakpoint %d.",
3068 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
3073 error ("No breakpoint number %d.", bptnum);
3076 /* Clear the ignore counts of all breakpoints. */
3078 breakpoint_clear_ignore_counts ()
3080 struct breakpoint *b;
3083 b->ignore_count = 0;
3086 /* Command to set ignore-count of breakpoint N to COUNT. */
3089 ignore_command (args, from_tty)
3097 error_no_arg ("a breakpoint number");
3099 num = get_number (&p);
3102 error ("Second argument (specified ignore-count) is missing.");
3104 set_ignore_count (num,
3105 longest_to_int (value_as_long (parse_and_eval (p))),
3107 printf_filtered ("\n");
3110 /* Call FUNCTION on each of the breakpoints
3111 whose numbers are given in ARGS. */
3114 map_breakpoint_numbers (args, function)
3116 void (*function) PARAMS ((struct breakpoint *));
3118 register char *p = args;
3121 register struct breakpoint *b;
3124 error_no_arg ("one or more breakpoint numbers");
3130 num = get_number (&p1);
3133 if (b->number == num)
3135 struct breakpoint *related_breakpoint = b->related_breakpoint;
3137 if (related_breakpoint)
3138 function (related_breakpoint);
3141 printf_unfiltered ("No breakpoint number %d.\n", num);
3148 enable_breakpoint (bpt)
3149 struct breakpoint *bpt;
3151 FRAME save_selected_frame = NULL;
3152 int save_selected_frame_level = -1;
3154 bpt->enable = enabled;
3156 if (xgdb_verbose && bpt->type == bp_breakpoint)
3157 printf_unfiltered ("breakpoint #%d enabled\n", bpt->number);
3159 check_duplicates (bpt->address);
3160 if (bpt->type == bp_watchpoint || bpt->type == bp_hardware_watchpoint)
3162 if (bpt->exp_valid_block != NULL)
3164 FRAME fr = find_frame_addr_in_frame_chain (bpt->watchpoint_frame);
3168 Cannot enable watchpoint %d because the block in which its expression\n\
3169 is valid is not currently in scope.\n", bpt->number);
3170 bpt->enable = disabled;
3174 save_selected_frame = selected_frame;
3175 save_selected_frame_level = selected_frame_level;
3176 select_frame (fr, -1);
3179 value_free (bpt->val);
3181 bpt->val = evaluate_expression (bpt->exp);
3182 release_value (bpt->val);
3183 if (VALUE_LAZY (bpt->val))
3184 value_fetch_lazy (bpt->val);
3186 if (save_selected_frame_level >= 0)
3187 select_frame (save_selected_frame, save_selected_frame_level);
3193 enable_command (args, from_tty)
3197 struct breakpoint *bpt;
3199 ALL_BREAKPOINTS (bpt)
3204 case bp_hardware_watchpoint:
3205 enable_breakpoint (bpt);
3210 map_breakpoint_numbers (args, enable_breakpoint);
3214 disable_breakpoint (bpt)
3215 struct breakpoint *bpt;
3217 /* Never disable a watchpoint scope breakpoint; we want to
3218 hit them when we leave scope so we can delete both the
3219 watchpoint and its scope breakpoint at that time. */
3220 if (bpt->type == bp_watchpoint_scope)
3223 bpt->enable = disabled;
3225 if (xgdb_verbose && bpt->type == bp_breakpoint)
3226 printf_filtered ("breakpoint #%d disabled\n", bpt->number);
3228 check_duplicates (bpt->address);
3233 disable_command (args, from_tty)
3237 register struct breakpoint *bpt;
3239 ALL_BREAKPOINTS (bpt)
3244 case bp_hardware_watchpoint:
3245 disable_breakpoint (bpt);
3250 map_breakpoint_numbers (args, disable_breakpoint);
3254 enable_once_breakpoint (bpt)
3255 struct breakpoint *bpt;
3257 bpt->enable = enabled;
3258 bpt->disposition = disable;
3260 check_duplicates (bpt->address);
3265 enable_once_command (args, from_tty)
3269 map_breakpoint_numbers (args, enable_once_breakpoint);
3273 enable_delete_breakpoint (bpt)
3274 struct breakpoint *bpt;
3276 bpt->enable = enabled;
3277 bpt->disposition = delete;
3279 check_duplicates (bpt->address);
3284 enable_delete_command (args, from_tty)
3288 map_breakpoint_numbers (args, enable_delete_breakpoint);
3292 * Use default_breakpoint_'s, or nothing if they aren't valid.
3294 struct symtabs_and_lines
3295 decode_line_spec_1 (string, funfirstline)
3299 struct symtabs_and_lines sals;
3301 error ("Empty line specification.");
3302 if (default_breakpoint_valid)
3303 sals = decode_line_1 (&string, funfirstline,
3304 default_breakpoint_symtab, default_breakpoint_line,
3307 sals = decode_line_1 (&string, funfirstline,
3308 (struct symtab *)NULL, 0, (char ***)NULL);
3310 error ("Junk at end of line specification: %s", string);
3315 _initialize_breakpoint ()
3317 breakpoint_chain = 0;
3318 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
3319 before a breakpoint is set. */
3320 breakpoint_count = 0;
3322 add_com ("ignore", class_breakpoint, ignore_command,
3323 "Set ignore-count of breakpoint number N to COUNT.");
3325 add_com ("commands", class_breakpoint, commands_command,
3326 "Set commands to be executed when a breakpoint is hit.\n\
3327 Give breakpoint number as argument after \"commands\".\n\
3328 With no argument, the targeted breakpoint is the last one set.\n\
3329 The commands themselves follow starting on the next line.\n\
3330 Type a line containing \"end\" to indicate the end of them.\n\
3331 Give \"silent\" as the first line to make the breakpoint silent;\n\
3332 then no output is printed when it is hit, except what the commands print.");
3334 add_com ("condition", class_breakpoint, condition_command,
3335 "Specify breakpoint number N to break only if COND is true.\n\
3336 N is an integer; COND is an expression to be evaluated whenever\n\
3337 breakpoint N is reached. ");
3339 add_com ("tbreak", class_breakpoint, tbreak_command,
3340 "Set a temporary breakpoint. Args like \"break\" command.\n\
3341 Like \"break\" except the breakpoint is only temporary,\n\
3342 so it will be deleted when hit. Equivalent to \"break\" followed\n\
3343 by using \"enable delete\" on the breakpoint number.");
3345 add_prefix_cmd ("enable", class_breakpoint, enable_command,
3346 "Enable some breakpoints.\n\
3347 Give breakpoint numbers (separated by spaces) as arguments.\n\
3348 With no subcommand, breakpoints are enabled until you command otherwise.\n\
3349 This is used to cancel the effect of the \"disable\" command.\n\
3350 With a subcommand you can enable temporarily.",
3351 &enablelist, "enable ", 1, &cmdlist);
3353 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
3354 "Enable some breakpoints.\n\
3355 Give breakpoint numbers (separated by spaces) as arguments.\n\
3356 This is used to cancel the effect of the \"disable\" command.\n\
3357 May be abbreviated to simply \"enable\".\n",
3358 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
3360 add_cmd ("once", no_class, enable_once_command,
3361 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
3362 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
3365 add_cmd ("delete", no_class, enable_delete_command,
3366 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
3367 If a breakpoint is hit while enabled in this fashion, it is deleted.",
3370 add_cmd ("delete", no_class, enable_delete_command,
3371 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
3372 If a breakpoint is hit while enabled in this fashion, it is deleted.",
3375 add_cmd ("once", no_class, enable_once_command,
3376 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
3377 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
3380 add_prefix_cmd ("disable", class_breakpoint, disable_command,
3381 "Disable some breakpoints.\n\
3382 Arguments are breakpoint numbers with spaces in between.\n\
3383 To disable all breakpoints, give no argument.\n\
3384 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
3385 &disablelist, "disable ", 1, &cmdlist);
3386 add_com_alias ("dis", "disable", class_breakpoint, 1);
3387 add_com_alias ("disa", "disable", class_breakpoint, 1);
3389 add_cmd ("breakpoints", class_alias, disable_command,
3390 "Disable some breakpoints.\n\
3391 Arguments are breakpoint numbers with spaces in between.\n\
3392 To disable all breakpoints, give no argument.\n\
3393 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
3394 This command may be abbreviated \"disable\".",
3397 add_prefix_cmd ("delete", class_breakpoint, delete_command,
3398 "Delete some breakpoints or auto-display expressions.\n\
3399 Arguments are breakpoint numbers with spaces in between.\n\
3400 To delete all breakpoints, give no argument.\n\
3402 Also a prefix command for deletion of other GDB objects.\n\
3403 The \"unset\" command is also an alias for \"delete\".",
3404 &deletelist, "delete ", 1, &cmdlist);
3405 add_com_alias ("d", "delete", class_breakpoint, 1);
3407 add_cmd ("breakpoints", class_alias, delete_command,
3408 "Delete some breakpoints or auto-display expressions.\n\
3409 Arguments are breakpoint numbers with spaces in between.\n\
3410 To delete all breakpoints, give no argument.\n\
3411 This command may be abbreviated \"delete\".",
3414 add_com ("clear", class_breakpoint, clear_command,
3415 "Clear breakpoint at specified line or function.\n\
3416 Argument may be line number, function name, or \"*\" and an address.\n\
3417 If line number is specified, all breakpoints in that line are cleared.\n\
3418 If function is specified, breakpoints at beginning of function are cleared.\n\
3419 If an address is specified, breakpoints at that address are cleared.\n\n\
3420 With no argument, clears all breakpoints in the line that the selected frame\n\
3423 See also the \"delete\" command which clears breakpoints by number.");
3425 add_com ("break", class_breakpoint, break_command,
3426 "Set breakpoint at specified line or function.\n\
3427 Argument may be line number, function name, or \"*\" and an address.\n\
3428 If line number is specified, break at start of code for that line.\n\
3429 If function is specified, break at start of code for that function.\n\
3430 If an address is specified, break at that exact address.\n\
3431 With no arg, uses current execution address of selected stack frame.\n\
3432 This is useful for breaking on return to a stack frame.\n\
3434 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
3436 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
3437 add_com_alias ("b", "break", class_run, 1);
3438 add_com_alias ("br", "break", class_run, 1);
3439 add_com_alias ("bre", "break", class_run, 1);
3440 add_com_alias ("brea", "break", class_run, 1);
3442 add_info ("breakpoints", breakpoints_info,
3443 "Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
3444 The \"Type\" column indicates one of:\n\
3445 \tbreakpoint - normal breakpoint\n\
3446 \twatchpoint - watchpoint\n\
3447 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
3448 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
3449 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
3450 address and file/line number respectively.\n\n\
3451 Convenience variable \"$_\" and default examine address for \"x\"\n\
3452 are set to the address of the last breakpoint listed.\n\n\
3453 Convenience variable \"$bpnum\" contains the number of the last\n\
3456 #if MAINTENANCE_CMDS
3458 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
3459 "Status of all breakpoints, or breakpoint number NUMBER.\n\
3460 The \"Type\" column indicates one of:\n\
3461 \tbreakpoint - normal breakpoint\n\
3462 \twatchpoint - watchpoint\n\
3463 \tlongjmp - internal breakpoint used to step through longjmp()\n\
3464 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
3465 \tuntil - internal breakpoint used by the \"until\" command\n\
3466 \tfinish - internal breakpoint used by the \"finish\" command\n\
3467 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
3468 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
3469 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
3470 address and file/line number respectively.\n\n\
3471 Convenience variable \"$_\" and default examine address for \"x\"\n\
3472 are set to the address of the last breakpoint listed.\n\n\
3473 Convenience variable \"$bpnum\" contains the number of the last\n\
3475 &maintenanceinfolist);
3477 #endif /* MAINTENANCE_CMDS */
3479 add_com ("catch", class_breakpoint, catch_command,
3480 "Set breakpoints to catch exceptions that are raised.\n\
3481 Argument may be a single exception to catch, multiple exceptions\n\
3482 to catch, or the default exception \"default\". If no arguments\n\
3483 are given, breakpoints are set at all exception handlers catch clauses\n\
3484 within the current scope.\n\
3486 A condition specified for the catch applies to all breakpoints set\n\
3487 with this command\n\
3489 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
3491 add_com ("watch", class_breakpoint, watch_command,
3492 "Set a watchpoint for an expression.\n\
3493 A watchpoint stops execution of your program whenever the value of\n\
3494 an expression changes.");
3496 add_info ("watchpoints", breakpoints_info,
3497 "Synonym for ``info breakpoints''.");
3500 /* OK, when we call objfile_relocate, we need to relocate breakpoints
3501 too. breakpoint_re_set is not a good choice--for example, if
3502 addr_string contains just a line number without a file name the
3503 breakpoint might get set in a different file. In general, there is
3504 no need to go all the way back to the user's string (though this might
3505 work if some effort were made to canonicalize it), since symtabs and
3506 everything except addresses are still valid.
3508 Probably the best way to solve this is to have each breakpoint save
3509 the objfile and the section number that was used to set it (if set
3510 by "*addr", probably it is best to use find_pc_line to get a symtab
3511 and use the objfile and block_line_section for that symtab). Then
3512 objfile_relocate can call fixup_breakpoints with the objfile and
3513 the new_offsets, and it can relocate only the appropriate breakpoints. */
3515 #ifdef IBM6000_TARGET
3516 /* But for now, just kludge it based on the concept that before an
3517 objfile is relocated the breakpoint is below 0x10000000, and afterwards
3518 it is higher, so that way we only relocate each breakpoint once. */
3521 fixup_breakpoints (low, high, delta)
3526 struct breakpoint *b;
3530 if (b->address >= low && b->address <= high)
3531 b->address += delta;