import gdb-2000-01-05 snapshot
[external/binutils.git] / gdb / breakpoint.c
1 /* Everything about breakpoints, for GDB.
2    Copyright 1986, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999
3    Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place - Suite 330,
20    Boston, MA 02111-1307, USA.  */
21
22 #include "defs.h"
23 #include <ctype.h>
24 #include "symtab.h"
25 #include "frame.h"
26 #include "breakpoint.h"
27 #include "gdbtypes.h"
28 #include "expression.h"
29 #include "gdbcore.h"
30 #include "gdbcmd.h"
31 #include "value.h"
32 #include "command.h"
33 #include "inferior.h"
34 #include "gdbthread.h"
35 #include "target.h"
36 #include "language.h"
37 #include "gdb_string.h"
38 #include "demangle.h"
39 #include "annotate.h"
40 #include "symfile.h"
41 #include "objfiles.h"
42
43 #include "gdb-events.h"
44
45 /* Prototypes for local functions. */
46
47 static void until_break_command_continuation (struct continuation_arg *arg);
48
49 static void
50 catch_command_1 PARAMS ((char *, int, int));
51
52 static void
53 enable_delete_command PARAMS ((char *, int));
54
55 static void
56 enable_delete_breakpoint PARAMS ((struct breakpoint *));
57
58 static void
59 enable_once_command PARAMS ((char *, int));
60
61 static void
62 enable_once_breakpoint PARAMS ((struct breakpoint *));
63
64 static void
65 disable_command PARAMS ((char *, int));
66
67 static void
68 enable_command PARAMS ((char *, int));
69
70 static void
71 map_breakpoint_numbers PARAMS ((char *, void (*)(struct breakpoint *)));
72
73 static void
74 ignore_command PARAMS ((char *, int));
75
76 static int breakpoint_re_set_one PARAMS ((PTR));
77
78 static void
79 clear_command PARAMS ((char *, int));
80
81 static void
82 catch_command PARAMS ((char *, int));
83
84 static void
85 handle_gnu_4_16_catch_command PARAMS ((char *, int, int));
86
87 static struct symtabs_and_lines
88 get_catch_sals PARAMS ((int));
89
90 static void
91 watch_command PARAMS ((char *, int));
92
93 static int
94 can_use_hardware_watchpoint PARAMS ((struct value *));
95
96 static void break_at_finish_command PARAMS ((char *, int));
97 static void break_at_finish_at_depth_command PARAMS ((char *, int));
98
99 void
100 tbreak_command PARAMS ((char *, int));
101
102 static void tbreak_at_finish_command PARAMS ((char *, int));
103
104 static void
105 break_command_1 PARAMS ((char *, int, int));
106
107 static void
108 mention PARAMS ((struct breakpoint *));
109
110 struct breakpoint *
111   set_raw_breakpoint PARAMS ((struct symtab_and_line));
112
113 static void
114 check_duplicates PARAMS ((CORE_ADDR, asection *));
115
116 static void
117 describe_other_breakpoints PARAMS ((CORE_ADDR, asection *));
118
119 static void
120 breakpoints_info PARAMS ((char *, int));
121
122 static void
123 breakpoint_1 PARAMS ((int, int));
124
125 static bpstat
126   bpstat_alloc PARAMS ((struct breakpoint *, bpstat));
127
128 static int breakpoint_cond_eval PARAMS ((PTR));
129
130 static void
131 cleanup_executing_breakpoints PARAMS ((PTR));
132
133 static void
134 commands_command PARAMS ((char *, int));
135
136 static void
137 condition_command PARAMS ((char *, int));
138
139 static int
140 get_number_trailer PARAMS ((char **, int));
141
142 void
143 set_breakpoint_count PARAMS ((int));
144
145 #if 0
146 static struct breakpoint *
147   create_temp_exception_breakpoint PARAMS ((CORE_ADDR));
148 #endif
149
150 typedef enum
151   {
152     mark_inserted,
153     mark_uninserted
154   }
155 insertion_state_t;
156
157 static int
158 remove_breakpoint PARAMS ((struct breakpoint *, insertion_state_t));
159
160 static enum print_stop_action print_it_typical PARAMS ((bpstat));
161
162 static enum print_stop_action print_bp_stop_message (bpstat bs);
163
164 typedef struct
165   {
166     enum exception_event_kind kind;
167     int enable;
168   }
169 args_for_catchpoint_enable;
170
171 static int watchpoint_check PARAMS ((PTR));
172
173 static int cover_target_enable_exception_callback PARAMS ((PTR));
174
175 static void maintenance_info_breakpoints PARAMS ((char *, int));
176
177 #ifdef GET_LONGJMP_TARGET
178 static void create_longjmp_breakpoint PARAMS ((char *));
179 #endif
180
181 static int hw_breakpoint_used_count PARAMS ((void));
182
183 static int hw_watchpoint_used_count PARAMS ((enum bptype, int *));
184
185 static void hbreak_command PARAMS ((char *, int));
186
187 static void thbreak_command PARAMS ((char *, int));
188
189 static void watch_command_1 PARAMS ((char *, int, int));
190
191 static void rwatch_command PARAMS ((char *, int));
192
193 static void awatch_command PARAMS ((char *, int));
194
195 static void do_enable_breakpoint PARAMS ((struct breakpoint *, enum bpdisp));
196
197 static void solib_load_unload_1 PARAMS ((char *hookname,
198                                          int tempflag,
199                                          char *dll_pathname,
200                                          char *cond_string,
201                                          enum bptype bp_kind));
202
203 static void create_fork_vfork_event_catchpoint PARAMS ((int tempflag, 
204                                                         char *cond_string,
205                                                         enum bptype bp_kind));
206
207 static void break_at_finish_at_depth_command_1 PARAMS ((char *arg, 
208                                                         int flag, 
209                                                         int from_tty));
210
211 static void break_at_finish_command_1 PARAMS ((char *arg, 
212                                                int flag, 
213                                                int from_tty));
214
215 static void stop_command PARAMS ((char *arg, int from_tty));
216
217 static void stopin_command PARAMS ((char *arg, int from_tty));
218
219 static void stopat_command PARAMS ((char *arg, int from_tty));
220
221 static char *ep_find_event_name_end PARAMS ((char *arg));
222
223 static char *ep_parse_optional_if_clause PARAMS ((char **arg));
224
225 static char *ep_parse_optional_filename PARAMS ((char **arg));
226
227 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
228 static void catch_exec_command_1 PARAMS ((char *arg, int tempflag, 
229                                           int from_tty));
230 #endif
231
232 static void create_exception_catchpoint 
233   PARAMS ((int tempflag, char *cond_string,
234            enum exception_event_kind ex_event,
235            struct symtab_and_line * sal));
236
237 static void catch_exception_command_1 
238   PARAMS ((enum exception_event_kind ex_event,
239            char *arg, int tempflag, int from_tty));
240
241 static void tcatch_command PARAMS ((char *arg, int from_tty));
242
243 static void ep_skip_leading_whitespace PARAMS ((char **s));
244
245 /* Prototypes for exported functions. */
246
247 static void
248 awatch_command PARAMS ((char *, int));
249
250 static void
251 do_enable_breakpoint PARAMS ((struct breakpoint *, enum bpdisp));
252
253 /* If FALSE, gdb will not use hardware support for watchpoints, even
254    if such is available. */
255 static int can_use_hw_watchpoints;
256
257 void _initialize_breakpoint PARAMS ((void));
258
259 void set_breakpoint_count PARAMS ((int));
260
261 extern int addressprint;        /* Print machine addresses? */
262
263 static int internal_breakpoint_number = -1;
264
265 /* Are we executing breakpoint commands?  */
266 static int executing_breakpoint_commands;
267
268 /* Walk the following statement or block through all breakpoints.
269    ALL_BREAKPOINTS_SAFE does so even if the statment deletes the current
270    breakpoint.  */
271
272 #define ALL_BREAKPOINTS(B)  for (B = breakpoint_chain; B; B = B->next)
273
274 #define ALL_BREAKPOINTS_SAFE(B,TMP)     \
275         for (B = breakpoint_chain;      \
276              B ? (TMP=B->next, 1): 0;   \
277              B = TMP)
278
279 /* True if SHIFT_INST_REGS defined, false otherwise.  */
280
281 int must_shift_inst_regs =
282 #if defined(SHIFT_INST_REGS)
283 1
284 #else
285 0
286 #endif
287  ;
288
289 /* True if breakpoint hit counts should be displayed in breakpoint info.  */
290
291 int show_breakpoint_hit_counts = 1;
292
293 /* Chain of all breakpoints defined.  */
294
295 struct breakpoint *breakpoint_chain;
296
297 /* Number of last breakpoint made.  */
298
299 int breakpoint_count;
300
301 /* Pointer to current exception event record */
302 static struct exception_event_record *current_exception_event;
303
304 /* Indicator of whether exception catchpoints should be nuked
305    between runs of a program */
306 int exception_catchpoints_are_fragile = 0;
307
308 /* Indicator of when exception catchpoints set-up should be
309    reinitialized -- e.g. when program is re-run */
310 int exception_support_initialized = 0;
311
312 /* This function returns a pointer to the string representation of the
313    pathname of the dynamically-linked library that has just been
314    loaded.
315
316    This function must be used only when SOLIB_HAVE_LOAD_EVENT is TRUE,
317    or undefined results are guaranteed.
318
319    This string's contents are only valid immediately after the
320    inferior has stopped in the dynamic linker hook, and becomes
321    invalid as soon as the inferior is continued.  Clients should make
322    a copy of this string if they wish to continue the inferior and
323    then access the string.  */
324
325 #ifndef SOLIB_LOADED_LIBRARY_PATHNAME
326 #define SOLIB_LOADED_LIBRARY_PATHNAME(pid) ""
327 #endif
328
329 /* This function returns a pointer to the string representation of the
330    pathname of the dynamically-linked library that has just been
331    unloaded.
332
333    This function must be used only when SOLIB_HAVE_UNLOAD_EVENT is
334    TRUE, or undefined results are guaranteed.
335
336    This string's contents are only valid immediately after the
337    inferior has stopped in the dynamic linker hook, and becomes
338    invalid as soon as the inferior is continued.  Clients should make
339    a copy of this string if they wish to continue the inferior and
340    then access the string.  */
341
342 #ifndef SOLIB_UNLOADED_LIBRARY_PATHNAME
343 #define SOLIB_UNLOADED_LIBRARY_PATHNAME(pid) ""
344 #endif
345
346 /* This function is called by the "catch load" command.  It allows the
347    debugger to be notified by the dynamic linker when a specified
348    library file (or any library file, if filename is NULL) is loaded.  */
349
350 #ifndef SOLIB_CREATE_CATCH_LOAD_HOOK
351 #define SOLIB_CREATE_CATCH_LOAD_HOOK(pid,tempflag,filename,cond_string) \
352    error ("catch of library loads not yet implemented on this platform")
353 #endif
354
355 /* This function is called by the "catch unload" command.  It allows
356    the debugger to be notified by the dynamic linker when a specified
357    library file (or any library file, if filename is NULL) is
358    unloaded.  */
359
360 #ifndef SOLIB_CREATE_CATCH_UNLOAD_HOOK
361 #define SOLIB_CREATE_CATCH_UNLOAD_HOOK(pid,tempflag,filename,cond_string) \
362    error ("catch of library unloads not yet implemented on this platform")
363 #endif
364
365 /* Set breakpoint count to NUM.  */
366
367 void
368 set_breakpoint_count (num)
369      int num;
370 {
371   breakpoint_count = num;
372   set_internalvar (lookup_internalvar ("bpnum"),
373                    value_from_longest (builtin_type_int, (LONGEST) num));
374 }
375
376 /* Used in run_command to zero the hit count when a new run starts. */
377
378 void
379 clear_breakpoint_hit_counts ()
380 {
381   struct breakpoint *b;
382
383   ALL_BREAKPOINTS (b)
384     b->hit_count = 0;
385 }
386
387 /* Default address, symtab and line to put a breakpoint at
388    for "break" command with no arg.
389    if default_breakpoint_valid is zero, the other three are
390    not valid, and "break" with no arg is an error.
391
392    This set by print_stack_frame, which calls set_default_breakpoint.  */
393
394 int default_breakpoint_valid;
395 CORE_ADDR default_breakpoint_address;
396 struct symtab *default_breakpoint_symtab;
397 int default_breakpoint_line;
398 \f
399 /* *PP is a string denoting a breakpoint.  Get the number of the breakpoint.
400    Advance *PP after the string and any trailing whitespace.
401
402    Currently the string can either be a number or "$" followed by the name
403    of a convenience variable.  Making it an expression wouldn't work well
404    for map_breakpoint_numbers (e.g. "4 + 5 + 6").
405    
406    TRAILER is a character which can be found after the number; most
407    commonly this is `-'.  If you don't want a trailer, use \0.  */ 
408 static int
409 get_number_trailer (pp, trailer)
410      char **pp;
411      int trailer;
412 {
413   int retval = 0;       /* default */
414   char *p = *pp;
415
416   if (p == NULL)
417     /* Empty line means refer to the last breakpoint.  */
418     return breakpoint_count;
419   else if (*p == '$')
420     {
421       /* Make a copy of the name, so we can null-terminate it
422          to pass to lookup_internalvar().  */
423       char *varname;
424       char *start = ++p;
425       value_ptr val;
426
427       while (isalnum (*p) || *p == '_')
428         p++;
429       varname = (char *) alloca (p - start + 1);
430       strncpy (varname, start, p - start);
431       varname[p - start] = '\0';
432       val = value_of_internalvar (lookup_internalvar (varname));
433       if (TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_INT)
434         retval = (int) value_as_long (val);
435       else
436         {
437           printf_filtered ("Convenience variable must have integer value.\n");
438           retval = 0;
439         }
440     }
441   else
442     {
443       if (*p == '-')
444         ++p;
445       while (*p >= '0' && *p <= '9')
446         ++p;
447       if (p == *pp)
448         /* There is no number here.  (e.g. "cond a == b").  */
449         {
450           /* Skip non-numeric token */
451           while (*p && !isspace((int) *p))
452             ++p;
453           /* Return zero, which caller must interpret as error. */
454           retval = 0;
455         }
456       else
457         retval = atoi (*pp);
458     }
459   if (!(isspace (*p) || *p == '\0' || *p == trailer))
460     {
461       /* Trailing junk: return 0 and let caller print error msg. */
462       while (!(isspace (*p) || *p == '\0' || *p == trailer))
463         ++p;
464       retval = 0;
465     }
466   while (isspace (*p))
467     p++;
468   *pp = p;
469   return retval;
470 }
471
472
473 /* Like get_number_trailer, but don't allow a trailer.  */
474 int
475 get_number (pp)
476      char **pp;
477 {
478   return get_number_trailer (pp, '\0');
479 }
480
481 /* Parse a number or a range.
482  * A number will be of the form handled by get_number.
483  * A range will be of the form <number1> - <number2>, and 
484  * will represent all the integers between number1 and number2,
485  * inclusive.
486  *
487  * While processing a range, this fuction is called iteratively;
488  * At each call it will return the next value in the range.
489  *
490  * At the beginning of parsing a range, the char pointer PP will
491  * be advanced past <number1> and left pointing at the '-' token.
492  * Subsequent calls will not advance the pointer until the range
493  * is completed.  The call that completes the range will advance
494  * pointer PP past <number2>.
495  */
496
497 int 
498 get_number_or_range (pp)
499      char **pp;
500 {
501   static int last_retval, end_value;
502   static char *end_ptr;
503   static int in_range = 0;
504
505   if (**pp != '-')
506     {
507       /* Default case: pp is pointing either to a solo number, 
508          or to the first number of a range.  */
509       last_retval = get_number_trailer (pp, '-');
510       if (**pp == '-')
511         {
512           char **temp;
513
514           /* This is the start of a range (<number1> - <number2>).
515              Skip the '-', parse and remember the second number,
516              and also remember the end of the final token.  */
517
518           temp = &end_ptr; 
519           end_ptr = *pp + 1; 
520           while (isspace ((int) *end_ptr))
521             end_ptr++;  /* skip white space */
522           end_value = get_number (temp);
523           if (end_value < last_retval) 
524             {
525               error ("inverted range");
526             }
527           else if (end_value == last_retval)
528             {
529               /* degenerate range (number1 == number2).  Advance the
530                  token pointer so that the range will be treated as a
531                  single number.  */ 
532               *pp = end_ptr;
533             }
534           else
535             in_range = 1;
536         }
537     }
538   else if (! in_range)
539     error ("negative value");
540   else
541     {
542       /* pp points to the '-' that betokens a range.  All
543          number-parsing has already been done.  Return the next
544          integer value (one greater than the saved previous value).
545          Do not advance the token pointer 'pp' until the end of range
546          is reached.  */
547
548       if (++last_retval == end_value)
549         {
550           /* End of range reached; advance token pointer.  */
551           *pp = end_ptr;
552           in_range = 0;
553         }
554     }
555   return last_retval;
556 }
557
558
559 \f
560 /* condition N EXP -- set break condition of breakpoint N to EXP.  */
561
562 static void
563 condition_command (arg, from_tty)
564      char *arg;
565      int from_tty;
566 {
567   register struct breakpoint *b;
568   char *p;
569   register int bnum;
570
571   if (arg == 0)
572     error_no_arg ("breakpoint number");
573
574   p = arg;
575   bnum = get_number (&p);
576   if (bnum == 0)
577     error ("Bad breakpoint argument: '%s'", arg);
578
579   ALL_BREAKPOINTS (b)
580     if (b->number == bnum)
581     {
582       if (b->cond)
583         {
584           free ((PTR) b->cond);
585           b->cond = 0;
586         }
587       if (b->cond_string != NULL)
588         free ((PTR) b->cond_string);
589
590       if (*p == 0)
591         {
592           b->cond = 0;
593           b->cond_string = NULL;
594           if (from_tty)
595             printf_filtered ("Breakpoint %d now unconditional.\n", bnum);
596         }
597       else
598         {
599           arg = p;
600           /* I don't know if it matters whether this is the string the user
601              typed in or the decompiled expression.  */
602           b->cond_string = savestring (arg, strlen (arg));
603           b->cond = parse_exp_1 (&arg, block_for_pc (b->address), 0);
604           if (*arg)
605             error ("Junk at end of expression");
606         }
607       breakpoints_changed ();
608       return;
609     }
610
611   error ("No breakpoint number %d.", bnum);
612 }
613
614 /* ARGSUSED */
615 static void
616 commands_command (arg, from_tty)
617      char *arg;
618      int from_tty;
619 {
620   register struct breakpoint *b;
621   char *p;
622   register int bnum;
623   struct command_line *l;
624
625   /* If we allowed this, we would have problems with when to
626      free the storage, if we change the commands currently
627      being read from.  */
628
629   if (executing_breakpoint_commands)
630     error ("Can't use the \"commands\" command among a breakpoint's commands.");
631
632   p = arg;
633   bnum = get_number (&p);
634
635   if (p && *p)
636     error ("Unexpected extra arguments following breakpoint number.");
637
638   ALL_BREAKPOINTS (b)
639     if (b->number == bnum)
640     {
641       char tmpbuf[128];
642       sprintf (tmpbuf, 
643                "Type commands for when breakpoint %d is hit, one per line.", 
644                bnum);
645       l = read_command_lines (tmpbuf, from_tty);
646       free_command_lines (&b->commands);
647       b->commands = l;
648       breakpoints_changed ();
649       return;
650     }
651   error ("No breakpoint number %d.", bnum);
652 }
653 \f
654 /* Like target_read_memory() but if breakpoints are inserted, return
655    the shadow contents instead of the breakpoints themselves.
656
657    Read "memory data" from whatever target or inferior we have. 
658    Returns zero if successful, errno value if not.  EIO is used
659    for address out of bounds.  If breakpoints are inserted, returns
660    shadow contents, not the breakpoints themselves.  From breakpoint.c.  */
661
662 int
663 read_memory_nobpt (memaddr, myaddr, len)
664      CORE_ADDR memaddr;
665      char *myaddr;
666      unsigned len;
667 {
668   int status;
669   struct breakpoint *b;
670   CORE_ADDR bp_addr = 0;
671   int bp_size = 0;
672
673   if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
674     /* No breakpoints on this machine. */
675     return target_read_memory (memaddr, myaddr, len);
676
677   ALL_BREAKPOINTS (b)
678   {
679     if (b->type == bp_none)
680       warning ("reading through apparently deleted breakpoint #%d?", 
681                b->number);
682
683     /* memory breakpoint? */
684     if (b->type == bp_watchpoint
685         || b->type == bp_hardware_watchpoint
686         || b->type == bp_read_watchpoint
687         || b->type == bp_access_watchpoint)
688       continue;
689     /* bp in memory? */
690     if (!b->inserted)
691       continue;
692     /* Addresses and length of the part of the breakpoint that
693        we need to copy.  */
694     /* XXXX The m68k, sh and h8300 have different local and remote
695        breakpoint values.  BREAKPOINT_FROM_PC still manages to
696        correctly determine the breakpoints memory address and size
697        for these targets. */
698     bp_addr = b->address;
699     bp_size = 0;
700     if (BREAKPOINT_FROM_PC (&bp_addr, &bp_size) == NULL)
701       continue;
702     if (bp_size == 0)
703       /* bp isn't valid */
704       continue;
705     if (bp_addr + bp_size <= memaddr)
706       /* The breakpoint is entirely before the chunk of memory we
707          are reading.  */
708       continue;
709     if (bp_addr >= memaddr + len)
710       /* The breakpoint is entirely after the chunk of memory we are
711          reading. */
712       continue;
713     /* Copy the breakpoint from the shadow contents, and recurse for
714        the things before and after.  */
715     {
716       /* Offset within shadow_contents.  */
717       int bptoffset = 0;
718
719       if (bp_addr < memaddr)
720         {
721           /* Only copy the second part of the breakpoint.  */
722           bp_size -= memaddr - bp_addr;
723           bptoffset = memaddr - bp_addr;
724           bp_addr = memaddr;
725         }
726
727       if (bp_addr + bp_size > memaddr + len)
728         {
729           /* Only copy the first part of the breakpoint.  */
730           bp_size -= (bp_addr + bp_size) - (memaddr + len);
731         }
732
733       memcpy (myaddr + bp_addr - memaddr,
734               b->shadow_contents + bptoffset, bp_size);
735
736       if (bp_addr > memaddr)
737         {
738           /* Copy the section of memory before the breakpoint.  */
739           status = read_memory_nobpt (memaddr, myaddr, bp_addr - memaddr);
740           if (status != 0)
741             return status;
742         }
743
744       if (bp_addr + bp_size < memaddr + len)
745         {
746           /* Copy the section of memory after the breakpoint.  */
747           status = read_memory_nobpt
748             (bp_addr + bp_size,
749              myaddr + bp_addr + bp_size - memaddr,
750              memaddr + len - (bp_addr + bp_size));
751           if (status != 0)
752             return status;
753         }
754       return 0;
755     }
756   }
757   /* Nothing overlaps.  Just call read_memory_noerr.  */
758   return target_read_memory (memaddr, myaddr, len);
759 }
760 \f
761
762 /* insert_breakpoints is used when starting or continuing the program.
763    remove_breakpoints is used when the program stops.
764    Both return zero if successful,
765    or an `errno' value if could not write the inferior.  */
766
767 int
768 insert_breakpoints ()
769 {
770   register struct breakpoint *b, *temp;
771   int return_val = 0;   /* return success code. */
772   int val = 0;
773   int disabled_breaks = 0;
774
775   static char message1[] = "Error inserting catchpoint %d:\n";
776   static char message[sizeof (message1) + 30];
777
778
779   ALL_BREAKPOINTS_SAFE (b, temp)
780   {
781     if (b->enable == permanent)
782       /* Permanent breakpoints cannot be inserted or removed.  */
783       continue;
784     else if (b->type != bp_watchpoint
785         && b->type != bp_hardware_watchpoint
786         && b->type != bp_read_watchpoint
787         && b->type != bp_access_watchpoint
788         && b->type != bp_catch_fork
789         && b->type != bp_catch_vfork
790         && b->type != bp_catch_exec
791         && b->type != bp_catch_throw
792         && b->type != bp_catch_catch
793         && b->enable != disabled
794         && b->enable != shlib_disabled
795         && b->enable != call_disabled
796         && !b->inserted
797         && !b->duplicate)
798       {
799         if (b->type == bp_hardware_breakpoint)
800           val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
801         else
802           {
803             /* Check to see if breakpoint is in an overlay section;
804                if so, we should set the breakpoint at the LMA address.
805                Only if the section is currently mapped should we ALSO
806                set a break at the VMA address. */
807             if (overlay_debugging && b->section &&
808                 section_is_overlay (b->section))
809               {
810                 CORE_ADDR addr;
811
812                 addr = overlay_unmapped_address (b->address, b->section);
813                 val = target_insert_breakpoint (addr, b->shadow_contents);
814                 /* This would be the time to check val, to see if the
815                    breakpoint write to the load address succeeded.  
816                    However, this might be an ordinary occurrance, eg. if 
817                    the unmapped overlay is in ROM.  */
818                 val = 0;        /* in case unmapped address failed */
819                 if (section_is_mapped (b->section))
820                   val = target_insert_breakpoint (b->address,
821                                                   b->shadow_contents);
822               }
823             else                /* ordinary (non-overlay) address */
824               val = target_insert_breakpoint (b->address, b->shadow_contents);
825           }
826         if (val)
827           {
828             /* Can't set the breakpoint.  */
829 #if defined (DISABLE_UNSETTABLE_BREAK)
830             if (DISABLE_UNSETTABLE_BREAK (b->address))
831               {
832                 /* See also: disable_breakpoints_in_shlibs. */
833                 val = 0;
834                 b->enable = shlib_disabled;
835                 if (!disabled_breaks)
836                   {
837                     target_terminal_ours_for_output ();
838                     warning ("Cannot insert breakpoint %d:", b->number);
839                     warning ("Temporarily disabling shared library breakpoints:");
840                   }
841                 disabled_breaks = 1;
842                 warning ("breakpoint #%d ", b->number);
843               }
844             else
845 #endif
846               {
847                 target_terminal_ours_for_output ();
848                 warning ("Cannot insert breakpoint %d:", b->number);
849 #ifdef ONE_PROCESS_WRITETEXT
850                 warning ("The same program may be running in another process.");
851 #endif
852                 memory_error (val, b->address);    /* which bombs us out */
853               }
854           }
855         else
856           b->inserted = 1;
857
858         if (val)
859           return_val = val;     /* remember failure */
860       }
861     else if (ep_is_exception_catchpoint (b)
862              && b->enable != disabled
863              && b->enable != shlib_disabled
864              && b->enable != call_disabled
865              && !b->inserted
866              && !b->duplicate)
867
868       {
869         /* If we get here, we must have a callback mechanism for exception
870            events -- with g++ style embedded label support, we insert
871            ordinary breakpoints and not catchpoints. */
872         /* Format possible error message */
873         sprintf (message, message1, b->number);
874
875         val = target_insert_breakpoint (b->address, b->shadow_contents);
876         if (val)
877           {
878             /* Couldn't set breakpoint for some reason */
879             target_terminal_ours_for_output ();
880             warning ("Cannot insert catchpoint %d; disabling it.",
881                      b->number);
882             b->enable = disabled;
883           }
884         else
885           {
886             /* Bp set, now make sure callbacks are enabled */
887             int val;
888             args_for_catchpoint_enable args;
889             args.kind = b->type == bp_catch_catch ? 
890               EX_EVENT_CATCH : EX_EVENT_THROW;
891             args.enable = 1;
892             val = catch_errors (cover_target_enable_exception_callback,
893                                 &args,
894                                 message, RETURN_MASK_ALL);
895             if (val != 0 && val != -1)
896               {
897                 b->inserted = 1;
898               }
899             /* Check if something went wrong; val == 0 can be ignored */
900             if (val == -1)
901               {
902                 /* something went wrong */
903                 target_terminal_ours_for_output ();
904                 warning ("Cannot insert catchpoint %d; disabling it.",
905                          b->number);
906                 b->enable = disabled;
907               }
908           }
909
910         if (val)
911           return_val = val;     /* remember failure */
912       }
913
914     else if ((b->type == bp_hardware_watchpoint ||
915               b->type == bp_read_watchpoint ||
916               b->type == bp_access_watchpoint)
917              && b->enable == enabled
918              && !b->inserted
919              && !b->duplicate)
920       {
921         struct frame_info *saved_frame;
922         int saved_level, within_current_scope;
923         value_ptr mark = value_mark ();
924         value_ptr v;
925
926         /* Save the current frame and level so we can restore it after
927            evaluating the watchpoint expression on its own frame.  */
928         saved_frame = selected_frame;
929         saved_level = selected_frame_level;
930
931         /* Determine if the watchpoint is within scope.  */
932         if (b->exp_valid_block == NULL)
933           within_current_scope = 1;
934         else
935           {
936             struct frame_info *fi;
937
938             /* There might be no current frame at this moment if we are
939                resuming from a step over a breakpoint.
940                Set up current frame before trying to find the watchpoint
941                frame.  */
942             get_current_frame ();
943             fi = find_frame_addr_in_frame_chain (b->watchpoint_frame);
944             within_current_scope = (fi != NULL);
945             if (within_current_scope)
946               select_frame (fi, -1);
947           }
948
949         if (within_current_scope)
950           {
951             /* Evaluate the expression and cut the chain of values
952                produced off from the value chain.
953
954                Make sure the value returned isn't lazy; we use
955                laziness to determine what memory GDB actually needed
956                in order to compute the value of the expression.  */
957             v = evaluate_expression (b->exp);
958             VALUE_CONTENTS(v);
959             value_release_to_mark (mark);
960
961             b->val_chain = v;
962             b->inserted = 1;
963
964             /* Look at each value on the value chain.  */
965             for (; v; v = v->next)
966               {
967                 /* If it's a memory location, and GDB actually needed
968                    its contents to evaluate the expression, then we
969                    must watch it.  */
970                 if (VALUE_LVAL (v) == lval_memory
971                     && ! VALUE_LAZY (v))
972                   {
973                     CORE_ADDR addr;
974                     int len, type;
975
976                     addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
977                     len = TYPE_LENGTH (VALUE_TYPE (v));
978                     type   = hw_write;
979                     if (b->type == bp_read_watchpoint)
980                       type = hw_read;
981                     else if (b->type == bp_access_watchpoint)
982                       type = hw_access;
983
984                     val = target_insert_watchpoint (addr, len, type);
985                     if (val == -1)
986                       {
987                         b->inserted = 0;
988                         break;
989                       }
990                     val = 0;
991                   }
992               }
993             /* Failure to insert a watchpoint on any memory value in the
994                value chain brings us here.  */
995             if (!b->inserted)
996               {
997                 remove_breakpoint (b, mark_uninserted);
998                 warning ("Could not insert hardware watchpoint %d.",
999                          b->number);
1000                 val = -1;
1001               }               
1002           }
1003         else
1004           {
1005             printf_filtered ("Hardware watchpoint %d deleted", b->number);
1006             printf_filtered ("because the program has left the block \n");
1007             printf_filtered ("in which its expression is valid.\n");
1008             if (b->related_breakpoint)
1009               b->related_breakpoint->disposition = del_at_next_stop;
1010             b->disposition = del_at_next_stop;
1011           }
1012
1013         /* Restore the frame and level.  */
1014         if ((saved_frame != selected_frame) ||
1015             (saved_level != selected_frame_level))
1016           select_and_print_frame (saved_frame, saved_level);
1017
1018         if (val)
1019           return_val = val;     /* remember failure */
1020       }
1021     else if ((b->type == bp_catch_fork
1022               || b->type == bp_catch_vfork
1023               || b->type == bp_catch_exec)
1024              && b->enable == enabled
1025              && !b->inserted
1026              && !b->duplicate)
1027       {
1028         val = -1;
1029         switch (b->type)
1030           {
1031           case bp_catch_fork:
1032             val = target_insert_fork_catchpoint (inferior_pid);
1033             break;
1034           case bp_catch_vfork:
1035             val = target_insert_vfork_catchpoint (inferior_pid);
1036             break;
1037           case bp_catch_exec:
1038             val = target_insert_exec_catchpoint (inferior_pid);
1039             break;
1040           default:
1041             warning ("Internal error, %s line %d.", __FILE__, __LINE__);
1042             break;
1043           }
1044         if (val < 0)
1045           {
1046             target_terminal_ours_for_output ();
1047             warning ("Cannot insert catchpoint %d.", b->number);
1048           }
1049         else
1050           b->inserted = 1;
1051
1052         if (val)
1053           return_val = val;     /* remember failure */
1054       }
1055   }
1056
1057   return return_val;
1058 }
1059
1060
1061 int
1062 remove_breakpoints ()
1063 {
1064   register struct breakpoint *b;
1065   int val;
1066
1067   ALL_BREAKPOINTS (b)
1068   {
1069     if (b->inserted)
1070       {
1071         val = remove_breakpoint (b, mark_uninserted);
1072         if (val != 0)
1073           return val;
1074       }
1075   }
1076   return 0;
1077 }
1078
1079 int
1080 reattach_breakpoints (pid)
1081      int pid;
1082 {
1083   register struct breakpoint *b;
1084   int val;
1085   int saved_inferior_pid = inferior_pid;
1086
1087   /* FIXME: use a cleanup, to insure that inferior_pid gets replaced! */
1088   inferior_pid = pid;   /* Because remove_breakpoint will use this global. */
1089   ALL_BREAKPOINTS (b)
1090   {
1091     if (b->inserted)
1092       {
1093         remove_breakpoint (b, mark_inserted);
1094         if (b->type == bp_hardware_breakpoint)
1095           val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
1096         else
1097           val = target_insert_breakpoint (b->address, b->shadow_contents);
1098         if (val != 0)
1099           {
1100             inferior_pid = saved_inferior_pid;
1101             return val;
1102           }
1103       }
1104   }
1105   inferior_pid = saved_inferior_pid;
1106   return 0;
1107 }
1108
1109 void
1110 update_breakpoints_after_exec ()
1111 {
1112   struct breakpoint *b;
1113   struct breakpoint *temp;
1114
1115   /* Doing this first prevents the badness of having delete_breakpoint()
1116      write a breakpoint's current "shadow contents" to lift the bp.  That
1117      shadow is NOT valid after an exec()! */
1118   mark_breakpoints_out ();
1119
1120   ALL_BREAKPOINTS_SAFE (b, temp)
1121   {
1122     /* Solib breakpoints must be explicitly reset after an exec(). */
1123     if (b->type == bp_shlib_event)
1124       {
1125         delete_breakpoint (b);
1126         continue;
1127       }
1128
1129     /* Thread event breakpoints must be set anew after an exec().  */
1130     if (b->type == bp_thread_event)
1131       {
1132         delete_breakpoint (b);
1133         continue;
1134       }
1135
1136     /* Step-resume breakpoints are meaningless after an exec(). */
1137     if (b->type == bp_step_resume)
1138       {
1139         delete_breakpoint (b);
1140         continue;
1141       }
1142
1143     /* Ditto the sigtramp handler breakpoints. */
1144     if (b->type == bp_through_sigtramp)
1145       {
1146         delete_breakpoint (b);
1147         continue;
1148       }
1149
1150     /* Ditto the exception-handling catchpoints. */
1151     if ((b->type == bp_catch_catch) || (b->type == bp_catch_throw))
1152       {
1153         delete_breakpoint (b);
1154         continue;
1155       }
1156
1157     /* Don't delete an exec catchpoint, because else the inferior
1158        won't stop when it ought!
1159
1160        Similarly, we probably ought to keep vfork catchpoints, 'cause
1161        on this target, we may not be able to stop when the vfork is
1162        seen, but only when the subsequent exec is seen.  (And because
1163        deleting fork catchpoints here but not vfork catchpoints will
1164        seem mysterious to users, keep those too.)
1165
1166        ??rehrauer: Let's hope that merely clearing out this catchpoint's
1167        target address field, if any, is sufficient to have it be reset
1168        automagically.  Certainly on HP-UX that's true. */
1169     if ((b->type == bp_catch_exec) ||
1170         (b->type == bp_catch_vfork) ||
1171         (b->type == bp_catch_fork))
1172       {
1173         b->address = (CORE_ADDR) NULL;
1174         continue;
1175       }
1176
1177     /* bp_finish is a special case.  The only way we ought to be able
1178        to see one of these when an exec() has happened, is if the user
1179        caught a vfork, and then said "finish".  Ordinarily a finish just
1180        carries them to the call-site of the current callee, by setting
1181        a temporary bp there and resuming.  But in this case, the finish
1182        will carry them entirely through the vfork & exec.
1183
1184        We don't want to allow a bp_finish to remain inserted now.  But
1185        we can't safely delete it, 'cause finish_command has a handle to
1186        the bp on a bpstat, and will later want to delete it.  There's a
1187        chance (and I've seen it happen) that if we delete the bp_finish
1188        here, that its storage will get reused by the time finish_command
1189        gets 'round to deleting the "use to be a bp_finish" breakpoint.
1190        We really must allow finish_command to delete a bp_finish.
1191
1192        In the absense of a general solution for the "how do we know
1193        it's safe to delete something others may have handles to?"
1194        problem, what we'll do here is just uninsert the bp_finish, and
1195        let finish_command delete it.
1196
1197        (We know the bp_finish is "doomed" in the sense that it's
1198        momentary, and will be deleted as soon as finish_command sees
1199        the inferior stopped.  So it doesn't matter that the bp's
1200        address is probably bogus in the new a.out, unlike e.g., the
1201        solib breakpoints.)  */
1202
1203     if (b->type == bp_finish)
1204       {
1205         continue;
1206       }
1207
1208     /* Without a symbolic address, we have little hope of the
1209        pre-exec() address meaning the same thing in the post-exec()
1210        a.out. */
1211     if (b->addr_string == NULL)
1212       {
1213         delete_breakpoint (b);
1214         continue;
1215       }
1216
1217     /* If this breakpoint has survived the above battery of checks, then
1218        it must have a symbolic address.  Be sure that it gets reevaluated
1219        to a target address, rather than reusing the old evaluation.  */
1220     b->address = (CORE_ADDR) NULL;
1221   }
1222 }
1223
1224 int
1225 detach_breakpoints (pid)
1226      int pid;
1227 {
1228   register struct breakpoint *b;
1229   int val;
1230   int saved_inferior_pid = inferior_pid;
1231
1232   if (pid == inferior_pid)
1233     error ("Cannot detach breakpoints of inferior_pid");
1234
1235   /* FIXME: use a cleanup, to insure that inferior_pid gets replaced! */
1236   inferior_pid = pid;   /* Because remove_breakpoint will use this global. */
1237   ALL_BREAKPOINTS (b)
1238   {
1239     if (b->inserted)
1240       {
1241         val = remove_breakpoint (b, mark_inserted);
1242         if (val != 0)
1243           {
1244             inferior_pid = saved_inferior_pid;
1245             return val;
1246           }
1247       }
1248   }
1249   inferior_pid = saved_inferior_pid;
1250   return 0;
1251 }
1252
1253 static int
1254 remove_breakpoint (b, is)
1255      struct breakpoint *b;
1256      insertion_state_t is;
1257 {
1258   int val;
1259
1260   if (b->enable == permanent)
1261     /* Permanent breakpoints cannot be inserted or removed.  */
1262     return 0;
1263
1264   if (b->type == bp_none)
1265     warning ("attempted to remove apparently deleted breakpoint #%d?", 
1266              b->number);
1267
1268   if (b->type != bp_watchpoint
1269       && b->type != bp_hardware_watchpoint
1270       && b->type != bp_read_watchpoint
1271       && b->type != bp_access_watchpoint
1272       && b->type != bp_catch_fork
1273       && b->type != bp_catch_vfork
1274       && b->type != bp_catch_exec
1275       && b->type != bp_catch_catch
1276       && b->type != bp_catch_throw)
1277     {
1278       if (b->type == bp_hardware_breakpoint)
1279         val = target_remove_hw_breakpoint (b->address, b->shadow_contents);
1280       else
1281         {
1282           /* Check to see if breakpoint is in an overlay section;
1283              if so, we should remove the breakpoint at the LMA address.
1284              If that is not equal to the raw address, then we should 
1285              presumable remove the breakpoint there as well.  */
1286           if (overlay_debugging && b->section &&
1287               section_is_overlay (b->section))
1288             {
1289               CORE_ADDR addr;
1290
1291               addr = overlay_unmapped_address (b->address, b->section);
1292               val = target_remove_breakpoint (addr, b->shadow_contents);
1293               /* This would be the time to check val, to see if the
1294                  shadow breakpoint write to the load address succeeded.  
1295                  However, this might be an ordinary occurrance, eg. if 
1296                  the unmapped overlay is in ROM.  */
1297               val = 0;          /* in case unmapped address failed */
1298               if (section_is_mapped (b->section))
1299                 val = target_remove_breakpoint (b->address,
1300                                                 b->shadow_contents);
1301             }
1302           else                  /* ordinary (non-overlay) address */
1303             val = target_remove_breakpoint (b->address, b->shadow_contents);
1304         }
1305       if (val)
1306         return val;
1307       b->inserted = (is == mark_inserted);
1308     }
1309   else if ((b->type == bp_hardware_watchpoint ||
1310             b->type == bp_read_watchpoint ||
1311             b->type == bp_access_watchpoint)
1312            && b->enable == enabled
1313            && !b->duplicate)
1314     {
1315       value_ptr v, n;
1316
1317       b->inserted = (is == mark_inserted);
1318       /* Walk down the saved value chain.  */
1319       for (v = b->val_chain; v; v = v->next)
1320         {
1321           /* For each memory reference remove the watchpoint
1322              at that address.  */
1323           if (VALUE_LVAL (v) == lval_memory
1324               && ! VALUE_LAZY (v))
1325             {
1326               CORE_ADDR addr;
1327               int len, type;
1328
1329               addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
1330               len = TYPE_LENGTH (VALUE_TYPE (v));
1331               type   = hw_write;
1332               if (b->type == bp_read_watchpoint)
1333                 type = hw_read;
1334               else if (b->type == bp_access_watchpoint)
1335                 type = hw_access;
1336
1337               val = target_remove_watchpoint (addr, len, type);
1338               if (val == -1)
1339                 b->inserted = 1;
1340               val = 0;
1341             }
1342         }
1343       /* Failure to remove any of the hardware watchpoints comes here.  */
1344       if ((is == mark_uninserted) && (b->inserted))
1345         warning ("Could not remove hardware watchpoint %d.",
1346                  b->number);
1347
1348       /* Free the saved value chain.  We will construct a new one
1349          the next time the watchpoint is inserted.  */
1350       for (v = b->val_chain; v; v = n)
1351         {
1352           n = v->next;
1353           value_free (v);
1354         }
1355       b->val_chain = NULL;
1356     }
1357   else if ((b->type == bp_catch_fork ||
1358             b->type == bp_catch_vfork ||
1359             b->type == bp_catch_exec)
1360            && b->enable == enabled
1361            && !b->duplicate)
1362     {
1363       val = -1;
1364       switch (b->type)
1365         {
1366         case bp_catch_fork:
1367           val = target_remove_fork_catchpoint (inferior_pid);
1368           break;
1369         case bp_catch_vfork:
1370           val = target_remove_vfork_catchpoint (inferior_pid);
1371           break;
1372         case bp_catch_exec:
1373           val = target_remove_exec_catchpoint (inferior_pid);
1374           break;
1375         default:
1376           warning ("Internal error, %s line %d.", __FILE__, __LINE__);
1377           break;
1378         }
1379       if (val)
1380         return val;
1381       b->inserted = (is == mark_inserted);
1382     }
1383   else if ((b->type == bp_catch_catch ||
1384             b->type == bp_catch_throw)
1385            && b->enable == enabled
1386            && !b->duplicate)
1387     {
1388
1389       val = target_remove_breakpoint (b->address, b->shadow_contents);
1390       if (val)
1391         return val;
1392       b->inserted = (is == mark_inserted);
1393     }
1394   else if (ep_is_exception_catchpoint (b)
1395            && b->inserted       /* sometimes previous insert doesn't happen */
1396            && b->enable == enabled
1397            && !b->duplicate)
1398     {
1399
1400       val = target_remove_breakpoint (b->address, b->shadow_contents);
1401       if (val)
1402         return val;
1403
1404       b->inserted = (is == mark_inserted);
1405     }
1406
1407   return 0;
1408 }
1409
1410 /* Clear the "inserted" flag in all breakpoints.  */
1411
1412 void
1413 mark_breakpoints_out ()
1414 {
1415   register struct breakpoint *b;
1416
1417   ALL_BREAKPOINTS (b)
1418     b->inserted = 0;
1419 }
1420
1421 /* Clear the "inserted" flag in all breakpoints and delete any
1422    breakpoints which should go away between runs of the program.
1423
1424    Plus other such housekeeping that has to be done for breakpoints
1425    between runs.
1426
1427    Note: this function gets called at the end of a run (by
1428    generic_mourn_inferior) and when a run begins (by
1429    init_wait_for_inferior). */
1430
1431
1432
1433 void
1434 breakpoint_init_inferior (context)
1435      enum inf_context context;
1436 {
1437   register struct breakpoint *b, *temp;
1438   static int warning_needed = 0;
1439
1440   ALL_BREAKPOINTS_SAFE (b, temp)
1441   {
1442     b->inserted = 0;
1443
1444     switch (b->type)
1445       {
1446       case bp_call_dummy:
1447       case bp_watchpoint_scope:
1448
1449         /* If the call dummy breakpoint is at the entry point it will
1450            cause problems when the inferior is rerun, so we better
1451            get rid of it. 
1452
1453            Also get rid of scope breakpoints.  */
1454         delete_breakpoint (b);
1455         break;
1456
1457       case bp_watchpoint:
1458       case bp_hardware_watchpoint:
1459       case bp_read_watchpoint:
1460       case bp_access_watchpoint:
1461
1462         /* Likewise for watchpoints on local expressions.  */
1463         if (b->exp_valid_block != NULL)
1464           delete_breakpoint (b);
1465         break;
1466       default:
1467         /* Likewise for exception catchpoints in dynamic-linked
1468            executables where required */
1469         if (ep_is_exception_catchpoint (b) &&
1470             exception_catchpoints_are_fragile)
1471           {
1472             warning_needed = 1;
1473             delete_breakpoint (b);
1474           }
1475         break;
1476       }
1477   }
1478
1479   if (exception_catchpoints_are_fragile)
1480     exception_support_initialized = 0;
1481
1482   /* Don't issue the warning unless it's really needed... */
1483   if (warning_needed && (context != inf_exited))
1484     {
1485       warning ("Exception catchpoints from last run were deleted.");
1486       warning ("You must reinsert them explicitly.");
1487       warning_needed = 0;
1488     }
1489 }
1490
1491 /* breakpoint_here_p (PC) returns non-zero if an enabled breakpoint
1492    exists at PC.  It returns ordinary_breakpoint_here if it's an
1493    ordinary breakpoint, or permanent_breakpoint_here if it's a
1494    permanent breakpoint.
1495    - When continuing from a location with an ordinary breakpoint, we
1496      actually single step once before calling insert_breakpoints.
1497    - When continuing from a localion with a permanent breakpoint, we
1498      need to use the `SKIP_PERMANENT_BREAKPOINT' macro, provided by
1499      the target, to advance the PC past the breakpoint.  */
1500
1501 enum breakpoint_here
1502 breakpoint_here_p (pc)
1503      CORE_ADDR pc;
1504 {
1505   register struct breakpoint *b;
1506   int any_breakpoint_here = 0;
1507
1508   ALL_BREAKPOINTS (b)
1509     if ((b->enable == enabled
1510          || b->enable == permanent)
1511         && b->address == pc)    /* bp is enabled and matches pc */
1512       {
1513         if (overlay_debugging &&
1514             section_is_overlay (b->section) &&
1515             !section_is_mapped (b->section))
1516           continue;             /* unmapped overlay -- can't be a match */
1517         else if (b->enable == permanent)
1518           return permanent_breakpoint_here;
1519         else
1520           any_breakpoint_here = 1;
1521       }
1522
1523   return any_breakpoint_here ? ordinary_breakpoint_here : 0;
1524 }
1525
1526
1527 /* breakpoint_inserted_here_p (PC) is just like breakpoint_here_p(),
1528    but it only returns true if there is actually a breakpoint inserted
1529    at PC.  */
1530
1531 int
1532 breakpoint_inserted_here_p (pc)
1533      CORE_ADDR pc;
1534 {
1535   register struct breakpoint *b;
1536
1537   ALL_BREAKPOINTS (b)
1538     if (b->inserted
1539         && b->address == pc)    /* bp is inserted and matches pc */
1540     {
1541       if (overlay_debugging &&
1542           section_is_overlay (b->section) &&
1543           !section_is_mapped (b->section))
1544         continue;               /* unmapped overlay -- can't be a match */
1545       else
1546         return 1;
1547     }
1548
1549   return 0;
1550 }
1551
1552 /* Return nonzero if FRAME is a dummy frame.  We can't use
1553    PC_IN_CALL_DUMMY because figuring out the saved SP would take too
1554    much time, at least using get_saved_register on the 68k.  This
1555    means that for this function to work right a port must use the
1556    bp_call_dummy breakpoint.  */
1557
1558 int
1559 frame_in_dummy (frame)
1560      struct frame_info *frame;
1561 {
1562   struct breakpoint *b;
1563
1564   if (!CALL_DUMMY_P)
1565     return 0;
1566
1567   if (USE_GENERIC_DUMMY_FRAMES)
1568     return generic_pc_in_call_dummy (frame->pc, frame->frame, frame->frame);
1569
1570   ALL_BREAKPOINTS (b)
1571   {
1572     if (b->type == bp_call_dummy
1573         && b->frame == frame->frame
1574     /* We need to check the PC as well as the frame on the sparc,
1575        for signals.exp in the testsuite.  */
1576         && (frame->pc
1577             >= (b->address
1578               - SIZEOF_CALL_DUMMY_WORDS / sizeof (LONGEST) * REGISTER_SIZE))
1579         && frame->pc <= b->address)
1580       return 1;
1581   }
1582   return 0;
1583 }
1584
1585 /* breakpoint_match_thread (PC, PID) returns true if the breakpoint at PC
1586    is valid for process/thread PID.  */
1587
1588 int
1589 breakpoint_thread_match (pc, pid)
1590      CORE_ADDR pc;
1591      int pid;
1592 {
1593   struct breakpoint *b;
1594   int thread;
1595
1596   thread = pid_to_thread_id (pid);
1597
1598   ALL_BREAKPOINTS (b)
1599     if (b->enable != disabled
1600         && b->enable != shlib_disabled
1601         && b->enable != call_disabled
1602         && b->address == pc
1603         && (b->thread == -1 || b->thread == thread))
1604     {
1605       if (overlay_debugging &&
1606           section_is_overlay (b->section) &&
1607           !section_is_mapped (b->section))
1608         continue;               /* unmapped overlay -- can't be a match */
1609       else
1610         return 1;
1611     }
1612
1613   return 0;
1614 }
1615 \f
1616
1617 /* bpstat stuff.  External routines' interfaces are documented
1618    in breakpoint.h.  */
1619
1620 int
1621 ep_is_catchpoint (ep)
1622      struct breakpoint *ep;
1623 {
1624   return
1625     (ep->type == bp_catch_load)
1626     || (ep->type == bp_catch_unload)
1627     || (ep->type == bp_catch_fork)
1628     || (ep->type == bp_catch_vfork)
1629     || (ep->type == bp_catch_exec)
1630     || (ep->type == bp_catch_catch)
1631     || (ep->type == bp_catch_throw)
1632
1633
1634   /* ??rehrauer: Add more kinds here, as are implemented... */
1635     ;
1636 }
1637
1638 int
1639 ep_is_shlib_catchpoint (ep)
1640      struct breakpoint *ep;
1641 {
1642   return
1643     (ep->type == bp_catch_load)
1644     || (ep->type == bp_catch_unload)
1645     ;
1646 }
1647
1648 int
1649 ep_is_exception_catchpoint (ep)
1650      struct breakpoint *ep;
1651 {
1652   return
1653     (ep->type == bp_catch_catch)
1654     || (ep->type == bp_catch_throw)
1655     ;
1656 }
1657
1658 /* Clear a bpstat so that it says we are not at any breakpoint.
1659    Also free any storage that is part of a bpstat.  */
1660
1661 void
1662 bpstat_clear (bsp)
1663      bpstat *bsp;
1664 {
1665   bpstat p;
1666   bpstat q;
1667
1668   if (bsp == 0)
1669     return;
1670   p = *bsp;
1671   while (p != NULL)
1672     {
1673       q = p->next;
1674       if (p->old_val != NULL)
1675         value_free (p->old_val);
1676       free ((PTR) p);
1677       p = q;
1678     }
1679   *bsp = NULL;
1680 }
1681
1682 /* Return a copy of a bpstat.  Like "bs1 = bs2" but all storage that
1683    is part of the bpstat is copied as well.  */
1684
1685 bpstat
1686 bpstat_copy (bs)
1687      bpstat bs;
1688 {
1689   bpstat p = NULL;
1690   bpstat tmp;
1691   bpstat retval = NULL;
1692
1693   if (bs == NULL)
1694     return bs;
1695
1696   for (; bs != NULL; bs = bs->next)
1697     {
1698       tmp = (bpstat) xmalloc (sizeof (*tmp));
1699       memcpy (tmp, bs, sizeof (*tmp));
1700       if (p == NULL)
1701         /* This is the first thing in the chain.  */
1702         retval = tmp;
1703       else
1704         p->next = tmp;
1705       p = tmp;
1706     }
1707   p->next = NULL;
1708   return retval;
1709 }
1710
1711 /* Find the bpstat associated with this breakpoint */
1712
1713 bpstat
1714 bpstat_find_breakpoint (bsp, breakpoint)
1715      bpstat bsp;
1716      struct breakpoint *breakpoint;
1717 {
1718   if (bsp == NULL)
1719     return NULL;
1720
1721   for (; bsp != NULL; bsp = bsp->next)
1722     {
1723       if (bsp->breakpoint_at == breakpoint)
1724         return bsp;
1725     }
1726   return NULL;
1727 }
1728
1729 /* Find a step_resume breakpoint associated with this bpstat.
1730    (If there are multiple step_resume bp's on the list, this function
1731    will arbitrarily pick one.)
1732
1733    It is an error to use this function if BPSTAT doesn't contain a
1734    step_resume breakpoint.
1735
1736    See wait_for_inferior's use of this function.  */
1737 struct breakpoint *
1738 bpstat_find_step_resume_breakpoint (bsp)
1739      bpstat bsp;
1740 {
1741   if (bsp == NULL)
1742     error ("Internal error (bpstat_find_step_resume_breakpoint)");
1743
1744   for (; bsp != NULL; bsp = bsp->next)
1745     {
1746       if ((bsp->breakpoint_at != NULL) &&
1747           (bsp->breakpoint_at->type == bp_step_resume))
1748         return bsp->breakpoint_at;
1749     }
1750
1751   error ("Internal error (no step_resume breakpoint found)");
1752 }
1753
1754
1755 /* Return the breakpoint number of the first breakpoint we are stopped
1756    at.  *BSP upon return is a bpstat which points to the remaining
1757    breakpoints stopped at (but which is not guaranteed to be good for
1758    anything but further calls to bpstat_num).
1759    Return 0 if passed a bpstat which does not indicate any breakpoints.  */
1760
1761 int
1762 bpstat_num (bsp)
1763      bpstat *bsp;
1764 {
1765   struct breakpoint *b;
1766
1767   if ((*bsp) == NULL)
1768     return 0;                   /* No more breakpoint values */
1769   else
1770     {
1771       b = (*bsp)->breakpoint_at;
1772       *bsp = (*bsp)->next;
1773       if (b == NULL)
1774         return -1;              /* breakpoint that's been deleted since */
1775       else
1776         return b->number;       /* We have its number */
1777     }
1778 }
1779
1780 /* Modify BS so that the actions will not be performed.  */
1781
1782 void
1783 bpstat_clear_actions (bs)
1784      bpstat bs;
1785 {
1786   for (; bs != NULL; bs = bs->next)
1787     {
1788       bs->commands = NULL;
1789       if (bs->old_val != NULL)
1790         {
1791           value_free (bs->old_val);
1792           bs->old_val = NULL;
1793         }
1794     }
1795 }
1796
1797 /* Stub for cleaning up our state if we error-out of a breakpoint command */
1798 /* ARGSUSED */
1799 static void
1800 cleanup_executing_breakpoints (ignore)
1801      PTR ignore;
1802 {
1803   executing_breakpoint_commands = 0;
1804 }
1805
1806 /* Execute all the commands associated with all the breakpoints at this
1807    location.  Any of these commands could cause the process to proceed
1808    beyond this point, etc.  We look out for such changes by checking
1809    the global "breakpoint_proceeded" after each command.  */
1810
1811 void
1812 bpstat_do_actions (bsp)
1813      bpstat *bsp;
1814 {
1815   bpstat bs;
1816   struct cleanup *old_chain;
1817   struct command_line *cmd;
1818
1819   /* Avoid endless recursion if a `source' command is contained
1820      in bs->commands.  */
1821   if (executing_breakpoint_commands)
1822     return;
1823
1824   executing_breakpoint_commands = 1;
1825   old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
1826
1827 top:
1828   /* Note that (as of this writing), our callers all appear to
1829      be passing us the address of global stop_bpstat.  And, if
1830      our calls to execute_control_command cause the inferior to
1831      proceed, that global (and hence, *bsp) will change.
1832
1833      We must be careful to not touch *bsp unless the inferior
1834      has not proceeded. */
1835
1836   /* This pointer will iterate over the list of bpstat's. */
1837   bs = *bsp;
1838
1839   breakpoint_proceeded = 0;
1840   for (; bs != NULL; bs = bs->next)
1841     {
1842       cmd = bs->commands;
1843       while (cmd != NULL)
1844         {
1845           execute_control_command (cmd);
1846
1847           if (breakpoint_proceeded)
1848             break;
1849           else
1850             cmd = cmd->next;
1851         }
1852       if (breakpoint_proceeded)
1853         /* The inferior is proceeded by the command; bomb out now.
1854            The bpstat chain has been blown away by wait_for_inferior.
1855            But since execution has stopped again, there is a new bpstat
1856            to look at, so start over.  */
1857         goto top;
1858       else
1859         bs->commands = NULL;
1860     }
1861
1862   executing_breakpoint_commands = 0;
1863   discard_cleanups (old_chain);
1864 }
1865
1866 /* This is the normal print function for a bpstat.  In the future,
1867    much of this logic could (should?) be moved to bpstat_stop_status,
1868    by having it set different print_it values.
1869
1870    Current scheme: When we stop, bpstat_print() is called.  It loops
1871    through the bpstat list of things causing this stop, calling the
1872    print_bp_stop_message function on each one. The behavior of the
1873    print_bp_stop_message function depends on the print_it field of
1874    bpstat. If such field so indicates, call this function here.
1875
1876    Return values from this routine (ultimately used by bpstat_print()
1877    and normal_stop() to decide what to do): 
1878    PRINT_NOTHING: Means we already printed all we needed to print,
1879    don't print anything else.
1880    PRINT_SRC_ONLY: Means we printed something, and we do *not* desire
1881    that something to be followed by a location.
1882    PRINT_SCR_AND_LOC: Means we printed something, and we *do* desire
1883    that something to be followed by a location.
1884    PRINT_UNKNOWN: Means we printed nothing or we need to do some more
1885    analysis.  */
1886
1887 static enum print_stop_action
1888 print_it_typical (bs)
1889      bpstat bs;
1890 {
1891   /* bs->breakpoint_at can be NULL if it was a momentary breakpoint
1892      which has since been deleted.  */
1893   if (bs->breakpoint_at == NULL)
1894     return PRINT_UNKNOWN;
1895
1896   switch (bs->breakpoint_at->type)
1897     {
1898     case bp_breakpoint:
1899     case bp_hardware_breakpoint:
1900       /* I think the user probably only wants to see one breakpoint
1901          number, not all of them.  */
1902       annotate_breakpoint (bs->breakpoint_at->number);
1903       printf_filtered ("\nBreakpoint %d, ", bs->breakpoint_at->number);
1904       return PRINT_SRC_AND_LOC;
1905       break;
1906
1907     case bp_shlib_event:
1908       /* Did we stop because the user set the stop_on_solib_events
1909          variable?  (If so, we report this as a generic, "Stopped due
1910          to shlib event" message.) */
1911       printf_filtered ("Stopped due to shared library event\n");
1912       return PRINT_NOTHING;
1913       break;
1914
1915     case bp_thread_event:
1916       /* Not sure how we will get here. 
1917          GDB should not stop for these breakpoints.  */
1918       printf_filtered ("Thread Event Breakpoint: gdb should not stop!\n");
1919       return PRINT_NOTHING;
1920       break;
1921
1922     case bp_catch_load:
1923       annotate_catchpoint (bs->breakpoint_at->number);
1924       printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1925       printf_filtered ("loaded");
1926       printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
1927       return PRINT_SRC_AND_LOC;
1928       break;
1929
1930     case bp_catch_unload:
1931       annotate_catchpoint (bs->breakpoint_at->number);
1932       printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1933       printf_filtered ("unloaded");
1934       printf_filtered (" %s), ", bs->breakpoint_at->triggered_dll_pathname);
1935       return PRINT_SRC_AND_LOC;
1936       break;
1937
1938     case bp_catch_fork:
1939       annotate_catchpoint (bs->breakpoint_at->number);
1940       printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1941       printf_filtered ("forked");
1942       printf_filtered (" process %d), ", 
1943                        bs->breakpoint_at->forked_inferior_pid);
1944       return PRINT_SRC_AND_LOC;
1945       break;
1946
1947     case bp_catch_vfork:
1948       annotate_catchpoint (bs->breakpoint_at->number);
1949       printf_filtered ("\nCatchpoint %d (", bs->breakpoint_at->number);
1950       printf_filtered ("vforked");
1951       printf_filtered (" process %d), ", 
1952                        bs->breakpoint_at->forked_inferior_pid);
1953       return PRINT_SRC_AND_LOC;
1954       break;
1955
1956     case bp_catch_exec:
1957       annotate_catchpoint (bs->breakpoint_at->number);
1958       printf_filtered ("\nCatchpoint %d (exec'd %s), ",
1959                        bs->breakpoint_at->number,
1960                        bs->breakpoint_at->exec_pathname);
1961       return PRINT_SRC_AND_LOC;
1962       break;
1963
1964     case bp_catch_catch:
1965       if (current_exception_event && 
1966           (CURRENT_EXCEPTION_KIND == EX_EVENT_CATCH))
1967         {
1968           annotate_catchpoint (bs->breakpoint_at->number);
1969           printf_filtered ("\nCatchpoint %d (exception caught), ", 
1970                            bs->breakpoint_at->number);
1971           printf_filtered ("throw location ");
1972           if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
1973             printf_filtered ("%s:%d",
1974                              CURRENT_EXCEPTION_THROW_FILE,
1975                              CURRENT_EXCEPTION_THROW_LINE);
1976           else
1977             printf_filtered ("unknown");
1978
1979           printf_filtered (", catch location ");
1980           if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
1981             printf_filtered ("%s:%d",
1982                              CURRENT_EXCEPTION_CATCH_FILE,
1983                              CURRENT_EXCEPTION_CATCH_LINE);
1984           else
1985             printf_filtered ("unknown");
1986
1987           printf_filtered ("\n");
1988           /* don't bother to print location frame info */
1989           return PRINT_SRC_ONLY;
1990         }
1991       else
1992         {
1993           /* really throw, some other bpstat will handle it */
1994           return PRINT_UNKNOWN; 
1995         }
1996       break;
1997
1998     case bp_catch_throw:
1999       if (current_exception_event && 
2000           (CURRENT_EXCEPTION_KIND == EX_EVENT_THROW))
2001         {
2002           annotate_catchpoint (bs->breakpoint_at->number);
2003           printf_filtered ("\nCatchpoint %d (exception thrown), ",
2004                            bs->breakpoint_at->number);
2005           printf_filtered ("throw location ");
2006           if (CURRENT_EXCEPTION_THROW_PC && CURRENT_EXCEPTION_THROW_LINE)
2007             printf_filtered ("%s:%d",
2008                              CURRENT_EXCEPTION_THROW_FILE,
2009                              CURRENT_EXCEPTION_THROW_LINE);
2010           else
2011             printf_filtered ("unknown");
2012
2013           printf_filtered (", catch location ");
2014           if (CURRENT_EXCEPTION_CATCH_PC && CURRENT_EXCEPTION_CATCH_LINE)
2015             printf_filtered ("%s:%d",
2016                              CURRENT_EXCEPTION_CATCH_FILE,
2017                              CURRENT_EXCEPTION_CATCH_LINE);
2018           else
2019             printf_filtered ("unknown");
2020
2021           printf_filtered ("\n");
2022           /* don't bother to print location frame info */
2023           return PRINT_SRC_ONLY; 
2024         }
2025       else
2026         {
2027           /* really catch, some other bpstat will handle it */
2028           return PRINT_UNKNOWN; 
2029         }
2030       break;
2031
2032     case bp_watchpoint:
2033     case bp_hardware_watchpoint:
2034       if (bs->old_val != NULL)
2035         {
2036           annotate_watchpoint (bs->breakpoint_at->number);
2037           mention (bs->breakpoint_at);
2038           printf_filtered ("\nOld value = ");
2039           value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
2040           printf_filtered ("\nNew value = ");
2041           value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2042                        Val_pretty_default);
2043           printf_filtered ("\n");
2044           value_free (bs->old_val);
2045           bs->old_val = NULL;
2046         }
2047       /* More than one watchpoint may have been triggered.  */
2048       return PRINT_UNKNOWN;
2049       break;
2050
2051     case bp_read_watchpoint:
2052       mention (bs->breakpoint_at);
2053       printf_filtered ("\nValue = ");
2054       value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2055                    Val_pretty_default);
2056       printf_filtered ("\n");
2057       return PRINT_UNKNOWN;
2058       break;
2059
2060     case bp_access_watchpoint:
2061       if (bs->old_val != NULL)     
2062         {
2063           annotate_watchpoint (bs->breakpoint_at->number);
2064           mention (bs->breakpoint_at);
2065           printf_filtered ("\nOld value = ");
2066           value_print (bs->old_val, gdb_stdout, 0, Val_pretty_default);
2067           value_free (bs->old_val);
2068           bs->old_val = NULL;
2069           printf_filtered ("\nNew value = ");
2070         }
2071       else 
2072         {
2073           mention (bs->breakpoint_at);
2074           printf_filtered ("\nValue = ");
2075         }
2076       value_print (bs->breakpoint_at->val, gdb_stdout, 0,
2077                    Val_pretty_default);
2078       printf_filtered ("\n");
2079       return PRINT_UNKNOWN;
2080       break;
2081
2082     /* Fall through, we don't deal with these types of breakpoints
2083        here. */
2084
2085     case bp_finish:
2086     case bp_until:
2087     case bp_none:
2088     case bp_longjmp:
2089     case bp_longjmp_resume:
2090     case bp_step_resume:
2091     case bp_through_sigtramp:
2092     case bp_watchpoint_scope:
2093     case bp_call_dummy:
2094     default:
2095       return PRINT_UNKNOWN;
2096     }
2097 }
2098
2099 /* Generic routine for printing messages indicating why we
2100    stopped. The behavior of this function depends on the value
2101    'print_it' in the bpstat structure.  Under some circumstances we
2102    may decide not to print anything here and delegate the task to
2103    normal_stop(). */
2104
2105 static enum print_stop_action
2106 print_bp_stop_message (bpstat bs)
2107 {
2108   switch (bs->print_it)
2109     {
2110     case print_it_noop:
2111       /* Nothing should be printed for this bpstat entry. */
2112       return PRINT_UNKNOWN;
2113       break;
2114
2115     case print_it_done:
2116       /* We still want to print the frame, but we already printed the
2117          relevant messages. */
2118       return PRINT_SRC_AND_LOC;
2119       break;
2120
2121     case print_it_normal:
2122       /* Normal case, we handle everything in print_it_typical. */
2123       return print_it_typical (bs);
2124       break;
2125     default:
2126       internal_error ("print_bp_stop_message: unrecognized enum value");
2127       break;
2128     }
2129 }
2130
2131 /* Print a message indicating what happened.  This is called from
2132    normal_stop().  The input to this routine is the head of the bpstat
2133    list - a list of the eventpoints that caused this stop.  This
2134    routine calls the generic print routine for printing a message
2135    about reasons for stopping.  This will print (for example) the
2136    "Breakpoint n," part of the output.  The return value of this
2137    routine is one of:
2138
2139    PRINT_UNKNOWN: Means we printed nothing
2140    PRINT_SRC_AND_LOC: Means we printed something, and expect subsequent
2141    code to print the location. An example is 
2142    "Breakpoint 1, " which should be followed by
2143    the location.
2144    PRINT_SRC_ONLY: Means we printed something, but there is no need
2145    to also print the location part of the message.
2146    An example is the catch/throw messages, which
2147    don't require a location appended to the end.  
2148    PRINT_NOTHING: We have done some printing and we don't need any 
2149    further info to be printed.*/
2150
2151 enum print_stop_action
2152 bpstat_print (bs)
2153      bpstat bs;
2154 {
2155   int val;
2156
2157   /* Maybe another breakpoint in the chain caused us to stop.
2158      (Currently all watchpoints go on the bpstat whether hit or not.
2159      That probably could (should) be changed, provided care is taken
2160      with respect to bpstat_explains_signal).  */
2161   for (; bs; bs = bs->next)
2162     {
2163       val = print_bp_stop_message (bs);
2164       if (val == PRINT_SRC_ONLY 
2165           || val == PRINT_SRC_AND_LOC 
2166           || val == PRINT_NOTHING)
2167         return val;
2168     }
2169
2170   /* We reached the end of the chain, or we got a null BS to start
2171      with and nothing was printed. */
2172   return PRINT_UNKNOWN;
2173 }
2174
2175 /* Evaluate the expression EXP and return 1 if value is zero.
2176    This is used inside a catch_errors to evaluate the breakpoint condition. 
2177    The argument is a "struct expression *" that has been cast to char * to 
2178    make it pass through catch_errors.  */
2179
2180 static int
2181 breakpoint_cond_eval (exp)
2182      PTR exp;
2183 {
2184   value_ptr mark = value_mark ();
2185   int i = !value_true (evaluate_expression ((struct expression *) exp));
2186   value_free_to_mark (mark);
2187   return i;
2188 }
2189
2190 /* Allocate a new bpstat and chain it to the current one.  */
2191
2192 static bpstat
2193 bpstat_alloc (b, cbs)
2194      register struct breakpoint *b;
2195      bpstat cbs;                /* Current "bs" value */
2196 {
2197   bpstat bs;
2198
2199   bs = (bpstat) xmalloc (sizeof (*bs));
2200   cbs->next = bs;
2201   bs->breakpoint_at = b;
2202   /* If the condition is false, etc., don't do the commands.  */
2203   bs->commands = NULL;
2204   bs->old_val = NULL;
2205   bs->print_it = print_it_normal;
2206   return bs;
2207 }
2208 \f
2209 /* Possible return values for watchpoint_check (this can't be an enum
2210    because of check_errors).  */
2211 /* The watchpoint has been deleted.  */
2212 #define WP_DELETED 1
2213 /* The value has changed.  */
2214 #define WP_VALUE_CHANGED 2
2215 /* The value has not changed.  */
2216 #define WP_VALUE_NOT_CHANGED 3
2217
2218 #define BP_TEMPFLAG 1
2219 #define BP_HARDWAREFLAG 2
2220
2221 /* Check watchpoint condition.  */
2222
2223 static int
2224 watchpoint_check (p)
2225      PTR p;
2226 {
2227   bpstat bs = (bpstat) p;
2228   struct breakpoint *b;
2229   struct frame_info *fr;
2230   int within_current_scope;
2231
2232   b = bs->breakpoint_at;
2233
2234   if (b->exp_valid_block == NULL)
2235     within_current_scope = 1;
2236   else
2237     {
2238       /* There is no current frame at this moment.  If we're going to have
2239          any chance of handling watchpoints on local variables, we'll need
2240          the frame chain (so we can determine if we're in scope).  */
2241       reinit_frame_cache ();
2242       fr = find_frame_addr_in_frame_chain (b->watchpoint_frame);
2243       within_current_scope = (fr != NULL);
2244       if (within_current_scope)
2245         /* If we end up stopping, the current frame will get selected
2246            in normal_stop.  So this call to select_frame won't affect
2247            the user.  */
2248         select_frame (fr, -1);
2249     }
2250
2251   if (within_current_scope)
2252     {
2253       /* We use value_{,free_to_}mark because it could be a
2254          *long* time before we return to the command level and
2255          call free_all_values.  We can't call free_all_values because
2256          we might be in the middle of evaluating a function call.  */
2257
2258       value_ptr mark = value_mark ();
2259       value_ptr new_val = evaluate_expression (bs->breakpoint_at->exp);
2260       if (!value_equal (b->val, new_val))
2261         {
2262           release_value (new_val);
2263           value_free_to_mark (mark);
2264           bs->old_val = b->val;
2265           b->val = new_val;
2266           /* We will stop here */
2267           return WP_VALUE_CHANGED;
2268         }
2269       else
2270         {
2271           /* Nothing changed, don't do anything.  */
2272           value_free_to_mark (mark);
2273           /* We won't stop here */
2274           return WP_VALUE_NOT_CHANGED;
2275         }
2276     }
2277   else
2278     {
2279       /* This seems like the only logical thing to do because
2280          if we temporarily ignored the watchpoint, then when
2281          we reenter the block in which it is valid it contains
2282          garbage (in the case of a function, it may have two
2283          garbage values, one before and one after the prologue).
2284          So we can't even detect the first assignment to it and
2285          watch after that (since the garbage may or may not equal
2286          the first value assigned).  */
2287       /* We print all the stop information in print_it_typical(), but
2288          in this case, by the time we call print_it_typical() this bp
2289          will be deleted already. So we have no choice but print the
2290          information here. */
2291       printf_filtered ("\
2292 Watchpoint %d deleted because the program has left the block in\n\
2293 which its expression is valid.\n", bs->breakpoint_at->number);
2294
2295       if (b->related_breakpoint)
2296         b->related_breakpoint->disposition = del_at_next_stop;
2297       b->disposition = del_at_next_stop;
2298
2299       return WP_DELETED;
2300     }
2301 }
2302
2303 /* Get a bpstat associated with having just stopped at address *PC
2304    and frame address CORE_ADDRESS.  Update *PC to point at the
2305    breakpoint (if we hit a breakpoint).  NOT_A_BREAKPOINT is nonzero
2306    if this is known to not be a real breakpoint (it could still be a
2307    watchpoint, though).  */
2308
2309 /* Determine whether we stopped at a breakpoint, etc, or whether we
2310    don't understand this stop.  Result is a chain of bpstat's such that:
2311
2312    if we don't understand the stop, the result is a null pointer.
2313
2314    if we understand why we stopped, the result is not null.
2315
2316    Each element of the chain refers to a particular breakpoint or
2317    watchpoint at which we have stopped.  (We may have stopped for
2318    several reasons concurrently.)
2319
2320    Each element of the chain has valid next, breakpoint_at,
2321    commands, FIXME??? fields.  */
2322
2323 bpstat
2324 bpstat_stop_status (pc, not_a_breakpoint)
2325      CORE_ADDR *pc;
2326      int not_a_breakpoint;
2327 {
2328   register struct breakpoint *b, *temp;
2329   CORE_ADDR bp_addr;
2330   /* True if we've hit a breakpoint (as opposed to a watchpoint).  */
2331   int real_breakpoint = 0;
2332   /* Root of the chain of bpstat's */
2333   struct bpstats root_bs[1];
2334   /* Pointer to the last thing in the chain currently.  */
2335   bpstat bs = root_bs;
2336   static char message1[] =
2337   "Error evaluating expression for watchpoint %d\n";
2338   char message[sizeof (message1) + 30 /* slop */ ];
2339
2340   /* Get the address where the breakpoint would have been.  */
2341   bp_addr = *pc - (not_a_breakpoint && !SOFTWARE_SINGLE_STEP_P ? 
2342                    0 : DECR_PC_AFTER_BREAK);
2343
2344   ALL_BREAKPOINTS_SAFE (b, temp)
2345   {
2346     if (b->enable == disabled
2347         || b->enable == shlib_disabled
2348         || b->enable == call_disabled)
2349       continue;
2350
2351     if (b->type != bp_watchpoint
2352         && b->type != bp_hardware_watchpoint
2353         && b->type != bp_read_watchpoint
2354         && b->type != bp_access_watchpoint
2355         && b->type != bp_hardware_breakpoint
2356         && b->type != bp_catch_fork
2357         && b->type != bp_catch_vfork
2358         && b->type != bp_catch_exec
2359         && b->type != bp_catch_catch
2360         && b->type != bp_catch_throw)   /* a non-watchpoint bp */
2361       if (b->address != bp_addr ||      /* address doesn't match or */
2362           (overlay_debugging && /* overlay doesn't match */
2363            section_is_overlay (b->section) &&
2364            !section_is_mapped (b->section)))
2365         continue;
2366
2367     if (b->type == bp_hardware_breakpoint
2368         && b->address != (*pc - DECR_PC_AFTER_HW_BREAK))
2369       continue;
2370
2371     /* Is this a catchpoint of a load or unload?  If so, did we
2372        get a load or unload of the specified library?  If not,
2373        ignore it. */
2374     if ((b->type == bp_catch_load)
2375 #if defined(SOLIB_HAVE_LOAD_EVENT)
2376         && (!SOLIB_HAVE_LOAD_EVENT (inferior_pid)
2377             || ((b->dll_pathname != NULL)
2378                 && (strcmp (b->dll_pathname, 
2379                             SOLIB_LOADED_LIBRARY_PATHNAME (inferior_pid)) 
2380                     != 0)))
2381 #endif
2382       )
2383       continue;
2384
2385     if ((b->type == bp_catch_unload)
2386 #if defined(SOLIB_HAVE_UNLOAD_EVENT)
2387         && (!SOLIB_HAVE_UNLOAD_EVENT (inferior_pid)
2388             || ((b->dll_pathname != NULL)
2389                 && (strcmp (b->dll_pathname, 
2390                             SOLIB_UNLOADED_LIBRARY_PATHNAME (inferior_pid)) 
2391                     != 0)))
2392 #endif
2393       )
2394       continue;
2395
2396     if ((b->type == bp_catch_fork)
2397         && !target_has_forked (inferior_pid, &b->forked_inferior_pid))
2398       continue;
2399
2400     if ((b->type == bp_catch_vfork)
2401         && !target_has_vforked (inferior_pid, &b->forked_inferior_pid))
2402       continue;
2403
2404     if ((b->type == bp_catch_exec)
2405         && !target_has_execd (inferior_pid, &b->exec_pathname))
2406       continue;
2407
2408     if (ep_is_exception_catchpoint (b) &&
2409         !(current_exception_event = target_get_current_exception_event ()))
2410       continue;
2411
2412     /* Come here if it's a watchpoint, or if the break address matches */
2413
2414     bs = bpstat_alloc (b, bs);  /* Alloc a bpstat to explain stop */
2415
2416     /* Watchpoints may change this, if not found to have triggered. */
2417     bs->stop = 1;
2418     bs->print = 1;
2419
2420     sprintf (message, message1, b->number);
2421     if (b->type == bp_watchpoint ||
2422         b->type == bp_hardware_watchpoint)
2423       {
2424         switch (catch_errors (watchpoint_check, bs, message, 
2425                               RETURN_MASK_ALL))
2426           {
2427           case WP_DELETED:
2428             /* We've already printed what needs to be printed.  */
2429             /* Actually this is superfluous, because by the time we
2430                call print_it_typical() the wp will be already deleted,
2431                and the function will return immediately. */
2432             bs->print_it = print_it_done;
2433             /* Stop.  */
2434             break;
2435           case WP_VALUE_CHANGED:
2436             /* Stop.  */
2437             ++(b->hit_count);
2438             break;
2439           case WP_VALUE_NOT_CHANGED:
2440             /* Don't stop.  */
2441             bs->print_it = print_it_noop;
2442             bs->stop = 0;
2443             continue;
2444           default:
2445             /* Can't happen.  */
2446             /* FALLTHROUGH */
2447           case 0:
2448             /* Error from catch_errors.  */
2449             printf_filtered ("Watchpoint %d deleted.\n", b->number);
2450             if (b->related_breakpoint)
2451               b->related_breakpoint->disposition = del_at_next_stop;
2452             b->disposition = del_at_next_stop;
2453             /* We've already printed what needs to be printed.  */
2454             bs->print_it = print_it_done;
2455
2456             /* Stop.  */
2457             break;
2458           }
2459       }
2460     else if (b->type == bp_read_watchpoint || 
2461              b->type == bp_access_watchpoint)
2462       {
2463         CORE_ADDR addr;
2464         value_ptr v;
2465         int found = 0;
2466
2467         addr = target_stopped_data_address ();
2468         if (addr == 0)
2469           continue;
2470         for (v = b->val_chain; v; v = v->next)
2471           {
2472             if (VALUE_LVAL (v) == lval_memory
2473                 && ! VALUE_LAZY (v))
2474               {
2475                 CORE_ADDR vaddr;
2476
2477                 vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
2478                 /* Exact match not required.  Within range is sufficient.  
2479                  */
2480                 if (addr >= vaddr &&
2481                     addr < vaddr + TYPE_LENGTH (VALUE_TYPE (v)))
2482                   found = 1;
2483               }
2484           }
2485         if (found)
2486           switch (catch_errors (watchpoint_check, bs, message,
2487                                 RETURN_MASK_ALL))
2488             {
2489             case WP_DELETED:
2490               /* We've already printed what needs to be printed.  */
2491               bs->print_it = print_it_done;
2492               /* Stop.  */
2493               break;
2494             case WP_VALUE_CHANGED:
2495             case WP_VALUE_NOT_CHANGED:
2496               /* Stop.  */
2497               ++(b->hit_count);
2498               break;
2499             default:
2500               /* Can't happen.  */
2501             case 0:
2502               /* Error from catch_errors.  */
2503               printf_filtered ("Watchpoint %d deleted.\n", b->number);
2504               if (b->related_breakpoint)
2505                 b->related_breakpoint->disposition = del_at_next_stop;
2506               b->disposition = del_at_next_stop;
2507               /* We've already printed what needs to be printed.  */
2508               bs->print_it = print_it_done;
2509               break;
2510             }
2511         else    /* found == 0 */
2512           {
2513             /* This is a case where some watchpoint(s) triggered,
2514                but not at the address of this watchpoint (FOUND
2515                was left zero).  So don't print anything for this
2516                watchpoint.  */
2517             bs->print_it = print_it_noop;
2518             bs->stop = 0;
2519             continue;
2520           }
2521       }
2522     else
2523       {
2524         /* By definition, an encountered breakpoint is a triggered
2525            breakpoint. */
2526         ++(b->hit_count);
2527
2528         real_breakpoint = 1;
2529       }
2530
2531     if (b->frame &&
2532        b->frame != (get_current_frame ())->frame)
2533       bs->stop = 0;
2534     else
2535       {
2536         int value_is_zero = 0;
2537
2538         if (b->cond)
2539           {
2540             /* Need to select the frame, with all that implies
2541                so that the conditions will have the right context.  */
2542             select_frame (get_current_frame (), 0);
2543             value_is_zero
2544               = catch_errors (breakpoint_cond_eval, (b->cond),
2545                               "Error in testing breakpoint condition:\n",
2546                               RETURN_MASK_ALL);
2547             /* FIXME-someday, should give breakpoint # */
2548             free_all_values ();
2549           }
2550         if (b->cond && value_is_zero)
2551           {
2552             bs->stop = 0;
2553             /* Don't consider this a hit.  */
2554             --(b->hit_count);
2555           }
2556         else if (b->ignore_count > 0)
2557           {
2558             b->ignore_count--;
2559             annotate_ignore_count_change ();
2560             bs->stop = 0;
2561           }
2562         else
2563           {
2564             /* We will stop here */
2565             if (b->disposition == disable)
2566               b->enable = disabled;
2567             bs->commands = b->commands;
2568             if (b->silent)
2569               bs->print = 0;
2570             if (bs->commands &&
2571                 (STREQ ("silent", bs->commands->line) ||
2572                  (xdb_commands && STREQ ("Q", bs->commands->line))))
2573               {
2574                 bs->commands = bs->commands->next;
2575                 bs->print = 0;
2576               }
2577           }
2578       }
2579     /* Print nothing for this entry if we dont stop or if we dont print.  */
2580     if (bs->stop == 0 || bs->print == 0)
2581       bs->print_it = print_it_noop;
2582   }
2583
2584   bs->next = NULL;              /* Terminate the chain */
2585   bs = root_bs->next;           /* Re-grab the head of the chain */
2586
2587   if (real_breakpoint && bs)
2588     {
2589       if (bs->breakpoint_at->type == bp_hardware_breakpoint)
2590         {
2591           if (DECR_PC_AFTER_HW_BREAK != 0)
2592             {
2593               *pc = *pc - DECR_PC_AFTER_HW_BREAK;
2594               write_pc (*pc);
2595             }
2596         }
2597       else
2598         {
2599           if (DECR_PC_AFTER_BREAK != 0 || must_shift_inst_regs)
2600             {
2601               *pc = bp_addr;
2602 #if defined (SHIFT_INST_REGS)
2603               SHIFT_INST_REGS ();
2604 #else /* No SHIFT_INST_REGS.  */
2605               write_pc (bp_addr);
2606 #endif /* No SHIFT_INST_REGS.  */
2607             }
2608         }
2609     }
2610
2611   /* The value of a hardware watchpoint hasn't changed, but the
2612      intermediate memory locations we are watching may have.  */
2613   if (bs && !bs->stop &&
2614       (bs->breakpoint_at->type == bp_hardware_watchpoint ||
2615        bs->breakpoint_at->type == bp_read_watchpoint ||
2616        bs->breakpoint_at->type == bp_access_watchpoint))
2617     {
2618       remove_breakpoints ();
2619       insert_breakpoints ();
2620     }
2621   return bs;
2622 }
2623 \f
2624 /* Tell what to do about this bpstat.  */
2625 struct bpstat_what
2626 bpstat_what (bs)
2627      bpstat bs;
2628 {
2629   /* Classify each bpstat as one of the following.  */
2630   enum class
2631     {
2632       /* This bpstat element has no effect on the main_action.  */
2633       no_effect = 0,
2634
2635       /* There was a watchpoint, stop but don't print.  */
2636       wp_silent,
2637
2638       /* There was a watchpoint, stop and print.  */
2639       wp_noisy,
2640
2641       /* There was a breakpoint but we're not stopping.  */
2642       bp_nostop,
2643
2644       /* There was a breakpoint, stop but don't print.  */
2645       bp_silent,
2646
2647       /* There was a breakpoint, stop and print.  */
2648       bp_noisy,
2649
2650       /* We hit the longjmp breakpoint.  */
2651       long_jump,
2652
2653       /* We hit the longjmp_resume breakpoint.  */
2654       long_resume,
2655
2656       /* We hit the step_resume breakpoint.  */
2657       step_resume,
2658
2659       /* We hit the through_sigtramp breakpoint.  */
2660       through_sig,
2661
2662       /* We hit the shared library event breakpoint.  */
2663       shlib_event,
2664
2665       /* We caught a shared library event.  */
2666       catch_shlib_event,
2667
2668       /* This is just used to count how many enums there are.  */
2669       class_last
2670     };
2671
2672   /* Here is the table which drives this routine.  So that we can
2673      format it pretty, we define some abbreviations for the
2674      enum bpstat_what codes.  */
2675 #define kc BPSTAT_WHAT_KEEP_CHECKING
2676 #define ss BPSTAT_WHAT_STOP_SILENT
2677 #define sn BPSTAT_WHAT_STOP_NOISY
2678 #define sgl BPSTAT_WHAT_SINGLE
2679 #define slr BPSTAT_WHAT_SET_LONGJMP_RESUME
2680 #define clr BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
2681 #define clrs BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
2682 #define sr BPSTAT_WHAT_STEP_RESUME
2683 #define ts BPSTAT_WHAT_THROUGH_SIGTRAMP
2684 #define shl BPSTAT_WHAT_CHECK_SHLIBS
2685 #define shlr BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
2686
2687 /* "Can't happen."  Might want to print an error message.
2688    abort() is not out of the question, but chances are GDB is just
2689    a bit confused, not unusable.  */
2690 #define err BPSTAT_WHAT_STOP_NOISY
2691
2692   /* Given an old action and a class, come up with a new action.  */
2693   /* One interesting property of this table is that wp_silent is the same
2694      as bp_silent and wp_noisy is the same as bp_noisy.  That is because
2695      after stopping, the check for whether to step over a breakpoint
2696      (BPSTAT_WHAT_SINGLE type stuff) is handled in proceed() without
2697      reference to how we stopped.  We retain separate wp_silent and
2698      bp_silent codes in case we want to change that someday. 
2699
2700      Another possibly interesting property of this table is that
2701      there's a partial ordering, priority-like, of the actions.  Once
2702      you've decided that some action is appropriate, you'll never go
2703      back and decide something of a lower priority is better.  The
2704      ordering is:
2705
2706      kc   < clr sgl shl slr sn sr ss ts
2707      sgl  < clrs shl shlr slr sn sr ss ts
2708      slr  < err shl shlr sn sr ss ts
2709      clr  < clrs err shl shlr sn sr ss ts
2710      clrs < err shl shlr sn sr ss ts
2711      ss   < shl shlr sn sr ts
2712      sn   < shl shlr sr ts
2713      sr   < shl shlr ts
2714      shl  < shlr
2715      ts   < 
2716      shlr <
2717
2718      What I think this means is that we don't need a damned table
2719      here.  If you just put the rows and columns in the right order,
2720      it'd look awfully regular.  We could simply walk the bpstat list
2721      and choose the highest priority action we find, with a little
2722      logic to handle the 'err' cases, and the CLEAR_LONGJMP_RESUME/
2723      CLEAR_LONGJMP_RESUME_SINGLE distinction (which breakpoint.h says
2724      is messy anyway).  */
2725
2726   /* step_resume entries: a step resume breakpoint overrides another
2727      breakpoint of signal handling (see comment in wait_for_inferior
2728      at first IN_SIGTRAMP where we set the step_resume breakpoint).  */
2729   /* We handle the through_sigtramp_breakpoint the same way; having both
2730      one of those and a step_resume_breakpoint is probably very rare (?).  */
2731
2732   static const enum bpstat_what_main_action
2733     table[(int) class_last][(int) BPSTAT_WHAT_LAST] =
2734   {
2735   /*                              old action */
2736   /*       kc    ss    sn    sgl    slr   clr    clrs   sr    ts   shl   shlr
2737    */
2738 /*no_effect */
2739     {kc, ss, sn, sgl, slr, clr, clrs, sr, ts, shl, shlr},
2740 /*wp_silent */
2741     {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
2742 /*wp_noisy */
2743     {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
2744 /*bp_nostop */
2745     {sgl, ss, sn, sgl, slr, clrs, clrs, sr, ts, shl, shlr},
2746 /*bp_silent */
2747     {ss, ss, sn, ss, ss, ss, ss, sr, ts, shl, shlr},
2748 /*bp_noisy */
2749     {sn, sn, sn, sn, sn, sn, sn, sr, ts, shl, shlr},
2750 /*long_jump */
2751     {slr, ss, sn, slr, err, err, err, sr, ts, shl, shlr},
2752 /*long_resume */
2753     {clr, ss, sn, clrs, err, err, err, sr, ts, shl, shlr},
2754 /*step_resume */
2755     {sr, sr, sr, sr, sr, sr, sr, sr, ts, shl, shlr},
2756 /*through_sig */
2757     {ts, ts, ts, ts, ts, ts, ts, ts, ts, shl, shlr},
2758 /*shlib */
2759     {shl, shl, shl, shl, shl, shl, shl, shl, ts, shl, shlr},
2760 /*catch_shlib */
2761     {shlr, shlr, shlr, shlr, shlr, shlr, shlr, shlr, ts, shlr, shlr}
2762   };
2763
2764 #undef kc
2765 #undef ss
2766 #undef sn
2767 #undef sgl
2768 #undef slr
2769 #undef clr
2770 #undef clrs
2771 #undef err
2772 #undef sr
2773 #undef ts
2774 #undef shl
2775 #undef shlr
2776   enum bpstat_what_main_action current_action = BPSTAT_WHAT_KEEP_CHECKING;
2777   struct bpstat_what retval;
2778
2779   retval.call_dummy = 0;
2780   for (; bs != NULL; bs = bs->next)
2781     {
2782       enum class bs_class = no_effect;
2783       if (bs->breakpoint_at == NULL)
2784         /* I suspect this can happen if it was a momentary breakpoint
2785            which has since been deleted.  */
2786         continue;
2787       switch (bs->breakpoint_at->type)
2788         {
2789         case bp_none:
2790           continue;
2791
2792         case bp_breakpoint:
2793         case bp_hardware_breakpoint:
2794         case bp_until:
2795         case bp_finish:
2796           if (bs->stop)
2797             {
2798               if (bs->print)
2799                 bs_class = bp_noisy;
2800               else
2801                 bs_class = bp_silent;
2802             }
2803           else
2804             bs_class = bp_nostop;
2805           break;
2806         case bp_watchpoint:
2807         case bp_hardware_watchpoint:
2808         case bp_read_watchpoint:
2809         case bp_access_watchpoint:
2810           if (bs->stop)
2811             {
2812               if (bs->print)
2813                 bs_class = wp_noisy;
2814               else
2815                 bs_class = wp_silent;
2816             }
2817           else
2818             /* There was a watchpoint, but we're not stopping. 
2819                This requires no further action.  */
2820             bs_class = no_effect;
2821           break;
2822         case bp_longjmp:
2823           bs_class = long_jump;
2824           break;
2825         case bp_longjmp_resume:
2826           bs_class = long_resume;
2827           break;
2828         case bp_step_resume:
2829           if (bs->stop)
2830             {
2831               bs_class = step_resume;
2832             }
2833           else
2834             /* It is for the wrong frame.  */
2835             bs_class = bp_nostop;
2836           break;
2837         case bp_through_sigtramp:
2838           bs_class = through_sig;
2839           break;
2840         case bp_watchpoint_scope:
2841           bs_class = bp_nostop;
2842           break;
2843         case bp_shlib_event:
2844           bs_class = shlib_event;
2845           break;
2846         case bp_thread_event:
2847           bs_class = bp_nostop;
2848           break;
2849         case bp_catch_load:
2850         case bp_catch_unload:
2851           /* Only if this catchpoint triggered should we cause the
2852              step-out-of-dld behaviour.  Otherwise, we ignore this
2853              catchpoint.  */
2854           if (bs->stop)
2855             bs_class = catch_shlib_event;
2856           else
2857             bs_class = no_effect;
2858           break;
2859         case bp_catch_fork:
2860         case bp_catch_vfork:
2861         case bp_catch_exec:
2862           if (bs->stop)
2863             {
2864               if (bs->print)
2865                 bs_class = bp_noisy;
2866               else
2867                 bs_class = bp_silent;
2868             }
2869           else
2870             /* There was a catchpoint, but we're not stopping.  
2871                This requires no further action.  */
2872             bs_class = no_effect;
2873           break;
2874         case bp_catch_catch:
2875           if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_CATCH)
2876             bs_class = bp_nostop;
2877           else if (bs->stop)
2878             bs_class = bs->print ? bp_noisy : bp_silent;
2879           break;
2880         case bp_catch_throw:
2881           if (!bs->stop || CURRENT_EXCEPTION_KIND != EX_EVENT_THROW)
2882             bs_class = bp_nostop;
2883           else if (bs->stop)
2884             bs_class = bs->print ? bp_noisy : bp_silent;
2885           break;
2886         case bp_call_dummy:
2887           /* Make sure the action is stop (silent or noisy),
2888              so infrun.c pops the dummy frame.  */
2889           bs_class = bp_silent;
2890           retval.call_dummy = 1;
2891           break;
2892         }
2893       current_action = table[(int) bs_class][(int) current_action];
2894     }
2895   retval.main_action = current_action;
2896   return retval;
2897 }
2898
2899 /* Nonzero if we should step constantly (e.g. watchpoints on machines
2900    without hardware support).  This isn't related to a specific bpstat,
2901    just to things like whether watchpoints are set.  */
2902
2903 int
2904 bpstat_should_step ()
2905 {
2906   struct breakpoint *b;
2907   ALL_BREAKPOINTS (b)
2908     if (b->enable == enabled && b->type == bp_watchpoint)
2909     return 1;
2910   return 0;
2911 }
2912
2913 /* Nonzero if there are enabled hardware watchpoints. */
2914 int
2915 bpstat_have_active_hw_watchpoints ()
2916 {
2917   struct breakpoint *b;
2918   ALL_BREAKPOINTS (b)
2919     if ((b->enable == enabled) &&
2920         (b->inserted) &&
2921         ((b->type == bp_hardware_watchpoint) ||
2922          (b->type == bp_read_watchpoint) ||
2923          (b->type == bp_access_watchpoint)))
2924     return 1;
2925   return 0;
2926 }
2927 \f
2928
2929 /* Given a bpstat that records zero or more triggered eventpoints, this
2930    function returns another bpstat which contains only the catchpoints
2931    on that first list, if any. */
2932 void
2933 bpstat_get_triggered_catchpoints (ep_list, cp_list)
2934      bpstat ep_list;
2935      bpstat *cp_list;
2936 {
2937   struct bpstats root_bs[1];
2938   bpstat bs = root_bs;
2939   struct breakpoint *ep;
2940   char *dll_pathname;
2941
2942   bpstat_clear (cp_list);
2943   root_bs->next = NULL;
2944
2945   for (; ep_list != NULL; ep_list = ep_list->next)
2946     {
2947       /* Is this eventpoint a catchpoint?  If not, ignore it. */
2948       ep = ep_list->breakpoint_at;
2949       if (ep == NULL)
2950         break;
2951       if ((ep->type != bp_catch_load) &&
2952           (ep->type != bp_catch_unload) &&
2953           (ep->type != bp_catch_catch) &&
2954           (ep->type != bp_catch_throw))         
2955         /* pai: (temp) ADD fork/vfork here!!  */
2956         continue;
2957
2958       /* Yes; add it to the list. */
2959       bs = bpstat_alloc (ep, bs);
2960       *bs = *ep_list;
2961       bs->next = NULL;
2962       bs = root_bs->next;
2963
2964 #if defined(SOLIB_ADD)
2965       /* Also, for each triggered catchpoint, tag it with the name of
2966          the library that caused this trigger.  (We copy the name now,
2967          because it's only guaranteed to be available NOW, when the
2968          catchpoint triggers.  Clients who may wish to know the name
2969          later must get it from the catchpoint itself.) */
2970       if (ep->triggered_dll_pathname != NULL)
2971         free (ep->triggered_dll_pathname);
2972       if (ep->type == bp_catch_load)
2973         dll_pathname = SOLIB_LOADED_LIBRARY_PATHNAME (inferior_pid);
2974       else
2975         dll_pathname = SOLIB_UNLOADED_LIBRARY_PATHNAME (inferior_pid);
2976 #else
2977       dll_pathname = NULL;
2978 #endif
2979       if (dll_pathname)
2980         {
2981           ep->triggered_dll_pathname = (char *) 
2982             xmalloc (strlen (dll_pathname) + 1);
2983           strcpy (ep->triggered_dll_pathname, dll_pathname);
2984         }
2985       else
2986         ep->triggered_dll_pathname = NULL;
2987     }
2988
2989   *cp_list = bs;
2990 }
2991
2992 /* Print B to gdb_stdout. */
2993 static void
2994 print_one_breakpoint (struct breakpoint *b,
2995                       CORE_ADDR *last_addr)
2996 {
2997   register struct command_line *l;
2998   register struct symbol *sym;
2999   struct ep_type_description
3000     {
3001       enum bptype type;
3002       char *description;
3003     };
3004   static struct ep_type_description bptypes[] =
3005   {
3006     {bp_none, "?deleted?"},
3007     {bp_breakpoint, "breakpoint"},
3008     {bp_hardware_breakpoint, "hw breakpoint"},
3009     {bp_until, "until"},
3010     {bp_finish, "finish"},
3011     {bp_watchpoint, "watchpoint"},
3012     {bp_hardware_watchpoint, "hw watchpoint"},
3013     {bp_read_watchpoint, "read watchpoint"},
3014     {bp_access_watchpoint, "acc watchpoint"},
3015     {bp_longjmp, "longjmp"},
3016     {bp_longjmp_resume, "longjmp resume"},
3017     {bp_step_resume, "step resume"},
3018     {bp_through_sigtramp, "sigtramp"},
3019     {bp_watchpoint_scope, "watchpoint scope"},
3020     {bp_call_dummy, "call dummy"},
3021     {bp_shlib_event, "shlib events"},
3022     {bp_thread_event, "thread events"},
3023     {bp_catch_load, "catch load"},
3024     {bp_catch_unload, "catch unload"},
3025     {bp_catch_fork, "catch fork"},
3026     {bp_catch_vfork, "catch vfork"},
3027     {bp_catch_exec, "catch exec"},
3028     {bp_catch_catch, "catch catch"},
3029     {bp_catch_throw, "catch throw"}
3030   };
3031   
3032   static char *bpdisps[] =
3033   {"del", "dstp", "dis", "keep"};
3034   static char bpenables[] = "nynny";
3035   char wrap_indent[80];
3036
3037   annotate_record ();
3038
3039   /* 1 */
3040   annotate_field (0);
3041   printf_filtered ("%-3d ", b->number);
3042
3043   /* 2 */
3044   annotate_field (1);
3045   if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0])))
3046       || ((int) b->type != bptypes[(int) b->type].type))
3047     internal_error ("bptypes table does not describe type #%d.",
3048                     (int) b->type);
3049   printf_filtered ("%-14s ", bptypes[(int) b->type].description);
3050
3051   /* 3 */
3052   annotate_field (2);
3053   printf_filtered ("%-4s ", bpdisps[(int) b->disposition]);
3054
3055   /* 4 */
3056   annotate_field (3);
3057   printf_filtered ("%-3c ", bpenables[(int) b->enable]);
3058   
3059   /* 5 and 6 */
3060   strcpy (wrap_indent, "                           ");
3061   if (addressprint)
3062     strcat (wrap_indent, "           ");
3063   switch (b->type)
3064     {
3065     case bp_none:
3066       internal_error ("print_one_breakpoint: bp_none encountered\n");
3067       break;
3068
3069     case bp_watchpoint:
3070     case bp_hardware_watchpoint:
3071     case bp_read_watchpoint:
3072     case bp_access_watchpoint:
3073       /* Field 4, the address, is omitted (which makes the columns
3074          not line up too nicely with the headers, but the effect
3075          is relatively readable).  */
3076       annotate_field (5);
3077       print_expression (b->exp, gdb_stdout);
3078       break;
3079       
3080     case bp_catch_load:
3081     case bp_catch_unload:
3082       /* Field 4, the address, is omitted (which makes the columns
3083          not line up too nicely with the headers, but the effect
3084          is relatively readable).  */
3085       annotate_field (5);
3086       if (b->dll_pathname == NULL)
3087         printf_filtered ("<any library> ");
3088       else
3089         printf_filtered ("library \"%s\" ", b->dll_pathname);
3090       break;
3091       
3092     case bp_catch_fork:
3093     case bp_catch_vfork:
3094       /* Field 4, the address, is omitted (which makes the columns
3095          not line up too nicely with the headers, but the effect
3096          is relatively readable).  */
3097       annotate_field (5);
3098       if (b->forked_inferior_pid != 0)
3099         printf_filtered ("process %d ", b->forked_inferior_pid);
3100       break;
3101       
3102     case bp_catch_exec:
3103       /* Field 4, the address, is omitted (which makes the columns
3104          not line up too nicely with the headers, but the effect
3105          is relatively readable).  */
3106       annotate_field (5);
3107       if (b->exec_pathname != NULL)
3108         printf_filtered ("program \"%s\" ", b->exec_pathname);
3109       break;
3110
3111     case bp_catch_catch:
3112       /* Field 4, the address, is omitted (which makes the columns
3113          not line up too nicely with the headers, but the effect
3114          is relatively readable).  */
3115       annotate_field (5);
3116       printf_filtered ("exception catch ");
3117       break;
3118
3119     case bp_catch_throw:
3120       /* Field 4, the address, is omitted (which makes the columns
3121          not line up too nicely with the headers, but the effect
3122          is relatively readable).  */
3123       annotate_field (5);
3124       printf_filtered ("exception throw ");
3125       break;
3126       
3127     case bp_breakpoint:
3128     case bp_hardware_breakpoint:
3129     case bp_until:
3130     case bp_finish:
3131     case bp_longjmp:
3132     case bp_longjmp_resume:
3133     case bp_step_resume:
3134     case bp_through_sigtramp:
3135     case bp_watchpoint_scope:
3136     case bp_call_dummy:
3137     case bp_shlib_event:
3138     case bp_thread_event:
3139       if (addressprint)
3140         {
3141           annotate_field (4);
3142           /* FIXME-32x64: need a print_address_numeric with
3143              field width */
3144           printf_filtered
3145             ("%s ",
3146              local_hex_string_custom
3147              ((unsigned long) b->address, "08l"));
3148         }
3149       annotate_field (5);
3150       *last_addr = b->address;
3151       if (b->source_file)
3152         {
3153           sym = find_pc_sect_function (b->address, b->section);
3154           if (sym)
3155             {
3156               fputs_filtered ("in ", gdb_stdout);
3157               fputs_filtered (SYMBOL_SOURCE_NAME (sym), gdb_stdout);
3158               wrap_here (wrap_indent);
3159               fputs_filtered (" at ", gdb_stdout);
3160             }
3161           fputs_filtered (b->source_file, gdb_stdout);
3162           printf_filtered (":%d", b->line_number);
3163         }
3164       else
3165         print_address_symbolic (b->address, gdb_stdout, demangle, " ");
3166       break;
3167     }
3168   
3169   if (b->thread != -1)
3170     {
3171       printf_filtered (" thread %d", b->thread);
3172     }
3173   
3174   printf_filtered ("\n");
3175   
3176   if (b->frame)
3177     {
3178       annotate_field (6);
3179       printf_filtered ("\tstop only in stack frame at ");
3180       print_address_numeric (b->frame, 1, gdb_stdout);
3181       printf_filtered ("\n");
3182     }
3183   
3184   if (b->cond)
3185     {
3186       annotate_field (7);
3187       printf_filtered ("\tstop only if ");
3188       print_expression (b->cond, gdb_stdout);
3189       printf_filtered ("\n");
3190     }
3191   
3192   if (b->thread != -1)
3193     {
3194       /* FIXME should make an annotation for this */
3195       printf_filtered ("\tstop only in thread %d\n", b->thread);
3196     }
3197   
3198   if (show_breakpoint_hit_counts && b->hit_count)
3199     {
3200       /* FIXME should make an annotation for this */
3201       if (ep_is_catchpoint (b))
3202         printf_filtered ("\tcatchpoint");
3203       else
3204         printf_filtered ("\tbreakpoint");
3205       printf_filtered (" already hit %d time%s\n",
3206                        b->hit_count, (b->hit_count == 1 ? "" : "s"));
3207     }
3208   
3209   if (b->ignore_count)
3210     {
3211       annotate_field (8);
3212       printf_filtered ("\tignore next %d hits\n", b->ignore_count);
3213     }
3214   
3215   if ((l = b->commands))
3216     {
3217       annotate_field (9);
3218       while (l)
3219         {
3220           print_command_line (l, 4, gdb_stdout);
3221           l = l->next;
3222         }
3223     }
3224 }
3225
3226 struct captured_breakpoint_query_args
3227   {
3228     int bnum;
3229   };
3230
3231 static int
3232 do_captured_breakpoint_query (void *data)
3233 {
3234   struct captured_breakpoint_query_args *args = data;
3235   register struct breakpoint *b;
3236   CORE_ADDR dummy_addr = 0;
3237   ALL_BREAKPOINTS (b)
3238     {
3239       if (args->bnum == b->number)
3240         {
3241           print_one_breakpoint (b, &dummy_addr);
3242           return GDB_RC_OK;
3243         }
3244     }
3245   return GDB_RC_NONE;
3246 }
3247
3248 enum gdb_rc
3249 gdb_breakpoint_query (/* output object, */ int bnum)
3250 {
3251   struct captured_breakpoint_query_args args;
3252   args.bnum = bnum;
3253   /* For the moment we don't trust print_one_breakpoint() to not throw
3254      an error. */
3255   return catch_errors (do_captured_breakpoint_query, &args,
3256                        NULL, RETURN_MASK_ALL);
3257 }
3258
3259 /* Print information on breakpoint number BNUM, or -1 if all.
3260    If WATCHPOINTS is zero, process only breakpoints; if WATCHPOINTS
3261    is nonzero, process only watchpoints.  */
3262
3263 static void
3264 breakpoint_1 (bnum, allflag)
3265      int bnum;
3266      int allflag;
3267 {
3268   register struct breakpoint *b;
3269   CORE_ADDR last_addr = (CORE_ADDR) -1;
3270   int found_a_breakpoint = 0;
3271   
3272   ALL_BREAKPOINTS (b)
3273     if (bnum == -1
3274         || bnum == b->number)
3275       {
3276         /* We only print out user settable breakpoints unless the
3277            allflag is set. */
3278         if (!allflag
3279             && b->type != bp_breakpoint
3280             && b->type != bp_catch_load
3281             && b->type != bp_catch_unload
3282             && b->type != bp_catch_fork
3283             && b->type != bp_catch_vfork
3284             && b->type != bp_catch_exec
3285             && b->type != bp_catch_catch
3286             && b->type != bp_catch_throw
3287             && b->type != bp_hardware_breakpoint
3288             && b->type != bp_watchpoint
3289             && b->type != bp_read_watchpoint
3290             && b->type != bp_access_watchpoint
3291             && b->type != bp_hardware_watchpoint)
3292           continue;
3293         
3294         if (!found_a_breakpoint++)
3295           {
3296             annotate_breakpoints_headers ();
3297             annotate_field (0);
3298             printf_filtered ("Num ");
3299             annotate_field (1);
3300             printf_filtered ("Type           ");
3301             annotate_field (2);
3302             printf_filtered ("Disp ");
3303             annotate_field (3);
3304             printf_filtered ("Enb ");
3305             if (addressprint)
3306               {
3307                 annotate_field (4);
3308                 printf_filtered ("Address    ");
3309               }
3310             annotate_field (5);
3311             printf_filtered ("What\n");
3312             annotate_breakpoints_table ();
3313           }
3314         
3315         print_one_breakpoint (b, &last_addr);
3316       }
3317   
3318   if (!found_a_breakpoint)
3319     {
3320       if (bnum == -1)
3321         printf_filtered ("No breakpoints or watchpoints.\n");
3322       else
3323         printf_filtered ("No breakpoint or watchpoint number %d.\n", bnum);
3324     }
3325   else
3326     {
3327       /* Compare against (CORE_ADDR)-1 in case some compiler decides
3328          that a comparison of an unsigned with -1 is always false.  */
3329       if (last_addr != (CORE_ADDR) -1)
3330         set_next_address (last_addr);
3331     }
3332
3333   /* FIXME? Should this be moved up so that it is only called when
3334      there have been breakpoints? */
3335   annotate_breakpoints_table_end ();
3336 }
3337
3338 /* ARGSUSED */
3339 static void
3340 breakpoints_info (bnum_exp, from_tty)
3341      char *bnum_exp;
3342      int from_tty;
3343 {
3344   int bnum = -1;
3345
3346   if (bnum_exp)
3347     bnum = parse_and_eval_address (bnum_exp);
3348
3349   breakpoint_1 (bnum, 0);
3350 }
3351
3352 /* ARGSUSED */
3353 static void
3354 maintenance_info_breakpoints (bnum_exp, from_tty)
3355      char *bnum_exp;
3356      int from_tty;
3357 {
3358   int bnum = -1;
3359
3360   if (bnum_exp)
3361     bnum = parse_and_eval_address (bnum_exp);
3362
3363   breakpoint_1 (bnum, 1);
3364 }
3365
3366 /* Print a message describing any breakpoints set at PC.  */
3367
3368 static void
3369 describe_other_breakpoints (pc, section)
3370      CORE_ADDR pc;
3371      asection *section;
3372 {
3373   register int others = 0;
3374   register struct breakpoint *b;
3375
3376   ALL_BREAKPOINTS (b)
3377     if (b->address == pc)
3378     if (overlay_debugging == 0 ||
3379         b->section == section)
3380       others++;
3381   if (others > 0)
3382     {
3383       printf_filtered ("Note: breakpoint%s ", (others > 1) ? "s" : "");
3384       ALL_BREAKPOINTS (b)
3385         if (b->address == pc)
3386         if (overlay_debugging == 0 ||
3387             b->section == section)
3388           {
3389             others--;
3390             printf_filtered
3391               ("%d%s%s ",
3392                b->number,
3393                ((b->enable == disabled || 
3394                  b->enable == shlib_disabled || 
3395                  b->enable == call_disabled) ? " (disabled)" 
3396                 : b->enable == permanent ? " (permanent)"
3397                 : ""),
3398                (others > 1) ? "," : ((others == 1) ? " and" : ""));
3399           }
3400       printf_filtered ("also set at pc ");
3401       print_address_numeric (pc, 1, gdb_stdout);
3402       printf_filtered (".\n");
3403     }
3404 }
3405 \f
3406 /* Set the default place to put a breakpoint
3407    for the `break' command with no arguments.  */
3408
3409 void
3410 set_default_breakpoint (valid, addr, symtab, line)
3411      int valid;
3412      CORE_ADDR addr;
3413      struct symtab *symtab;
3414      int line;
3415 {
3416   default_breakpoint_valid = valid;
3417   default_breakpoint_address = addr;
3418   default_breakpoint_symtab = symtab;
3419   default_breakpoint_line = line;
3420 }
3421
3422 /* Rescan breakpoints at address ADDRESS,
3423    marking the first one as "first" and any others as "duplicates".
3424    This is so that the bpt instruction is only inserted once.
3425    If we have a permanent breakpoint at ADDRESS, make that one
3426    the official one, and the rest as duplicates.  */
3427
3428 static void
3429 check_duplicates (address, section)
3430      CORE_ADDR address;
3431      asection *section;
3432 {
3433   register struct breakpoint *b;
3434   register int count = 0;
3435   struct breakpoint *perm_bp = 0;
3436
3437   if (address == 0)             /* Watchpoints are uninteresting */
3438     return;
3439
3440   ALL_BREAKPOINTS (b)
3441     if (b->enable != disabled
3442         && b->enable != shlib_disabled
3443         && b->enable != call_disabled
3444         && b->address == address
3445         && (overlay_debugging == 0 || b->section == section))
3446     {
3447       /* Have we found a permanent breakpoint?  */
3448       if (b->enable == permanent)
3449         {
3450           perm_bp = b;
3451           break;
3452         }
3453         
3454       count++;
3455       b->duplicate = count > 1;
3456     }
3457
3458   /* If we found a permanent breakpoint at this address, go over the
3459      list again and declare all the other breakpoints there to be the
3460      duplicates.  */
3461   if (perm_bp)
3462     {
3463       perm_bp->duplicate = 0;
3464
3465       /* Permanent breakpoint should always be inserted.  */
3466       if (! perm_bp->inserted)
3467         internal_error ("allegedly permanent breakpoint is not "
3468                         "actually inserted");
3469
3470       ALL_BREAKPOINTS (b)
3471         if (b != perm_bp)
3472           {
3473             if (b->inserted)
3474               internal_error ("another breakpoint was inserted on top of "
3475                               "a permanent breakpoint");
3476
3477             if (b->enable != disabled
3478                 && b->enable != shlib_disabled
3479                 && b->enable != call_disabled
3480                 && b->address == address
3481                 && (overlay_debugging == 0 || b->section == section))
3482               b->duplicate = 1;
3483           }
3484     }
3485 }
3486
3487 /* Low level routine to set a breakpoint.
3488    Takes as args the three things that every breakpoint must have.
3489    Returns the breakpoint object so caller can set other things.
3490    Does not set the breakpoint number!
3491    Does not print anything.
3492
3493    ==> This routine should not be called if there is a chance of later
3494    error(); otherwise it leaves a bogus breakpoint on the chain.  Validate
3495    your arguments BEFORE calling this routine!  */
3496
3497 struct breakpoint *
3498 set_raw_breakpoint (sal)
3499      struct symtab_and_line sal;
3500 {
3501   register struct breakpoint *b, *b1;
3502
3503   b = (struct breakpoint *) xmalloc (sizeof (struct breakpoint));
3504   memset (b, 0, sizeof (*b));
3505   b->address = sal.pc;
3506   if (sal.symtab == NULL)
3507     b->source_file = NULL;
3508   else
3509     b->source_file = savestring (sal.symtab->filename,
3510                                  strlen (sal.symtab->filename));
3511   b->section = sal.section;
3512   b->language = current_language->la_language;
3513   b->input_radix = input_radix;
3514   b->thread = -1;
3515   b->line_number = sal.line;
3516   b->enable = enabled;
3517   b->next = 0;
3518   b->silent = 0;
3519   b->ignore_count = 0;
3520   b->commands = NULL;
3521   b->frame = 0;
3522   b->dll_pathname = NULL;
3523   b->triggered_dll_pathname = NULL;
3524   b->forked_inferior_pid = 0;
3525   b->exec_pathname = NULL;
3526
3527   /* Add this breakpoint to the end of the chain
3528      so that a list of breakpoints will come out in order
3529      of increasing numbers.  */
3530
3531   b1 = breakpoint_chain;
3532   if (b1 == 0)
3533     breakpoint_chain = b;
3534   else
3535     {
3536       while (b1->next)
3537         b1 = b1->next;
3538       b1->next = b;
3539     }
3540
3541   check_duplicates (sal.pc, sal.section);
3542   breakpoints_changed ();
3543
3544   return b;
3545 }
3546
3547
3548 /* Note that the breakpoint object B describes a permanent breakpoint
3549    instruction, hard-wired into the inferior's code.  */
3550 void
3551 make_breakpoint_permanent (struct breakpoint *b)
3552 {
3553   b->enable = permanent;
3554
3555   /* By definition, permanent breakpoints are already present in the code.  */
3556   b->inserted = 1;
3557 }
3558
3559 #ifdef GET_LONGJMP_TARGET
3560
3561 static void
3562 create_longjmp_breakpoint (func_name)
3563      char *func_name;
3564 {
3565   struct symtab_and_line sal;
3566   struct breakpoint *b;
3567
3568   INIT_SAL (&sal);              /* initialize to zeroes */
3569   if (func_name != NULL)
3570     {
3571       struct minimal_symbol *m;
3572
3573       m = lookup_minimal_symbol_text (func_name, NULL, 
3574                                       (struct objfile *) NULL);
3575       if (m)
3576         sal.pc = SYMBOL_VALUE_ADDRESS (m);
3577       else
3578         return;
3579     }
3580   sal.section = find_pc_overlay (sal.pc);
3581   b = set_raw_breakpoint (sal);
3582   if (!b)
3583     return;
3584
3585   b->type = func_name != NULL ? bp_longjmp : bp_longjmp_resume;
3586   b->disposition = donttouch;
3587   b->enable = disabled;
3588   b->silent = 1;
3589   if (func_name)
3590     b->addr_string = strsave (func_name);
3591   b->number = internal_breakpoint_number--;
3592 }
3593
3594 #endif /* #ifdef GET_LONGJMP_TARGET */
3595
3596 /* Call this routine when stepping and nexting to enable a breakpoint
3597    if we do a longjmp().  When we hit that breakpoint, call
3598    set_longjmp_resume_breakpoint() to figure out where we are going. */
3599
3600 void
3601 enable_longjmp_breakpoint ()
3602 {
3603   register struct breakpoint *b;
3604
3605   ALL_BREAKPOINTS (b)
3606     if (b->type == bp_longjmp)
3607     {
3608       b->enable = enabled;
3609       check_duplicates (b->address, b->section);
3610     }
3611 }
3612
3613 void
3614 disable_longjmp_breakpoint ()
3615 {
3616   register struct breakpoint *b;
3617
3618   ALL_BREAKPOINTS (b)
3619     if (b->type == bp_longjmp
3620         || b->type == bp_longjmp_resume)
3621     {
3622       b->enable = disabled;
3623       check_duplicates (b->address, b->section);
3624     }
3625 }
3626
3627 struct breakpoint *
3628 create_thread_event_breakpoint (address)
3629      CORE_ADDR address;
3630 {
3631   struct breakpoint *b;
3632   struct symtab_and_line sal;
3633   char addr_string[80];         /* Surely an addr can't be longer than that. */
3634
3635   INIT_SAL (&sal);              /* initialize to zeroes */
3636   sal.pc = address;
3637   sal.section = find_pc_overlay (sal.pc);
3638   if ((b = set_raw_breakpoint (sal)) == NULL)
3639     return NULL;
3640   
3641   b->number = internal_breakpoint_number--;
3642   b->disposition = donttouch;
3643   b->type = bp_thread_event;    /* XXX: do we need a new type? 
3644                                    bp_thread_event */
3645   b->enable = enabled;
3646   /* addr_string has to be used or breakpoint_re_set will delete me.  */
3647   sprintf (addr_string, "*0x%s", paddr (b->address));
3648   b->addr_string = strsave (addr_string);
3649
3650   return b;
3651 }
3652
3653 void
3654 remove_thread_event_breakpoints (void)
3655 {
3656   struct breakpoint *b, *temp;
3657
3658   ALL_BREAKPOINTS_SAFE (b, temp)
3659     if (b->type == bp_thread_event)
3660       delete_breakpoint (b);
3661 }
3662
3663 #ifdef SOLIB_ADD
3664 void
3665 remove_solib_event_breakpoints ()
3666 {
3667   register struct breakpoint *b, *temp;
3668
3669   ALL_BREAKPOINTS_SAFE (b, temp)
3670     if (b->type == bp_shlib_event)
3671     delete_breakpoint (b);
3672 }
3673
3674 struct breakpoint *
3675 create_solib_event_breakpoint (address)
3676      CORE_ADDR address;
3677 {
3678   struct breakpoint *b;
3679   struct symtab_and_line sal;
3680
3681   INIT_SAL (&sal);              /* initialize to zeroes */
3682   sal.pc = address;
3683   sal.section = find_pc_overlay (sal.pc);
3684   b = set_raw_breakpoint (sal);
3685   b->number = internal_breakpoint_number--;
3686   b->disposition = donttouch;
3687   b->type = bp_shlib_event;
3688
3689   return b;
3690 }
3691
3692 /* Disable any breakpoints that are on code in shared libraries.  Only
3693    apply to enabled breakpoints, disabled ones can just stay disabled.  */
3694
3695 void
3696 disable_breakpoints_in_shlibs (silent)
3697      int silent;
3698 {
3699   struct breakpoint *b;
3700   int disabled_shlib_breaks = 0;
3701
3702   /* See also: insert_breakpoints, under DISABLE_UNSETTABLE_BREAK. */
3703   ALL_BREAKPOINTS (b)
3704   {
3705 #if defined (PC_SOLIB)
3706     if (((b->type == bp_breakpoint) ||
3707          (b->type == bp_hardware_breakpoint)) &&
3708         b->enable == enabled &&
3709         !b->duplicate &&
3710         PC_SOLIB (b->address))
3711       {
3712         b->enable = shlib_disabled;
3713         if (!silent)
3714           {
3715             if (!disabled_shlib_breaks)
3716               {
3717                 target_terminal_ours_for_output ();
3718                 warning ("Temporarily disabling shared library breakpoints:");
3719               }
3720             disabled_shlib_breaks = 1;
3721             warning ("breakpoint #%d ", b->number);
3722           }
3723       }
3724 #endif
3725   }
3726 }
3727
3728 /* Try to reenable any breakpoints in shared libraries.  */
3729 void
3730 re_enable_breakpoints_in_shlibs ()
3731 {
3732   struct breakpoint *b;
3733
3734   ALL_BREAKPOINTS (b)
3735     if (b->enable == shlib_disabled)
3736     {
3737       char buf[1];
3738
3739       /* Do not reenable the breakpoint if the shared library
3740          is still not mapped in.  */
3741       if (target_read_memory (b->address, buf, 1) == 0)
3742         b->enable = enabled;
3743     }
3744 }
3745
3746 #endif
3747
3748 static void
3749 solib_load_unload_1 (hookname, tempflag, dll_pathname, cond_string, bp_kind)
3750      char *hookname;
3751      int tempflag;
3752      char *dll_pathname;
3753      char *cond_string;
3754      enum bptype bp_kind;
3755 {
3756   struct breakpoint *b;
3757   struct symtabs_and_lines sals;
3758   struct cleanup *old_chain;
3759   struct cleanup *canonical_strings_chain = NULL;
3760   char *addr_start = hookname;
3761   char *addr_end = NULL;
3762   char **canonical = (char **) NULL;
3763   int thread = -1;              /* All threads. */
3764
3765   /* Set a breakpoint on the specified hook. */
3766   sals = decode_line_1 (&hookname, 1, (struct symtab *) NULL, 0, &canonical);
3767   addr_end = hookname;
3768
3769   if (sals.nelts == 0)
3770     {
3771       warning ("Unable to set a breakpoint on dynamic linker callback.");
3772       warning ("Suggest linking with /opt/langtools/lib/end.o.");
3773       warning ("GDB will be unable to track shl_load/shl_unload calls");
3774       return;
3775     }
3776   if (sals.nelts != 1)
3777     {
3778       warning ("Unable to set unique breakpoint on dynamic linker callback.");
3779       warning ("GDB will be unable to track shl_load/shl_unload calls");
3780       return;
3781     }
3782
3783   /* Make sure that all storage allocated in decode_line_1 gets freed
3784      in case the following errors out.  */
3785   old_chain = make_cleanup (free, sals.sals);
3786   if (canonical != (char **) NULL)
3787     {
3788       make_cleanup (free, canonical);
3789       canonical_strings_chain = make_cleanup (null_cleanup, 0);
3790       if (canonical[0] != NULL)
3791         make_cleanup (free, canonical[0]);
3792     }
3793
3794   resolve_sal_pc (&sals.sals[0]);
3795
3796   /* Remove the canonical strings from the cleanup, they are needed below.  */
3797   if (canonical != (char **) NULL)
3798     discard_cleanups (canonical_strings_chain);
3799
3800   b = set_raw_breakpoint (sals.sals[0]);
3801   set_breakpoint_count (breakpoint_count + 1);
3802   b->number = breakpoint_count;
3803   b->cond = NULL;
3804   b->cond_string = (cond_string == NULL) ? 
3805     NULL : savestring (cond_string, strlen (cond_string));
3806   b->thread = thread;
3807
3808   if (canonical != (char **) NULL && canonical[0] != NULL)
3809     b->addr_string = canonical[0];
3810   else if (addr_start)
3811     b->addr_string = savestring (addr_start, addr_end - addr_start);
3812
3813   b->enable = enabled;
3814   b->disposition = tempflag ? del : donttouch;
3815
3816   if (dll_pathname == NULL)
3817     b->dll_pathname = NULL;
3818   else
3819     {
3820       b->dll_pathname = (char *) xmalloc (strlen (dll_pathname) + 1);
3821       strcpy (b->dll_pathname, dll_pathname);
3822     }
3823   b->type = bp_kind;
3824
3825   mention (b);
3826   do_cleanups (old_chain);
3827 }
3828
3829 void
3830 create_solib_load_event_breakpoint (hookname, tempflag, 
3831                                     dll_pathname, cond_string)
3832      char *hookname;
3833      int tempflag;
3834      char *dll_pathname;
3835      char *cond_string;
3836 {
3837   solib_load_unload_1 (hookname, tempflag, dll_pathname, 
3838                        cond_string, bp_catch_load);
3839 }
3840
3841 void
3842 create_solib_unload_event_breakpoint (hookname, tempflag, 
3843                                       dll_pathname, cond_string)
3844      char *hookname;
3845      int tempflag;
3846      char *dll_pathname;
3847      char *cond_string;
3848 {
3849   solib_load_unload_1 (hookname,tempflag, dll_pathname, 
3850                        cond_string, bp_catch_unload);
3851 }
3852
3853 static void
3854 create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_kind)
3855      int tempflag;
3856      char *cond_string;
3857      enum bptype bp_kind;
3858 {
3859   struct symtab_and_line sal;
3860   struct breakpoint *b;
3861   int thread = -1;              /* All threads. */
3862
3863   INIT_SAL (&sal);
3864   sal.pc = 0;
3865   sal.symtab = NULL;
3866   sal.line = 0;
3867
3868   b = set_raw_breakpoint (sal);
3869   set_breakpoint_count (breakpoint_count + 1);
3870   b->number = breakpoint_count;
3871   b->cond = NULL;
3872   b->cond_string = (cond_string == NULL) ? 
3873     NULL : savestring (cond_string, strlen (cond_string));
3874   b->thread = thread;
3875   b->addr_string = NULL;
3876   b->enable = enabled;
3877   b->disposition = tempflag ? del : donttouch;
3878   b->forked_inferior_pid = 0;
3879
3880   b->type = bp_kind;
3881
3882   mention (b);
3883 }
3884
3885 void
3886 create_fork_event_catchpoint (tempflag, cond_string)
3887      int tempflag;
3888      char *cond_string;
3889 {
3890   create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_fork);
3891 }
3892
3893 void
3894 create_vfork_event_catchpoint (tempflag, cond_string)
3895      int tempflag;
3896      char *cond_string;
3897 {
3898   create_fork_vfork_event_catchpoint (tempflag, cond_string, bp_catch_vfork);
3899 }
3900
3901 void
3902 create_exec_event_catchpoint (tempflag, cond_string)
3903      int tempflag;
3904      char *cond_string;
3905 {
3906   struct symtab_and_line sal;
3907   struct breakpoint *b;
3908   int thread = -1;              /* All threads. */
3909
3910   INIT_SAL (&sal);
3911   sal.pc = 0;
3912   sal.symtab = NULL;
3913   sal.line = 0;
3914
3915   b = set_raw_breakpoint (sal);
3916   set_breakpoint_count (breakpoint_count + 1);
3917   b->number = breakpoint_count;
3918   b->cond = NULL;
3919   b->cond_string = (cond_string == NULL) ?
3920     NULL : savestring (cond_string, strlen (cond_string));
3921   b->thread = thread;
3922   b->addr_string = NULL;
3923   b->enable = enabled;
3924   b->disposition = tempflag ? del : donttouch;
3925
3926   b->type = bp_catch_exec;
3927
3928   mention (b);
3929 }
3930
3931 static int
3932 hw_breakpoint_used_count ()
3933 {
3934   register struct breakpoint *b;
3935   int i = 0;
3936
3937   ALL_BREAKPOINTS (b)
3938   {
3939     if (b->type == bp_hardware_breakpoint && b->enable == enabled)
3940       i++;
3941   }
3942
3943   return i;
3944 }
3945
3946 static int
3947 hw_watchpoint_used_count (type, other_type_used)
3948      enum bptype type;
3949      int *other_type_used;
3950 {
3951   register struct breakpoint *b;
3952   int i = 0;
3953
3954   *other_type_used = 0;
3955   ALL_BREAKPOINTS (b)
3956   {
3957     if (b->enable == enabled)
3958       {
3959         if (b->type == type)
3960           i++;
3961         else if ((b->type == bp_hardware_watchpoint ||
3962                   b->type == bp_read_watchpoint ||
3963                   b->type == bp_access_watchpoint)
3964                  && b->enable == enabled)
3965           *other_type_used = 1;
3966       }
3967   }
3968   return i;
3969 }
3970
3971 /* Call this after hitting the longjmp() breakpoint.  Use this to set
3972    a new breakpoint at the target of the jmp_buf.
3973
3974    FIXME - This ought to be done by setting a temporary breakpoint
3975    that gets deleted automatically... */
3976
3977 void
3978 set_longjmp_resume_breakpoint (pc, frame)
3979      CORE_ADDR pc;
3980      struct frame_info *frame;
3981 {
3982   register struct breakpoint *b;
3983
3984   ALL_BREAKPOINTS (b)
3985     if (b->type == bp_longjmp_resume)
3986     {
3987       b->address = pc;
3988       b->enable = enabled;
3989       if (frame != NULL)
3990         b->frame = frame->frame;
3991       else
3992         b->frame = 0;
3993       check_duplicates (b->address, b->section);
3994       return;
3995     }
3996 }
3997
3998 void
3999 disable_watchpoints_before_interactive_call_start ()
4000 {
4001   struct breakpoint *b;
4002
4003   ALL_BREAKPOINTS (b)
4004   {
4005     if (((b->type == bp_watchpoint)
4006          || (b->type == bp_hardware_watchpoint)
4007          || (b->type == bp_read_watchpoint)
4008          || (b->type == bp_access_watchpoint)
4009          || ep_is_exception_catchpoint (b))
4010         && (b->enable == enabled))
4011       {
4012         b->enable = call_disabled;
4013         check_duplicates (b->address, b->section);
4014       }
4015   }
4016 }
4017
4018 void
4019 enable_watchpoints_after_interactive_call_stop ()
4020 {
4021   struct breakpoint *b;
4022
4023   ALL_BREAKPOINTS (b)
4024   {
4025     if (((b->type == bp_watchpoint)
4026          || (b->type == bp_hardware_watchpoint)
4027          || (b->type == bp_read_watchpoint)
4028          || (b->type == bp_access_watchpoint)
4029          || ep_is_exception_catchpoint (b))
4030         && (b->enable == call_disabled))
4031       {
4032         b->enable = enabled;
4033         check_duplicates (b->address, b->section);
4034       }
4035   }
4036 }
4037
4038
4039 /* Set a breakpoint that will evaporate an end of command
4040    at address specified by SAL.
4041    Restrict it to frame FRAME if FRAME is nonzero.  */
4042
4043 struct breakpoint *
4044 set_momentary_breakpoint (sal, frame, type)
4045      struct symtab_and_line sal;
4046      struct frame_info *frame;
4047      enum bptype type;
4048 {
4049   register struct breakpoint *b;
4050   b = set_raw_breakpoint (sal);
4051   b->type = type;
4052   b->enable = enabled;
4053   b->disposition = donttouch;
4054   b->frame = (frame ? frame->frame : 0);
4055
4056   /* If we're debugging a multi-threaded program, then we
4057      want momentary breakpoints to be active in only a 
4058      single thread of control.  */
4059   if (in_thread_list (inferior_pid))
4060     b->thread = pid_to_thread_id (inferior_pid);
4061
4062   return b;
4063 }
4064 \f
4065
4066 /* Tell the user we have just set a breakpoint B.  */
4067
4068 static void
4069 mention (b)
4070      struct breakpoint *b;
4071 {
4072   int say_where = 0;
4073
4074   /* FIXME: This is misplaced; mention() is called by things (like hitting a
4075      watchpoint) other than breakpoint creation.  It should be possible to
4076      clean this up and at the same time replace the random calls to
4077      breakpoint_changed with this hook, as has already been done for
4078      delete_breakpoint_hook and so on.  */
4079   if (create_breakpoint_hook)
4080     create_breakpoint_hook (b);
4081   breakpoint_create_event (b->number);
4082
4083   switch (b->type)
4084     {
4085     case bp_none:
4086       printf_filtered ("(apparently deleted?) Eventpoint %d: ", b->number);
4087       break;
4088     case bp_watchpoint:
4089       printf_filtered ("Watchpoint %d: ", b->number);
4090       print_expression (b->exp, gdb_stdout);
4091       break;
4092     case bp_hardware_watchpoint:
4093       printf_filtered ("Hardware watchpoint %d: ", b->number);
4094       print_expression (b->exp, gdb_stdout);
4095       break;
4096     case bp_read_watchpoint:
4097       printf_filtered ("Hardware read watchpoint %d: ", b->number);
4098       print_expression (b->exp, gdb_stdout);
4099       break;
4100     case bp_access_watchpoint:
4101       printf_filtered ("Hardware access (read/write) watchpoint %d: ", 
4102                        b->number);
4103       print_expression (b->exp, gdb_stdout);
4104       break;
4105     case bp_breakpoint:
4106       printf_filtered ("Breakpoint %d", b->number);
4107       say_where = 1;
4108       break;
4109     case bp_hardware_breakpoint:
4110       printf_filtered ("Hardware assisted breakpoint %d", b->number);
4111       say_where = 1;
4112       break;
4113     case bp_catch_load:
4114     case bp_catch_unload:
4115       printf_filtered ("Catchpoint %d (%s %s)",
4116                        b->number,
4117                        (b->type == bp_catch_load) ? "load" : "unload",
4118                        (b->dll_pathname != NULL) ? 
4119                        b->dll_pathname : "<any library>");
4120       break;
4121     case bp_catch_fork:
4122     case bp_catch_vfork:
4123       printf_filtered ("Catchpoint %d (%s)",
4124                        b->number,
4125                        (b->type == bp_catch_fork) ? "fork" : "vfork");
4126       break;
4127     case bp_catch_exec:
4128       printf_filtered ("Catchpoint %d (exec)",
4129                        b->number);
4130       break;
4131     case bp_catch_catch:
4132     case bp_catch_throw:
4133       printf_filtered ("Catchpoint %d (%s)",
4134                        b->number,
4135                        (b->type == bp_catch_catch) ? "catch" : "throw");
4136       break;
4137
4138     case bp_until:
4139     case bp_finish:
4140     case bp_longjmp:
4141     case bp_longjmp_resume:
4142     case bp_step_resume:
4143     case bp_through_sigtramp:
4144     case bp_call_dummy:
4145     case bp_watchpoint_scope:
4146     case bp_shlib_event:
4147     case bp_thread_event:
4148       break;
4149     }
4150   if (say_where)
4151     {
4152       if (addressprint || b->source_file == NULL)
4153         {
4154           printf_filtered (" at ");
4155           print_address_numeric (b->address, 1, gdb_stdout);
4156         }
4157       if (b->source_file)
4158         printf_filtered (": file %s, line %d.",
4159                          b->source_file, b->line_number);
4160       TUIDO (((TuiOpaqueFuncPtr) tui_vAllSetHasBreakAt, b, 1));
4161       TUIDO (((TuiOpaqueFuncPtr) tuiUpdateAllExecInfos));
4162     }
4163   printf_filtered ("\n");
4164 }
4165 \f
4166
4167 /* Add SALS.nelts breakpoints to the breakpoint table.  For each
4168    SALS.sal[i] breakpoint, include the corresponding ADDR_STRING[i],
4169    COND[i] and COND_STRING[i] values.
4170
4171    NOTE: If the function succeeds, the caller is expected to cleanup
4172    the arrays ADDR_STRING, COND_STRING, COND and SALS (but not the
4173    array contents).  If the function fails (error() is called), the
4174    caller is expected to cleanups both the ADDR_STRING, COND_STRING,
4175    COND and SALS arrays and each of those arrays contents. */
4176
4177 static void
4178 create_breakpoints (struct symtabs_and_lines sals, char **addr_string,
4179                     struct expression **cond, char **cond_string,
4180                     enum bptype type, enum bpdisp disposition,
4181                     int thread, int ignore_count, int from_tty)
4182 {
4183   if (type == bp_hardware_breakpoint)
4184     {
4185       int i = hw_breakpoint_used_count ();
4186       int target_resources_ok = 
4187         TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint, 
4188                                             i + sals.nelts, 0);
4189       if (target_resources_ok == 0)
4190         error ("No hardware breakpoint support in the target.");
4191       else if (target_resources_ok < 0)
4192         error ("Hardware breakpoints used exceeds limit.");
4193     }
4194
4195   /* Now set all the breakpoints.  */
4196   {
4197     int i;
4198     for (i = 0; i < sals.nelts; i++)
4199       {
4200         struct breakpoint *b;
4201         struct symtab_and_line sal = sals.sals[i];
4202
4203         if (from_tty)
4204           describe_other_breakpoints (sal.pc, sal.section);
4205         
4206         b = set_raw_breakpoint (sal);
4207         set_breakpoint_count (breakpoint_count + 1);
4208         b->number = breakpoint_count;
4209         b->type = type;
4210         b->cond = cond[i];
4211         b->thread = thread;
4212         b->addr_string = addr_string[i];
4213         b->cond_string = cond_string[i];
4214         b->ignore_count = ignore_count;
4215         b->enable = enabled;
4216         b->disposition = disposition;
4217         mention (b);
4218       }
4219   }    
4220 }
4221
4222 /* Parse ARG which is assumed to be a SAL specification possibly
4223    followed by conditionals.  On return, SALS contains an array of SAL
4224    addresses found. ADDR_STRING contains a vector of (canonical)
4225    address strings. ARG points to the end of the SAL. */
4226
4227 void
4228 parse_breakpoint_sals (char **address,
4229                        struct symtabs_and_lines *sals,
4230                        char ***addr_string)
4231 {
4232   char *addr_start = *address;
4233   *addr_string = NULL;
4234   /* If no arg given, or if first arg is 'if ', use the default
4235      breakpoint. */
4236   if ((*address) == NULL
4237       || (strncmp ((*address), "if", 2) == 0 && isspace ((*address)[2])))
4238     {
4239       if (default_breakpoint_valid)
4240         {
4241           struct symtab_and_line sal;
4242           INIT_SAL (&sal);              /* initialize to zeroes */
4243           sals->sals = (struct symtab_and_line *)
4244             xmalloc (sizeof (struct symtab_and_line));
4245           sal.pc = default_breakpoint_address;
4246           sal.line = default_breakpoint_line;
4247           sal.symtab = default_breakpoint_symtab;
4248           sal.section = find_pc_overlay (sal.pc);
4249           sals->sals[0] = sal;
4250           sals->nelts = 1;
4251         }
4252       else
4253         error ("No default breakpoint address now.");
4254     }
4255   else
4256     {
4257       /* Force almost all breakpoints to be in terms of the
4258          current_source_symtab (which is decode_line_1's default).  This
4259          should produce the results we want almost all of the time while
4260          leaving default_breakpoint_* alone.  */
4261       if (default_breakpoint_valid
4262           && (!current_source_symtab
4263               || (strchr ("+-", (*address)[0]) != NULL)))
4264         *sals = decode_line_1 (address, 1, default_breakpoint_symtab,
4265                                default_breakpoint_line, addr_string);
4266       else
4267         *sals = decode_line_1 (address, 1, (struct symtab *) NULL, 0, addr_string);
4268     }
4269   /* For any SAL that didn't have a canonical string, fill one in. */
4270   if (sals->nelts > 0 && *addr_string == NULL)
4271     *addr_string = xcalloc (sals->nelts, sizeof (char **));
4272   if (addr_start != (*address))
4273     {
4274       int i;
4275       for (i = 0; i < sals->nelts; i++)
4276         {
4277           /* Add the string if not present. */
4278           if ((*addr_string)[i] == NULL)
4279             (*addr_string)[i] = savestring (addr_start, (*address) - addr_start);
4280         }
4281     }
4282 }
4283
4284
4285 /* Convert each SAL into a real PC.  Verify that the PC can be
4286    inserted as a breakpoint.  If it can't throw an error. */
4287
4288 void
4289 breakpoint_sals_to_pc (struct symtabs_and_lines *sals,
4290                        char *address)
4291 {    
4292   int i;
4293   for (i = 0; i < sals->nelts; i++)
4294     {
4295       resolve_sal_pc (&sals->sals[i]);
4296
4297       /* It's possible for the PC to be nonzero, but still an illegal
4298          value on some targets.
4299
4300          For example, on HP-UX if you start gdb, and before running the
4301          inferior you try to set a breakpoint on a shared library function
4302          "foo" where the inferior doesn't call "foo" directly but does
4303          pass its address to another function call, then we do find a
4304          minimal symbol for the "foo", but it's address is invalid.
4305          (Appears to be an index into a table that the loader sets up
4306          when the inferior is run.)
4307
4308          Give the target a chance to bless sals.sals[i].pc before we
4309          try to make a breakpoint for it. */
4310       if (PC_REQUIRES_RUN_BEFORE_USE (sals->sals[i].pc))
4311         {
4312           if (address == NULL)
4313             error ("Cannot break without a running program.");
4314           else
4315             error ("Cannot break on %s without a running program.", 
4316                    address);
4317         }
4318     }
4319 }
4320
4321 /* Set a breakpoint according to ARG (function, linenum or *address)
4322    flag: first bit  : 0 non-temporary, 1 temporary.
4323    second bit : 0 normal breakpoint, 1 hardware breakpoint. */
4324
4325 static void
4326 break_command_1 (arg, flag, from_tty)
4327      char *arg;
4328      int flag, from_tty;
4329 {
4330   int tempflag, hardwareflag;
4331   struct symtabs_and_lines sals;
4332   register struct expression **cond = 0;
4333   /* Pointers in arg to the start, and one past the end, of the
4334      condition.  */
4335   char **cond_string = (char **) NULL;
4336   char *addr_start = arg;
4337   char **addr_string;
4338   struct cleanup *old_chain;
4339   struct cleanup *breakpoint_chain = NULL;
4340   int i;
4341   int thread = -1;
4342   int ignore_count = 0;
4343
4344   hardwareflag = flag & BP_HARDWAREFLAG;
4345   tempflag = flag & BP_TEMPFLAG;
4346
4347   sals.sals = NULL;
4348   sals.nelts = 0;
4349   addr_string = NULL;
4350   parse_breakpoint_sals (&arg, &sals, &addr_string);
4351
4352   if (!sals.nelts)
4353     return;
4354
4355   /* Create a chain of things that always need to be cleaned up. */
4356   old_chain = make_cleanup (null_cleanup, 0);
4357
4358   /* Make sure that all storage allocated to SALS gets freed.  */
4359   make_cleanup (free, sals.sals);
4360
4361   /* Cleanup the addr_string array but not its contents. */
4362   make_cleanup (free, addr_string);
4363
4364   /* Allocate space for all the cond expressions. */
4365   cond = xcalloc (sals.nelts, sizeof (struct expression *));
4366   make_cleanup (free, cond);
4367
4368   /* Allocate space for all the cond strings. */
4369   cond_string = xcalloc (sals.nelts, sizeof (char **));
4370   make_cleanup (free, cond_string);
4371
4372   /* ----------------------------- SNIP -----------------------------
4373      Anything added to the cleanup chain beyond this point is assumed
4374      to be part of a breakpoint.  If the breakpoint create succeeds
4375      then the memory is not reclaimed. */
4376   breakpoint_chain = make_cleanup (null_cleanup, 0);
4377
4378   /* Mark the contents of the addr_string for cleanup.  These go on
4379      the breakpoint_chain and only occure if the breakpoint create
4380      fails. */
4381   for (i = 0; i < sals.nelts; i++)
4382     {
4383       if (addr_string[i] != NULL)
4384         make_cleanup (free, addr_string[i]);
4385     }
4386
4387   /* Resolve all line numbers to PC's and verify that the addresses
4388      are ok for the target.  */
4389   breakpoint_sals_to_pc (&sals, addr_start);
4390
4391   /* Verify that condition can be parsed, before setting any
4392      breakpoints.  Allocate a separate condition expression for each
4393      breakpoint. */
4394   thread = -1;                  /* No specific thread yet */
4395   for (i = 0; i < sals.nelts; i++)
4396     {
4397       char *tok = arg;
4398       while (tok && *tok)
4399         {
4400           char *end_tok;
4401           int toklen;
4402           char *cond_start = NULL;
4403           char *cond_end = NULL;
4404           while (*tok == ' ' || *tok == '\t')
4405             tok++;
4406
4407           end_tok = tok;
4408
4409           while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
4410             end_tok++;
4411
4412           toklen = end_tok - tok;
4413
4414           if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
4415             {
4416               tok = cond_start = end_tok + 1;
4417               cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
4418               make_cleanup (free, cond[i]);
4419               cond_end = tok;
4420               cond_string[i] = savestring (cond_start, cond_end - cond_start);
4421               make_cleanup (free, cond_string[i]);
4422             }
4423           else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0)
4424             {
4425               char *tmptok;
4426
4427               tok = end_tok + 1;
4428               tmptok = tok;
4429               thread = strtol (tok, &tok, 0);
4430               if (tok == tmptok)
4431                 error ("Junk after thread keyword.");
4432               if (!valid_thread_id (thread))
4433                 error ("Unknown thread %d\n", thread);
4434             }
4435           else
4436             error ("Junk at end of arguments.");
4437         }
4438     }
4439
4440   create_breakpoints (sals, addr_string, cond, cond_string,
4441                       hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
4442                       tempflag ? del : donttouch,
4443                       thread, ignore_count, from_tty);
4444
4445   if (sals.nelts > 1)
4446     {
4447       warning ("Multiple breakpoints were set.");
4448       warning ("Use the \"delete\" command to delete unwanted breakpoints.");
4449     }
4450   /* That's it. Discard the cleanups for data inserted into the
4451      breakpoint. */
4452   discard_cleanups (breakpoint_chain);
4453   /* But cleanup everything else. */
4454   do_cleanups (old_chain);
4455 }
4456
4457 /* Set a breakpoint of TYPE/DISPOSITION according to ARG (function,
4458    linenum or *address) with COND and IGNORE_COUNT. */
4459
4460 struct captured_breakpoint_args
4461   {
4462     char *address;
4463     char *condition;
4464     int hardwareflag;
4465     int tempflag;
4466     int thread;
4467     int ignore_count;
4468   };
4469
4470 static int
4471 do_captured_breakpoint (void *data)
4472 {
4473   struct captured_breakpoint_args *args = data;
4474   struct symtabs_and_lines sals;
4475   register struct expression **cond;
4476   struct cleanup *old_chain;
4477   struct cleanup *breakpoint_chain = NULL;
4478   int i;
4479   char **addr_string;
4480   char **cond_string;
4481
4482   char *address_end;
4483
4484   /* Parse the source and lines spec.  Delay check that the expression
4485      didn't contain trailing garbage until after cleanups are in
4486      place. */
4487   sals.sals = NULL;
4488   sals.nelts = 0;
4489   address_end = args->address;
4490   addr_string = NULL;
4491   parse_breakpoint_sals (&address_end, &sals, &addr_string);
4492
4493   if (!sals.nelts)
4494     return GDB_RC_NONE;
4495
4496   /* Create a chain of things at always need to be cleaned up. */
4497   old_chain = make_cleanup (null_cleanup, 0);
4498
4499   /* Always have a addr_string array, even if it is empty. */
4500   make_cleanup (free, addr_string);
4501
4502   /* Make sure that all storage allocated to SALS gets freed.  */
4503   make_cleanup (free, sals.sals);
4504
4505   /* Allocate space for all the cond expressions. */
4506   cond = xcalloc (sals.nelts, sizeof (struct expression *));
4507   make_cleanup (free, cond);
4508
4509   /* Allocate space for all the cond strings. */
4510   cond_string = xcalloc (sals.nelts, sizeof (char **));
4511   make_cleanup (free, cond_string);
4512
4513   /* ----------------------------- SNIP -----------------------------
4514      Anything added to the cleanup chain beyond this point is assumed
4515      to be part of a breakpoint.  If the breakpoint create goes
4516      through then that memory is not cleaned up. */
4517   breakpoint_chain = make_cleanup (null_cleanup, 0);
4518
4519   /* Mark the contents of the addr_string for cleanup.  These go on
4520      the breakpoint_chain and only occure if the breakpoint create
4521      fails. */
4522   for (i = 0; i < sals.nelts; i++)
4523     {
4524       if (addr_string[i] != NULL)
4525         make_cleanup (free, addr_string[i]);
4526     }
4527
4528   /* Wait until now before checking for garbage at the end of the
4529      address. That way cleanups can take care of freeing any
4530      memory. */
4531   if (*address_end != '\0')
4532     error ("Garbage %s following breakpoint address", address_end);
4533
4534   /* Resolve all line numbers to PC's.  */
4535   breakpoint_sals_to_pc (&sals, args->address);
4536
4537   /* Verify that conditions can be parsed, before setting any
4538      breakpoints.  */
4539   for (i = 0; i < sals.nelts; i++)
4540     {
4541       if (args->condition != NULL)
4542         {
4543           char *tok = args->condition;
4544           cond[i] = parse_exp_1 (&tok, block_for_pc (sals.sals[i].pc), 0);
4545           if (*tok != '\0')
4546             error ("Garbage %s follows condition", tok);
4547           make_cleanup (free, cond[i]);
4548           cond_string[i] = xstrdup (args->condition);
4549         }
4550     }
4551
4552   create_breakpoints (sals, addr_string, cond, cond_string,
4553                       args->hardwareflag ? bp_hardware_breakpoint : bp_breakpoint,
4554                       args->tempflag ? del : donttouch,
4555                       args->thread, args->ignore_count, 0/*from-tty*/);
4556
4557   /* That's it. Discard the cleanups for data inserted into the
4558      breakpoint. */
4559   discard_cleanups (breakpoint_chain);
4560   /* But cleanup everything else. */
4561   do_cleanups (old_chain);
4562   return GDB_RC_OK;
4563 }
4564
4565 enum gdb_rc
4566 gdb_breakpoint (char *address, char *condition,
4567                 int hardwareflag, int tempflag,
4568                 int thread, int ignore_count)
4569 {
4570   struct captured_breakpoint_args args;
4571   args.address = address;
4572   args.condition = condition;
4573   args.hardwareflag = hardwareflag;
4574   args.tempflag = tempflag;
4575   args.thread = thread;
4576   args.ignore_count = ignore_count;
4577   return catch_errors (do_captured_breakpoint, &args,
4578                        NULL, RETURN_MASK_ALL);
4579 }
4580
4581
4582 static void
4583 break_at_finish_at_depth_command_1 (arg, flag, from_tty)
4584      char *arg;
4585      int flag;
4586      int from_tty;
4587 {
4588   struct frame_info *frame;
4589   CORE_ADDR low, high, selected_pc = 0;
4590   char *extra_args, *level_arg, *addr_string;
4591   int extra_args_len = 0, if_arg = 0;
4592
4593   if (!arg ||
4594       (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
4595     {
4596
4597       if (default_breakpoint_valid)
4598         {
4599           if (selected_frame)
4600             {
4601               selected_pc = selected_frame->pc;
4602               if (arg)
4603                 if_arg = 1;
4604             }
4605           else
4606             error ("No selected frame.");
4607         }
4608       else
4609         error ("No default breakpoint address now.");
4610     }
4611   else
4612     {
4613       extra_args = strchr (arg, ' ');
4614       if (extra_args)
4615         {
4616           extra_args++;
4617           extra_args_len = strlen (extra_args);
4618           level_arg = (char *) xmalloc (extra_args - arg);
4619           strncpy (level_arg, arg, extra_args - arg - 1);
4620           level_arg[extra_args - arg - 1] = '\0';
4621         }
4622       else
4623         {
4624           level_arg = (char *) xmalloc (strlen (arg) + 1);
4625           strcpy (level_arg, arg);
4626         }
4627
4628       frame = parse_frame_specification (level_arg);
4629       if (frame)
4630         selected_pc = frame->pc;
4631       else
4632         selected_pc = 0;
4633     }
4634   if (if_arg)
4635     {
4636       extra_args = arg;
4637       extra_args_len = strlen (arg);
4638     }
4639
4640   if (selected_pc)
4641     {
4642       if (find_pc_partial_function (selected_pc, (char **) NULL, &low, &high))
4643         {
4644           addr_string = (char *) xmalloc (26 + extra_args_len);
4645           if (extra_args_len)
4646             sprintf (addr_string, "*0x%s %s", paddr_nz (high), extra_args);
4647           else
4648             sprintf (addr_string, "*0x%s", paddr_nz (high));
4649           break_command_1 (addr_string, flag, from_tty);
4650           free (addr_string);
4651         }
4652       else
4653         error ("No function contains the specified address");
4654     }
4655   else
4656     error ("Unable to set breakpoint at procedure exit");
4657 }
4658
4659
4660 static void
4661 break_at_finish_command_1 (arg, flag, from_tty)
4662      char *arg;
4663      int flag;
4664      int from_tty;
4665 {
4666   char *addr_string, *break_string, *beg_addr_string;
4667   CORE_ADDR low, high;
4668   struct symtabs_and_lines sals;
4669   struct symtab_and_line sal;
4670   struct cleanup *old_chain;
4671   char *extra_args;
4672   int extra_args_len = 0;
4673   int i, if_arg = 0;
4674
4675   if (!arg ||
4676       (arg[0] == 'i' && arg[1] == 'f' && (arg[2] == ' ' || arg[2] == '\t')))
4677     {
4678       if (default_breakpoint_valid)
4679         {
4680           if (selected_frame)
4681             {
4682               addr_string = (char *) xmalloc (15);
4683               sprintf (addr_string, "*0x%s", paddr_nz (selected_frame->pc));
4684               if (arg)
4685                 if_arg = 1;
4686             }
4687           else
4688             error ("No selected frame.");
4689         }
4690       else
4691         error ("No default breakpoint address now.");
4692     }
4693   else
4694     {
4695       addr_string = (char *) xmalloc (strlen (arg) + 1);
4696       strcpy (addr_string, arg);
4697     }
4698
4699   if (if_arg)
4700     {
4701       extra_args = arg;
4702       extra_args_len = strlen (arg);
4703     }
4704   else if (arg)
4705     {
4706       /* get the stuff after the function name or address */
4707       extra_args = strchr (arg, ' ');
4708       if (extra_args)
4709         {
4710           extra_args++;
4711           extra_args_len = strlen (extra_args);
4712         }
4713     }
4714
4715   sals.sals = NULL;
4716   sals.nelts = 0;
4717
4718   beg_addr_string = addr_string;
4719   sals = decode_line_1 (&addr_string, 1, (struct symtab *) NULL, 0,
4720                         (char ***) NULL);
4721
4722   free (beg_addr_string);
4723   old_chain = make_cleanup (free, sals.sals);
4724   for (i = 0; (i < sals.nelts); i++)
4725     {
4726       sal = sals.sals[i];
4727       if (find_pc_partial_function (sal.pc, (char **) NULL, &low, &high))
4728         {
4729           break_string = (char *) xmalloc (extra_args_len + 26);
4730           if (extra_args_len)
4731             sprintf (break_string, "*0x%s %s", paddr_nz (high), extra_args);
4732           else
4733             sprintf (break_string, "*0x%s", paddr_nz (high));
4734           break_command_1 (break_string, flag, from_tty);
4735           free (break_string);
4736         }
4737       else
4738         error ("No function contains the specified address");
4739     }
4740   if (sals.nelts > 1)
4741     {
4742       warning ("Multiple breakpoints were set.\n");
4743       warning ("Use the \"delete\" command to delete unwanted breakpoints.");
4744     }
4745   do_cleanups (old_chain);
4746 }
4747
4748
4749 /* Helper function for break_command_1 and disassemble_command.  */
4750
4751 void
4752 resolve_sal_pc (sal)
4753      struct symtab_and_line *sal;
4754 {
4755   CORE_ADDR pc;
4756
4757   if (sal->pc == 0 && sal->symtab != NULL)
4758     {
4759       if (!find_line_pc (sal->symtab, sal->line, &pc))
4760         error ("No line %d in file \"%s\".",
4761                sal->line, sal->symtab->filename);
4762       sal->pc = pc;
4763     }
4764
4765   if (sal->section == 0 && sal->symtab != NULL)
4766     {
4767       struct blockvector *bv;
4768       struct block *b;
4769       struct symbol *sym;
4770       int index;
4771
4772       bv = blockvector_for_pc_sect (sal->pc, 0, &index, sal->symtab);
4773       if (bv != NULL)
4774         {
4775           b = BLOCKVECTOR_BLOCK (bv, index);
4776           sym = block_function (b);
4777           if (sym != NULL)
4778             {
4779               fixup_symbol_section (sym, sal->symtab->objfile);
4780               sal->section = SYMBOL_BFD_SECTION (sym);
4781             }
4782           else
4783             {
4784               /* It really is worthwhile to have the section, so we'll just
4785                  have to look harder. This case can be executed if we have 
4786                  line numbers but no functions (as can happen in assembly 
4787                  source).  */
4788
4789               struct minimal_symbol *msym;
4790
4791               msym = lookup_minimal_symbol_by_pc (sal->pc);
4792               if (msym)
4793                 sal->section = SYMBOL_BFD_SECTION (msym);
4794             }
4795         }
4796     }
4797 }
4798
4799 void
4800 break_command (arg, from_tty)
4801      char *arg;
4802      int from_tty;
4803 {
4804   break_command_1 (arg, 0, from_tty);
4805 }
4806
4807 static void
4808 break_at_finish_command (arg, from_tty)
4809      char *arg;
4810      int from_tty;
4811 {
4812   break_at_finish_command_1 (arg, 0, from_tty);
4813 }
4814
4815 static void
4816 break_at_finish_at_depth_command (arg, from_tty)
4817      char *arg;
4818      int from_tty;
4819 {
4820   break_at_finish_at_depth_command_1 (arg, 0, from_tty);
4821 }
4822
4823 void
4824 tbreak_command (arg, from_tty)
4825      char *arg;
4826      int from_tty;
4827 {
4828   break_command_1 (arg, BP_TEMPFLAG, from_tty);
4829 }
4830
4831 static void
4832 tbreak_at_finish_command (arg, from_tty)
4833      char *arg;
4834      int from_tty;
4835 {
4836   break_at_finish_command_1 (arg, BP_TEMPFLAG, from_tty);
4837 }
4838
4839 static void
4840 hbreak_command (arg, from_tty)
4841      char *arg;
4842      int from_tty;
4843 {
4844   break_command_1 (arg, BP_HARDWAREFLAG, from_tty);
4845 }
4846
4847 static void
4848 thbreak_command (arg, from_tty)
4849      char *arg;
4850      int from_tty;
4851 {
4852   break_command_1 (arg, (BP_TEMPFLAG | BP_HARDWAREFLAG), from_tty);
4853 }
4854
4855 static void
4856 stop_command (arg, from_tty)
4857      char *arg;
4858      int from_tty;
4859 {
4860   printf_filtered ("Specify the type of breakpoint to set.\n\
4861 Usage: stop in <function | address>\n\
4862        stop at <line>\n");
4863 }
4864
4865 static void
4866 stopin_command (arg, from_tty)
4867      char *arg;
4868      int from_tty;
4869 {
4870   int badInput = 0;
4871
4872   if (arg == (char *) NULL)
4873     badInput = 1;
4874   else if (*arg != '*')
4875     {
4876       char *argptr = arg;
4877       int hasColon = 0;
4878
4879       /* look for a ':'.  If this is a line number specification, then
4880          say it is bad, otherwise, it should be an address or
4881          function/method name */
4882       while (*argptr && !hasColon)
4883         {
4884           hasColon = (*argptr == ':');
4885           argptr++;
4886         }
4887
4888       if (hasColon)
4889         badInput = (*argptr != ':');    /* Not a class::method */
4890       else
4891         badInput = isdigit (*arg);      /* a simple line number */
4892     }
4893
4894   if (badInput)
4895     printf_filtered ("Usage: stop in <function | address>\n");
4896   else
4897     break_command_1 (arg, 0, from_tty);
4898 }
4899
4900 static void
4901 stopat_command (arg, from_tty)
4902      char *arg;
4903      int from_tty;
4904 {
4905   int badInput = 0;
4906
4907   if (arg == (char *) NULL || *arg == '*')      /* no line number */
4908     badInput = 1;
4909   else
4910     {
4911       char *argptr = arg;
4912       int hasColon = 0;
4913
4914       /* look for a ':'.  If there is a '::' then get out, otherwise
4915          it is probably a line number. */
4916       while (*argptr && !hasColon)
4917         {
4918           hasColon = (*argptr == ':');
4919           argptr++;
4920         }
4921
4922       if (hasColon)
4923         badInput = (*argptr == ':');    /* we have class::method */
4924       else
4925         badInput = !isdigit (*arg);     /* not a line number */
4926     }
4927
4928   if (badInput)
4929     printf_filtered ("Usage: stop at <line>\n");
4930   else
4931     break_command_1 (arg, 0, from_tty);
4932 }
4933
4934 /* ARGSUSED */
4935 /* accessflag:  hw_write:  watch write, 
4936                 hw_read:   watch read, 
4937                 hw_access: watch access (read or write) */
4938 static void
4939 watch_command_1 (arg, accessflag, from_tty)
4940      char *arg;
4941      int accessflag;
4942      int from_tty;
4943 {
4944   struct breakpoint *b;
4945   struct symtab_and_line sal;
4946   struct expression *exp;
4947   struct block *exp_valid_block;
4948   struct value *val, *mark;
4949   struct frame_info *frame;
4950   struct frame_info *prev_frame = NULL;
4951   char *exp_start = NULL;
4952   char *exp_end = NULL;
4953   char *tok, *end_tok;
4954   int toklen;
4955   char *cond_start = NULL;
4956   char *cond_end = NULL;
4957   struct expression *cond = NULL;
4958   int i, other_type_used, target_resources_ok = 0;
4959   enum bptype bp_type;
4960   int mem_cnt = 0;
4961
4962   INIT_SAL (&sal);              /* initialize to zeroes */
4963
4964   /* Parse arguments.  */
4965   innermost_block = NULL;
4966   exp_start = arg;
4967   exp = parse_exp_1 (&arg, 0, 0);
4968   exp_end = arg;
4969   exp_valid_block = innermost_block;
4970   mark = value_mark ();
4971   val = evaluate_expression (exp);
4972   release_value (val);
4973   if (VALUE_LAZY (val))
4974     value_fetch_lazy (val);
4975
4976   tok = arg;
4977   while (*tok == ' ' || *tok == '\t')
4978     tok++;
4979   end_tok = tok;
4980
4981   while (*end_tok != ' ' && *end_tok != '\t' && *end_tok != '\000')
4982     end_tok++;
4983
4984   toklen = end_tok - tok;
4985   if (toklen >= 1 && strncmp (tok, "if", toklen) == 0)
4986     {
4987       tok = cond_start = end_tok + 1;
4988       cond = parse_exp_1 (&tok, 0, 0);
4989       cond_end = tok;
4990     }
4991   if (*tok)
4992     error ("Junk at end of command.");
4993
4994   if (accessflag == hw_read)
4995     bp_type = bp_read_watchpoint;
4996   else if (accessflag == hw_access)
4997     bp_type = bp_access_watchpoint;
4998   else
4999     bp_type = bp_hardware_watchpoint;
5000
5001   mem_cnt = can_use_hardware_watchpoint (val);
5002   if (mem_cnt == 0 && bp_type != bp_hardware_watchpoint)
5003     error ("Expression cannot be implemented with read/access watchpoint.");
5004   if (mem_cnt != 0)
5005     {
5006       i = hw_watchpoint_used_count (bp_type, &other_type_used);
5007       target_resources_ok = 
5008         TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_type, i + mem_cnt, 
5009                                             other_type_used);
5010       if (target_resources_ok == 0 && bp_type != bp_hardware_watchpoint)
5011         error ("Target does not support this type of hardware watchpoint.");
5012
5013       if (target_resources_ok < 0 && bp_type != bp_hardware_watchpoint)
5014         error ("Target can only support one kind of HW watchpoint at a time.");
5015     }
5016
5017 #if defined(HPUXHPPA)
5018   /*  On HP-UX if you set a h/w
5019      watchpoint before the "run" command, the inferior dies with a e.g.,
5020      SIGILL once you start it.  I initially believed this was due to a
5021      bad interaction between page protection traps and the initial
5022      startup sequence by the dynamic linker.
5023
5024      However, I tried avoiding that by having HP-UX's implementation of
5025      TARGET_CAN_USE_HW_WATCHPOINT return FALSE if there was no inferior_pid
5026      yet, which forced slow watches before a "run" or "attach", and it
5027      still fails somewhere in the startup code.
5028
5029      Until I figure out what's happening, I'm disallowing watches altogether
5030      before the "run" or "attach" command.  We'll tell the user they must
5031      set watches after getting the program started. */
5032   if (!target_has_execution)
5033     {
5034       warning ("can't do that without a running program; try \"break main\", \"run\" first");
5035       return;
5036     }
5037 #endif /* HPUXHPPA */
5038
5039   /* Now set up the breakpoint.  */
5040   b = set_raw_breakpoint (sal);
5041   set_breakpoint_count (breakpoint_count + 1);
5042   b->number = breakpoint_count;
5043   b->disposition = donttouch;
5044   b->exp = exp;
5045   b->exp_valid_block = exp_valid_block;
5046   b->exp_string = savestring (exp_start, exp_end - exp_start);
5047   b->val = val;
5048   b->cond = cond;
5049   if (cond_start)
5050     b->cond_string = savestring (cond_start, cond_end - cond_start);
5051   else
5052     b->cond_string = 0;
5053
5054   frame = block_innermost_frame (exp_valid_block);
5055   if (frame)
5056     {
5057       prev_frame = get_prev_frame (frame);
5058       b->watchpoint_frame = frame->frame;
5059     }
5060   else
5061     b->watchpoint_frame = (CORE_ADDR) 0;
5062
5063   if (mem_cnt && target_resources_ok > 0)
5064     b->type = bp_type;
5065   else
5066     b->type = bp_watchpoint;
5067
5068   /* If the expression is "local", then set up a "watchpoint scope"
5069      breakpoint at the point where we've left the scope of the watchpoint
5070      expression.  */
5071   if (innermost_block)
5072     {
5073       if (prev_frame)
5074         {
5075           struct breakpoint *scope_breakpoint;
5076           struct symtab_and_line scope_sal;
5077
5078           INIT_SAL (&scope_sal);        /* initialize to zeroes */
5079           scope_sal.pc = get_frame_pc (prev_frame);
5080           scope_sal.section = find_pc_overlay (scope_sal.pc);
5081
5082           scope_breakpoint = set_raw_breakpoint (scope_sal);
5083           set_breakpoint_count (breakpoint_count + 1);
5084           scope_breakpoint->number = breakpoint_count;
5085
5086           scope_breakpoint->type = bp_watchpoint_scope;
5087           scope_breakpoint->enable = enabled;
5088
5089           /* Automatically delete the breakpoint when it hits.  */
5090           scope_breakpoint->disposition = del;
5091
5092           /* Only break in the proper frame (help with recursion).  */
5093           scope_breakpoint->frame = prev_frame->frame;
5094
5095           /* Set the address at which we will stop.  */
5096           scope_breakpoint->address = get_frame_pc (prev_frame);
5097
5098           /* The scope breakpoint is related to the watchpoint.  We
5099              will need to act on them together.  */
5100           b->related_breakpoint = scope_breakpoint;
5101         }
5102     }
5103   value_free_to_mark (mark);
5104   mention (b);
5105 }
5106
5107 /* Return count of locations need to be watched and can be handled
5108    in hardware.  If the watchpoint can not be handled
5109    in hardware return zero.  */
5110
5111 #if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
5112 #define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(BYTE_SIZE) \
5113     ((BYTE_SIZE) <= (REGISTER_SIZE))
5114 #endif
5115
5116 #if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT)
5117 #define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \
5118      TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN)
5119 #endif
5120
5121 static int
5122 can_use_hardware_watchpoint (v)
5123      struct value *v;
5124 {
5125   int found_memory_cnt = 0;
5126
5127   /* Did the user specifically forbid us to use hardware watchpoints? */
5128   if (!can_use_hw_watchpoints)
5129     return 0;
5130
5131   /* Make sure that the value of the expression depends only upon
5132      memory contents, and values computed from them within GDB.  If we
5133      find any register references or function calls, we can't use a
5134      hardware watchpoint.
5135
5136      The idea here is that evaluating an expression generates a series
5137      of values, one holding the value of every subexpression.  (The
5138      expression a*b+c has five subexpressions: a, b, a*b, c, and
5139      a*b+c.)  GDB's values hold almost enough information to establish
5140      the criteria given above --- they identify memory lvalues,
5141      register lvalues, computed values, etcetera.  So we can evaluate
5142      the expression, and then scan the chain of values that leaves
5143      behind to decide whether we can detect any possible change to the
5144      expression's final value using only hardware watchpoints.
5145
5146      However, I don't think that the values returned by inferior
5147      function calls are special in any way.  So this function may not
5148      notice that an expression involving an inferior function call
5149      can't be watched with hardware watchpoints.  FIXME.  */
5150   for (; v; v = v->next)
5151     {
5152       if (VALUE_LVAL (v) == lval_memory)
5153         {
5154           if (VALUE_LAZY (v))
5155             /* A lazy memory lvalue is one that GDB never needed to fetch;
5156                we either just used its address (e.g., `a' in `a.b') or
5157                we never needed it at all (e.g., `a' in `a,b').  */
5158             ;
5159           else
5160             {
5161               /* Ahh, memory we actually used!  Check if we can cover
5162                  it with hardware watchpoints.  */
5163               CORE_ADDR vaddr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
5164               int       len   = TYPE_LENGTH (VALUE_TYPE (v));
5165
5166               if (!TARGET_REGION_OK_FOR_HW_WATCHPOINT (vaddr, len))
5167                 return 0;
5168               else
5169                 found_memory_cnt++;
5170             }
5171         }
5172       else if (v->lval != not_lval && v->modifiable == 0)
5173         return 0;       /* ??? What does this represent? */
5174       else if (v->lval == lval_register)
5175         return 0;       /* cannot watch a register with a HW watchpoint */
5176     }
5177
5178   /* The expression itself looks suitable for using a hardware
5179      watchpoint, but give the target machine a chance to reject it.  */
5180   return found_memory_cnt;
5181 }
5182
5183 static void
5184 watch_command (arg, from_tty)
5185      char *arg;
5186      int from_tty;
5187 {
5188   watch_command_1 (arg, hw_write, from_tty);
5189 }
5190
5191 static void
5192 rwatch_command (arg, from_tty)
5193      char *arg;
5194      int from_tty;
5195 {
5196   watch_command_1 (arg, hw_read, from_tty);
5197 }
5198
5199 static void
5200 awatch_command (arg, from_tty)
5201      char *arg;
5202      int from_tty;
5203 {
5204   watch_command_1 (arg, hw_access, from_tty);
5205 }
5206 \f
5207
5208 /* Helper routines for the until_command routine in infcmd.c.  Here
5209    because it uses the mechanisms of breakpoints.  */
5210
5211 /* This function is called by fetch_inferior_event via the
5212    cmd_continuation pointer, to complete the until command. It takes
5213    care of cleaning up the temporary breakpoints set up by the until
5214    command. */
5215 static void
5216 until_break_command_continuation (struct continuation_arg *arg)
5217 {
5218   /* Do all the exec cleanups, which at this point should only be the
5219      one set up in the first part of the until_break_command
5220      function. */
5221   do_exec_cleanups (ALL_CLEANUPS);
5222 }
5223
5224 /* ARGSUSED */
5225 void
5226 until_break_command (arg, from_tty)
5227      char *arg;
5228      int from_tty;
5229 {
5230   struct symtabs_and_lines sals;
5231   struct symtab_and_line sal;
5232   struct frame_info *prev_frame = get_prev_frame (selected_frame);
5233   struct breakpoint *breakpoint;
5234   struct cleanup *old_chain;
5235
5236   clear_proceed_status ();
5237
5238   /* Set a breakpoint where the user wants it and at return from
5239      this function */
5240
5241   if (default_breakpoint_valid)
5242     sals = decode_line_1 (&arg, 1, default_breakpoint_symtab,
5243                           default_breakpoint_line, (char ***) NULL);
5244   else
5245     sals = decode_line_1 (&arg, 1, (struct symtab *) NULL, 
5246                           0, (char ***) NULL);
5247
5248   if (sals.nelts != 1)
5249     error ("Couldn't get information on specified line.");
5250
5251   sal = sals.sals[0];
5252   free ((PTR) sals.sals);       /* malloc'd, so freed */
5253
5254   if (*arg)
5255     error ("Junk at end of arguments.");
5256
5257   resolve_sal_pc (&sal);
5258
5259   breakpoint = set_momentary_breakpoint (sal, selected_frame, bp_until);
5260
5261   if (!event_loop_p || !target_can_async_p ())
5262     old_chain = make_cleanup ((make_cleanup_func) delete_breakpoint, 
5263                               breakpoint);
5264   else
5265     make_exec_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint);
5266
5267   /* If we are running asynchronously, and the target supports async
5268      execution, we are not waiting for the target to stop, in the call
5269      tp proceed, below. This means that we cannot delete the
5270      brekpoints until the target has actually stopped. The only place
5271      where we get a chance to do that is in fetch_inferior_event, so
5272      we must set things up for that. */
5273
5274   if (event_loop_p && target_can_async_p ())
5275     {
5276       /* In this case we don't need args for the continuation, because
5277          all it needs to do is do the cleanups in the
5278          exec_cleanup_chain, which will be only those inserted by this
5279          function. We can get away by using ALL_CLEANUPS. */
5280       add_continuation (until_break_command_continuation, NULL);
5281     }
5282
5283   /* Keep within the current frame */
5284
5285   if (prev_frame)
5286     {
5287       sal = find_pc_line (prev_frame->pc, 0);
5288       sal.pc = prev_frame->pc;
5289       breakpoint = set_momentary_breakpoint (sal, prev_frame, bp_until);
5290       if (!event_loop_p || !target_can_async_p ())
5291         make_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint);
5292       else
5293         make_exec_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint);
5294     }
5295
5296   proceed (-1, TARGET_SIGNAL_DEFAULT, 0);
5297   /* Do the cleanups now, anly if we are not running asynchronously,
5298      of if we are, but the target is still synchronous. */
5299   if (!event_loop_p || !target_can_async_p ())
5300     do_cleanups (old_chain);
5301 }
5302 \f
5303 #if 0
5304 /* These aren't used; I don't konw what they were for.  */
5305 /* Set a breakpoint at the catch clause for NAME.  */
5306 static int
5307 catch_breakpoint (name)
5308      char *name;
5309 {
5310 }
5311
5312 static int
5313 disable_catch_breakpoint ()
5314 {
5315 }
5316
5317 static int
5318 delete_catch_breakpoint ()
5319 {
5320 }
5321
5322 static int
5323 enable_catch_breakpoint ()
5324 {
5325 }
5326 #endif /* 0 */
5327
5328 struct sal_chain
5329 {
5330   struct sal_chain *next;
5331   struct symtab_and_line sal;
5332 };
5333
5334 #if 0
5335 /* Not really used -- invocation in handle_gnu_4_16_catch_command
5336    had been commented out in the v.4.16 sources, and stays
5337    disabled there now because "catch NAME" syntax isn't allowed.
5338    pai/1997-07-11 */
5339 /* This isn't used; I don't know what it was for.  */
5340 /* For each catch clause identified in ARGS, run FUNCTION
5341    with that clause as an argument.  */
5342 static struct symtabs_and_lines
5343 map_catch_names (args, function)
5344      char *args;
5345      int (*function) ();
5346 {
5347   register char *p = args;
5348   register char *p1;
5349   struct symtabs_and_lines sals;
5350 #if 0
5351   struct sal_chain *sal_chain = 0;
5352 #endif
5353
5354   if (p == 0)
5355     error_no_arg ("one or more catch names");
5356
5357   sals.nelts = 0;
5358   sals.sals = NULL;
5359
5360   while (*p)
5361     {
5362       p1 = p;
5363       /* Don't swallow conditional part.  */
5364       if (p1[0] == 'i' && p1[1] == 'f'
5365           && (p1[2] == ' ' || p1[2] == '\t'))
5366         break;
5367
5368       if (isalpha (*p1))
5369         {
5370           p1++;
5371           while (isalnum (*p1) || *p1 == '_' || *p1 == '$')
5372             p1++;
5373         }
5374
5375       if (*p1 && *p1 != ' ' && *p1 != '\t')
5376         error ("Arguments must be catch names.");
5377
5378       *p1 = 0;
5379 #if 0
5380       if (function (p))
5381         {
5382           struct sal_chain *next = (struct sal_chain *)
5383           alloca (sizeof (struct sal_chain));
5384           next->next = sal_chain;
5385           next->sal = get_catch_sal (p);
5386           sal_chain = next;
5387           goto win;
5388         }
5389 #endif
5390       printf_unfiltered ("No catch clause for exception %s.\n", p);
5391 #if 0
5392     win:
5393 #endif
5394       p = p1;
5395       while (*p == ' ' || *p == '\t')
5396         p++;
5397     }
5398 }
5399 #endif
5400
5401 /* This shares a lot of code with `print_frame_label_vars' from stack.c.  */
5402
5403 static struct symtabs_and_lines
5404 get_catch_sals (this_level_only)
5405      int this_level_only;
5406 {
5407   register struct blockvector *bl;
5408   register struct block *block;
5409   int index, have_default = 0;
5410   CORE_ADDR pc;
5411   struct symtabs_and_lines sals;
5412   struct sal_chain *sal_chain = 0;
5413   char *blocks_searched;
5414
5415   /* Not sure whether an error message is always the correct response,
5416      but it's better than a core dump.  */
5417   if (selected_frame == NULL)
5418     error ("No selected frame.");
5419   block = get_frame_block (selected_frame);
5420   pc = selected_frame->pc;
5421
5422   sals.nelts = 0;
5423   sals.sals = NULL;
5424
5425   if (block == 0)
5426     error ("No symbol table info available.\n");
5427
5428   bl = blockvector_for_pc (BLOCK_END (block) - 4, &index);
5429   blocks_searched = (char *) alloca (BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
5430   memset (blocks_searched, 0, BLOCKVECTOR_NBLOCKS (bl) * sizeof (char));
5431
5432   while (block != 0)
5433     {
5434       CORE_ADDR end = BLOCK_END (block) - 4;
5435       int last_index;
5436
5437       if (bl != blockvector_for_pc (end, &index))
5438         error ("blockvector blotch");
5439       if (BLOCKVECTOR_BLOCK (bl, index) != block)
5440         error ("blockvector botch");
5441       last_index = BLOCKVECTOR_NBLOCKS (bl);
5442       index += 1;
5443
5444       /* Don't print out blocks that have gone by.  */
5445       while (index < last_index
5446              && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < pc)
5447         index++;
5448
5449       while (index < last_index
5450              && BLOCK_END (BLOCKVECTOR_BLOCK (bl, index)) < end)
5451         {
5452           if (blocks_searched[index] == 0)
5453             {
5454               struct block *b = BLOCKVECTOR_BLOCK (bl, index);
5455               int nsyms;
5456               register int i;
5457               register struct symbol *sym;
5458
5459               nsyms = BLOCK_NSYMS (b);
5460
5461               for (i = 0; i < nsyms; i++)
5462                 {
5463                   sym = BLOCK_SYM (b, i);
5464                   if (STREQ (SYMBOL_NAME (sym), "default"))
5465                     {
5466                       if (have_default)
5467                         continue;
5468                       have_default = 1;
5469                     }
5470                   if (SYMBOL_CLASS (sym) == LOC_LABEL)
5471                     {
5472                       struct sal_chain *next = (struct sal_chain *)
5473                       alloca (sizeof (struct sal_chain));
5474                       next->next = sal_chain;
5475                       next->sal = find_pc_line (SYMBOL_VALUE_ADDRESS (sym), 
5476                                                 0);
5477                       sal_chain = next;
5478                     }
5479                 }
5480               blocks_searched[index] = 1;
5481             }
5482           index++;
5483         }
5484       if (have_default)
5485         break;
5486       if (sal_chain && this_level_only)
5487         break;
5488
5489       /* After handling the function's top-level block, stop.
5490          Don't continue to its superblock, the block of
5491          per-file symbols.  */
5492       if (BLOCK_FUNCTION (block))
5493         break;
5494       block = BLOCK_SUPERBLOCK (block);
5495     }
5496
5497   if (sal_chain)
5498     {
5499       struct sal_chain *tmp_chain;
5500
5501       /* Count the number of entries.  */
5502       for (index = 0, tmp_chain = sal_chain; tmp_chain;
5503            tmp_chain = tmp_chain->next)
5504         index++;
5505
5506       sals.nelts = index;
5507       sals.sals = (struct symtab_and_line *)
5508         xmalloc (index * sizeof (struct symtab_and_line));
5509       for (index = 0; sal_chain; sal_chain = sal_chain->next, index++)
5510         sals.sals[index] = sal_chain->sal;
5511     }
5512
5513   return sals;
5514 }
5515
5516 static void
5517 ep_skip_leading_whitespace (s)
5518      char **s;
5519 {
5520   if ((s == NULL) || (*s == NULL))
5521     return;
5522   while (isspace (**s))
5523     *s += 1;
5524 }
5525
5526 /* This function examines a string, and attempts to find a token
5527    that might be an event name in the leading characters.  If a
5528    possible match is found, a pointer to the last character of
5529    the token is returned.  Else, NULL is returned. */
5530
5531 static char *
5532 ep_find_event_name_end (arg)
5533      char *arg;
5534 {
5535   char *s = arg;
5536   char *event_name_end = NULL;
5537
5538   /* If we could depend upon the presense of strrpbrk, we'd use that... */
5539   if (arg == NULL)
5540     return NULL;
5541
5542   /* We break out of the loop when we find a token delimiter.
5543      Basically, we're looking for alphanumerics and underscores;
5544      anything else delimites the token. */
5545   while (*s != '\0')
5546     {
5547       if (!isalnum (*s) && (*s != '_'))
5548         break;
5549       event_name_end = s;
5550       s++;
5551     }
5552
5553   return event_name_end;
5554 }
5555
5556
5557 /* This function attempts to parse an optional "if <cond>" clause
5558    from the arg string.  If one is not found, it returns NULL.
5559
5560    Else, it returns a pointer to the condition string.  (It does not
5561    attempt to evaluate the string against a particular block.)  And,
5562    it updates arg to point to the first character following the parsed
5563    if clause in the arg string. */
5564
5565 static char *
5566 ep_parse_optional_if_clause (arg)
5567      char **arg;
5568 {
5569   char *cond_string;
5570
5571   if (((*arg)[0] != 'i') || ((*arg)[1] != 'f') || !isspace ((*arg)[2]))
5572     return NULL;
5573
5574   /* Skip the "if" keyword. */
5575   (*arg) += 2;
5576
5577   /* Skip any extra leading whitespace, and record the start of the
5578      condition string. */
5579   ep_skip_leading_whitespace (arg);
5580   cond_string = *arg;
5581
5582   /* Assume that the condition occupies the remainder of the arg string. */
5583   (*arg) += strlen (cond_string);
5584
5585   return cond_string;
5586 }
5587
5588 /* This function attempts to parse an optional filename from the arg
5589    string.  If one is not found, it returns NULL.
5590
5591    Else, it returns a pointer to the parsed filename.  (This function
5592    makes no attempt to verify that a file of that name exists, or is
5593    accessible.)  And, it updates arg to point to the first character
5594    following the parsed filename in the arg string.
5595
5596    Note that clients needing to preserve the returned filename for
5597    future access should copy it to their own buffers. */
5598 static char *
5599 ep_parse_optional_filename (arg)
5600      char **arg;
5601 {
5602   static char filename[1024];
5603   char *arg_p = *arg;
5604   int i;
5605   char c;
5606
5607   if ((*arg_p == '\0') || isspace (*arg_p))
5608     return NULL;
5609
5610   for (i = 0;; i++)
5611     {
5612       c = *arg_p;
5613       if (isspace (c))
5614         c = '\0';
5615       filename[i] = c;
5616       if (c == '\0')
5617         break;
5618       arg_p++;
5619     }
5620   *arg = arg_p;
5621
5622   return filename;
5623 }
5624
5625 /* Commands to deal with catching events, such as signals, exceptions,
5626    process start/exit, etc.  */
5627
5628 typedef enum
5629 {
5630   catch_fork, catch_vfork
5631 }
5632 catch_fork_kind;
5633
5634 #if defined(CHILD_INSERT_FORK_CATCHPOINT) || defined(CHILD_INSERT_VFORK_CATCHPOINT)
5635 static void catch_fork_command_1 PARAMS ((catch_fork_kind fork_kind, 
5636                                           char *arg, 
5637                                           int tempflag, 
5638                                           int from_tty));
5639
5640 static void
5641 catch_fork_command_1 (fork_kind, arg, tempflag, from_tty)
5642      catch_fork_kind fork_kind;
5643      char *arg;
5644      int tempflag;
5645      int from_tty;
5646 {
5647   char *cond_string = NULL;
5648
5649   ep_skip_leading_whitespace (&arg);
5650
5651   /* The allowed syntax is:
5652      catch [v]fork
5653      catch [v]fork if <cond>
5654
5655      First, check if there's an if clause. */
5656   cond_string = ep_parse_optional_if_clause (&arg);
5657
5658   if ((*arg != '\0') && !isspace (*arg))
5659     error ("Junk at end of arguments.");
5660
5661   /* If this target supports it, create a fork or vfork catchpoint
5662      and enable reporting of such events. */
5663   switch (fork_kind)
5664     {
5665     case catch_fork:
5666       create_fork_event_catchpoint (tempflag, cond_string);
5667       break;
5668     case catch_vfork:
5669       create_vfork_event_catchpoint (tempflag, cond_string);
5670       break;
5671     default:
5672       error ("unsupported or unknown fork kind; cannot catch it");
5673       break;
5674     }
5675 }
5676 #endif
5677
5678 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
5679 static void
5680 catch_exec_command_1 (arg, tempflag, from_tty)
5681      char *arg;
5682      int tempflag;
5683      int from_tty;
5684 {
5685   char *cond_string = NULL;
5686
5687   ep_skip_leading_whitespace (&arg);
5688
5689   /* The allowed syntax is:
5690      catch exec
5691      catch exec if <cond>
5692
5693      First, check if there's an if clause. */
5694   cond_string = ep_parse_optional_if_clause (&arg);
5695
5696   if ((*arg != '\0') && !isspace (*arg))
5697     error ("Junk at end of arguments.");
5698
5699   /* If this target supports it, create an exec catchpoint
5700      and enable reporting of such events. */
5701   create_exec_event_catchpoint (tempflag, cond_string);
5702 }
5703 #endif
5704
5705 #if defined(SOLIB_ADD)
5706 static void
5707 catch_load_command_1 (arg, tempflag, from_tty)
5708      char *arg;
5709      int tempflag;
5710      int from_tty;
5711 {
5712   char *dll_pathname = NULL;
5713   char *cond_string = NULL;
5714
5715   ep_skip_leading_whitespace (&arg);
5716
5717   /* The allowed syntax is:
5718      catch load
5719      catch load if <cond>
5720      catch load <filename>
5721      catch load <filename> if <cond>
5722
5723      The user is not allowed to specify the <filename> after an
5724      if clause.
5725
5726      We'll ignore the pathological case of a file named "if".
5727
5728      First, check if there's an if clause.  If so, then there
5729      cannot be a filename. */
5730   cond_string = ep_parse_optional_if_clause (&arg);
5731
5732   /* If there was an if clause, then there cannot be a filename.
5733      Else, there might be a filename and an if clause. */
5734   if (cond_string == NULL)
5735     {
5736       dll_pathname = ep_parse_optional_filename (&arg);
5737       ep_skip_leading_whitespace (&arg);
5738       cond_string = ep_parse_optional_if_clause (&arg);
5739     }
5740
5741   if ((*arg != '\0') && !isspace (*arg))
5742     error ("Junk at end of arguments.");
5743
5744   /* Create a load breakpoint that only triggers when a load of
5745      the specified dll (or any dll, if no pathname was specified)
5746      occurs. */
5747   SOLIB_CREATE_CATCH_LOAD_HOOK (inferior_pid, tempflag, 
5748                                 dll_pathname, cond_string);
5749 }
5750
5751 static void
5752 catch_unload_command_1 (arg, tempflag, from_tty)
5753      char *arg;
5754      int tempflag;
5755      int from_tty;
5756 {
5757   char *dll_pathname = NULL;
5758   char *cond_string = NULL;
5759
5760   ep_skip_leading_whitespace (&arg);
5761
5762   /* The allowed syntax is:
5763      catch unload
5764      catch unload if <cond>
5765      catch unload <filename>
5766      catch unload <filename> if <cond>
5767
5768      The user is not allowed to specify the <filename> after an
5769      if clause.
5770
5771      We'll ignore the pathological case of a file named "if".
5772
5773      First, check if there's an if clause.  If so, then there
5774      cannot be a filename. */
5775   cond_string = ep_parse_optional_if_clause (&arg);
5776
5777   /* If there was an if clause, then there cannot be a filename.
5778      Else, there might be a filename and an if clause. */
5779   if (cond_string == NULL)
5780     {
5781       dll_pathname = ep_parse_optional_filename (&arg);
5782       ep_skip_leading_whitespace (&arg);
5783       cond_string = ep_parse_optional_if_clause (&arg);
5784     }
5785
5786   if ((*arg != '\0') && !isspace (*arg))
5787     error ("Junk at end of arguments.");
5788
5789   /* Create an unload breakpoint that only triggers when an unload of
5790      the specified dll (or any dll, if no pathname was specified)
5791      occurs. */
5792   SOLIB_CREATE_CATCH_UNLOAD_HOOK (inferior_pid, tempflag, 
5793                                   dll_pathname, cond_string);
5794 }
5795 #endif /* SOLIB_ADD */
5796
5797 /* Commands to deal with catching exceptions.  */
5798
5799 /* Set a breakpoint at the specified callback routine for an
5800    exception event callback */
5801
5802 static void
5803 create_exception_catchpoint (tempflag, cond_string, ex_event, sal)
5804      int tempflag;
5805      char *cond_string;
5806      enum exception_event_kind ex_event;
5807      struct symtab_and_line *sal;
5808 {
5809   struct breakpoint *b;
5810   int thread = -1;              /* All threads. */
5811
5812   if (!sal)                     /* no exception support? */
5813     return;
5814
5815   b = set_raw_breakpoint (*sal);
5816   set_breakpoint_count (breakpoint_count + 1);
5817   b->number = breakpoint_count;
5818   b->cond = NULL;
5819   b->cond_string = (cond_string == NULL) ? 
5820     NULL : savestring (cond_string, strlen (cond_string));
5821   b->thread = thread;
5822   b->addr_string = NULL;
5823   b->enable = enabled;
5824   b->disposition = tempflag ? del : donttouch;
5825   switch (ex_event)
5826     {
5827     case EX_EVENT_THROW:
5828       b->type = bp_catch_throw;
5829       break;
5830     case EX_EVENT_CATCH:
5831       b->type = bp_catch_catch;
5832       break;
5833     default:                    /* error condition */
5834       b->type = bp_none;
5835       b->enable = disabled;
5836       error ("Internal error -- invalid catchpoint kind");
5837     }
5838   mention (b);
5839 }
5840
5841 /* Deal with "catch catch" and "catch throw" commands */
5842
5843 static void
5844 catch_exception_command_1 (ex_event, arg, tempflag, from_tty)
5845      enum exception_event_kind ex_event;
5846      char *arg;
5847      int tempflag;
5848      int from_tty;
5849 {
5850   char *cond_string = NULL;
5851   struct symtab_and_line *sal = NULL;
5852
5853   ep_skip_leading_whitespace (&arg);
5854
5855   cond_string = ep_parse_optional_if_clause (&arg);
5856
5857   if ((*arg != '\0') && !isspace (*arg))
5858     error ("Junk at end of arguments.");
5859
5860   if ((ex_event != EX_EVENT_THROW) &&
5861       (ex_event != EX_EVENT_CATCH))
5862     error ("Unsupported or unknown exception event; cannot catch it");
5863
5864   /* See if we can find a callback routine */
5865   sal = target_enable_exception_callback (ex_event, 1);
5866
5867   if (sal)
5868     {
5869       /* We have callbacks from the runtime system for exceptions.
5870          Set a breakpoint on the sal found, if no errors */
5871       if (sal != (struct symtab_and_line *) -1)
5872         create_exception_catchpoint (tempflag, cond_string, ex_event, sal);
5873       else
5874         return;         /* something went wrong with setting up callbacks */
5875     }
5876   else
5877     {
5878       /* No callbacks from runtime system for exceptions.
5879          Try GNU C++ exception breakpoints using labels in debug info. */
5880       if (ex_event == EX_EVENT_CATCH)
5881         {
5882           handle_gnu_4_16_catch_command (arg, tempflag, from_tty);
5883         }
5884       else if (ex_event == EX_EVENT_THROW)
5885         {
5886           /* Set a breakpoint on __raise_exception () */
5887
5888           warning ("Unsupported with this platform/compiler combination.");
5889           warning ("Perhaps you can achieve the effect you want by setting");
5890           warning ("a breakpoint on __raise_exception().");
5891         }
5892     }
5893 }
5894
5895 /* Cover routine to allow wrapping target_enable_exception_catchpoints
5896    inside a catch_errors */
5897
5898 static int
5899 cover_target_enable_exception_callback (arg)
5900      PTR arg;
5901 {
5902   args_for_catchpoint_enable *args = arg;
5903   struct symtab_and_line *sal;
5904   sal = target_enable_exception_callback (args->kind, args->enable);
5905   if (sal == NULL)
5906     return 0;
5907   else if (sal == (struct symtab_and_line *) -1)
5908     return -1;
5909   else
5910     return 1;                   /*is valid */
5911 }
5912
5913
5914
5915 /* This is the original v.4.16 and earlier version of the
5916    catch_command_1() function.  Now that other flavours of "catch"
5917    have been introduced, and since exception handling can be handled
5918    in other ways (through target ops) also, this is used only for the
5919    GNU C++ exception handling system.
5920    Note: Only the "catch" flavour of GDB 4.16 is handled here.  The
5921    "catch NAME" is now no longer allowed in catch_command_1().  Also,
5922    there was no code in GDB 4.16 for "catch throw". 
5923
5924    Called from catch_exception_command_1 () */
5925
5926
5927 static void
5928 handle_gnu_4_16_catch_command (arg, tempflag, from_tty)
5929      char *arg;
5930      int tempflag;
5931      int from_tty;
5932 {
5933   /* First, translate ARG into something we can deal with in terms
5934      of breakpoints.  */
5935
5936   struct symtabs_and_lines sals;
5937   struct symtab_and_line sal;
5938   register struct expression *cond = 0;
5939   register struct breakpoint *b;
5940   char *save_arg;
5941   int i;
5942
5943   INIT_SAL (&sal);              /* initialize to zeroes */
5944
5945   /* If no arg given, or if first arg is 'if ', all active catch clauses
5946      are breakpointed. */
5947
5948   if (!arg || (arg[0] == 'i' && arg[1] == 'f'
5949                && (arg[2] == ' ' || arg[2] == '\t')))
5950     {
5951       /* Grab all active catch clauses.  */
5952       sals = get_catch_sals (0);
5953     }
5954   else
5955     {
5956       /* Grab selected catch clauses.  */
5957       error ("catch NAME not implemented");
5958
5959 #if 0
5960       /* Not sure why this code has been disabled. I'm leaving
5961          it disabled.  We can never come here now anyway
5962          since we don't allow the "catch NAME" syntax.
5963          pai/1997-07-11 */
5964
5965       /* This isn't used; I don't know what it was for.  */
5966       sals = map_catch_names (arg, catch_breakpoint);
5967 #endif
5968     }
5969
5970   if (!sals.nelts)
5971     return;
5972
5973   save_arg = arg;
5974   for (i = 0; i < sals.nelts; i++)
5975     {
5976       resolve_sal_pc (&sals.sals[i]);
5977
5978       while (arg && *arg)
5979         {
5980           if (arg[0] == 'i' && arg[1] == 'f'
5981               && (arg[2] == ' ' || arg[2] == '\t'))
5982             cond = parse_exp_1 ((arg += 2, &arg),
5983                                 block_for_pc (sals.sals[i].pc), 0);
5984           else
5985             error ("Junk at end of arguments.");
5986         }
5987       arg = save_arg;
5988     }
5989
5990   for (i = 0; i < sals.nelts; i++)
5991     {
5992       sal = sals.sals[i];
5993
5994       if (from_tty)
5995         describe_other_breakpoints (sal.pc, sal.section);
5996
5997       b = set_raw_breakpoint (sal);
5998       set_breakpoint_count (breakpoint_count + 1);
5999       b->number = breakpoint_count;
6000
6001       /* Important -- this is an ordinary breakpoint.  For platforms
6002          with callback support for exceptions,
6003          create_exception_catchpoint() will create special bp types
6004          (bp_catch_catch and bp_catch_throw), and there is code in
6005          insert_breakpoints() and elsewhere that depends on that. */
6006       b->type = bp_breakpoint;  
6007
6008       b->cond = cond;
6009       b->enable = enabled;
6010       b->disposition = tempflag ? del : donttouch;
6011
6012       mention (b);
6013     }
6014
6015   if (sals.nelts > 1)
6016     {
6017       warning ("Multiple breakpoints were set.");
6018       warning ("Use the \"delete\" command to delete unwanted breakpoints.");
6019     }
6020   free ((PTR) sals.sals);
6021 }
6022
6023 #if 0
6024 /* This creates a temporary internal breakpoint
6025    just to placate infrun */
6026 static struct breakpoint *
6027 create_temp_exception_breakpoint (pc)
6028      CORE_ADDR pc;
6029 {
6030   struct symtab_and_line sal;
6031   struct breakpoint *b;
6032
6033   INIT_SAL (&sal);
6034   sal.pc = pc;
6035   sal.symtab = NULL;
6036   sal.line = 0;
6037
6038   b = set_raw_breakpoint (sal);
6039   if (!b)
6040     error ("Internal error -- couldn't set temp exception breakpoint");
6041
6042   b->type = bp_breakpoint;
6043   b->disposition = del;
6044   b->enable = enabled;
6045   b->silent = 1;
6046   b->number = internal_breakpoint_number--;
6047   return b;
6048 }
6049 #endif
6050
6051 static void
6052 catch_command_1 (arg, tempflag, from_tty)
6053      char *arg;
6054      int tempflag;
6055      int from_tty;
6056 {
6057
6058   /* The first argument may be an event name, such as "start" or "load".
6059      If so, then handle it as such.  If it doesn't match an event name,
6060      then attempt to interpret it as an exception name.  (This latter is
6061      the v4.16-and-earlier GDB meaning of the "catch" command.)
6062
6063      First, try to find the bounds of what might be an event name. */
6064   char *arg1_start = arg;
6065   char *arg1_end;
6066   int arg1_length;
6067
6068   if (arg1_start == NULL)
6069     {
6070       /* Old behaviour was to use pre-v-4.16 syntax */
6071       /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6072       /* return; */
6073       /* Now, this is not allowed */
6074       error ("Catch requires an event name.");
6075
6076     }
6077   arg1_end = ep_find_event_name_end (arg1_start);
6078   if (arg1_end == NULL)
6079     error ("catch requires an event");
6080   arg1_length = arg1_end + 1 - arg1_start;
6081
6082   /* Try to match what we found against known event names. */
6083   if (strncmp (arg1_start, "signal", arg1_length) == 0)
6084     {
6085       error ("Catch of signal not yet implemented");
6086     }
6087   else if (strncmp (arg1_start, "catch", arg1_length) == 0)
6088     {
6089       catch_exception_command_1 (EX_EVENT_CATCH, arg1_end + 1, 
6090                                  tempflag, from_tty);
6091     }
6092   else if (strncmp (arg1_start, "throw", arg1_length) == 0)
6093     {
6094       catch_exception_command_1 (EX_EVENT_THROW, arg1_end + 1, 
6095                                  tempflag, from_tty);
6096     }
6097   else if (strncmp (arg1_start, "thread_start", arg1_length) == 0)
6098     {
6099       error ("Catch of thread_start not yet implemented");
6100     }
6101   else if (strncmp (arg1_start, "thread_exit", arg1_length) == 0)
6102     {
6103       error ("Catch of thread_exit not yet implemented");
6104     }
6105   else if (strncmp (arg1_start, "thread_join", arg1_length) == 0)
6106     {
6107       error ("Catch of thread_join not yet implemented");
6108     }
6109   else if (strncmp (arg1_start, "start", arg1_length) == 0)
6110     {
6111       error ("Catch of start not yet implemented");
6112     }
6113   else if (strncmp (arg1_start, "exit", arg1_length) == 0)
6114     {
6115       error ("Catch of exit not yet implemented");
6116     }
6117   else if (strncmp (arg1_start, "fork", arg1_length) == 0)
6118     {
6119 #if defined(CHILD_INSERT_FORK_CATCHPOINT)
6120       catch_fork_command_1 (catch_fork, arg1_end + 1, tempflag, from_tty);
6121 #else
6122       error ("Catch of fork not yet implemented");
6123 #endif
6124     }
6125   else if (strncmp (arg1_start, "vfork", arg1_length) == 0)
6126     {
6127 #if defined(CHILD_INSERT_VFORK_CATCHPOINT)
6128       catch_fork_command_1 (catch_vfork, arg1_end + 1, tempflag, from_tty);
6129 #else
6130       error ("Catch of vfork not yet implemented");
6131 #endif
6132     }
6133   else if (strncmp (arg1_start, "exec", arg1_length) == 0)
6134     {
6135 #if defined(CHILD_INSERT_EXEC_CATCHPOINT)
6136       catch_exec_command_1 (arg1_end + 1, tempflag, from_tty);
6137 #else
6138       error ("Catch of exec not yet implemented");
6139 #endif
6140     }
6141   else if (strncmp (arg1_start, "load", arg1_length) == 0)
6142     {
6143 #if defined(SOLIB_ADD)
6144       catch_load_command_1 (arg1_end + 1, tempflag, from_tty);
6145 #else
6146       error ("Catch of load not implemented");
6147 #endif
6148     }
6149   else if (strncmp (arg1_start, "unload", arg1_length) == 0)
6150     {
6151 #if defined(SOLIB_ADD)
6152       catch_unload_command_1 (arg1_end + 1, tempflag, from_tty);
6153 #else
6154       error ("Catch of load not implemented");
6155 #endif
6156     }
6157   else if (strncmp (arg1_start, "stop", arg1_length) == 0)
6158     {
6159       error ("Catch of stop not yet implemented");
6160     }
6161
6162   /* This doesn't appear to be an event name */
6163
6164   else
6165     {
6166       /* Pre-v.4.16 behaviour was to treat the argument
6167          as the name of an exception */
6168       /* catch_throw_command_1 (arg1_start, tempflag, from_tty); */
6169       /* Now this is not allowed */
6170       error ("Unknown event kind specified for catch");
6171
6172     }
6173 }
6174
6175 /* Used by the gui, could be made a worker for other things. */
6176
6177 struct breakpoint *
6178 set_breakpoint_sal (sal)
6179      struct symtab_and_line sal;
6180 {
6181   struct breakpoint *b;
6182   b = set_raw_breakpoint (sal);
6183   set_breakpoint_count (breakpoint_count + 1);
6184   b->number = breakpoint_count;
6185   b->type = bp_breakpoint;
6186   b->cond = 0;
6187   b->thread = -1;
6188   return b;
6189 }
6190
6191 #if 0
6192 /* These aren't used; I don't know what they were for.  */
6193 /* Disable breakpoints on all catch clauses described in ARGS.  */
6194 static void
6195 disable_catch (args)
6196      char *args;
6197 {
6198   /* Map the disable command to catch clauses described in ARGS.  */
6199 }
6200
6201 /* Enable breakpoints on all catch clauses described in ARGS.  */
6202 static void
6203 enable_catch (args)
6204      char *args;
6205 {
6206   /* Map the disable command to catch clauses described in ARGS.  */
6207 }
6208
6209 /* Delete breakpoints on all catch clauses in the active scope.  */
6210 static void
6211 delete_catch (args)
6212      char *args;
6213 {
6214   /* Map the delete command to catch clauses described in ARGS.  */
6215 }
6216 #endif /* 0 */
6217
6218 static void
6219 catch_command (arg, from_tty)
6220      char *arg;
6221      int from_tty;
6222 {
6223   catch_command_1 (arg, 0, from_tty);
6224 }
6225 \f
6226
6227 static void
6228 tcatch_command (arg, from_tty)
6229      char *arg;
6230      int from_tty;
6231 {
6232   catch_command_1 (arg, 1, from_tty);
6233 }
6234
6235
6236 static void
6237 clear_command (arg, from_tty)
6238      char *arg;
6239      int from_tty;
6240 {
6241   register struct breakpoint *b, *b1;
6242   int default_match;
6243   struct symtabs_and_lines sals;
6244   struct symtab_and_line sal;
6245   register struct breakpoint *found;
6246   int i;
6247
6248   if (arg)
6249     {
6250       sals = decode_line_spec (arg, 1);
6251       default_match = 0;
6252     }
6253   else
6254     {
6255       sals.sals = (struct symtab_and_line *)
6256         xmalloc (sizeof (struct symtab_and_line));
6257       INIT_SAL (&sal);          /* initialize to zeroes */
6258       sal.line = default_breakpoint_line;
6259       sal.symtab = default_breakpoint_symtab;
6260       sal.pc = default_breakpoint_address;
6261       if (sal.symtab == 0)
6262         error ("No source file specified.");
6263
6264       sals.sals[0] = sal;
6265       sals.nelts = 1;
6266
6267       default_match = 1;
6268     }
6269
6270   /* For each line spec given, delete bps which correspond
6271      to it.  We do this in two loops: the first loop looks at
6272      the initial bp(s) in the chain which should be deleted,
6273      the second goes down the rest of the chain looking ahead
6274      one so it can take those bps off the chain without messing
6275      up the chain. */
6276
6277
6278   for (i = 0; i < sals.nelts; i++)
6279     {
6280       /* If exact pc given, clear bpts at that pc.
6281          If line given (pc == 0), clear all bpts on specified line.
6282          If defaulting, clear all bpts on default line
6283          or at default pc.
6284
6285          defaulting    sal.pc != 0    tests to do
6286
6287          0              1             pc
6288          1              1             pc _and_ line
6289          0              0             line
6290          1              0             <can't happen> */
6291
6292       sal = sals.sals[i];
6293       found = (struct breakpoint *) 0;
6294
6295
6296       while (breakpoint_chain
6297       /* Why don't we check here that this is not
6298          a watchpoint, etc., as we do below?
6299          I can't make it fail, but don't know
6300          what's stopping the failure: a watchpoint
6301          of the same address as "sal.pc" should
6302          wind up being deleted. */
6303
6304              && (((sal.pc && (breakpoint_chain->address == sal.pc)) &&
6305                   (overlay_debugging == 0 ||
6306                    breakpoint_chain->section == sal.section))
6307                  || ((default_match || (0 == sal.pc))
6308                      && breakpoint_chain->source_file != NULL
6309                      && sal.symtab != NULL
6310               && STREQ (breakpoint_chain->source_file, sal.symtab->filename)
6311                      && breakpoint_chain->line_number == sal.line)))
6312
6313         {
6314           b1 = breakpoint_chain;
6315           breakpoint_chain = b1->next;
6316           b1->next = found;
6317           found = b1;
6318         }
6319
6320       ALL_BREAKPOINTS (b)
6321
6322         while (b->next
6323                && b->next->type != bp_none
6324                && b->next->type != bp_watchpoint
6325                && b->next->type != bp_hardware_watchpoint
6326                && b->next->type != bp_read_watchpoint
6327                && b->next->type != bp_access_watchpoint
6328                && (((sal.pc && (b->next->address == sal.pc)) &&
6329                     (overlay_debugging == 0 ||
6330                      b->next->section == sal.section))
6331                    || ((default_match || (0 == sal.pc))
6332                        && b->next->source_file != NULL
6333                        && sal.symtab != NULL
6334                        && STREQ (b->next->source_file, sal.symtab->filename)
6335                        && b->next->line_number == sal.line)))
6336
6337
6338         {
6339           b1 = b->next;
6340           b->next = b1->next;
6341           b1->next = found;
6342           found = b1;
6343         }
6344
6345       if (found == 0)
6346         {
6347           if (arg)
6348             error ("No breakpoint at %s.", arg);
6349           else
6350             error ("No breakpoint at this line.");
6351         }
6352
6353       if (found->next)
6354         from_tty = 1;           /* Always report if deleted more than one */
6355       if (from_tty)
6356         printf_unfiltered ("Deleted breakpoint%s ", found->next ? "s" : "");
6357       breakpoints_changed ();
6358       while (found)
6359         {
6360           if (from_tty)
6361             printf_unfiltered ("%d ", found->number);
6362           b1 = found->next;
6363           delete_breakpoint (found);
6364           found = b1;
6365         }
6366       if (from_tty)
6367         putchar_unfiltered ('\n');
6368     }
6369   free ((PTR) sals.sals);
6370 }
6371 \f
6372 /* Delete breakpoint in BS if they are `delete' breakpoints and
6373    all breakpoints that are marked for deletion, whether hit or not.
6374    This is called after any breakpoint is hit, or after errors.  */
6375
6376 void
6377 breakpoint_auto_delete (bs)
6378      bpstat bs;
6379 {
6380   struct breakpoint *b, *temp;
6381
6382   for (; bs; bs = bs->next)
6383     if (bs->breakpoint_at && bs->breakpoint_at->disposition == del
6384         && bs->stop)
6385       delete_breakpoint (bs->breakpoint_at);
6386
6387   ALL_BREAKPOINTS_SAFE (b, temp)
6388   {
6389     if (b->disposition == del_at_next_stop)
6390       delete_breakpoint (b);
6391   }
6392 }
6393
6394 /* Delete a breakpoint and clean up all traces of it in the data
6395    structures. */
6396
6397 void
6398 delete_breakpoint (bpt)
6399      struct breakpoint *bpt;
6400 {
6401   register struct breakpoint *b;
6402   register bpstat bs;
6403
6404   if (bpt == NULL)
6405     error ("Internal error (attempted to delete a NULL breakpoint)");
6406
6407
6408   /* Has this bp already been deleted?  This can happen because multiple
6409      lists can hold pointers to bp's.  bpstat lists are especial culprits.
6410
6411      One example of this happening is a watchpoint's scope bp.  When the
6412      scope bp triggers, we notice that the watchpoint is out of scope, and
6413      delete it.  We also delete its scope bp.  But the scope bp is marked
6414      "auto-deleting", and is already on a bpstat.  That bpstat is then
6415      checked for auto-deleting bp's, which are deleted.
6416
6417      A real solution to this problem might involve reference counts in bp's,
6418      and/or giving them pointers back to their referencing bpstat's, and
6419      teaching delete_breakpoint to only free a bp's storage when no more
6420      references were extent.  A cheaper bandaid was chosen. */
6421   if (bpt->type == bp_none)
6422     return;
6423
6424   if (delete_breakpoint_hook)
6425     delete_breakpoint_hook (bpt);
6426   breakpoint_delete_event (bpt->number);
6427
6428   if (bpt->inserted)
6429     remove_breakpoint (bpt, mark_uninserted);
6430
6431   if (breakpoint_chain == bpt)
6432     breakpoint_chain = bpt->next;
6433
6434   /* If we have callback-style exception catchpoints, don't go through
6435      the adjustments to the C++ runtime library etc. if the inferior
6436      isn't actually running.  target_enable_exception_callback for a
6437      null target ops vector gives an undesirable error message, so we
6438      check here and avoid it. Since currently (1997-09-17) only HP-UX aCC's
6439      exceptions are supported in this way, it's OK for now. FIXME */
6440   if (ep_is_exception_catchpoint (bpt) && target_has_execution)
6441     {
6442       static char message1[] = "Error in deleting catchpoint %d:\n";
6443       static char message[sizeof (message1) + 30];
6444       args_for_catchpoint_enable args;
6445
6446       /* Format possible error msg */
6447       sprintf (message, message1, bpt->number);
6448       args.kind = bpt->type == bp_catch_catch ? 
6449         EX_EVENT_CATCH : EX_EVENT_THROW;
6450       args.enable = 0;
6451       catch_errors (cover_target_enable_exception_callback, &args,
6452                     message, RETURN_MASK_ALL);
6453     }
6454
6455
6456   ALL_BREAKPOINTS (b)
6457     if (b->next == bpt)
6458     {
6459       b->next = bpt->next;
6460       break;
6461     }
6462
6463   /* Before turning off the visuals for the bp, check to see that
6464      there are no other bps at the same address. */
6465   if (tui_version)
6466     {
6467       int clearIt;
6468
6469       ALL_BREAKPOINTS (b)
6470       {
6471         clearIt = (b->address != bpt->address);
6472         if (!clearIt)
6473           break;
6474       }
6475
6476       if (clearIt)
6477         {
6478           TUIDO (((TuiOpaqueFuncPtr) tui_vAllSetHasBreakAt, bpt, 0));
6479           TUIDO (((TuiOpaqueFuncPtr) tuiUpdateAllExecInfos));
6480         }
6481     }
6482
6483   check_duplicates (bpt->address, bpt->section);
6484   /* If this breakpoint was inserted, and there is another breakpoint
6485      at the same address, we need to insert the other breakpoint.  */
6486   if (bpt->inserted
6487       && bpt->type != bp_hardware_watchpoint
6488       && bpt->type != bp_read_watchpoint
6489       && bpt->type != bp_access_watchpoint
6490       && bpt->type != bp_catch_fork
6491       && bpt->type != bp_catch_vfork
6492       && bpt->type != bp_catch_exec)
6493     {
6494       ALL_BREAKPOINTS (b)
6495         if (b->address == bpt->address
6496             && b->section == bpt->section
6497             && !b->duplicate
6498             && b->enable != disabled
6499             && b->enable != shlib_disabled
6500             && b->enable != call_disabled)
6501         {
6502           int val;
6503
6504           /* We should never reach this point if there is a permanent
6505              breakpoint at the same address as the one being deleted.
6506              If there is a permanent breakpoint somewhere, it should
6507              always be the only one inserted.  */
6508           if (b->enable == permanent)
6509             internal_error ("another breakpoint was inserted on top of "
6510                             "a permanent breakpoint");
6511
6512           if (b->type == bp_hardware_breakpoint)
6513             val = target_insert_hw_breakpoint (b->address, b->shadow_contents);
6514           else
6515             val = target_insert_breakpoint (b->address, b->shadow_contents);
6516
6517           if (val != 0)
6518             {
6519               target_terminal_ours_for_output ();
6520               warning ("Cannot insert breakpoint %d:", b->number);
6521               memory_error (val, b->address);   /* which bombs us out */
6522             }
6523           else
6524             b->inserted = 1;
6525         }
6526     }
6527
6528   free_command_lines (&bpt->commands);
6529   if (bpt->cond)
6530     free (bpt->cond);
6531   if (bpt->cond_string != NULL)
6532     free (bpt->cond_string);
6533   if (bpt->addr_string != NULL)
6534     free (bpt->addr_string);
6535   if (bpt->exp != NULL)
6536     free (bpt->exp);
6537   if (bpt->exp_string != NULL)
6538     free (bpt->exp_string);
6539   if (bpt->val != NULL)
6540     value_free (bpt->val);
6541   if (bpt->source_file != NULL)
6542     free (bpt->source_file);
6543   if (bpt->dll_pathname != NULL)
6544     free (bpt->dll_pathname);
6545   if (bpt->triggered_dll_pathname != NULL)
6546     free (bpt->triggered_dll_pathname);
6547   if (bpt->exec_pathname != NULL)
6548     free (bpt->exec_pathname);
6549
6550   /* Be sure no bpstat's are pointing at it after it's been freed.  */
6551   /* FIXME, how can we find all bpstat's?
6552      We just check stop_bpstat for now.  */
6553   for (bs = stop_bpstat; bs; bs = bs->next)
6554     if (bs->breakpoint_at == bpt)
6555       {
6556         bs->breakpoint_at = NULL;
6557
6558         /* we'd call bpstat_clear_actions, but that free's stuff and due
6559            to the multiple pointers pointing to one item with no
6560            reference counts found anywhere through out the bpstat's (how
6561            do you spell fragile?), we don't want to free things twice --
6562            better a memory leak than a corrupt malloc pool! */
6563         bs->commands = NULL;
6564         bs->old_val = NULL;
6565       }
6566   /* On the chance that someone will soon try again to delete this same
6567      bp, we mark it as deleted before freeing its storage. */
6568   bpt->type = bp_none;
6569
6570   free ((PTR) bpt);
6571 }
6572
6573 void
6574 delete_command (arg, from_tty)
6575      char *arg;
6576      int from_tty;
6577 {
6578   struct breakpoint *b, *temp;
6579
6580   if (arg == 0)
6581     {
6582       int breaks_to_delete = 0;
6583
6584       /* Delete all breakpoints if no argument.
6585          Do not delete internal or call-dummy breakpoints, these
6586          have to be deleted with an explicit breakpoint number argument.  */
6587       ALL_BREAKPOINTS (b)
6588       {
6589         if (b->type != bp_call_dummy &&
6590             b->type != bp_shlib_event &&
6591             b->type != bp_thread_event &&
6592             b->number >= 0)
6593           breaks_to_delete = 1;
6594       }
6595
6596       /* Ask user only if there are some breakpoints to delete.  */
6597       if (!from_tty
6598           || (breaks_to_delete && query ("Delete all breakpoints? ")))
6599         {
6600           ALL_BREAKPOINTS_SAFE (b, temp)
6601           {
6602             if (b->type != bp_call_dummy &&
6603                 b->type != bp_shlib_event &&
6604                 b->type != bp_thread_event &&
6605                 b->number >= 0)
6606               delete_breakpoint (b);
6607           }
6608         }
6609     }
6610   else
6611     map_breakpoint_numbers (arg, delete_breakpoint);
6612 }
6613
6614 /* Reset a breakpoint given it's struct breakpoint * BINT.
6615    The value we return ends up being the return value from catch_errors.
6616    Unused in this case.  */
6617
6618 static int
6619 breakpoint_re_set_one (bint)
6620      PTR bint;
6621 {
6622   /* get past catch_errs */
6623   struct breakpoint *b = (struct breakpoint *) bint;
6624   struct value *mark;
6625   int i;
6626   struct symtabs_and_lines sals;
6627   char *s;
6628   enum enable save_enable;
6629
6630   switch (b->type)
6631     {
6632     case bp_none:
6633       warning ("attempted to reset apparently deleted breakpoint #%d?",
6634                b->number);
6635       return 0;
6636     case bp_breakpoint:
6637     case bp_hardware_breakpoint:
6638     case bp_catch_load:
6639     case bp_catch_unload:
6640       if (b->addr_string == NULL)
6641         {
6642           /* Anything without a string can't be re-set. */
6643           delete_breakpoint (b);
6644           return 0;
6645         }
6646       /* In case we have a problem, disable this breakpoint.  We'll restore
6647          its status if we succeed.  */
6648       save_enable = b->enable;
6649       b->enable = disabled;
6650
6651       set_language (b->language);
6652       input_radix = b->input_radix;
6653       s = b->addr_string;
6654       sals = decode_line_1 (&s, 1, (struct symtab *) NULL, 0, (char ***) NULL);
6655       for (i = 0; i < sals.nelts; i++)
6656         {
6657           resolve_sal_pc (&sals.sals[i]);
6658
6659           /* Reparse conditions, they might contain references to the
6660              old symtab.  */
6661           if (b->cond_string != NULL)
6662             {
6663               s = b->cond_string;
6664               if (b->cond)
6665                 free ((PTR) b->cond);
6666               b->cond = parse_exp_1 (&s, block_for_pc (sals.sals[i].pc), 0);
6667             }
6668
6669           /* We need to re-set the breakpoint if the address changes... */
6670           if (b->address != sals.sals[i].pc
6671           /* ...or new and old breakpoints both have source files, and
6672              the source file name or the line number changes...  */
6673               || (b->source_file != NULL
6674                   && sals.sals[i].symtab != NULL
6675                   && (!STREQ (b->source_file, sals.sals[i].symtab->filename)
6676                       || b->line_number != sals.sals[i].line)
6677               )
6678           /* ...or we switch between having a source file and not having
6679              one.  */
6680               || ((b->source_file == NULL) != (sals.sals[i].symtab == NULL))
6681             )
6682             {
6683               if (b->source_file != NULL)
6684                 free (b->source_file);
6685               if (sals.sals[i].symtab == NULL)
6686                 b->source_file = NULL;
6687               else
6688                 b->source_file =
6689                   savestring (sals.sals[i].symtab->filename,
6690                               strlen (sals.sals[i].symtab->filename));
6691               b->line_number = sals.sals[i].line;
6692               b->address = sals.sals[i].pc;
6693
6694               /* Used to check for duplicates here, but that can
6695                  cause trouble, as it doesn't check for disable
6696                  breakpoints. */
6697
6698               mention (b);
6699
6700               /* Might be better to do this just once per breakpoint_re_set,
6701                  rather than once for every breakpoint.  */
6702               breakpoints_changed ();
6703             }
6704           b->section = sals.sals[i].section;
6705           b->enable = save_enable;      /* Restore it, this worked. */
6706
6707
6708           /* Now that this is re-enabled, check_duplicates
6709              can be used. */
6710           check_duplicates (b->address, b->section);
6711
6712         }
6713       free ((PTR) sals.sals);
6714       break;
6715
6716     case bp_watchpoint:
6717     case bp_hardware_watchpoint:
6718     case bp_read_watchpoint:
6719     case bp_access_watchpoint:
6720       innermost_block = NULL;
6721       /* The issue arises of what context to evaluate this in.  The
6722          same one as when it was set, but what does that mean when
6723          symbols have been re-read?  We could save the filename and
6724          functionname, but if the context is more local than that, the
6725          best we could do would be something like how many levels deep
6726          and which index at that particular level, but that's going to
6727          be less stable than filenames or function names.  */
6728
6729       /* So for now, just use a global context.  */
6730       if (b->exp)
6731         free ((PTR) b->exp);
6732       b->exp = parse_expression (b->exp_string);
6733       b->exp_valid_block = innermost_block;
6734       mark = value_mark ();
6735       if (b->val)
6736         value_free (b->val);
6737       b->val = evaluate_expression (b->exp);
6738       release_value (b->val);
6739       if (VALUE_LAZY (b->val))
6740         value_fetch_lazy (b->val);
6741
6742       if (b->cond_string != NULL)
6743         {
6744           s = b->cond_string;
6745           if (b->cond)
6746             free ((PTR) b->cond);
6747           b->cond = parse_exp_1 (&s, (struct block *) 0, 0);
6748         }
6749       if (b->enable == enabled)
6750         mention (b);
6751       value_free_to_mark (mark);
6752       break;
6753     case bp_catch_catch:
6754     case bp_catch_throw:
6755       break;
6756       /* We needn't really do anything to reset these, since the mask
6757          that requests them is unaffected by e.g., new libraries being
6758          loaded. */
6759     case bp_catch_fork:
6760     case bp_catch_vfork:
6761     case bp_catch_exec:
6762       break;
6763
6764     default:
6765       printf_filtered ("Deleting unknown breakpoint type %d\n", b->type);
6766       /* fall through */
6767       /* Delete longjmp breakpoints, they will be reset later by
6768          breakpoint_re_set.  */
6769     case bp_longjmp:
6770     case bp_longjmp_resume:
6771       delete_breakpoint (b);
6772       break;
6773
6774       /* This breakpoint is special, it's set up when the inferior
6775          starts and we really don't want to touch it.  */
6776     case bp_shlib_event:
6777
6778       /* Like bp_shlib_event, this breakpoint type is special.
6779          Once it is set up, we do not want to touch it.  */
6780     case bp_thread_event:
6781
6782       /* Keep temporary breakpoints, which can be encountered when we step
6783          over a dlopen call and SOLIB_ADD is resetting the breakpoints.
6784          Otherwise these should have been blown away via the cleanup chain
6785          or by breakpoint_init_inferior when we rerun the executable.  */
6786     case bp_until:
6787     case bp_finish:
6788     case bp_watchpoint_scope:
6789     case bp_call_dummy:
6790     case bp_step_resume:
6791       break;
6792     }
6793
6794   return 0;
6795 }
6796
6797 /* Re-set all breakpoints after symbols have been re-loaded.  */
6798 void
6799 breakpoint_re_set ()
6800 {
6801   struct breakpoint *b, *temp;
6802   enum language save_language;
6803   int save_input_radix;
6804   static char message1[] = "Error in re-setting breakpoint %d:\n";
6805   char message[sizeof (message1) + 30 /* slop */ ];
6806
6807   save_language = current_language->la_language;
6808   save_input_radix = input_radix;
6809   ALL_BREAKPOINTS_SAFE (b, temp)
6810   {
6811     /* Format possible error msg */
6812     sprintf (message, message1, b->number);
6813     catch_errors (breakpoint_re_set_one, b, message, RETURN_MASK_ALL);
6814   }
6815   set_language (save_language);
6816   input_radix = save_input_radix;
6817
6818 #ifdef GET_LONGJMP_TARGET
6819   create_longjmp_breakpoint ("longjmp");
6820   create_longjmp_breakpoint ("_longjmp");
6821   create_longjmp_breakpoint ("siglongjmp");
6822   create_longjmp_breakpoint ("_siglongjmp");
6823   create_longjmp_breakpoint (NULL);
6824 #endif
6825
6826 #if 0
6827   /* Took this out (temporarily at least), since it produces an extra 
6828      blank line at startup. This messes up the gdbtests. -PB */
6829   /* Blank line to finish off all those mention() messages we just printed.  */
6830   printf_filtered ("\n");
6831 #endif
6832 }
6833 \f
6834 /* Set ignore-count of breakpoint number BPTNUM to COUNT.
6835    If from_tty is nonzero, it prints a message to that effect,
6836    which ends with a period (no newline).  */
6837
6838 /* Reset the thread number of this breakpoint:
6839
6840    - If the breakpoint is for all threads, leave it as-is.
6841    - Else, reset it to the current thread for inferior_pid. */
6842 void
6843 breakpoint_re_set_thread (b)
6844      struct breakpoint *b;
6845 {
6846   if (b->thread != -1)
6847     {
6848       if (in_thread_list (inferior_pid))
6849         b->thread = pid_to_thread_id (inferior_pid);
6850     }
6851 }
6852
6853 void
6854 set_ignore_count (bptnum, count, from_tty)
6855      int bptnum, count, from_tty;
6856 {
6857   register struct breakpoint *b;
6858
6859   if (count < 0)
6860     count = 0;
6861
6862   ALL_BREAKPOINTS (b)
6863     if (b->number == bptnum)
6864     {
6865       b->ignore_count = count;
6866       if (!from_tty)
6867         return;
6868       else if (count == 0)
6869         printf_filtered ("Will stop next time breakpoint %d is reached.",
6870                          bptnum);
6871       else if (count == 1)
6872         printf_filtered ("Will ignore next crossing of breakpoint %d.",
6873                          bptnum);
6874       else
6875         printf_filtered ("Will ignore next %d crossings of breakpoint %d.",
6876                          count, bptnum);
6877       breakpoints_changed ();
6878       return;
6879     }
6880
6881   error ("No breakpoint number %d.", bptnum);
6882 }
6883
6884 /* Clear the ignore counts of all breakpoints.  */
6885 void
6886 breakpoint_clear_ignore_counts ()
6887 {
6888   struct breakpoint *b;
6889
6890   ALL_BREAKPOINTS (b)
6891     b->ignore_count = 0;
6892 }
6893
6894 /* Command to set ignore-count of breakpoint N to COUNT.  */
6895
6896 static void
6897 ignore_command (args, from_tty)
6898      char *args;
6899      int from_tty;
6900 {
6901   char *p = args;
6902   register int num;
6903
6904   if (p == 0)
6905     error_no_arg ("a breakpoint number");
6906
6907   num = get_number (&p);
6908   if (num == 0)
6909     error ("bad breakpoint number: '%s'", args);
6910   if (*p == 0)
6911     error ("Second argument (specified ignore-count) is missing.");
6912
6913   set_ignore_count (num,
6914                     longest_to_int (value_as_long (parse_and_eval (p))),
6915                     from_tty);
6916   printf_filtered ("\n");
6917   breakpoints_changed ();
6918 }
6919 \f
6920 /* Call FUNCTION on each of the breakpoints
6921    whose numbers are given in ARGS.  */
6922
6923 static void
6924 map_breakpoint_numbers (args, function)
6925      char *args;
6926      void (*function) PARAMS ((struct breakpoint *));
6927 {
6928   register char *p = args;
6929   char *p1;
6930   register int num;
6931   register struct breakpoint *b, *tmp;
6932   int match;
6933
6934   if (p == 0)
6935     error_no_arg ("one or more breakpoint numbers");
6936
6937   while (*p)
6938     {
6939       match = 0;
6940       p1 = p;
6941
6942       num = get_number_or_range (&p1);
6943       if (num == 0)
6944         {
6945           warning ("bad breakpoint number at or near '%s'", p);
6946         }
6947       else
6948         {
6949           ALL_BREAKPOINTS_SAFE (b, tmp)
6950             if (b->number == num)
6951               {
6952                 struct breakpoint *related_breakpoint = b->related_breakpoint;
6953                 match = 1;
6954                 function (b);
6955                 if (related_breakpoint)
6956                   function (related_breakpoint);
6957                 break;
6958               }
6959           if (match == 0)
6960             printf_unfiltered ("No breakpoint number %d.\n", num);
6961         }
6962       p = p1;
6963     }
6964 }
6965
6966 void
6967 disable_breakpoint (bpt)
6968      struct breakpoint *bpt;
6969 {
6970   /* Never disable a watchpoint scope breakpoint; we want to
6971      hit them when we leave scope so we can delete both the
6972      watchpoint and its scope breakpoint at that time.  */
6973   if (bpt->type == bp_watchpoint_scope)
6974     return;
6975
6976   /* You can't disable permanent breakpoints.  */
6977   if (bpt->enable == permanent)
6978     return;
6979
6980   bpt->enable = disabled;
6981
6982   check_duplicates (bpt->address, bpt->section);
6983
6984   if (modify_breakpoint_hook)
6985     modify_breakpoint_hook (bpt);
6986   breakpoint_modify_event (bpt->number);
6987 }
6988
6989 /* ARGSUSED */
6990 static void
6991 disable_command (args, from_tty)
6992      char *args;
6993      int from_tty;
6994 {
6995   register struct breakpoint *bpt;
6996   if (args == 0)
6997     ALL_BREAKPOINTS (bpt)
6998       switch (bpt->type)
6999       {
7000       case bp_none:
7001         warning ("attempted to disable apparently deleted breakpoint #%d?",
7002                  bpt->number);
7003         continue;
7004       case bp_breakpoint:
7005       case bp_catch_load:
7006       case bp_catch_unload:
7007       case bp_catch_fork:
7008       case bp_catch_vfork:
7009       case bp_catch_exec:
7010       case bp_catch_catch:
7011       case bp_catch_throw:
7012       case bp_hardware_breakpoint:
7013       case bp_watchpoint:
7014       case bp_hardware_watchpoint:
7015       case bp_read_watchpoint:
7016       case bp_access_watchpoint:
7017         disable_breakpoint (bpt);
7018       default:
7019         continue;
7020       }
7021   else
7022     map_breakpoint_numbers (args, disable_breakpoint);
7023 }
7024
7025 static void
7026 do_enable_breakpoint (bpt, disposition)
7027      struct breakpoint *bpt;
7028      enum bpdisp disposition;
7029 {
7030   struct frame_info *save_selected_frame = NULL;
7031   int save_selected_frame_level = -1;
7032   int target_resources_ok, other_type_used;
7033   struct value *mark;
7034
7035   if (bpt->type == bp_hardware_breakpoint)
7036     {
7037       int i;
7038       i = hw_breakpoint_used_count ();
7039       target_resources_ok = 
7040         TARGET_CAN_USE_HARDWARE_WATCHPOINT (bp_hardware_breakpoint, 
7041                                             i + 1, 0);
7042       if (target_resources_ok == 0)
7043         error ("No hardware breakpoint support in the target.");
7044       else if (target_resources_ok < 0)
7045         error ("Hardware breakpoints used exceeds limit.");
7046     }
7047
7048   if (bpt->enable != permanent)
7049     bpt->enable = enabled;
7050   bpt->disposition = disposition;
7051   check_duplicates (bpt->address, bpt->section);
7052   breakpoints_changed ();
7053
7054   if (bpt->type == bp_watchpoint || 
7055       bpt->type == bp_hardware_watchpoint ||
7056       bpt->type == bp_read_watchpoint || 
7057       bpt->type == bp_access_watchpoint)
7058     {
7059       if (bpt->exp_valid_block != NULL)
7060         {
7061           struct frame_info *fr =
7062
7063           /* Ensure that we have the current frame.  Else, this
7064              next query may pessimistically be answered as, "No,
7065              not within current scope". */
7066           get_current_frame ();
7067           fr = find_frame_addr_in_frame_chain (bpt->watchpoint_frame);
7068           if (fr == NULL)
7069             {
7070               printf_filtered ("\
7071 Cannot enable watchpoint %d because the block in which its expression\n\
7072 is valid is not currently in scope.\n", bpt->number);
7073               bpt->enable = disabled;
7074               return;
7075             }
7076
7077           save_selected_frame = selected_frame;
7078           save_selected_frame_level = selected_frame_level;
7079           select_frame (fr, -1);
7080         }
7081
7082       value_free (bpt->val);
7083       mark = value_mark ();
7084       bpt->val = evaluate_expression (bpt->exp);
7085       release_value (bpt->val);
7086       if (VALUE_LAZY (bpt->val))
7087         value_fetch_lazy (bpt->val);
7088
7089       if (bpt->type == bp_hardware_watchpoint ||
7090           bpt->type == bp_read_watchpoint ||
7091           bpt->type == bp_access_watchpoint)
7092         {
7093           int i = hw_watchpoint_used_count (bpt->type, &other_type_used);
7094           int mem_cnt = can_use_hardware_watchpoint (bpt->val);
7095
7096           /* Hack around 'unused var' error for some targets here */
7097           (void) mem_cnt, i;
7098           target_resources_ok = TARGET_CAN_USE_HARDWARE_WATCHPOINT (
7099                                    bpt->type, i + mem_cnt, other_type_used);
7100           /* we can consider of type is bp_hardware_watchpoint, convert to 
7101              bp_watchpoint in the following condition */
7102           if (target_resources_ok < 0)
7103             {
7104               printf_filtered ("\
7105 Cannot enable watchpoint %d because target watch resources\n\
7106 have been allocated for other watchpoints.\n", bpt->number);
7107               bpt->enable = disabled;
7108               value_free_to_mark (mark);
7109               return;
7110             }
7111         }
7112
7113       if (save_selected_frame_level >= 0)
7114         select_and_print_frame (save_selected_frame,
7115                                 save_selected_frame_level);
7116       value_free_to_mark (mark);
7117     }
7118   if (modify_breakpoint_hook)
7119     modify_breakpoint_hook (bpt);
7120   breakpoint_modify_event (bpt->number);
7121 }
7122
7123 void
7124 enable_breakpoint (bpt)
7125      struct breakpoint *bpt;
7126 {
7127   do_enable_breakpoint (bpt, bpt->disposition);
7128 }
7129
7130 /* The enable command enables the specified breakpoints (or all defined
7131    breakpoints) so they once again become (or continue to be) effective
7132    in stopping the inferior. */
7133
7134 /* ARGSUSED */
7135 static void
7136 enable_command (args, from_tty)
7137      char *args;
7138      int from_tty;
7139 {
7140   register struct breakpoint *bpt;
7141   if (args == 0)
7142     ALL_BREAKPOINTS (bpt)
7143       switch (bpt->type)
7144       {
7145       case bp_none:
7146         warning ("attempted to enable apparently deleted breakpoint #%d?",
7147                  bpt->number);
7148         continue;
7149       case bp_breakpoint:
7150       case bp_catch_load:
7151       case bp_catch_unload:
7152       case bp_catch_fork:
7153       case bp_catch_vfork:
7154       case bp_catch_exec:
7155       case bp_catch_catch:
7156       case bp_catch_throw:
7157       case bp_hardware_breakpoint:
7158       case bp_watchpoint:
7159       case bp_hardware_watchpoint:
7160       case bp_read_watchpoint:
7161       case bp_access_watchpoint:
7162         enable_breakpoint (bpt);
7163       default:
7164         continue;
7165       }
7166   else
7167     map_breakpoint_numbers (args, enable_breakpoint);
7168 }
7169
7170 static void
7171 enable_once_breakpoint (bpt)
7172      struct breakpoint *bpt;
7173 {
7174   do_enable_breakpoint (bpt, disable);
7175 }
7176
7177 /* ARGSUSED */
7178 static void
7179 enable_once_command (args, from_tty)
7180      char *args;
7181      int from_tty;
7182 {
7183   map_breakpoint_numbers (args, enable_once_breakpoint);
7184 }
7185
7186 static void
7187 enable_delete_breakpoint (bpt)
7188      struct breakpoint *bpt;
7189 {
7190   do_enable_breakpoint (bpt, del);
7191 }
7192
7193 /* ARGSUSED */
7194 static void
7195 enable_delete_command (args, from_tty)
7196      char *args;
7197      int from_tty;
7198 {
7199   map_breakpoint_numbers (args, enable_delete_breakpoint);
7200 }
7201 \f
7202 /* Use default_breakpoint_'s, or nothing if they aren't valid.  */
7203
7204 struct symtabs_and_lines
7205 decode_line_spec_1 (string, funfirstline)
7206      char *string;
7207      int funfirstline;
7208 {
7209   struct symtabs_and_lines sals;
7210   if (string == 0)
7211     error ("Empty line specification.");
7212   if (default_breakpoint_valid)
7213     sals = decode_line_1 (&string, funfirstline,
7214                           default_breakpoint_symtab,
7215                           default_breakpoint_line,
7216                           (char ***) NULL);
7217   else
7218     sals = decode_line_1 (&string, funfirstline,
7219                           (struct symtab *) NULL, 0, (char ***) NULL);
7220   if (*string)
7221     error ("Junk at end of line specification: %s", string);
7222   return sals;
7223 }
7224 \f
7225 void
7226 _initialize_breakpoint ()
7227 {
7228   struct cmd_list_element *c;
7229
7230   breakpoint_chain = 0;
7231   /* Don't bother to call set_breakpoint_count.  $bpnum isn't useful
7232      before a breakpoint is set.  */
7233   breakpoint_count = 0;
7234
7235   add_com ("ignore", class_breakpoint, ignore_command,
7236            "Set ignore-count of breakpoint number N to COUNT.\n\
7237 Usage is `ignore N COUNT'.");
7238   if (xdb_commands)
7239     add_com_alias ("bc", "ignore", class_breakpoint, 1);
7240
7241   add_com ("commands", class_breakpoint, commands_command,
7242            "Set commands to be executed when a breakpoint is hit.\n\
7243 Give breakpoint number as argument after \"commands\".\n\
7244 With no argument, the targeted breakpoint is the last one set.\n\
7245 The commands themselves follow starting on the next line.\n\
7246 Type a line containing \"end\" to indicate the end of them.\n\
7247 Give \"silent\" as the first line to make the breakpoint silent;\n\
7248 then no output is printed when it is hit, except what the commands print.");
7249
7250   add_com ("condition", class_breakpoint, condition_command,
7251            "Specify breakpoint number N to break only if COND is true.\n\
7252 Usage is `condition N COND', where N is an integer and COND is an\n\
7253 expression to be evaluated whenever breakpoint N is reached.  ");
7254
7255   add_com ("tbreak", class_breakpoint, tbreak_command,
7256            "Set a temporary breakpoint.  Args like \"break\" command.\n\
7257 Like \"break\" except the breakpoint is only temporary,\n\
7258 so it will be deleted when hit.  Equivalent to \"break\" followed\n\
7259 by using \"enable delete\" on the breakpoint number.");
7260   add_com ("txbreak", class_breakpoint, tbreak_at_finish_command,
7261            "Set temporary breakpoint at procedure exit.  Either there should\n\
7262 be no argument or the argument must be a depth.\n");
7263
7264   add_com ("hbreak", class_breakpoint, hbreak_command,
7265            "Set a hardware assisted  breakpoint. Args like \"break\" command.\n\
7266 Like \"break\" except the breakpoint requires hardware support,\n\
7267 some target hardware may not have this support.");
7268
7269   add_com ("thbreak", class_breakpoint, thbreak_command,
7270            "Set a temporary hardware assisted breakpoint. Args like \"break\" command.\n\
7271 Like \"hbreak\" except the breakpoint is only temporary,\n\
7272 so it will be deleted when hit.");
7273
7274   add_prefix_cmd ("enable", class_breakpoint, enable_command,
7275                   "Enable some breakpoints.\n\
7276 Give breakpoint numbers (separated by spaces) as arguments.\n\
7277 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7278 This is used to cancel the effect of the \"disable\" command.\n\
7279 With a subcommand you can enable temporarily.",
7280                   &enablelist, "enable ", 1, &cmdlist);
7281   if (xdb_commands)
7282     add_com ("ab", class_breakpoint, enable_command,
7283              "Enable some breakpoints.\n\
7284 Give breakpoint numbers (separated by spaces) as arguments.\n\
7285 With no subcommand, breakpoints are enabled until you command otherwise.\n\
7286 This is used to cancel the effect of the \"disable\" command.\n\
7287 With a subcommand you can enable temporarily.");
7288
7289   add_com_alias ("en", "enable", class_breakpoint, 1);
7290
7291   add_abbrev_prefix_cmd ("breakpoints", class_breakpoint, enable_command,
7292                          "Enable some breakpoints.\n\
7293 Give breakpoint numbers (separated by spaces) as arguments.\n\
7294 This is used to cancel the effect of the \"disable\" command.\n\
7295 May be abbreviated to simply \"enable\".\n",
7296                    &enablebreaklist, "enable breakpoints ", 1, &enablelist);
7297
7298   add_cmd ("once", no_class, enable_once_command,
7299            "Enable breakpoints for one hit.  Give breakpoint numbers.\n\
7300 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7301            &enablebreaklist);
7302
7303   add_cmd ("delete", no_class, enable_delete_command,
7304            "Enable breakpoints and delete when hit.  Give breakpoint numbers.\n\
7305 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7306            &enablebreaklist);
7307
7308   add_cmd ("delete", no_class, enable_delete_command,
7309            "Enable breakpoints and delete when hit.  Give breakpoint numbers.\n\
7310 If a breakpoint is hit while enabled in this fashion, it is deleted.",
7311            &enablelist);
7312
7313   add_cmd ("once", no_class, enable_once_command,
7314            "Enable breakpoints for one hit.  Give breakpoint numbers.\n\
7315 If a breakpoint is hit while enabled in this fashion, it becomes disabled.",
7316            &enablelist);
7317
7318   add_prefix_cmd ("disable", class_breakpoint, disable_command,
7319                   "Disable some breakpoints.\n\
7320 Arguments are breakpoint numbers with spaces in between.\n\
7321 To disable all breakpoints, give no argument.\n\
7322 A disabled breakpoint is not forgotten, but has no effect until reenabled.",
7323                   &disablelist, "disable ", 1, &cmdlist);
7324   add_com_alias ("dis", "disable", class_breakpoint, 1);
7325   add_com_alias ("disa", "disable", class_breakpoint, 1);
7326   if (xdb_commands)
7327     add_com ("sb", class_breakpoint, disable_command,
7328              "Disable some breakpoints.\n\
7329 Arguments are breakpoint numbers with spaces in between.\n\
7330 To disable all breakpoints, give no argument.\n\
7331 A disabled breakpoint is not forgotten, but has no effect until reenabled.");
7332
7333   add_cmd ("breakpoints", class_alias, disable_command,
7334            "Disable some breakpoints.\n\
7335 Arguments are breakpoint numbers with spaces in between.\n\
7336 To disable all breakpoints, give no argument.\n\
7337 A disabled breakpoint is not forgotten, but has no effect until reenabled.\n\
7338 This command may be abbreviated \"disable\".",
7339            &disablelist);
7340
7341   add_prefix_cmd ("delete", class_breakpoint, delete_command,
7342                   "Delete some breakpoints or auto-display expressions.\n\
7343 Arguments are breakpoint numbers with spaces in between.\n\
7344 To delete all breakpoints, give no argument.\n\
7345 \n\
7346 Also a prefix command for deletion of other GDB objects.\n\
7347 The \"unset\" command is also an alias for \"delete\".",
7348                   &deletelist, "delete ", 1, &cmdlist);
7349   add_com_alias ("d", "delete", class_breakpoint, 1);
7350   if (xdb_commands)
7351     add_com ("db", class_breakpoint, delete_command,
7352              "Delete some breakpoints.\n\
7353 Arguments are breakpoint numbers with spaces in between.\n\
7354 To delete all breakpoints, give no argument.\n");
7355
7356   add_cmd ("breakpoints", class_alias, delete_command,
7357            "Delete some breakpoints or auto-display expressions.\n\
7358 Arguments are breakpoint numbers with spaces in between.\n\
7359 To delete all breakpoints, give no argument.\n\
7360 This command may be abbreviated \"delete\".",
7361            &deletelist);
7362
7363   add_com ("clear", class_breakpoint, clear_command,
7364            concat ("Clear breakpoint at specified line or function.\n\
7365 Argument may be line number, function name, or \"*\" and an address.\n\
7366 If line number is specified, all breakpoints in that line are cleared.\n\
7367 If function is specified, breakpoints at beginning of function are cleared.\n\
7368 If an address is specified, breakpoints at that address are cleared.\n\n",
7369                    "With no argument, clears all breakpoints in the line that the selected frame\n\
7370 is executing in.\n\
7371 \n\
7372 See also the \"delete\" command which clears breakpoints by number.", NULL));
7373
7374   add_com ("break", class_breakpoint, break_command,
7375            concat ("Set breakpoint at specified line or function.\n\
7376 Argument may be line number, function name, or \"*\" and an address.\n\
7377 If line number is specified, break at start of code for that line.\n\
7378 If function is specified, break at start of code for that function.\n\
7379 If an address is specified, break at that exact address.\n",
7380                    "With no arg, uses current execution address of selected stack frame.\n\
7381 This is useful for breaking on return to a stack frame.\n\
7382 \n\
7383 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7384 \n\
7385 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7386   add_com_alias ("b", "break", class_run, 1);
7387   add_com_alias ("br", "break", class_run, 1);
7388   add_com_alias ("bre", "break", class_run, 1);
7389   add_com_alias ("brea", "break", class_run, 1);
7390
7391   add_com ("xbreak", class_breakpoint, break_at_finish_command,
7392            concat ("Set breakpoint at procedure exit. \n\
7393 Argument may be function name, or \"*\" and an address.\n\
7394 If function is specified, break at end of code for that function.\n\
7395 If an address is specified, break at the end of the function that contains \n\
7396 that exact address.\n",
7397                    "With no arg, uses current execution address of selected stack frame.\n\
7398 This is useful for breaking on return to a stack frame.\n\
7399 \n\
7400 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
7401 \n\
7402 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL));
7403   add_com_alias ("xb", "xbreak", class_breakpoint, 1);
7404   add_com_alias ("xbr", "xbreak", class_breakpoint, 1);
7405   add_com_alias ("xbre", "xbreak", class_breakpoint, 1);
7406   add_com_alias ("xbrea", "xbreak", class_breakpoint, 1);
7407
7408   if (xdb_commands)
7409     {
7410       add_com_alias ("ba", "break", class_breakpoint, 1);
7411       add_com_alias ("bu", "ubreak", class_breakpoint, 1);
7412       add_com ("bx", class_breakpoint, break_at_finish_at_depth_command,
7413                "Set breakpoint at procedure exit.  Either there should\n\
7414 be no argument or the argument must be a depth.\n");
7415     }
7416
7417   if (dbx_commands)
7418     {
7419       add_abbrev_prefix_cmd ("stop", class_breakpoint, stop_command,
7420         "Break in function/address or break at a line in the current file.",
7421                              &stoplist, "stop ", 1, &cmdlist);
7422       add_cmd ("in", class_breakpoint, stopin_command,
7423                "Break in function or address.\n", &stoplist);
7424       add_cmd ("at", class_breakpoint, stopat_command,
7425                "Break at a line in the current file.\n", &stoplist);
7426       add_com ("status", class_info, breakpoints_info,
7427                concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7428 The \"Type\" column indicates one of:\n\
7429 \tbreakpoint     - normal breakpoint\n\
7430 \twatchpoint     - watchpoint\n\
7431 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7432 the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
7433 breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
7434 address and file/line number respectively.\n\n",
7435                        "Convenience variable \"$_\" and default examine address for \"x\"\n\
7436 are set to the address of the last breakpoint listed.\n\n\
7437 Convenience variable \"$bpnum\" contains the number of the last\n\
7438 breakpoint set.", NULL));
7439     }
7440
7441   add_info ("breakpoints", breakpoints_info,
7442             concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7443 The \"Type\" column indicates one of:\n\
7444 \tbreakpoint     - normal breakpoint\n\
7445 \twatchpoint     - watchpoint\n\
7446 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7447 the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
7448 breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
7449 address and file/line number respectively.\n\n",
7450                     "Convenience variable \"$_\" and default examine address for \"x\"\n\
7451 are set to the address of the last breakpoint listed.\n\n\
7452 Convenience variable \"$bpnum\" contains the number of the last\n\
7453 breakpoint set.", NULL));
7454
7455   if (xdb_commands)
7456     add_com ("lb", class_breakpoint, breakpoints_info,
7457              concat ("Status of user-settable breakpoints, or breakpoint number NUMBER.\n\
7458 The \"Type\" column indicates one of:\n\
7459 \tbreakpoint     - normal breakpoint\n\
7460 \twatchpoint     - watchpoint\n\
7461 The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7462 the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
7463 breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
7464 address and file/line number respectively.\n\n",
7465                      "Convenience variable \"$_\" and default examine address for \"x\"\n\
7466 are set to the address of the last breakpoint listed.\n\n\
7467 Convenience variable \"$bpnum\" contains the number of the last\n\
7468 breakpoint set.", NULL));
7469
7470   add_cmd ("breakpoints", class_maintenance, maintenance_info_breakpoints,
7471            concat ("Status of all breakpoints, or breakpoint number NUMBER.\n\
7472 The \"Type\" column indicates one of:\n\
7473 \tbreakpoint     - normal breakpoint\n\
7474 \twatchpoint     - watchpoint\n\
7475 \tlongjmp        - internal breakpoint used to step through longjmp()\n\
7476 \tlongjmp resume - internal breakpoint at the target of longjmp()\n\
7477 \tuntil          - internal breakpoint used by the \"until\" command\n\
7478 \tfinish         - internal breakpoint used by the \"finish\" command\n",
7479                    "The \"Disp\" column contains one of \"keep\", \"del\", or \"dis\" to indicate\n\
7480 the disposition of the breakpoint after it gets hit.  \"dis\" means that the\n\
7481 breakpoint will be disabled.  The \"Address\" and \"What\" columns indicate the\n\
7482 address and file/line number respectively.\n\n",
7483                    "Convenience variable \"$_\" and default examine address for \"x\"\n\
7484 are set to the address of the last breakpoint listed.\n\n\
7485 Convenience variable \"$bpnum\" contains the number of the last\n\
7486 breakpoint set.", NULL),
7487            &maintenanceinfolist);
7488
7489   add_com ("catch", class_breakpoint, catch_command,
7490            "Set catchpoints to catch events.\n\
7491 Raised signals may be caught:\n\
7492 \tcatch signal              - all signals\n\
7493 \tcatch signal <signame>    - a particular signal\n\
7494 Raised exceptions may be caught:\n\
7495 \tcatch throw               - all exceptions, when thrown\n\
7496 \tcatch throw <exceptname>  - a particular exception, when thrown\n\
7497 \tcatch catch               - all exceptions, when caught\n\
7498 \tcatch catch <exceptname>  - a particular exception, when caught\n\
7499 Thread or process events may be caught:\n\
7500 \tcatch thread_start        - any threads, just after creation\n\
7501 \tcatch thread_exit         - any threads, just before expiration\n\
7502 \tcatch thread_join         - any threads, just after joins\n\
7503 Process events may be caught:\n\
7504 \tcatch start               - any processes, just after creation\n\
7505 \tcatch exit                - any processes, just before expiration\n\
7506 \tcatch fork                - calls to fork()\n\
7507 \tcatch vfork               - calls to vfork()\n\
7508 \tcatch exec                - calls to exec()\n\
7509 Dynamically-linked library events may be caught:\n\
7510 \tcatch load                - loads of any library\n\
7511 \tcatch load <libname>      - loads of a particular library\n\
7512 \tcatch unload              - unloads of any library\n\
7513 \tcatch unload <libname>    - unloads of a particular library\n\
7514 The act of your program's execution stopping may also be caught:\n\
7515 \tcatch stop\n\n\
7516 C++ exceptions may be caught:\n\
7517 \tcatch throw               - all exceptions, when thrown\n\
7518 \tcatch catch               - all exceptions, when caught\n\
7519 \n\
7520 Do \"help set follow-fork-mode\" for info on debugging your program\n\
7521 after a fork or vfork is caught.\n\n\
7522 Do \"help breakpoints\" for info on other commands dealing with breakpoints.");
7523
7524   add_com ("tcatch", class_breakpoint, tcatch_command,
7525            "Set temporary catchpoints to catch events.\n\
7526 Args like \"catch\" command.\n\
7527 Like \"catch\" except the catchpoint is only temporary,\n\
7528 so it will be deleted when hit.  Equivalent to \"catch\" followed\n\
7529 by using \"enable delete\" on the catchpoint number.");
7530
7531   add_com ("watch", class_breakpoint, watch_command,
7532            "Set a watchpoint for an expression.\n\
7533 A watchpoint stops execution of your program whenever the value of\n\
7534 an expression changes.");
7535
7536   add_com ("rwatch", class_breakpoint, rwatch_command,
7537            "Set a read watchpoint for an expression.\n\
7538 A watchpoint stops execution of your program whenever the value of\n\
7539 an expression is read.");
7540
7541   add_com ("awatch", class_breakpoint, awatch_command,
7542            "Set a watchpoint for an expression.\n\
7543 A watchpoint stops execution of your program whenever the value of\n\
7544 an expression is either read or written.");
7545
7546   add_info ("watchpoints", breakpoints_info,
7547             "Synonym for ``info breakpoints''.");
7548
7549
7550   c = add_set_cmd ("can-use-hw-watchpoints", class_support, var_zinteger,
7551                    (char *) &can_use_hw_watchpoints,
7552                    "Set debugger's willingness to use watchpoint hardware.\n\
7553 If zero, gdb will not use hardware for new watchpoints, even if\n\
7554 such is available.  (However, any hardware watchpoints that were\n\
7555 created before setting this to nonzero, will continue to use watchpoint\n\
7556 hardware.)",
7557                    &setlist);
7558   add_show_from_set (c, &showlist);
7559
7560   can_use_hw_watchpoints = 1;
7561 }