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