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