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