Remove dup inftarg.o from NATDEPFILES.
[deliverable/binutils-gdb.git] / gdb / breakpoint.c
1 /* Everything about breakpoints, for GDB.
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
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.
10
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.
15
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. */
19
20 #include "defs.h"
21 #include <ctype.h>
22 #include "symtab.h"
23 #include "frame.h"
24 #include "breakpoint.h"
25 #include "gdbtypes.h"
26 #include "expression.h"
27 #include "gdbcore.h"
28 #include "gdbcmd.h"
29 #include "value.h"
30 #include "ctype.h"
31 #include "command.h"
32 #include "inferior.h"
33 #include "target.h"
34 #include "language.h"
35 #include <string.h>
36 #include "demangle.h"
37
38 /* local function prototypes */
39
40 static void
41 catch_command_1 PARAMS ((char *, int, int));
42
43 static void
44 enable_delete_command PARAMS ((char *, int));
45
46 static void
47 enable_delete_breakpoint PARAMS ((struct breakpoint *));
48
49 static void
50 enable_once_command PARAMS ((char *, int));
51
52 static void
53 enable_once_breakpoint PARAMS ((struct breakpoint *));
54
55 static void
56 disable_command PARAMS ((char *, int));
57
58 static void
59 disable_breakpoint PARAMS ((struct breakpoint *));
60
61 static void
62 enable_command PARAMS ((char *, int));
63
64 static void
65 enable_breakpoint PARAMS ((struct breakpoint *));
66
67 static void
68 map_breakpoint_numbers PARAMS ((char *, void (*)(struct breakpoint *)));
69
70 static void
71 ignore_command PARAMS ((char *, int));
72
73 static int
74 breakpoint_re_set_one PARAMS ((char *));
75
76 static void
77 delete_command PARAMS ((char *, int));
78
79 static void
80 clear_command PARAMS ((char *, int));
81
82 static void
83 catch_command PARAMS ((char *, int));
84
85 static struct symtabs_and_lines
86 get_catch_sals PARAMS ((int));
87
88 static void
89 watch_command PARAMS ((char *, int));
90
91 static void
92 tbreak_command PARAMS ((char *, int));
93
94 static void
95 break_command_1 PARAMS ((char *, int, int));
96
97 static void
98 mention PARAMS ((struct breakpoint *));
99
100 static struct breakpoint *
101 set_raw_breakpoint PARAMS ((struct symtab_and_line));
102
103 static void
104 check_duplicates PARAMS ((CORE_ADDR));
105
106 static void
107 describe_other_breakpoints PARAMS ((CORE_ADDR));
108
109 static void
110 breakpoints_info PARAMS ((char *, int));
111
112 static void
113 breakpoint_1 PARAMS ((int, int));
114
115 static bpstat
116 bpstat_alloc PARAMS ((struct breakpoint *, bpstat));
117
118 static int
119 breakpoint_cond_eval PARAMS ((char *));
120
121 static void
122 cleanup_executing_breakpoints PARAMS ((int));
123
124 static void
125 commands_command PARAMS ((char *, int));
126
127 static void
128 condition_command PARAMS ((char *, int));
129
130 static int
131 get_number PARAMS ((char **));
132
133 static void
134 set_breakpoint_count PARAMS ((int));
135
136
137 extern int addressprint; /* Print machine addresses? */
138 extern int demangle; /* Print de-mangled symbol names? */
139
140 /* Are we executing breakpoint commands? */
141 static int executing_breakpoint_commands;
142
143 /* Walk the following statement or block through all breakpoints.
144 ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
145 breakpoint. */
146
147 #define ALL_BREAKPOINTS(b) for (b = breakpoint_chain; b; b = b->next)
148
149 #define ALL_BREAKPOINTS_SAFE(b,tmp) \
150 for (b = breakpoint_chain; \
151 b? (tmp=b->next, 1): 0; \
152 b = tmp)
153
154 /* Chain of all breakpoints defined. */
155
156 struct breakpoint *breakpoint_chain;
157
158 /* Number of last breakpoint made. */
159
160 static int breakpoint_count;
161
162 /* Set breakpoint count to NUM. */
163 static void
164 set_breakpoint_count (num)
165 int num;
166 {
167 breakpoint_count = num;
168 set_internalvar (lookup_internalvar ("bpnum"),
169 value_from_longest (builtin_type_int, (LONGEST) num));
170 }
171
172 /* Default address, symtab and line to put a breakpoint at
173 for "break" command with no arg.
174 if default_breakpoint_valid is zero, the other three are
175 not valid, and "break" with no arg is an error.
176
177 This set by print_stack_frame, which calls set_default_breakpoint. */
178
179 int default_breakpoint_valid;
180 CORE_ADDR default_breakpoint_address;
181 struct symtab *default_breakpoint_symtab;
182 int default_breakpoint_line;
183
184 /* Flag indicating extra verbosity for xgdb. */
185 extern int xgdb_verbose;
186 \f
187 /* *PP is a string denoting a breakpoint. Get the number of the breakpoint.
188 Advance *PP after the string and any trailing whitespace.
189
190 Currently the string can either be a number or "$" followed by the name
191 of a convenience variable. Making it an expression wouldn't work well
192 for map_breakpoint_numbers (e.g. "4 + 5 + 6"). */
193 static int
194 get_number (pp)
195 char **pp;
196 {
197 int retval;
198 char *p = *pp;
199
200 if (p == NULL)
201 /* Empty line means refer to the last breakpoint. */
202 return breakpoint_count;
203 else if (*p == '$')
204 {
205 /* Make a copy of the name, so we can null-terminate it
206 to pass to lookup_internalvar(). */
207 char *varname;
208 char *start = ++p;
209 value val;
210
211 while (isalnum (*p) || *p == '_')
212 p++;
213 varname = (char *) alloca (p - start + 1);
214 strncpy (varname, start, p - start);
215 varname[p - start] = '\0';
216 val = value_of_internalvar (lookup_internalvar (varname));
217 if (TYPE_CODE (VALUE_TYPE (val)) != TYPE_CODE_INT)
218 error (
219 "Convenience variables used to specify breakpoints must have integer values."
220 );
221 retval = (int) value_as_long (val);
222 }
223 else
224 {
225 if (*p == '-')
226 ++p;
227 while (*p >= '0' && *p <= '9')
228 ++p;
229 if (p == *pp)
230 /* There is no number here. (e.g. "cond a == b"). */
231 error_no_arg ("breakpoint number");
232 retval = atoi (*pp);
233 }
234 if (!(isspace (*p) || *p == '\0'))
235 error ("breakpoint number expected");
236 while (isspace (*p))
237 p++;
238 *pp = p;
239 return retval;
240 }
241 \f
242 /* condition N EXP -- set break condition of breakpoint N to EXP. */
243
244 static void
245 condition_command (arg, from_tty)
246 char *arg;
247 int from_tty;
248 {
249 register struct breakpoint *b;
250 char *p;
251 register int bnum;
252
253 if (arg == 0)
254 error_no_arg ("breakpoint number");
255
256 p = arg;
257 bnum = get_number (&p);
258
259 ALL_BREAKPOINTS (b)
260 if (b->number == bnum)
261 {
262 if (b->cond)
263 {
264 free ((PTR)b->cond);
265 b->cond = 0;
266 }
267 if (b->cond_string != NULL)
268 free ((PTR)b->cond_string);
269
270 if (*p == 0)
271 {
272 b->cond = 0;
273 b->cond_string = NULL;
274 if (from_tty)
275 printf_filtered ("Breakpoint %d now unconditional.\n", bnum);
276 }
277 else
278 {
279 arg = p;
280 /* I don't know if it matters whether this is the string the user
281 typed in or the decompiled expression. */
282 b->cond_string = savestring (arg, strlen (arg));
283 b->cond = parse_exp_1 (&arg, block_for_pc (b->address), 0);
284 if (*arg)
285 error ("Junk at end of expression");
286 }
287 return;
288 }
289
290 error ("No breakpoint number %d.", bnum);
291 }
292
293 /* ARGSUSED */
294 static void
295 commands_command (arg, from_tty)
296 char *arg;
297 int from_tty;
298 {
299 register struct breakpoint *b;
300 char *p;
301 register int bnum;
302 struct command_line *l;
303
304 /* If we allowed this, we would have problems with when to
305 free the storage, if we change the commands currently
306 being read from. */
307
308 if (executing_breakpoint_commands)
309 error ("Can't use the \"commands\" command among a breakpoint's commands.");
310
311 p = arg;
312 bnum = get_number (&p);
313 if (p && *p)
314 error ("Unexpected extra arguments following breakpoint number.");
315
316 ALL_BREAKPOINTS (b)
317 if (b->number == bnum)
318 {
319 if (from_tty && input_from_terminal_p ())
320 printf_filtered ("Type commands for when breakpoint %d is hit, one per line.\n\
321 End with a line saying just \"end\".\n", bnum);
322 l = read_command_lines ();
323 free_command_lines (&b->commands);
324 b->commands = l;
325 return;
326 }
327 error ("No breakpoint number %d.", bnum);
328 }
329 \f
330 extern int memory_breakpoint_size; /* from mem-break.c */
331
332 /* Like target_read_memory() but if breakpoints are inserted, return
333 the shadow contents instead of the breakpoints themselves.
334
335 Read "memory data" from whatever target or inferior we have.
336 Returns zero if successful, errno value if not. EIO is used
337 for address out of bounds. If breakpoints are inserted, returns
338 shadow contents, not the breakpoints themselves. From breakpoint.c. */
339
340 int
341 read_memory_nobpt (memaddr, myaddr, len)
342 CORE_ADDR memaddr;
343 char *myaddr;
344 unsigned len;
345 {
346 int status;
347 struct breakpoint *b;
348
349 if (memory_breakpoint_size < 0)
350 /* No breakpoints on this machine. */
351 return target_read_memory (memaddr, myaddr, len);
352
353 ALL_BREAKPOINTS (b)
354 {
355 if (b->type == bp_watchpoint || !b->inserted)
356 continue;
357 else if (b->address + memory_breakpoint_size <= memaddr)
358 /* The breakpoint is entirely before the chunk of memory
359 we are reading. */
360 continue;
361 else if (b->address >= memaddr + len)
362 /* The breakpoint is entirely after the chunk of memory we
363 are reading. */
364 continue;
365 else
366 {
367 /* Copy the breakpoint from the shadow contents, and recurse
368 for the things before and after. */
369
370 /* Addresses and length of the part of the breakpoint that
371 we need to copy. */
372 CORE_ADDR membpt = b->address;
373 unsigned int bptlen = memory_breakpoint_size;
374 /* Offset within shadow_contents. */
375 int bptoffset = 0;
376
377 if (membpt < memaddr)
378 {
379 /* Only copy the second part of the breakpoint. */
380 bptlen -= memaddr - membpt;
381 bptoffset = memaddr - membpt;
382 membpt = memaddr;
383 }
384
385 if (membpt + bptlen > memaddr + len)
386 {
387 /* Only copy the first part of the breakpoint. */
388 bptlen -= (membpt + bptlen) - (memaddr + len);
389 }
390
391 memcpy (myaddr + membpt - memaddr,
392 b->shadow_contents + bptoffset, bptlen);
393
394 if (membpt > memaddr)
395 {
396 /* Copy the section of memory before the breakpoint. */
397 status = read_memory_nobpt (memaddr, myaddr, membpt - memaddr);
398 if (status != 0)
399 return status;
400 }
401
402 if (membpt + bptlen < memaddr + len)
403 {
404 /* Copy the section of memory after the breakpoint. */
405 status = read_memory_nobpt
406 (membpt + bptlen,
407 myaddr + membpt + bptlen - memaddr,
408 memaddr + len - (membpt + bptlen));
409 if (status != 0)
410 return status;
411 }
412 return 0;
413 }
414 }
415 /* Nothing overlaps. Just call read_memory_noerr. */
416 return target_read_memory (memaddr, myaddr, len);
417 }
418 \f
419 /* insert_breakpoints is used when starting or continuing the program.
420 remove_breakpoints is used when the program stops.
421 Both return zero if successful,
422 or an `errno' value if could not write the inferior. */
423
424 int
425 insert_breakpoints ()
426 {
427 register struct breakpoint *b;
428 int val = 0;
429 int disabled_breaks = 0;
430
431 ALL_BREAKPOINTS (b)
432 if (b->type != bp_watchpoint
433 && b->enable != disabled
434 && ! b->inserted
435 && ! b->duplicate)
436 {
437 val = target_insert_breakpoint(b->address, b->shadow_contents);
438 if (val)
439 {
440 /* Can't set the breakpoint. */
441 #if defined (DISABLE_UNSETTABLE_BREAK)
442 if (DISABLE_UNSETTABLE_BREAK (b->address))
443 {
444 val = 0;
445 b->enable = disabled;
446 if (!disabled_breaks)
447 {
448 fprintf_filtered (stderr, "Cannot insert breakpoint %d:\n",
449 b->number);
450 printf_filtered ("Disabling shared library breakpoints:\n");
451 }
452 disabled_breaks = 1;
453 printf_filtered ("%d ", b->number);
454 }
455 else
456 #endif
457 {
458 fprintf_filtered (stderr, "Cannot insert breakpoint %d:\n",
459 b->number);
460 #ifdef ONE_PROCESS_WRITETEXT
461 fprintf_filtered (stderr,
462 "The same program may be running in another process.\n");
463 #endif
464 memory_error (val, b->address); /* which bombs us out */
465 }
466 }
467 else
468 b->inserted = 1;
469 }
470 if (disabled_breaks)
471 printf_filtered ("\n");
472 return val;
473 }
474
475 int
476 remove_breakpoints ()
477 {
478 register struct breakpoint *b;
479 int val;
480
481 #ifdef BREAKPOINT_DEBUG
482 printf_filtered ("Removing breakpoints.\n");
483 #endif /* BREAKPOINT_DEBUG */
484
485 ALL_BREAKPOINTS (b)
486 if (b->type != bp_watchpoint && b->inserted)
487 {
488 val = target_remove_breakpoint(b->address, b->shadow_contents);
489 if (val)
490 return val;
491 b->inserted = 0;
492 #ifdef BREAKPOINT_DEBUG
493 printf_filtered ("Removed breakpoint at %s",
494 local_hex_string(b->address));
495 printf_filtered (", shadow %s",
496 local_hex_string(b->shadow_contents[0]));
497 printf_filtered (", %s.\n",
498 local_hex_string(b->shadow_contents[1]));
499 #endif /* BREAKPOINT_DEBUG */
500 }
501
502 return 0;
503 }
504
505 /* Clear the "inserted" flag in all breakpoints.
506 This is done when the inferior is loaded. */
507
508 void
509 mark_breakpoints_out ()
510 {
511 register struct breakpoint *b;
512
513 ALL_BREAKPOINTS (b)
514 b->inserted = 0;
515 }
516
517 /* breakpoint_here_p (PC) returns 1 if an enabled breakpoint exists at PC.
518 When continuing from a location with a breakpoint,
519 we actually single step once before calling insert_breakpoints. */
520
521 int
522 breakpoint_here_p (pc)
523 CORE_ADDR pc;
524 {
525 register struct breakpoint *b;
526
527 ALL_BREAKPOINTS (b)
528 if (b->enable != disabled && b->address == pc)
529 return 1;
530
531 return 0;
532 }
533 \f
534 /* bpstat stuff. External routines' interfaces are documented
535 in breakpoint.h. */
536
537 /* Clear a bpstat so that it says we are not at any breakpoint.
538 Also free any storage that is part of a bpstat. */
539
540 void
541 bpstat_clear (bsp)
542 bpstat *bsp;
543 {
544 bpstat p;
545 bpstat q;
546
547 if (bsp == 0)
548 return;
549 p = *bsp;
550 while (p != NULL)
551 {
552 q = p->next;
553 if (p->old_val != NULL)
554 value_free (p->old_val);
555 free ((PTR)p);
556 p = q;
557 }
558 *bsp = NULL;
559 }
560
561 /* Return a copy of a bpstat. Like "bs1 = bs2" but all storage that
562 is part of the bpstat is copied as well. */
563
564 bpstat
565 bpstat_copy (bs)
566 bpstat bs;
567 {
568 bpstat p = NULL;
569 bpstat tmp;
570 bpstat retval;
571
572 if (bs == NULL)
573 return bs;
574
575 for (; bs != NULL; bs = bs->next)
576 {
577 tmp = (bpstat) xmalloc (sizeof (*tmp));
578 memcpy (tmp, bs, sizeof (*tmp));
579 if (p == NULL)
580 /* This is the first thing in the chain. */
581 retval = tmp;
582 else
583 p->next = tmp;
584 p = tmp;
585 }
586 p->next = NULL;
587 return retval;
588 }
589
590 /* Find the bpstat associated with this breakpoint */
591
592 bpstat
593 bpstat_find_breakpoint(bsp, breakpoint)
594 bpstat bsp;
595 struct breakpoint *breakpoint;
596 {
597 if (bsp == NULL) return NULL;
598
599 for (;bsp != NULL; bsp = bsp->next) {
600 if (bsp->breakpoint_at == breakpoint) return bsp;
601 }
602 return NULL;
603 }
604
605 /* Return the breakpoint number of the first breakpoint we are stopped
606 at. *BSP upon return is a bpstat which points to the remaining
607 breakpoints stopped at (but which is not guaranteed to be good for
608 anything but further calls to bpstat_num).
609 Return 0 if passed a bpstat which does not indicate any breakpoints. */
610
611 int
612 bpstat_num (bsp)
613 bpstat *bsp;
614 {
615 struct breakpoint *b;
616
617 if ((*bsp) == NULL)
618 return 0; /* No more breakpoint values */
619 else
620 {
621 b = (*bsp)->breakpoint_at;
622 *bsp = (*bsp)->next;
623 if (b == NULL)
624 return -1; /* breakpoint that's been deleted since */
625 else
626 return b->number; /* We have its number */
627 }
628 }
629
630 /* Modify BS so that the actions will not be performed. */
631
632 void
633 bpstat_clear_actions (bs)
634 bpstat bs;
635 {
636 for (; bs != NULL; bs = bs->next)
637 {
638 bs->commands = NULL;
639 if (bs->old_val != NULL)
640 {
641 value_free (bs->old_val);
642 bs->old_val = NULL;
643 }
644 }
645 }
646
647 /* Stub for cleaning up our state if we error-out of a breakpoint command */
648 /* ARGSUSED */
649 static void
650 cleanup_executing_breakpoints (ignore)
651 int ignore;
652 {
653 executing_breakpoint_commands = 0;
654 }
655
656 /* Execute all the commands associated with all the breakpoints at this
657 location. Any of these commands could cause the process to proceed
658 beyond this point, etc. We look out for such changes by checking
659 the global "breakpoint_proceeded" after each command. */
660
661 void
662 bpstat_do_actions (bsp)
663 bpstat *bsp;
664 {
665 bpstat bs;
666 struct cleanup *old_chain;
667
668 executing_breakpoint_commands = 1;
669 old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
670
671 top:
672 bs = *bsp;
673
674 breakpoint_proceeded = 0;
675 for (; bs != NULL; bs = bs->next)
676 {
677 while (bs->commands)
678 {
679 char *line = bs->commands->line;
680 bs->commands = bs->commands->next;
681 execute_command (line, 0);
682 /* If the inferior is proceeded by the command, bomb out now.
683 The bpstat chain has been blown away by wait_for_inferior.
684 But since execution has stopped again, there is a new bpstat
685 to look at, so start over. */
686 if (breakpoint_proceeded)
687 goto top;
688 }
689 }
690
691 executing_breakpoint_commands = 0;
692 discard_cleanups (old_chain);
693 }
694
695 /* Print a message indicating what happened. Returns nonzero to
696 say that only the source line should be printed after this (zero
697 return means print the frame as well as the source line). */
698
699 int
700 bpstat_print (bs)
701 bpstat bs;
702 {
703 /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
704 which has since been deleted. */
705 if (bs == NULL
706 || bs->breakpoint_at == NULL
707 || (bs->breakpoint_at->type != bp_breakpoint
708 && bs->breakpoint_at->type != bp_watchpoint))
709 return 0;
710
711 /* If bpstat_stop_status says don't print, OK, we won't. An example
712 circumstance is when we single-stepped for both a watchpoint and
713 for a "stepi" instruction. The bpstat says that the watchpoint
714 explains the stop, but we shouldn't print because the watchpoint's
715 value didn't change -- and the real reason we are stopping here
716 rather than continuing to step (as the watchpoint would've had us do)
717 is because of the "stepi". */
718 if (!bs->print)
719 return 0;
720
721 if (bs->breakpoint_at->type == bp_breakpoint)
722 {
723 /* I think the user probably only wants to see one breakpoint
724 number, not all of them. */
725 printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
726 return 0;
727 }
728
729 if (bs->old_val != NULL)
730 {
731 printf_filtered ("\nWatchpoint %d, ", bs->breakpoint_at->number);
732 print_expression (bs->breakpoint_at->exp, stdout);
733 printf_filtered ("\nOld value = ");
734 value_print (bs->old_val, stdout, 0, Val_pretty_default);
735 printf_filtered ("\nNew value = ");
736 value_print (bs->breakpoint_at->val, stdout, 0,
737 Val_pretty_default);
738 printf_filtered ("\n");
739 value_free (bs->old_val);
740 bs->old_val = NULL;
741 return 1;
742 }
743
744 /* Maybe another breakpoint in the chain caused us to stop.
745 (Currently all watchpoints go on the bpstat whether hit or
746 not. That probably could (should) be changed, provided care is taken
747 with respect to bpstat_explains_signal). */
748 if (bs->next)
749 return bpstat_print (bs->next);
750
751 fprintf_filtered (stderr, "gdb internal error: in bpstat_print\n");
752 return 0;
753 }
754
755 /* Evaluate the expression EXP and return 1 if value is zero.
756 This is used inside a catch_errors to evaluate the breakpoint condition.
757 The argument is a "struct expression *" that has been cast to char * to
758 make it pass through catch_errors. */
759
760 static int
761 breakpoint_cond_eval (exp)
762 char *exp;
763 {
764 return !value_true (evaluate_expression ((struct expression *)exp));
765 }
766
767 /* Allocate a new bpstat and chain it to the current one. */
768
769 static bpstat
770 bpstat_alloc (b, cbs)
771 register struct breakpoint *b;
772 bpstat cbs; /* Current "bs" value */
773 {
774 bpstat bs;
775
776 bs = (bpstat) xmalloc (sizeof (*bs));
777 cbs->next = bs;
778 bs->breakpoint_at = b;
779 /* If the condition is false, etc., don't do the commands. */
780 bs->commands = NULL;
781 bs->momentary = b->disposition == delete;
782 bs->old_val = NULL;
783 return bs;
784 }
785
786 /* Determine whether we stopped at a breakpoint, etc, or whether we
787 don't understand this stop. Result is a chain of bpstat's such that:
788
789 if we don't understand the stop, the result is a null pointer.
790
791 if we understand why we stopped, the result is not null, and
792 the first element of the chain contains summary "stop" and
793 "print" flags for the whole chain.
794
795 Each element of the chain refers to a particular breakpoint or
796 watchpoint at which we have stopped. (We may have stopped for
797 several reasons.)
798
799 Each element of the chain has valid next, breakpoint_at,
800 commands, FIXME??? fields.
801
802 */
803
804
805 bpstat
806 bpstat_stop_status (pc, frame_address)
807 CORE_ADDR *pc;
808 FRAME_ADDR frame_address;
809 {
810 register struct breakpoint *b;
811 int stop = 0;
812 int print = 0;
813 CORE_ADDR bp_addr;
814 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
815 /* True if we've hit a breakpoint (as opposed to a watchpoint). */
816 int real_breakpoint = 0;
817 #endif
818 /* Root of the chain of bpstat's */
819 struct bpstat root_bs[1];
820 /* Pointer to the last thing in the chain currently. */
821 bpstat bs = root_bs;
822
823 /* Get the address where the breakpoint would have been. */
824 bp_addr = *pc - DECR_PC_AFTER_BREAK;
825
826 ALL_BREAKPOINTS (b)
827 {
828 int this_bp_stop;
829 int this_bp_print;
830
831 if (b->enable == disabled)
832 continue;
833
834 if (b->type != bp_watchpoint && b->address != bp_addr)
835 continue;
836
837 /* Come here if it's a watchpoint, or if the break address matches */
838
839 bs = bpstat_alloc (b, bs); /* Alloc a bpstat to explain stop */
840
841 this_bp_stop = 1;
842 this_bp_print = 1;
843
844 if (b->type == bp_watchpoint)
845 {
846 int within_current_scope;
847 if (b->exp_valid_block != NULL)
848 within_current_scope =
849 contained_in (get_selected_block (), b->exp_valid_block);
850 else
851 within_current_scope = 1;
852
853 if (within_current_scope)
854 {
855 /* We use value_{,free_to_}mark because it could be a
856 *long* time before we return to the command level and
857 call free_all_values. */
858
859 value mark = value_mark ();
860 value new_val = evaluate_expression (b->exp);
861 if (!value_equal (b->val, new_val))
862 {
863 release_value (new_val);
864 value_free_to_mark (mark);
865 bs->old_val = b->val;
866 b->val = new_val;
867 /* We will stop here */
868 }
869 else
870 {
871 /* Nothing changed, don't do anything. */
872 value_free_to_mark (mark);
873 continue;
874 /* We won't stop here */
875 }
876 }
877 else
878 {
879 /* This seems like the only logical thing to do because
880 if we temporarily ignored the watchpoint, then when
881 we reenter the block in which it is valid it contains
882 garbage (in the case of a function, it may have two
883 garbage values, one before and one after the prologue).
884 So we can't even detect the first assignment to it and
885 watch after that (since the garbage may or may not equal
886 the first value assigned). */
887 b->enable = disabled;
888 printf_filtered ("\
889 Watchpoint %d disabled because the program has left the block in\n\
890 which its expression is valid.\n", b->number);
891 /* We won't stop here */
892 /* FIXME, maybe we should stop here!!! */
893 continue;
894 }
895 }
896 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
897 else
898 real_breakpoint = 1;
899 #endif
900
901 if (b->frame && b->frame != frame_address)
902 this_bp_stop = 0;
903 else
904 {
905 int value_is_zero;
906
907 if (b->cond)
908 {
909 /* Need to select the frame, with all that implies
910 so that the conditions will have the right context. */
911 select_frame (get_current_frame (), 0);
912 value_is_zero
913 = catch_errors (breakpoint_cond_eval, (char *)(b->cond),
914 "Error in testing breakpoint condition:\n");
915 /* FIXME-someday, should give breakpoint # */
916 free_all_values ();
917 }
918 if (b->cond && value_is_zero)
919 {
920 this_bp_stop = 0;
921 }
922 else if (b->ignore_count > 0)
923 {
924 b->ignore_count--;
925 this_bp_stop = 0;
926 }
927 else
928 {
929 /* We will stop here */
930 if (b->disposition == disable)
931 b->enable = disabled;
932 bs->commands = b->commands;
933 if (b->silent)
934 this_bp_print = 0;
935 if (bs->commands && !strcmp ("silent", bs->commands->line))
936 {
937 bs->commands = bs->commands->next;
938 this_bp_print = 0;
939 }
940 }
941 }
942 if (this_bp_stop)
943 stop = 1;
944 if (this_bp_print)
945 print = 1;
946 }
947
948 bs->next = NULL; /* Terminate the chain */
949 bs = root_bs->next; /* Re-grab the head of the chain */
950 if (bs)
951 {
952 bs->stop = stop;
953 bs->print = print;
954 #if DECR_PC_AFTER_BREAK != 0 || defined (SHIFT_INST_REGS)
955 if (real_breakpoint)
956 {
957 *pc = bp_addr;
958 #if defined (SHIFT_INST_REGS)
959 {
960 CORE_ADDR pc = read_register (PC_REGNUM);
961 CORE_ADDR npc = read_register (NPC_REGNUM);
962 if (pc != npc)
963 {
964 write_register (NNPC_REGNUM, npc);
965 write_register (NPC_REGNUM, pc);
966 }
967 }
968 #else /* No SHIFT_INST_REGS. */
969 write_pc (bp_addr);
970 #endif /* No SHIFT_INST_REGS. */
971 }
972 #endif /* DECR_PC_AFTER_BREAK != 0. */
973 }
974 return bs;
975 }
976
977 /* Nonzero if we should step constantly (e.g. watchpoints on machines
978 without hardware support). This isn't related to a specific bpstat,
979 just to things like whether watchpoints are set. */
980
981 int
982 bpstat_should_step ()
983 {
984 struct breakpoint *b;
985 ALL_BREAKPOINTS (b)
986 if (b->enable == enabled && b->type == bp_watchpoint)
987 return 1;
988 return 0;
989 }
990 \f
991 /* Print information on breakpoint number BNUM, or -1 if all.
992 If WATCHPOINTS is zero, process only breakpoints; if WATCHPOINTS
993 is nonzero, process only watchpoints. */
994
995 static void
996 breakpoint_1 (bnum, allflag)
997 int bnum;
998 int allflag;
999 {
1000 register struct breakpoint *b;
1001 register struct command_line *l;
1002 register struct symbol *sym;
1003 CORE_ADDR last_addr = (CORE_ADDR)-1;
1004 int found_a_breakpoint = 0;
1005 static char *bptypes[] = {"breakpoint", "until", "finish", "watchpoint",
1006 "longjmp", "longjmp resume"};
1007 static char *bpdisps[] = {"del", "dis", "keep"};
1008 static char bpenables[] = "ny";
1009
1010 if (!breakpoint_chain)
1011 {
1012 printf_filtered ("No breakpoints or watchpoints.\n");
1013 return;
1014 }
1015
1016 ALL_BREAKPOINTS (b)
1017 if (bnum == -1
1018 || bnum == b->number)
1019 {
1020 /* We only print out user settable breakpoints unless the allflag is set. */
1021 if (!allflag
1022 && b->type != bp_breakpoint
1023 && b->type != bp_watchpoint)
1024 continue;
1025
1026 if (!found_a_breakpoint++)
1027 printf_filtered ("Num Type Disp Enb %sWhat\n",
1028 addressprint ? "Address " : "");
1029
1030 printf_filtered ("%-3d %-14s %-4s %-3c ",
1031 b->number,
1032 bptypes[(int)b->type],
1033 bpdisps[(int)b->disposition],
1034 bpenables[(int)b->enable]);
1035 switch (b->type)
1036 {
1037 case bp_watchpoint:
1038 print_expression (b->exp, stdout);
1039 break;
1040 case bp_breakpoint:
1041 case bp_until:
1042 case bp_finish:
1043 case bp_longjmp:
1044 case bp_longjmp_resume:
1045 if (addressprint)
1046 printf_filtered ("%s ", local_hex_string_custom(b->address, "08"));
1047
1048 last_addr = b->address;
1049 if (b->symtab)
1050 {
1051 sym = find_pc_function (b->address);
1052 if (sym)
1053 {
1054 fputs_filtered ("in ", stdout);
1055 fputs_demangled (SYMBOL_NAME (sym), stdout,
1056 DMGL_ANSI | DMGL_PARAMS);
1057 fputs_filtered (" at ", stdout);
1058 }
1059 fputs_filtered (b->symtab->filename, stdout);
1060 printf_filtered (":%d", b->line_number);
1061 }
1062 else
1063 print_address_symbolic (b->address, stdout, demangle, " ");
1064 }
1065
1066 printf_filtered ("\n");
1067
1068 if (b->frame)
1069 printf_filtered ("\tstop only in stack frame at %s\n",
1070 local_hex_string(b->frame));
1071 if (b->cond)
1072 {
1073 printf_filtered ("\tstop only if ");
1074 print_expression (b->cond, stdout);
1075 printf_filtered ("\n");
1076 }
1077 if (b->ignore_count)
1078 printf_filtered ("\tignore next %d hits\n", b->ignore_count);
1079 if ((l = b->commands))
1080 while (l)
1081 {
1082 fputs_filtered ("\t", stdout);
1083 fputs_filtered (l->line, stdout);
1084 fputs_filtered ("\n", stdout);
1085 l = l->next;
1086 }
1087 }
1088
1089 if (!found_a_breakpoint
1090 && bnum != -1)
1091 printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
1092 else
1093 /* Compare against (CORE_ADDR)-1 in case some compiler decides
1094 that a comparison of an unsigned with -1 is always false. */
1095 if (last_addr != (CORE_ADDR)-1)
1096 set_next_address (last_addr);
1097 }
1098
1099 /* ARGSUSED */
1100 static void
1101 breakpoints_info (bnum_exp, from_tty)
1102 char *bnum_exp;
1103 int from_tty;
1104 {
1105 int bnum = -1;
1106
1107 if (bnum_exp)
1108 bnum = parse_and_eval_address (bnum_exp);
1109
1110 breakpoint_1 (bnum, 0);
1111 }
1112
1113 #if MAINTENANCE_CMDS
1114
1115 /* ARGSUSED */
1116 static void
1117 maintenance_info_breakpoints (bnum_exp, from_tty)
1118 char *bnum_exp;
1119 int from_tty;
1120 {
1121 int bnum = -1;
1122
1123 if (bnum_exp)
1124 bnum = parse_and_eval_address (bnum_exp);
1125
1126 breakpoint_1 (bnum, 1);
1127 }
1128
1129 #endif
1130
1131 /* Print a message describing any breakpoints set at PC. */
1132
1133 static void
1134 describe_other_breakpoints (pc)
1135 register CORE_ADDR pc;
1136 {
1137 register int others = 0;
1138 register struct breakpoint *b;
1139
1140 ALL_BREAKPOINTS (b)
1141 if (b->address == pc)
1142 others++;
1143 if (others > 0)
1144 {
1145 printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
1146 ALL_BREAKPOINTS (b)
1147 if (b->address == pc)
1148 {
1149 others--;
1150 printf_filtered ("%d%s%s ",
1151 b->number,
1152 (b->enable == disabled) ? " (disabled)" : "",
1153 (others > 1) ? "," :
1154 ((others == 1) ? " and" : ""));
1155 }
1156 printf_filtered ("also set at pc %s.\n", local_hex_string(pc));
1157 }
1158 }
1159 \f
1160 /* Set the default place to put a breakpoint
1161 for the `break' command with no arguments. */
1162
1163 void
1164 set_default_breakpoint (valid, addr, symtab, line)
1165 int valid;
1166 CORE_ADDR addr;
1167 struct symtab *symtab;
1168 int line;
1169 {
1170 default_breakpoint_valid = valid;
1171 default_breakpoint_address = addr;
1172 default_breakpoint_symtab = symtab;
1173 default_breakpoint_line = line;
1174 }
1175
1176 /* Rescan breakpoints at address ADDRESS,
1177 marking the first one as "first" and any others as "duplicates".
1178 This is so that the bpt instruction is only inserted once. */
1179
1180 static void
1181 check_duplicates (address)
1182 CORE_ADDR address;
1183 {
1184 register struct breakpoint *b;
1185 register int count = 0;
1186
1187 if (address == 0) /* Watchpoints are uninteresting */
1188 return;
1189
1190 ALL_BREAKPOINTS (b)
1191 if (b->enable != disabled && b->address == address)
1192 {
1193 count++;
1194 b->duplicate = count > 1;
1195 }
1196 }
1197
1198 /* Low level routine to set a breakpoint.
1199 Takes as args the three things that every breakpoint must have.
1200 Returns the breakpoint object so caller can set other things.
1201 Does not set the breakpoint number!
1202 Does not print anything.
1203
1204 ==> This routine should not be called if there is a chance of later
1205 error(); otherwise it leaves a bogus breakpoint on the chain. Validate
1206 your arguments BEFORE calling this routine! */
1207
1208 static struct breakpoint *
1209 set_raw_breakpoint (sal)
1210 struct symtab_and_line sal;
1211 {
1212 register struct breakpoint *b, *b1;
1213
1214 b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
1215 memset (b, 0, sizeof (*b));
1216 b->address = sal.pc;
1217 b->symtab = sal.symtab;
1218 b->line_number = sal.line;
1219 b->enable = enabled;
1220 b->next = 0;
1221 b->silent = 0;
1222 b->ignore_count = 0;
1223 b->commands = NULL;
1224 b->frame = 0;
1225
1226 /* Add this breakpoint to the end of the chain
1227 so that a list of breakpoints will come out in order
1228 of increasing numbers. */
1229
1230 b1 = breakpoint_chain;
1231 if (b1 == 0)
1232 breakpoint_chain = b;
1233 else
1234 {
1235 while (b1->next)
1236 b1 = b1->next;
1237 b1->next = b;
1238 }
1239
1240 check_duplicates (sal.pc);
1241
1242 return b;
1243 }
1244
1245 static void
1246 create_longjmp_breakpoint(func_name)
1247 char *func_name;
1248 {
1249 struct symtab_and_line sal;
1250 struct breakpoint *b;
1251 static int internal_breakpoint_number = -1;
1252
1253 if (func_name != NULL)
1254 {
1255 struct minimal_symbol *m;
1256
1257 m = lookup_minimal_symbol(func_name, (struct objfile *)NULL);
1258 if (m)
1259 sal.pc = m->address;
1260 else
1261 return;
1262 }
1263 else
1264 sal.pc = 0;
1265
1266 sal.symtab = NULL;
1267 sal.line = 0;
1268
1269 b = set_raw_breakpoint(sal);
1270 if (!b) return;
1271
1272 b->type = func_name != NULL ? bp_longjmp : bp_longjmp_resume;
1273 b->disposition = donttouch;
1274 b->enable = disabled;
1275 b->silent = 1;
1276 if (func_name)
1277 b->addr_string = strsave(func_name);
1278 b->number = internal_breakpoint_number--;
1279 }
1280
1281 /* Call this routine when stepping and nexting to enable a breakpoint if we do
1282 a longjmp(). When we hit that breakpoint, call
1283 set_longjmp_resume_breakpoint() to figure out where we are going. */
1284
1285 void
1286 enable_longjmp_breakpoint()
1287 {
1288 register struct breakpoint *b;
1289
1290 ALL_BREAKPOINTS (b)
1291 if (b->type == bp_longjmp)
1292 {
1293 b->enable = enabled;
1294 check_duplicates (b->address);
1295 }
1296 }
1297
1298 void
1299 disable_longjmp_breakpoint()
1300 {
1301 register struct breakpoint *b;
1302
1303 ALL_BREAKPOINTS (b)
1304 if ( b->type == bp_longjmp
1305 || b->type == bp_longjmp_resume)
1306 {
1307 b->enable = disabled;
1308 check_duplicates (b->address);
1309 }
1310 }
1311
1312 /* Call this after hitting the longjmp() breakpoint. Use this to set a new
1313 breakpoint at the target of the jmp_buf.
1314
1315 FIXME - This ought to be done by setting a temporary breakpoint that gets
1316 deleted automatically...
1317 */
1318
1319 void
1320 set_longjmp_resume_breakpoint(pc, frame)
1321 CORE_ADDR pc;
1322 FRAME frame;
1323 {
1324 register struct breakpoint *b;
1325
1326 ALL_BREAKPOINTS (b)
1327 if (b->type == bp_longjmp_resume)
1328 {
1329 b->address = pc;
1330 b->enable = enabled;
1331 if (frame != NULL)
1332 b->frame = FRAME_FP(frame);
1333 else
1334 b->frame = 0;
1335 check_duplicates (b->address);
1336 return;
1337 }
1338 }
1339
1340 /* Set a breakpoint that will evaporate an end of command
1341 at address specified by SAL.
1342 Restrict it to frame FRAME if FRAME is nonzero. */
1343
1344 struct breakpoint *
1345 set_momentary_breakpoint (sal, frame, type)
1346 struct symtab_and_line sal;
1347 FRAME frame;
1348 enum bptype type;
1349 {
1350 register struct breakpoint *b;
1351 b = set_raw_breakpoint (sal);
1352 b->type = type;
1353 b->enable = enabled;
1354 b->disposition = donttouch;
1355 b->frame = (frame ? FRAME_FP (frame) : 0);
1356 return b;
1357 }
1358
1359 #if 0
1360 void
1361 clear_momentary_breakpoints ()
1362 {
1363 register struct breakpoint *b;
1364 ALL_BREAKPOINTS (b)
1365 if (b->disposition == delete)
1366 {
1367 delete_breakpoint (b);
1368 break;
1369 }
1370 }
1371 #endif
1372 \f
1373 /* Tell the user we have just set a breakpoint B. */
1374 static void
1375 mention (b)
1376 struct breakpoint *b;
1377 {
1378 switch (b->type)
1379 {
1380 case bp_watchpoint:
1381 printf_filtered ("Watchpoint %d: ", b->number);
1382 print_expression (b->exp, stdout);
1383 break;
1384 case bp_breakpoint:
1385 printf_filtered ("Breakpoint %d at %s", b->number,
1386 local_hex_string(b->address));
1387 if (b->symtab)
1388 printf_filtered (": file %s, line %d.",
1389 b->symtab->filename, b->line_number);
1390 break;
1391 case bp_until:
1392 case bp_finish:
1393 case bp_longjmp:
1394 case bp_longjmp_resume:
1395 break;
1396 }
1397 printf_filtered ("\n");
1398 }
1399
1400 #if 0
1401 /* Nobody calls this currently. */
1402 /* Set a breakpoint from a symtab and line.
1403 If TEMPFLAG is nonzero, it is a temporary breakpoint.
1404 ADDR_STRING is a malloc'd string holding the name of where we are
1405 setting the breakpoint. This is used later to re-set it after the
1406 program is relinked and symbols are reloaded.
1407 Print the same confirmation messages that the breakpoint command prints. */
1408
1409 void
1410 set_breakpoint (s, line, tempflag, addr_string)
1411 struct symtab *s;
1412 int line;
1413 int tempflag;
1414 char *addr_string;
1415 {
1416 register struct breakpoint *b;
1417 struct symtab_and_line sal;
1418
1419 sal.symtab = s;
1420 sal.line = line;
1421 sal.pc = 0;
1422 resolve_sal_pc (&sal); /* Might error out */
1423 describe_other_breakpoints (sal.pc);
1424
1425 b = set_raw_breakpoint (sal);
1426 set_breakpoint_count (breakpoint_count + 1);
1427 b->number = breakpoint_count;
1428 b->type = bp_breakpoint;
1429 b->cond = 0;
1430 b->addr_string = addr_string;
1431 b->enable = enabled;
1432 b->disposition = tempflag ? delete : donttouch;
1433
1434 mention (b);
1435 }
1436 #endif /* 0 */
1437 \f
1438 /* Set a breakpoint according to ARG (function, linenum or *address)
1439 and make it temporary if TEMPFLAG is nonzero. */
1440
1441 static void
1442 break_command_1 (arg, tempflag, from_tty)
1443 char *arg;
1444 int tempflag, from_tty;
1445 {
1446 struct symtabs_and_lines sals;
1447 struct symtab_and_line sal;
1448 register struct expression *cond = 0;
1449 register struct breakpoint *b;
1450
1451 /* Pointers in arg to the start, and one past the end, of the condition. */
1452 char *cond_start = NULL;
1453 char *cond_end;
1454 /* Pointers in arg to the start, and one past the end,
1455 of the address part. */
1456 char *addr_start = NULL;
1457 char *addr_end;
1458
1459 int i;
1460
1461 sals.sals = NULL;
1462 sals.nelts = 0;
1463
1464 sal.line = sal.pc = sal.end = 0;
1465 sal.symtab = 0;
1466
1467 /* If no arg given, or if first arg is 'if ', use the default breakpoint. */
1468
1469 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
1470 && (arg[2] == ' ' || arg[2] == '\t')))
1471 {
1472 if (default_breakpoint_valid)
1473 {
1474 sals.sals = (struct symtab_and_line *)
1475 xmalloc (sizeof (struct symtab_and_line));
1476 sal.pc = default_breakpoint_address;
1477 sal.line = default_breakpoint_line;
1478 sal.symtab = default_breakpoint_symtab;
1479 sals.sals[0] = sal;
1480 sals.nelts = 1;
1481 }
1482 else
1483 error ("No default breakpoint address now.");
1484 }
1485 else
1486 {
1487 addr_start = arg;
1488
1489 /* Force almost all breakpoints to be in terms of the
1490 current_source_symtab (which is decode_line_1's default). This
1491 should produce the results we want almost all of the time while
1492 leaving default_breakpoint_* alone. */
1493 if (default_breakpoint_valid
1494 && (!current_source_symtab
1495 || (arg && (*arg == '+' || *arg == '-'))))
1496 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
1497 default_breakpoint_line);
1498 else
1499 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0);
1500
1501 addr_end = arg;
1502 }
1503
1504 if (! sals.nelts)
1505 return;
1506
1507 /* Resolve all line numbers to PC's, and verify that conditions
1508 can be parsed, before setting any breakpoints. */
1509 for (i = 0; i < sals.nelts; i++)
1510 {
1511 resolve_sal_pc (&sals.sals[i]);
1512
1513 while (arg && *arg)
1514 {
1515 if (arg[0] == 'i' && arg[1] == 'f'
1516 && (arg[2] == ' ' || arg[2] == '\t'))
1517 {
1518 arg += 2;
1519 cond_start = arg;
1520 cond = parse_exp_1 (&arg, block_for_pc (sals.sals[i].pc), 0);
1521 cond_end = arg;
1522 }
1523 else
1524 error ("Junk at end of arguments.");
1525 }
1526 }
1527
1528 /* Now set all the breakpoints. */
1529 for (i = 0; i < sals.nelts; i++)
1530 {
1531 sal = sals.sals[i];
1532
1533 if (from_tty)
1534 describe_other_breakpoints (sal.pc);
1535
1536 b = set_raw_breakpoint (sal);
1537 set_breakpoint_count (breakpoint_count + 1);
1538 b->number = breakpoint_count;
1539 b->type = bp_breakpoint;
1540 b->cond = cond;
1541
1542 if (addr_start)
1543 b->addr_string = savestring (addr_start, addr_end - addr_start);
1544 if (cond_start)
1545 b->cond_string = savestring (cond_start, cond_end - cond_start);
1546
1547 b->enable = enabled;
1548 b->disposition = tempflag ? delete : donttouch;
1549
1550 mention (b);
1551 }
1552
1553 if (sals.nelts > 1)
1554 {
1555 printf_filtered ("Multiple breakpoints were set.\n");
1556 printf_filtered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
1557 }
1558 free ((PTR)sals.sals);
1559 }
1560
1561 /* Helper function for break_command_1 and disassemble_command. */
1562
1563 void
1564 resolve_sal_pc (sal)
1565 struct symtab_and_line *sal;
1566 {
1567 CORE_ADDR pc;
1568
1569 if (sal->pc == 0 && sal->symtab != 0)
1570 {
1571 pc = find_line_pc (sal->symtab, sal->line);
1572 if (pc == 0)
1573 error ("No line %d in file \"%s\".",
1574 sal->line, sal->symtab->filename);
1575 sal->pc = pc;
1576 }
1577 }
1578
1579 void
1580 break_command (arg, from_tty)
1581 char *arg;
1582 int from_tty;
1583 {
1584 break_command_1 (arg, 0, from_tty);
1585 }
1586
1587 static void
1588 tbreak_command (arg, from_tty)
1589 char *arg;
1590 int from_tty;
1591 {
1592 break_command_1 (arg, 1, from_tty);
1593 }
1594
1595 /* ARGSUSED */
1596 static void
1597 watch_command (arg, from_tty)
1598 char *arg;
1599 int from_tty;
1600 {
1601 struct breakpoint *b;
1602 struct symtab_and_line sal;
1603 struct expression *exp;
1604 struct block *exp_valid_block;
1605 struct value *val;
1606
1607 sal.pc = 0;
1608 sal.symtab = NULL;
1609 sal.line = 0;
1610
1611 /* Parse arguments. */
1612 innermost_block = NULL;
1613 exp = parse_expression (arg);
1614 exp_valid_block = innermost_block;
1615 val = evaluate_expression (exp);
1616 release_value (val);
1617
1618 /* Now set up the breakpoint. */
1619 b = set_raw_breakpoint (sal);
1620 set_breakpoint_count (breakpoint_count + 1);
1621 b->number = breakpoint_count;
1622 b->type = bp_watchpoint;
1623 b->disposition = donttouch;
1624 b->exp = exp;
1625 b->exp_valid_block = exp_valid_block;
1626 b->val = val;
1627 b->cond = 0;
1628 b->cond_string = NULL;
1629 mention (b);
1630 }
1631 \f
1632 /*
1633 * Helper routine for the until_command routine in infcmd.c. Here
1634 * because it uses the mechanisms of breakpoints.
1635 */
1636 /* ARGSUSED */
1637 void
1638 until_break_command (arg, from_tty)
1639 char *arg;
1640 int from_tty;
1641 {
1642 struct symtabs_and_lines sals;
1643 struct symtab_and_line sal;
1644 FRAME prev_frame = get_prev_frame (selected_frame);
1645 struct breakpoint *breakpoint;
1646 struct cleanup *old_chain;
1647
1648 clear_proceed_status ();
1649
1650 /* Set a breakpoint where the user wants it and at return from
1651 this function */
1652
1653 if (default_breakpoint_valid)
1654 sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
1655 default_breakpoint_line);
1656 else
1657 sals = decode_line_1 (&arg, 1, (struct symtab *)NULL, 0);
1658
1659 if (sals.nelts != 1)
1660 error ("Couldn't get information on specified line.");
1661
1662 sal = sals.sals[0];
1663 free ((PTR)sals.sals); /* malloc'd, so freed */
1664
1665 if (*arg)
1666 error ("Junk at end of arguments.");
1667
1668 resolve_sal_pc (&sal);
1669
1670 breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
1671
1672 old_chain = make_cleanup(delete_breakpoint, breakpoint);
1673
1674 /* Keep within the current frame */
1675
1676 if (prev_frame)
1677 {
1678 struct frame_info *fi;
1679
1680 fi = get_frame_info (prev_frame);
1681 sal = find_pc_line (fi->pc, 0);
1682 sal.pc = fi->pc;
1683 breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
1684 make_cleanup(delete_breakpoint, breakpoint);
1685 }
1686
1687 proceed (-1, -1, 0);
1688 do_cleanups(old_chain);
1689 }
1690 \f
1691 #if 0
1692 /* These aren't used; I don't konw what they were for. */
1693 /* Set a breakpoint at the catch clause for NAME. */
1694 static int
1695 catch_breakpoint (name)
1696 char *name;
1697 {
1698 }
1699
1700 static int
1701 disable_catch_breakpoint ()
1702 {
1703 }
1704
1705 static int
1706 delete_catch_breakpoint ()
1707 {
1708 }
1709
1710 static int
1711 enable_catch_breakpoint ()
1712 {
1713 }
1714 #endif /* 0 */
1715
1716 struct sal_chain
1717 {
1718 struct sal_chain *next;
1719 struct symtab_and_line sal;
1720 };
1721
1722 #if 0
1723 /* This isn't used; I don't know what it was for. */
1724 /* For each catch clause identified in ARGS, run FUNCTION
1725 with that clause as an argument. */
1726 static struct symtabs_and_lines
1727 map_catch_names (args, function)
1728 char *args;
1729 int (*function)();
1730 {
1731 register char *p = args;
1732 register char *p1;
1733 struct symtabs_and_lines sals;
1734 #if 0
1735 struct sal_chain *sal_chain = 0;
1736 #endif
1737
1738 if (p == 0)
1739 error_no_arg ("one or more catch names");
1740
1741 sals.nelts = 0;
1742 sals.sals = NULL;
1743
1744 while (*p)
1745 {
1746 p1 = p;
1747 /* Don't swallow conditional part. */
1748 if (p1[0] == 'i' && p1[1] == 'f'
1749 && (p1[2] == ' ' || p1[2] == '\t'))
1750 break;
1751
1752 if (isalpha (*p1))
1753 {
1754 p1++;
1755 while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
1756 p1++;
1757 }
1758
1759 if (*p1 && *p1 != ' ' && *p1 != '\t')
1760 error ("Arguments must be catch names.");
1761
1762 *p1 = 0;
1763 #if 0
1764 if (function (p))
1765 {
1766 struct sal_chain *next
1767 = (struct sal_chain *)alloca (sizeof (struct sal_chain));
1768 next->next = sal_chain;
1769 next->sal = get_catch_sal (p);
1770 sal_chain = next;
1771 goto win;
1772 }
1773 #endif
1774 printf_filtered ("No catch clause for exception %s.\n", p);
1775 #if 0
1776 win:
1777 #endif
1778 p = p1;
1779 while (*p == ' ' || *p == '\t') p++;
1780 }
1781 }
1782 #endif /* 0 */
1783
1784 /* This shares a lot of code with `print_frame_label_vars' from stack.c. */
1785
1786 static struct symtabs_and_lines
1787 get_catch_sals (this_level_only)
1788 int this_level_only;
1789 {
1790 register struct blockvector *bl;
1791 register struct block *block;
1792 int index, have_default = 0;
1793 struct frame_info *fi;
1794 CORE_ADDR pc;
1795 struct symtabs_and_lines sals;
1796 struct sal_chain *sal_chain = 0;
1797 char *blocks_searched;
1798
1799 /* Not sure whether an error message is always the correct response,
1800 but it's better than a core dump. */
1801 if (selected_frame == NULL)
1802 error ("No selected frame.");
1803 block = get_frame_block (selected_frame);
1804 fi = get_frame_info (selected_frame);
1805 pc = fi->pc;
1806
1807 sals.nelts = 0;
1808 sals.sals = NULL;
1809
1810 if (block == 0)
1811 error ("No symbol table info available.\n");
1812
1813 bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
1814 blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1815 memset (blocks_searched, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
1816
1817 while (block != 0)
1818 {
1819 CORE_ADDR end = BLOCK_END (block) - 4;
1820 int last_index;
1821
1822 if (bl != blockvector_for_pc (end, &index))
1823 error ("blockvector blotch");
1824 if (BLOCKVECTOR_BLOCK (bl, index) != block)
1825 error ("blockvector botch");
1826 last_index = BLOCKVECTOR_NBLOCKS (bl);
1827 index += 1;
1828
1829 /* Don't print out blocks that have gone by. */
1830 while (index < last_index
1831 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
1832 index++;
1833
1834 while (index < last_index
1835 && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
1836 {
1837 if (blocks_searched[index] == 0)
1838 {
1839 struct block *b = BLOCKVECTOR_BLOCK (bl, index);
1840 int nsyms;
1841 register int i;
1842 register struct symbol *sym;
1843
1844 nsyms = BLOCK_NSYMS (b);
1845
1846 for (i = 0; i < nsyms; i++)
1847 {
1848 sym = BLOCK_SYM (b, i);
1849 if (! strcmp (SYMBOL_NAME (sym), "default"))
1850 {
1851 if (have_default)
1852 continue;
1853 have_default = 1;
1854 }
1855 if (SYMBOL_CLASS (sym) == LOC_LABEL)
1856 {
1857 struct sal_chain *next = (struct sal_chain *)
1858 alloca (sizeof (struct sal_chain));
1859 next->next = sal_chain;
1860 next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 0);
1861 sal_chain = next;
1862 }
1863 }
1864 blocks_searched[index] = 1;
1865 }
1866 index++;
1867 }
1868 if (have_default)
1869 break;
1870 if (sal_chain && this_level_only)
1871 break;
1872
1873 /* After handling the function's top-level block, stop.
1874 Don't continue to its superblock, the block of
1875 per-file symbols. */
1876 if (BLOCK_FUNCTION (block))
1877 break;
1878 block = BLOCK_SUPERBLOCK (block);
1879 }
1880
1881 if (sal_chain)
1882 {
1883 struct sal_chain *tmp_chain;
1884
1885 /* Count the number of entries. */
1886 for (index = 0, tmp_chain = sal_chain; tmp_chain;
1887 tmp_chain = tmp_chain->next)
1888 index++;
1889
1890 sals.nelts = index;
1891 sals.sals = (struct symtab_and_line *)
1892 xmalloc (index * sizeof (struct symtab_and_line));
1893 for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
1894 sals.sals[index] = sal_chain->sal;
1895 }
1896
1897 return sals;
1898 }
1899
1900 /* Commands to deal with catching exceptions. */
1901
1902 static void
1903 catch_command_1 (arg, tempflag, from_tty)
1904 char *arg;
1905 int tempflag;
1906 int from_tty;
1907 {
1908 /* First, translate ARG into something we can deal with in terms
1909 of breakpoints. */
1910
1911 struct symtabs_and_lines sals;
1912 struct symtab_and_line sal;
1913 register struct expression *cond = 0;
1914 register struct breakpoint *b;
1915 char *save_arg;
1916 int i;
1917
1918 sal.line = sal.pc = sal.end = 0;
1919 sal.symtab = 0;
1920
1921 /* If no arg given, or if first arg is 'if ', all active catch clauses
1922 are breakpointed. */
1923
1924 if (!arg || (arg[0] == 'i' && arg[1] == 'f'
1925 && (arg[2] == ' ' || arg[2] == '\t')))
1926 {
1927 /* Grab all active catch clauses. */
1928 sals = get_catch_sals (0);
1929 }
1930 else
1931 {
1932 /* Grab selected catch clauses. */
1933 error ("catch NAME not implemeneted");
1934 #if 0
1935 /* This isn't used; I don't know what it was for. */
1936 sals = map_catch_names (arg, catch_breakpoint);
1937 #endif
1938 }
1939
1940 if (! sals.nelts)
1941 return;
1942
1943 save_arg = arg;
1944 for (i = 0; i < sals.nelts; i++)
1945 {
1946 resolve_sal_pc (&sals.sals[i]);
1947
1948 while (arg && *arg)
1949 {
1950 if (arg[0] == 'i' && arg[1] == 'f'
1951 && (arg[2] == ' ' || arg[2] == '\t'))
1952 cond = parse_exp_1 ((arg += 2, &arg),
1953 block_for_pc (sals.sals[i].pc), 0);
1954 else
1955 error ("Junk at end of arguments.");
1956 }
1957 arg = save_arg;
1958 }
1959
1960 for (i = 0; i < sals.nelts; i++)
1961 {
1962 sal = sals.sals[i];
1963
1964 if (from_tty)
1965 describe_other_breakpoints (sal.pc);
1966
1967 b = set_raw_breakpoint (sal);
1968 set_breakpoint_count (breakpoint_count + 1);
1969 b->number = breakpoint_count;
1970 b->type = bp_breakpoint;
1971 b->cond = cond;
1972 b->enable = enabled;
1973 b->disposition = tempflag ? delete : donttouch;
1974
1975 printf_filtered ("Breakpoint %d at %s", b->number,
1976 local_hex_string(b->address));
1977 if (b->symtab)
1978 printf_filtered (": file %s, line %d.",
1979 b->symtab->filename, b->line_number);
1980 printf_filtered ("\n");
1981 }
1982
1983 if (sals.nelts > 1)
1984 {
1985 printf_filtered ("Multiple breakpoints were set.\n");
1986 printf_filtered ("Use the \"delete\" command to delete unwanted breakpoints.\n");
1987 }
1988 free ((PTR)sals.sals);
1989 }
1990
1991 #if 0
1992 /* These aren't used; I don't know what they were for. */
1993 /* Disable breakpoints on all catch clauses described in ARGS. */
1994 static void
1995 disable_catch (args)
1996 char *args;
1997 {
1998 /* Map the disable command to catch clauses described in ARGS. */
1999 }
2000
2001 /* Enable breakpoints on all catch clauses described in ARGS. */
2002 static void
2003 enable_catch (args)
2004 char *args;
2005 {
2006 /* Map the disable command to catch clauses described in ARGS. */
2007 }
2008
2009 /* Delete breakpoints on all catch clauses in the active scope. */
2010 static void
2011 delete_catch (args)
2012 char *args;
2013 {
2014 /* Map the delete command to catch clauses described in ARGS. */
2015 }
2016 #endif /* 0 */
2017
2018 static void
2019 catch_command (arg, from_tty)
2020 char *arg;
2021 int from_tty;
2022 {
2023 catch_command_1 (arg, 0, from_tty);
2024 }
2025 \f
2026 static void
2027 clear_command (arg, from_tty)
2028 char *arg;
2029 int from_tty;
2030 {
2031 register struct breakpoint *b, *b1;
2032 struct symtabs_and_lines sals;
2033 struct symtab_and_line sal;
2034 register struct breakpoint *found;
2035 int i;
2036
2037 if (arg)
2038 {
2039 sals = decode_line_spec (arg, 1);
2040 }
2041 else
2042 {
2043 sals.sals = (struct symtab_and_line *) xmalloc (sizeof (struct symtab_and_line));
2044 sal.line = default_breakpoint_line;
2045 sal.symtab = default_breakpoint_symtab;
2046 sal.pc = 0;
2047 if (sal.symtab == 0)
2048 error ("No source file specified.");
2049
2050 sals.sals[0] = sal;
2051 sals.nelts = 1;
2052 }
2053
2054 for (i = 0; i < sals.nelts; i++)
2055 {
2056 /* If exact pc given, clear bpts at that pc.
2057 But if sal.pc is zero, clear all bpts on specified line. */
2058 sal = sals.sals[i];
2059 found = (struct breakpoint *) 0;
2060 while (breakpoint_chain
2061 && (sal.pc ? breakpoint_chain->address == sal.pc
2062 : (breakpoint_chain->symtab == sal.symtab
2063 && breakpoint_chain->line_number == sal.line)))
2064 {
2065 b1 = breakpoint_chain;
2066 breakpoint_chain = b1->next;
2067 b1->next = found;
2068 found = b1;
2069 }
2070
2071 ALL_BREAKPOINTS (b)
2072 while (b->next
2073 && b->next->type != bp_watchpoint
2074 && (sal.pc ? b->next->address == sal.pc
2075 : (b->next->symtab == sal.symtab
2076 && b->next->line_number == sal.line)))
2077 {
2078 b1 = b->next;
2079 b->next = b1->next;
2080 b1->next = found;
2081 found = b1;
2082 }
2083
2084 if (found == 0)
2085 {
2086 if (arg)
2087 error ("No breakpoint at %s.", arg);
2088 else
2089 error ("No breakpoint at this line.");
2090 }
2091
2092 if (found->next) from_tty = 1; /* Always report if deleted more than one */
2093 if (from_tty) printf_filtered ("Deleted breakpoint%s ",
2094 found->next ? "s" : "");
2095 while (found)
2096 {
2097 if (from_tty) printf_filtered ("%d ", found->number);
2098 b1 = found->next;
2099 delete_breakpoint (found);
2100 found = b1;
2101 }
2102 if (from_tty) putchar ('\n');
2103 }
2104 free ((PTR)sals.sals);
2105 }
2106 \f
2107 /* Delete breakpoint in BS if they are `delete' breakpoints.
2108 This is called after any breakpoint is hit, or after errors. */
2109
2110 void
2111 breakpoint_auto_delete (bs)
2112 bpstat bs;
2113 {
2114 for (; bs; bs = bs->next)
2115 if (bs->breakpoint_at && bs->breakpoint_at->disposition == delete)
2116 delete_breakpoint (bs->breakpoint_at);
2117 }
2118
2119 /* Delete a breakpoint and clean up all traces of it in the data structures. */
2120
2121 void
2122 delete_breakpoint (bpt)
2123 struct breakpoint *bpt;
2124 {
2125 register struct breakpoint *b;
2126 register bpstat bs;
2127
2128 if (bpt->inserted)
2129 target_remove_breakpoint(bpt->address, bpt->shadow_contents);
2130
2131 if (breakpoint_chain == bpt)
2132 breakpoint_chain = bpt->next;
2133
2134 ALL_BREAKPOINTS (b)
2135 if (b->next == bpt)
2136 {
2137 b->next = bpt->next;
2138 break;
2139 }
2140
2141 check_duplicates (bpt->address);
2142
2143 free_command_lines (&bpt->commands);
2144 if (bpt->cond)
2145 free ((PTR)bpt->cond);
2146 if (bpt->cond_string != NULL)
2147 free ((PTR)bpt->cond_string);
2148 if (bpt->addr_string != NULL)
2149 free ((PTR)bpt->addr_string);
2150
2151 if (xgdb_verbose && bpt->type == bp_breakpoint)
2152 printf_filtered ("breakpoint #%d deleted\n", bpt->number);
2153
2154 /* Be sure no bpstat's are pointing at it after it's been freed. */
2155 /* FIXME, how can we find all bpstat's? We just check stop_bpstat for now. */
2156 for (bs = stop_bpstat; bs; bs = bs->next)
2157 if (bs->breakpoint_at == bpt)
2158 bs->breakpoint_at = NULL;
2159 free ((PTR)bpt);
2160 }
2161
2162 static void
2163 delete_command (arg, from_tty)
2164 char *arg;
2165 int from_tty;
2166 {
2167
2168 if (arg == 0)
2169 {
2170 /* Ask user only if there are some breakpoints to delete. */
2171 if (!from_tty
2172 || (breakpoint_chain && query ("Delete all breakpoints? ", 0, 0)))
2173 {
2174 /* No arg; clear all breakpoints. */
2175 while (breakpoint_chain)
2176 delete_breakpoint (breakpoint_chain);
2177 }
2178 }
2179 else
2180 map_breakpoint_numbers (arg, delete_breakpoint);
2181 }
2182
2183 /* Reset a breakpoint given it's struct breakpoint * BINT.
2184 The value we return ends up being the return value from catch_errors.
2185 Unused in this case. */
2186
2187 static int
2188 breakpoint_re_set_one (bint)
2189 char *bint;
2190 {
2191 struct breakpoint *b = (struct breakpoint *)bint; /* get past catch_errs */
2192 int i;
2193 struct symtabs_and_lines sals;
2194 char *s;
2195 enum enable save_enable;
2196
2197 switch (b->type)
2198 {
2199 case bp_breakpoint:
2200 if (b->addr_string == NULL)
2201 {
2202 /* Anything without a string can't be re-set. */
2203 delete_breakpoint (b);
2204 return 0;
2205 }
2206 /* In case we have a problem, disable this breakpoint. We'll restore
2207 its status if we succeed. */
2208 save_enable = b->enable;
2209 b->enable = disabled;
2210
2211 s = b->addr_string;
2212 sals = decode_line_1 (&s, 1, (struct symtab *)NULL, 0);
2213 for (i = 0; i < sals.nelts; i++)
2214 {
2215 resolve_sal_pc (&sals.sals[i]);
2216 if (b->symtab != sals.sals[i].symtab
2217 || b->line_number != sals.sals[i].line
2218 || b->address != sals.sals[i].pc)
2219 {
2220 b->symtab = sals.sals[i].symtab;
2221 b->line_number = sals.sals[i].line;
2222 b->address = sals.sals[i].pc;
2223
2224 if (b->cond_string != NULL)
2225 {
2226 s = b->cond_string;
2227 b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
2228 }
2229
2230 check_duplicates (b->address);
2231
2232 mention (b);
2233 }
2234 b->enable = save_enable; /* Restore it, this worked. */
2235 }
2236 free ((PTR)sals.sals);
2237 break;
2238 case bp_watchpoint:
2239 /* FIXME! This is the wrong thing to do.... */
2240 delete_breakpoint (b);
2241 break;
2242 default:
2243 printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
2244 case bp_until:
2245 case bp_finish:
2246 case bp_longjmp:
2247 case bp_longjmp_resume:
2248 delete_breakpoint (b);
2249 break;
2250 }
2251
2252 return 0;
2253 }
2254
2255 /* Re-set all breakpoints after symbols have been re-loaded. */
2256 void
2257 breakpoint_re_set ()
2258 {
2259 struct breakpoint *b, *temp;
2260 static char message1[] = "Error in re-setting breakpoint %d:\n";
2261 char message[sizeof (message1) + 30 /* slop */];
2262
2263 /* If we have no current source symtab, and we have any breakpoints,
2264 go through the work of making a source context. */
2265 if (current_source_symtab == NULL && breakpoint_chain != 0)
2266 {
2267 select_source_symtab (NULL);
2268 }
2269
2270 ALL_BREAKPOINTS_SAFE (b, temp)
2271 {
2272 printf_filtered (message, message1, b->number); /* Format possible error msg */
2273 catch_errors (breakpoint_re_set_one, (char *) b, message);
2274 }
2275
2276 create_longjmp_breakpoint("longjmp");
2277 create_longjmp_breakpoint("_longjmp");
2278 create_longjmp_breakpoint("siglongjmp");
2279 create_longjmp_breakpoint(NULL);
2280
2281 #if 0
2282 /* Took this out (temporaliy at least), since it produces an extra
2283 blank line at startup. This messes up the gdbtests. -PB */
2284 /* Blank line to finish off all those mention() messages we just printed. */
2285 printf_filtered ("\n");
2286 #endif
2287 }
2288 \f
2289 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
2290 If from_tty is nonzero, it prints a message to that effect,
2291 which ends with a period (no newline). */
2292
2293 void
2294 set_ignore_count (bptnum, count, from_tty)
2295 int bptnum, count, from_tty;
2296 {
2297 register struct breakpoint *b;
2298
2299 if (count < 0)
2300 count = 0;
2301
2302 ALL_BREAKPOINTS (b)
2303 if (b->number == bptnum)
2304 {
2305 b->ignore_count = count;
2306 if (!from_tty)
2307 return;
2308 else if (count == 0)
2309 printf_filtered ("Will stop next time breakpoint %d is reached.",
2310 bptnum);
2311 else if (count == 1)
2312 printf_filtered ("Will ignore next crossing of breakpoint %d.",
2313 bptnum);
2314 else
2315 printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
2316 count, bptnum);
2317 return;
2318 }
2319
2320 error ("No breakpoint number %d.", bptnum);
2321 }
2322
2323 /* Clear the ignore counts of all breakpoints. */
2324 void
2325 breakpoint_clear_ignore_counts ()
2326 {
2327 struct breakpoint *b;
2328
2329 ALL_BREAKPOINTS (b)
2330 b->ignore_count = 0;
2331 }
2332
2333 /* Command to set ignore-count of breakpoint N to COUNT. */
2334
2335 static void
2336 ignore_command (args, from_tty)
2337 char *args;
2338 int from_tty;
2339 {
2340 char *p = args;
2341 register int num;
2342
2343 if (p == 0)
2344 error_no_arg ("a breakpoint number");
2345
2346 num = get_number (&p);
2347
2348 if (*p == 0)
2349 error ("Second argument (specified ignore-count) is missing.");
2350
2351 set_ignore_count (num,
2352 longest_to_int (value_as_long (parse_and_eval (p))),
2353 from_tty);
2354 printf_filtered ("\n");
2355 }
2356 \f
2357 /* Call FUNCTION on each of the breakpoints
2358 whose numbers are given in ARGS. */
2359
2360 static void
2361 map_breakpoint_numbers (args, function)
2362 char *args;
2363 void (*function) PARAMS ((struct breakpoint *));
2364 {
2365 register char *p = args;
2366 char *p1;
2367 register int num;
2368 register struct breakpoint *b;
2369
2370 if (p == 0)
2371 error_no_arg ("one or more breakpoint numbers");
2372
2373 while (*p)
2374 {
2375 p1 = p;
2376
2377 num = get_number (&p1);
2378
2379 ALL_BREAKPOINTS (b)
2380 if (b->number == num)
2381 {
2382 function (b);
2383 goto win;
2384 }
2385 printf_filtered ("No breakpoint number %d.\n", num);
2386 win:
2387 p = p1;
2388 }
2389 }
2390
2391 static void
2392 enable_breakpoint (bpt)
2393 struct breakpoint *bpt;
2394 {
2395 bpt->enable = enabled;
2396
2397 if (xgdb_verbose && bpt->type == bp_breakpoint)
2398 printf_filtered ("breakpoint #%d enabled\n", bpt->number);
2399
2400 check_duplicates (bpt->address);
2401 if (bpt->type == bp_watchpoint)
2402 {
2403 if (bpt->exp_valid_block != NULL
2404 && !contained_in (get_selected_block (), bpt->exp_valid_block))
2405 {
2406 printf_filtered ("\
2407 Cannot enable watchpoint %d because the block in which its expression\n\
2408 is valid is not currently in scope.\n", bpt->number);
2409 return;
2410 }
2411
2412 value_free (bpt->val);
2413
2414 bpt->val = evaluate_expression (bpt->exp);
2415 release_value (bpt->val);
2416 }
2417 }
2418
2419 /* ARGSUSED */
2420 static void
2421 enable_command (args, from_tty)
2422 char *args;
2423 int from_tty;
2424 {
2425 struct breakpoint *bpt;
2426 if (args == 0)
2427 ALL_BREAKPOINTS (bpt)
2428 switch (bpt->type)
2429 {
2430 case bp_breakpoint:
2431 case bp_watchpoint:
2432 enable_breakpoint (bpt);
2433 default:
2434 continue;
2435 }
2436 else
2437 map_breakpoint_numbers (args, enable_breakpoint);
2438 }
2439
2440 static void
2441 disable_breakpoint (bpt)
2442 struct breakpoint *bpt;
2443 {
2444 bpt->enable = disabled;
2445
2446 if (xgdb_verbose && bpt->type == bp_breakpoint)
2447 printf_filtered ("breakpoint #%d disabled\n", bpt->number);
2448
2449 check_duplicates (bpt->address);
2450 }
2451
2452 /* ARGSUSED */
2453 static void
2454 disable_command (args, from_tty)
2455 char *args;
2456 int from_tty;
2457 {
2458 register struct breakpoint *bpt;
2459 if (args == 0)
2460 ALL_BREAKPOINTS (bpt)
2461 switch (bpt->type)
2462 {
2463 case bp_breakpoint:
2464 case bp_watchpoint:
2465 disable_breakpoint (bpt);
2466 default:
2467 continue;
2468 }
2469 else
2470 map_breakpoint_numbers (args, disable_breakpoint);
2471 }
2472
2473 static void
2474 enable_once_breakpoint (bpt)
2475 struct breakpoint *bpt;
2476 {
2477 bpt->enable = enabled;
2478 bpt->disposition = disable;
2479
2480 check_duplicates (bpt->address);
2481 }
2482
2483 /* ARGSUSED */
2484 static void
2485 enable_once_command (args, from_tty)
2486 char *args;
2487 int from_tty;
2488 {
2489 map_breakpoint_numbers (args, enable_once_breakpoint);
2490 }
2491
2492 static void
2493 enable_delete_breakpoint (bpt)
2494 struct breakpoint *bpt;
2495 {
2496 bpt->enable = enabled;
2497 bpt->disposition = delete;
2498
2499 check_duplicates (bpt->address);
2500 }
2501
2502 /* ARGSUSED */
2503 static void
2504 enable_delete_command (args, from_tty)
2505 char *args;
2506 int from_tty;
2507 {
2508 map_breakpoint_numbers (args, enable_delete_breakpoint);
2509 }
2510 \f
2511 /*
2512 * Use default_breakpoint_'s, or nothing if they aren't valid.
2513 */
2514 struct symtabs_and_lines
2515 decode_line_spec_1 (string, funfirstline)
2516 char *string;
2517 int funfirstline;
2518 {
2519 struct symtabs_and_lines sals;
2520 if (string == 0)
2521 error ("Empty line specification.");
2522 if (default_breakpoint_valid)
2523 sals = decode_line_1 (&string, funfirstline,
2524 default_breakpoint_symtab, default_breakpoint_line);
2525 else
2526 sals = decode_line_1 (&string, funfirstline, (struct symtab *)NULL, 0);
2527 if (*string)
2528 error ("Junk at end of line specification: %s", string);
2529 return sals;
2530 }
2531 \f
2532 void
2533 _initialize_breakpoint ()
2534 {
2535 breakpoint_chain = 0;
2536 /* Don't bother to call set_breakpoint_count. $bpnum isn't useful
2537 before a breakpoint is set. */
2538 breakpoint_count = 0;
2539
2540 add_com ("ignore", class_breakpoint, ignore_command,
2541 "Set ignore-count of breakpoint number N to COUNT.");
2542
2543 add_com ("commands", class_breakpoint, commands_command,
2544 "Set commands to be executed when a breakpoint is hit.\n\
2545 Give breakpoint number as argument after \"commands\".\n\
2546 With no argument, the targeted breakpoint is the last one set.\n\
2547 The commands themselves follow starting on the next line.\n\
2548 Type a line containing \"end\" to indicate the end of them.\n\
2549 Give \"silent\" as the first line to make the breakpoint silent;\n\
2550 then no output is printed when it is hit, except what the commands print.");
2551
2552 add_com ("condition", class_breakpoint, condition_command,
2553 "Specify breakpoint number N to break only if COND is true.\n\
2554 N is an integer; COND is an expression to be evaluated whenever\n\
2555 breakpoint N is reached. ");
2556
2557 add_com ("tbreak", class_breakpoint, tbreak_command,
2558 "Set a temporary breakpoint. Args like \"break\" command.\n\
2559 Like \"break\" except the breakpoint is only enabled temporarily,\n\
2560 so it will be disabled when hit. Equivalent to \"break\" followed\n\
2561 by using \"enable once\" on the breakpoint number.");
2562
2563 add_prefix_cmd ("enable", class_breakpoint, enable_command,
2564 "Enable some breakpoints.\n\
2565 Give breakpoint numbers (separated by spaces) as arguments.\n\
2566 With no subcommand, breakpoints are enabled until you command otherwise.\n\
2567 This is used to cancel the effect of the \"disable\" command.\n\
2568 With a subcommand you can enable temporarily.",
2569 &enablelist, "enable ", 1, &cmdlist);
2570
2571 add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
2572 "Enable some breakpoints.\n\
2573 Give breakpoint numbers (separated by spaces) as arguments.\n\
2574 This is used to cancel the effect of the \"disable\" command.\n\
2575 May be abbreviated to simply \"enable\".\n",
2576 &enablebreaklist, "enable breakpoints ", 1, &enablelist);
2577
2578 add_cmd ("once", no_class, enable_once_command,
2579 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
2580 If a breakpoint is hit while enabled in this fashion, it becomes disabled.\n\
2581 See the \"tbreak\" command which sets a breakpoint and enables it once.",
2582 &enablebreaklist);
2583
2584 add_cmd ("delete", no_class, enable_delete_command,
2585 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
2586 If a breakpoint is hit while enabled in this fashion, it is deleted.",
2587 &enablebreaklist);
2588
2589 add_cmd ("delete", no_class, enable_delete_command,
2590 "Enable breakpoints and delete when hit. Give breakpoint numbers.\n\
2591 If a breakpoint is hit while enabled in this fashion, it is deleted.",
2592 &enablelist);
2593
2594 add_cmd ("once", no_class, enable_once_command,
2595 "Enable breakpoints for one hit. Give breakpoint numbers.\n\
2596 If a breakpoint is hit while enabled in this fashion, it becomes disabled.\n\
2597 See the \"tbreak\" command which sets a breakpoint and enables it once.",
2598 &enablelist);
2599
2600 add_prefix_cmd ("disable", class_breakpoint, disable_command,
2601 "Disable some breakpoints.\n\
2602 Arguments are breakpoint numbers with spaces in between.\n\
2603 To disable all breakpoints, give no argument.\n\
2604 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
2605 &disablelist, "disable ", 1, &cmdlist);
2606 add_com_alias ("dis", "disable", class_breakpoint, 1);
2607 add_com_alias ("disa", "disable", class_breakpoint, 1);
2608
2609 add_cmd ("breakpoints", class_alias, disable_command,
2610 "Disable some breakpoints.\n\
2611 Arguments are breakpoint numbers with spaces in between.\n\
2612 To disable all breakpoints, give no argument.\n\
2613 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
2614 This command may be abbreviated \"disable\".",
2615 &disablelist);
2616
2617 add_prefix_cmd ("delete", class_breakpoint, delete_command,
2618 "Delete some breakpoints or auto-display expressions.\n\
2619 Arguments are breakpoint numbers with spaces in between.\n\
2620 To delete all breakpoints, give no argument.\n\
2621 \n\
2622 Also a prefix command for deletion of other GDB objects.\n\
2623 The \"unset\" command is also an alias for \"delete\".",
2624 &deletelist, "delete ", 1, &cmdlist);
2625 add_com_alias ("d", "delete", class_breakpoint, 1);
2626
2627 add_cmd ("breakpoints", class_alias, delete_command,
2628 "Delete some breakpoints or auto-display expressions.\n\
2629 Arguments are breakpoint numbers with spaces in between.\n\
2630 To delete all breakpoints, give no argument.\n\
2631 This command may be abbreviated \"delete\".",
2632 &deletelist);
2633
2634 add_com ("clear", class_breakpoint, clear_command,
2635 "Clear breakpoint at specified line or function.\n\
2636 Argument may be line number, function name, or \"*\" and an address.\n\
2637 If line number is specified, all breakpoints in that line are cleared.\n\
2638 If function is specified, breakpoints at beginning of function are cleared.\n\
2639 If an address is specified, breakpoints at that address are cleared.\n\n\
2640 With no argument, clears all breakpoints in the line that the selected frame\n\
2641 is executing in.\n\
2642 \n\
2643 See also the \"delete\" command which clears breakpoints by number.");
2644
2645 add_com ("break", class_breakpoint, break_command,
2646 "Set breakpoint at specified line or function.\n\
2647 Argument may be line number, function name, or \"*\" and an address.\n\
2648 If line number is specified, break at start of code for that line.\n\
2649 If function is specified, break at start of code for that function.\n\
2650 If an address is specified, break at that exact address.\n\
2651 With no arg, uses current execution address of selected stack frame.\n\
2652 This is useful for breaking on return to a stack frame.\n\
2653 \n\
2654 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
2655 \n\
2656 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
2657 add_com_alias ("b", "break", class_run, 1);
2658 add_com_alias ("br", "break", class_run, 1);
2659 add_com_alias ("bre", "break", class_run, 1);
2660 add_com_alias ("brea", "break", class_run, 1);
2661
2662 add_info ("breakpoints", breakpoints_info,
2663 "Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
2664 The \"Type\" column indicates one of:\n\
2665 \tbreakpoint - normal breakpoint\n\
2666 \twatchpoint - watchpoint\n\
2667 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
2668 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
2669 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
2670 address and file/line number respectively.\n\n\
2671 Convenience variable \"$_\" and default examine address for \"x\"\n\
2672 are set to the address of the last breakpoint listed.\n\n\
2673 Convenience variable \"$bpnum\" contains the number of the last\n\
2674 breakpoint set.");
2675
2676 #if MAINTENANCE_CMDS
2677
2678 add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
2679 "Status of all breakpoints, or breakpoint number NUMBER.\n\
2680 The \"Type\" column indicates one of:\n\
2681 \tbreakpoint - normal breakpoint\n\
2682 \twatchpoint - watchpoint\n\
2683 \tlongjmp - internal breakpoint used to step through longjmp()\n\
2684 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
2685 \tuntil - internal breakpoint used by the \"until\" command\n\
2686 \tfinish - internal breakpoint used by the \"finish\" command\n\
2687 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
2688 the disposition of the breakpoint after it gets hit. \"dis\" means that the\n\
2689 breakpoint will be disabled. The \"Address\" and \"What\" columns indicate the\n\
2690 address and file/line number respectively.\n\n\
2691 Convenience variable \"$_\" and default examine address for \"x\"\n\
2692 are set to the address of the last breakpoint listed.\n\n\
2693 Convenience variable \"$bpnum\" contains the number of the last\n\
2694 breakpoint set.",
2695 &maintenanceinfolist);
2696
2697 #endif /* MAINTENANCE_CMDS */
2698
2699 add_com ("catch", class_breakpoint, catch_command,
2700 "Set breakpoints to catch exceptions that are raised.\n\
2701 Argument may be a single exception to catch, multiple exceptions\n\
2702 to catch, or the default exception \"default\". If no arguments\n\
2703 are given, breakpoints are set at all exception handlers catch clauses\n\
2704 within the current scope.\n\
2705 \n\
2706 A condition specified for the catch applies to all breakpoints set\n\
2707 with this command\n\
2708 \n\
2709 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
2710
2711 add_com ("watch", class_breakpoint, watch_command,
2712 "Set a watchpoint for an expression.\n\
2713 A watchpoint stops execution of your program whenever the value of\n\
2714 an expression changes.");
2715
2716 add_info ("watchpoints", breakpoints_info,
2717 "Synonym for ``info breakpoints''.");
2718 }
2719
2720 #ifdef IBM6000_TARGET
2721 /* Where should this function go? It is used by AIX only. FIXME. */
2722
2723 /* Breakpoint address relocation used to be done in breakpoint_re_set(). That
2724 approach the following problem:
2725
2726 before running the program, if a file is list, then a breakpoint is
2727 set (just the line number), then if we switch into another file and run
2728 the program, just a line number as a breakpoint address was not
2729 descriptive enough and breakpoint was ending up in a different file's
2730 similar line.
2731
2732 I don't think any other platform has this breakpoint relocation problem, so this
2733 is not an issue for other platforms. */
2734
2735 void
2736 fixup_breakpoints (low, high, delta)
2737 CORE_ADDR low;
2738 CORE_ADDR high;
2739 CORE_ADDR delta;
2740 {
2741 struct breakpoint *b;
2742
2743 ALL_BREAKPOINTS (b)
2744 {
2745 if (b->address >= low && b->address <= high)
2746 b->address += delta;
2747 }
2748 }
2749 #endif
This page took 0.090318 seconds and 4 git commands to generate.