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