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