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